@maxim_mazurok/gapi.client.spanner-v1 0.0.20240422 → 0.0.20240514
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 +116 -5
- 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://spanner.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240514
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -55,6 +55,8 @@ declare namespace gapi.client {
|
|
|
55
55
|
databaseDialect?: string;
|
|
56
56
|
/** Output only. The encryption information for the backup. */
|
|
57
57
|
encryptionInfo?: EncryptionInfo;
|
|
58
|
+
/** Output only. The encryption information for the backup, whether it is protected by one or more KMS keys. The information includes all Cloud KMS key versions used to encrypt the backup. The `encryption_status' field inside of each `EncryptionInfo` is not populated. At least one of the key versions must be available for the backup to be restored. If a key version is revoked in the middle of a restore, the restore behavior is undefined. */
|
|
59
|
+
encryptionInformation?: EncryptionInfo[];
|
|
58
60
|
/** Required for the CreateBackup operation. The expiration time of the backup, with microseconds granularity that must be at least 6 hours and at most 366 days from the time the CreateBackup request is processed. Once the `expire_time` has passed, the backup is eligible to be automatically deleted by Cloud Spanner to free the resources used by the backup. */
|
|
59
61
|
expireTime?: string;
|
|
60
62
|
/** Output only. The max allowed expiration time of the backup, with microseconds granularity. A backup's expiration time can be configured in multiple APIs: CreateBackup, UpdateBackup, CopyBackup. When updating or copying an existing backup, the expiration time specified must be less than `Backup.max_expire_time`. */
|
|
@@ -122,6 +124,22 @@ declare namespace gapi.client {
|
|
|
122
124
|
/** Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM roles and permissions, see the [IAM documentation](https://cloud.google.com/iam/docs/roles-overview). For a list of the available pre-defined roles, see [here](https://cloud.google.com/iam/docs/understanding-roles). */
|
|
123
125
|
role?: string;
|
|
124
126
|
}
|
|
127
|
+
interface ChangeQuorumMetadata {
|
|
128
|
+
/** If set, the time at which this operation failed or was completed successfully. */
|
|
129
|
+
endTime?: string;
|
|
130
|
+
/** The request for ChangeQuorum. */
|
|
131
|
+
request?: ChangeQuorumRequest;
|
|
132
|
+
/** Time the request was received. */
|
|
133
|
+
startTime?: string;
|
|
134
|
+
}
|
|
135
|
+
interface ChangeQuorumRequest {
|
|
136
|
+
/** Optional. The etag is the hash of the QuorumInfo. The ChangeQuorum operation will only be performed if the etag matches that of the QuorumInfo in the current database resource. Otherwise the API will return an `ABORTED` error. The etag is used for optimistic concurrency control as a way to help prevent simultaneous change quorum requests that could create a race condition. */
|
|
137
|
+
etag?: string;
|
|
138
|
+
/** Required. Name of the database in which to apply the ChangeQuorum. Values are of the form `projects//instances//databases/`. */
|
|
139
|
+
name?: string;
|
|
140
|
+
/** Required. The type of this Quorum. */
|
|
141
|
+
quorumType?: QuorumType;
|
|
142
|
+
}
|
|
125
143
|
interface ChildLink {
|
|
126
144
|
/** The node to which the link points. */
|
|
127
145
|
childIndex?: number;
|
|
@@ -169,6 +187,8 @@ declare namespace gapi.client {
|
|
|
169
187
|
encryptionType?: string;
|
|
170
188
|
/** Optional. The Cloud KMS key that will be used to protect the backup. This field should be set only when encryption_type is `CUSTOMER_MANAGED_ENCRYPTION`. Values are of the form `projects//locations//keyRings//cryptoKeys/`. */
|
|
171
189
|
kmsKeyName?: string;
|
|
190
|
+
/** Optional. Specifies the KMS configuration for the one or more keys used to protect the backup. Values are of the form `projects//locations//keyRings//cryptoKeys/`. Kms keys specified can be in any order. The keys referenced by kms_key_names must fully cover all regions of the backup's instance configuration. Some examples: * For single region instance configs, specify a single regional location KMS key. * For multi-regional instance configs of type GOOGLE_MANAGED, either specify a multi-regional location KMS key or multiple regional location KMS keys that cover all regions in the instance config. * For an instance config of type USER_MANAGED, please specify only regional location KMS keys to cover each region in the instance config. Multi-regional location KMS keys are not supported for USER_MANAGED instance configs. */
|
|
191
|
+
kmsKeyNames?: string[];
|
|
172
192
|
}
|
|
173
193
|
interface CopyBackupMetadata {
|
|
174
194
|
/** The time at which cancellation of CopyBackup operation was received. Operations.CancelOperation starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`. */
|
|
@@ -287,6 +307,8 @@ declare namespace gapi.client {
|
|
|
287
307
|
encryptionInfo?: EncryptionInfo[];
|
|
288
308
|
/** Required. The name of the database. Values are of the form `projects//instances//databases/`, where `` is as specified in the `CREATE DATABASE` statement. This name can be passed to other API methods to identify the database. */
|
|
289
309
|
name?: string;
|
|
310
|
+
/** Output only. Applicable only for databases that use dual region instance configurations. Contains information about the quorum. */
|
|
311
|
+
quorumInfo?: QuorumInfo;
|
|
290
312
|
/** Output only. If true, the database is being updated. If false, there are no ongoing update operations for the database. */
|
|
291
313
|
reconciling?: boolean;
|
|
292
314
|
/** Output only. Applicable only for restored databases. Contains information about the restore source. */
|
|
@@ -338,10 +360,13 @@ declare namespace gapi.client {
|
|
|
338
360
|
/** Include_replicas indicates the order of replicas (as they appear in this list) to process the request. If auto_failover_disabled is set to true and all replicas are exhausted without finding a healthy replica, Spanner will wait for a replica in the list to become available, requests may fail due to `DEADLINE_EXCEEDED` errors. */
|
|
339
361
|
includeReplicas?: IncludeReplicas;
|
|
340
362
|
}
|
|
363
|
+
interface DualRegionQuorum {}
|
|
341
364
|
interface Empty {}
|
|
342
365
|
interface EncryptionConfig {
|
|
343
366
|
/** The Cloud KMS key to be used for encrypting and decrypting the database. Values are of the form `projects//locations//keyRings//cryptoKeys/`. */
|
|
344
367
|
kmsKeyName?: string;
|
|
368
|
+
/** Specifies the KMS configuration for the one or more keys used to encrypt the database. Values are of the form `projects//locations//keyRings//cryptoKeys/`. The keys referenced by kms_key_names must fully cover all regions of the database instance configuration. Some examples: * For single region database instance configs, specify a single regional location KMS key. * For multi-regional database instance configs of type GOOGLE_MANAGED, either specify a multi-regional location KMS key or multiple regional location KMS keys that cover all regions in the instance config. * For a database instance config of type USER_MANAGED, please specify only regional location KMS keys to cover each region in the instance config. Multi-regional location KMS keys are not supported for USER_MANAGED instance configs. */
|
|
369
|
+
kmsKeyNames?: string[];
|
|
345
370
|
}
|
|
346
371
|
interface EncryptionInfo {
|
|
347
372
|
/** Output only. If present, the status of a recent encrypt/decrypt call on underlying data for this database or backup. Regardless of status, data is always encrypted at rest. */
|
|
@@ -474,9 +499,9 @@ declare namespace gapi.client {
|
|
|
474
499
|
labels?: {[P in string]: string};
|
|
475
500
|
/** Required. A unique identifier for the instance, which cannot be changed after the instance is created. Values are of the form `projects//instances/a-z*[a-z0-9]`. The final segment of the name must be between 2 and 64 characters in length. */
|
|
476
501
|
name?: string;
|
|
477
|
-
/** The number of nodes allocated to this instance. At most one of either node_count or processing_units should be present in the message. Users can set the node_count field to specify the target number of nodes allocated to the instance. This may be zero in API responses for instances that are not yet in state `READY`. See [the documentation](https://cloud.google.com/spanner/docs/compute-capacity) for more information about nodes and processing units. */
|
|
502
|
+
/** The number of nodes allocated to this instance. At most one of either node_count or processing_units should be present in the message. Users can set the node_count field to specify the target number of nodes allocated to the instance. If autoscaling is enabled, node_count is treated as an OUTPUT_ONLY field and reflects the current number of nodes allocated to the instance. This may be zero in API responses for instances that are not yet in state `READY`. See [the documentation](https://cloud.google.com/spanner/docs/compute-capacity) for more information about nodes and processing units. */
|
|
478
503
|
nodeCount?: number;
|
|
479
|
-
/** The number of processing units allocated to this instance. At most one of processing_units or node_count should be present in the message. Users can set the processing_units field to specify the target number of processing units allocated to the instance. This may be zero in API responses for instances that are not yet in state `READY`. See [the documentation](https://cloud.google.com/spanner/docs/compute-capacity) for more information about nodes and processing units. */
|
|
504
|
+
/** The number of processing units allocated to this instance. At most one of processing_units or node_count should be present in the message. Users can set the processing_units field to specify the target number of processing units allocated to the instance. If autoscaling is enabled, processing_units is treated as an OUTPUT_ONLY field and reflects the current number of processing units allocated to the instance. This may be zero in API responses for instances that are not yet in state `READY`. See [the documentation](https://cloud.google.com/spanner/docs/compute-capacity) for more information about nodes and processing units. */
|
|
480
505
|
processingUnits?: number;
|
|
481
506
|
/** Output only. The current instance state. For CreateInstance, the state must be either omitted or set to `CREATING`. For UpdateInstance, the state must be either omitted or set to `READY`. */
|
|
482
507
|
state?: string;
|
|
@@ -502,6 +527,8 @@ declare namespace gapi.client {
|
|
|
502
527
|
name?: string;
|
|
503
528
|
/** Output only. The available optional replicas to choose from for user managed configurations. Populated for Google managed configurations. */
|
|
504
529
|
optionalReplicas?: ReplicaInfo[];
|
|
530
|
+
/** Output only. The `QuorumType` of the instance configuration. */
|
|
531
|
+
quorumType?: string;
|
|
505
532
|
/** Output only. If true, the instance config is being created or updated. If false, there are no ongoing operations for the instance config. */
|
|
506
533
|
reconciling?: boolean;
|
|
507
534
|
/** The geographic placement of nodes in this instance configuration and their replication properties. */
|
|
@@ -642,7 +669,7 @@ declare namespace gapi.client {
|
|
|
642
669
|
instancePartitions?: InstancePartition[];
|
|
643
670
|
/** `next_page_token` can be sent in a subsequent ListInstancePartitions call to fetch more of the matching instance partitions. */
|
|
644
671
|
nextPageToken?: string;
|
|
645
|
-
/** The list of unreachable instance partitions. It includes the names of instance partitions whose metadata could not be retrieved within instance_partition_deadline. */
|
|
672
|
+
/** The list of unreachable instances or instance partitions. It includes the names of instances or instance partitions whose metadata could not be retrieved within instance_partition_deadline. */
|
|
646
673
|
unreachable?: string[];
|
|
647
674
|
}
|
|
648
675
|
interface ListInstancesResponse {
|
|
@@ -866,6 +893,22 @@ declare namespace gapi.client {
|
|
|
866
893
|
/** Optional. The advices/recommendations for a query. Currently this field will be serving index recommendations for a query. */
|
|
867
894
|
queryAdvice?: QueryAdvisorResult;
|
|
868
895
|
}
|
|
896
|
+
interface QuorumInfo {
|
|
897
|
+
/** Output only. The etag is used for optimistic concurrency control as a way to help prevent simultaneous ChangeQuorum requests that could create a race condition. */
|
|
898
|
+
etag?: string;
|
|
899
|
+
/** Output only. Whether this ChangeQuorum is a Google or User initiated. */
|
|
900
|
+
initiator?: string;
|
|
901
|
+
/** Output only. The type of this quorum. See QuorumType for more information about quorum type specifications. */
|
|
902
|
+
quorumType?: QuorumType;
|
|
903
|
+
/** Output only. The timestamp when the request was triggered. */
|
|
904
|
+
startTime?: string;
|
|
905
|
+
}
|
|
906
|
+
interface QuorumType {
|
|
907
|
+
/** Dual region quorum type. */
|
|
908
|
+
dualRegion?: any;
|
|
909
|
+
/** Single region quorum type. */
|
|
910
|
+
singleRegion?: SingleRegionQuorum;
|
|
911
|
+
}
|
|
869
912
|
interface ReadOnly {
|
|
870
913
|
/** Executes all reads at a timestamp that is `exact_staleness` old. The timestamp is chosen soon after the read is started. Guarantees that all writes that have committed more than the specified number of seconds ago are visible. Because Cloud Spanner chooses the exact timestamp, this mode works even if the client's local clock is substantially skewed from Cloud Spanner commit timestamps. Useful for reading at nearby replicas without the distributed timestamp negotiation overhead of `max_staleness`. */
|
|
871
914
|
exactStaleness?: string;
|
|
@@ -935,6 +978,8 @@ declare namespace gapi.client {
|
|
|
935
978
|
encryptionType?: string;
|
|
936
979
|
/** Optional. The Cloud KMS key that will be used to encrypt/decrypt the restored database. This field should be set only when encryption_type is `CUSTOMER_MANAGED_ENCRYPTION`. Values are of the form `projects//locations//keyRings//cryptoKeys/`. */
|
|
937
980
|
kmsKeyName?: string;
|
|
981
|
+
/** Optional. Specifies the KMS configuration for the one or more keys used to encrypt the database. Values are of the form `projects//locations//keyRings//cryptoKeys/`. The keys referenced by kms_key_names must fully cover all regions of the database instance configuration. Some examples: * For single region database instance configs, specify a single regional location KMS key. * For multi-regional database instance configs of type GOOGLE_MANAGED, either specify a multi-regional location KMS key or multiple regional location KMS keys that cover all regions in the instance config. * For a database instance config of type USER_MANAGED, please specify only regional location KMS keys to cover each region in the instance config. Multi-regional location KMS keys are not supported for USER_MANAGED instance configs. */
|
|
982
|
+
kmsKeyNames?: string[];
|
|
938
983
|
}
|
|
939
984
|
interface RestoreDatabaseMetadata {
|
|
940
985
|
/** Information about the backup used to restore the database. */
|
|
@@ -1038,6 +1083,10 @@ declare namespace gapi.client {
|
|
|
1038
1083
|
/** A mapping of (subquery variable name) -> (subquery node id) for cases where the `description` string of this node references a `SCALAR` subquery contained in the expression subtree rooted at this node. The referenced `SCALAR` subquery may not necessarily be a direct child of this node. */
|
|
1039
1084
|
subqueries?: {[P in string]: number};
|
|
1040
1085
|
}
|
|
1086
|
+
interface SingleRegionQuorum {
|
|
1087
|
+
/** Required. The location of the serving region, e.g. "us-central1". The location must be one of the regions within the dual region instance configuration of your database. The list of valid locations is available via [GetInstanceConfig[InstanceAdmin.GetInstanceConfig] API. This should only be used if you plan to change quorum in single-region quorum type. */
|
|
1088
|
+
servingLocation?: string;
|
|
1089
|
+
}
|
|
1041
1090
|
interface Statement {
|
|
1042
1091
|
/** Parameter names and values that bind to placeholders in the DML string. A parameter placeholder consists of the `@` character followed by the parameter name (for example, `@firstName`). Parameter names can contain letters, numbers, and underscores. Parameters can appear anywhere that a literal value is expected. The same parameter name can be used more than once, for example: `"WHERE id > @msg_id AND id < @msg_id + 100"` It is an error to execute a SQL statement with unbound parameters. */
|
|
1043
1092
|
params?: {[P in string]: any};
|
|
@@ -1923,6 +1972,8 @@ declare namespace gapi.client {
|
|
|
1923
1972
|
'encryptionConfig.encryptionType'?: string;
|
|
1924
1973
|
/** Optional. The Cloud KMS key that will be used to protect the backup. This field should be set only when encryption_type is `CUSTOMER_MANAGED_ENCRYPTION`. Values are of the form `projects//locations//keyRings//cryptoKeys/`. */
|
|
1925
1974
|
'encryptionConfig.kmsKeyName'?: string;
|
|
1975
|
+
/** Optional. Specifies the KMS configuration for the one or more keys used to protect the backup. Values are of the form `projects//locations//keyRings//cryptoKeys/`. The keys referenced by kms_key_names must fully cover all regions of the backup's instance configuration. Some examples: * For single region instance configs, specify a single regional location KMS key. * For multi-regional instance configs of type GOOGLE_MANAGED, either specify a multi-regional location KMS key or multiple regional location KMS keys that cover all regions in the instance config. * For an instance config of type USER_MANAGED, please specify only regional location KMS keys to cover each region in the instance config. Multi-regional location KMS keys are not supported for USER_MANAGED instance configs. */
|
|
1976
|
+
'encryptionConfig.kmsKeyNames'?: string | string[];
|
|
1926
1977
|
/** Selector specifying which fields to include in a partial response. */
|
|
1927
1978
|
fields?: string;
|
|
1928
1979
|
/** 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. */
|
|
@@ -1958,6 +2009,8 @@ declare namespace gapi.client {
|
|
|
1958
2009
|
'encryptionConfig.encryptionType'?: string;
|
|
1959
2010
|
/** Optional. The Cloud KMS key that will be used to protect the backup. This field should be set only when encryption_type is `CUSTOMER_MANAGED_ENCRYPTION`. Values are of the form `projects//locations//keyRings//cryptoKeys/`. */
|
|
1960
2011
|
'encryptionConfig.kmsKeyName'?: string;
|
|
2012
|
+
/** Optional. Specifies the KMS configuration for the one or more keys used to protect the backup. Values are of the form `projects//locations//keyRings//cryptoKeys/`. The keys referenced by kms_key_names must fully cover all regions of the backup's instance configuration. Some examples: * For single region instance configs, specify a single regional location KMS key. * For multi-regional instance configs of type GOOGLE_MANAGED, either specify a multi-regional location KMS key or multiple regional location KMS keys that cover all regions in the instance config. * For an instance config of type USER_MANAGED, please specify only regional location KMS keys to cover each region in the instance config. Multi-regional location KMS keys are not supported for USER_MANAGED instance configs. */
|
|
2013
|
+
'encryptionConfig.kmsKeyNames'?: string | string[];
|
|
1961
2014
|
/** Selector specifying which fields to include in a partial response. */
|
|
1962
2015
|
fields?: string;
|
|
1963
2016
|
/** 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. */
|
|
@@ -3276,6 +3329,64 @@ declare namespace gapi.client {
|
|
|
3276
3329
|
): Request<PartialResultSet>;
|
|
3277
3330
|
}
|
|
3278
3331
|
interface DatabasesResource {
|
|
3332
|
+
/** ChangeQuorum is strictly restricted to databases that use dual region instance configurations. Initiates a background operation to change quorum a database from dual-region mode to single-region mode and vice versa. The returned long-running operation will have a name of the format `projects//instances//databases//operations/` and can be used to track execution of the ChangeQuorum. The metadata field type is ChangeQuorumMetadata. Authorization requires `spanner.databases.changequorum` permission on the resource database. */
|
|
3333
|
+
changequorum(request: {
|
|
3334
|
+
/** V1 error format. */
|
|
3335
|
+
'$.xgafv'?: string;
|
|
3336
|
+
/** OAuth access token. */
|
|
3337
|
+
access_token?: string;
|
|
3338
|
+
/** Data format for response. */
|
|
3339
|
+
alt?: string;
|
|
3340
|
+
/** JSONP */
|
|
3341
|
+
callback?: string;
|
|
3342
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3343
|
+
fields?: string;
|
|
3344
|
+
/** 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. */
|
|
3345
|
+
key?: string;
|
|
3346
|
+
/** Required. Name of the database in which to apply the ChangeQuorum. Values are of the form `projects//instances//databases/`. */
|
|
3347
|
+
name: string;
|
|
3348
|
+
/** OAuth 2.0 token for the current user. */
|
|
3349
|
+
oauth_token?: string;
|
|
3350
|
+
/** Returns response with indentations and line breaks. */
|
|
3351
|
+
prettyPrint?: boolean;
|
|
3352
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3353
|
+
quotaUser?: string;
|
|
3354
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3355
|
+
upload_protocol?: string;
|
|
3356
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3357
|
+
uploadType?: string;
|
|
3358
|
+
/** Request body */
|
|
3359
|
+
resource: ChangeQuorumRequest;
|
|
3360
|
+
}): Request<Operation>;
|
|
3361
|
+
changequorum(
|
|
3362
|
+
request: {
|
|
3363
|
+
/** V1 error format. */
|
|
3364
|
+
'$.xgafv'?: string;
|
|
3365
|
+
/** OAuth access token. */
|
|
3366
|
+
access_token?: string;
|
|
3367
|
+
/** Data format for response. */
|
|
3368
|
+
alt?: string;
|
|
3369
|
+
/** JSONP */
|
|
3370
|
+
callback?: string;
|
|
3371
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3372
|
+
fields?: string;
|
|
3373
|
+
/** 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. */
|
|
3374
|
+
key?: string;
|
|
3375
|
+
/** Required. Name of the database in which to apply the ChangeQuorum. Values are of the form `projects//instances//databases/`. */
|
|
3376
|
+
name: string;
|
|
3377
|
+
/** OAuth 2.0 token for the current user. */
|
|
3378
|
+
oauth_token?: string;
|
|
3379
|
+
/** Returns response with indentations and line breaks. */
|
|
3380
|
+
prettyPrint?: boolean;
|
|
3381
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
3382
|
+
quotaUser?: string;
|
|
3383
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3384
|
+
upload_protocol?: string;
|
|
3385
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3386
|
+
uploadType?: string;
|
|
3387
|
+
},
|
|
3388
|
+
body: ChangeQuorumRequest
|
|
3389
|
+
): Request<Operation>;
|
|
3279
3390
|
/** Creates a new Cloud Spanner database and starts to prepare it for serving. The returned long-running operation will have a name of the format `/operations/` and can be used to track preparation of the database. The metadata field type is CreateDatabaseMetadata. The response field type is Database, if successful. */
|
|
3280
3391
|
create(request: {
|
|
3281
3392
|
/** V1 error format. */
|
|
@@ -4041,7 +4152,7 @@ declare namespace gapi.client {
|
|
|
4041
4152
|
pageSize?: number;
|
|
4042
4153
|
/** If non-empty, `page_token` should contain a next_page_token from a previous ListInstancePartitionsResponse. */
|
|
4043
4154
|
pageToken?: string;
|
|
4044
|
-
/** Required. The instance whose instance partitions should be listed. Values are of the form `projects//instances/`. */
|
|
4155
|
+
/** Required. The instance whose instance partitions should be listed. Values are of the form `projects//instances/`. Use `{instance} = '-'` to list instance partitions for all Instances in a project, e.g., `projects/myproject/instances/-`. */
|
|
4045
4156
|
parent: string;
|
|
4046
4157
|
/** Returns response with indentations and line breaks. */
|
|
4047
4158
|
prettyPrint?: boolean;
|