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

     1  /*
     2   * vserver
     3   *
     4   * VPC Compute 관련 API<br/>https://ncloud.apigw.ntruss.com/vserver/v2
     5   *
     6   * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
     7   */
     8  
     9  package vserver
    10  
    11  type NetworkInterface struct {
    12  
    13  	// 네트워크인터페이스번호
    14  NetworkInterfaceNo *string `json:"networkInterfaceNo,omitempty"`
    15  
    16  	// 네트워크인터페이스이름
    17  NetworkInterfaceName *string `json:"networkInterfaceName,omitempty"`
    18  
    19  	// 서브넷번호
    20  SubnetNo *string `json:"subnetNo,omitempty"`
    21  
    22  	// 디바이스반납시자동반납여부
    23  DeleteOnTermination *bool `json:"deleteOnTermination,omitempty"`
    24  
    25  	// Default여부
    26  IsDefault *bool `json:"isDefault,omitempty"`
    27  
    28  	// 디바이스이름
    29  DeviceName *string `json:"deviceName,omitempty"`
    30  
    31  	// 네트워크인터페이스상태
    32  NetworkInterfaceStatus *CommonCode `json:"networkInterfaceStatus,omitempty"`
    33  
    34  	// 인스턴스유형
    35  InstanceType *CommonCode `json:"instanceType,omitempty"`
    36  
    37  	// 인스턴스번호
    38  InstanceNo *string `json:"instanceNo,omitempty"`
    39  
    40  	// IP주소
    41  Ip *string `json:"ip,omitempty"`
    42  
    43  	// MAC주소
    44  MacAddress *string `json:"macAddress,omitempty"`
    45  
    46  	// ACG번호리스트
    47  AccessControlGroupNoList []*string `json:"accessControlGroupNoList,omitempty"`
    48  
    49  	// 네트워크인터페이스설명
    50  NetworkInterfaceDescription *string `json:"networkInterfaceDescription,omitempty"`
    51  
    52  	// 보조IP리스트
    53  SecondaryIpList []*string `json:"secondaryIpList,omitempty"`
    54  }