Class ResourcePool.AutoscalingSpec (3.54.0) 
  
  
  
   
  
    
  
  
    
    
    
    
  Version 3.54.0keyboard_arrow_down  
  
 
    
    
    
    
      
  
  
  
    
public   static   final   class  ResourcePool . AutoscalingSpec   extends   GeneratedMessageV3   implements   ResourcePool . AutoscalingSpecOrBuilder  
   The min/max number of replicas allowed if enabling autoscaling
 Protobuf type google.cloud.aiplatform.v1beta1.ResourcePool.AutoscalingSpec
    Inherited Members 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
      com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT) 
    
    
      com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT,int) 
    
    
    
    
    
    
    
    
      com.google.protobuf.GeneratedMessageV3.<T>emptyList(java.lang.Class<T>) 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
      com.google.protobuf.GeneratedMessageV3.internalGetMapFieldReflection(int) 
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
   
  Static Fields
   
  
  
    
public   static   final   int   MAX_REPLICA_COUNT_FIELD_NUMBER  
  
    
      
        Field Value  
      
        Type Description  
      
        int  
     
  
  
  
    
public   static   final   int   MIN_REPLICA_COUNT_FIELD_NUMBER  
  
    
      
        Field Value  
      
        Type Description  
      
        int  
     
  
  Static Methods
   
  
    
public   static   ResourcePool . AutoscalingSpec   getDefaultInstance ()  
  
  
    
public   static   final   Descriptors . Descriptor   getDescriptor ()  
  
  
    
public   static   ResourcePool . AutoscalingSpec . Builder   newBuilder ()  
  
  
    
public   static   ResourcePool . AutoscalingSpec . Builder   newBuilder ( ResourcePool . AutoscalingSpec   prototype )  
  
  
  
    
public   static   ResourcePool . AutoscalingSpec   parseDelimitedFrom ( InputStream   input )  
  
  
  
  
    
public   static   ResourcePool . AutoscalingSpec   parseDelimitedFrom ( InputStream   input ,   ExtensionRegistryLite   extensionRegistry )  
  
  
  
  
    
public   static   ResourcePool . AutoscalingSpec   parseFrom ( byte []   data )  
  
    
      
        Parameter  
      
        Name Description  
      
        databyte [] 
     
  
  
  
  
    
public   static   ResourcePool . AutoscalingSpec   parseFrom ( byte []   data ,   ExtensionRegistryLite   extensionRegistry )  
  
  
  
  
    
public   static   ResourcePool . AutoscalingSpec   parseFrom ( ByteString   data )  
  
  
  
  
    
public   static   ResourcePool . AutoscalingSpec   parseFrom ( ByteString   data ,   ExtensionRegistryLite   extensionRegistry )  
  
  
  
  
    
public   static   ResourcePool . AutoscalingSpec   parseFrom ( CodedInputStream   input )  
  
  
  
  
    
public   static   ResourcePool . AutoscalingSpec   parseFrom ( CodedInputStream   input ,   ExtensionRegistryLite   extensionRegistry )  
  
  
  
  
    
public   static   ResourcePool . AutoscalingSpec   parseFrom ( InputStream   input )  
  
  
  
  
    
public   static   ResourcePool . AutoscalingSpec   parseFrom ( InputStream   input ,   ExtensionRegistryLite   extensionRegistry )  
  
  
  
  
    
public   static   ResourcePool . AutoscalingSpec   parseFrom ( ByteBuffer   data )  
  
  
  
  
    
public   static   ResourcePool . AutoscalingSpec   parseFrom ( ByteBuffer   data ,   ExtensionRegistryLite   extensionRegistry )  
  
  
  
  
    
public   static   Parser<ResourcePool . AutoscalingSpec >  parser ()  
  
  Methods
   
  
    
public   boolean   equals ( Object   obj )  
  
    
      
        Parameter  
      
        Name Description  
      
        objObject  
     
  
  
  Overrides 
  
  
    
public   ResourcePool . AutoscalingSpec   getDefaultInstanceForType ()  
  
  
    
