github.com/NaverCloudPlatform/ncloud-sdk-go-v2@v1.6.13/services/autoscaling/create_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 CreateAutoScalingGroupRequest 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"` 24 25 // 최대사이즈 26 MaxSize *int32 `json:"maxSize"` 27 28 // 디폴트쿨다운타임 29 DefaultCooldown *int32 `json:"defaultCooldown,omitempty"` 30 31 // 로드밸런서명리스트 32 LoadBalancerNameList []*string `json:"loadBalancerNameList,omitempty"` 33 34 // 헬스체크보류기간 35 HealthCheckGracePeriod *int32 `json:"healthCheckGracePeriod,omitempty"` 36 37 // 헬스체크유형코드 38 HealthCheckTypeCode *string `json:"healthCheckTypeCode,omitempty"` 39 40 // ZONE번호리스트 41 ZoneNoList []*string `json:"zoneNoList"` 42 }