github.com/NaverCloudPlatform/ncloud-sdk-go-v2@v1.6.13/services/autoscaling/scheduled_update_group_action.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 ScheduledUpdateGroupAction struct {
    12  
    13  	// 오토스케일링그룹명
    14  AutoScalingGroupName *string `json:"autoScalingGroupName,omitempty"`
    15  
    16  	// 스케쥴액션명
    17  ScheduledActionName *string `json:"scheduledActionName,omitempty"`
    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  StartTime *string `json:"startTime,omitempty"`
    30  
    31  	// 반복스케쥴종료시간
    32  EndTime *string `json:"endTime,omitempty"`
    33  
    34  	// 반복스케쥴설정
    35  RecurrenceInKST *string `json:"recurrenceInKST,omitempty"`
    36  }