@maxim_mazurok/gapi.client.metastore-v1alpha 0.0.20250102 → 0.0.20250121

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.
Files changed (2) hide show
  1. package/index.d.ts +35 -35
  2. 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: 20250102
12
+ // Revision: 20250121
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -64,11 +64,11 @@ declare namespace gapi.client {
64
64
  limitConfig?: LimitConfig;
65
65
  }
66
66
  interface AuxiliaryVersionConfig {
67
- /** A mapping of Hive metastore configuration key-value pairs to apply to the auxiliary Hive metastore (configured in hive-site.xml) in addition to the primary version's overrides. If keys are present in both the auxiliary version's overrides and the primary version's overrides, the value from the auxiliary version's overrides takes precedence. */
67
+ /** Optional. A mapping of Hive metastore configuration key-value pairs to apply to the auxiliary Hive metastore (configured in hive-site.xml) in addition to the primary version's overrides. If keys are present in both the auxiliary version's overrides and the primary version's overrides, the value from the auxiliary version's overrides takes precedence. */
68
68
  configOverrides?: {[P in string]: string};
69
69
  /** Output only. The network configuration contains the endpoint URI(s) of the auxiliary Hive metastore service. */
70
70
  networkConfig?: NetworkConfig;
71
- /** The Hive metastore version of the auxiliary service. It must be less than the primary Hive metastore service's version. */
71
+ /** Optional. The Hive metastore version of the auxiliary service. It must be less than the primary Hive metastore service's version. */
72
72
  version?: string;
73
73
  }
