Updates an instance partition, and begins allocating or releasing resources as requested. The returned long-running operation can be used to track the progress of updating the instance partition. If the named instance partition does not exist, returns NOT_FOUND
.
Immediately upon completion of this request:
- For resource types for which a decrease in the instance partition's allocation has been requested, billing is based on the newly-requested level.
Until completion of the returned operation:
- Cancelling the operation sets its metadata's
cancelTime
, and begins restoring resources to their pre-request values. The operation is guaranteed to succeed at undoing all resource changes, after which point it terminates with aCANCELLED
status. - All other attempts to modify the instance partition are rejected.
- Reading the instance partition via the API continues to give the pre-request resource levels.
Upon completion of the returned operation:
- Billing begins for all successfully-allocated resources (some types may have lower than the requested levels).
- All newly-reserved resources are available for serving the instance partition's tables.
- The instance partition's new resource levels are readable via the API.
The returned long-running operation will have a name of the format <instance_partition_name>/operations/<operationId>
and can be used to track the instance partition modification. The metadata field type is UpdateInstancePartitionMetadata
. The response field type is InstancePartition
, if successful.
Authorization requires spanner.instancePartitions.update
permission on the resource name
.
HTTP request
PATCH https://spanner.googleapis.com/v1/{instancePartition.name=projects/*/instances/*/instancePartitions/*}
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
instance |
Required. A unique identifier for the instance partition. Values are of the form |
Request body
The request body contains data with the following structure:
JSON representation |
---|
{
"instancePartition": {
"name": string,
"config": string,
"displayName": string,
"nodeCount": integer,
"processingUnits": integer,
"state": enum ( |
Fields | |
---|---|
instance |
Required. The name of the instance partition's configuration. Values are of the form |
instance |
Required. The descriptive name for this instance partition as it appears in UIs. Must be unique per project and between 4 and 30 characters in length. |
instance |
Output only. The current instance partition state. |
instance |
Output only. The time at which the instance partition was created. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
instance |
Output only. The time at which the instance partition was most recently updated. A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: |
instance |
Output only. The names of the databases that reference this instance partition. Referencing databases should share the parent instance. The existence of any referencing database prevents the instance partition from being deleted. |
instancePartition.referencingBackups[] |
Output only. Deprecated: This field is not populated. Output only. The names of the backups that reference this instance partition. Referencing backups should share the parent instance. The existence of any referencing backup prevents the instance partition from being deleted. |
instance |
Used for optimistic concurrency control as a way to help prevent simultaneous updates of a instance partition from overwriting each other. It is strongly suggested that systems make use of the etag in the read-modify-write cycle to perform instance partition updates in order to avoid race conditions: An etag is returned in the response which contains instance partitions, and systems are expected to put that etag in the request to update instance partitions to ensure that their change will be applied to the same version of the instance partition. If no etag is provided in the call to update instance partition, then the existing instance partition is overwritten blindly. |
field |
Required. A mask specifying which fields in This is a comma-separated list of fully qualified names of fields. Example: |
Union field compute_capacity . Compute capacity defines amount of server and storage resources that are available to the databases in an instance partition. At most, one of either node_count orprocessing_units should be present in the message. For more information, see Compute capacity, nodes, and processing units. compute_capacity can be only one of the following: |
|
instance |
The number of nodes allocated to this instance partition. Users can set the This may be zero in API responses for instance partitions that are not yet in state |
instance |
The number of processing units allocated to this instance partition. Users can set the This might be zero in API responses for instance partitions that are not yet in the |
Response body
If successful, the response body contains an instance of Operation
.
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/spanner.admin
https://www.googleapis.com/auth/cloud-platform
For more information, see the Authentication Overview.