@maxim_mazurok/gapi.client.metastore-v1 0.0.20250109 → 0.0.20250123

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 (3) hide show
  1. package/index.d.ts +57 -57
  2. package/package.json +1 -1
  3. package/readme.md +2 -2
package/index.d.ts CHANGED
@@ -9,14 +9,14 @@
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: 20250109
12
+ // Revision: 20250123
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
16
16
  declare namespace gapi.client {
17
17
  /** Load Dataproc Metastore API v1 */
18
18
  function load(
19
- urlOrObject: 'https://metastore.googleapis.com/$discovery/rest?version=v1'
19
+ urlOrObject: 'https://metastore.googleapis.com/$discovery/rest?version=v1',
20
20
  ): Promise<void>;
21
21
  /** @deprecated Please load APIs with discovery documents. */
22
22
  function load(name: 'metastore', version: 'v1'): Promise<void>;
@@ -60,11 +60,11 @@ declare namespace gapi.client {
60
60
  limitConfig?: LimitConfig;
61
61
  }
62
62
  interface AuxiliaryVersionConfig {
63
- /** 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. */
63
+ /** 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. */
64
64
  configOverrides?: {[P in string]: string};
65
65
  /** Output only. The network configuration contains the endpoint URI(s) of the auxiliary Hive metastore service. */
66
66
  networkConfig?: NetworkConfig;
67
- /** The Hive metastore version of the auxiliary service. It must be less than the primary Hive metastore service's version. */
67
+ /** Optional. The Hive metastore version of the auxiliary service. It must be less than the primary Hive metastore service's version. */
68
68
  version?: string;
69
69
  }
70
70
  interface BackendMetastore {
@@ -76,11 +76,11 @@ declare namespace gapi.client {
76
76
  interface Backup {
77
77
  /** Output only. The time when the backup was started. */
78
78
  createTime?: string;
79
- /** The description of the backup. */
79
+ /** Optional. The description of the backup. */
80
80
  description?: string;
81
81
  /** Output only. The time when the backup finished creating. */
82
82
  endTime?: string;
83
- /** Immutable. The relative resource name of the backup, in the following form:projects/{project_number}/locations/{location_id}/services/{service_id}/backups/{backup_id} */
83
+ /** 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} */
84
84
  name?: string;
85
85
  /** Output only. Services that are restoring from the backup. */
86
86
  restoringServices?: string[];
@@ -159,9 +159,9 @@ declare namespace gapi.client {
159
159
  interface DatabaseDump {
160
160
  /** The type of the database. */
161
161
  databaseType?: string;
162
- /** A Cloud Storage object or folder URI that specifies the source from which to import metadata. It must begin with gs://. */
162
+ /** Optional. A Cloud Storage object or folder URI that specifies the source from which to import metadata. It must begin with gs://. */
163
163
  gcsUri?: string;
164
- /** The name of the source database. */
164
+ /** Optional. The name of the source database. */
165
165
  sourceDatabase?: string;
166
166
  /** Optional. The type of the database dump. If unspecified, defaults to MYSQL. */
167
167
  type?: string;
@@ -172,7 +172,7 @@ declare namespace gapi.client {
172
172
  }
173
173
  interface Empty {}
174
174
  interface EncryptionConfig {
175
- /** 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}. */
175
+ /** 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}. */
176
176
  kmsKey?: string;
177
177
  }
178
178
  interface ErrorDetails {
@@ -220,13 +220,13 @@ declare namespace gapi.client {
220
220
  version?: string;
221
221
  }
222
222
  interface HiveMetastoreConfig {
223
- /** 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. */
223
+ /** 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. */
224
224
  auxiliaryVersions?: {[P in string]: AuxiliaryVersionConfig};
225
- /** 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. */
225
+ /** 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. */
226
226
  configOverrides?: {[P in string]: string};
227
- /** The protocol to use for the metastore service endpoint. If unspecified, defaults to THRIFT. */
227
+ /** Optional. The protocol to use for the metastore service endpoint. If unspecified, defaults to THRIFT. */
228
228
  endpointProtocol?: string;
229
- /** 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. */
229
+ /** 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. */
230
230
  kerberosConfig?: KerberosConfig;
231
231
  /** Immutable. The Hive metastore schema version. */
232
232
  version?: string;
@@ -238,11 +238,11 @@ declare namespace gapi.client {
238
238
  version?: string;
239
239
  }
240
240
  interface KerberosConfig {
241
- /** A Kerberos keytab file that can be used to authenticate a service principal with a Kerberos Key Distribution Center (KDC). */
241
+ /** Optional. A Kerberos keytab file that can be used to authenticate a service principal with a Kerberos Key Distribution Center (KDC). */
242
242
  keytab?: Secret;
243
- /** 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. */
243
+ /** 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. */
244
244
  krb5ConfigGcsUri?: string;
245
- /** 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. */
245
+ /** 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. */
246
246
  principal?: string;
247
247
  }
248
248
  interface LatestBackup {
@@ -334,9 +334,9 @@ declare namespace gapi.client {
334
334
  supportedHiveMetastoreVersions?: HiveMetastoreVersion[];
335
335
  }
336
336
  interface MaintenanceWindow {
337
- /** The day of week, when the window starts. */
337
+ /** Optional. The day of week, when the window starts. */
338
338
  dayOfWeek?: string;
339
- /** The hour of day (0-23) when the window starts. */
339
+ /** Optional. The hour of day (0-23) when the window starts. */
340
340
  hourOfDay?: number;
341
341
  }
342
342
  interface MetadataExport {
@@ -356,11 +356,11 @@ declare namespace gapi.client {
356
356
  createTime?: string;
357
357
  /** Immutable. A database dump from a pre-existing metastore's database. */
358
358
  databaseDump?: DatabaseDump;
359
- /** The description of the metadata import. */
359
+ /** Optional. The description of the metadata import. */
360
360
  description?: string;
361
361
  /** Output only. The time when the metadata import finished. */
362
362
  endTime?: string;
363
- /** 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}. */
363
+ /** 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}. */
364
364
  name?: string;
365
365
  /** Output only. The current state of the metadata import. */
366
366
  state?: string;
@@ -505,7 +505,7 @@ declare namespace gapi.client {
505
505
  timeZone?: string;
506
506
  }
507
507
  interface Secret {
508
- /** The relative resource name of a Secret Manager secret version, in the following form:projects/{project_number}/secrets/{secret_id}/versions/{version_id}. */
508
+ /** Optional. The relative resource name of a Secret Manager secret version, in the following form:projects/{project_number}/secrets/{secret_id}/versions/{version_id}. */
509
509
  cloudSecret?: string;
510
510
  }
511
511
  interface Service {
@@ -525,23 +525,23 @@ declare namespace gapi.client {
525
525
  hiveMetastoreConfig?: HiveMetastoreConfig;
526
526
  /** User-defined labels for the metastore service. */
527
527
  labels?: {[P in string]: string};
528
- /** 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. */
528
+ /** 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. */
529
529
  maintenanceWindow?: MaintenanceWindow;
530
530
  /** Optional. The setting that defines how metastore metadata should be integrated with external services and systems. */
531
531
  metadataIntegration?: MetadataIntegration;
532
532
  /** Output only. The metadata management activities of the metastore service. */
533
533
  metadataManagementActivity?: MetadataManagementActivity;
534
- /** Immutable. The relative resource name of the metastore service, in the following format:projects/{project_number}/locations/{location_id}/services/{service_id}. */
534
+ /** Immutable. Identifier. The relative resource name of the metastore service, in the following format:projects/{project_number}/locations/{location_id}/services/{service_id}. */
535
535
  name?: string;
536
536
  /** 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}. */
537
537
  network?: string;
538
- /** The configuration specifying the network settings for the Dataproc Metastore service. */
538
+ /** Optional. The configuration specifying the network settings for the Dataproc Metastore service. */
539
539
  networkConfig?: NetworkConfig;
540
- /** The TCP port at which the metastore service is reached. Default: 9083. */
540
+ /** Optional. The TCP port at which the metastore service is reached. Default: 9083. */
541
541
  port?: number;
542
542
  /** Immutable. The release channel of the service. If unspecified, defaults to STABLE. */
543
543
  releaseChannel?: string;
544
- /** Scaling configuration of the metastore service. */
544
+ /** Optional. Scaling configuration of the metastore service. */
545
545
  scalingConfig?: ScalingConfig;
546
546
  /** Optional. The configuration of scheduled backup for the metastore service. */
547
547
  scheduledBackup?: ScheduledBackup;
@@ -549,9 +549,9 @@ declare namespace gapi.client {
549
549
  state?: string;
550
550
  /** Output only. Additional information about the current state of the metastore service, if available. */
551
551
  stateMessage?: string;
552
- /** The configuration specifying telemetry settings for the Dataproc Metastore service. If unspecified defaults to JSON. */
552
+ /** Optional. The configuration specifying telemetry settings for the Dataproc Metastore service. If unspecified defaults to JSON. */
553
553
  telemetryConfig?: TelemetryConfig;
554
- /** The tier of the service. */
554
+ /** Optional. The tier of the service. */
555
555
  tier?: string;
556
556
  /** Output only. The globally unique resource identifier of the metastore service. */
557
557
  uid?: string;
@@ -579,7 +579,7 @@ declare namespace gapi.client {
579
579
  message?: string;
580
580
  }
581
581
  interface TelemetryConfig {
582
- /** The output format of the Dataproc Metastore service's logs. */
582
+ /** Optional. The output format of the Dataproc Metastore service's logs. */
583
583
  logFormat?: string;
584
584
  }
585
585
  interface TestIamPermissionsRequest {
@@ -655,7 +655,7 @@ declare namespace gapi.client {
655
655
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
656
656
  uploadType?: string;
657
657
  },
658
- body: Federation
658
+ body: Federation,
659
659
  ): Request<Operation>;
660
660
  /** Deletes a single federation. */
661
661
  delete(request?: {
@@ -841,7 +841,7 @@ declare namespace gapi.client {
841
841
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
842
842
  uploadType?: string;
843
843
  },
844
- body: Federation
844
+ body: Federation,
845
845
  ): Request<Operation>;
846
846
  /** Sets the access control policy on the specified resource. Replaces any existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED errors. */
847
847
  setIamPolicy(
@@ -871,7 +871,7 @@ declare namespace gapi.client {
871
871
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
872
872
  uploadType?: string;
873
873
  },
874
- body: SetIamPolicyRequest
874
+ body: SetIamPolicyRequest,
875
875
  ): Request<Policy>;
876
876
  /** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a NOT_FOUND error.Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
877
877
  testIamPermissions(
@@ -901,7 +901,7 @@ declare namespace gapi.client {
901
901
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
902
902
  uploadType?: string;
903
903
  },
904
- body: TestIamPermissionsRequest
904
+ body: TestIamPermissionsRequest,
905
905
  ): Request<TestIamPermissionsResponse>;
906
906
  }
907
907
  interface OperationsResource {
@@ -961,7 +961,7 @@ declare namespace gapi.client {
961
961
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
962
962
  uploadType?: string;
963
963
  },
964
- body: CancelOperationRequest
964
+ body: CancelOperationRequest,
965
965
  ): Request<{}>;
966
966
  /** Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED. */
967
967
  delete(request?: {
@@ -1116,7 +1116,7 @@ declare namespace gapi.client {
1116
1116
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1117
1117
  uploadType?: string;
1118
1118
  },
1119
- body: Backup
1119
+ body: Backup,
1120
1120
  ): Request<Operation>;
1121
1121
  /** Deletes a single backup. */
1122
1122
  delete(request?: {
@@ -1266,7 +1266,7 @@ declare namespace gapi.client {
1266
1266
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1267
1267
  uploadType?: string;
1268
1268
  },
1269
- body: SetIamPolicyRequest
1269
+ body: SetIamPolicyRequest,
1270
1270
  ): Request<Policy>;
1271
1271
  }
1272
1272
  interface TablesResource {
@@ -1327,7 +1327,7 @@ declare namespace gapi.client {
1327
1327
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1328
1328
  uploadType?: string;
1329
1329
  },
1330
- body: SetIamPolicyRequest
1330
+ body: SetIamPolicyRequest,
1331
1331
  ): Request<Policy>;
1332
1332
  }
1333
1333
  interface DatabasesResource {
@@ -1388,7 +1388,7 @@ declare namespace gapi.client {
1388
1388
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1389
1389
  uploadType?: string;
1390
1390
  },
1391
- body: SetIamPolicyRequest
1391
+ body: SetIamPolicyRequest,
1392
1392
  ): Request<Policy>;
1393
1393
  tables: TablesResource;
1394
1394
  }
@@ -1457,7 +1457,7 @@ declare namespace gapi.client {
1457
1457
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1458
1458
  uploadType?: string;
1459
1459
  },
1460
- body: MetadataImport
1460
+ body: MetadataImport,
1461
1461
  ): Request<Operation>;
1462
1462
  /** Gets details of a single import. */
1463
1463
  get(request?: {
@@ -1535,7 +1535,7 @@ declare namespace gapi.client {
1535
1535
  fields?: string;
1536
1536
  /** 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. */
1537
1537
  key?: string;
1538
- /** 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}. */
1538
+ /** 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}. */
1539
1539
  name: string;
1540
1540
  /** OAuth 2.0 token for the current user. */
1541
1541
  oauth_token?: string;
@@ -1568,7 +1568,7 @@ declare namespace gapi.client {
1568
1568
  fields?: string;
1569
1569
  /** 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. */
1570
1570
  key?: string;
1571
- /** 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}. */
1571
+ /** 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}. */
1572
1572
  name: string;
1573
1573
  /** OAuth 2.0 token for the current user. */
1574
1574
  oauth_token?: string;
@@ -1585,7 +1585,7 @@ declare namespace gapi.client {
1585
1585
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1586
1586
  uploadType?: string;
1587
1587
  },
1588
- body: MetadataImport
1588
+ body: MetadataImport,
1589
1589
  ): Request<Operation>;
1590
1590
  }
1591
1591
  interface MigrationExecutionsResource {
@@ -1738,7 +1738,7 @@ declare namespace gapi.client {
1738
1738
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1739
1739
  uploadType?: string;
1740
1740
  },
1741
- body: AlterMetadataResourceLocationRequest
1741
+ body: AlterMetadataResourceLocationRequest,
1742
1742
  ): Request<Operation>;
1743
1743
  /** Alter metadata table properties. */
1744
1744
  alterTableProperties(request: {
@@ -1796,7 +1796,7 @@ declare namespace gapi.client {
1796
1796
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1797
1797
  uploadType?: string;
1798
1798
  },
1799
- body: AlterTablePropertiesRequest
1799
+ body: AlterTablePropertiesRequest,
1800
1800
  ): Request<Operation>;
1801
1801
  /** Cancels the ongoing Managed Migration process. */
1802
1802
  cancelMigration(request: {
@@ -1854,7 +1854,7 @@ declare namespace gapi.client {
1854
1854
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1855
1855
  uploadType?: string;
1856
1856
  },
1857
- body: CancelMigrationRequest
1857
+ body: CancelMigrationRequest,
1858
1858
  ): Request<Operation>;
1859
1859
  /** Completes the managed migration process. The Dataproc Metastore service will switch to using its own backend database after successful migration. */
1860
1860
  completeMigration(request: {
@@ -1912,7 +1912,7 @@ declare namespace gapi.client {
1912
1912
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1913
1913
  uploadType?: string;
1914
1914
  },
1915
- body: CompleteMigrationRequest
1915
+ body: CompleteMigrationRequest,
1916
1916
  ): Request<Operation>;
1917
1917
  /** Creates a metastore service in a project and location. */
1918
1918
  create(request: {
@@ -1978,7 +1978,7 @@ declare namespace gapi.client {
1978
1978
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1979
1979
  uploadType?: string;
1980
1980
  },
1981
- body: Service
1981
+ body: Service,
1982
1982
  ): Request<Operation>;
1983
1983
  /** Deletes a single service. */
1984
1984
  delete(request?: {
@@ -2065,7 +2065,7 @@ declare namespace gapi.client {
2065
2065
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2066
2066
  uploadType?: string;
2067
2067
  },
2068
- body: ExportMetadataRequest
2068
+ body: ExportMetadataRequest,
2069
2069
  ): Request<Operation>;
2070
2070
  /** Gets the details of a single service. */
2071
2071
  get(request?: {
@@ -2214,7 +2214,7 @@ declare namespace gapi.client {
2214
2214
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2215
2215
  uploadType?: string;
2216
2216
  },
2217
- body: MoveTableToDatabaseRequest
2217
+ body: MoveTableToDatabaseRequest,
2218
2218
  ): Request<Operation>;
2219
2219
  /** Updates the parameters of a single service. */
2220
2220
  patch(request: {
@@ -2230,7 +2230,7 @@ declare namespace gapi.client {
2230
2230
  fields?: string;
2231
2231
  /** 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. */
2232
2232
  key?: string;
2233
- /** Immutable. The relative resource name of the metastore service, in the following format:projects/{project_number}/locations/{location_id}/services/{service_id}. */
2233
+ /** Immutable. Identifier. The relative resource name of the metastore service, in the following format:projects/{project_number}/locations/{location_id}/services/{service_id}. */
2234
2234
  name: string;
2235
2235
  /** OAuth 2.0 token for the current user. */
2236
2236
  oauth_token?: string;
@@ -2263,7 +2263,7 @@ declare namespace gapi.client {
2263
2263
  fields?: string;
2264
2264
  /** 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. */
2265
2265
  key?: string;
2266
- /** Immutable. The relative resource name of the metastore service, in the following format:projects/{project_number}/locations/{location_id}/services/{service_id}. */
2266
+ /** Immutable. Identifier. The relative resource name of the metastore service, in the following format:projects/{project_number}/locations/{location_id}/services/{service_id}. */
2267
2267
  name: string;
2268
2268
  /** OAuth 2.0 token for the current user. */
2269
2269
  oauth_token?: string;
@@ -2280,7 +2280,7 @@ declare namespace gapi.client {
2280
2280
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2281
2281
  uploadType?: string;
2282
2282
  },
2283
- body: Service
2283
+ body: Service,
2284
2284
  ): Request<Operation>;
2285
2285
  /** Query Dataproc Metastore metadata. */
2286
2286
  queryMetadata(request: {
@@ -2338,7 +2338,7 @@ declare namespace gapi.client {
2338
2338
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2339
2339
  uploadType?: string;
2340
2340
  },
2341
- body: QueryMetadataRequest
2341
+ body: QueryMetadataRequest,
2342
2342
  ): Request<Operation>;
2343
2343
  /** Restores a service from a backup. */
2344
2344
  restore(request: {
@@ -2396,7 +2396,7 @@ declare namespace gapi.client {
2396
2396
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2397
2397
  uploadType?: string;
2398
2398
  },
2399
- body: RestoreServiceRequest
2399
+ body: RestoreServiceRequest,
2400
2400
  ): Request<Operation>;
2401
2401
  /** Sets the access control policy on the specified resource. Replaces any existing policy.Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED errors. */
2402
2402
  setIamPolicy(
@@ -2426,7 +2426,7 @@ declare namespace gapi.client {
2426
2426
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2427
2427
  uploadType?: string;
2428
2428
  },
2429
- body: SetIamPolicyRequest
2429
+ body: SetIamPolicyRequest,
2430
2430
  ): Request<Policy>;
2431
2431
  /** Starts the Managed Migration process. */
2432
2432
  startMigration(request: {
@@ -2484,7 +2484,7 @@ declare namespace gapi.client {
2484
2484
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2485
2485
  uploadType?: string;
2486
2486
  },
2487
- body: StartMigrationRequest
2487
+ body: StartMigrationRequest,
2488
2488
  ): Request<Operation>;
2489
2489
  /** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a NOT_FOUND error.Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
2490
2490
  testIamPermissions(
@@ -2514,7 +2514,7 @@ declare namespace gapi.client {
2514
2514
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2515
2515
  uploadType?: string;
2516
2516
  },
2517
- body: TestIamPermissionsRequest
2517
+ body: TestIamPermissionsRequest,
2518
2518
  ): Request<TestIamPermissionsResponse>;
2519
2519
  backups: BackupsResource;
2520
2520
  databases: DatabasesResource;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.metastore-v1",
3
- "version": "0.0.20250109",
3
+ "version": "0.0.20250123",
4
4
  "description": "TypeScript typings for Dataproc Metastore API v1",
5
5
  "repository": {
6
6
  "type": "git",
package/readme.md CHANGED
@@ -30,7 +30,7 @@ gapi.client.load(
30
30
  () => {
31
31
  // now we can use:
32
32
  // gapi.client.metastore
33
- }
33
+ },
34
34
  );
35
35
  ```
36
36
 
@@ -62,7 +62,7 @@ gapi.auth.authorize(
62
62
  } else {
63
63
  /* handle authorization error */
64
64
  }
65
- }
65
+ },
66
66
  );
67
67
  ```
68
68