public   long   getMaxReplicaCount ()  
   Optional. max replicas in the node pool,
 must be ≥ replica_count and > min_replica_count or will throw error
 optional int64 max_replica_count = 2 [(.google.api.field_behavior) = OPTIONAL];
    
      
        Returns  
      
        Type Description  
      
        long The maxReplicaCount.
 
     
  
  
    
public   long   getMinReplicaCount ()  
   Optional. min replicas in the node pool,
 must be ≤ replica_count and < max_replica_count or will throw error.
 For autoscaling enabled Ray-on-Vertex, we allow min_replica_count of a
 resource_pool to be 0 to match the OSS Ray
 behavior(https://docs.ray.io/en/latest/cluster/vms/user-guides/configuring-autoscaling.html#cluster-config-parameters ).
 As for Persistent Resource, the min_replica_count must be > 0, we added
 a corresponding validation inside
 CreatePersistentResourceRequestValidator.java.
 optional int64 min_replica_count = 1 [(.google.api.field_behavior) = OPTIONAL];
    
      
        Returns  
      
        Type Description  
      
        long The minReplicaCount.
 
     
  
  
    
public   Parser<ResourcePool . AutoscalingSpec >  getParserForType ()  
  
  Overrides 
  
  
    
public   int   getSerializedSize ()  
  
    
      
        Returns  
      
        Type Description  
      
        int  
     
  
  Overrides 
  
  
    
public   boolean   hasMaxReplicaCount ()  
   Optional. max replicas in the node pool,
 must be ≥ replica_count and > min_replica_count or will throw error
 optional int64 max_replica_count = 2 [(.google.api.field_behavior) = OPTIONAL];
    
      
        Returns  
      
        Type Description  
      
        boolean Whether the maxReplicaCount field is set.
 
     
  
  
    
public   boolean   hasMinReplicaCount ()  
   Optional. min replicas in the node pool,
 must be ≤ replica_count and < max_replica_count or will throw error.
 For autoscaling enabled Ray-on-Vertex, we allow min_replica_count of a
 resource_pool to be 0 to match the OSS Ray
 behavior(https://docs.ray.io/en/latest/cluster/vms/user-guides/configuring-autoscaling.html#cluster-config-parameters ).
 As for Persistent Resource, the min_replica_count must be > 0, we added
 a corresponding validation inside
 CreatePersistentResourceRequestValidator.java.
 optional int64 min_replica_count = 1 [(.google.api.field_behavior) = OPTIONAL];
    
      
        Returns  
      
        Type Description  
      
        boolean Whether the minReplicaCount field is set.
 
     
  
  
    
      
        Returns  
      
        Type Description  
      
        int  
     
  
  Overrides 
  
  
    
protected   GeneratedMessageV3 . FieldAccessorTable   internalGetFieldAccessorTable ()  
  
  Overrides 
  
  
    
public   final   boolean   isInitialized ()  
  
  Overrides 
  
  
    
public   ResourcePool . AutoscalingSpec . Builder   newBuilderForType ()  
  
  
    
protected   ResourcePool . AutoscalingSpec . Builder   newBuilderForType ( GeneratedMessageV3 . BuilderParent   parent )  
  
  
  Overrides 
  
  
    
protected   Object   newInstance ( GeneratedMessageV3 . UnusedPrivateParameter   unused )  
  
  
    
      
        Returns  
      
        Type Description  
      
        Object  
     
  
  Overrides 
  
  
    
public   ResourcePool . AutoscalingSpec . Builder   toBuilder ()  
  
  
    
public   void   writeTo ( CodedOutputStream   output )  
  
  Overrides 
  
  
 
     
    
  
  
  
     
  
    
    
      
       
    
    
  
  
 
  Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License , and code samples are licensed under the Apache 2.0 License . For details, see the Google Developers Site Policies . Java is a registered trademark of Oracle and/or its affiliates.
  Last updated 2025-10-29 UTC.
 
 
  
  
  
    
      [[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-10-29 UTC."],[],[]]