| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- // Copyright 2018 JDCLOUD.COM
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- //
- // NOTE: This class is auto generated by the jdcloud code generator program.
- package apis
- import (
- "github.com/jdcloud-api/jdcloud-sdk-go/core"
- vpc "github.com/jdcloud-api/jdcloud-sdk-go/services/vpc/models"
- )
- type CreateElasticIpsRequest struct {
- core.JDCloudRequest
- /* Region ID */
- RegionId string `json:"regionId"`
- /* 购买弹性ip数量;取值范围:[1,100] */
- MaxCount int `json:"maxCount"`
- /* 指定弹性ip地址进行创建,当申请创建多个弹性ip时,必须为空 (Optional) */
- ElasticIpAddress *string `json:"elasticIpAddress"`
- /* 弹性ip规格 */
- ElasticIpSpec *vpc.ElasticIpSpec `json:"elasticIpSpec"`
- /* 用户标签 (Optional) */
- UserTags []vpc.Tag `json:"userTags"`
- /* 弹性ip类型,取值:standard(标准公网IP),edge(边缘公网IP),默认为standard (Optional) */
- IpType *string `json:"ipType"`
- }
- /*
- * param regionId: Region ID (Required)
- * param maxCount: 购买弹性ip数量;取值范围:[1,100] (Required)
- * param elasticIpSpec: 弹性ip规格 (Required)
- *
- * @Deprecated, not compatible when mandatory parameters changed
- */
- func NewCreateElasticIpsRequest(
- regionId string,
- maxCount int,
- elasticIpSpec *vpc.ElasticIpSpec,
- ) *CreateElasticIpsRequest {
- return &CreateElasticIpsRequest{
- JDCloudRequest: core.JDCloudRequest{
- URL: "/regions/{regionId}/elasticIps/",
- Method: "POST",
- Header: nil,
- Version: "v1",
- },
- RegionId: regionId,
- MaxCount: maxCount,
- ElasticIpSpec: elasticIpSpec,
- }
- }
- /*
- * param regionId: Region ID (Required)
- * param maxCount: 购买弹性ip数量;取值范围:[1,100] (Required)
- * param elasticIpAddress: 指定弹性ip地址进行创建,当申请创建多个弹性ip时,必须为空 (Optional)
- * param elasticIpSpec: 弹性ip规格 (Required)
- * param userTags: 用户标签 (Optional)
- * param ipType: 弹性ip类型,取值:standard(标准公网IP),edge(边缘公网IP),默认为standard (Optional)
- */
- func NewCreateElasticIpsRequestWithAllParams(
- regionId string,
- maxCount int,
- elasticIpAddress *string,
- elasticIpSpec *vpc.ElasticIpSpec,
- userTags []vpc.Tag,
- ipType *string,
- ) *CreateElasticIpsRequest {
- return &CreateElasticIpsRequest{
- JDCloudRequest: core.JDCloudRequest{
- URL: "/regions/{regionId}/elasticIps/",
- Method: "POST",
- Header: nil,
- Version: "v1",
- },
- RegionId: regionId,
- MaxCount: maxCount,
- ElasticIpAddress: elasticIpAddress,
- ElasticIpSpec: elasticIpSpec,
- UserTags: userTags,
- IpType: ipType,
- }
- }
- /* This constructor has better compatible ability when API parameters changed */
- func NewCreateElasticIpsRequestWithoutParam() *CreateElasticIpsRequest {
- return &CreateElasticIpsRequest{
- JDCloudRequest: core.JDCloudRequest{
- URL: "/regions/{regionId}/elasticIps/",
- Method: "POST",
- Header: nil,
- Version: "v1",
- },
- }
- }
- /* param regionId: Region ID(Required) */
- func (r *CreateElasticIpsRequest) SetRegionId(regionId string) {
- r.RegionId = regionId
- }
- /* param maxCount: 购买弹性ip数量;取值范围:[1,100](Required) */
- func (r *CreateElasticIpsRequest) SetMaxCount(maxCount int) {
- r.MaxCount = maxCount
- }
- /* param elasticIpAddress: 指定弹性ip地址进行创建,当申请创建多个弹性ip时,必须为空(Optional) */
- func (r *CreateElasticIpsRequest) SetElasticIpAddress(elasticIpAddress string) {
- r.ElasticIpAddress = &elasticIpAddress
- }
- /* param elasticIpSpec: 弹性ip规格(Required) */
- func (r *CreateElasticIpsRequest) SetElasticIpSpec(elasticIpSpec *vpc.ElasticIpSpec) {
- r.ElasticIpSpec = elasticIpSpec
- }
- /* param userTags: 用户标签(Optional) */
- func (r *CreateElasticIpsRequest) SetUserTags(userTags []vpc.Tag) {
- r.UserTags = userTags
- }
- /* param ipType: 弹性ip类型,取值:standard(标准公网IP),edge(边缘公网IP),默认为standard(Optional) */
- func (r *CreateElasticIpsRequest) SetIpType(ipType string) {
- r.IpType = &ipType
- }
- // GetRegionId returns path parameter 'regionId' if exist,
- // otherwise return empty string
- func (r CreateElasticIpsRequest) GetRegionId() string {
- return r.RegionId
- }
- type CreateElasticIpsResponse struct {
- RequestID string `json:"requestId"`
- Error core.ErrorResponse `json:"error"`
- Result CreateElasticIpsResult `json:"result"`
- }
- type CreateElasticIpsResult struct {
- ElasticIpIds []string `json:"elasticIpIds"`
- RequestId string `json:"requestId"`
- }
|