github.com/NaverCloudPlatform/ncloud-sdk-go-v2@v1.6.13/services/autoscaling/update_auto_scaling_group_request.go (about)

     1  /*
     2   * autoscaling
     3   *
     4   * <br/>https://ncloud.apigw.ntruss.com/autoscaling/v2
     5   *
     6   * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
     7   */
     8  
     9  package autoscaling
    10  
    11  type UpdateAutoScalingGroupRequest struct {
    12  
    13  	// 오토스케일링그룹명
    14  AutoScalingGroupName *string `json:"autoScalingGroupName,omitempty"`
    15  
    16  	// 론치설정명
    17  LaunchConfigurationName *string `json:"launchConfigurationName"`
    18  
    19  	// 기대용량치
    20  DesiredCapacity *int32 `json:"desiredCapacity,omitempty"`
    21  
    22  	// 최소사이즈
    23  MinSize *int32 `json:"minSize,omitempty"`
    24  
    25  	// 최대사이즈
    26  MaxSize *int32 `json:"maxSize,omitempty"`
    27  
    28  	// 디폴트쿨다운타임
    29  DefaultCooldown *int32 `json:"defaultCooldown,omitempty"`
    30  
    31  	// 헬스체크보류기간
    32  HealthCheckGracePeriod *int32 `json:"healthCheckGracePeriod,omitempty"`
    33  
    34  	// 헬스체크유형코드
    35  HealthCheckTypeCode *string `json:"healthCheckTypeCode,omitempty"`
    36  
    37  	// ZONE번호리스트
    38  ZoneNoList []*string `json:"zoneNoList,omitempty"`
    39  }