You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AsymmetricAutoscalingOption specifies the scaling of replicas identified by the given selection.
21
+
22
+
## Attributes
23
+
24
+
* `overrides` (*type:* `GoogleApi.Spanner.V1.Model.AutoscalingConfigOverrides.t`, *default:* `nil`) - Optional. Overrides applied to the top-level autoscaling configuration for the selected replicas.
25
+
* `replicaSelection` (*type:* `GoogleApi.Spanner.V1.Model.InstanceReplicaSelection.t`, *default:* `nil`) - Required. Selects the replicas to which this AsymmetricAutoscalingOption applies. Only read-only replicas are supported.
Copy file name to clipboardExpand all lines: clients/spanner/lib/google_api/spanner/v1/model/autoscaling_config.ex
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -21,17 +21,25 @@ defmodule GoogleApi.Spanner.V1.Model.AutoscalingConfig do
21
21
22
22
## Attributes
23
23
24
+
* `asymmetricAutoscalingOptions` (*type:* `list(GoogleApi.Spanner.V1.Model.AsymmetricAutoscalingOption.t)`, *default:* `nil`) - Optional. Optional asymmetric autoscaling options. Replicas matching the replica selection criteria will be autoscaled independently from other replicas. The autoscaler will scale the replicas based on the utilization of replicas identified by the replica selection. Replica selections should not overlap with each other. Other replicas (those do not match any replica selection) will be autoscaled together and will have the same compute capacity allocated to them.
24
25
* `autoscalingLimits` (*type:* `GoogleApi.Spanner.V1.Model.AutoscalingLimits.t`, *default:* `nil`) - Required. Autoscaling limits for an instance.
25
26
* `autoscalingTargets` (*type:* `GoogleApi.Spanner.V1.Model.AutoscalingTargets.t`, *default:* `nil`) - Required. The autoscaling targets for an instance.
Overrides the top-level autoscaling configuration for the replicas identified by `replica_selection`. All fields in this message are optional. Any unspecified fields will use the corresponding values from the top-level autoscaling configuration.
21
+
22
+
## Attributes
23
+
24
+
* `autoscalingLimits` (*type:* `GoogleApi.Spanner.V1.Model.AutoscalingLimits.t`, *default:* `nil`) - Optional. If specified, overrides the min/max limit in the top-level autoscaling configuration for the selected replicas.
25
+
* `autoscalingTargetHighPriorityCpuUtilizationPercent` (*type:* `integer()`, *default:* `nil`) - Optional. If specified, overrides the autoscaling target high_priority_cpu_utilization_percent in the top-level autoscaling configuration for the selected replicas.
Copy file name to clipboardExpand all lines: clients/spanner/lib/google_api/spanner/v1/model/instance.ex
+11-2Lines changed: 11 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -31,8 +31,9 @@ defmodule GoogleApi.Spanner.V1.Model.Instance do
31
31
* `instanceType` (*type:* `String.t`, *default:* `nil`) - The `InstanceType` of the current instance.
32
32
* `labels` (*type:* `map()`, *default:* `nil`) - Cloud Labels are a flexible and lightweight mechanism for organizing cloud resources into groups that reflect a customer's organizational needs and deployment strategies. Cloud Labels can be used to filter collections of resources. They can be used to control how resource metrics are aggregated. And they can be used as arguments to policy management rules (e.g. route, firewall, load balancing, etc.). * Label keys must be between 1 and 63 characters long and must conform to the following regular expression: `a-z{0,62}`. * Label values must be between 0 and 63 characters long and must conform to the regular expression `[a-z0-9_-]{0,63}`. * No more than 64 labels can be associated with a given resource. See https://goo.gl/xmQnxf for more information on and examples of labels. If you plan to use labels in your own code, please note that additional characters may be allowed in the future. And so you are advised to use an internal label representation, such as JSON, which doesn't rely upon specific characters being disallowed. For example, representing labels as the string: name + "_" + value would prove problematic if we were to allow "_" in a future release.
33
33
* `name` (*type:* `String.t`, *default:* `nil`) - 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.
34
-
* `nodeCount` (*type:* `integer()`, *default:* `nil`) - 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 might be zero in API responses for instances that are not yet in the `READY` state. For more information, see [Compute capacity, nodes, and processing units](https://cloud.google.com/spanner/docs/compute-capacity).
35
-
* `processingUnits` (*type:* `integer()`, *default:* `nil`) - The number of processing units allocated to this instance. At most, one of either `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 might be zero in API responses for instances that are not yet in the `READY` state. For more information, see [Compute capacity, nodes and processing units](https://cloud.google.com/spanner/docs/compute-capacity).
34
+
* `nodeCount` (*type:* `integer()`, *default:* `nil`) - 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 might be zero in API responses for instances that are not yet in the `READY` state. If the instance has varying node count across replicas (achieved by setting asymmetric_autoscaling_options in autoscaling config), the node_count here is the maximum node count across all replicas. For more information, see [Compute capacity, nodes, and processing units](https://cloud.google.com/spanner/docs/compute-capacity).
35
+
* `processingUnits` (*type:* `integer()`, *default:* `nil`) - The number of processing units allocated to this instance. At most, one of either `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 might be zero in API responses for instances that are not yet in the `READY` state. If the instance has varying processing units per replica (achieved by setting asymmetric_autoscaling_options in autoscaling config), the processing_units here is the maximum processing units across all replicas. For more information, see [Compute capacity, nodes and processing units](https://cloud.google.com/spanner/docs/compute-capacity).
36
+
* `replicaComputeCapacity` (*type:* `list(GoogleApi.Spanner.V1.Model.ReplicaComputeCapacity.t)`, *default:* `nil`) - Output only. Lists the compute capacity per ReplicaSelection. A replica selection identifies a set of replicas with common properties. Replicas identified by a ReplicaSelection are scaled with the same compute capacity.
36
37
* `state` (*type:* `String.t`, *default:* `nil`) - 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`.
37
38
* `updateTime` (*type:* `DateTime.t`, *default:* `nil`) - Output only. The time at which the instance was most recently updated.
38
39
"""
@@ -52,6 +53,8 @@ defmodule GoogleApi.Spanner.V1.Model.Instance do
ReplicaComputeCapacity describes the amount of server resources that are allocated to each replica identified by the replica selection.
21
+
22
+
## Attributes
23
+
24
+
* `nodeCount` (*type:* `integer()`, *default:* `nil`) - The number of nodes allocated to each replica. This may be zero in API responses for instances that are not yet in state `READY`.
25
+
* `processingUnits` (*type:* `integer()`, *default:* `nil`) - The number of processing units allocated to each replica. This may be zero in API responses for instances that are not yet in state `READY`.
26
+
* `replicaSelection` (*type:* `GoogleApi.Spanner.V1.Model.InstanceReplicaSelection.t`, *default:* `nil`) - Required. Identifies replicas by specified properties. All replicas in the selection have the same amount of compute capacity.
0 commit comments