@maxim_mazurok/gapi.client.metastore-v1alpha 0.0.20240426 → 0.0.20240510
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 -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=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240510
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -160,6 +160,14 @@ declare namespace gapi.client {
|
|
|
160
160
|
/** 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} */
|
|
161
161
|
subnetwork?: string;
|
|
162
162
|
}
|
|
163
|
+
interface CustomRegionMetadata {
|
|
164
|
+
/** The read-only regions for this custom region. */
|
|
165
|
+
optionalReadOnlyRegions?: string[];
|
|
166
|
+
/** The read-write regions for this custom region. */
|
|
167
|
+
requiredReadWriteRegions?: string[];
|
|
168
|
+
/** The Spanner witness region for this custom region. */
|
|
169
|
+
witnessRegion?: string;
|
|
170
|
+
}
|
|
163
171
|
interface DatabaseDump {
|
|
164
172
|
/** The type of the database. */
|
|
165
173
|
databaseType?: string;
|
|
@@ -338,6 +346,8 @@ declare namespace gapi.client {
|
|
|
338
346
|
name?: string;
|
|
339
347
|
}
|
|
340
348
|
interface LocationMetadata {
|
|
349
|
+
/** Possible configurations supported if the current region is a custom region. */
|
|
350
|
+
customRegionMetadata?: CustomRegionMetadata[];
|
|
341
351
|
/** The multi-region metadata if the current region is a multi-region. */
|
|
342
352
|
multiRegionMetadata?: MultiRegionMetadata;
|
|
343
353
|
/** 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. */
|
|
@@ -537,6 +547,8 @@ declare namespace gapi.client {
|
|
|
537
547
|
createTime?: string;
|
|
538
548
|
/** Immutable. The database type that the Metastore service stores its data. */
|
|
539
549
|
databaseType?: string;
|
|
550
|
+
/** Optional. Indicates if the dataproc metastore should be protected against accidental deletions. */
|
|
551
|
+
deletionProtection?: boolean;
|
|
540
552
|
/** Immutable. Information used to configure the Dataproc Metastore service to encrypt customer data at rest. Cannot be updated. */
|
|
541
553
|
encryptionConfig?: EncryptionConfig;
|
|
542
554
|
/** Output only. The URI of the endpoint used to access the metastore service. */
|