@maxim_mazurok/gapi.client.metastore-v1alpha 0.0.20230921 → 0.0.20231010
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 +9 -1
- package/package.json +1 -1
- package/tests.ts +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://metastore.googleapis.com/$discovery/rest?version=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20231010
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -389,6 +389,9 @@ declare namespace gapi.client {
|
|
|
389
389
|
string;
|
|
390
390
|
}
|
|
391
391
|
interface LocationMetadata {
|
|
392
|
+
/** The multi-region metadata if the current region is a multi-region. */
|
|
393
|
+
multiRegionMetadata?:
|
|
394
|
+
MultiRegionMetadata;
|
|
392
395
|
/**
|
|
393
396
|
* The versions of Hive Metastore that can be used when creating a new metastore service in this location. The server guarantees that exactly one HiveMetastoreVersion in the list will
|
|
394
397
|
* set is_default.
|
|
@@ -477,6 +480,11 @@ declare namespace gapi.client {
|
|
|
477
480
|
// tslint:disable-next-line:no-empty-interface
|
|
478
481
|
interface MoveTableToDatabaseResponse {
|
|
479
482
|
}
|
|
483
|
+
interface MultiRegionMetadata {
|
|
484
|
+
/** The regions constituting the multi-region. */
|
|
485
|
+
constituentRegions?:
|
|
486
|
+
string[];
|
|
487
|
+
}
|
|
480
488
|
interface NetworkConfig {
|
|
481
489
|
/** Immutable. The consumer-side network configuration for the Dataproc Metastore instance. */
|
|
482
490
|
consumers?:
|
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: 20231010
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|