fix tests
regenerate code regenerate code, revendor fix website
This commit is contained in:
parent
e04eaa89e6
commit
c4d0c5505a
|
@ -4,6 +4,7 @@ import (
|
|||
"fmt"
|
||||
"testing"
|
||||
|
||||
"github.com/hashicorp/packer/common/commonsteps"
|
||||
"github.com/hashicorp/packer/helper/communicator"
|
||||
"github.com/hashicorp/packer/helper/multistep"
|
||||
"github.com/hashicorp/packer/packer"
|
||||
|
|
|
@ -64,6 +64,7 @@ type FlatConfig struct {
|
|||
CdromType *string `mapstructure:"cdrom_type" cty:"cdrom_type" hcl:"cdrom_type"`
|
||||
ISOPaths []string `mapstructure:"iso_paths" cty:"iso_paths" hcl:"iso_paths"`
|
||||
RemoveCdrom *bool `mapstructure:"remove_cdrom" cty:"remove_cdrom" hcl:"remove_cdrom"`
|
||||
FloppyIMGPath *string `mapstructure:"floppy_img_path" cty:"floppy_img_path" hcl:"floppy_img_path"`
|
||||
FloppyFiles []string `mapstructure:"floppy_files" cty:"floppy_files" hcl:"floppy_files"`
|
||||
FloppyDirectories []string `mapstructure:"floppy_dirs" cty:"floppy_dirs" hcl:"floppy_dirs"`
|
||||
FloppyLabel *string `mapstructure:"floppy_label" cty:"floppy_label" hcl:"floppy_label"`
|
||||
|
@ -200,6 +201,7 @@ func (*FlatConfig) HCL2Spec() map[string]hcldec.Spec {
|
|||
"cdrom_type": &hcldec.AttrSpec{Name: "cdrom_type", Type: cty.String, Required: false},
|
||||
"iso_paths": &hcldec.AttrSpec{Name: "iso_paths", Type: cty.List(cty.String), Required: false},
|
||||
"remove_cdrom": &hcldec.AttrSpec{Name: "remove_cdrom", Type: cty.Bool, Required: false},
|
||||
"floppy_img_path": &hcldec.AttrSpec{Name: "floppy_img_path", Type: cty.String, Required: false},
|
||||
"floppy_files": &hcldec.AttrSpec{Name: "floppy_files", Type: cty.List(cty.String), Required: false},
|
||||
"floppy_dirs": &hcldec.AttrSpec{Name: "floppy_dirs", Type: cty.List(cty.String), Required: false},
|
||||
"floppy_label": &hcldec.AttrSpec{Name: "floppy_label", Type: cty.String, Required: false},
|
||||
|
|
|
@ -69,6 +69,7 @@ type FlatConfig struct {
|
|||
CdromType *string `mapstructure:"cdrom_type" cty:"cdrom_type" hcl:"cdrom_type"`
|
||||
ISOPaths []string `mapstructure:"iso_paths" cty:"iso_paths" hcl:"iso_paths"`
|
||||
RemoveCdrom *bool `mapstructure:"remove_cdrom" cty:"remove_cdrom" hcl:"remove_cdrom"`
|
||||
FloppyIMGPath *string `mapstructure:"floppy_img_path" cty:"floppy_img_path" hcl:"floppy_img_path"`
|
||||
FloppyFiles []string `mapstructure:"floppy_files" cty:"floppy_files" hcl:"floppy_files"`
|
||||
FloppyDirectories []string `mapstructure:"floppy_dirs" cty:"floppy_dirs" hcl:"floppy_dirs"`
|
||||
FloppyLabel *string `mapstructure:"floppy_label" cty:"floppy_label" hcl:"floppy_label"`
|
||||
|
@ -209,6 +210,7 @@ func (*FlatConfig) HCL2Spec() map[string]hcldec.Spec {
|
|||
"cdrom_type": &hcldec.AttrSpec{Name: "cdrom_type", Type: cty.String, Required: false},
|
||||
"iso_paths": &hcldec.AttrSpec{Name: "iso_paths", Type: cty.List(cty.String), Required: false},
|
||||
"remove_cdrom": &hcldec.AttrSpec{Name: "remove_cdrom", Type: cty.Bool, Required: false},
|
||||
"floppy_img_path": &hcldec.AttrSpec{Name: "floppy_img_path", Type: cty.String, Required: false},
|
||||
"floppy_files": &hcldec.AttrSpec{Name: "floppy_files", Type: cty.List(cty.String), Required: false},
|
||||
"floppy_dirs": &hcldec.AttrSpec{Name: "floppy_dirs", Type: cty.List(cty.String), Required: false},
|
||||
"floppy_label": &hcldec.AttrSpec{Name: "floppy_label", Type: cty.String, Required: false},
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
delicious chocolate cake
|
|
@ -14,6 +14,7 @@ import (
|
|||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/hashicorp/packer/common/commonsteps"
|
||||
confighelper "github.com/hashicorp/packer/helper/config"
|
||||
"github.com/hashicorp/packer/packer"
|
||||
"github.com/stretchr/testify/assert"
|
||||
|
|
|
@ -11,6 +11,7 @@ import (
|
|||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/hashicorp/packer/common/commonsteps"
|
||||
"github.com/hashicorp/packer/packer"
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
|
|
@ -7,6 +7,7 @@ import (
|
|||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/hashicorp/packer/common/commonsteps"
|
||||
"github.com/hashicorp/packer/packer"
|
||||
)
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@ import (
|
|||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/hashicorp/packer/common/commonsteps"
|
||||
"github.com/hashicorp/packer/packer"
|
||||
)
|
||||
|
||||
|
|
|
@ -5,8 +5,8 @@ import (
|
|||
)
|
||||
|
||||
type errorResponse struct {
|
||||
Type string `json:"type"`
|
||||
Message string `json:"message"`
|
||||
Type string `json:"type"`
|
||||
Message string `json:"message"`
|
||||
}
|
||||
|
||||
type apiError struct {
|
||||
|
|
|
@ -12,17 +12,17 @@ package server
|
|||
type AccessControlGroup struct {
|
||||
|
||||
// 접근제어그룹설정번호
|
||||
AccessControlGroupConfigurationNo *string `json:"accessControlGroupConfigurationNo,omitempty"`
|
||||
AccessControlGroupConfigurationNo *string `json:"accessControlGroupConfigurationNo,omitempty"`
|
||||
|
||||
// 접근제어그룹명
|
||||
AccessControlGroupName *string `json:"accessControlGroupName,omitempty"`
|
||||
AccessControlGroupName *string `json:"accessControlGroupName,omitempty"`
|
||||
|
||||
// 접근제어그룹설명
|
||||
AccessControlGroupDescription *string `json:"accessControlGroupDescription,omitempty"`
|
||||
AccessControlGroupDescription *string `json:"accessControlGroupDescription,omitempty"`
|
||||
|
||||
// 디폴트그룹여부
|
||||
IsDefaultGroup *bool `json:"isDefaultGroup,omitempty"`
|
||||
IsDefaultGroup *bool `json:"isDefaultGroup,omitempty"`
|
||||
|
||||
// 생성일자
|
||||
CreateDate *string `json:"createDate,omitempty"`
|
||||
CreateDate *string `json:"createDate,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,23 +12,23 @@ package server
|
|||
type AccessControlRule struct {
|
||||
|
||||
// 접근제어RULE설정번호
|
||||
AccessControlRuleConfigurationNo *string `json:"accessControlRuleConfigurationNo,omitempty"`
|
||||
AccessControlRuleConfigurationNo *string `json:"accessControlRuleConfigurationNo,omitempty"`
|
||||
|
||||
// 프로토콜구분
|
||||
ProtocolType *CommonCode `json:"protocolType,omitempty"`
|
||||
ProtocolType *CommonCode `json:"protocolType,omitempty"`
|
||||
|
||||
// 소스IP
|
||||
SourceIp *string `json:"sourceIp,omitempty"`
|
||||
SourceIp *string `json:"sourceIp,omitempty"`
|
||||
|
||||
// 소스접근제어그룹번호
|
||||
SourceAccessControlRuleConfigurationNo *string `json:"sourceAccessControlRuleConfigurationNo,omitempty"`
|
||||
SourceAccessControlRuleConfigurationNo *string `json:"sourceAccessControlRuleConfigurationNo,omitempty"`
|
||||
|
||||
// 소스접근제어그룹이름
|
||||
SourceAccessControlRuleName *string `json:"sourceAccessControlRuleName,omitempty"`
|
||||
SourceAccessControlRuleName *string `json:"sourceAccessControlRuleName,omitempty"`
|
||||
|
||||
// 목적지포트
|
||||
DestinationPort *string `json:"destinationPort,omitempty"`
|
||||
DestinationPort *string `json:"destinationPort,omitempty"`
|
||||
|
||||
// 접근제어RULE설명
|
||||
AccessControlRuleDescription *string `json:"accessControlRuleDescription,omitempty"`
|
||||
AccessControlRuleDescription *string `json:"accessControlRuleDescription,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,11 +12,11 @@ package server
|
|||
type AddNasVolumeAccessControlRequest struct {
|
||||
|
||||
// NAS볼륨인스턴스번호
|
||||
NasVolumeInstanceNo *string `json:"nasVolumeInstanceNo"`
|
||||
NasVolumeInstanceNo *string `json:"nasVolumeInstanceNo"`
|
||||
|
||||
// 서버인스턴스번호리스트
|
||||
ServerInstanceNoList []*string `json:"serverInstanceNoList,omitempty"`
|
||||
ServerInstanceNoList []*string `json:"serverInstanceNoList,omitempty"`
|
||||
|
||||
// 커스텀IP리스트
|
||||
CustomIpList []*string `json:"customIpList,omitempty"`
|
||||
CustomIpList []*string `json:"customIpList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type AddNasVolumeAccessControlResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
NasVolumeInstanceList []*NasVolumeInstance `json:"nasVolumeInstanceList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
NasVolumeInstanceList []*NasVolumeInstance `json:"nasVolumeInstanceList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,8 +12,8 @@ package server
|
|||
type AddPortForwardingRulesRequest struct {
|
||||
|
||||
// 포트포워딩설정번호
|
||||
PortForwardingConfigurationNo *string `json:"portForwardingConfigurationNo"`
|
||||
PortForwardingConfigurationNo *string `json:"portForwardingConfigurationNo"`
|
||||
|
||||
// 포트포워딩RULE리스트
|
||||
PortForwardingRuleList []*PortForwardingRuleParameter `json:"portForwardingRuleList"`
|
||||
PortForwardingRuleList []*PortForwardingRuleParameter `json:"portForwardingRuleList"`
|
||||
}
|
||||
|
|
|
@ -10,25 +10,26 @@
|
|||
package server
|
||||
|
||||
type AddPortForwardingRulesResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
// 포트포워딩설정번호
|
||||
PortForwardingConfigurationNo *string `json:"portForwardingConfigurationNo,omitempty"`
|
||||
PortForwardingConfigurationNo *string `json:"portForwardingConfigurationNo,omitempty"`
|
||||
|
||||
// 포트포워딩공인IP
|
||||
PortForwardingPublicIp *string `json:"portForwardingPublicIp,omitempty"`
|
||||
PortForwardingPublicIp *string `json:"portForwardingPublicIp,omitempty"`
|
||||
|
||||
// ZONE
|
||||
Zone *Zone `json:"zone,omitempty"`
|
||||
Zone *Zone `json:"zone,omitempty"`
|
||||
|
||||
// 인터넷회선구분
|
||||
InternetLineType *CommonCode `json:"internetLineType,omitempty"`
|
||||
InternetLineType *CommonCode `json:"internetLineType,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
PortForwardingRuleList []*PortForwardingRule `json:"portForwardingRuleList,omitempty"`
|
||||
PortForwardingRuleList []*PortForwardingRule `json:"portForwardingRuleList,omitempty"`
|
||||
}
|
||||
|
|
6
vendor/github.com/NaverCloudPlatform/ncloud-sdk-go-v2/services/server/api_client.go
generated
vendored
6
vendor/github.com/NaverCloudPlatform/ncloud-sdk-go-v2/services/server/api_client.go
generated
vendored
|
@ -326,7 +326,7 @@ func setBody(body interface{}, contentType string) (bodyBuf *bytes.Buffer, err e
|
|||
if f.Kind() == reflect.Ptr {
|
||||
switch f.Type().String() {
|
||||
case "*string":
|
||||
result += fmt.Sprintf("&%s=%s", key, url.QueryEscape(ncloud.StringValue(f.Interface().(*string))))
|
||||
result += fmt.Sprintf("&%s=%s", key, url.QueryEscape(ncloud.StringValue(f.Interface().(*string))))
|
||||
case "*bool":
|
||||
result += fmt.Sprintf("&%s=%t", key, ncloud.BoolValue(f.Interface().(*bool)))
|
||||
case "*int":
|
||||
|
@ -352,7 +352,7 @@ func setBody(body interface{}, contentType string) (bodyBuf *bytes.Buffer, err e
|
|||
|
||||
switch subItem.Type().String() {
|
||||
case "*string":
|
||||
result += fmt.Sprintf("&%s.%d.%s=%s", key, i+1, subKey, url.QueryEscape(ncloud.StringValue(subItem.Interface().(*string))))
|
||||
result += fmt.Sprintf("&%s.%d.%s=%s", key, i+1, subKey, url.QueryEscape(ncloud.StringValue(subItem.Interface().(*string))))
|
||||
case "*bool":
|
||||
result += fmt.Sprintf("&%s.%d.%s=%t", key, i+1, subKey, ncloud.BoolValue(subItem.Interface().(*bool)))
|
||||
case "*int":
|
||||
|
@ -368,7 +368,7 @@ func setBody(body interface{}, contentType string) (bodyBuf *bytes.Buffer, err e
|
|||
} else {
|
||||
switch item.Type().String() {
|
||||
case "*string":
|
||||
result += fmt.Sprintf("&%s.%d=%s", key, i+1, url.QueryEscape(*item.Interface().(*string)))
|
||||
result += fmt.Sprintf("&%s.%d=%s", key, i+1, url.QueryEscape(*item.Interface().(*string)))
|
||||
case "*bool":
|
||||
result += fmt.Sprintf("&%s.%d.%s=%t", key, i+1, ncloud.BoolValue(item.Interface().(*bool)))
|
||||
case "*int":
|
||||
|
|
|
@ -15,15 +15,15 @@ import (
|
|||
|
||||
type APIResponse struct {
|
||||
*http.Response `json:"-"`
|
||||
Message string `json:"message,omitempty"`
|
||||
Message string `json:"message,omitempty"`
|
||||
// Operation is the name of the swagger operation.
|
||||
Operation string `json:"operation,omitempty"`
|
||||
Operation string `json:"operation,omitempty"`
|
||||
// RequestURL is the request URL. This value is always available, even if the
|
||||
// embedded *http.Response is nil.
|
||||
RequestURL string `json:"url,omitempty"`
|
||||
RequestURL string `json:"url,omitempty"`
|
||||
// Method is the HTTP method used for the request. This value is always
|
||||
// available, even if the embedded *http.Response is nil.
|
||||
Method string `json:"method,omitempty"`
|
||||
Method string `json:"method,omitempty"`
|
||||
// Payload holds the contents of the response body (which may be nil or empty).
|
||||
// This is provided here as the raw response.Body() reader will have already
|
||||
// been drained.
|
||||
|
|
|
@ -12,8 +12,8 @@ package server
|
|||
type AssociatePublicIpWithServerInstanceRequest struct {
|
||||
|
||||
// 공인IP인스턴스번호
|
||||
PublicIpInstanceNo *string `json:"publicIpInstanceNo"`
|
||||
PublicIpInstanceNo *string `json:"publicIpInstanceNo"`
|
||||
|
||||
// 서버인스턴스번호
|
||||
ServerInstanceNo *string `json:"serverInstanceNo"`
|
||||
ServerInstanceNo *string `json:"serverInstanceNo"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type AssociatePublicIpWithServerInstanceResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
PublicIpInstanceList []*PublicIpInstance `json:"publicIpInstanceList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
PublicIpInstanceList []*PublicIpInstance `json:"publicIpInstanceList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,8 +12,8 @@ package server
|
|||
type AttachBlockStorageInstanceRequest struct {
|
||||
|
||||
// 서버인스턴스번호
|
||||
ServerInstanceNo *string `json:"serverInstanceNo"`
|
||||
ServerInstanceNo *string `json:"serverInstanceNo"`
|
||||
|
||||
// 블록스토리지인스턴스번호
|
||||
BlockStorageInstanceNo *string `json:"blockStorageInstanceNo"`
|
||||
BlockStorageInstanceNo *string `json:"blockStorageInstanceNo"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type AttachBlockStorageInstanceResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
BlockStorageInstanceList []*BlockStorageInstance `json:"blockStorageInstanceList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
BlockStorageInstanceList []*BlockStorageInstance `json:"blockStorageInstanceList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,8 +12,8 @@ package server
|
|||
type AttachNetworkInterfaceRequest struct {
|
||||
|
||||
// Network Interface번호
|
||||
NetworkInterfaceNo *string `json:"networkInterfaceNo"`
|
||||
NetworkInterfaceNo *string `json:"networkInterfaceNo"`
|
||||
|
||||
// 서버인스턴스번호
|
||||
ServerInstanceNo *string `json:"serverInstanceNo"`
|
||||
ServerInstanceNo *string `json:"serverInstanceNo"`
|
||||
}
|
||||
|
|
|
@ -10,9 +10,10 @@
|
|||
package server
|
||||
|
||||
type AttachNetworkInterfaceResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,57 +12,57 @@ package server
|
|||
type BlockStorageInstance struct {
|
||||
|
||||
// 블록스토리지인스턴스번호
|
||||
BlockStorageInstanceNo *string `json:"blockStorageInstanceNo,omitempty"`
|
||||
BlockStorageInstanceNo *string `json:"blockStorageInstanceNo,omitempty"`
|
||||
|
||||
// 서버인스턴스번호
|
||||
ServerInstanceNo *string `json:"serverInstanceNo,omitempty"`
|
||||
ServerInstanceNo *string `json:"serverInstanceNo,omitempty"`
|
||||
|
||||
// 서버명
|
||||
ServerName *string `json:"serverName,omitempty"`
|
||||
ServerName *string `json:"serverName,omitempty"`
|
||||
|
||||
// 블록스토리지구분
|
||||
BlockStorageType *CommonCode `json:"blockStorageType,omitempty"`
|
||||
BlockStorageType *CommonCode `json:"blockStorageType,omitempty"`
|
||||
|
||||
// 블록스토리지명
|
||||
BlockStorageName *string `json:"blockStorageName,omitempty"`
|
||||
BlockStorageName *string `json:"blockStorageName,omitempty"`
|
||||
|
||||
// 블록스토리지사이즈
|
||||
BlockStorageSize *int64 `json:"blockStorageSize,omitempty"`
|
||||
BlockStorageSize *int64 `json:"blockStorageSize,omitempty"`
|
||||
|
||||
// 디바이스명
|
||||
DeviceName *string `json:"deviceName,omitempty"`
|
||||
DeviceName *string `json:"deviceName,omitempty"`
|
||||
|
||||
// 회원서버이미지번호
|
||||
MemberServerImageNo *string `json:"memberServerImageNo,omitempty"`
|
||||
MemberServerImageNo *string `json:"memberServerImageNo,omitempty"`
|
||||
|
||||
// 블록스토리지상품코드
|
||||
BlockStorageProductCode *string `json:"blockStorageProductCode,omitempty"`
|
||||
BlockStorageProductCode *string `json:"blockStorageProductCode,omitempty"`
|
||||
|
||||
// 블록스토리지인스턴스상태
|
||||
BlockStorageInstanceStatus *CommonCode `json:"blockStorageInstanceStatus,omitempty"`
|
||||
BlockStorageInstanceStatus *CommonCode `json:"blockStorageInstanceStatus,omitempty"`
|
||||
|
||||
// 블록스토리지인스턴스OP
|
||||
BlockStorageInstanceOperation *CommonCode `json:"blockStorageInstanceOperation,omitempty"`
|
||||
BlockStorageInstanceOperation *CommonCode `json:"blockStorageInstanceOperation,omitempty"`
|
||||
|
||||
// 블록스토리지인스턴스상태명
|
||||
BlockStorageInstanceStatusName *string `json:"blockStorageInstanceStatusName,omitempty"`
|
||||
BlockStorageInstanceStatusName *string `json:"blockStorageInstanceStatusName,omitempty"`
|
||||
|
||||
// 생성일시
|
||||
CreateDate *string `json:"createDate,omitempty"`
|
||||
CreateDate *string `json:"createDate,omitempty"`
|
||||
|
||||
// 블록스토리지인스턴스설명
|
||||
BlockStorageInstanceDescription *string `json:"blockStorageInstanceDescription,omitempty"`
|
||||
BlockStorageInstanceDescription *string `json:"blockStorageInstanceDescription,omitempty"`
|
||||
|
||||
// 디스크유형
|
||||
DiskType *CommonCode `json:"diskType,omitempty"`
|
||||
DiskType *CommonCode `json:"diskType,omitempty"`
|
||||
|
||||
// 디스크상세유형
|
||||
DiskDetailType *CommonCode `json:"diskDetailType,omitempty"`
|
||||
DiskDetailType *CommonCode `json:"diskDetailType,omitempty"`
|
||||
|
||||
// 최대 IOPS
|
||||
MaxIopsThroughput *int32 `json:"maxIopsThroughput,omitempty"`
|
||||
MaxIopsThroughput *int32 `json:"maxIopsThroughput,omitempty"`
|
||||
|
||||
Region *Region `json:"region,omitempty"`
|
||||
Region *Region `json:"region,omitempty"`
|
||||
|
||||
Zone *Zone `json:"zone,omitempty"`
|
||||
Zone *Zone `json:"zone,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,37 +12,37 @@ package server
|
|||
type BlockStorageSnapshotInstance struct {
|
||||
|
||||
// 블록스토리지스냅샷인스턴스번호
|
||||
BlockStorageSnapshotInstanceNo *string `json:"blockStorageSnapshotInstanceNo,omitempty"`
|
||||
BlockStorageSnapshotInstanceNo *string `json:"blockStorageSnapshotInstanceNo,omitempty"`
|
||||
|
||||
// 블록스토리지스냅샷명
|
||||
BlockStorageSnapshotName *string `json:"blockStorageSnapshotName,omitempty"`
|
||||
BlockStorageSnapshotName *string `json:"blockStorageSnapshotName,omitempty"`
|
||||
|
||||
// 블록스토지리볼륨사이즈
|
||||
BlockStorageSnapshotVolumeSize *int64 `json:"blockStorageSnapshotVolumeSize,omitempty"`
|
||||
BlockStorageSnapshotVolumeSize *int64 `json:"blockStorageSnapshotVolumeSize,omitempty"`
|
||||
|
||||
// 원본블록스토리지인스턴스번호
|
||||
OriginalBlockStorageInstanceNo *string `json:"originalBlockStorageInstanceNo,omitempty"`
|
||||
OriginalBlockStorageInstanceNo *string `json:"originalBlockStorageInstanceNo,omitempty"`
|
||||
|
||||
// 원본블록스토리지명
|
||||
OriginalBlockStorageName *string `json:"originalBlockStorageName,omitempty"`
|
||||
OriginalBlockStorageName *string `json:"originalBlockStorageName,omitempty"`
|
||||
|
||||
// 블록스토리지스냅샷인스턴스상태
|
||||
BlockStorageSnapshotInstanceStatus *CommonCode `json:"blockStorageSnapshotInstanceStatus,omitempty"`
|
||||
BlockStorageSnapshotInstanceStatus *CommonCode `json:"blockStorageSnapshotInstanceStatus,omitempty"`
|
||||
|
||||
// 블록스토리지스냅샷인스턴스OP
|
||||
BlockStorageSnapshotInstanceOperation *CommonCode `json:"blockStorageSnapshotInstanceOperation,omitempty"`
|
||||
BlockStorageSnapshotInstanceOperation *CommonCode `json:"blockStorageSnapshotInstanceOperation,omitempty"`
|
||||
|
||||
BlockStorageSnapshotInstanceStatusName *string `json:"blockStorageSnapshotInstanceStatusName,omitempty"`
|
||||
BlockStorageSnapshotInstanceStatusName *string `json:"blockStorageSnapshotInstanceStatusName,omitempty"`
|
||||
|
||||
// 생성일시
|
||||
CreateDate *string `json:"createDate,omitempty"`
|
||||
CreateDate *string `json:"createDate,omitempty"`
|
||||
|
||||
// 블록스토리지스냅샷인스턴스설명
|
||||
BlockStorageSnapshotInstanceDescription *string `json:"blockStorageSnapshotInstanceDescription,omitempty"`
|
||||
BlockStorageSnapshotInstanceDescription *string `json:"blockStorageSnapshotInstanceDescription,omitempty"`
|
||||
|
||||
// 서버이미지상품코드
|
||||
ServerImageProductCode *string `json:"serverImageProductCode,omitempty"`
|
||||
ServerImageProductCode *string `json:"serverImageProductCode,omitempty"`
|
||||
|
||||
// OS정보
|
||||
OsInformation *string `json:"osInformation,omitempty"`
|
||||
OsInformation *string `json:"osInformation,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,8 +12,8 @@ package server
|
|||
type ChangeNasVolumeSizeRequest struct {
|
||||
|
||||
// NAS볼륨인스턴스번호
|
||||
NasVolumeInstanceNo *string `json:"nasVolumeInstanceNo"`
|
||||
NasVolumeInstanceNo *string `json:"nasVolumeInstanceNo"`
|
||||
|
||||
// NAS볼륨사이즈
|
||||
VolumeSize *int32 `json:"volumeSize"`
|
||||
VolumeSize *int32 `json:"volumeSize"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type ChangeNasVolumeSizeResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
NasVolumeInstanceList []*NasVolumeInstance `json:"nasVolumeInstanceList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
NasVolumeInstanceList []*NasVolumeInstance `json:"nasVolumeInstanceList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,8 +12,8 @@ package server
|
|||
type ChangeServerInstanceSpecRequest struct {
|
||||
|
||||
// 서버인스턴스번호
|
||||
ServerInstanceNo *string `json:"serverInstanceNo"`
|
||||
ServerInstanceNo *string `json:"serverInstanceNo"`
|
||||
|
||||
// 서버상품코드
|
||||
ServerProductCode *string `json:"serverProductCode"`
|
||||
ServerProductCode *string `json:"serverProductCode"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type ChangeServerInstanceSpecResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
ServerInstanceList []*ServerInstance `json:"serverInstanceList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
ServerInstanceList []*ServerInstance `json:"serverInstanceList,omitempty"`
|
||||
}
|
||||
|
|
4
vendor/github.com/NaverCloudPlatform/ncloud-sdk-go-v2/services/server/common_code.go
generated
vendored
4
vendor/github.com/NaverCloudPlatform/ncloud-sdk-go-v2/services/server/common_code.go
generated
vendored
|
@ -12,8 +12,8 @@ package server
|
|||
type CommonCode struct {
|
||||
|
||||
// 코드
|
||||
Code *string `json:"code,omitempty"`
|
||||
Code *string `json:"code,omitempty"`
|
||||
|
||||
// 코드명
|
||||
CodeName *string `json:"codeName,omitempty"`
|
||||
CodeName *string `json:"codeName,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,17 +12,17 @@ package server
|
|||
type CreateBlockStorageInstanceRequest struct {
|
||||
|
||||
// 블럭스토리지명
|
||||
BlockStorageName *string `json:"blockStorageName,omitempty"`
|
||||
BlockStorageName *string `json:"blockStorageName,omitempty"`
|
||||
|
||||
// 블럭스토리지사이즈
|
||||
BlockStorageSize *int64 `json:"blockStorageSize"`
|
||||
BlockStorageSize *int64 `json:"blockStorageSize"`
|
||||
|
||||
// 블럭스토리지설명
|
||||
BlockStorageDescription *string `json:"blockStorageDescription,omitempty"`
|
||||
BlockStorageDescription *string `json:"blockStorageDescription,omitempty"`
|
||||
|
||||
// 서버인스턴스번호
|
||||
ServerInstanceNo *string `json:"serverInstanceNo"`
|
||||
ServerInstanceNo *string `json:"serverInstanceNo"`
|
||||
|
||||
// 디스크상세유형코드
|
||||
DiskDetailTypeCode *string `json:"diskDetailTypeCode,omitempty"`
|
||||
DiskDetailTypeCode *string `json:"diskDetailTypeCode,omitempty"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type CreateBlockStorageInstanceResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
BlockStorageInstanceList []*BlockStorageInstance `json:"blockStorageInstanceList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
BlockStorageInstanceList []*BlockStorageInstance `json:"blockStorageInstanceList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,11 +12,11 @@ package server
|
|||
type CreateBlockStorageSnapshotInstanceRequest struct {
|
||||
|
||||
// 블록스토리지인스턴스번호
|
||||
BlockStorageInstanceNo *string `json:"blockStorageInstanceNo"`
|
||||
BlockStorageInstanceNo *string `json:"blockStorageInstanceNo"`
|
||||
|
||||
// 블록스토리지스냅샷이름
|
||||
BlockStorageSnapshotName *string `json:"blockStorageSnapshotName,omitempty"`
|
||||
BlockStorageSnapshotName *string `json:"blockStorageSnapshotName,omitempty"`
|
||||
|
||||
// 블록스토리지스냅샷설명
|
||||
BlockStorageSnapshotDescription *string `json:"blockStorageSnapshotDescription,omitempty"`
|
||||
BlockStorageSnapshotDescription *string `json:"blockStorageSnapshotDescription,omitempty"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type CreateBlockStorageSnapshotInstanceResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
BlockStorageSnapshotInstanceList []*BlockStorageSnapshotInstance `json:"blockStorageSnapshotInstanceList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
BlockStorageSnapshotInstanceList []*BlockStorageSnapshotInstance `json:"blockStorageSnapshotInstanceList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,8 +12,8 @@ package server
|
|||
type CreateInstanceTagsRequest struct {
|
||||
|
||||
// 인스턴스번호리스트
|
||||
InstanceNoList []*string `json:"instanceNoList"`
|
||||
InstanceNoList []*string `json:"instanceNoList"`
|
||||
|
||||
// 인스턴스태그리스트
|
||||
InstanceTagList []*InstanceTagParameter `json:"instanceTagList"`
|
||||
InstanceTagList []*InstanceTagParameter `json:"instanceTagList"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type CreateInstanceTagsResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
InstanceTagList []*InstanceTag `json:"instanceTagList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
InstanceTagList []*InstanceTag `json:"instanceTagList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,5 +12,5 @@ package server
|
|||
type CreateLoginKeyRequest struct {
|
||||
|
||||
// 키명
|
||||
KeyName *string `json:"keyName"`
|
||||
KeyName *string `json:"keyName"`
|
||||
}
|
||||
|
|
|
@ -10,11 +10,12 @@
|
|||
package server
|
||||
|
||||
type CreateLoginKeyResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
PrivateKey *string `json:"privateKey,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
PrivateKey *string `json:"privateKey,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,11 +12,11 @@ package server
|
|||
type CreateMemberServerImageRequest struct {
|
||||
|
||||
// 회원서버이미지설명
|
||||
MemberServerImageDescription *string `json:"memberServerImageDescription,omitempty"`
|
||||
MemberServerImageDescription *string `json:"memberServerImageDescription,omitempty"`
|
||||
|
||||
// 회원서버이미지명
|
||||
MemberServerImageName *string `json:"memberServerImageName,omitempty"`
|
||||
MemberServerImageName *string `json:"memberServerImageName,omitempty"`
|
||||
|
||||
// 서버인스턴스번호
|
||||
ServerInstanceNo *string `json:"serverInstanceNo"`
|
||||
ServerInstanceNo *string `json:"serverInstanceNo"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type CreateMemberServerImageResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
MemberServerImageList []*MemberServerImage `json:"memberServerImageList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
MemberServerImageList []*MemberServerImage `json:"memberServerImageList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,32 +12,32 @@ package server
|
|||
type CreateNasVolumeInstanceRequest struct {
|
||||
|
||||
// 볼륨이름
|
||||
VolumeName *string `json:"volumeName"`
|
||||
VolumeName *string `json:"volumeName"`
|
||||
|
||||
// NAS볼륨사이즈
|
||||
VolumeSize *int32 `json:"volumeSize"`
|
||||
VolumeSize *int32 `json:"volumeSize"`
|
||||
|
||||
// 볼륨할당프로토콜유형코드
|
||||
VolumeAllotmentProtocolTypeCode *string `json:"volumeAllotmentProtocolTypeCode"`
|
||||
VolumeAllotmentProtocolTypeCode *string `json:"volumeAllotmentProtocolTypeCode"`
|
||||
|
||||
// 서버인스턴스번호리스트
|
||||
ServerInstanceNoList []*string `json:"serverInstanceNoList,omitempty"`
|
||||
ServerInstanceNoList []*string `json:"serverInstanceNoList,omitempty"`
|
||||
|
||||
// 커스텀IP리스트
|
||||
CustomIpList []*string `json:"customIpList,omitempty"`
|
||||
CustomIpList []*string `json:"customIpList,omitempty"`
|
||||
|
||||
// CIFS유저이름
|
||||
CifsUserName *string `json:"cifsUserName,omitempty"`
|
||||
CifsUserName *string `json:"cifsUserName,omitempty"`
|
||||
|
||||
// CIFS유저비밀번호
|
||||
CifsUserPassword *string `json:"cifsUserPassword,omitempty"`
|
||||
CifsUserPassword *string `json:"cifsUserPassword,omitempty"`
|
||||
|
||||
// NAS볼륨설명
|
||||
NasVolumeDescription *string `json:"nasVolumeDescription,omitempty"`
|
||||
NasVolumeDescription *string `json:"nasVolumeDescription,omitempty"`
|
||||
|
||||
// 리전번호
|
||||
RegionNo *string `json:"regionNo,omitempty"`
|
||||
RegionNo *string `json:"regionNo,omitempty"`
|
||||
|
||||
// ZONE번호
|
||||
ZoneNo *string `json:"zoneNo,omitempty"`
|
||||
ZoneNo *string `json:"zoneNo,omitempty"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type CreateNasVolumeInstanceResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
NasVolumeInstanceList []*NasVolumeInstance `json:"nasVolumeInstanceList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
NasVolumeInstanceList []*NasVolumeInstance `json:"nasVolumeInstanceList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,23 +12,23 @@ package server
|
|||
type CreateNetworkInterfaceRequest struct {
|
||||
|
||||
// Private Subnet인스턴스번호
|
||||
PrivateSubnetInstanceNo *string `json:"privateSubnetInstanceNo"`
|
||||
PrivateSubnetInstanceNo *string `json:"privateSubnetInstanceNo"`
|
||||
|
||||
// Network Interface이름
|
||||
NetworkInterfaceName *string `json:"networkInterfaceName"`
|
||||
NetworkInterfaceName *string `json:"networkInterfaceName"`
|
||||
|
||||
// Network Interface IP
|
||||
NetworkInterfaceIp *string `json:"networkInterfaceIp"`
|
||||
NetworkInterfaceIp *string `json:"networkInterfaceIp"`
|
||||
|
||||
// Network Interface설명
|
||||
NetworkInterfaceDescription *string `json:"networkInterfaceDescription,omitempty"`
|
||||
NetworkInterfaceDescription *string `json:"networkInterfaceDescription,omitempty"`
|
||||
|
||||
// 리전번호
|
||||
RegionNo *string `json:"regionNo,omitempty"`
|
||||
RegionNo *string `json:"regionNo,omitempty"`
|
||||
|
||||
// ZONE번호
|
||||
ZoneNo *string `json:"zoneNo,omitempty"`
|
||||
ZoneNo *string `json:"zoneNo,omitempty"`
|
||||
|
||||
// 서버인스턴스번호
|
||||
ServerInstanceNo *string `json:"serverInstanceNo,omitempty"`
|
||||
ServerInstanceNo *string `json:"serverInstanceNo,omitempty"`
|
||||
}
|
||||
|
|
|
@ -10,9 +10,10 @@
|
|||
package server
|
||||
|
||||
type CreateNetworkInterfaceResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,17 +12,17 @@ package server
|
|||
type CreatePublicIpInstanceRequest struct {
|
||||
|
||||
// 서버인스턴스번호
|
||||
ServerInstanceNo *string `json:"serverInstanceNo,omitempty"`
|
||||
ServerInstanceNo *string `json:"serverInstanceNo,omitempty"`
|
||||
|
||||
// 공인IP설명
|
||||
PublicIpDescription *string `json:"publicIpDescription,omitempty"`
|
||||
PublicIpDescription *string `json:"publicIpDescription,omitempty"`
|
||||
|
||||
// 인터넷라인구분코드
|
||||
InternetLineTypeCode *string `json:"internetLineTypeCode,omitempty"`
|
||||
InternetLineTypeCode *string `json:"internetLineTypeCode,omitempty"`
|
||||
|
||||
// 리전번호
|
||||
RegionNo *string `json:"regionNo,omitempty"`
|
||||
RegionNo *string `json:"regionNo,omitempty"`
|
||||
|
||||
// ZONE번호
|
||||
ZoneNo *string `json:"zoneNo,omitempty"`
|
||||
ZoneNo *string `json:"zoneNo,omitempty"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type CreatePublicIpInstanceResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
PublicIpInstanceList []*PublicIpInstance `json:"publicIpInstanceList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
PublicIpInstanceList []*PublicIpInstance `json:"publicIpInstanceList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,50 +12,50 @@ package server
|
|||
type CreateServerInstancesRequest struct {
|
||||
|
||||
// 서버이미지상품코드
|
||||
ServerImageProductCode *string `json:"serverImageProductCode,omitempty"`
|
||||
ServerImageProductCode *string `json:"serverImageProductCode,omitempty"`
|
||||
|
||||
// 서버상품코드
|
||||
ServerProductCode *string `json:"serverProductCode,omitempty"`
|
||||
ServerProductCode *string `json:"serverProductCode,omitempty"`
|
||||
|
||||
// 회원서버이미지번호
|
||||
MemberServerImageNo *string `json:"memberServerImageNo,omitempty"`
|
||||
MemberServerImageNo *string `json:"memberServerImageNo,omitempty"`
|
||||
|
||||
// 서버명
|
||||
ServerName *string `json:"serverName,omitempty"`
|
||||
ServerName *string `json:"serverName,omitempty"`
|
||||
|
||||
// 서버설명
|
||||
ServerDescription *string `json:"serverDescription,omitempty"`
|
||||
ServerDescription *string `json:"serverDescription,omitempty"`
|
||||
|
||||
// 로그인키명
|
||||
LoginKeyName *string `json:"loginKeyName,omitempty"`
|
||||
LoginKeyName *string `json:"loginKeyName,omitempty"`
|
||||
|
||||
// 반납보호여부
|
||||
IsProtectServerTermination *bool `json:"isProtectServerTermination,omitempty"`
|
||||
IsProtectServerTermination *bool `json:"isProtectServerTermination,omitempty"`
|
||||
|
||||
// 서버생성갯수
|
||||
ServerCreateCount *int32 `json:"serverCreateCount,omitempty"`
|
||||
ServerCreateCount *int32 `json:"serverCreateCount,omitempty"`
|
||||
|
||||
// 서버생성시작번호
|
||||
ServerCreateStartNo *int32 `json:"serverCreateStartNo,omitempty"`
|
||||
ServerCreateStartNo *int32 `json:"serverCreateStartNo,omitempty"`
|
||||
|
||||
// 인터넷라인구분코드
|
||||
InternetLineTypeCode *string `json:"internetLineTypeCode,omitempty"`
|
||||
InternetLineTypeCode *string `json:"internetLineTypeCode,omitempty"`
|
||||
|
||||
// 요금제구분코드
|
||||
FeeSystemTypeCode *string `json:"feeSystemTypeCode,omitempty"`
|
||||
FeeSystemTypeCode *string `json:"feeSystemTypeCode,omitempty"`
|
||||
|
||||
// 사용자데이터
|
||||
UserData *string `json:"userData,omitempty"`
|
||||
UserData *string `json:"userData,omitempty"`
|
||||
|
||||
// ZONE번호
|
||||
ZoneNo *string `json:"zoneNo,omitempty"`
|
||||
ZoneNo *string `json:"zoneNo,omitempty"`
|
||||
|
||||
// ACG설정번호리스트
|
||||
AccessControlGroupConfigurationNoList []*string `json:"accessControlGroupConfigurationNoList,omitempty"`
|
||||
AccessControlGroupConfigurationNoList []*string `json:"accessControlGroupConfigurationNoList,omitempty"`
|
||||
|
||||
// RAID구분이름
|
||||
RaidTypeName *string `json:"raidTypeName,omitempty"`
|
||||
RaidTypeName *string `json:"raidTypeName,omitempty"`
|
||||
|
||||
// 인스턴스태그리스트
|
||||
InstanceTagList []*InstanceTagParameter `json:"instanceTagList,omitempty"`
|
||||
InstanceTagList []*InstanceTagParameter `json:"instanceTagList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type CreateServerInstancesResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
ServerInstanceList []*ServerInstance `json:"serverInstanceList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
ServerInstanceList []*ServerInstance `json:"serverInstanceList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,5 +12,5 @@ package server
|
|||
type DeleteBlockStorageInstancesRequest struct {
|
||||
|
||||
// 블록스토리지인스턴스번호리스트
|
||||
BlockStorageInstanceNoList []*string `json:"blockStorageInstanceNoList"`
|
||||
BlockStorageInstanceNoList []*string `json:"blockStorageInstanceNoList"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type DeleteBlockStorageInstancesResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
BlockStorageInstanceList []*BlockStorageInstance `json:"blockStorageInstanceList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
BlockStorageInstanceList []*BlockStorageInstance `json:"blockStorageInstanceList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,5 +12,5 @@ package server
|
|||
type DeleteBlockStorageSnapshotInstancesRequest struct {
|
||||
|
||||
// 블록스토리지스냅샷인스턴스번호리스트
|
||||
BlockStorageSnapshotInstanceNoList []*string `json:"blockStorageSnapshotInstanceNoList"`
|
||||
BlockStorageSnapshotInstanceNoList []*string `json:"blockStorageSnapshotInstanceNoList"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type DeleteBlockStorageSnapshotInstancesResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
BlockStorageSnapshotInstanceList []*BlockStorageSnapshotInstance `json:"blockStorageSnapshotInstanceList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
BlockStorageSnapshotInstanceList []*BlockStorageSnapshotInstance `json:"blockStorageSnapshotInstanceList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,8 +12,8 @@ package server
|
|||
type DeleteInstanceTagsRequest struct {
|
||||
|
||||
// 인스턴스번호리스트
|
||||
InstanceNoList []*string `json:"instanceNoList"`
|
||||
InstanceNoList []*string `json:"instanceNoList"`
|
||||
|
||||
// 인스턴스태그리스트
|
||||
InstanceTagList []*InstanceTagParameter `json:"instanceTagList,omitempty"`
|
||||
InstanceTagList []*InstanceTagParameter `json:"instanceTagList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -10,11 +10,12 @@
|
|||
package server
|
||||
|
||||
type DeleteInstanceTagsResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,5 +12,5 @@ package server
|
|||
type DeleteLoginKeyRequest struct {
|
||||
|
||||
// 키명
|
||||
KeyName *string `json:"keyName"`
|
||||
KeyName *string `json:"keyName"`
|
||||
}
|
||||
|
|
|
@ -10,9 +10,10 @@
|
|||
package server
|
||||
|
||||
type DeleteLoginKeyResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,5 +12,5 @@ package server
|
|||
type DeleteMemberServerImagesRequest struct {
|
||||
|
||||
// 회원서버이미지번호리스트
|
||||
MemberServerImageNoList []*string `json:"memberServerImageNoList"`
|
||||
MemberServerImageNoList []*string `json:"memberServerImageNoList"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type DeleteMemberServerImagesResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
MemberServerImageList []*MemberServerImage `json:"memberServerImageList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
MemberServerImageList []*MemberServerImage `json:"memberServerImageList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,5 +12,5 @@ package server
|
|||
type DeleteNasVolumeInstanceRequest struct {
|
||||
|
||||
// NAS볼륨인스턴스번호
|
||||
NasVolumeInstanceNo *string `json:"nasVolumeInstanceNo"`
|
||||
NasVolumeInstanceNo *string `json:"nasVolumeInstanceNo"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type DeleteNasVolumeInstanceResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
NasVolumeInstanceList []*NasVolumeInstance `json:"nasVolumeInstanceList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
NasVolumeInstanceList []*NasVolumeInstance `json:"nasVolumeInstanceList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,5 +12,5 @@ package server
|
|||
type DeleteNetworkInterfaceRequest struct {
|
||||
|
||||
// Network Interface번호
|
||||
NetworkInterfaceNo *string `json:"networkInterfaceNo"`
|
||||
NetworkInterfaceNo *string `json:"networkInterfaceNo"`
|
||||
}
|
||||
|
|
|
@ -10,9 +10,10 @@
|
|||
package server
|
||||
|
||||
type DeleteNetworkInterfaceResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,8 +12,8 @@ package server
|
|||
type DeletePortForwardingRulesRequest struct {
|
||||
|
||||
// 포트포워딩설정번호
|
||||
PortForwardingConfigurationNo *string `json:"portForwardingConfigurationNo"`
|
||||
PortForwardingConfigurationNo *string `json:"portForwardingConfigurationNo"`
|
||||
|
||||
// 포트포워딩RULE리스트
|
||||
PortForwardingRuleList []*PortForwardingRuleParameter `json:"portForwardingRuleList"`
|
||||
PortForwardingRuleList []*PortForwardingRuleParameter `json:"portForwardingRuleList"`
|
||||
}
|
||||
|
|
|
@ -12,18 +12,18 @@ package server
|
|||
type DeletePortForwardingRulesResponse struct {
|
||||
|
||||
// 포트포워딩설정번호
|
||||
PortForwardingConfigurationNo *string `json:"portForwardingConfigurationNo,omitempty"`
|
||||
PortForwardingConfigurationNo *string `json:"portForwardingConfigurationNo,omitempty"`
|
||||
|
||||
// 포트포워딩공인IP
|
||||
PortForwardingPublicIp *string `json:"portForwardingPublicIp,omitempty"`
|
||||
PortForwardingPublicIp *string `json:"portForwardingPublicIp,omitempty"`
|
||||
|
||||
// ZONE
|
||||
Zone *Zone `json:"zone,omitempty"`
|
||||
Zone *Zone `json:"zone,omitempty"`
|
||||
|
||||
// 인터넷회선구분
|
||||
InternetLineType *CommonCode `json:"internetLineType,omitempty"`
|
||||
InternetLineType *CommonCode `json:"internetLineType,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
PortForwardingRuleList []*PortForwardingRule `json:"portForwardingRuleList,omitempty"`
|
||||
PortForwardingRuleList []*PortForwardingRule `json:"portForwardingRuleList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,5 +12,5 @@ package server
|
|||
type DeletePublicIpInstancesRequest struct {
|
||||
|
||||
// 공인IP인스턴스번호리스트
|
||||
PublicIpInstanceNoList []*string `json:"publicIpInstanceNoList"`
|
||||
PublicIpInstanceNoList []*string `json:"publicIpInstanceNoList"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type DeletePublicIpInstancesResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
PublicIpInstanceList []*PublicIpInstance `json:"publicIpInstanceList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
PublicIpInstanceList []*PublicIpInstance `json:"publicIpInstanceList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,5 +12,5 @@ package server
|
|||
type DetachBlockStorageInstancesRequest struct {
|
||||
|
||||
// 블록스토리지인스턴스번호리스트
|
||||
BlockStorageInstanceNoList []*string `json:"blockStorageInstanceNoList"`
|
||||
BlockStorageInstanceNoList []*string `json:"blockStorageInstanceNoList"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type DetachBlockStorageInstancesResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
BlockStorageInstanceList []*BlockStorageInstance `json:"blockStorageInstanceList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
BlockStorageInstanceList []*BlockStorageInstance `json:"blockStorageInstanceList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,8 +12,8 @@ package server
|
|||
type DetachNetworkInterfaceRequest struct {
|
||||
|
||||
// Network Interface번호
|
||||
NetworkInterfaceNo *string `json:"networkInterfaceNo"`
|
||||
NetworkInterfaceNo *string `json:"networkInterfaceNo"`
|
||||
|
||||
// 서버인스턴스번호
|
||||
ServerInstanceNo *string `json:"serverInstanceNo"`
|
||||
ServerInstanceNo *string `json:"serverInstanceNo"`
|
||||
}
|
||||
|
|
|
@ -10,9 +10,10 @@
|
|||
package server
|
||||
|
||||
type DetachNetworkInterfaceResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,5 +12,5 @@ package server
|
|||
type DisassociatePublicIpFromServerInstanceRequest struct {
|
||||
|
||||
// 공인IP인스턴스번호
|
||||
PublicIpInstanceNo *string `json:"publicIpInstanceNo"`
|
||||
PublicIpInstanceNo *string `json:"publicIpInstanceNo"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type DisassociatePublicIpFromServerInstanceResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
PublicIpInstanceList []*PublicIpInstance `json:"publicIpInstanceList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
PublicIpInstanceList []*PublicIpInstance `json:"publicIpInstanceList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,17 +12,17 @@ package server
|
|||
type GetAccessControlGroupListRequest struct {
|
||||
|
||||
// 접근제어그룹설정번호리스트
|
||||
AccessControlGroupConfigurationNoList []*string `json:"accessControlGroupConfigurationNoList,omitempty"`
|
||||
AccessControlGroupConfigurationNoList []*string `json:"accessControlGroupConfigurationNoList,omitempty"`
|
||||
|
||||
// 디폴트여부
|
||||
IsDefault *bool `json:"isDefault,omitempty"`
|
||||
IsDefault *bool `json:"isDefault,omitempty"`
|
||||
|
||||
// 접근제어그룹명
|
||||
AccessControlGroupName *string `json:"accessControlGroupName,omitempty"`
|
||||
AccessControlGroupName *string `json:"accessControlGroupName,omitempty"`
|
||||
|
||||
// 페이지번호
|
||||
PageNo *int32 `json:"pageNo,omitempty"`
|
||||
PageNo *int32 `json:"pageNo,omitempty"`
|
||||
|
||||
// 페이지사이즈
|
||||
PageSize *int32 `json:"pageSize,omitempty"`
|
||||
PageSize *int32 `json:"pageSize,omitempty"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type GetAccessControlGroupListResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
AccessControlGroupList []*AccessControlGroup `json:"accessControlGroupList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
AccessControlGroupList []*AccessControlGroup `json:"accessControlGroupList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,5 +12,5 @@ package server
|
|||
type GetAccessControlGroupServerInstanceListRequest struct {
|
||||
|
||||
// 접근제어그룹설정번호
|
||||
AccessControlGroupConfigurationNo *string `json:"accessControlGroupConfigurationNo"`
|
||||
AccessControlGroupConfigurationNo *string `json:"accessControlGroupConfigurationNo"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type GetAccessControlGroupServerInstanceListResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
ServerInstanceList []*ServerInstance `json:"serverInstanceList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
ServerInstanceList []*ServerInstance `json:"serverInstanceList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,5 +12,5 @@ package server
|
|||
type GetAccessControlRuleListRequest struct {
|
||||
|
||||
// 접근제어그룹설정번호
|
||||
AccessControlGroupConfigurationNo *string `json:"accessControlGroupConfigurationNo"`
|
||||
AccessControlGroupConfigurationNo *string `json:"accessControlGroupConfigurationNo"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type GetAccessControlRuleListResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
AccessControlRuleList []*AccessControlRule `json:"accessControlRuleList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
AccessControlRuleList []*AccessControlRule `json:"accessControlRuleList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,44 +12,44 @@ package server
|
|||
type GetBlockStorageInstanceListRequest struct {
|
||||
|
||||
// 서버인스턴스번호
|
||||
ServerInstanceNo *string `json:"serverInstanceNo,omitempty"`
|
||||
ServerInstanceNo *string `json:"serverInstanceNo,omitempty"`
|
||||
|
||||
// 블록스토리지인스턴스번호리스트
|
||||
BlockStorageInstanceNoList []*string `json:"blockStorageInstanceNoList,omitempty"`
|
||||
BlockStorageInstanceNoList []*string `json:"blockStorageInstanceNoList,omitempty"`
|
||||
|
||||
// 검색할필터명
|
||||
SearchFilterName *string `json:"searchFilterName,omitempty"`
|
||||
SearchFilterName *string `json:"searchFilterName,omitempty"`
|
||||
|
||||
// 검색할필터값
|
||||
SearchFilterValue *string `json:"searchFilterValue,omitempty"`
|
||||
SearchFilterValue *string `json:"searchFilterValue,omitempty"`
|
||||
|
||||
// 블록스토리지구분코드리스트
|
||||
BlockStorageTypeCodeList []*string `json:"blockStorageTypeCodeList,omitempty"`
|
||||
BlockStorageTypeCodeList []*string `json:"blockStorageTypeCodeList,omitempty"`
|
||||
|
||||
// 페이지번호
|
||||
PageNo *int32 `json:"pageNo,omitempty"`
|
||||
PageNo *int32 `json:"pageNo,omitempty"`
|
||||
|
||||
// 페이지사이즈
|
||||
PageSize *int32 `json:"pageSize,omitempty"`
|
||||
PageSize *int32 `json:"pageSize,omitempty"`
|
||||
|
||||
// 블록스토리지인스턴스상태코드
|
||||
BlockStorageInstanceStatusCode *string `json:"blockStorageInstanceStatusCode,omitempty"`
|
||||
BlockStorageInstanceStatusCode *string `json:"blockStorageInstanceStatusCode,omitempty"`
|
||||
|
||||
// 디스크유형코드
|
||||
DiskTypeCode *string `json:"diskTypeCode,omitempty"`
|
||||
DiskTypeCode *string `json:"diskTypeCode,omitempty"`
|
||||
|
||||
// 디스크유형상세코드
|
||||
DiskDetailTypeCode *string `json:"diskDetailTypeCode,omitempty"`
|
||||
DiskDetailTypeCode *string `json:"diskDetailTypeCode,omitempty"`
|
||||
|
||||
// 리전번호
|
||||
RegionNo *string `json:"regionNo,omitempty"`
|
||||
RegionNo *string `json:"regionNo,omitempty"`
|
||||
|
||||
// ZONE번호
|
||||
ZoneNo *string `json:"zoneNo,omitempty"`
|
||||
ZoneNo *string `json:"zoneNo,omitempty"`
|
||||
|
||||
// 소팅대상
|
||||
SortedBy *string `json:"sortedBy,omitempty"`
|
||||
SortedBy *string `json:"sortedBy,omitempty"`
|
||||
|
||||
// 소팅순서
|
||||
SortingOrder *string `json:"sortingOrder,omitempty"`
|
||||
SortingOrder *string `json:"sortingOrder,omitempty"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type GetBlockStorageInstanceListResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
BlockStorageInstanceList []*BlockStorageInstance `json:"blockStorageInstanceList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
BlockStorageInstanceList []*BlockStorageInstance `json:"blockStorageInstanceList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,17 +12,17 @@ package server
|
|||
type GetBlockStorageSnapshotInstanceListRequest struct {
|
||||
|
||||
// 블록스토리지스냅샷인스턴스번호리스트
|
||||
BlockStorageSnapshotInstanceNoList []*string `json:"blockStorageSnapshotInstanceNoList,omitempty"`
|
||||
BlockStorageSnapshotInstanceNoList []*string `json:"blockStorageSnapshotInstanceNoList,omitempty"`
|
||||
|
||||
// 원본블록스토리지인스턴스번호리스트
|
||||
OriginalBlockStorageInstanceNoList []*string `json:"originalBlockStorageInstanceNoList,omitempty"`
|
||||
OriginalBlockStorageInstanceNoList []*string `json:"originalBlockStorageInstanceNoList,omitempty"`
|
||||
|
||||
// 페이지번호
|
||||
PageNo *int32 `json:"pageNo,omitempty"`
|
||||
PageNo *int32 `json:"pageNo,omitempty"`
|
||||
|
||||
// 페이지사이즈
|
||||
PageSize *int32 `json:"pageSize,omitempty"`
|
||||
PageSize *int32 `json:"pageSize,omitempty"`
|
||||
|
||||
// 리전번호
|
||||
RegionNo *string `json:"regionNo,omitempty"`
|
||||
RegionNo *string `json:"regionNo,omitempty"`
|
||||
}
|
||||
|
|
|
@ -10,13 +10,14 @@
|
|||
package server
|
||||
|
||||
type GetBlockStorageSnapshotInstanceListResponse struct {
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
RequestId *string `json:"requestId,omitempty"`
|
||||
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
ReturnCode *string `json:"returnCode,omitempty"`
|
||||
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
ReturnMessage *string `json:"returnMessage,omitempty"`
|
||||
|
||||
BlockStorageSnapshotInstanceList []*BlockStorageSnapshotInstance `json:"blockStorageSnapshotInstanceList,omitempty"`
|
||||
TotalRows *int32 `json:"totalRows,omitempty"`
|
||||
|
||||
BlockStorageSnapshotInstanceList []*BlockStorageSnapshotInstance `json:"blockStorageSnapshotInstanceList,omitempty"`
|
||||
}
|
||||
|
|
|
@ -12,17 +12,17 @@ package server
|
|||
type GetInstanceTagListRequest struct {
|
||||
|
||||
// 인스턴스번호리스트
|
||||
InstanceNoList []*string `json:"instanceNoList,omitempty"`
|
||||
InstanceNoList []*string `json:"instanceNoList,omitempty"`
|
||||
|
||||
// 태그키리스트
|
||||
TagKeyList []*string `json:"tagKeyList,omitempty"`
|
||||
TagKeyList []*string `json:"tagKeyList,omitempty"`
|
||||
|
||||
// 태그값리스트
|
||||
TagValueList []*string `json:"tagValueList,omitempty"`
|
||||
TagValueList []*string `json:"tagValueList,omitempty"`
|
||||
|
||||
// 페이지번호
|
||||
PageNo *int32 `json:"pageNo,omitempty"`
|
||||
PageNo *int32 `json:"pageNo,omitempty"`
|
||||
|
||||
// 페이지사이즈
|
||||
PageSize *int32 `json:"pageSize,omitempty"`
|
||||
PageSize *int32 `json:"pageSize,omitempty"`
|
||||
}
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue