model

package
v0.0.4-beta Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 15, 2024 License: Apache-2.0, BSD-2-Clause, BSD-3-Clause Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AssociatePublicipsOption

type AssociatePublicipsOption struct {

	// 功能说明:端口所属实例类型 取值范围:PORT、NATGW、VPN、ELB 约束:associate_instance_type和associate_instance_id都不为空时表示绑定实例 约束:associate_instance_type字段不允许为空 约束:双栈公网IP不允许修改绑定的实例
	AssociateInstanceType AssociatePublicipsOptionAssociateInstanceType `json:"associate_instance_type"`

	// 功能说明:端口所属实例ID,例如RDS实例ID 约束:associate_instance_type和associate_instance_id都不为空时表示绑定实例; associate_instance_type和associate_instance_id都为null时解绑实例 约束:双栈公网IP不允许修改绑定的实例
	AssociateInstanceId string `json:"associate_instance_id"`
}

func (AssociatePublicipsOption) String

func (o AssociatePublicipsOption) String() string

type AssociatePublicipsOptionAssociateInstanceType

type AssociatePublicipsOptionAssociateInstanceType struct {
	// contains filtered or unexported fields
}

func (AssociatePublicipsOptionAssociateInstanceType) MarshalJSON

func (*AssociatePublicipsOptionAssociateInstanceType) UnmarshalJSON

func (AssociatePublicipsOptionAssociateInstanceType) Value

type AssociatePublicipsRequest

type AssociatePublicipsRequest struct {

	// 弹性公网IP的ID
	PublicipId string `json:"publicip_id"`

	Body *AssociatePublicipsRequestBody `json:"body,omitempty"`
}

AssociatePublicipsRequest Request Object

func (AssociatePublicipsRequest) String

func (o AssociatePublicipsRequest) String() string

type AssociatePublicipsRequestBody

type AssociatePublicipsRequestBody struct {
	Publicip *AssociatePublicipsOption `json:"publicip"`
}

AssociatePublicipsRequestBody 绑定弹性公网IP的请求体

func (AssociatePublicipsRequestBody) String

type AssociatePublicipsResponse

type AssociatePublicipsResponse struct {

	// 本次请求的编号
	RequestId *string `json:"request_id,omitempty"`

	Publicip       *PublicipInstanceResp `json:"publicip,omitempty"`
	HttpStatusCode int                   `json:"-"`
}

AssociatePublicipsResponse Response Object

func (AssociatePublicipsResponse) String

type AttachBatchPublicIpRequest

type AttachBatchPublicIpRequest struct {
	Body *BatchAttachSharebwReq `json:"body,omitempty"`
}

AttachBatchPublicIpRequest Request Object

func (AttachBatchPublicIpRequest) String

type AttachBatchPublicIpResponse

