@maxim_mazurok/gapi.client.analyticshub-v1 0.0.20240304 → 0.0.20240318
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +7 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://analyticshub.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240318
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -39,6 +39,8 @@ declare namespace gapi.client {
|
|
|
39
39
|
interface BigQueryDatasetSource {
|
|
40
40
|
/** Resource name of the dataset source for this listing. e.g. `projects/myproject/datasets/123` */
|
|
41
41
|
dataset?: string;
|
|
42
|
+
/** Optional. Resources in this dataset that are selectively shared. If this field is empty, then the entire dataset (all resources) are shared. This field is only valid for data clean room exchanges. */
|
|
43
|
+
selectedResources?: SelectedResource[];
|
|
42
44
|
}
|
|
43
45
|
interface Binding {
|
|
44
46
|
/** The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). */
|
|
@@ -237,6 +239,10 @@ declare namespace gapi.client {
|
|
|
237
239
|
}
|
|
238
240
|
interface RevokeSubscriptionRequest {}
|
|
239
241
|
interface RevokeSubscriptionResponse {}
|
|
242
|
+
interface SelectedResource {
|
|
243
|
+
/** Optional. Format: For table: `projects/{projectId}/datasets/{datasetId}/tables/{tableId}` Example:"projects/test_project/datasets/test_dataset/tables/test_table" */
|
|
244
|
+
table?: string;
|
|
245
|
+
}
|
|
240
246
|
interface SetIamPolicyRequest {
|
|
241
247
|
/** REQUIRED: The complete policy to be applied to the `resource`. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Google Cloud services (such as Projects) might reject them. */
|
|
242
248
|
policy?: Policy;
|