github.com/NaverCloudPlatform/ncloud-sdk-go-v2@v1.6.13/services/autoscaling/put_scheduled_update_group_action_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 PutScheduledUpdateGroupActionRequest struct { 12 13 // 오토스케일링그룹명 14 AutoScalingGroupName *string `json:"autoScalingGroupName"` 15 16 // 기대용량치 17 DesiredCapacity *int32 `json:"desiredCapacity,omitempty"` 18 19 // 반복스케쥴종료시간 20 EndTime *string `json:"endTime,omitempty"` 21 22 // 최대사이즈 23 MaxSize *int32 `json:"maxSize,omitempty"` 24 25 // 최소사이즈 26 MinSize *int32 `json:"minSize,omitempty"` 27 28 // 반복스케줄설정 29 RecurrenceInKST *string `json:"recurrenceInKST,omitempty"` 30 31 // 스케쥴액션명 32 ScheduledActionName *string `json:"scheduledActionName"` 33 34 // 스케쥴시작시간 35 StartTime *string `json:"startTime,omitempty"` 36 }