@maxim_mazurok/gapi.client.metastore-v1 0.0.20240627 → 0.0.20240715
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 +11 -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://metastore.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240715
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -148,6 +148,14 @@ declare namespace gapi.client {
|
|
|
148
148
|
/** 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 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 following form:projects/{project_number}/regions/{region_id}/subnetworks/{subnetwork_id} */
|
|
149
149
|
subnetwork?: string;
|
|
150
150
|
}
|
|
151
|
+
interface CustomRegionMetadata {
|
|
152
|
+
/** The read-only regions for this custom region. */
|
|
153
|
+
optionalReadOnlyRegions?: string[];
|
|
154
|
+
/** The read-write regions for this custom region. */
|
|
155
|
+
requiredReadWriteRegions?: string[];
|
|
156
|
+
/** The Spanner witness region for this custom region. */
|
|
157
|
+
witnessRegion?: string;
|
|
158
|
+
}
|
|
151
159
|
interface DatabaseDump {
|
|
152
160
|
/** The type of the database. */
|
|
153
161
|
databaseType?: string;
|
|
@@ -318,6 +326,8 @@ declare namespace gapi.client {
|
|
|
318
326
|
name?: string;
|
|
319
327
|
}
|
|
320
328
|
interface LocationMetadata {
|
|
329
|
+
/** Possible configurations supported if the current region is a custom region. */
|
|
330
|
+
customRegionMetadata?: CustomRegionMetadata[];
|
|
321
331
|
/** The multi-region metadata if the current region is a multi-region. */
|
|
322
332
|
multiRegionMetadata?: MultiRegionMetadata;
|
|
323
333
|
/** 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 set is_default. */
|