@maxim_mazurok/gapi.client.metastore-v1 0.0.20230921 → 0.0.20230926
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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230926
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -371,6 +371,9 @@ declare namespace gapi.client {
|
|
|
371
371
|
string;
|
|
372
372
|
}
|
|
373
373
|
interface LocationMetadata {
|
|
374
|
+
/** The multi-region metadata if the current region is a multi-region. */
|
|
375
|
+
multiRegionMetadata?:
|
|
376
|
+
MultiRegionMetadata;
|
|
374
377
|
/**
|
|
375
378
|
* 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
|
|
376
379
|
* set is_default.
|
|
@@ -451,6 +454,11 @@ declare namespace gapi.client {
|
|
|
451
454
|
// tslint:disable-next-line:no-empty-interface
|
|
452
455
|
interface MoveTableToDatabaseResponse {
|
|
453
456
|
}
|
|
457
|
+
interface MultiRegionMetadata {
|
|
458
|
+
/** The regions constituting the multi-region. */
|
|
459
|
+
constituentRegions?:
|
|
460
|
+
string[];
|
|
461
|
+
}
|
|
454
462
|
interface NetworkConfig {
|
|
455
463
|
/** Immutable. The consumer-side network configuration for the Dataproc Metastore instance. */
|
|
456
464
|
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: 20230926
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|