github.com/NaverCloudPlatform/ncloud-sdk-go-v2@v1.6.13/services/server/get_public_ip_instance_list_request.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 GetPublicIpInstanceListRequest struct {
    12  
    13  	// 할당여부
    14  IsAssociated *bool `json:"isAssociated,omitempty"`
    15  
    16  	// 공인IP인스턴스번호리스트
    17  PublicIpInstanceNoList []*string `json:"publicIpInstanceNoList,omitempty"`
    18  
    19  	// 공인IP리스트
    20  PublicIpList []*string `json:"publicIpList,omitempty"`
    21  
    22  	// 검색할필터명
    23  SearchFilterName *string `json:"searchFilterName,omitempty"`
    24  
    25  	// 검색할필터값
    26  SearchFilterValue *string `json:"searchFilterValue,omitempty"`
    27  
    28  	// 리전번호
    29  RegionNo *string `json:"regionNo,omitempty"`
    30  
    31  	// ZONE번호
    32  ZoneNo *string `json:"zoneNo,omitempty"`
    33  
    34  	// 페이지번호
    35  PageNo *int32 `json:"pageNo,omitempty"`
    36  
    37  	// 페이지사이즈
    38  PageSize *int32 `json:"pageSize,omitempty"`
    39  
    40  	// 소팅대상
    41  SortedBy *string `json:"sortedBy,omitempty"`
    42  
    43  	// 소팅순서
    44  SortingOrder *string `json:"sortingOrder,omitempty"`
    45  }