-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(workflows/executions): add UNAVAILABLE and QUEUED to state enum (#…
…8430) - [ ] Regenerate this pull request now. feat: add LOG_NONE to call_log_level feat: add status, labels, duration and state_error fields to Execution feat: add filter and order_by fields to ListExecutionsRequest PiperOrigin-RevId: 557594531 Source-Link: https://togithub.com/googleapis/googleapis/commit/6ba6f91298976f366f1b3eb2bfa4c5abe73f372c Source-Link: https://togithub.com/googleapis/googleapis-gen/commit/6c079c0825df88bccc6bc11135ca9ef719d717e6 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNmMwNzljMDgyNWRmODhiY2NjNmJjMTExMzVjYTllZjcxOWQ3MTdlNiJ9
- Loading branch information
1 parent
b3dbdde
commit 404097e
Showing
72 changed files
with
23,261 additions
and
256 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,173 @@ | ||
{ | ||
"schema": "1.0", | ||
"comment": "This file maps proto services/RPCs to the corresponding library clients/methods.", | ||
"language": "go", | ||
"protoPackage": "google.cloud.bigquery.biglake.v1", | ||
"libraryPackage": "cloud.google.com/go/bigquery/biglake/apiv1", | ||
"services": { | ||
"MetastoreService": { | ||
"clients": { | ||
"grpc": { | ||
"libraryClient": "MetastoreClient", | ||
"rpcs": { | ||
"CreateCatalog": { | ||
"methods": [ | ||
"CreateCatalog" | ||
] | ||
}, | ||
"CreateDatabase": { | ||
"methods": [ | ||
"CreateDatabase" | ||
] | ||
}, | ||
"CreateTable": { | ||
"methods": [ | ||
"CreateTable" | ||
] | ||
}, | ||
"DeleteCatalog": { | ||
"methods": [ | ||
"DeleteCatalog" | ||
] | ||
}, | ||
"DeleteDatabase": { | ||
"methods": [ | ||
"DeleteDatabase" | ||
] | ||
}, | ||
"DeleteTable": { | ||
"methods": [ | ||
"DeleteTable" | ||
] | ||
}, | ||
"GetCatalog": { | ||
"methods": [ | ||
"GetCatalog" | ||
] | ||
}, | ||
"GetDatabase": { | ||
"methods": [ | ||
"GetDatabase" | ||
] | ||
}, | ||
"GetTable": { | ||
"methods": [ | ||
"GetTable" | ||
] | ||
}, | ||
"ListCatalogs": { | ||
"methods": [ | ||
"ListCatalogs" | ||
] | ||
}, | ||
"ListDatabases": { | ||
"methods": [ | ||
"ListDatabases" | ||
] | ||
}, | ||
"ListTables": { | ||
"methods": [ | ||
"ListTables" | ||
] | ||
}, | ||
"RenameTable": { | ||
"methods": [ | ||
"RenameTable" | ||
] | ||
}, | ||
"UpdateDatabase": { | ||
"methods": [ | ||
"UpdateDatabase" | ||
] | ||
}, | ||
"UpdateTable": { | ||
"methods": [ | ||
"UpdateTable" | ||
] | ||
} | ||
} | ||
}, | ||
"rest": { | ||
"libraryClient": "MetastoreClient", | ||
"rpcs": { | ||
"CreateCatalog": { | ||
"methods": [ | ||
"CreateCatalog" | ||
] | ||
}, | ||
"CreateDatabase": { | ||
"methods": [ | ||
"CreateDatabase" | ||
] | ||
}, | ||
"CreateTable": { | ||
"methods": [ | ||
"CreateTable" | ||
] | ||
}, | ||
"DeleteCatalog": { | ||
"methods": [ | ||
"DeleteCatalog" | ||
] | ||
}, | ||
"DeleteDatabase": { | ||
"methods": [ | ||
"DeleteDatabase" | ||
] | ||
}, | ||
"DeleteTable": { | ||
"methods": [ | ||
"DeleteTable" | ||
] | ||
}, | ||
"GetCatalog": { | ||
"methods": [ | ||
"GetCatalog" | ||
] | ||
}, | ||
"GetDatabase": { | ||
"methods": [ | ||
"GetDatabase" | ||
] | ||
}, | ||
"GetTable": { | ||
"methods": [ | ||
"GetTable" | ||
] | ||
}, | ||
"ListCatalogs": { | ||
"methods": [ | ||
"ListCatalogs" | ||
] | ||
}, | ||
"ListDatabases": { | ||
"methods": [ | ||
"ListDatabases" | ||
] | ||
}, | ||
"ListTables": { | ||
"methods": [ | ||
"ListTables" | ||
] | ||
}, | ||
"RenameTable": { | ||
"methods": [ | ||
"RenameTable" | ||
] | ||
}, | ||
"UpdateDatabase": { | ||
"methods": [ | ||
"UpdateDatabase" | ||
] | ||
}, | ||
"UpdateTable": { | ||
"methods": [ | ||
"UpdateTable" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.