Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ baton resources
`baton-temporalcloud` will pull down information about the following Temporal Cloud resources:
- Namespaces
- Users
- User Groups
- Account Roles

# Contributing, Support and Issues
Expand Down
20 changes: 20 additions & 0 deletions baton_capabilities.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,26 @@
],
"permissions": {}
},
{
"resourceType": {
"id": "group",
"displayName": "User Group",
"traits": [
"TRAIT_GROUP"
],
"annotations": [
{
"@type": "type.googleapis.com/c1.connector.v2.OptInRequired"
}
]
},
"capabilities": [
"CAPABILITY_SYNC",
"CAPABILITY_PROVISION"
],
"permissions": {},
"optInRequired": true
},
{
"resourceType": {
"id": "namespace",
Expand Down
2 changes: 1 addition & 1 deletion pkg/config/conf.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ var (
field.WithRequired(false),
)


BaseURLField = field.StringField(
"base-url",
field.WithDescription("Override the Temporal Cloud API URL (for testing)"),
Expand Down
Loading
Loading