@maxim_mazurok/gapi.client.analyticshub-v1 0.0.20240318 → 0.0.20240408
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 +13 -3
- 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: 20240408
|
|
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. If set, restricted export policy will be propagated and enforced on the linked dataset. */
|
|
43
|
+
restrictedExportPolicy?: RestrictedExportPolicy;
|
|
42
44
|
/** 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
45
|
selectedResources?: SelectedResource[];
|
|
44
46
|
}
|
|
@@ -237,6 +239,14 @@ declare namespace gapi.client {
|
|
|
237
239
|
/** Optional. If true, restrict export of query result derived from restricted linked dataset table. */
|
|
238
240
|
restrictQueryResult?: boolean;
|
|
239
241
|
}
|
|
242
|
+
interface RestrictedExportPolicy {
|
|
243
|
+
/** Optional. If true, enable restricted export. */
|
|
244
|
+
enabled?: boolean;
|
|
245
|
+
/** Optional. If true, restrict direct table access (read api/tabledata.list) on linked table. */
|
|
246
|
+
restrictDirectTableAccess?: boolean;
|
|
247
|
+
/** Optional. If true, restrict export of query result derived from restricted linked dataset table. */
|
|
248
|
+
restrictQueryResult?: boolean;
|
|
249
|
+
}
|
|
240
250
|
interface RevokeSubscriptionRequest {}
|
|
241
251
|
interface RevokeSubscriptionResponse {}
|
|
242
252
|
interface SelectedResource {
|
|
@@ -276,7 +286,7 @@ declare namespace gapi.client {
|
|
|
276
286
|
subscription?: Subscription;
|
|
277
287
|
}
|
|
278
288
|
interface SubscribeListingRequest {
|
|
279
|
-
/** BigQuery destination dataset to create for the subscriber. */
|
|
289
|
+
/** Input only. BigQuery destination dataset to create for the subscriber. */
|
|
280
290
|
destinationDataset?: DestinationDataset;
|
|
281
291
|
}
|
|
282
292
|
interface SubscribeListingResponse {
|
|
@@ -1234,7 +1244,7 @@ declare namespace gapi.client {
|
|
|
1234
1244
|
callback?: string;
|
|
1235
1245
|
/** Selector specifying which fields to include in a partial response. */
|
|
1236
1246
|
fields?: string;
|
|
1237
|
-
/**
|
|
1247
|
+
/** An expression for filtering the results of the request. Eligible fields for filtering are: + `listing` + `data_exchange` Alternatively, a literal wrapped in double quotes may be provided. This will be checked for an exact match against both fields above. In all cases, the full Data Exchange or Listing resource name must be provided. Some example of using filters: + data_exchange="projects/myproject/locations/us/dataExchanges/123" + listing="projects/123/locations/us/dataExchanges/456/listings/789" + "projects/myproject/locations/us/dataExchanges/123" */
|
|
1238
1248
|
filter?: string;
|
|
1239
1249
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1240
1250
|
key?: string;
|