type AttachBatchPublicIpResponse struct {

	// 弹性公网IP对象
	Publicips *[]BatchPublicipResp `json:"publicips,omitempty"`

	// 本次请求编号
	RequestId      *string `json:"request_id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

AttachBatchPublicIpResponse Response Object

func (AttachBatchPublicIpResponse) String

type AttachShareBandwidthRequest

type AttachShareBandwidthRequest struct {

	// 弹性公网ID
	PublicipId string `json:"publicip_id"`

	Body *AttachSharebwReq `json:"body,omitempty"`
}

AttachShareBandwidthRequest Request Object

func (AttachShareBandwidthRequest) String

type AttachShareBandwidthResponse

type AttachShareBandwidthResponse struct {
	Publicip *PublicipResp `json:"publicip,omitempty"`

	// 本次请求编号
	RequestId      *string `json:"request_id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

AttachShareBandwidthResponse Response Object

func (AttachShareBandwidthResponse) String

type AttachSharebwDict

type AttachSharebwDict struct {

	// - 带宽id
	BandwidthId *string `json:"bandwidth_id,omitempty"`
}

AttachSharebwDict 共享带宽加入弹性公网IP参数

func (AttachSharebwDict) String

func (o AttachSharebwDict) String() string

type AttachSharebwReq

type AttachSharebwReq struct {
	Publicip *AttachSharebwDict `json:"publicip,omitempty"`
}

AttachSharebwReq 共享带宽加入弹性公网IP请求参数

func (AttachSharebwReq) String

func (o AttachSharebwReq) String() string

type BandWidthRules

type BandWidthRules struct {

	// - 功能说明:带宽规则ID
	Id *string `json:"id,omitempty"`

	// - 功能说明:带宽规则名称
	Name *string `json:"name,omitempty"`

	// - 功能说明:配置状态,为False时配置不生效。
	AdminStateUp *bool `json:"admin_state_up,omitempty"`

	// - 功能说明:出网带宽最大值,单位Mbps - 取值范围[0,n],其中n为所属带宽的带宽大小(size字段)。0表示设置为最大带宽
	EgressSize *int32 `json:"egress_size,omitempty"`

	// - 功能说明:出网保障带宽大小,单位Mbps - 取值范围[0,x],其中x为所属带宽剩余的保障额
	EgressGuarentedSize *int32 `json:"egress_guarented_size,omitempty"`

	// - 功能说明:带宽对应的弹性公网IP信息 - 约束:WHOLE类型的带宽支持多个弹性公网IP,PER类型的带宽只能对应一个弹性公网IP
	PublicipInfo *[]PublicipInfoResponseBody `json:"publicip_info,omitempty"`
}

BandWidthRules 带宽规则对象

func (BandWidthRules) String

func (o BandWidthRules) String() string

type BandwidthInfoResp

type BandwidthInfoResp struct {

	// - 功能说明:带宽名称
	BandwidthName *string `json:"bandwidth_name,omitempty"`

	// - 功能说明:带宽大小
	BandwidthNumber *int32 `json:"bandwidth_number,omitempty"`

	// - 功能说明:带宽类型
	BandwidthType *BandwidthInfoRespBandwidthType `json:"bandwidth_type,omitempty"`

	// - 功能说明:带宽id
	BandwidthId *string `json:"bandwidth_id,omitempty"`
}

BandwidthInfoResp 弹性公网IP绑定的带宽信息

func (BandwidthInfoResp) String

func (o BandwidthInfoResp) String() string

type BandwidthInfoRespBandwidthType

type BandwidthInfoRespBandwidthType struct {
	// contains filtered or unexported fields
}

func (BandwidthInfoRespBandwidthType) MarshalJSON

func (c BandwidthInfoRespBandwidthType) MarshalJSON() ([]byte, error)

func (*BandwidthInfoRespBandwidthType) UnmarshalJSON

func (c *BandwidthInfoRespBandwidthType) UnmarshalJSON(b []byte) error

func (BandwidthInfoRespBandwidthType) Value

type BandwidthInfoRespBandwidthTypeEnum

type BandwidthInfoRespBandwidthTypeEnum struct {
	PER   BandwidthInfoRespBandwidthType
	WHOLE BandwidthInfoRespBandwidthType
}

func GetBandwidthInfoRespBandwidthTypeEnum

func GetBandwidthInfoRespBandwidthTypeEnum() BandwidthInfoRespBandwidthTypeEnum

type BandwidthResp

type BandwidthResp struct {

	// - 功能说明:带宽ID
	Id *string `json:"id,omitempty"`

	// - 功能说明:带宽大小
	Size *int32 `json:"size,omitempty"`

	// - 功能说明:类型  \"WHOLE\"为共享带宽,\"PER\"为独占带宽
	ShareType *string `json:"share_type,omitempty"`

	// - 功能说明:带宽计费模式
	ChargeMode *string `json:"charge_mode,omitempty"`

	// - 功能说明:带宽名称
	Name *string `json:"name,omitempty"`

	// - 功能说明:带宽的订单信息
	BillingInfo *string `json:"billing_info,omitempty"`
}

BandwidthResp 弹性公网IP中的bandwidth对象,存储公网IP绑定的带宽信息

func (BandwidthResp) String

func (o BandwidthResp) String() string

type BandwidthResponseBody

type BandwidthResponseBody struct {

	// - 功能说明:带宽状态 - 取值范围:normal,freezed
	AdminState *string `json:"admin_state,omitempty"`

	// - 功能说明:入网大小,单位Mbit/s
	IngressSize *int32 `json:"ingress_size,omitempty"`

	// - 功能说明:规则数值,最低阈值可调节
	RuleQuota *int32 `json:"rule_quota,omitempty"`

	// - 功能说明:增强型95带宽保底率,最低保底率为20
	Ratio95peakPlus *int32 `json:"ratio_95peak_plus,omitempty"`

	// - 功能说明:带宽分组使能,表明开启带宽分组限速功能。
	EnableBandwidthRules *bool `json:"enable_bandwidth_rules,omitempty"`

	// - 功能说明:带宽规则对象(该字段仅在上海1局点返回)
	BandwidthRules *[]BandWidthRules `json:"bandwidth_rules,omitempty"`

	// - 功能说明:带宽AZ属性,表征中心和边缘。中心带宽默认为center
	PublicBorderGroup *string `json:"public_border_group,omitempty"`

	// - 功能说明:带宽类型,共享带宽默认为share。 - 取值范围:share,bgp,telcom,sbgp等。  share:共享带宽;  bgp:动态bgp;  telcom :联通;  sbgp:静态bgp。
	BandwidthType *string `json:"bandwidth_type,omitempty"`

	// - 功能说明:账单信息,
	Billinginfo *string `json:"billinginfo,omitempty"`

	// - 功能说明:带宽唯一标识
	Id *string `json:"id,omitempty"`

	// - 功能说明:带宽名称 - 取值范围:1-64个字符,支持数字、字母、中文、_(下划线)、-(中划线)、.(点)
	Name *string `json:"name,omitempty"`

	// - 功能说明:带宽对应的弹性公网IP信息 - 约束:WHOLE类型的带宽支持多个弹性公网IP,PER类型的带宽只能对应一个弹性公网IP
	PublicipInfo *[]PublicipInfoResponseBody `json:"publicip_info,omitempty"`

	// - 功能说明:带宽类型,标识是否是共享带宽 - 取值范围:WHOLE,PER。  WHOLE表示共享带宽;PER表示独享带宽
	Type *BandwidthResponseBodyType `json:"type,omitempty"`

	// - 功能说明:带宽大小 - 取值范围:默认5Mbit/s~2000Mbit/s(具体范围以各区域配置为准,请参见控制台对应页面显示)。
	Size *int32 `json:"size,omitempty"`

	// - 功能说明:用户所属项目ID
	ProjectId *string `json:"project_id,omitempty"`

	// - 功能说明:\"公网EIP标签\"
	Tags *[]string `json:"tags,omitempty"`

	// - 功能说明:资源创建时间,采用UTC时间,格式:YYYY-MM-DDTHH:MM:SS
	CreatedAt *sdktime.SdkTime `json:"created_at,omitempty"`

	// - 功能说明:资源更新时间,采用UTC时间,格式:YYYY-MM-DDTHH:MM:SS
	UpdatedAt *sdktime.SdkTime `json:"updated_at,omitempty"`
}

BandwidthResponseBody 带宽对象

func (BandwidthResponseBody) String

func (o BandwidthResponseBody) String() string

type BandwidthResponseBodyType

type BandwidthResponseBodyType struct {
	// contains filtered or unexported fields
}

func (BandwidthResponseBodyType) MarshalJSON

func (c BandwidthResponseBodyType) MarshalJSON() ([]byte, error)

func (*BandwidthResponseBodyType) UnmarshalJSON

func (c *BandwidthResponseBodyType) UnmarshalJSON(b []byte) error

func (BandwidthResponseBodyType) Value

type BandwidthResponseBodyTypeEnum

type BandwidthResponseBodyTypeEnum struct {
	WHOLE BandwidthResponseBodyType
	PER   BandwidthResponseBodyType
}

func GetBandwidthResponseBodyTypeEnum

func GetBandwidthResponseBodyTypeEnum() BandwidthResponseBodyTypeEnum

type BatchAttachSharebwDict

type BatchAttachSharebwDict struct {

	// - 共享带宽的id
	BandwidthId *string `json:"bandwidth_id,omitempty"`

	// - 弹性公网IP ID
	PublicipId *string `json:"publicip_id,omitempty"`
}

BatchAttachSharebwDict 共享带宽批量加入弹性公网IP参数

func (BatchAttachSharebwDict) String

func (o BatchAttachSharebwDict) String() string

type BatchAttachSharebwReq

type BatchAttachSharebwReq struct {

	// - 功能说明:共享带宽数据 - 约束:共享带宽批量加入多个弹性公网IP时,请求参数publicips中的bandwidth_id必须为同一个共享带宽的id
	Publicips *[]BatchAttachSharebwDict `json:"publicips,omitempty"`
}

BatchAttachSharebwReq 共享带宽批量加入弹性公网IP请求参数

func (BatchAttachSharebwReq) String

func (o BatchAttachSharebwReq) String() string

type BatchPublicipResp

type BatchPublicipResp struct {

	// 响应码
	StatusCode int32 `json:"statusCode"`

	Publicip *PublicipResp `json:"publicip"`
}

func (BatchPublicipResp) String

func (o BatchPublicipResp) String() string

type CommonPoolDict

type CommonPoolDict struct {

	// 公共池名字
	Name *string `json:"name,omitempty"`

	// 状态
	Status *string `json:"status,omitempty"`

	// 公共池类型,如bgp,sbgp等
	Type *string `json:"type,omitempty"`

	// 已经使用的ip数量
	Used *int32 `json:"used,omitempty"`

	// 功能说明:表示中心站点资源或者边缘站点资源 取值范围: center、边缘站点名称 约束:publicip只能绑定该字段相同的资源
	PublicBorderGroup *string `json:"public_border_group,omitempty"`

	// 默认不展示,取值, 公共池ID
	Id *string `json:"id,omitempty"`

	// 功能说明:表示此publicip可以加入的共享带宽类型列表,如果为空列表,则表示该           publicip不能加入任何共享带宽 约束:publicip只能加入到有该带宽类型的共享带宽中
	AllowShareBandwidthTypes *[]string `json:"allow_share_bandwidth_types,omitempty"`
}

CommonPoolDict 公共池详情

func (CommonPoolDict) String

func (o CommonPoolDict) String() string

type CommonPoolsWithBorderGroupDict

type CommonPoolsWithBorderGroupDict struct {

	// 同组的公共池列表
	PublicipPools *[]string `json:"publicip_pools,omitempty"`

	// 分组:中心还是边缘
	PublicBorderGroup *string `json:"public_border_group,omitempty"`
}

CommonPoolsWithBorderGroupDict 分组详情

func (CommonPoolsWithBorderGroupDict) String

type CountEipAvailableResourcesRequest

type CountEipAvailableResourcesRequest struct {
	Body *EipResourcesAvailableV3RequestBody `json:"body,omitempty"`
}

CountEipAvailableResourcesRequest Request Object

func (CountEipAvailableResourcesRequest) String

type CountEipAvailableResourcesResponse

type CountEipAvailableResourcesResponse struct {

	// - 功能说明:返回结果
	Result         *int32 `json:"result,omitempty"`
	HttpStatusCode int    `json:"-"`
}

CountEipAvailableResourcesResponse Response Object

func (CountEipAvailableResourcesResponse) String

type DetachBatchPublicIpRequest

type DetachBatchPublicIpRequest struct {
	Body *DetachBatchSharedbwReq `json:"body,omitempty"`
}

DetachBatchPublicIpRequest Request Object

func (DetachBatchPublicIpRequest) String

type DetachBatchPublicIpResponse

type DetachBatchPublicIpResponse struct {

	// 弹性公网IP对象
	Publicips *[]BatchPublicipResp `json:"publicips,omitempty"`

	// 本次请求编号
	RequestId      *string `json:"request_id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

DetachBatchPublicIpResponse Response Object

func (DetachBatchPublicIpResponse) String

type DetachBatchSharedbwReq

type DetachBatchSharedbwReq struct {

	// 共享带宽批量移出弹性公网IP请求对象
	Publicips *[]DetachBatchSharedbwReqPublicips `json:"publicips,omitempty"`
}

DetachBatchSharedbwReq 共享带宽批量移出弹性公网IP请求参数

func (DetachBatchSharedbwReq) String

func (o DetachBatchSharedbwReq) String() string

type DetachBatchSharedbwReqPublicips

type DetachBatchSharedbwReqPublicips struct {

	// - 功能说明:EIP ID
	PublicipId string `json:"publicip_id"`

	Bandwidth *DetachSharedbwDict `json:"bandwidth"`
}

func (DetachBatchSharedbwReqPublicips) String

type DetachShareBandwidthRequest

type DetachShareBandwidthRequest struct {

	// 弹性公网ID
	PublicipId string `json:"publicip_id"`

	Body *DetachSharedbwReq `json:"body,omitempty"`
}

DetachShareBandwidthRequest Request Object

func (DetachShareBandwidthRequest) String

type DetachShareBandwidthResponse

type DetachShareBandwidthResponse struct {
	Publicip *PublicipResp `json:"publicip,omitempty"`

	// 本次请求编号
	RequestId      *string `json:"request_id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

DetachShareBandwidthResponse Response Object

func (DetachShareBandwidthResponse) String

type DetachSharedbwDict

type DetachSharedbwDict struct {

	// - 功能说明:带宽名称
	Name *string `json:"name,omitempty"`

	// - 功能说明:带宽大小
	Size int32 `json:"size"`

	// - 功能说明:带宽计费模式
	ChargeMode string `json:"charge_mode"`
}

DetachSharedbwDict 弹性公网IP移出共享带宽后带宽的参数

func (DetachSharedbwDict) String

func (o DetachSharedbwDict) String() string

type DetachSharedbwReq

type DetachSharedbwReq struct {
	Publicip *DetachSharedbwReqPublicip `json:"publicip"`
}

DetachSharedbwReq 共享带宽移出弹性公网IP请求参数

func (DetachSharedbwReq) String

func (o DetachSharedbwReq) String() string

type DetachSharedbwReqPublicip

type DetachSharedbwReqPublicip struct {
	Bandwidth *DetachSharedbwDict `json:"bandwidth,omitempty"`
}

DetachSharedbwReqPublicip 共享带宽移出弹性公网IP请求对象

func (DetachSharedbwReqPublicip) String

func (o DetachSharedbwReqPublicip) String() string

type DisableNat64Request

type DisableNat64Request struct {

	// 弹性公网ID
	PublicipId string `json:"publicip_id"`
}

DisableNat64Request Request Object

func (DisableNat64Request) String

func (o DisableNat64Request) String() string

type DisableNat64Response

type DisableNat64Response struct {
	Publicip *PublicipResp `json:"publicip,omitempty"`

	// 本次请求编号
	RequestId      *string `json:"request_id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

DisableNat64Response Response Object

func (DisableNat64Response) String

func (o DisableNat64Response) String() string

type DisassociatePublicipsRequest

type DisassociatePublicipsRequest struct {

	// 弹性公网IP的ID
	PublicipId string `json:"publicip_id"`
}

DisassociatePublicipsRequest Request Object

func (DisassociatePublicipsRequest) String

type DisassociatePublicipsResponse

type DisassociatePublicipsResponse struct {

	// 本次请求的编号
	RequestId *string `json:"request_id,omitempty"`

	Publicip       *PublicipInstanceResp `json:"publicip,omitempty"`
	HttpStatusCode int                   `json:"-"`
}

DisassociatePublicipsResponse Response Object

func (DisassociatePublicipsResponse) String

type EipResourcesAvailableV3RequestBody

type EipResourcesAvailableV3RequestBody struct {

	// 公共池类型
	Type *string `json:"type,omitempty"`

	// 查询的公共池数量
	Limit int32 `json:"limit"`
}

EipResourcesAvailableV3RequestBody This is a auto create Body Object

func (EipResourcesAvailableV3RequestBody) String

type EnableNat64Request

type EnableNat64Request struct {

	// 弹性公网ID
	PublicipId string `json:"publicip_id"`
}

EnableNat64Request Request Object

func (EnableNat64Request) String

func (o EnableNat64Request) String() string

type EnableNat64Response

type EnableNat64Response struct {
	Publicip *PublicipResp `json:"publicip,omitempty"`

	// 本次请求编号
	RequestId      *string `json:"request_id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

EnableNat64Response Response Object

func (EnableNat64Response) String

func (o EnableNat64Response) String() string

type ListBandwidthRequest

type ListBandwidthRequest struct {

	// - 功能说明:每页返回的个数 - 取值范围:取值范围:1~[2000],其中2000为局点差异项,具体取值由局点决定
	Limit *string `json:"limit,omitempty"`

	// - 功能说明:分页查询起始的资源ID,为空时为查询第一页
	Marker *string `json:"marker,omitempty"`

	// - 功能说明:带宽唯一标识
	Id *string `json:"id,omitempty"`

	// - 功能说明:带宽类型,共享带宽默认为share。 - 取值范围:share,bgp,telcom,sbgp等。   - share:共享带宽   - bgp:动态bgp   - telcom :联通   - sbgp:静态bgp
	BandwidthType *string `json:"bandwidth_type,omitempty"`

	// - 功能说明:宽带名称,按照宽带名称过滤
	Name *string `json:"name,omitempty"`

	// - 功能说明:根据宽带名称模糊查询过滤
	NameLike *string `json:"name_like,omitempty"`

	// - 功能说明:根据入云大小过滤
	IngressSize *string `json:"ingress_size,omitempty"`

	// - 功能说明:根据宽带状态过滤
	AdminState *string `json:"admin_state,omitempty"`

	// - 功能说明:根据计费信息过滤
	BillingInfo *string `json:"billing_info,omitempty"`

	// - 功能说明:根据标签过滤
	Tags *string `json:"tags,omitempty"`

	// - 功能说明:根据是否带宽分组使能过滤 - 取值范围:true、false
	EnableBandwidthRules *string `json:"enable_bandwidth_rules,omitempty"`

	// - 功能说明:根据规则数值过滤
	RuleQuota *int32 `json:"rule_quota,omitempty"`

	// - 功能说明:根据站点信息过滤
	PublicBorderGroup *string `json:"public_border_group,omitempty"`

	// - 功能说明:按流量计费,按带宽计费还是按增强型95计费 - 取值范围:bandwidth(按带宽计费),traffic(按流量计费),95peak_plus(按增强型95计费),不返回或者为空时表示是bandwidth - 约束:只有共享带宽支持95peak_plus(按增强型95计费),按增强型95计费时需要指定保底百分比,默认是20%
	ChargeMode *string `json:"charge_mode,omitempty"`

	// - 功能说明:带宽大小。共享带宽的大小有最小值限制,默认为5M,可能因局点不同而不同。 - 取值范围:默认5Mbit/s~2000Mbit/s(具体范围以各区域配置为准,请参见控制台对应页面显示)。   调整带宽时的最小单位会根据带宽范围不同存在差异。 - 小于等于300Mbit/s:默认最小单位为1Mbit/s。 - 300Mbit/s~1000Mbit/s:默认最小单位为50Mbit/s。 - 大于1000Mbit/s:默认最小单位为500Mbit/s。
	Size *string `json:"size,omitempty"`

	// - 功能说明:带宽类型,标识是否是共享带宽 - 取值范围:WHOLE,PER。   - WHOLE表示共享带宽   - PER表示独享带宽
	Type *string `json:"type,omitempty"`
}

ListBandwidthRequest Request Object

func (ListBandwidthRequest) String

func (o ListBandwidthRequest) String() string

type ListBandwidthResponse

type ListBandwidthResponse struct {

	// 带宽列表对象
	EipBandwidths *[]BandwidthResponseBody `json:"eip_bandwidths,omitempty"`

	PageInfo *PageInfoOption `json:"page_info,omitempty"`

	// 本次请求的编号
	RequestId      *string `json:"request_id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

ListBandwidthResponse Response Object

func (ListBandwidthResponse) String

func (o ListBandwidthResponse) String() string

type ListCommonPoolsRequest

type ListCommonPoolsRequest struct {

	// 显示,形式为\"fields=id&fields=name&...\"  支持字段:id/name/status/type/used/allow_share_bandwidth_types/public_border_group
	Fields *string `json:"fields,omitempty"`

	// 每页返回的个数取值范围:0~[2000],其中2000为局点差异项,具体取值由局点决定
	Limit *int32 `json:"limit,omitempty"`

	// 分页查询起始的资源序号
	Offset *int32 `json:"offset,omitempty"`

	// 公共池名称
	Name *string `json:"name,omitempty"`

	// 公共池位于中心还是边缘
	PublicBorderGroup *string `json:"public_border_group,omitempty"`
}

ListCommonPoolsRequest Request Object

func (ListCommonPoolsRequest) String

func (o ListCommonPoolsRequest) String() string

type ListCommonPoolsResponse

type ListCommonPoolsResponse struct {

	// 功能说明:公共池对象
	CommonPools *[]CommonPoolDict `json:"common_pools,omitempty"`

	// 本次请求的编号
	RequestId      *string `json:"request_id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

ListCommonPoolsResponse Response Object

func (ListCommonPoolsResponse) String

func (o ListCommonPoolsResponse) String() string

type ListPublicBorderGroupsRequest

type ListPublicBorderGroupsRequest struct {

	// 显示,形式为\"fields=id&fields=name&...\"  支持字段:publicip_pools/public_border_group
	Fields *string `json:"fields,omitempty"`
}

ListPublicBorderGroupsRequest Request Object

func (ListPublicBorderGroupsRequest) String

type ListPublicBorderGroupsResponse

type ListPublicBorderGroupsResponse struct {

	// 功能说明:公共池分组对象
	PublicBorderGroups *[]CommonPoolsWithBorderGroupDict `json:"public_border_groups,omitempty"`

	// 本次请求的编号
	RequestId      *string `json:"request_id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

ListPublicBorderGroupsResponse Response Object

func (ListPublicBorderGroupsResponse) String

type ListPublicipsRequest

type ListPublicipsRequest struct {

	// 分页查询起始的资源ID,为空时为查询第一页
	Marker *string `json:"marker,omitempty"`

	// 分页查询起始的资源序号
	Offset *int32 `json:"offset,omitempty"`

	// 每页返回的个数取值范围:0~[2000],其中2000为局点差异项,具体取值由局点决定
	Limit *int32 `json:"limit,omitempty"`

	// 显示,形式为\"fields=id&fields=owner&...\"  支持字段:id/project_id/ip_version/type/public_ip_address/public_ipv6_address/network_type/status/description/created_at/updated_at/vnic/bandwidth/associate_instance_type/associate_instance_id/lock_status/billing_info/tags/enterprise_project_id/allow_share_bandwidth_types/public_border_group/alias/publicip_pool_name/publicip_pool_id
	Fields *[]string `json:"fields,omitempty"`

	// 排序,形式为\"sort_key=id\"  支持字段:id/public_ip_address/public_ipv6_address/ip_version/created_at/updated_at/public_border_group
	SortKey *ListPublicipsRequestSortKey `json:"sort_key,omitempty"`

	// 排序方向  取值范围:asc、desc
	SortDir *ListPublicipsRequestSortDir `json:"sort_dir,omitempty"`

	// 根据id过滤
	Id *[]string `json:"id,omitempty"`

	// 根据ip_version过滤  取值范围:4、6
	IpVersion *[]ListPublicipsRequestIpVersion `json:"ip_version,omitempty"`

	// 根据public_ip_address过滤
	PublicIpAddress *[]string `json:"public_ip_address,omitempty"`

	// 根据public_ip_address过滤,模糊搜索
	PublicIpAddressLike *string `json:"public_ip_address_like,omitempty"`

	// 根据public_ipv6_address过滤
	PublicIpv6Address *[]string `json:"public_ipv6_address,omitempty"`

	// 根据public_ipv6_address过滤,模糊搜索
	PublicIpv6AddressLike *string `json:"public_ipv6_address_like,omitempty"`

	// 根据type过滤  取值范围:EIP、DUALSTACK、DUALSTACK_SUBNET  EIP: 弹性公网IP   DUALSTACK: 双栈IPV6   DUALSTACK_SUBNET: 双栈子网
	Type *[]ListPublicipsRequestType `json:"type,omitempty"`

	// 根据network_type过滤  取值范围:5_telcom、5_union、5_bgp、5_sbgp、5_ipv6、5_graybgp
	NetworkType *[]ListPublicipsRequestNetworkType `json:"network_type,omitempty"`

	// 根据publicip_pool_name过滤  取值范围:5_telcom、5_union、5_bgp、5_sbgp、5_ipv6、5_graybgp、专属池名称等
	PublicipPoolName *[]string `json:"publicip_pool_name,omitempty"`

	// 根据status过滤  取值范围:FREEZED、DOWN、ACTIVE、ERROR
	Status *[]ListPublicipsRequestStatus `json:"status,omitempty"`

	// 根据alias模糊搜索
	AliasLike *string `json:"alias_like,omitempty"`

	// 根据alias过滤
	Alias *[]string `json:"alias,omitempty"`

	// 根据description过滤
	Description *[]string `json:"description,omitempty"`

	// 根据private_ip_address过滤
	VnicPrivateIpAddress *[]string `json:"vnic.private_ip_address,omitempty"`

	// 根据private_ip_address模糊搜索
	VnicPrivateIpAddressLike *string `json:"vnic.private_ip_address_like,omitempty"`

	// 根据device_id过滤
	VnicDeviceId *[]string `json:"vnic.device_id,omitempty"`

	// 根据device_owner过滤
	VnicDeviceOwner *[]string `json:"vnic.device_owner,omitempty"`

	// 根据vpc_id过滤
	VnicVpcId *[]string `json:"vnic.vpc_id,omitempty"`

	// 根据port_id过滤
	VnicPortId *[]string `json:"vnic.port_id,omitempty"`

	// 根据device_owner_prefixlike模糊搜索
	VnicDeviceOwnerPrefixlike *string `json:"vnic.device_owner_prefixlike,omitempty"`

	// 根据instance_type过滤
	VnicInstanceType *[]string `json:"vnic.instance_type,omitempty"`

	// 根据instance_id过滤
	VnicInstanceId *[]string `json:"vnic.instance_id,omitempty"`

	// 根据id过滤
	BandwidthId *[]string `json:"bandwidth.id,omitempty"`

	// 根据name过滤
	BandwidthName *[]string `json:"bandwidth.name,omitempty"`

	// 根据name模糊过滤
	BandwidthNameLike *[]string `json:"bandwidth.name_like,omitempty"`

	// 根据size过滤
	BandwidthSize *[]int32 `json:"bandwidth.size,omitempty"`

	// 根据share_type过滤
	BandwidthShareType *[]ListPublicipsRequestBandwidthShareType `json:"bandwidth.share_type,omitempty"`

	// 根据charge_mode过滤
	BandwidthChargeMode *[]ListPublicipsRequestBandwidthChargeMode `json:"bandwidth.charge_mode,omitempty"`

	// 根据billing_info过滤
	BillingInfo *[]string `json:"billing_info,omitempty"`

	// 根据订单模式过滤,   取值范围:YEARLY_MONTHLY、PAY_PER_USE
	BillingMode *ListPublicipsRequestBillingMode `json:"billing_mode,omitempty"`

	// 根据associate_instance_type过滤  取值范围:PORT、NATGW、ELB、VPN、ELBV1
	AssociateInstanceType *[]ListPublicipsRequestAssociateInstanceType `json:"associate_instance_type,omitempty"`

	// 根据associate_instance_id过滤
	AssociateInstanceId *[]string `json:"associate_instance_id,omitempty"`

	// 根据enterprise_project_id过滤
	EnterpriseProjectId *[]string `json:"enterprise_project_id,omitempty"`

	// 根据public_border_group过滤
	PublicBorderGroup *[]string `json:"public_border_group,omitempty"`

	// 共享带宽类型,根据任一共享带宽类型过滤EIP列表。 可以指定多个带宽类型,不同的带宽类型间用逗号分隔。
	AllowShareBandwidthTypeAny *[]string `json:"allow_share_bandwidth_type_any,omitempty"`
}

ListPublicipsRequest Request Object

func (ListPublicipsRequest) String

func (o ListPublicipsRequest) String() string

type ListPublicipsRequestAssociateInstanceType

type ListPublicipsRequestAssociateInstanceType struct {
	// contains filtered or unexported fields
}

func (ListPublicipsRequestAssociateInstanceType) MarshalJSON

func (*ListPublicipsRequestAssociateInstanceType) UnmarshalJSON

func (ListPublicipsRequestAssociateInstanceType) Value

type ListPublicipsRequestBandwidthChargeMode

type ListPublicipsRequestBandwidthChargeMode struct {
	// contains filtered or unexported fields
}

func (ListPublicipsRequestBandwidthChargeMode) MarshalJSON

func (c ListPublicipsRequestBandwidthChargeMode) MarshalJSON() ([]byte, error)

func (*ListPublicipsRequestBandwidthChargeMode) UnmarshalJSON

func (c *ListPublicipsRequestBandwidthChargeMode) UnmarshalJSON(b []byte) error

func (ListPublicipsRequestBandwidthChargeMode) Value

type ListPublicipsRequestBandwidthShareType

type ListPublicipsRequestBandwidthShareType struct {
	// contains filtered or unexported fields
}

func (ListPublicipsRequestBandwidthShareType) MarshalJSON

func (c ListPublicipsRequestBandwidthShareType) MarshalJSON() ([]byte, error)

func (*ListPublicipsRequestBandwidthShareType) UnmarshalJSON

func (c *ListPublicipsRequestBandwidthShareType) UnmarshalJSON(b []byte) error

func (ListPublicipsRequestBandwidthShareType) Value

type ListPublicipsRequestBandwidthShareTypeEnum

type ListPublicipsRequestBandwidthShareTypeEnum struct {
	PER   ListPublicipsRequestBandwidthShareType
	WHOLE ListPublicipsRequestBandwidthShareType
}

func GetListPublicipsRequestBandwidthShareTypeEnum

func GetListPublicipsRequestBandwidthShareTypeEnum() ListPublicipsRequestBandwidthShareTypeEnum

type ListPublicipsRequestBillingMode

type ListPublicipsRequestBillingMode struct {
	// contains filtered or unexported fields
}

func (ListPublicipsRequestBillingMode) MarshalJSON

func (c ListPublicipsRequestBillingMode) MarshalJSON() ([]byte, error)

func (*ListPublicipsRequestBillingMode) UnmarshalJSON

func (c *ListPublicipsRequestBillingMode) UnmarshalJSON(b []byte) error

func (ListPublicipsRequestBillingMode) Value

type ListPublicipsRequestBillingModeEnum

type ListPublicipsRequestBillingModeEnum struct {
	YEARLY_MONTHLY ListPublicipsRequestBillingMode
	PAY_PER_USE    ListPublicipsRequestBillingMode
}

func GetListPublicipsRequestBillingModeEnum

func GetListPublicipsRequestBillingModeEnum() ListPublicipsRequestBillingModeEnum

type ListPublicipsRequestIpVersion

type ListPublicipsRequestIpVersion struct {
	// contains filtered or unexported fields
}

func (ListPublicipsRequestIpVersion) MarshalJSON

func (c ListPublicipsRequestIpVersion) MarshalJSON() ([]byte, error)

func (*ListPublicipsRequestIpVersion) UnmarshalJSON

func (c *ListPublicipsRequestIpVersion) UnmarshalJSON(b []byte) error

func (ListPublicipsRequestIpVersion) Value

type ListPublicipsRequestIpVersionEnum

type ListPublicipsRequestIpVersionEnum struct {
	E_4 ListPublicipsRequestIpVersion
	E_6 ListPublicipsRequestIpVersion
}

func GetListPublicipsRequestIpVersionEnum

func GetListPublicipsRequestIpVersionEnum() ListPublicipsRequestIpVersionEnum

type ListPublicipsRequestNetworkType

type ListPublicipsRequestNetworkType struct {
	// contains filtered or unexported fields
}

func (ListPublicipsRequestNetworkType) MarshalJSON

func (c ListPublicipsRequestNetworkType) MarshalJSON() ([]byte, error)

func (*ListPublicipsRequestNetworkType) UnmarshalJSON

func (c *ListPublicipsRequestNetworkType) UnmarshalJSON(b []byte) error

func (ListPublicipsRequestNetworkType) Value

type ListPublicipsRequestSortDir

type ListPublicipsRequestSortDir struct {
	// contains filtered or unexported fields
}

func (ListPublicipsRequestSortDir) MarshalJSON

func (c ListPublicipsRequestSortDir) MarshalJSON() ([]byte, error)

func (*ListPublicipsRequestSortDir) UnmarshalJSON

func (c *ListPublicipsRequestSortDir) UnmarshalJSON(b []byte) error

func (ListPublicipsRequestSortDir) Value

type ListPublicipsRequestSortDirEnum

type ListPublicipsRequestSortDirEnum struct {
	ASC  ListPublicipsRequestSortDir
	DESC ListPublicipsRequestSortDir
}

func GetListPublicipsRequestSortDirEnum

func GetListPublicipsRequestSortDirEnum() ListPublicipsRequestSortDirEnum

type ListPublicipsRequestSortKey

type ListPublicipsRequestSortKey struct {
	// contains filtered or unexported fields
}

func (ListPublicipsRequestSortKey) MarshalJSON

func (c ListPublicipsRequestSortKey) MarshalJSON() ([]byte, error)

func (*ListPublicipsRequestSortKey) UnmarshalJSON

func (c *ListPublicipsRequestSortKey) UnmarshalJSON(b []byte) error

func (ListPublicipsRequestSortKey) Value

type ListPublicipsRequestSortKeyEnum

type ListPublicipsRequestSortKeyEnum struct {
	ID                  ListPublicipsRequestSortKey
	PUBLIC_IP_ADDRESS   ListPublicipsRequestSortKey
	PUBLIC_IPV6_ADDRESS ListPublicipsRequestSortKey
	IP_VERSION          ListPublicipsRequestSortKey
	CREATED_AT          ListPublicipsRequestSortKey
	UPDATED_AT          ListPublicipsRequestSortKey
	PUBLIC_BORDER_GROUP ListPublicipsRequestSortKey
}

func GetListPublicipsRequestSortKeyEnum

func GetListPublicipsRequestSortKeyEnum() ListPublicipsRequestSortKeyEnum

type ListPublicipsRequestStatus

type ListPublicipsRequestStatus struct {
	// contains filtered or unexported fields
}

func (ListPublicipsRequestStatus) MarshalJSON

func (c ListPublicipsRequestStatus) MarshalJSON() ([]byte, error)

func (*ListPublicipsRequestStatus) UnmarshalJSON

func (c *ListPublicipsRequestStatus) UnmarshalJSON(b []byte) error

func (ListPublicipsRequestStatus) Value

type ListPublicipsRequestStatusEnum

type ListPublicipsRequestStatusEnum struct {
	FREEZED ListPublicipsRequestStatus
	DOWN    ListPublicipsRequestStatus
	ACTIVE  ListPublicipsRequestStatus
	ERROR   ListPublicipsRequestStatus
}

func GetListPublicipsRequestStatusEnum

func GetListPublicipsRequestStatusEnum() ListPublicipsRequestStatusEnum

type ListPublicipsRequestType

type ListPublicipsRequestType struct {
	// contains filtered or unexported fields
}

func (ListPublicipsRequestType) MarshalJSON

func (c ListPublicipsRequestType) MarshalJSON() ([]byte, error)

func (*ListPublicipsRequestType) UnmarshalJSON

func (c *ListPublicipsRequestType) UnmarshalJSON(b []byte) error

func (ListPublicipsRequestType) Value

func (c ListPublicipsRequestType) Value() string

type ListPublicipsRequestTypeEnum

type ListPublicipsRequestTypeEnum struct {
	EIP              ListPublicipsRequestType
	DUALSTACK        ListPublicipsRequestType
	DUALSTACK_SUBNET ListPublicipsRequestType
}

func GetListPublicipsRequestTypeEnum

func GetListPublicipsRequestTypeEnum() ListPublicipsRequestTypeEnum

type ListPublicipsResponse

type ListPublicipsResponse struct {

	// 本次请求的编号
	RequestId *string `json:"request_id,omitempty"`

	// 功能说明:弹性公网IP对象
	Publicips *[]PublicipSingleShowResp `json:"publicips,omitempty"`

	PageInfo *PageInfoOption `json:"page_info,omitempty"`

	// 公网IP总条目数
	TotalCount     *int32 `json:"total_count,omitempty"`
	HttpStatusCode int    `json:"-"`
}

ListPublicipsResponse Response Object

func (ListPublicipsResponse) String

func (o ListPublicipsResponse) String() string

type ListShareBandwidthTypesRequest

type ListShareBandwidthTypesRequest struct {

	// 形式为\\\"fields=id&fields=bandwidth_type&...\\\",支持字段:id/bandwidth_type/name_en/name_zh/created_at/update_at/public_border_group/description
	Fields *string `json:"fields,omitempty"`

	// 支持带宽类型的id
	Id *string `json:"id,omitempty"`

	// 带宽支持类型
	BandwidthType *string `json:"bandwidth_type,omitempty"`

	// 带宽类型英文表述
	NameEn *string `json:"name_en,omitempty"`

	// 带宽类型中文表述
	NameZh *string `json:"name_zh,omitempty"`

	// 带宽类型所处位置,中心站点or边缘站点
	PublicBorderGroup *string `json:"public_border_group,omitempty"`

	// 排序,形式为\"sort_key=id&sort_dir=asc\"  支持字段:id/bandwidth_type/public_border_group
	SortKey *string `json:"sort_key,omitempty"`

	// 排序方向  取值范围:asc、desc
	SortDir *string `json:"sort_dir,omitempty"`

	// 每页返回的个数取值范围:0~[2000],其中2000为局点差异项,具体取值由局点决定
	Limit *int32 `json:"limit,omitempty"`

	// 分页查询起始的资源ID,为空时为查询第一页
	Marker *string `json:"marker,omitempty"`

	// 分页查询起始的资源序号
	Offset *int32 `json:"offset,omitempty"`
}

ListShareBandwidthTypesRequest Request Object

func (ListShareBandwidthTypesRequest) String

type ListShareBandwidthTypesResponse

type ListShareBandwidthTypesResponse struct {

	// 功能说明:共享带宽类型对象
	ShareBandwidthTypes *[]ShareBandwidthTypeShowResp `json:"share_bandwidth_types,omitempty"`

	// 本次请求的编号
	RequestId *string `json:"request_id,omitempty"`

	PageInfo       *PageInfoOption `json:"page_info,omitempty"`
	HttpStatusCode int             `json:"-"`
}

ListShareBandwidthTypesResponse Response Object

func (ListShareBandwidthTypesResponse) String

type PageInfoOption

type PageInfoOption struct {

	// 翻页时,作为前一页的marker取值
	PreviousMarker *string `json:"previous_marker,omitempty"`

	// 翻页时,作为后一页的marker取值
	NextMarker *string `json:"next_marker,omitempty"`

	// 当前页的数据总数
	CurrentCount *int32 `json:"current_count,omitempty"`
}

PageInfoOption 分页页码信息

func (PageInfoOption) String

func (o PageInfoOption) String() string

type ProfileInfo

type ProfileInfo struct {

	// 公网IP附属的5_xxx网络(如5_bgp)中的port_id
	LocalNetworkPort *string `json:"local_network_port,omitempty"`

	// 标识公网IP是否是和虚机一起创建的。true-独立创建;false-和虚机一起创建
	Standalone *bool `json:"standalone,omitempty"`

	// 云服务标识公网IP创建进度, EIP服务内部使用。
	NotifyStatus *ProfileInfoNotifyStatus `json:"notify_status,omitempty"`

	// 公网IP创建时间
	CreateTime *string `json:"create_time,omitempty"`

	// 该字段仅仅用于表示eip的bgp类型是否是真实的静态sbgp * 1. 如果为true,则该eip可以切换bgp类型 * 2. 如果为false,则该eip不可以切换bgp类型
	FakeNetworkType *bool `json:"fake_network_type,omitempty"`

	// 标识IP是和哪类资源一起购买的
	CreateSource *ProfileInfoCreateSource `json:"create_source,omitempty"`

	// 标识和公网IP一起购买的ecs的id
	EcsId *string `json:"ecs_id,omitempty"`

	// 公网IP加锁状态, eg:\"POLICE,LOCKED\"。POLICE-公安冻结;LOCKED-普通冻结;普通冻结细分状态:ARREAR-欠费;DELABLE-可删除;
	LockStatus *string `json:"lock_status,omitempty"`

	// 公网IP冻结状态。
	FreezedStatus *ProfileInfoFreezedStatus `json:"freezed_status,omitempty"`

	BandwithInfo *BandwidthInfoResp `json:"bandwith_info,omitempty"`
}

ProfileInfo 公网IP元数据, EIP服务内部使用,不对外开放

func (ProfileInfo) String

func (o ProfileInfo) String() string

type ProfileInfoCreateSource

type ProfileInfoCreateSource struct {
	// contains filtered or unexported fields
}

func (ProfileInfoCreateSource) MarshalJSON

func (c ProfileInfoCreateSource) MarshalJSON() ([]byte, error)

func (*ProfileInfoCreateSource) UnmarshalJSON

func (c *ProfileInfoCreateSource) UnmarshalJSON(b []byte) error

func (ProfileInfoCreateSource) Value

func (c ProfileInfoCreateSource) Value() string

type ProfileInfoCreateSourceEnum

type ProfileInfoCreateSourceEnum struct {
	ECS ProfileInfoCreateSource
}

func GetProfileInfoCreateSourceEnum

func GetProfileInfoCreateSourceEnum() ProfileInfoCreateSourceEnum

type ProfileInfoFreezedStatus

type ProfileInfoFreezedStatus struct {
	// contains filtered or unexported fields
}

func (ProfileInfoFreezedStatus) MarshalJSON

func (c ProfileInfoFreezedStatus) MarshalJSON() ([]byte, error)

func (*ProfileInfoFreezedStatus) UnmarshalJSON

func (c *ProfileInfoFreezedStatus) UnmarshalJSON(b []byte) error

func (ProfileInfoFreezedStatus) Value

func (c ProfileInfoFreezedStatus) Value() string

type ProfileInfoFreezedStatusEnum

type ProfileInfoFreezedStatusEnum struct {
	FREEZED   ProfileInfoFreezedStatus
	UNFREEZED ProfileInfoFreezedStatus
}

func GetProfileInfoFreezedStatusEnum

func GetProfileInfoFreezedStatusEnum() ProfileInfoFreezedStatusEnum

type ProfileInfoNotifyStatus

type ProfileInfoNotifyStatus struct {
	// contains filtered or unexported fields
}

func (ProfileInfoNotifyStatus) MarshalJSON

func (c ProfileInfoNotifyStatus) MarshalJSON() ([]byte, error)

func (*ProfileInfoNotifyStatus) UnmarshalJSON

func (c *ProfileInfoNotifyStatus) UnmarshalJSON(b []byte) error

func (ProfileInfoNotifyStatus) Value

func (c ProfileInfoNotifyStatus) Value() string

type ProfileInfoNotifyStatusEnum

type ProfileInfoNotifyStatusEnum struct {
	PENDING_CREATE ProfileInfoNotifyStatus
	PENDING_UPDATE ProfileInfoNotifyStatus
	NOTIFYING      ProfileInfoNotifyStatus
	NOTIFYED       ProfileInfoNotifyStatus
	NOTIFY_DELETE  ProfileInfoNotifyStatus
}

func GetProfileInfoNotifyStatusEnum

func GetProfileInfoNotifyStatusEnum() ProfileInfoNotifyStatusEnum

type PublicipBandwidthInfo

type PublicipBandwidthInfo struct {

	// 带宽ID
	Id *string `json:"id,omitempty"`

	// 功能描述:带宽大小 取值范围:默认5Mbit/s~2000Mbit/s
	Size *int32 `json:"size,omitempty"`

	// 功能说明:带宽类型,标识是否是共享带宽 取值范围:PER,WHOLE。   PER:独享带宽   WHOLE:共享带宽 约束:其中IPv6暂不支持WHOLE类型带宽。
	ShareType *string `json:"share_type,omitempty"`

	// 功能说明:按流量计费还是按带宽计费 取值范围: bandwidth:按带宽计费 traffic:按流量计费 95peak_plus:按增强型95计费
	ChargeMode *string `json:"charge_mode,omitempty"`

	// 功能说明:带宽名称 取值范围:1-64个字符,支持数字、字母、中文、_(下划线)、-(中划线)、.(点)
	Name *string `json:"name,omitempty"`

	// 功能说明:账单信息。如果billinginfo不为空,说明是包周期的带宽
	BillingInfo *string `json:"billing_info,omitempty"`
}

PublicipBandwidthInfo 公网IP绑定的带宽信息

func (PublicipBandwidthInfo) String

func (o PublicipBandwidthInfo) String() string

type PublicipInfoResponseBody

type PublicipInfoResponseBody struct {

	// - 功能说明:弹性公网IPV4或IPv6的公网地址
	PublicipAddress *string `json:"publicip_address,omitempty"`

	// - 功能说明:带宽对应的弹性公网IPV4或IPv6的唯一标识
	PublicipId *string `json:"publicip_id,omitempty"`

	// - 功能说明:EIP的类型  - [取值范围:5_bgp](tag:hk_g42,g42,hk_sbc,sbc)  - [取值范围:5_chinamobile](tag:cmcc)  - [取值范围:5_bgp(Dynamic BGP)、5_mainbgp(Mail BGP)](tag:dt)  - [取值范围:    - eu-de: 5_bgp(Dynamic BGP)、5_mainbgp(Mail BGP)、5_gray(Dedicated Load Balancer)    - eu-nl: 5_bgp(Dynamic BGP)、5_mainbgp(Mail BGP)](tag:dt_test) - [取值范围:5_bgp(全动态BGP),5_sbgp(静态BGP),5_youxuanbgp(优选BGP)    - 华南-广州:5_bgp、5_sbgp    - 华东-上海一:5_bgp、5_sbgp    - 华东-上海二:5_bgp、5_sbgp    - 华北-北京一:5_bgp、5_sbgp    - 中国-香港:5_bgp、5_youxuanbgp    - 亚太-曼谷:5_bgp    - 亚太-新加坡:5_bgp    - 非洲-约翰内斯堡:5_bgp    - 西南-贵阳一:5_sbgp    - 华北-北京四:5_bgp、5_sbgp    - 拉美-圣地亚哥:5_bgp    - 拉美-圣保罗一:5_bgp    - 拉美-墨西哥城一:5_bgp    - 拉美-布宜诺斯艾利一:5_bgp    - 拉美-利马一:5_bgp    - 拉美-圣地亚哥二: 5_bgp  ](tag:hws,hws_hk)  - 约束:     - 必须是系统具体支持的类型。     - publicip_id为IPv4端口,所以[\"publicip_type\"](tag:cmcc,ctc,dt,dt_test,fcs,fcs_dt,fcs_vm,hws_hk,hws_ocb,ocb,tlf,tm,hk_g42,g42,hk_sbc,sbc)[\"type\"](tag:hws)字段未给定时,默认为[5_bgp](tag:ctc,dt,dt_test,fcs,fcs_dt,fcs_vm,g42,hk_g42,hk_sbc,hws,hws_hk,hws_ocb,mix,ocb,sbc,tlf,tm)[5_chinamobile](tag:cmcc)。
	PublicipType *string `json:"publicip_type,omitempty"`

	// - 功能说明:IPv4时无此字段,IPv6时为申请到的弹性公网IP地址
	Publicipv6Address *string `json:"publicipv6_address,omitempty"`

	// - 功能说明:IP版本信息 - 取值范围:  4:IPv4;  6:IPv6
	IpVersion *PublicipInfoResponseBodyIpVersion `json:"ip_version,omitempty"`
}

PublicipInfoResponseBody PublicipInfo对象

func (PublicipInfoResponseBody) String

func (o PublicipInfoResponseBody) String() string

type PublicipInfoResponseBodyIpVersion

type PublicipInfoResponseBodyIpVersion struct {
	// contains filtered or unexported fields
}

func (PublicipInfoResponseBodyIpVersion) MarshalJSON

func (c PublicipInfoResponseBodyIpVersion) MarshalJSON() ([]byte, error)

func (*PublicipInfoResponseBodyIpVersion) UnmarshalJSON

func (c *PublicipInfoResponseBodyIpVersion) UnmarshalJSON(b []byte) error

func (PublicipInfoResponseBodyIpVersion) Value

type PublicipInfoResponseBodyIpVersionEnum

type PublicipInfoResponseBodyIpVersionEnum struct {
	E_4 PublicipInfoResponseBodyIpVersion
	E_6 PublicipInfoResponseBodyIpVersion
}

func GetPublicipInfoResponseBodyIpVersionEnum

func GetPublicipInfoResponseBodyIpVersionEnum() PublicipInfoResponseBodyIpVersionEnum

type PublicipInstanceResp

type PublicipInstanceResp struct {

	// 功能说明:弹性公网IP唯一标识
	Id *string `json:"id,omitempty"`

	// 功能说明:项目ID
	ProjectId *string `json:"project_id,omitempty"`

	// 功能说明:IP版本信息 取值范围:4表示公网IP地址为public_ip_address地址;6表示公网IP地址为public_ipv6_address地址\"
	IpVersion *PublicipInstanceRespIpVersion `json:"ip_version,omitempty"`

	// 功能说明:弹性公网IP或者IPv6端口的地址
	PublicIpAddress *string `json:"public_ip_address,omitempty"`

	// 功能说明:IPv4时无此字段,IPv6时为申请到的弹性公网IP地址
	PublicIpv6Address *string `json:"public_ipv6_address,omitempty"`

	// 功能说明:弹性公网IP的状态  取值范围:冻结FREEZED,绑定失败BIND_ERROR,绑定中BINDING,释放中PENDING_DELETE, 创建中PENDING_CREATE,创建中NOTIFYING,释放中NOTIFY_DELETE,更新中PENDING_UPDATE, 未绑定DOWN ,绑定ACTIVE,绑定ELB,绑定VPN,失败ERROR。
	Status *PublicipInstanceRespStatus `json:"status,omitempty"`

	// 功能说明:弹性公网IP描述信息 约束:用户以自定义方式标识资源,系统不感知
	Description *string `json:"description,omitempty"`

	// 功能说明:表示中心站点资源或者边缘站点资源 取值范围: center、边缘站点名称 约束:publicip只能绑定该字段相同的资源
	PublicBorderGroup *string `json:"public_border_group,omitempty"`

	// 功能说明:资源创建UTC时间 格式:yyyy-MM-ddTHH:mm:ssZ
	CreatedAt *sdktime.SdkTime `json:"created_at,omitempty"`

	// 功能说明:资源更新UTC时间 格式:yyyy-MM-ddTHH:mm:ssZ
	UpdatedAt *sdktime.SdkTime `json:"updated_at,omitempty"`

	// 功能说明:弹性公网IP类型
	Type *PublicipInstanceRespType `json:"type,omitempty"`

	Vnic *VnicInfo `json:"vnic,omitempty"`

	Bandwidth *PublicipBandwidthInfo `json:"bandwidth,omitempty"`

	// 功能说明:企业项目ID。最大长度36字节,带“-”连字符的UUID格式,或者是字符串“0”。创建弹性公网IP时,给弹性公网IP绑定企业项目ID。
	EnterpriseProjectId *string `json:"enterprise_project_id,omitempty"`

	// 功能说明:公网IP的订单信息 约束:包周期才会有订单信息,按需资源此字段为空
	BillingInfo *string `json:"billing_info,omitempty"`

	// 功能说明:记录公网IP当前的冻结状态 约束:metadata类型,标识欠费冻结、公安冻结 取值范围:police,locked
	LockStatus *string `json:"lock_status,omitempty"`

	// 功能说明:公网IP绑定的实例类型 取值范围:PORT、NATGW、ELB、ELBV1、VPN、null
	AssociateInstanceType *PublicipInstanceRespAssociateInstanceType `json:"associate_instance_type,omitempty"`

	// 功能说明:公网IP绑定的实例ID
	AssociateInstanceId *string `json:"associate_instance_id,omitempty"`

	// 功能说明:公网IP所属网络的ID。publicip_pool_name对应的网络ID
	PublicipPoolId *string `json:"publicip_pool_id,omitempty"`

	// 功能说明:弹性公网IP的网络类型, 包括公共池类型,如5_bgp/5_sbgp...,和用户购买的专属池。 专属池见publcip_pool相关接口
	PublicipPoolName *string `json:"publicip_pool_name,omitempty"`

	// 功能说明:弹性公网IP名称
	Alias *string `json:"alias,omitempty"`
}

PublicipInstanceResp 公网IP字段信息

func (PublicipInstanceResp) String

func (o PublicipInstanceResp) String() string

type PublicipInstanceRespAssociateInstanceType

type PublicipInstanceRespAssociateInstanceType struct {
	// contains filtered or unexported fields
}

func (PublicipInstanceRespAssociateInstanceType) MarshalJSON

func (*PublicipInstanceRespAssociateInstanceType) UnmarshalJSON

func (PublicipInstanceRespAssociateInstanceType) Value

type PublicipInstanceRespIpVersion

type PublicipInstanceRespIpVersion struct {
	// contains filtered or unexported fields
}

func (PublicipInstanceRespIpVersion) MarshalJSON

func (c PublicipInstanceRespIpVersion) MarshalJSON() ([]byte, error)

func (*PublicipInstanceRespIpVersion) UnmarshalJSON

func (c *PublicipInstanceRespIpVersion) UnmarshalJSON(b []byte) error

func (PublicipInstanceRespIpVersion) Value

type PublicipInstanceRespIpVersionEnum

type PublicipInstanceRespIpVersionEnum struct {
	E_4 PublicipInstanceRespIpVersion
	E_6 PublicipInstanceRespIpVersion
}

func GetPublicipInstanceRespIpVersionEnum

func GetPublicipInstanceRespIpVersionEnum() PublicipInstanceRespIpVersionEnum

type PublicipInstanceRespStatus

type PublicipInstanceRespStatus struct {
	// contains filtered or unexported fields
}

func (PublicipInstanceRespStatus) MarshalJSON

func (c PublicipInstanceRespStatus) MarshalJSON() ([]byte, error)

func (*PublicipInstanceRespStatus) UnmarshalJSON

func (c *PublicipInstanceRespStatus) UnmarshalJSON(b []byte) error

func (PublicipInstanceRespStatus) Value

type PublicipInstanceRespType

type PublicipInstanceRespType struct {
	// contains filtered or unexported fields
}

func (PublicipInstanceRespType) MarshalJSON

func (c PublicipInstanceRespType) MarshalJSON() ([]byte, error)

func (*PublicipInstanceRespType) UnmarshalJSON

func (c *PublicipInstanceRespType) UnmarshalJSON(b []byte) error

func (PublicipInstanceRespType) Value

func (c PublicipInstanceRespType) Value() string

type PublicipInstanceRespTypeEnum

type PublicipInstanceRespTypeEnum struct {
	EIP              PublicipInstanceRespType
	DUALSTACK        PublicipInstanceRespType
	DUALSTACK_SUBNET PublicipInstanceRespType
}

func GetPublicipInstanceRespTypeEnum

func GetPublicipInstanceRespTypeEnum() PublicipInstanceRespTypeEnum

type PublicipResp

type PublicipResp struct {

	// - 功能说明:弹性公网IP的唯一标识
	Id *string `json:"id,omitempty"`

	// - 功能说明:项目ID
	ProjectId *string `json:"project_id,omitempty"`

	// - 功能说明: 弹性公网IP版本号 - 取值范围: 4、6   - 4表示公网IP地址为public_ip_address地址   - 6表示公网IP地址为public_ipv6_address地址
	IpVersion *PublicipRespIpVersion `json:"ip_version,omitempty"`

	// - 功能说明: 弹性公网IPv4地址
	PublicIpAddress *string `json:"public_ip_address,omitempty"`

	// - 功能说明: 弹性公网IPv6地址
	PublicIpv6Address *string `json:"public_ipv6_address,omitempty"`

	// - 功能说明:弹性公网IP的状态 - 取值范围:FREEZED,DOWN,ACTIVE,ERROR。   - FREEZED表示弹性公网IP处于冻结状态   - DOWN表示弹性公网IP未绑定实例   - ACTIVE表示弹性公网IP绑定实例,正在使用中   - ERROR表示弹性公网IP状态异常
	Status *PublicipRespStatus `json:"status,omitempty"`

	// - 功能说明:弹性公网IP的描述信息 - 约束:用户以自定义方式标识资源,系统不感知
	Description *string `json:"description,omitempty"`

	// - 功能说明:弹性公网IP的创建时间 - 约束:UTC时间格式(2018-12-25T10:07:24Z)
	CreatedAt *string `json:"created_at,omitempty"`

	// - 功能说明:弹性公网IP最近的更新时间 - 约束:UTC时间格式(2018-12-25T10:09:20Z)
	UpdatedAt *string `json:"updated_at,omitempty"`

	// - 功能说明:弹性公网IP的类型 - 取值范围:EIP,DUALSTACK
	Type *PublicipRespType `json:"type,omitempty"`

	Vnic *VnicResp `json:"vnic,omitempty"`

	Bandwidth *BandwidthResp `json:"bandwidth,omitempty"`

	// - 功能说明:弹性公网IP的企业项目ID
	EnterpriseProjectId *string `json:"enterprise_project_id,omitempty"`

	// - 功能说明:弹性公网IP的订单信息 - 约束:包周期才会有订单信息,按需资源此字段为空
	BillingInfo *string `json:"billing_info,omitempty"`

	// - 功能说明:记录弹性公网IP当前的冻结状态 - 约束:metadata类型,标识欠费冻结、公安冻结
	LockStatus *string `json:"lock_status,omitempty"`

	// - 功能说明:弹性公网IP绑定的实例类型 - 取值范围:PORT、NATGW、ELB、ELBV1、VPN
	AssociateInstanceType *PublicipRespAssociateInstanceType `json:"associate_instance_type,omitempty"`

	// - 功能说明:弹性公网IP绑定的实例ID
	AssociateInstanceId *string `json:"associate_instance_id,omitempty"`

	// - 功能说明:弹性公网IP所属网络的ID。publicip_pool_name对应的网络ID
	PublicipPoolId *string `json:"publicip_pool_id,omitempty"`

	// - 功能说明:弹性公网IP的网络类型, 包括公共池类型,如5_bgp/5_sbgp...,和用户购买的专属池。专属池见publcip_pool相关接口
	PublicipPoolName *string `json:"publicip_pool_name,omitempty"`

	// - 功能说明:弹性公网IP别名
	Alias *string `json:"alias,omitempty"`

	// - 功能说明:中心还是边缘。中心CENTER,边缘为各边缘az名称
	PublicBorderGroup *string `json:"public_border_group,omitempty"`
}

PublicipResp 弹性公网IP对象返回模板

func (PublicipResp) String

func (o PublicipResp) String() string

type PublicipRespAssociateInstanceType

type PublicipRespAssociateInstanceType struct {
	// contains filtered or unexported fields
}

func (PublicipRespAssociateInstanceType) MarshalJSON

func (c PublicipRespAssociateInstanceType) MarshalJSON() ([]byte, error)

func (*PublicipRespAssociateInstanceType) UnmarshalJSON

func (c *PublicipRespAssociateInstanceType) UnmarshalJSON(b []byte) error

func (PublicipRespAssociateInstanceType) Value

type PublicipRespIpVersion

type PublicipRespIpVersion struct {
	// contains filtered or unexported fields
}

func (PublicipRespIpVersion) MarshalJSON

func (c PublicipRespIpVersion) MarshalJSON() ([]byte, error)

func (*PublicipRespIpVersion) UnmarshalJSON

func (c *PublicipRespIpVersion) UnmarshalJSON(b []byte) error

func (PublicipRespIpVersion) Value

func (c PublicipRespIpVersion) Value() int32

type PublicipRespIpVersionEnum

type PublicipRespIpVersionEnum struct {
	E_4 PublicipRespIpVersion
	E_6 PublicipRespIpVersion
}

func GetPublicipRespIpVersionEnum

func GetPublicipRespIpVersionEnum() PublicipRespIpVersionEnum

type PublicipRespStatus

type PublicipRespStatus struct {
	// contains filtered or unexported fields
}

func (PublicipRespStatus) MarshalJSON

func (c PublicipRespStatus) MarshalJSON() ([]byte, error)

func (*PublicipRespStatus) UnmarshalJSON

func (c *PublicipRespStatus) UnmarshalJSON(b []byte) error

func (PublicipRespStatus) Value

func (c PublicipRespStatus) Value() string

type PublicipRespStatusEnum

type PublicipRespStatusEnum struct {
	FREEZED PublicipRespStatus
	DOWN    PublicipRespStatus
	ACTIVE  PublicipRespStatus
	ERROR   PublicipRespStatus
}

func GetPublicipRespStatusEnum

func GetPublicipRespStatusEnum() PublicipRespStatusEnum

type PublicipRespType

type PublicipRespType struct {
	// contains filtered or unexported fields
}

func (PublicipRespType) MarshalJSON

func (c PublicipRespType) MarshalJSON() ([]byte, error)

func (*PublicipRespType) UnmarshalJSON

func (c *PublicipRespType) UnmarshalJSON(b []byte) error

func (PublicipRespType) Value

func (c PublicipRespType) Value() string

type PublicipRespTypeEnum

type PublicipRespTypeEnum struct {
	EIP       PublicipRespType
	DUALSTACK PublicipRespType
}

func GetPublicipRespTypeEnum

func GetPublicipRespTypeEnum() PublicipRespTypeEnum

type PublicipSingleShowResp

type PublicipSingleShowResp struct {

	// 功能说明:弹性公网IP唯一标识
	Id *string `json:"id,omitempty"`

	// 功能说明:项目ID
	ProjectId *string `json:"project_id,omitempty"`

	// 功能说明:IP版本信息 取值范围:4表示公网IP地址为public_ip_address地址;6表示公网IP地址为public_ipv6_address地址\"
	IpVersion *PublicipSingleShowRespIpVersion `json:"ip_version,omitempty"`

	// 功能说明:弹性公网IP或者IPv6端口的地址
	PublicIpAddress *string `json:"public_ip_address,omitempty"`

	// 功能说明:IPv4时无此字段,IPv6时为申请到的弹性公网IP地址
	PublicIpv6Address *string `json:"public_ipv6_address,omitempty"`

	// 废弃,功能由publicip_pool_name继承,默认不显示。功能说明:弹性公网IP的网络类型
	NetworkType *string `json:"network_type,omitempty"`

	// 功能说明:弹性公网IP的状态  取值范围:冻结FREEZED,绑定失败BIND_ERROR,绑定中BINDING,释放中PENDING_DELETE, 创建中PENDING_CREATE,创建中NOTIFYING,释放中NOTIFY_DELETE,更新中PENDING_UPDATE, 未绑定DOWN ,绑定ACTIVE,绑定ELB,绑定VPN,失败ERROR。
	Status *PublicipSingleShowRespStatus `json:"status,omitempty"`

	// 功能说明:弹性公网IP描述信息 约束:用户以自定义方式标识资源,系统不感知
	Description *string `json:"description,omitempty"`

	// 功能说明:表示中心站点资源或者边缘站点资源 取值范围: center、边缘站点名称 约束:publicip只能绑定该字段相同的资源
	PublicBorderGroup *string `json:"public_border_group,omitempty"`

	// 功能说明:资源创建UTC时间 格式:yyyy-MM-ddTHH:mm:ssZ
	CreatedAt *sdktime.SdkTime `json:"created_at,omitempty"`

	// 功能说明:资源更新UTC时间 格式:yyyy-MM-ddTHH:mm:ssZ
	UpdatedAt *sdktime.SdkTime `json:"updated_at,omitempty"`

	// 功能说明:弹性公网IP类型
	Type *PublicipSingleShowRespType `json:"type,omitempty"`

	Vnic *VnicInfo `json:"vnic,omitempty"`

	Bandwidth *PublicipBandwidthInfo `json:"bandwidth,omitempty"`

	// 功能说明:企业项目ID。最大长度36字节,带“-”连字符的UUID格式,或者是字符串“0”。创建弹性公网IP时,给弹性公网IP绑定企业项目ID。
	EnterpriseProjectId *string `json:"enterprise_project_id,omitempty"`

	// 功能说明:公网IP的订单信息 约束:包周期才会有订单信息,按需资源此字段为空
	BillingInfo *string `json:"billing_info,omitempty"`

	// 功能说明:记录公网IP当前的冻结状态 约束:metadata类型,标识欠费冻结、公安冻结 取值范围:police,locked
	LockStatus *string `json:"lock_status,omitempty"`

	// 功能说明:公网IP绑定的实例类型 取值范围:PORT、NATGW、ELB、ELBV1、VPN、null
	AssociateInstanceType *PublicipSingleShowRespAssociateInstanceType `json:"associate_instance_type,omitempty"`

	// 功能说明:公网IP绑定的实例ID
	AssociateInstanceId *string `json:"associate_instance_id,omitempty"`

	// 功能说明:公网IP所属网络的ID。publicip_pool_name对应的网络ID
	PublicipPoolId *string `json:"publicip_pool_id,omitempty"`

	// 功能说明:弹性公网IP的网络类型, 包括公共池类型,如5_bgp/5_sbgp...,和用户购买的专属池。 专属池见publcip_pool相关接口
	PublicipPoolName *string `json:"publicip_pool_name,omitempty"`

	// 功能说明:弹性公网IP名称
	Alias *string `json:"alias,omitempty"`

	Profile *ProfileInfo `json:"profile,omitempty"`

	// 默认不显示。该字段仅仅用于表示eip的bgp类型是否是真实的静态sbgp * 1. 如果为true,则该eip可以切换bgp类型 * 2. 如果为false,则该eip不可以切换bgp类型
	FakeNetworkType *bool `json:"fake_network_type,omitempty"`

	// 默认不显示。用户标签
	Tags *[]string `json:"tags,omitempty"`

	// 默认不显示。记录实例的更上一层归属。例如associate_instance_type为PORT,此字段记录PORT的device_id和device_owner信息。仅有限场景记录。
	AssociateInstanceMetadata *string `json:"associate_instance_metadata,omitempty"`

	// 默认不显示。开启支持直通模式后展示,表示直通模式的标识。
	AssociateMode *string `json:"associate_mode,omitempty"`

	// 功能说明:表示此publicip可以加入的共享带宽类型列表,如果为空列表,则表示该           publicip不能加入任何共享带宽 约束:publicip只能加入到有该带宽类型的共享带宽中
	AllowShareBandwidthTypes *[]string `json:"allow_share_bandwidth_types,omitempty"`

	// 默认不显示。表示该eip是否支持与实例同步删除。
	CascadeDeleteByInstance *bool `json:"cascade_delete_by_instance,omitempty"`
}

PublicipSingleShowResp 公网IP字段信息

func (PublicipSingleShowResp) String

func (o PublicipSingleShowResp) String() string

type PublicipSingleShowRespAssociateInstanceType

type PublicipSingleShowRespAssociateInstanceType struct {
	// contains filtered or unexported fields
}

func (PublicipSingleShowRespAssociateInstanceType) MarshalJSON

func (*PublicipSingleShowRespAssociateInstanceType) UnmarshalJSON

func (PublicipSingleShowRespAssociateInstanceType) Value

type PublicipSingleShowRespIpVersion

type PublicipSingleShowRespIpVersion struct {
	// contains filtered or unexported fields
}

func (PublicipSingleShowRespIpVersion) MarshalJSON

func (c PublicipSingleShowRespIpVersion) MarshalJSON() ([]byte, error)

func (*PublicipSingleShowRespIpVersion) UnmarshalJSON

func (c *PublicipSingleShowRespIpVersion) UnmarshalJSON(b []byte) error

func (PublicipSingleShowRespIpVersion) Value

type PublicipSingleShowRespIpVersionEnum

type PublicipSingleShowRespIpVersionEnum struct {
	E_4 PublicipSingleShowRespIpVersion
	E_6 PublicipSingleShowRespIpVersion
}

func GetPublicipSingleShowRespIpVersionEnum

func GetPublicipSingleShowRespIpVersionEnum() PublicipSingleShowRespIpVersionEnum

type PublicipSingleShowRespStatus

type PublicipSingleShowRespStatus struct {
	// contains filtered or unexported fields
}

func (PublicipSingleShowRespStatus) MarshalJSON

func (c PublicipSingleShowRespStatus) MarshalJSON() ([]byte, error)

func (*PublicipSingleShowRespStatus) UnmarshalJSON

func (c *PublicipSingleShowRespStatus) UnmarshalJSON(b []byte) error

func (PublicipSingleShowRespStatus) Value

type PublicipSingleShowRespType

type PublicipSingleShowRespType struct {
	// contains filtered or unexported fields
}

func (PublicipSingleShowRespType) MarshalJSON

func (c PublicipSingleShowRespType) MarshalJSON() ([]byte, error)

func (*PublicipSingleShowRespType) UnmarshalJSON

func (c *PublicipSingleShowRespType) UnmarshalJSON(b []byte) error

func (PublicipSingleShowRespType) Value

type PublicipSingleShowRespTypeEnum

type PublicipSingleShowRespTypeEnum struct {
	EIP              PublicipSingleShowRespType
	DUALSTACK        PublicipSingleShowRespType
	DUALSTACK_SUBNET PublicipSingleShowRespType
}

func GetPublicipSingleShowRespTypeEnum

func GetPublicipSingleShowRespTypeEnum() PublicipSingleShowRespTypeEnum

type ShareBandwidthTypeShowResp

type ShareBandwidthTypeShowResp struct {

	// 支持带宽类型的id
	Id *string `json:"id,omitempty"`

	// 带宽类型
	BandwidthType *string `json:"bandwidth_type,omitempty"`

	// 中心站点or边缘站点,默认展示
	PublicBorderGroup *string `json:"public_border_group,omitempty"`

	// 创建时间
	CreatedAt *string `json:"created_at,omitempty"`

	// 更新时间
	UpdatedAt *string `json:"updated_at,omitempty"`

	// 带宽类型的英文表述
	NameEn *string `json:"name_en,omitempty"`

	// 带宽类型的中文表述
	NameZh *string `json:"name_zh,omitempty"`

	// 带宽类型描述信息
	Description *string `json:"description,omitempty"`
}

ShareBandwidthTypeShowResp 带宽支持类型对象

func (ShareBandwidthTypeShowResp) String

type ShowPublicipRequest

type ShowPublicipRequest struct {

	// 弹性公网IP的ID
	PublicipId string `json:"publicip_id"`

	// 显示,形式为\"fields=id&fields=owner&...\"  支持字段:id/project_id/ip_version/type/public_ip_address/public_ipv6_address/network_type/status/description/created_at/updated_at/vnic/bandwidth/associate_instance_type/associate_instance_id/lock_status/billing_info/tags/enterprise_project_id/publicip_pool_name/allow_share_bandwidth_types/alias/publicip_pool_id/public_border_group
	Fields *[]string `json:"fields,omitempty"`
}

ShowPublicipRequest Request Object

func (ShowPublicipRequest) String

func (o ShowPublicipRequest) String() string

type ShowPublicipResponse

type ShowPublicipResponse struct {

	// 本次请求的编号
	RequestId *string `json:"request_id,omitempty"`

	Publicip       *PublicipSingleShowResp `json:"publicip,omitempty"`
	HttpStatusCode int                     `json:"-"`
}

ShowPublicipResponse Response Object

func (ShowPublicipResponse) String

func (o ShowPublicipResponse) String() string

type VnicInfo

type VnicInfo struct {

	// 功能说明:私网IP地址
	PrivateIpAddress *string `json:"private_ip_address,omitempty"`

	// 功能说明:端口所属设备ID 约束:不支持设置和更新,由系统自动维护
	DeviceId *string `json:"device_id,omitempty"`

	// 功能说明:设备所属 取值范围:合法设备所属,如network:dhcp、network:VIP_PORT、network:router_interface_distributed、network:router_centralized_snat 约束:不支持设置和更新,由系统自动维护
	DeviceOwner *string `json:"device_owner,omitempty"`

	// 功能说明:虚拟私有云ID
	VpcId *string `json:"vpc_id,omitempty"`

	// 功能说明:端口ID
	PortId *string `json:"port_id,omitempty"`

	// 功能说明:端口profile信息
	PortProfile *string `json:"port_profile,omitempty"`

	// 功能说明:端口MAC地址 约束:由系统分配,不支持指定
	Mac *string `json:"mac,omitempty"`

	// 功能说明:VTEP IP
	Vtep *string `json:"vtep,omitempty"`

	// 功能说明:VXLAN ID
	Vni *string `json:"vni,omitempty"`

	// 功能说明:端口所属实例ID,例如RDS实例ID 约束:不支持设置和更新,由系统自动维护
	InstanceId *string `json:"instance_id,omitempty"`

	// 功能说明:端口所属实例类型,例如“RDS” 约束:不支持设置和更新,由系统自动维护
	InstanceType *string `json:"instance_type,omitempty"`
}

VnicInfo 公网IP中的vnic对象,存储绑定PORT的相关信息

func (VnicInfo) String

func (o VnicInfo) String() string

type VnicResp

type VnicResp struct {

	// - 功能说明:PORT的内网地址
	PrivateIpAddress *string `json:"private_ip_address,omitempty"`

	// - 功能说明:PORT的device_id - 约束:存在PORT时,此字段associate_instance_id相同,都为实例ID
	DeviceId *string `json:"device_id,omitempty"`

	// - 功能说明:PORT的device_owner - 约束:存在PORT时,此字段和associate_instance_type都可区分实例类型
	DeviceOwner *string `json:"device_owner,omitempty"`

	// - 功能说明:PORT所在VPC的ID
	VpcId *string `json:"vpc_id,omitempty"`

	// - 功能说明:PORT的唯一标识
	PortId *string `json:"port_id,omitempty"`

	// - 功能说明:PORT的MAC信息
	Mac *string `json:"mac,omitempty"`

	// - 功能说明:PORT的使用者,不同于device_id的归属者。举例:vip port的device_owner为vip,但是这个port实际使用者可能是虚机或其他
	InstanceId *string `json:"instance_id,omitempty"`

	// - 功能说明:标记PORT使用者,与instance_id组合使用
	InstanceType *string `json:"instance_type,omitempty"`
}

VnicResp 弹性公网IP中的vnic对象,存储绑定PORT的相关信息

func (VnicResp) String

func (o VnicResp) String() string

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL