public sealed class AutoscalingTargets : IMessage<AutoscalingTargets>, IEquatable<AutoscalingTargets>, IDeepCloneable<AutoscalingTargets>, IBufferMessage, IMessage
The Autoscaling targets for a Cluster. These determine the recommended nodes.
The cpu utilization that the Autoscaler should be trying to achieve.
This number is on a scale from 0 (no utilization) to
100 (total utilization), and is limited between 10 and 80, otherwise it
will return INVALID_ARGUMENT error.
public int StorageUtilizationGibPerNode { get; set; }
The storage utilization that the Autoscaler should be trying to achieve.
This number is limited between 2560 (2.5TiB) and 5120 (5TiB) for a SSD
cluster and between 8192 (8TiB) and 16384 (16TiB) for an HDD cluster;
otherwise it will return INVALID_ARGUMENT error. If this value is set to 0,
it will be treated as if it were set to the default value: 2560 for SSD,
8192 for HDD.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-25 UTC."],[[["The webpage provides documentation for the `AutoscalingTargets` class within the `Google.Cloud.Bigtable.Admin.V2` namespace, detailing various versions from 3.0.0 to 3.24.0 (latest)."],["`AutoscalingTargets` is a class used for determining recommended nodes in a cluster, implementing several interfaces including `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`."],["The class includes two constructors: a default constructor and one that takes another `AutoscalingTargets` object as a parameter for initialization."],["Key properties of the `AutoscalingTargets` class are `CpuUtilizationPercent`, controlling CPU utilization target (10-80), and `StorageUtilizationGibPerNode`, managing storage utilization per node (2560-5120 for SSD, 8192-16384 for HDD)."],["The latest version of `AutoscalingTargets` is version 3.24.0."]]],[]]