@maxim_mazurok/gapi.client.metastore-v1alpha 0.0.20221130 → 0.0.20221207
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 +4 -3
- package/package.json +1 -1
- package/tests.ts +2 -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://metastore.googleapis.com/$discovery/rest?version=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20221207
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -111,7 +111,7 @@ declare namespace gapi.client {
|
|
|
111
111
|
/**
|
|
112
112
|
* Immutable. The subnetwork of the customer project from which an IP address is reserved and used as the Dataproc Metastore service's endpoint. It is accessible to hosts in the subnet
|
|
113
113
|
* and to all hosts in a subnet in the same region and same network. There must be at least one IP address available in the subnet's primary range. The subnet is specified in the
|
|
114
|
-
* following form
|
|
114
|
+
* following form:projects/{project_number}/regions/{region_id}/subnetworks/{subnetwork_id}
|
|
115
115
|
*/
|
|
116
116
|
subnetwork?: string;
|
|
117
117
|
}
|
|
@@ -442,8 +442,9 @@ declare namespace gapi.client {
|
|
|
442
442
|
*/
|
|
443
443
|
resultManifestUri?: string;
|
|
444
444
|
}
|
|
445
|
-
// tslint:disable-next-line:no-empty-interface
|
|
446
445
|
interface RemoveIamPolicyRequest {
|
|
446
|
+
/** Optional. Removes IAM policy attached to database or table asynchronously when it is set. The default is false. */
|
|
447
|
+
asynchronous?: boolean;
|
|
447
448
|
}
|
|
448
449
|
interface RemoveIamPolicyResponse {
|
|
449
450
|
/** True if the policy is successfully removed. */
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20221207
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -447,6 +447,7 @@ gapi.load('client', async () => {
|
|
|
447
447
|
await gapi.client.metastore.projects.locations.services.removeIamPolicy({
|
|
448
448
|
resource: "Test string",
|
|
449
449
|
}, {
|
|
450
|
+
asynchronous: true,
|
|
450
451
|
});
|
|
451
452
|
/** Restores a service from a backup. */
|
|
452
453
|
await gapi.client.metastore.projects.locations.services.restore({
|