github.com/NaverCloudPlatform/ncloud-sdk-go-v2@v1.6.13/services/server/server_instance.go (about)

     1  /*
     2   * server
     3   *
     4   * <br/>https://ncloud.apigw.ntruss.com/server/v2
     5   *
     6   * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
     7   */
     8  
     9  package server
    10  
    11  type ServerInstance struct {
    12  
    13  	// 서버인스턴스번호
    14  ServerInstanceNo *string `json:"serverInstanceNo,omitempty"`
    15  
    16  	// 서버명
    17  ServerName *string `json:"serverName,omitempty"`
    18  
    19  	// 서버설명
    20  ServerDescription *string `json:"serverDescription,omitempty"`
    21  
    22  	// CPU수
    23  CpuCount *int32 `json:"cpuCount,omitempty"`
    24  
    25  	// 메모리사이즈
    26  MemorySize *int64 `json:"memorySize,omitempty"`
    27  
    28  	// 기본블럭스토리지사이즈
    29  BaseBlockStorageSize *int64 `json:"baseBlockStorageSize,omitempty"`
    30  
    31  	// 플랫폼구분
    32  PlatformType *CommonCode `json:"platformType,omitempty"`
    33  
    34  	// 로그인키명
    35  LoginKeyName *string `json:"loginKeyName,omitempty"`
    36  
    37  	// 유료모니터링여부
    38  IsFeeChargingMonitoring *bool `json:"isFeeChargingMonitoring,omitempty"`
    39  
    40  	// 공인IP
    41  PublicIp *string `json:"publicIp,omitempty"`
    42  
    43  	// 사설IP
    44  PrivateIp *string `json:"privateIp,omitempty"`
    45  
    46  	// 서버이미지명
    47  ServerImageName *string `json:"serverImageName,omitempty"`
    48  
    49  	// 서버인스턴스상태
    50  ServerInstanceStatus *CommonCode `json:"serverInstanceStatus,omitempty"`
    51  
    52  	// 서버인스턴스OP
    53  ServerInstanceOperation *CommonCode `json:"serverInstanceOperation,omitempty"`
    54  
    55  	// 서버인스턴스상태명
    56  ServerInstanceStatusName *string `json:"serverInstanceStatusName,omitempty"`
    57  
    58  	// 생성일자
    59  CreateDate *string `json:"createDate,omitempty"`
    60  
    61  	// UPTIME
    62  Uptime *string `json:"uptime,omitempty"`
    63  
    64  	// 서버이미지상품코드
    65  ServerImageProductCode *string `json:"serverImageProductCode,omitempty"`
    66  
    67  	// 서버상품코드
    68  ServerProductCode *string `json:"serverProductCode,omitempty"`
    69  
    70  	// 반납보호여부
    71  IsProtectServerTermination *bool `json:"isProtectServerTermination,omitempty"`
    72  
    73  	// portForwarding 공인 Ip
    74  PortForwardingPublicIp *string `json:"portForwardingPublicIp,omitempty"`
    75  
    76  	// portForwarding 외부 포트
    77  PortForwardingExternalPort *int32 `json:"portForwardingExternalPort,omitempty"`
    78  
    79  	// portForwarding 내부 포트
    80  PortForwardingInternalPort *int32 `json:"portForwardingInternalPort,omitempty"`
    81  
    82  	// Zone
    83  Zone *Zone `json:"zone,omitempty"`
    84  
    85  	// 리전
    86  Region *Region `json:"region,omitempty"`
    87  
    88  	// 기본블록스토리지디스크유형
    89  BaseBlockStorageDiskType *CommonCode `json:"baseBlockStorageDiskType,omitempty"`
    90  
    91  	// 기본블록스토리지디스크상세유형
    92  BaseBlockStorageDiskDetailType *CommonCode `json:"baseBlockStorageDiskDetailType,omitempty"`
    93  
    94  	// 서버인스턴스구분
    95  ServerInstanceType *CommonCode `json:"serverInstanceType,omitempty"`
    96  
    97  	// 사용자데이타
    98  UserData *string `json:"userData,omitempty"`
    99  
   100  	// ACG리스트
   101  AccessControlGroupList []*AccessControlGroup `json:"accessControlGroupList,omitempty"`
   102  
   103  	// 인스턴스태그리스트
   104  InstanceTagList []*InstanceTag `json:"instanceTagList,omitempty"`
   105  
   106  	// 블록디바이스파티션리스트
   107  BlockDevicePartitionList []*BlockDevicePartition `json:"blockDevicePartitionList,omitempty"`
   108  }