74
74
  interface BackendMetastore {
@@ -80,11 +80,11 @@ declare namespace gapi.client {
80
80
  interface Backup {
81
81
  /** Output only. The time when the backup was started. */
82
82
  createTime?: string;
83
- /** The description of the backup. */
83
+ /** Optional. The description of the backup. */
84
84
  description?: string;
85
85
  /** Output only. The time when the backup finished creating. */
86
86
  endTime?: string;
87
- /** Immutable. The relative resource name of the backup, in the following form:projects/{project_number}/locations/{location_id}/services/{service_id}/backups/{backup_id} */
87
+ /** Immutable. Identifier. The relative resource name of the backup, in the following form:projects/{project_number}/locations/{location_id}/services/{service_id}/backups/{backup_id} */
88
88
  name?: string;
89
89
  /** Output only. Services that are restoring from the backup. */
90
90
  restoringServices?: string[];
@@ -177,9 +177,9 @@ declare namespace gapi.client {
177
177
  interface DatabaseDump {
178
178
  /** The type of the database. */
179
179
  databaseType?: string;
180
- /** A Cloud Storage object or folder URI that specifies the source from which to import metadata. It must begin with gs://. */
180
+ /** Optional. A Cloud Storage object or folder URI that specifies the source from which to import metadata. It must begin with gs://. */
181
181
  gcsUri?: string;
182
- /** The name of the source database. */
182
+ /** Optional. The name of the source database. */
183
183
  sourceDatabase?: string;
184
184
  /** Optional. The type of the database dump. If unspecified, defaults to MYSQL. */
185
185
  type?: string;
@@ -189,12 +189,12 @@ declare namespace gapi.client {
189
189
  enabled?: boolean;
190
190
  }
191
191
  interface DataplexConfig {
192
- /** A reference to the Lake resources that this metastore service is attached to. The key is the lake resource name. Example: projects/{project_number}/locations/{location_id}/lakes/{lake_id}. */
192
+ /** Optional. A reference to the Lake resources that this metastore service is attached to. The key is the lake resource name. Example: projects/{project_number}/locations/{location_id}/lakes/{lake_id}. */
193
193
  lakeResources?: {[P in string]: Lake};
194
194
  }
195
195
  interface Empty {}
196
196
  interface EncryptionConfig {
197
- /** The fully qualified customer provided Cloud KMS key name to use for customer data encryption, in the following format:projects/{project_number}/locations/{location_id}/keyRings/{key_ring_id}/cryptoKeys/{crypto_key_id}. */
197
+ /** Optional. The fully qualified customer provided Cloud KMS key name to use for customer data encryption, in the following format:projects/{project_number}/locations/{location_id}/keyRings/{key_ring_id}/cryptoKeys/{crypto_key_id}. */
198
198
  kmsKey?: string;
199
199
  }
200
200
  interface ErrorDetails {
@@ -242,13 +242,13 @@ declare namespace gapi.client {
242
242
  version?: string;
243
243
  }
244
244
  interface HiveMetastoreConfig {
245
- /** A mapping of Hive metastore version to the auxiliary version configuration. When specified, a secondary Hive metastore service is created along with the primary service. All auxiliary versions must be less than the service's primary version. The key is the auxiliary service name and it must match the regular expression a-z?. This means that the first character must be a lowercase letter, and all the following characters must be hyphens, lowercase letters, or digits, except the last character, which cannot be a hyphen. */
245
+ /** Optional. A mapping of Hive metastore version to the auxiliary version configuration. When specified, a secondary Hive metastore service is created along with the primary service. All auxiliary versions must be less than the service's primary version. The key is the auxiliary service name and it must match the regular expression a-z?. This means that the first character must be a lowercase letter, and all the following characters must be hyphens, lowercase letters, or digits, except the last character, which cannot be a hyphen. */
246
246
  auxiliaryVersions?: {[P in string]: AuxiliaryVersionConfig};
247
- /** A mapping of Hive metastore configuration key-value pairs to apply to the Hive metastore (configured in hive-site.xml). The mappings override system defaults (some keys cannot be overridden). These overrides are also applied to auxiliary versions and can be further customized in the auxiliary version's AuxiliaryVersionConfig. */
247
+ /** Optional. A mapping of Hive metastore configuration key-value pairs to apply to the Hive metastore (configured in hive-site.xml). The mappings override system defaults (some keys cannot be overridden). These overrides are also applied to auxiliary versions and can be further customized in the auxiliary version's AuxiliaryVersionConfig. */
248
248
  configOverrides?: {[P in string]: string};
249
- /** The protocol to use for the metastore service endpoint. If unspecified, defaults to THRIFT. */
249
+ /** Optional. The protocol to use for the metastore service endpoint. If unspecified, defaults to THRIFT. */
250
250
  endpointProtocol?: string;
251
- /** Information used to configure the Hive metastore service as a service principal in a Kerberos realm. To disable Kerberos, use the UpdateService method and specify this field's path (hive_metastore_config.kerberos_config) in the request's update_mask while omitting this field from the request's service. */
251
+ /** Optional. Information used to configure the Hive metastore service as a service principal in a Kerberos realm. To disable Kerberos, use the UpdateService method and specify this field's path (hive_metastore_config.kerberos_config) in the request's update_mask while omitting this field from the request's service. */
252
252
  kerberosConfig?: KerberosConfig;
253
253
  /** Immutable. The Hive metastore schema version. */
254
254
  version?: string;
@@ -260,11 +260,11 @@ declare namespace gapi.client {
260
260
  version?: string;
261
261
  }
262
262
  interface KerberosConfig {
263
- /** A Kerberos keytab file that can be used to authenticate a service principal with a Kerberos Key Distribution Center (KDC). */
263
+ /** Optional. A Kerberos keytab file that can be used to authenticate a service principal with a Kerberos Key Distribution Center (KDC). */
264
264
  keytab?: Secret;
265
- /** A Cloud Storage URI that specifies the path to a krb5.conf file. It is of the form gs://{bucket_name}/path/to/krb5.conf, although the file does not need to be named krb5.conf explicitly. */
265
+ /** Optional. A Cloud Storage URI that specifies the path to a krb5.conf file. It is of the form gs://{bucket_name}/path/to/krb5.conf, although the file does not need to be named krb5.conf explicitly. */
266
266
  krb5ConfigGcsUri?: string;
267
- /** A Kerberos principal that exists in the both the keytab the KDC to authenticate as. A typical principal is of the form primary/instance@REALM, but there is no exact format. */
267
+ /** Optional. A Kerberos principal that exists in the both the keytab the KDC to authenticate as. A typical principal is of the form primary/instance@REALM, but there is no exact format. */
268
268
  principal?: string;
269
269
  }
270
270
  interface Lake {
@@ -360,9 +360,9 @@ declare namespace gapi.client {
360
360
  supportedHiveMetastoreVersions?: HiveMetastoreVersion[];
361
361
  }
362
362
  interface MaintenanceWindow {
363
- /** The day of week, when the window starts. */
363
+ /** Optional. The day of week, when the window starts. */
364
364
  dayOfWeek?: string;
365
- /** The hour of day (0-23) when the window starts. */
365
+ /** Optional. The hour of day (0-23) when the window starts. */
366
366
  hourOfDay?: number;
367
367
  }
368
368
  interface MetadataExport {
@@ -382,11 +382,11 @@ declare namespace gapi.client {
382
382
  createTime?: string;
383
383
  /** Immutable. A database dump from a pre-existing metastore's database. */
384
384
  databaseDump?: DatabaseDump;
385
- /** The description of the metadata import. */
385
+ /** Optional. The description of the metadata import. */
386
386
  description?: string;
387
387
  /** Output only. The time when the metadata import finished. */
388
388
  endTime?: string;
389
- /** Immutable. The relative resource name of the metadata import, of the form:projects/{project_number}/locations/{location_id}/services/{service_id}/metadataImports/{metadata_import_id}. */
389
+ /** Immutable. Identifier. The relative resource name of the metadata import, of the form:projects/{project_number}/locations/{location_id}/services/{service_id}/metadataImports/{metadata_import_id}. */
390
390
  name?: string;
391
391
  /** Output only. The current state of the metadata import. */
392
392
  state?: string;
@@ -396,7 +396,7 @@ declare namespace gapi.client {
396
396
  interface MetadataIntegration {
397
397
  /** Optional. The integration config for the Data Catalog service. */
398
398
  dataCatalogConfig?: DataCatalogConfig;
399
- /** The integration config for the Dataplex service. */
399
+ /** Optional. The integration config for the Dataplex service. */
400
400
  dataplexConfig?: DataplexConfig;
401
401
  }
402
402
  interface MetadataManagementActivity {
@@ -442,7 +442,7 @@ declare namespace gapi.client {
442
442
  interface NetworkConfig {
443
443
  /** Immutable. The consumer-side network configuration for the Dataproc Metastore instance. */
444
444
  consumers?: Consumer[];
445
- /** Enables custom routes to be imported and exported for the Dataproc Metastore service's peered VPC network. */
445
+ /** Optional. Enables custom routes to be imported and exported for the Dataproc Metastore service's peered VPC network. */
446
446
  customRoutesEnabled?: boolean;
447
447
  }
448
448
  interface Operation {
@@ -554,7 +554,7 @@ declare namespace gapi.client {
554
554
  timeZone?: string;
555
555
  }
556
556
  interface Secret {
557
- /** The relative resource name of a Secret Manager secret version, in the following form:projects/{project_number}/secrets/{secret_id}/versions/{version_id}. */
557
+ /** Optional. The relative resource name of a Secret Manager secret version, in the following form:projects/{project_number}/secrets/{secret_id}/versions/{version_id}. */
558
558
  cloudSecret?: string;
559
559
  }
560
560
  interface Service {
@@ -574,7 +574,7 @@ declare namespace gapi.client {
574
574
  hiveMetastoreConfig?: HiveMetastoreConfig;
575
575
  /** User-defined labels for the metastore service. */
576
576
  labels?: {[P in string]: string};
577
- /** The one hour maintenance window of the metastore service. This specifies when the service can be restarted for maintenance purposes in UTC time. Maintenance window is not needed for services with the SPANNER database type. */
577
+ /** Optional. The one hour maintenance window of the metastore service. This specifies when the service can be restarted for maintenance purposes in UTC time. Maintenance window is not needed for services with the SPANNER database type. */
578
578
  maintenanceWindow?: MaintenanceWindow;
579
579
  /** Optional. The setting that defines how metastore metadata should be integrated with external services and systems. */
580
580
  metadataIntegration?: MetadataIntegration;
@@ -582,17 +582,17 @@ declare namespace gapi.client {
582
582
  metadataManagementActivity?: MetadataManagementActivity;
583
583
  /** Optional. Specifies the multi-region configuration information for the Hive metastore service. */
584
584
  multiRegionConfig?: MultiRegionConfig;
585
- /** Immutable. The relative resource name of the metastore service, in the following format:projects/{project_number}/locations/{location_id}/services/{service_id}. */
585
+ /** Immutable. Identifier. The relative resource name of the metastore service, in the following format:projects/{project_number}/locations/{location_id}/services/{service_id}. */
586
586
  name?: string;
587
587
  /** Immutable. The relative resource name of the VPC network on which the instance can be accessed. It is specified in the following form:projects/{project_number}/global/networks/{network_id}. */
588
588
  network?: string;
589
- /** The configuration specifying the network settings for the Dataproc Metastore service. */
589
+ /** Optional. The configuration specifying the network settings for the Dataproc Metastore service. */
590
590
  networkConfig?: NetworkConfig;
591
- /** The TCP port at which the metastore service is reached. Default: 9083. */
591
+ /** Optional. The TCP port at which the metastore service is reached. Default: 9083. */
592
592
  port?: number;
593
593
  /** Immutable. The release channel of the service. If unspecified, defaults to STABLE. */
594
594
  releaseChannel?: string;
595
- /** Scaling configuration of the metastore service. */
595
+ /** Optional. Scaling configuration of the metastore service. */
596
596
  scalingConfig?: ScalingConfig;
597
597
  /** Optional. The configuration of scheduled backup for the metastore service. */
598
598
  scheduledBackup?: ScheduledBackup;
@@ -600,9 +600,9 @@ declare namespace gapi.client {
600
600
  state?: string;
601
601
  /** Output only. Additional information about the current state of the metastore service, if available. */
602
602
  stateMessage?: string;
603
- /** The configuration specifying telemetry settings for the Dataproc Metastore service. If unspecified defaults to JSON. */
603
+ /** Optional. The configuration specifying telemetry settings for the Dataproc Metastore service. If unspecified defaults to JSON. */
604
604
  telemetryConfig?: TelemetryConfig;
605
- /** The tier of the service. */
605
+ /** Optional. The tier of the service. */
606
606
  tier?: string;
607
607
  /** Output only. The globally unique resource identifier of the metastore service. */
608
608
  uid?: string;
@@ -630,7 +630,7 @@ declare namespace gapi.client {
630
630
  message?: string;
631
631
  }
632
632
  interface TelemetryConfig {
633
- /** The output format of the Dataproc Metastore service's logs. */
633
+ /** Optional. The output format of the Dataproc Metastore service's logs. */
634
634
  logFormat?: string;
635
635
  }
636
636
  interface TestIamPermissionsRequest {
@@ -1676,7 +1676,7 @@ declare namespace gapi.client {
1676
1676
  fields?: string;
1677
1677
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1678
1678
  key?: string;
1679
- /** Immutable. The relative resource name of the metadata import, of the form:projects/{project_number}/locations/{location_id}/services/{service_id}/metadataImports/{metadata_import_id}. */
1679
+ /** Immutable. Identifier. The relative resource name of the metadata import, of the form:projects/{project_number}/locations/{location_id}/services/{service_id}/metadataImports/{metadata_import_id}. */
1680
1680
  name: string;
1681
1681
  /** OAuth 2.0 token for the current user. */
1682
1682
  oauth_token?: string;
@@ -1709,7 +1709,7 @@ declare namespace gapi.client {
1709
1709
  fields?: string;
1710
1710
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
1711
1711
  key?: string;
1712
- /** Immutable. The relative resource name of the metadata import, of the form:projects/{project_number}/locations/{location_id}/services/{service_id}/metadataImports/{metadata_import_id}. */
1712
+ /** Immutable. Identifier. The relative resource name of the metadata import, of the form:projects/{project_number}/locations/{location_id}/services/{service_id}/metadataImports/{metadata_import_id}. */
1713
1713
  name: string;
1714
1714
  /** OAuth 2.0 token for the current user. */
1715
1715
  oauth_token?: string;
@@ -2371,7 +2371,7 @@ declare namespace gapi.client {
2371
2371
  fields?: string;
2372
2372
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2373
2373
  key?: string;
2374
- /** Immutable. The relative resource name of the metastore service, in the following format:projects/{project_number}/locations/{location_id}/services/{service_id}. */
2374
+ /** Immutable. Identifier. The relative resource name of the metastore service, in the following format:projects/{project_number}/locations/{location_id}/services/{service_id}. */
2375
2375
  name: string;
2376
2376
  /** OAuth 2.0 token for the current user. */
2377
2377
  oauth_token?: string;
@@ -2404,7 +2404,7 @@ declare namespace gapi.client {
2404
2404
  fields?: string;
2405
2405
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
2406
2406
  key?: string;
2407
- /** Immutable. The relative resource name of the metastore service, in the following format:projects/{project_number}/locations/{location_id}/services/{service_id}. */
2407
+ /** Immutable. Identifier. The relative resource name of the metastore service, in the following format:projects/{project_number}/locations/{location_id}/services/{service_id}. */
2408
2408
  name: string;
2409
2409
  /** OAuth 2.0 token for the current user. */
2410
2410
  oauth_token?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.metastore-v1alpha",
3
- "version": "0.0.20250102",
3
+ "version": "0.0.20250121",
4
4
  "description": "TypeScript typings for Dataproc Metastore API v1alpha",
5
5
  "repository": {
6
6
  "type": "git",