github.com/NaverCloudPlatform/ncloud-sdk-go-v2@v1.6.13/services/vnks/autoscale_option.go (about) 1 /* 2 * vnks 3 * 4 * <br/>https://nks.apigw.ntruss.com/vnks/v2 5 * 6 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) 7 */ 8 9 package vnks 10 11 type AutoscaleOption struct { 12 13 // 오토스케일 가능여부 14 Enabled *bool `json:"enabled"` 15 16 // 오토스케일 가능 최대 노드 수 17 Max *int32 `json:"max"` 18 19 // 오토스케일 가능 최소 노드 수 20 Min *int32 `json:"min"` 21 }