github.com/NaverCloudPlatform/ncloud-sdk-go-v2@v1.6.13/services/vserver/create_network_interface_request.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 CreateNetworkInterfaceRequest struct {
    12  
    13  	// REGION코드
    14  RegionCode *string `json:"regionCode,omitempty"`
    15  
    16  	// ACG번호리스트
    17  AccessControlGroupNoList []*string `json:"accessControlGroupNoList"`
    18  
    19  	// 네트워크인터페이스설명
    20  NetworkInterfaceDescription *string `json:"networkInterfaceDescription,omitempty"`
    21  
    22  	// 네트워크인터페이스이름
    23  NetworkInterfaceName *string `json:"networkInterfaceName,omitempty"`
    24  
    25  	// 서브넷번호
    26  SubnetNo *string `json:"subnetNo"`
    27  
    28  	// VPC번호
    29  VpcNo *string `json:"vpcNo"`
    30  
    31  	// 서버인스턴스번호
    32  ServerInstanceNo *string `json:"serverInstanceNo,omitempty"`
    33  
    34  	// IP주소
    35  Ip *string `json:"ip,omitempty"`
    36  
    37  	// 보조IP리스트
    38  SecondaryIpList []*string `json:"secondaryIpList,omitempty"`
    39  
    40  	// 보조IP자동할당개수
    41  SecondaryIpCount *int32 `json:"secondaryIpCount,omitempty"`
    42  
    43  	// 베어메탈여부
    44  IsBareMetal *bool `json:"isBareMetal,omitempty"`
    45  }