model

package
v0.0.32-rc Latest Latest
Warning

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

Go to latest
Published: Jan 30, 2021 License: Apache-2.0, BSD-2-Clause, BSD-3-Clause Imports: 5 Imported by: 5

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AcceptVpcPeeringRequest

type AcceptVpcPeeringRequest struct {
	PeeringId string `json:"peering_id"`
}

Request Object

func (AcceptVpcPeeringRequest) String

func (o AcceptVpcPeeringRequest) String() string

type AcceptVpcPeeringResponse

type AcceptVpcPeeringResponse struct {
	// 对等连接ID
	Id *string `json:"id,omitempty"`
	// 功能说明:对等连接名称 取值范围:支持1~64个字符
	Name *string `json:"name,omitempty"`
	// 功能说明:对等连接状态 取值范围: - PENDING_ACCEPTANCE:等待接受 - REJECTED:已拒绝。 - EXPIRED:已过期。 - DELETED:已删除。 - ACTIVE:活动的。
	Status         *AcceptVpcPeeringResponseStatus `json:"status,omitempty"`
	RequestVpcInfo *VpcInfo                        `json:"request_vpc_info,omitempty"`
	AcceptVpcInfo  *VpcInfo                        `json:"accept_vpc_info,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"`
	// 对等连接描述
	Description    *string `json:"description,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (AcceptVpcPeeringResponse) String

func (o AcceptVpcPeeringResponse) String() string

type AcceptVpcPeeringResponseStatus

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

func (AcceptVpcPeeringResponseStatus) MarshalJSON

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

func (*AcceptVpcPeeringResponseStatus) UnmarshalJSON

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

type AllowedAddressPair

type AllowedAddressPair struct {
	// 功能说明:IP地址 取值范围:可以是IP地址或CIDR 约束:不支持0.0.0.0/0如果allowed_address_pairs配置地址池较大的CIDR(掩码小于24位),建议为该port配置一个单独的安全组。
	IpAddress *string `json:"ip_address,omitempty"`
	// mac地址
	MacAddress *string `json:"mac_address,omitempty"`
}

func (AllowedAddressPair) String

func (o AllowedAddressPair) String() string

type CreatePortOption

type CreatePortOption struct {
	// 功能说明:端口名称 取值范围:0~255个字符,支持中文、英文、字母、_(下划线)、-(中划线),默认为空
	Name *string `json:"name,omitempty"`
	// 功能说明:端口所属网络的ID 约束:必须是存在的网络ID
	NetworkId string `json:"network_id"`
	// 功能说明:端口IP 例如:\"fixed_ips\": [{\"subnet_id\": \"4dc70db6-cb7f-4200-9790-a6a910776bba\", \"ip_address\": \"192.169.25.79\"}] 约束:ipv4场景下一个端口只支持一个fixed_ip,且不支持更新
	FixedIps *[]FixedIp `json:"fixed_ips,omitempty"`
	// 功能说明:端口设备所属 取值范围:目前只支持指定\"\"和\"neutron:VIP_PORT\";neutron:VIP_PORT表示创建的是VIP
	DeviceOwner *string `json:"device_owner,omitempty"`
	// 功能说明:安全组的ID列表;例如:\"security_groups\": [\"a0608cbf-d047-4f54-8b28-cd7b59853fff\"] 取值范围:默认值为系统默认安全组
	SecurityGroups *[]string `json:"security_groups,omitempty"`
	// 功能说明:管理状态 取值范围:只支持true,默认为true
	AdminStateUp *bool `json:"admin_state_up,omitempty"`
	// 功能说明:IP/Mac对列表 约束:IP地址不允许为 “0.0.0.0/0” 如果配置的地址池较大(CIDR掩码小于24位),建议为该port配置一个单独的安全组。
	AllowedAddressPairs *[]AllowedAddressPair `json:"allowed_address_pairs,omitempty"`
	// 功能说明:DHCP的扩展Option(扩展属性)
	ExtraDhcpOpts *[]ExtraDhcpOpt `json:"extra_dhcp_opts,omitempty"`
	// 功能说明:端口所属项目ID
	TenantId *string `json:"tenant_id,omitempty"`
}

func (CreatePortOption) String

func (o CreatePortOption) String() string

type CreatePortRequest

type CreatePortRequest struct {
	Body *CreatePortRequestBody `json:"body,omitempty"`
}

Request Object

func (CreatePortRequest) String

func (o CreatePortRequest) String() string

type CreatePortRequestBody

type CreatePortRequestBody struct {
	Port *CreatePortOption `json:"port"`
}

func (CreatePortRequestBody) String

func (o CreatePortRequestBody) String() string

type CreatePortResponse

type CreatePortResponse struct {
	Port           *Port `json:"port,omitempty"`
	HttpStatusCode int   `json:"-"`
}

Response Object

func (CreatePortResponse) String

func (o CreatePortResponse) String() string

type CreatePrivateipOption

type CreatePrivateipOption struct {
	// 分配IP的子网标识
	SubnetId string `json:"subnet_id"`
	// 功能说明:指定IP地址申请 取值范围:子网段中的可以使用且未分配的IP地址,不指定时由系统自动分配
	IpAddress *string `json:"ip_address,omitempty"`
}

func (CreatePrivateipOption) String

func (o CreatePrivateipOption) String() string

type CreatePrivateipRequest

type CreatePrivateipRequest struct {
	Body *CreatePrivateipRequestBody `json:"body,omitempty"`
}

Request Object

func (CreatePrivateipRequest) String

func (o CreatePrivateipRequest) String() string

type CreatePrivateipRequestBody

type CreatePrivateipRequestBody struct {
	// 私有IP列表对象
	Privateips []CreatePrivateipOption `json:"privateips"`
}

func (CreatePrivateipRequestBody) String

type CreatePrivateipResponse

type CreatePrivateipResponse struct {
	// 私有IP列表对象
	Privateips     *[]Privateip `json:"privateips,omitempty"`
	HttpStatusCode int          `json:"-"`
}

Response Object

func (CreatePrivateipResponse) String

func (o CreatePrivateipResponse) String() string

type CreateSecurityGroupOption

type CreateSecurityGroupOption struct {
	// 功能说明:安全组名称 取值范围:1-64个字符,支持数字、字母、中文、_(下划线)、-(中划线)、.(点)
	Name string `json:"name"`
	// 功能说明:安全组所在的vpc的资源标识
	VpcId *string `json:"vpc_id,omitempty"`
	// 功能说明:企业项目ID。创建安全组时,给安全组绑定企业项目ID。 取值范围:最大长度36字节,带“-”连字符的UUID格式,或者是字符串“0”。“0”表示默认企业项目。 默认值:“0”
	EnterpriseProjectId *string `json:"enterprise_project_id,omitempty"`
}

func (CreateSecurityGroupOption) String

func (o CreateSecurityGroupOption) String() string

type CreateSecurityGroupRequest

type CreateSecurityGroupRequest struct {
	Body *CreateSecurityGroupRequestBody `json:"body,omitempty"`
}

Request Object

func (CreateSecurityGroupRequest) String

type CreateSecurityGroupRequestBody

type CreateSecurityGroupRequestBody struct {
	SecurityGroup *CreateSecurityGroupOption `json:"security_group"`
}

func (CreateSecurityGroupRequestBody) String

type CreateSecurityGroupResponse

type CreateSecurityGroupResponse struct {
	SecurityGroup  *SecurityGroup `json:"security_group,omitempty"`
	HttpStatusCode int            `json:"-"`
}

Response Object

func (CreateSecurityGroupResponse) String

type CreateSecurityGroupRuleOption

type CreateSecurityGroupRuleOption struct {
	// 安全组ID
	SecurityGroupId string `json:"security_group_id"`
	// 功能说明:安全组规则描述 取值范围:0-255个字符,支持数字、字母、中文字符
	Description *string `json:"description,omitempty"`
	// 功能说明:出入控制方向 取值范围: - egress:出方向 - ingress:入方向
	Direction string `json:"direction"`
	// 功能说明:IP地址协议类型 取值范围:IPv4,IPv6 约束:默认值为IPv4
	Ethertype *string `json:"ethertype,omitempty"`
	// 功能说明:协议类型 取值范围:tcp、udp、icmp或IP协议编号(0~255) 约束:为空表示支持所有协议
	Protocol *string `json:"protocol,omitempty"`
	// 功能说明:起始端口值 取值范围:1~65535 约束:不能大于port_range_max的值,为空表示所有端口,如果协议是icmp类型,取值范围请参见 [安全组规则icmp协议名称对应关系表](https://support.huaweicloud.com/api-vpc/vpc_api_0009.html)
	PortRangeMin *int32 `json:"port_range_min,omitempty"`
	// 功能说明:结束端口值 取值范围:1~65535 约束:协议不为icmp时,取值不能小于port_range_min的值,为空表示所有端口,如果协议是icmp类型,取值范围请参见 [安全组规则icmp协议名称对应关系表](https://support.huaweicloud.com/api-vpc/vpc_api_0009.html)
	PortRangeMax *int32 `json:"port_range_max,omitempty"`
	// 功能说明:远端IP地址,当direction是egress时为虚拟机访问端的地址,当direction是ingress时为访问虚拟机的地址 取值范围:IP地址,或者cidr格式 约束:和remote_group_id互斥
	RemoteIpPrefix *string `json:"remote_ip_prefix,omitempty"`
	// 功能说明:对端安全组ID 约束:和remote_ip_prefix互斥
	RemoteGroupId *string `json:"remote_group_id,omitempty"`
}

func (CreateSecurityGroupRuleOption) String

type CreateSecurityGroupRuleRequest

type CreateSecurityGroupRuleRequest struct {
	Body *CreateSecurityGroupRuleRequestBody `json:"body,omitempty"`
}

Request Object

func (CreateSecurityGroupRuleRequest) String

type CreateSecurityGroupRuleRequestBody

type CreateSecurityGroupRuleRequestBody struct {
	SecurityGroupRule *CreateSecurityGroupRuleOption `json:"security_group_rule"`
}

func (CreateSecurityGroupRuleRequestBody) String

type CreateSecurityGroupRuleResponse

type CreateSecurityGroupRuleResponse struct {
	SecurityGroupRule *SecurityGroupRule `json:"security_group_rule,omitempty"`
	HttpStatusCode    int                `json:"-"`
}

Response Object

func (CreateSecurityGroupRuleResponse) String

type CreateSubnetOption

type CreateSubnetOption struct {
	// 功能说明:子网名称 取值范围:1-64个字符,支持数字、字母、中文、_(下划线)、-(中划线)、.(点)
	Name string `json:"name"`
	// 功能说明:子网描述 取值范围:0-255个字符,不能包含“<”和“>”。
	Description *string `json:"description,omitempty"`
	// 功能说明:子网的网段 取值范围:必须在vpc对应cidr范围内 约束:必须是cidr格式。掩码长度不能大于28
	Cidr string `json:"cidr"`
	// 子网所在VPC标识
	VpcId string `json:"vpc_id"`
	// 功能说明:子网的网关 取值范围:子网网段中的IP地址 约束:必须是ip格式
	GatewayIp string `json:"gateway_ip"`
	// 功能说明:是否创建cidr_v6 取值范围:true(开启),false(关闭) 约束:不填时默认为false > 说明 该参数目前仅在“华北-北京四”区域开放,且申请IPv6公测后才可设置。
	Ipv6Enable *bool `json:"ipv6_enable,omitempty"`
	// 功能说明:子网是否开启dhcp功能 取值范围:true(开启),false(关闭) 约束:不填时默认为true。当设置为false时,会导致新创建的ECS无法获取IP地址,cloudinit无法注入账号密码,请谨慎操作。
	DhcpEnable *bool `json:"dhcp_enable,omitempty"`
	// 功能说明:子网dns服务器地址1 约束:ip格式,不支持IPv6地址 默认值:不填时为空 [内网DNS地址请参见](https://support.huaweicloud.com/dns_faq/dns_faq_002.html) [通过API获取请参见](https://support.huaweicloud.com/api-dns/dns_api_69001.html)
	PrimaryDns *string `json:"primary_dns,omitempty"`
	// 功能说明:子网dns服务器地址2 约束:ip格式,不支持IPv6地址 默认值:不填时为空 [内网DNS地址请参见](https://support.huaweicloud.com/dns_faq/dns_faq_002.html) [通过API获取请参见](https://support.huaweicloud.com/api-dns/dns_api_69001.html)
	SecondaryDns *string `json:"secondary_dns,omitempty"`
	// 功能说明:子网dns服务器地址的集合;如果想使用两个以上dns服务器,请使用该字段 约束:是子网dns服务器地址1跟子网dns服务器地址2的合集的父集,不支持IPv6地址。 默认值:不填时为空,无法使用云内网DNS功能 [内网DNS地址请参见](https://support.huaweicloud.com/dns_faq/dns_faq_002.html) [通过API获取请参见](https://support.huaweicloud.com/api-dns/dns_api_69001.html)
	DnsList *[]string `json:"dnsList,omitempty"`
	// 功能说明:子网所在的可用分区标识 约束:系统存在的可用分区标识
	AvailabilityZone *string `json:"availability_zone,omitempty"`
	// 子网配置的NTP地址
	ExtraDhcpOpts *[]ExtraDhcpOption `json:"extra_dhcp_opts,omitempty"`
}

func (CreateSubnetOption) String

func (o CreateSubnetOption) String() string

type CreateSubnetRequest

type CreateSubnetRequest struct {
	Body *CreateSubnetRequestBody `json:"body,omitempty"`
}

Request Object

func (CreateSubnetRequest) String

func (o CreateSubnetRequest) String() string

type CreateSubnetRequestBody

type CreateSubnetRequestBody struct {
	Subnet *CreateSubnetOption `json:"subnet"`
}

创建子网对象

func (CreateSubnetRequestBody) String

func (o CreateSubnetRequestBody) String() string

type CreateSubnetResponse

type CreateSubnetResponse struct {
	Subnet         *Subnet `json:"subnet,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (CreateSubnetResponse) String

func (o CreateSubnetResponse) String() string

type CreateVpcOption

type CreateVpcOption struct {
	// 功能说明:虚拟私有云下可用子网的范围 取值范围: - 10.0.0.0/8 ~ 10.255.255.240/28 - 172.16.0.0/12 ~ 172.31.255.240/28 - 192.168.0.0/16 ~ 192.168.255.240/28 约束:必须是ipv4 cidr格式,例如:192.168.0.0/16
	Cidr *string `json:"cidr,omitempty"`
	// 功能说明:虚拟私有云名称 取值范围:0-64个字符,支持数字、字母、中文、_(下划线)、-(中划线)、.(点) 约束:如果名称不为空,则同一个租户下的名称不能重复
	Name *string `json:"name,omitempty"`
	// 功能说明:虚拟私有云的描述 取值范围:0-255个字符,不能包含“<”和“>”。
	Description *string `json:"description,omitempty"`
	// 功能说明:企业项目ID。创建虚拟私有云时,给虚拟私有云绑定企业项目ID。 取值范围:最大长度36字节,带“-”连字符的UUID格式,或者是字符串“0”。“0”表示默认企业项目。 默认值:\"0\"
	EnterpriseProjectId *string `json:"enterprise_project_id,omitempty"`
}

vpc对象

func (CreateVpcOption) String

func (o CreateVpcOption) String() string

type CreateVpcPeeringOption

type CreateVpcPeeringOption struct {
	// 功能说明:对等连接名称 取值范围:支持1~64个字符
	Name           string   `json:"name"`
	RequestVpcInfo *VpcInfo `json:"request_vpc_info"`
	AcceptVpcInfo  *VpcInfo `json:"accept_vpc_info"`
}

peering对象

func (CreateVpcPeeringOption) String

func (o CreateVpcPeeringOption) String() string

type CreateVpcPeeringRequest

type CreateVpcPeeringRequest struct {
	Body *CreateVpcPeeringRequestBody `json:"body,omitempty"`
}

Request Object

func (CreateVpcPeeringRequest) String

func (o CreateVpcPeeringRequest) String() string

type CreateVpcPeeringRequestBody

type CreateVpcPeeringRequestBody struct {
	Peering *CreateVpcPeeringOption `json:"peering"`
}

func (CreateVpcPeeringRequestBody) String

type CreateVpcPeeringResponse

type CreateVpcPeeringResponse struct {
	Peering        *VpcPeering `json:"peering,omitempty"`
	HttpStatusCode int         `json:"-"`
}

Response Object

func (CreateVpcPeeringResponse) String

func (o CreateVpcPeeringResponse) String() string

type CreateVpcRequest

type CreateVpcRequest struct {
	Body *CreateVpcRequestBody `json:"body,omitempty"`
}

Request Object

func (CreateVpcRequest) String

func (o CreateVpcRequest) String() string

type CreateVpcRequestBody

type CreateVpcRequestBody struct {
	Vpc *CreateVpcOption `json:"vpc"`
}

func (CreateVpcRequestBody) String

func (o CreateVpcRequestBody) String() string

type CreateVpcResponse

type CreateVpcResponse struct {
	Vpc            *Vpc `json:"vpc,omitempty"`
	HttpStatusCode int  `json:"-"`
}

Response Object

func (CreateVpcResponse) String

func (o CreateVpcResponse) String() string

type CreateVpcRouteOption

type CreateVpcRouteOption struct {
	// 路由目的地址CIDR,如192.168.200.0/24。
	Destination string `json:"destination"`
	// 功能说明:路由下一跳  取值范围:如果type为peering类型,则nexthop为peering的ID
	Nexthop string `json:"nexthop"`
	// 功能说明:路由类型  取值范围:peering
	Type CreateVpcRouteOptionType `json:"type"`
	// 请求添加路由的VPC ID
	VpcId string `json:"vpc_id"`
}

func (CreateVpcRouteOption) String

func (o CreateVpcRouteOption) String() string

type CreateVpcRouteOptionType

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

func (CreateVpcRouteOptionType) MarshalJSON

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

func (*CreateVpcRouteOptionType) UnmarshalJSON

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

type CreateVpcRouteOptionTypeEnum

type CreateVpcRouteOptionTypeEnum struct {
	PEERING CreateVpcRouteOptionType
}

func GetCreateVpcRouteOptionTypeEnum

func GetCreateVpcRouteOptionTypeEnum() CreateVpcRouteOptionTypeEnum

type CreateVpcRouteRequest

type CreateVpcRouteRequest struct {
	Body *CreateVpcRouteRequestBody `json:"body,omitempty"`
}

Request Object

func (CreateVpcRouteRequest) String

func (o CreateVpcRouteRequest) String() string

type CreateVpcRouteRequestBody

type CreateVpcRouteRequestBody struct {
	Route *CreateVpcRouteOption `json:"route"`
}

func (CreateVpcRouteRequestBody) String

func (o CreateVpcRouteRequestBody) String() string

type CreateVpcRouteResponse

type CreateVpcRouteResponse struct {
	Route          *VpcRoute `json:"route,omitempty"`
	HttpStatusCode int       `json:"-"`
}

Response Object

func (CreateVpcRouteResponse) String

func (o CreateVpcRouteResponse) String() string

type DeletePortRequest

type DeletePortRequest struct {
	PortId string `json:"port_id"`
}

Request Object

func (DeletePortRequest) String

func (o DeletePortRequest) String() string

type DeletePortResponse

type DeletePortResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (DeletePortResponse) String

func (o DeletePortResponse) String() string

type DeletePrivateipRequest

type DeletePrivateipRequest struct {
	PrivateipId string `json:"privateip_id"`
}

Request Object

func (DeletePrivateipRequest) String

func (o DeletePrivateipRequest) String() string

type DeletePrivateipResponse

type DeletePrivateipResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (DeletePrivateipResponse) String

func (o DeletePrivateipResponse) String() string

type DeleteSecurityGroupRequest

type DeleteSecurityGroupRequest struct {
	SecurityGroupId string `json:"security_group_id"`
}

Request Object

func (DeleteSecurityGroupRequest) String

type DeleteSecurityGroupResponse

type DeleteSecurityGroupResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (DeleteSecurityGroupResponse) String

type DeleteSecurityGroupRuleRequest

type DeleteSecurityGroupRuleRequest struct {
	SecurityGroupRuleId string `json:"security_group_rule_id"`
}

Request Object

func (DeleteSecurityGroupRuleRequest) String

type DeleteSecurityGroupRuleResponse

type DeleteSecurityGroupRuleResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (DeleteSecurityGroupRuleResponse) String

type DeleteSubnetRequest

type DeleteSubnetRequest struct {
	VpcId    string `json:"vpc_id"`
	SubnetId string `json:"subnet_id"`
}

Request Object

func (DeleteSubnetRequest) String

func (o DeleteSubnetRequest) String() string

type DeleteSubnetResponse

type DeleteSubnetResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (DeleteSubnetResponse) String

func (o DeleteSubnetResponse) String() string

type DeleteVpcPeeringRequest

type DeleteVpcPeeringRequest struct {
	PeeringId string `json:"peering_id"`
}

Request Object

func (DeleteVpcPeeringRequest) String

func (o DeleteVpcPeeringRequest) String() string

type DeleteVpcPeeringResponse

type DeleteVpcPeeringResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (DeleteVpcPeeringResponse) String

func (o DeleteVpcPeeringResponse) String() string

type DeleteVpcRequest

type DeleteVpcRequest struct {
	VpcId string `json:"vpc_id"`
}

Request Object

func (DeleteVpcRequest) String

func (o DeleteVpcRequest) String() string

type DeleteVpcResponse

type DeleteVpcResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (DeleteVpcResponse) String

func (o DeleteVpcResponse) String() string

type DeleteVpcRouteRequest

type DeleteVpcRouteRequest struct {
	RouteId string `json:"route_id"`
}

Request Object

func (DeleteVpcRouteRequest) String

func (o DeleteVpcRouteRequest) String() string

type DeleteVpcRouteResponse

type DeleteVpcRouteResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (DeleteVpcRouteResponse) String

func (o DeleteVpcRouteResponse) String() string

type DnsAssignMent

type DnsAssignMent struct {
	// 端口hostname
	Hostname *string `json:"hostname,omitempty"`
	// 端口IP地址
	IpAddress *string `json:"ip_address,omitempty"`
	// 端口内网fqdn
	Fqdn *string `json:"fqdn,omitempty"`
}

func (DnsAssignMent) String

func (o DnsAssignMent) String() string

type ExtraDhcpOpt

type ExtraDhcpOpt struct {
	// Option名称
	OptName *string `json:"opt_name,omitempty"`
	// Option值
	OptValue *string `json:"opt_value,omitempty"`
}

func (ExtraDhcpOpt) String

func (o ExtraDhcpOpt) String() string

type ExtraDhcpOption

type ExtraDhcpOption struct {
	// 功能说明:子网配置的NTP地址名称 约束:目前只支持字段“ntp”
	OptName ExtraDhcpOptionOptName `json:"opt_name"`
	// 功能说明:子网配置的NTP地址 约束:目前只支持IPv4地址,每个IP地址以逗号隔开,IP地址个数不能超过4个,不能存在相同地址。该字段为null表示取消该子网NTP的设置,不能为””(空字符串)。
	OptValue *string `json:"opt_value,omitempty"`
}

子网配置的NTP地址对象

func (ExtraDhcpOption) String

func (o ExtraDhcpOption) String() string

type ExtraDhcpOptionOptName

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

func (ExtraDhcpOptionOptName) MarshalJSON

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

func (*ExtraDhcpOptionOptName) UnmarshalJSON

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

type ExtraDhcpOptionOptNameEnum

type ExtraDhcpOptionOptNameEnum struct {
	NTP ExtraDhcpOptionOptName
}

func GetExtraDhcpOptionOptNameEnum

func GetExtraDhcpOptionOptNameEnum() ExtraDhcpOptionOptNameEnum

type FixedIp

type FixedIp struct {
	// 功能说明:端口IP地址,如果同时指定子网ID和IP地址,会尝试将该子网上的IP地址分配给该端口。 如果仅指定子网ID,会将该子网中的可用IP分配给该端口。 如果仅指定IP地址,会尝试分配IP地址(如果该地址是指定网络上任何子网的有效IP)
	IpAddress *string `json:"ip_address,omitempty"`
	// 功能说明:端口所属子网ID,如果同时指定子网ID和IP地址,会尝试将该子网上的IP地址分配给该端口。 如果仅指定子网ID,会将该子网中的可用IP分配给该端口。 如果仅指定IP地址,会尝试分配IP地址(如果该地址是指定网络上任何子网的有效IP)
	SubnetId *string `json:"subnet_id,omitempty"`
}

func (FixedIp) String

func (o FixedIp) String() string

type ListPortsRequest

type ListPortsRequest struct {
	Name                *string                      `json:"name,omitempty"`
	Id                  *string                      `json:"id,omitempty"`
	Limit               *int32                       `json:"limit,omitempty"`
	AdminStateUp        *bool                        `json:"admin_state_up,omitempty"`
	NetworkId           *string                      `json:"network_id,omitempty"`
	MacAddress          *string                      `json:"mac_address,omitempty"`
	DeviceId            *string                      `json:"device_id,omitempty"`
	DeviceOwner         *ListPortsRequestDeviceOwner `json:"device_owner,omitempty"`
	Status              *ListPortsRequestStatus      `json:"status,omitempty"`
	Marker              *string                      `json:"marker,omitempty"`
	FixedIps            *string                      `json:"fixed_ips,omitempty"`
	EnterpriseProjectId *string                      `json:"enterprise_project_id,omitempty"`
	ZoneId              *string                      `json:"zone_id,omitempty"`
}

Request Object

func (ListPortsRequest) String

func (o ListPortsRequest) String() string

type ListPortsRequestDeviceOwner

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

func (ListPortsRequestDeviceOwner) MarshalJSON

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

func (*ListPortsRequestDeviceOwner) UnmarshalJSON

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

type ListPortsRequestDeviceOwnerEnum

type ListPortsRequestDeviceOwnerEnum struct {
	NETWORKDHCP                         ListPortsRequestDeviceOwner
	NETWORKVIP_PORT                     ListPortsRequestDeviceOwner
	NETWORKROUTER_INTERFACE_DISTRIBUTED ListPortsRequestDeviceOwner
	NETWORKROUTER_CENTRALIZED_SNAT      ListPortsRequestDeviceOwner
}

func GetListPortsRequestDeviceOwnerEnum

func GetListPortsRequestDeviceOwnerEnum() ListPortsRequestDeviceOwnerEnum

type ListPortsRequestStatus

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

func (ListPortsRequestStatus) MarshalJSON

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

func (*ListPortsRequestStatus) UnmarshalJSON

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

type ListPortsRequestStatusEnum

type ListPortsRequestStatusEnum struct {
	ACTIVE ListPortsRequestStatus
	BUILD  ListPortsRequestStatus
	DOWN   ListPortsRequestStatus
}

func GetListPortsRequestStatusEnum

func GetListPortsRequestStatusEnum() ListPortsRequestStatusEnum

type ListPortsResponse

type ListPortsResponse struct {
	// port列表对象
	Ports          *[]Port `json:"ports,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ListPortsResponse) String

func (o ListPortsResponse) String() string

type ListPrivateipsRequest

type ListPrivateipsRequest struct {
	SubnetId string  `json:"subnet_id"`
	Limit    *int32  `json:"limit,omitempty"`
	Marker   *string `json:"marker,omitempty"`
}

Request Object

func (ListPrivateipsRequest) String

func (o ListPrivateipsRequest) String() string

type ListPrivateipsResponse

type ListPrivateipsResponse struct {
	// 私有IP列表对象
	Privateips     *[]Privateip `json:"privateips,omitempty"`
	HttpStatusCode int          `json:"-"`
}

Response Object

func (ListPrivateipsResponse) String

func (o ListPrivateipsResponse) String() string

type ListSecurityGroupRulesRequest

type ListSecurityGroupRulesRequest struct {
	Marker          *string `json:"marker,omitempty"`
	Limit           *int32  `json:"limit,omitempty"`
	SecurityGroupId *string `json:"security_group_id,omitempty"`
}

Request Object

func (ListSecurityGroupRulesRequest) String

type ListSecurityGroupRulesResponse

type ListSecurityGroupRulesResponse struct {
	// 安全组规则对象列表
	SecurityGroupRules *[]SecurityGroupRule `json:"security_group_rules,omitempty"`
	HttpStatusCode     int                  `json:"-"`
}

Response Object

func (ListSecurityGroupRulesResponse) String

type ListSecurityGroupsRequest

type ListSecurityGroupsRequest struct {
	Limit               *int32  `json:"limit,omitempty"`
	Marker              *string `json:"marker,omitempty"`
	VpcId               *string `json:"vpc_id,omitempty"`
	EnterpriseProjectId *string `json:"enterprise_project_id,omitempty"`
}

Request Object

func (ListSecurityGroupsRequest) String

func (o ListSecurityGroupsRequest) String() string

type ListSecurityGroupsResponse

type ListSecurityGroupsResponse struct {
	// 安全组列表对象
	SecurityGroups *[]SecurityGroup `json:"security_groups,omitempty"`
	HttpStatusCode int              `json:"-"`
}

Response Object

func (ListSecurityGroupsResponse) String

type ListSubnetsRequest

type ListSubnetsRequest struct {
	Limit  *int32  `json:"limit,omitempty"`
	Marker *string `json:"marker,omitempty"`
	VpcId  *string `json:"vpc_id,omitempty"`
	Scope  *string `json:"scope,omitempty"`
}

Request Object

func (ListSubnetsRequest) String

func (o ListSubnetsRequest) String() string

type ListSubnetsResponse

type ListSubnetsResponse struct {
	// subnet对象列表
	Subnets        *[]Subnet `json:"subnets,omitempty"`
	HttpStatusCode int       `json:"-"`
}

Response Object

func (ListSubnetsResponse) String

func (o ListSubnetsResponse) String() string

type ListVpcPeeringsRequest

type ListVpcPeeringsRequest struct {
	Limit    *int32                        `json:"limit,omitempty"`
	Marker   *string                       `json:"marker,omitempty"`
	Id       *string                       `json:"id,omitempty"`
	Name     *string                       `json:"name,omitempty"`
	Status   *ListVpcPeeringsRequestStatus `json:"status,omitempty"`
	TenantId *string                       `json:"tenant_id,omitempty"`
	VpcId    *string                       `json:"vpc_id,omitempty"`
}

Request Object

func (ListVpcPeeringsRequest) String

func (o ListVpcPeeringsRequest) String() string

type ListVpcPeeringsRequestStatus

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

func (ListVpcPeeringsRequestStatus) MarshalJSON

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

func (*ListVpcPeeringsRequestStatus) UnmarshalJSON

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

type ListVpcPeeringsRequestStatusEnum

type ListVpcPeeringsRequestStatusEnum struct {
	PENDING_ACCEPTANCE ListVpcPeeringsRequestStatus
	REJECTED           ListVpcPeeringsRequestStatus
	EXPIRED            ListVpcPeeringsRequestStatus
	DELETED            ListVpcPeeringsRequestStatus
	ACTIVE             ListVpcPeeringsRequestStatus
}

func GetListVpcPeeringsRequestStatusEnum

func GetListVpcPeeringsRequestStatusEnum() ListVpcPeeringsRequestStatusEnum

type ListVpcPeeringsResponse

type ListVpcPeeringsResponse struct {
	// peering对象列表
	Peerings *[]VpcPeering `json:"peerings,omitempty"`
	// 分页信息
	PeeringsLinks  *[]NeutronPageLink `json:"peerings_links,omitempty"`
	HttpStatusCode int                `json:"-"`
}

Response Object

func (ListVpcPeeringsResponse) String

func (o ListVpcPeeringsResponse) String() string

type ListVpcRoutesRequest

type ListVpcRoutesRequest struct {
	Limit       *int32                    `json:"limit,omitempty"`
	Marker      *string                   `json:"marker,omitempty"`
	Id          *string                   `json:"id,omitempty"`
	Type        *ListVpcRoutesRequestType `json:"type,omitempty"`
	VpcId       *string                   `json:"vpc_id,omitempty"`
	Destination *string                   `json:"destination,omitempty"`
	TenantId    *string                   `json:"tenant_id,omitempty"`
}

Request Object

func (ListVpcRoutesRequest) String

func (o ListVpcRoutesRequest) String() string

type ListVpcRoutesRequestType

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

func (ListVpcRoutesRequestType) MarshalJSON

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

func (*ListVpcRoutesRequestType) UnmarshalJSON

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

type ListVpcRoutesRequestTypeEnum

type ListVpcRoutesRequestTypeEnum struct {
	PEERING ListVpcRoutesRequestType
}

func GetListVpcRoutesRequestTypeEnum

func GetListVpcRoutesRequestTypeEnum() ListVpcRoutesRequestTypeEnum

type ListVpcRoutesResponse

type ListVpcRoutesResponse struct {
	// route对象列表
	Routes *[]VpcRoute `json:"routes,omitempty"`
	// 分页信息
	RoutesLinks    *[]NeutronPageLink `json:"routes_links,omitempty"`
	HttpStatusCode int                `json:"-"`
}

Response Object

func (ListVpcRoutesResponse) String

func (o ListVpcRoutesResponse) String() string

type ListVpcsRequest

type ListVpcsRequest struct {
	Limit               *int32  `json:"limit,omitempty"`
	Marker              *string `json:"marker,omitempty"`
	Id                  *string `json:"id,omitempty"`
	EnterpriseProjectId *string `json:"enterprise_project_id,omitempty"`
}

Request Object

func (ListVpcsRequest) String

func (o ListVpcsRequest) String() string

type ListVpcsResponse

type ListVpcsResponse struct {
	// vpc对象列表
	Vpcs           *[]Vpc `json:"vpcs,omitempty"`
	HttpStatusCode int    `json:"-"`
}

Response Object

func (ListVpcsResponse) String

func (o ListVpcsResponse) String() string

type NetworkIpAvailability

type NetworkIpAvailability struct {
	// 网络ID
	NetworkId string `json:"network_id"`
	// 网络名称
	NetworkName string `json:"network_name"`
	// 项目ID
	TenantId string `json:"tenant_id"`
	// 网络中IP总数(不包含系统预留地址)
	TotalIps int32 `json:"total_ips"`
	// 网络中已经使用的IP数目(不包含系统预留地址)
	UsedIps int32 `json:"used_ips"`
	// 子网IP使用情况的对象
	SubnetIpAvailability []SubnetIpAvailability `json:"subnet_ip_availability"`
}

func (NetworkIpAvailability) String

func (o NetworkIpAvailability) String() string

type NeutronAddFirewallRuleRequest

type NeutronAddFirewallRuleRequest struct {
	FirewallPolicyId string                                `json:"firewall_policy_id"`
	Body             *NeutronInsertFirewallRuleRequestBody `json:"body,omitempty"`
}

Request Object

func (NeutronAddFirewallRuleRequest) String

type NeutronAddFirewallRuleResponse

type NeutronAddFirewallRuleResponse struct {
	// 功能说明:网络ACL策略ID
	Id *string `json:"id,omitempty"`
	// 功能说明:网络ACL策略名称
	Name *string `json:"name,omitempty"`
	// 功能说明:网络ACL策略的描述信息 取值范围:0-255个字符
	Description *string `json:"description,omitempty"`
	// 功能说明:网络ACL策略关联的规则的ID列表
	FirewallRules *[]string `json:"firewall_rules,omitempty"`
	// 功能说明:每次policy或者它相关的rule有变动,该参数将会被置为False
	Audited *bool `json:"audited,omitempty"`
	// 功能说明:网络ACL策略是否对其他网络ACL策略可见 取值范围:true(可见)、false(不可见)
	Public *bool `json:"public,omitempty"`
	// 功能说明:网络ACL策略所属项目ID
	TenantId *string `json:"tenant_id,omitempty"`
	// 功能说明:网络ACL策略所属项目ID
	ProjectId      *string `json:"project_id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (NeutronAddFirewallRuleResponse) String

type NeutronCreateFirewallGroupOption

type NeutronCreateFirewallGroupOption struct {
	// 功能说明:网络ACL组名称 取值范围:0-255个字符
	Name *string `json:"name,omitempty"`
	// 功能说明:网络ACL防火墙组描述 取值范围:最长255个字符
	Description *string `json:"description,omitempty"`
	// 功能说明:入方向网络ACL策略
	IngressFirewallPolicyId *string `json:"ingress_firewall_policy_id,omitempty"`
	// 功能说明:出方向网络ACL策略
	EgressFirewallPolicyId *string `json:"egress_firewall_policy_id,omitempty"`
	// 功能说明:网络ACL防火墙组绑定的端口列表 约束:必须为分布式router的端口id
	Ports *[]string `json:"ports,omitempty"`
	// 功能说明:网络ACL是否受管理员控制
	AdminStateUp *bool `json:"admin_state_up,omitempty"`
}

func (NeutronCreateFirewallGroupOption) String

type NeutronCreateFirewallGroupRequest

type NeutronCreateFirewallGroupRequest struct {
	Body *NeutronCreateFirewallGroupRequestBody `json:"body,omitempty"`
}

Request Object

func (NeutronCreateFirewallGroupRequest) String

type NeutronCreateFirewallGroupRequestBody

type NeutronCreateFirewallGroupRequestBody struct {
	FirewallGroup *NeutronCreateFirewallGroupOption `json:"firewall_group"`
}

func (NeutronCreateFirewallGroupRequestBody) String

type NeutronCreateFirewallGroupResponse

type NeutronCreateFirewallGroupResponse struct {
	FirewallGroup  *NeutronFirewallGroup `json:"firewall_group,omitempty"`
	HttpStatusCode int                   `json:"-"`
}

Response Object

func (NeutronCreateFirewallGroupResponse) String

type NeutronCreateFirewallPolicyOption

type NeutronCreateFirewallPolicyOption struct {
	// 审计标记。
	Audited *bool `json:"audited,omitempty"`
	// 功能说明:网络ACL防火墙策略描述 取值范围:最长255个字符
	Description *string `json:"description,omitempty"`
	// 策略引用的网络ACL防火墙规则链。
	FirewallRules *[]string `json:"firewall_rules,omitempty"`
	// 功能说明:网络ACL防火墙策略名称 取值范围:最长255个字符
	Name *string `json:"name,omitempty"`
}

func (NeutronCreateFirewallPolicyOption) String

type NeutronCreateFirewallPolicyRequest

type NeutronCreateFirewallPolicyRequest struct {
	Body *NeutronCreateFirewallPolicyRequestBody `json:"body,omitempty"`
}

Request Object

func (NeutronCreateFirewallPolicyRequest) String

type NeutronCreateFirewallPolicyRequestBody

type NeutronCreateFirewallPolicyRequestBody struct {
	FirewallPolicy *NeutronCreateFirewallPolicyOption `json:"firewall_policy"`
}

func (NeutronCreateFirewallPolicyRequestBody) String

type NeutronCreateFirewallPolicyResponse

type NeutronCreateFirewallPolicyResponse struct {
	FirewallPolicy *NeutronFirewallPolicy `json:"firewall_policy,omitempty"`
	HttpStatusCode int                    `json:"-"`
}

Response Object

func (NeutronCreateFirewallPolicyResponse) String

type NeutronCreateFirewallRuleOption

type NeutronCreateFirewallRuleOption struct {
	// 功能说明:网络ACL规则名称 取值范围:0-255个字符
	Name *string `json:"name,omitempty"`
	// 功能说明:网络ACL规则描述 取值范围:0-255个字符
	Description *string `json:"description,omitempty"`
	// 功能说明:IP协议 取值范围:支持TCP,UDP,ICMP, ICMPV6或者ip协议号(0-255)
	Protocol *string `json:"protocol,omitempty"`
	// 功能说明:对通过网络ACL的流量执行的操作 取值范围:DENY(拒绝)/ALLOW(允许)
	Action *NeutronCreateFirewallRuleOptionAction `json:"action,omitempty"`
	// 功能说明:IP协议版本
	IpVersion *int32 `json:"ip_version,omitempty"`
	// 功能说明:目的地址或者CIDR
	DestinationIpAddress *string `json:"destination_ip_address,omitempty"`
	// 功能说明:目的端口号或者一段端口范围
	DestinationPort *string `json:"destination_port,omitempty"`
	// 功能说明:源地址或者CIDR
	SourceIpAddress *string `json:"source_ip_address,omitempty"`
	// 功能说明:源端口号或者一段端口范围
	SourcePort *string `json:"source_port,omitempty"`
	// 功能说明:是否使能网络ACL防火墙规则。
	Enabled *bool `json:"enabled,omitempty"`
}

func (NeutronCreateFirewallRuleOption) String

type NeutronCreateFirewallRuleOptionAction

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

func (NeutronCreateFirewallRuleOptionAction) MarshalJSON

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

func (*NeutronCreateFirewallRuleOptionAction) UnmarshalJSON

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

type NeutronCreateFirewallRuleOptionActionEnum

type NeutronCreateFirewallRuleOptionActionEnum struct {
	DENY  NeutronCreateFirewallRuleOptionAction
	ALLOW NeutronCreateFirewallRuleOptionAction
}

func GetNeutronCreateFirewallRuleOptionActionEnum

func GetNeutronCreateFirewallRuleOptionActionEnum() NeutronCreateFirewallRuleOptionActionEnum

type NeutronCreateFirewallRuleRequest

type NeutronCreateFirewallRuleRequest struct {
	Body *NeutronCreateFirewallRuleRequestBody `json:"body,omitempty"`
}

Request Object

func (NeutronCreateFirewallRuleRequest) String

type NeutronCreateFirewallRuleRequestBody

type NeutronCreateFirewallRuleRequestBody struct {
	FirewallRule *NeutronCreateFirewallRuleOption `json:"firewall_rule"`
}

func (NeutronCreateFirewallRuleRequestBody) String

type NeutronCreateFirewallRuleResponse

type NeutronCreateFirewallRuleResponse struct {
	FirewallRule   *NeutronFirewallRule `json:"firewall_rule,omitempty"`
	HttpStatusCode int                  `json:"-"`
}

Response Object

func (NeutronCreateFirewallRuleResponse) String

type NeutronDeleteFirewallGroupRequest

type NeutronDeleteFirewallGroupRequest struct {
	FirewallGroupId string `json:"firewall_group_id"`
}

Request Object

func (NeutronDeleteFirewallGroupRequest) String

type NeutronDeleteFirewallGroupResponse

type NeutronDeleteFirewallGroupResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (NeutronDeleteFirewallGroupResponse) String

type NeutronDeleteFirewallPolicyRequest

type NeutronDeleteFirewallPolicyRequest struct {
	FirewallPolicyId string `json:"firewall_policy_id"`
}

Request Object

func (NeutronDeleteFirewallPolicyRequest) String

type NeutronDeleteFirewallPolicyResponse

type NeutronDeleteFirewallPolicyResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (NeutronDeleteFirewallPolicyResponse) String

type NeutronDeleteFirewallRuleRequest

type NeutronDeleteFirewallRuleRequest struct {
	FirewallRuleId string `json:"firewall_rule_id"`
}

Request Object

func (NeutronDeleteFirewallRuleRequest) String

type NeutronDeleteFirewallRuleResponse

type NeutronDeleteFirewallRuleResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (NeutronDeleteFirewallRuleResponse) String

type NeutronFirewallGroup

type NeutronFirewallGroup struct {
	// 功能说明:网络ACL组的ID
	Id string `json:"id"`
	// 功能说明:网络ACL组名称 取值范围:0-255个字符
	Name string `json:"name"`
	// 功能说明:网络ACL组描述 取值范围:0-255个字符
	Description string `json:"description"`
	// 网络ACL防火墙是否受管理员控制。
	AdminStateUp bool `json:"admin_state_up"`
	// 功能说明:出方向网络ACL策略ID
	EgressFirewallPolicyId string `json:"egress_firewall_policy_id"`
	// 功能说明:入方向网络ACL策略ID
	IngressFirewallPolicyId string `json:"ingress_firewall_policy_id"`
	// 取值范围:网络ACL组绑定的端口列表
	Ports []string `json:"ports"`
	// 功能说明:是否支持跨租户共享 取值范围:true/false
	Public bool `json:"public"`
	// 功能说明:网络ACL组状态
	Status string `json:"status"`
	// 功能说明:网络ACL组所属项目ID
	TenantId string `json:"tenant_id"`
	// 功能说明:网络ACL组所属项目ID
	ProjectId string `json:"project_id"`
	// 功能说明:资源创建时间,UTC时间 格式:yyyy-MM-ddTHH:mm:ss
	CreatedAt *sdktime.SdkTime `json:"created_at"`
	// 功能说明:资源更新时间,UTC时间 格式:yyyy-MM-ddTHH:mm:ss
	UpdatedAt *sdktime.SdkTime `json:"updated_at"`
}

func (NeutronFirewallGroup) String

func (o NeutronFirewallGroup) String() string

type NeutronFirewallPolicy

type NeutronFirewallPolicy struct {
	// 审计标记。
	Audited bool `json:"audited"`
	// 网络ACL防火墙策略描述。
	Description string `json:"description"`
	// 策略引用的网络ACL防火墙规则链。
	FirewallRules []string `json:"firewall_rules"`
	// 网络ACL防火墙策略uuid标识。
	Id string `json:"id"`
	// 网络ACL防火墙策略名称。
	Name string `json:"name"`
	// 是否支持跨租户共享。
	Public bool `json:"public"`
	// 项目ID
	TenantId string `json:"tenant_id"`
	// 项目ID
	ProjectId string `json:"project_id"`
}

func (NeutronFirewallPolicy) String

func (o NeutronFirewallPolicy) String() string

type NeutronFirewallRule

type NeutronFirewallRule struct {
	// 功能说明:网络ACL规则的uuid标识。
	Id string `json:"id"`
	// 功能说明:网络ACL规则名称。 取值范围:0-255个字符
	Name string `json:"name"`
	// 功能说明:网络ACL规则描述 取值范围:0-255个字符长度
	Description string `json:"description"`
	// 功能说明:对通过网络ACL的流量执行的操作。 取值范围:DENY(拒绝)/ALLOW(允许)
	Action NeutronFirewallRuleAction `json:"action"`
	// 功能说明:IP协议 取值范围:支持TCP,UDP,ICMP, ICMPV6或者IP协议号(0-255)
	Protocol string `json:"protocol"`
	// 功能说明:IP协议版本 取值范围:Ipv4/Ipv6
	IpVersion int32 `json:"ip_version"`
	// 功能说明:是否使能网络ACL规则。 取值范围:true/false
	Enabled bool `json:"enabled"`
	// 功能说明:目的地址或者CIDR。
	DestinationIpAddress string `json:"destination_ip_address"`
	// 功能说明:目的端口号或者一段端口范围。
	DestinationPort string `json:"destination_port"`
	// 功能说明:源地址或者CIDR。
	SourceIpAddress string `json:"source_ip_address"`
	// 功能说明:源端口号或者一段端口范围。
	SourcePort string `json:"source_port"`
	// 功能说明:项目ID
	TenantId string `json:"tenant_id"`
	// 功能说明:项目ID
	ProjectId string `json:"project_id"`
}

func (NeutronFirewallRule) String

func (o NeutronFirewallRule) String() string

type NeutronFirewallRuleAction

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

func (NeutronFirewallRuleAction) MarshalJSON

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

func (*NeutronFirewallRuleAction) UnmarshalJSON

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

type NeutronFirewallRuleActionEnum

type NeutronFirewallRuleActionEnum struct {
	DENY  NeutronFirewallRuleAction
	ALLOW NeutronFirewallRuleAction
}

func GetNeutronFirewallRuleActionEnum

func GetNeutronFirewallRuleActionEnum() NeutronFirewallRuleActionEnum

type NeutronInsertFirewallRuleRequestBody

type NeutronInsertFirewallRuleRequestBody struct {
	// 功能说明:网络ACL规则ID
	FirewallRuleId string `json:"firewall_rule_id"`
	// insert_after参数表示已经和某个policy关联的rule,新的rule将会直接被插入到insert_after参数指定的rule后面。如果insert_after和insert_before都被指定了,insert_after参数值将被忽略。
	InsertAfter *string `json:"insert_after,omitempty"`
	// insert_before参数表示已经和某个policy关联的rule,新的firewall rule将会直接被插入到insert_ before参数指定的firewall rule前面。如果insert_after和insert_before都被指定了,insert_after参数值将被忽略。
	InsertBefore *string `json:"insert_before,omitempty"`
}

func (NeutronInsertFirewallRuleRequestBody) String

type NeutronListFirewallGroupsRequest

type NeutronListFirewallGroupsRequest struct {
	Marker                  *string   `json:"marker,omitempty"`
	Limit                   *int32    `json:"limit,omitempty"`
	Id                      *[]string `json:"id,omitempty"`
	Name                    *[]string `json:"name,omitempty"`
	Description             *[]string `json:"description,omitempty"`
	IngressFirewallPolicyId *string   `json:"ingress_firewall_policy_id,omitempty"`
	EgressFirewallPolicyId  *string   `json:"egress_firewall_policy_id,omitempty"`
}

Request Object

func (NeutronListFirewallGroupsRequest) String

type NeutronListFirewallGroupsResponse

type NeutronListFirewallGroupsResponse struct {
	// firewall_group对象列表
	FirewallGroups *[]NeutronFirewallGroup `json:"firewall_groups,omitempty"`
	// 分页信息
	FirewallGroupsLinks *[]NeutronPageLink `json:"firewall_groups_links,omitempty"`
	HttpStatusCode      int                `json:"-"`
}

Response Object

func (NeutronListFirewallGroupsResponse) String

type NeutronListFirewallPoliciesRequest

type NeutronListFirewallPoliciesRequest struct {
	Limit       *int32    `json:"limit,omitempty"`
	Marker      *string   `json:"marker,omitempty"`
	Id          *[]string `json:"id,omitempty"`
	Name        *[]string `json:"name,omitempty"`
	Description *[]string `json:"description,omitempty"`
	TenantId    *string   `json:"tenant_id,omitempty"`
}

Request Object

func (NeutronListFirewallPoliciesRequest) String

type NeutronListFirewallPoliciesResponse

type NeutronListFirewallPoliciesResponse struct {
	// firewall_policy对象列表
	FirewallPolicies *[]NeutronFirewallPolicy `json:"firewall_policies,omitempty"`
	// 分页信息
	FirewallPoliciesLinks *[]NeutronPageLink `json:"firewall_policies_links,omitempty"`
	HttpStatusCode        int                `json:"-"`
}

Response Object

func (NeutronListFirewallPoliciesResponse) String

type NeutronListFirewallRulesRequest

type NeutronListFirewallRulesRequest struct {
	Marker      *string   `json:"marker,omitempty"`
	Limit       *int32    `json:"limit,omitempty"`
	Id          *[]string `json:"id,omitempty"`
	Name        *[]string `json:"name,omitempty"`
	Description *[]string `json:"description,omitempty"`
	Action      *string   `json:"action,omitempty"`
	TenantId    *string   `json:"tenant_id,omitempty"`
}

Request Object

func (NeutronListFirewallRulesRequest) String

type NeutronListFirewallRulesResponse

type NeutronListFirewallRulesResponse struct {
	// firewall_rule对象列表
	FirewallRules *[]NeutronFirewallRule `json:"firewall_rules,omitempty"`
	// 分页信息
	FirewallRulesLinks *[]NeutronPageLink `json:"firewall_rules_links,omitempty"`
	HttpStatusCode     int                `json:"-"`
}

Response Object

func (NeutronListFirewallRulesResponse) String

type NeutronPageLink struct {
	// API链接
	Href string `json:"href"`
	// API链接与该API版本的关系
	Rel string `json:"rel"`
}

func (NeutronPageLink) String

func (o NeutronPageLink) String() string

type NeutronRemoveFirewallRuleRequest

type NeutronRemoveFirewallRuleRequest struct {
	FirewallPolicyId string                                `json:"firewall_policy_id"`
	Body             *NeutronRemoveFirewallRuleRequestBody `json:"body,omitempty"`
}

Request Object

func (NeutronRemoveFirewallRuleRequest) String

type NeutronRemoveFirewallRuleRequestBody

type NeutronRemoveFirewallRuleRequestBody struct {
	// 功能说明:待移除的ACL规则ID
	FirewallRuleId string `json:"firewall_rule_id"`
}

func (NeutronRemoveFirewallRuleRequestBody) String

type NeutronRemoveFirewallRuleResponse

type NeutronRemoveFirewallRuleResponse struct {
	// 功能说明:网络ACL策略ID
	Id *string `json:"id,omitempty"`
	// 功能说明:网络ACL策略名称
	Name *string `json:"name,omitempty"`
	// 功能说明:网络ACL策略的描述信息 取值范围:0-255个字符
	Description *string `json:"description,omitempty"`
	// 功能说明:网络ACL策略关联的规则的ID列表
	FirewallRules *[]string `json:"firewall_rules,omitempty"`
	// 功能说明:每次policy或者它相关的rule有变动,该参数将会被置为False
	Audited *bool `json:"audited,omitempty"`
	// 功能说明:网络ACL策略是否对其他网络ACL策略可见 取值范围:true(可见)、false(不可见)
	Public *bool `json:"public,omitempty"`
	// 功能说明:网络ACL策略所属项目ID
	TenantId *string `json:"tenant_id,omitempty"`
	// 功能说明:网络ACL策略所属项目ID
	ProjectId      *string `json:"project_id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (NeutronRemoveFirewallRuleResponse) String

type NeutronShowFirewallGroupRequest

type NeutronShowFirewallGroupRequest struct {
	FirewallGroupId string `json:"firewall_group_id"`
}

Request Object

func (NeutronShowFirewallGroupRequest) String

type NeutronShowFirewallGroupResponse

type NeutronShowFirewallGroupResponse struct {
	FirewallGroup  *NeutronFirewallGroup `json:"firewall_group,omitempty"`
	HttpStatusCode int                   `json:"-"`
}

Response Object

func (NeutronShowFirewallGroupResponse) String

type NeutronShowFirewallPolicyRequest

type NeutronShowFirewallPolicyRequest struct {
	FirewallPolicyId string `json:"firewall_policy_id"`
}

Request Object

func (NeutronShowFirewallPolicyRequest) String

type NeutronShowFirewallPolicyResponse

type NeutronShowFirewallPolicyResponse struct {
	FirewallPolicy *NeutronFirewallPolicy `json:"firewall_policy,omitempty"`
	HttpStatusCode int                    `json:"-"`
}

Response Object

func (NeutronShowFirewallPolicyResponse) String

type NeutronShowFirewallRuleRequest

type NeutronShowFirewallRuleRequest struct {
	FirewallRuleId string `json:"firewall_rule_id"`
}

Request Object

func (NeutronShowFirewallRuleRequest) String

type NeutronShowFirewallRuleResponse

type NeutronShowFirewallRuleResponse struct {
	FirewallRule   *NeutronFirewallRule `json:"firewall_rule,omitempty"`
	HttpStatusCode int                  `json:"-"`
}

Response Object

func (NeutronShowFirewallRuleResponse) String

type NeutronUpdateFirewallGroupOption

type NeutronUpdateFirewallGroupOption struct {
	// 网络ACL防火墙是否受管理员控制。
	AdminStateUp *bool `json:"admin_state_up,omitempty"`
	// 功能说明:网络ACL防火墙组描述 取值范围:最长255个字符
	Description *string `json:"description,omitempty"`
	// 出方向网络ACL防火墙策略。
	EgressFirewallPolicyId *string `json:"egress_firewall_policy_id,omitempty"`
	// 入方向网络ACL防火墙策略。
	IngressFirewallPolicyId *string `json:"ingress_firewall_policy_id,omitempty"`
	// 功能说明:网络ACL防火墙组名称 取值范围:最长255个字符
	Name *string `json:"name,omitempty"`
	// 功能说明:网络ACL防火墙组绑定的端口列表 约束:必须为分布式router的端口id
	Ports *[]string `json:"ports,omitempty"`
}

func (NeutronUpdateFirewallGroupOption) String

type NeutronUpdateFirewallGroupRequest

type NeutronUpdateFirewallGroupRequest struct {
	FirewallGroupId string                                 `json:"firewall_group_id"`
	Body            *NeutronUpdateFirewallGroupRequestBody `json:"body,omitempty"`
}

Request Object

func (NeutronUpdateFirewallGroupRequest) String

type NeutronUpdateFirewallGroupRequestBody

type NeutronUpdateFirewallGroupRequestBody struct {
	FirewallGroup *NeutronUpdateFirewallGroupOption `json:"firewall_group"`
}

func (NeutronUpdateFirewallGroupRequestBody) String

type NeutronUpdateFirewallGroupResponse

type NeutronUpdateFirewallGroupResponse struct {
	FirewallGroup  *NeutronFirewallGroup `json:"firewall_group,omitempty"`
	HttpStatusCode int                   `json:"-"`
}

Response Object

func (NeutronUpdateFirewallGroupResponse) String

type NeutronUpdateFirewallPolicyOption

type NeutronUpdateFirewallPolicyOption struct {
	// 功能说明:网络ACL防火墙策略名称 取值范围:最长255个字符
	Name *string `json:"name,omitempty"`
	// 功能说明:网络ACL防火墙策略描述 取值范围:最长255个字符
	Description *string `json:"description,omitempty"`
	// 功能说明:网络ACL策略关联的规则列表
	FirewallRules *[]string `json:"firewall_rules,omitempty"`
	// 审计标记。
	Audited *bool `json:"audited,omitempty"`
}

func (NeutronUpdateFirewallPolicyOption) String

type NeutronUpdateFirewallPolicyRequest

type NeutronUpdateFirewallPolicyRequest struct {
	FirewallPolicyId string                                  `json:"firewall_policy_id"`
	Body             *NeutronUpdateFirewallPolicyRequestBody `json:"body,omitempty"`
}

Request Object

func (NeutronUpdateFirewallPolicyRequest) String

type NeutronUpdateFirewallPolicyRequestBody

type NeutronUpdateFirewallPolicyRequestBody struct {
	FirewallPolicy *NeutronUpdateFirewallPolicyOption `json:"firewall_policy"`
}

func (NeutronUpdateFirewallPolicyRequestBody) String

type NeutronUpdateFirewallPolicyResponse

type NeutronUpdateFirewallPolicyResponse struct {
	FirewallPolicy *NeutronFirewallPolicy `json:"firewall_policy,omitempty"`
	HttpStatusCode int                    `json:"-"`
}

Response Object

func (NeutronUpdateFirewallPolicyResponse) String

type NeutronUpdateFirewallRuleOption

type NeutronUpdateFirewallRuleOption struct {
	// 对通过网络ACL防火墙的流量执行的操作。
	Action *NeutronUpdateFirewallRuleOptionAction `json:"action,omitempty"`
	// 网络ACL防火墙规则描述。
	Description *string `json:"description,omitempty"`
	// 目的地址或者CIDR。
	DestinationIpAddress *string `json:"destination_ip_address,omitempty"`
	// 目的端口号或者一段端口范围。
	DestinationPort *string `json:"destination_port,omitempty"`
	// 是否使能网络ACL防火墙规则。
	Enabled *bool `json:"enabled,omitempty"`
	// IP协议版本。
	IpVersion *int32 `json:"ip_version,omitempty"`
	// 网络ACL防火墙规则名称。
	Name *string `json:"name,omitempty"`
	// IP协议,支持TCP,UDP,ICMP, ICMPV6或者IP协议号(0-255)
	Protocol *string `json:"protocol,omitempty"`
	// 源地址或者CIDR。
	SourceIpAddress *string `json:"source_ip_address,omitempty"`
	// 源端口号或者一段端口范围。
	SourcePort *string `json:"source_port,omitempty"`
}

func (NeutronUpdateFirewallRuleOption) String

type NeutronUpdateFirewallRuleOptionAction

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

func (NeutronUpdateFirewallRuleOptionAction) MarshalJSON

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

func (*NeutronUpdateFirewallRuleOptionAction) UnmarshalJSON

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

type NeutronUpdateFirewallRuleOptionActionEnum

type NeutronUpdateFirewallRuleOptionActionEnum struct {
	DENY  NeutronUpdateFirewallRuleOptionAction
	ALLOW NeutronUpdateFirewallRuleOptionAction
}

func GetNeutronUpdateFirewallRuleOptionActionEnum

func GetNeutronUpdateFirewallRuleOptionActionEnum() NeutronUpdateFirewallRuleOptionActionEnum

type NeutronUpdateFirewallRuleRequest

type NeutronUpdateFirewallRuleRequest struct {
	FirewallRuleId string                                `json:"firewall_rule_id"`
	Body           *NeutronUpdateFirewallRuleRequestBody `json:"body,omitempty"`
}

Request Object

func (NeutronUpdateFirewallRuleRequest) String

type NeutronUpdateFirewallRuleRequestBody

type NeutronUpdateFirewallRuleRequestBody struct {
	FirewallRule *NeutronUpdateFirewallRuleOption `json:"firewall_rule"`
}

func (NeutronUpdateFirewallRuleRequestBody) String

type NeutronUpdateFirewallRuleResponse

type NeutronUpdateFirewallRuleResponse struct {
	FirewallRule   *NeutronFirewallRule `json:"firewall_rule,omitempty"`
	HttpStatusCode int                  `json:"-"`
}

Response Object

func (NeutronUpdateFirewallRuleResponse) String

type Port

type Port struct {
	// 端口ID
	Id string `json:"id"`
	// 功能说明:端口名称 取值范围:0~255个字符,支持中文、英文、字母、_(下划线)、-(中划线)
	Name string `json:"name"`
	// 端口所属网络的ID
	NetworkId string `json:"network_id"`
	// 功能说明:管理状态 约束:只支持true,默认为true
	AdminStateUp bool `json:"admin_state_up"`
	// 功能描述:端口MAC地址 约束:由系统分配,不支持指定
	MacAddress string `json:"mac_address"`
	// 功能说明:端口IP 例如:\"fixed_ips\": [{\"subnet_id\": \"4dc70db6-cb7f-4200-9790-a6a910776bba\", \"ip_address\": \"192.169.25.79\"}] 约束:一个端口只支持一个fixed_ip,且不支持更新。
	FixedIps []FixedIp `json:"fixed_ips"`
	// 功能说明:端口所属设备ID 约束:不支持设置和更新,由系统自动维护
	DeviceId string `json:"device_id"`
	// 功能说明:设备所属 取值范围:合法设备所属,如network:dhcp、network:VIP_PORT、network:router_interface_distributed、network:router_centralized_snat 约束:不支持设置和更新,由系统自动维护
	DeviceOwner PortDeviceOwner `json:"device_owner"`
	// 项目ID
	TenantId string `json:"tenant_id"`
	// 功能说明:端口状态,Hana硬直通虚拟机端口状态总为DOWN 取值范围:ACTIVE、BUILD、DOWN
	Status PortStatus `json:"status"`
	// 安全组的ID列表
	SecurityGroups []string `json:"security_groups"`
	// 功能说明:IP/Mac对列表 约束:IP地址不允许为 “0.0.0.0” 如果配置地址池较大(CIDR掩码小于24位),建议为该port配置一个单独的安全组。
	AllowedAddressPairs []AllowedAddressPair `json:"allowed_address_pairs"`
	// 功能说明:DHCP的扩展Option(扩展属性)
	ExtraDhcpOpts []ExtraDhcpOpt `json:"extra_dhcp_opts"`
	// 功能说明:绑定的vNIC类型 取值范围:  - normal(软交换)  - direct: SRIOV硬直通(不支持)
	BindingvnicType string `json:"binding:vnic_type"`
	// 功能说明:主网卡默认内网域名信息 约束:不支持设置和更新,由系统自动维护
	DnsAssignment []DnsAssignMent `json:"dns_assignment"`
	// 功能说明:主网卡默认内网DNS名称 约束:不支持设置和更新,由系统自动维护
	DnsName string `json:"dns_name"`
	// 功能说明:vif的详细信息,  \"ovs_hybrid_plug\": 是否为ovs/bridge混合模式 约束:管理员权限,普通租户不可指定
	BindingvifDetails *interface{} `json:"binding:vif_details"`
	// 功能说明:提供用户设置自定义信息(扩展属性)
	Bindingprofile *interface{} `json:"binding:profile"`
	// 功能说明:端口所属实例ID,例如RDS实例ID 约束:不支持设置和更新,由系统自动维护
	InstanceId string `json:"instance_id"`
	// 功能说明:端口所属实例类型,例如“RDS” 约束:不支持设置和更新,由系统自动维护
	InstanceType string `json:"instance_type"`
	// 功能说明:端口安全使能标记,如果不使能则安全组和dhcp防欺骗不生效 取值范围:启用(true)或禁用(false)
	PortSecurityEnabled bool `json:"port_security_enabled"`
	// 功能说明:port所属的可用分区
	ZoneId string `json:"zone_id"`
}

func (Port) String

func (o Port) String() string

type PortDeviceOwner

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

func (PortDeviceOwner) MarshalJSON

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

func (*PortDeviceOwner) UnmarshalJSON

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

type PortDeviceOwnerEnum

type PortDeviceOwnerEnum struct {
	NETWORKDHCP                         PortDeviceOwner
	NETWORKVIP_PORT                     PortDeviceOwner
	NETWORKROUTER_INTERFACE_DISTRIBUTED PortDeviceOwner
	NETWORKROUTER_CENTRALIZED_SNAT      PortDeviceOwner
}

func GetPortDeviceOwnerEnum

func GetPortDeviceOwnerEnum() PortDeviceOwnerEnum

type PortStatus

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

func (PortStatus) MarshalJSON

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

func (*PortStatus) UnmarshalJSON

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

type PortStatusEnum

type PortStatusEnum struct {
	ACTIVE PortStatus
	BUILD  PortStatus
	DOWN   PortStatus
}

func GetPortStatusEnum

func GetPortStatusEnum() PortStatusEnum

type Privateip

type Privateip struct {
	// 私有IP的状态  - ACTIVE:活动的  - DOWN:不可用
	Status PrivateipStatus `json:"status"`
	// 私有IP ID
	Id string `json:"id"`
	// 分配IP的子网标识
	SubnetId string `json:"subnet_id"`
	// 项目ID
	TenantId string `json:"tenant_id"`
	// 私有IP的使用者,空表示未使用 取值范围:network:dhcp,network:router_interface_distributed,compute:xxx(xxx对应具体的az名称,例如compute:aa-bb-cc表示是被aa-bb-cc上的虚拟机使用) 约束:此处的取值范围只是本服务支持的类型,其他类型未做标注
	DeviceOwner PrivateipDeviceOwner `json:"device_owner"`
	// 申请到的私有IP
	IpAddress string `json:"ip_address"`
}

func (Privateip) String

func (o Privateip) String() string

type PrivateipDeviceOwner

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

func (PrivateipDeviceOwner) MarshalJSON

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

func (*PrivateipDeviceOwner) UnmarshalJSON

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

type PrivateipDeviceOwnerEnum

type PrivateipDeviceOwnerEnum struct {
	NETWORKDHCP                         PrivateipDeviceOwner
	NETWORKROUTER_INTERFACE_DISTRIBUTED PrivateipDeviceOwner
	COMPUTEXXX                          PrivateipDeviceOwner
}

func GetPrivateipDeviceOwnerEnum

func GetPrivateipDeviceOwnerEnum() PrivateipDeviceOwnerEnum

type PrivateipStatus

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

func (PrivateipStatus) MarshalJSON

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

func (*PrivateipStatus) UnmarshalJSON

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

type PrivateipStatusEnum

type PrivateipStatusEnum struct {
	ACTIVE PrivateipStatus
	DOWN   PrivateipStatus
}

func GetPrivateipStatusEnum

func GetPrivateipStatusEnum() PrivateipStatusEnum

type Quota

type Quota struct {
	// 资源列表对象
	Resources []ResourceResult `json:"resources"`
}

func (Quota) String

func (o Quota) String() string

type RejectVpcPeeringRequest

type RejectVpcPeeringRequest struct {
	PeeringId string `json:"peering_id"`
}

Request Object

func (RejectVpcPeeringRequest) String

func (o RejectVpcPeeringRequest) String() string

type RejectVpcPeeringResponse

type RejectVpcPeeringResponse struct {
	// 对等连接ID
	Id *string `json:"id,omitempty"`
	// 功能说明:对等连接名称 取值范围:支持1~64个字符
	Name *string `json:"name,omitempty"`
	// 功能说明:对等连接状态 取值范围: - PENDING_ACCEPTANCE:等待接受 - REJECTED:已拒绝。 - EXPIRED:已过期。 - DELETED:已删除。 - ACTIVE:活动的。
	Status         *RejectVpcPeeringResponseStatus `json:"status,omitempty"`
	RequestVpcInfo *VpcInfo                        `json:"request_vpc_info,omitempty"`
	AcceptVpcInfo  *VpcInfo                        `json:"accept_vpc_info,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"`
	// 对等连接描述
	Description    *string `json:"description,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (RejectVpcPeeringResponse) String

func (o RejectVpcPeeringResponse) String() string

type RejectVpcPeeringResponseStatus

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

func (RejectVpcPeeringResponseStatus) MarshalJSON

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

func (*RejectVpcPeeringResponseStatus) UnmarshalJSON

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

type ResourceResult

type ResourceResult struct {
	// 功能说明:根据type过滤查询指定类型的配额  取值范围:vpc,subnet,securityGroup,securityGroupRule,publicIp,vpn,vpngw,vpcPeer,firewall,shareBandwidth,shareBandwidthIP,loadbalancer,listener,physicalConnect,virtualInterface,vpcContainRoutetable,routetableContainRoutes
	Type ResourceResultType `json:"type"`
	// 功能说明:已创建的资源个数  取值范围:0~quota数
	Used int32 `json:"used"`
	// 功能说明:资源的最大配额数  取值范围:各类型资源默认配额数~Integer最大值
	Quota int32 `json:"quota"`
	// 允许修改的配额最小值
	Min int32 `json:"min"`
}

func (ResourceResult) String

func (o ResourceResult) String() string

type ResourceResultType

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

func (ResourceResultType) MarshalJSON

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

func (*ResourceResultType) UnmarshalJSON

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

type ResourceResultTypeEnum

type ResourceResultTypeEnum struct {
	VPC                       ResourceResultType
	SUBNET                    ResourceResultType
	SECURITY_GROUP            ResourceResultType
	SECURITY_GROUP_RULE       ResourceResultType
	PUBLIC_IP                 ResourceResultType
	VPN                       ResourceResultType
	VPNGW                     ResourceResultType
	VPC_PEER                  ResourceResultType
	FIREWALL                  ResourceResultType
	SHARE_BANDWIDTH           ResourceResultType
	SHARE_BANDWIDTH_IP        ResourceResultType
	LOADBALANCER              ResourceResultType
	LISTENER                  ResourceResultType
	PHYSICAL_CONNECT          ResourceResultType
	VIRTUAL_INTERFACE         ResourceResultType
	VPC_CONTAIN_ROUTETABLE    ResourceResultType
	ROUTETABLE_CONTAIN_ROUTES ResourceResultType
}

func GetResourceResultTypeEnum

func GetResourceResultTypeEnum() ResourceResultTypeEnum

type Route

type Route struct {
	// 功能说明:路由目的地 取值范围:IP地址段 约束:仅支持配置默认路由,且其取值只能是0.0.0.0/0
	Destination *string `json:"destination,omitempty"`
	// 功能说明:路由下一跳IP地址 取值范围:ipv4地址格式 约束:nexthop仅支持所关联的子网范围内IP地址
	Nexthop *string `json:"nexthop,omitempty"`
}

func (Route) String

func (o Route) String() string

type SecurityGroup

type SecurityGroup struct {
	// 安全组名称
	Name string `json:"name"`
	// 安全组描述
	Description *string `json:"description,omitempty"`
	// 安全组唯一标识
	Id string `json:"id"`
	// 安全组所在的vpc的资源标识
	VpcId *string `json:"vpc_id,omitempty"`
	// 功能说明:企业项目ID。 取值范围:最大长度36字节,带“-”连字符的UUID格式,或者是字符串“0”。“0”表示默认企业项目。
	EnterpriseProjectId *string `json:"enterprise_project_id,omitempty"`
	// 安全组规则
	SecurityGroupRules []SecurityGroupRule `json:"security_group_rules"`
}

func (SecurityGroup) String

func (o SecurityGroup) String() string

type SecurityGroupRule

type SecurityGroupRule struct {
	// 安全组规则ID
	Id string `json:"id"`
	// 功能说明:安全组规则描述 取值范围:0-255个字符,支持数字、字母、中文字符
	Description string `json:"description"`
	// 安全组ID
	SecurityGroupId string `json:"security_group_id"`
	// 功能说明:出入控制方向 取值范围: - egress:出方向 - ingress:入方向
	Direction string `json:"direction"`
	// 功能说明:IP协议类型 取值范围:IPv4,IPv6
	Ethertype string `json:"ethertype"`
	// 功能说明:协议类型 取值范围:tcp、udp、icmp或IP协议编号(0~255) 约束:为空表示支持所有协议
	Protocol string `json:"protocol"`
	// 功能说明:起始端口值 取值范围:1~65535 约束:不能大于port_range_max的值,为空表示所有端口,如果协议是icmp类型,取值范围请参见 [安全组规则icmp协议名称对应关系表](https://support.huaweicloud.com/api-vpc/vpc_api_0009.html)
	PortRangeMin int32 `json:"port_range_min"`
	// 功能说明:结束端口值 取值范围:1~65535 约束:取值不能小于port_range_min的值,为空表示所有端口,如果协议是icmp类型,取值范围请参见 [安全组规则icmp协议名称对应关系表](https://support.huaweicloud.com/api-vpc/vpc_api_0009.html)
	PortRangeMax int32 `json:"port_range_max"`
	// 功能说明:远端IP地址,当direction是egress时为虚拟机访问端的地址,当direction是ingress时为访问虚拟机的地址 取值范围:IP地址,或者cidr格式 约束:和remote_group_id互斥
	RemoteIpPrefix string `json:"remote_ip_prefix"`
	// 功能说明:对端安全组ID 约束:和remote_ip_prefix互斥
	RemoteGroupId string `json:"remote_group_id"`
	// 安全组所属项目ID
	TenantId string `json:"tenant_id"`
}

func (SecurityGroupRule) String

func (o SecurityGroupRule) String() string

type ShowNetworkIpAvailabilitiesRequest

type ShowNetworkIpAvailabilitiesRequest struct {
	NetworkId string `json:"network_id"`
}

Request Object

func (ShowNetworkIpAvailabilitiesRequest) String

type ShowNetworkIpAvailabilitiesResponse

type ShowNetworkIpAvailabilitiesResponse struct {
	NetworkIpAvailability *NetworkIpAvailability `json:"network_ip_availability,omitempty"`
	HttpStatusCode        int                    `json:"-"`
}

Response Object

func (ShowNetworkIpAvailabilitiesResponse) String

type ShowPortRequest

type ShowPortRequest struct {
	PortId string `json:"port_id"`
}

Request Object

func (ShowPortRequest) String

func (o ShowPortRequest) String() string

type ShowPortResponse

type ShowPortResponse struct {
	Port           *Port `json:"port,omitempty"`
	HttpStatusCode int   `json:"-"`
}

Response Object

func (ShowPortResponse) String

func (o ShowPortResponse) String() string

type ShowPrivateipRequest

type ShowPrivateipRequest struct {
	PrivateipId string `json:"privateip_id"`
}

Request Object

func (ShowPrivateipRequest) String

func (o ShowPrivateipRequest) String() string

type ShowPrivateipResponse

type ShowPrivateipResponse struct {
	Privateip      *Privateip `json:"privateip,omitempty"`
	HttpStatusCode int        `json:"-"`
}

Response Object

func (ShowPrivateipResponse) String

func (o ShowPrivateipResponse) String() string

type ShowQuotaRequest

type ShowQuotaRequest struct {
	Type *ShowQuotaRequestType `json:"type,omitempty"`
}

Request Object

func (ShowQuotaRequest) String

func (o ShowQuotaRequest) String() string

type ShowQuotaRequestType

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

func (ShowQuotaRequestType) MarshalJSON

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

func (*ShowQuotaRequestType) UnmarshalJSON

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

type ShowQuotaRequestTypeEnum

type ShowQuotaRequestTypeEnum struct {
	VPC                       ShowQuotaRequestType
	SUBNET                    ShowQuotaRequestType
	SECURITY_GROUP            ShowQuotaRequestType
	SECURITY_GROUP_RULE       ShowQuotaRequestType
	PUBLIC_IP                 ShowQuotaRequestType
	VPN                       ShowQuotaRequestType
	VPNGW                     ShowQuotaRequestType
	VPC_PEER                  ShowQuotaRequestType
	FIREWALL                  ShowQuotaRequestType
	SHARE_BANDWIDTH           ShowQuotaRequestType
	SHARE_BANDWIDTH_IP        ShowQuotaRequestType
	LOADBALANCER              ShowQuotaRequestType
	LISTENER                  ShowQuotaRequestType
	PHYSICAL_CONNECT          ShowQuotaRequestType
	VIRTUAL_INTERFACE         ShowQuotaRequestType
	VPC_CONTAIN_ROUTETABLE    ShowQuotaRequestType
	ROUTETABLE_CONTAIN_ROUTES ShowQuotaRequestType
}

func GetShowQuotaRequestTypeEnum

func GetShowQuotaRequestTypeEnum() ShowQuotaRequestTypeEnum

type ShowQuotaResponse

type ShowQuotaResponse struct {
	Quotas         *Quota `json:"quotas,omitempty"`
	HttpStatusCode int    `json:"-"`
}

Response Object

func (ShowQuotaResponse) String

func (o ShowQuotaResponse) String() string

type ShowSecurityGroupRequest

type ShowSecurityGroupRequest struct {
	SecurityGroupId string `json:"security_group_id"`
}

Request Object

func (ShowSecurityGroupRequest) String

func (o ShowSecurityGroupRequest) String() string

type ShowSecurityGroupResponse

type ShowSecurityGroupResponse struct {
	SecurityGroup  *SecurityGroup `json:"security_group,omitempty"`
	HttpStatusCode int            `json:"-"`
}

Response Object

func (ShowSecurityGroupResponse) String

func (o ShowSecurityGroupResponse) String() string

type ShowSecurityGroupRuleRequest

type ShowSecurityGroupRuleRequest struct {
	SecurityGroupRuleId string `json:"security_group_rule_id"`
}

Request Object

func (ShowSecurityGroupRuleRequest) String

type ShowSecurityGroupRuleResponse

type ShowSecurityGroupRuleResponse struct {
	SecurityGroupRule *SecurityGroupRule `json:"security_group_rule,omitempty"`
	HttpStatusCode    int                `json:"-"`
}

Response Object

func (ShowSecurityGroupRuleResponse) String

type ShowSubnetRequest

type ShowSubnetRequest struct {
	SubnetId string `json:"subnet_id"`
}

Request Object

func (ShowSubnetRequest) String

func (o ShowSubnetRequest) String() string

type ShowSubnetResponse

type ShowSubnetResponse struct {
	Subnet         *Subnet `json:"subnet,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ShowSubnetResponse) String

func (o ShowSubnetResponse) String() string

type ShowVpcPeeringRequest

type ShowVpcPeeringRequest struct {
	PeeringId string `json:"peering_id"`
}

Request Object

func (ShowVpcPeeringRequest) String

func (o ShowVpcPeeringRequest) String() string

type ShowVpcPeeringResponse

type ShowVpcPeeringResponse struct {
	Peering        *VpcPeering `json:"peering,omitempty"`
	HttpStatusCode int         `json:"-"`
}

Response Object

func (ShowVpcPeeringResponse) String

func (o ShowVpcPeeringResponse) String() string

type ShowVpcRequest

type ShowVpcRequest struct {
	VpcId string `json:"vpc_id"`
}

Request Object

func (ShowVpcRequest) String

func (o ShowVpcRequest) String() string

type ShowVpcResponse

type ShowVpcResponse struct {
	Vpc            *Vpc `json:"vpc,omitempty"`
	HttpStatusCode int  `json:"-"`
}

Response Object

func (ShowVpcResponse) String

func (o ShowVpcResponse) String() string

type ShowVpcRouteRequest

type ShowVpcRouteRequest struct {
	RouteId string `json:"route_id"`
}

Request Object

func (ShowVpcRouteRequest) String

func (o ShowVpcRouteRequest) String() string

type ShowVpcRouteResponse

type ShowVpcRouteResponse struct {
	Route          *VpcRoute `json:"route,omitempty"`
	HttpStatusCode int       `json:"-"`
}

Response Object

func (ShowVpcRouteResponse) String

func (o ShowVpcRouteResponse) String() string

type Subnet

type Subnet struct {
	// 子网ID
	Id string `json:"id"`
	// 功能说明:子网名称 取值范围:1-64个字符,支持数字、字母、中文、_(下划线)、-(中划线)、.(点)
	Name string `json:"name"`
	// 功能说明:子网描述 取值范围:0-255个字符,不能包含“<”和“>”。
	Description string `json:"description"`
	// 功能说明:子网的网段 取值范围:必须在vpc对应cidr范围内 约束:必须是cidr格式。掩码长度不能大于28
	Cidr string `json:"cidr"`
	// 功能说明:子网的网关 取值范围:子网网段中的IP地址 约束:必须是ip格式
	GatewayIp string `json:"gateway_ip"`
	// 功能说明:是否创建cidr_v6 取值范围:true(开启),false(关闭)
	Ipv6Enable bool `json:"ipv6_enable"`
	// IPv6子网的网段,如果子网为IPv4子网,则不返回此参数
	CidrV6 string `json:"cidr_v6"`
	// IPv6子网的网关,如果子网为IPv4子网,则不返回此参数
	GatewayIpV6 string `json:"gateway_ip_v6"`
	// 子网是否开启dhcp功能
	DhcpEnable bool `json:"dhcp_enable"`
	// 子网dns服务器地址1
	PrimaryDns string `json:"primary_dns"`
	// 子网dns服务器地址2
	SecondaryDns string `json:"secondary_dns"`
	// 子网dns服务器地址列表
	DnsList []string `json:"dnsList"`
	// 子网所在的可用区标识
	AvailabilityZone string `json:"availability_zone"`
	// 子网所在VPC标识
	VpcId string `json:"vpc_id"`
	// 功能说明:子网的状态 取值范围: - ACTIVE:表示子网已挂载到ROUTER上 - UNKNOWN:表示子网还未挂载到ROUTER上 - ERROR:表示子网状态故障
	Status SubnetStatus `json:"status"`
	// 对应网络(OpenStack Neutron接口)id
	NeutronNetworkId string `json:"neutron_network_id"`
	// 对应子网(OpenStack Neutron接口)id
	NeutronSubnetId string `json:"neutron_subnet_id"`
	// 对应IPv6子网(OpenStack Neutron接口)id,如果子网为IPv4子网,则不返回此参数
	NeutronSubnetIdV6 string `json:"neutron_subnet_id_v6"`
	// 子网配置的NTP地址
	ExtraDhcpOpts []ExtraDhcpOption `json:"extra_dhcp_opts"`
	// 功能说明:子网作用域 取值范围:center-表示作用域为中心;{azId}表示作用域为具体的AZ
	Scope *string `json:"scope,omitempty"`
}

func (Subnet) String

func (o Subnet) String() string

type SubnetIpAvailability

type SubnetIpAvailability struct {
	// 子网中已经使用的IP数目(不包含系统预留地址)
	UsedIps int32 `json:"used_ips"`
	// 子网ID
	SubnetId string `json:"subnet_id"`
	// 子网名称
	SubnetName string `json:"subnet_name"`
	// 子网的IP版本,取值为4或者6
	IpVersion int32 `json:"ip_version"`
	// 子网的CIDR
	Cidr string `json:"cidr"`
	// 子网中IP总数(不包含系统预留地址)
	TotalIps int32 `json:"total_ips"`
}

func (SubnetIpAvailability) String

func (o SubnetIpAvailability) String() string

type SubnetResult

type SubnetResult struct {
	// uuid形式的一个资源标识。
	Id string `json:"id"`
	// 功能说明:子网的状态。   取值范围:ACTIVE,UNKNOWN,ERROR       ACTIVE表示子网已挂载到ROUTER上       UNKNOWN表示子网还未挂载到ROUTER上       ERROR表示子网状态故障
	Status SubnetResultStatus `json:"status"`
}

func (SubnetResult) String

func (o SubnetResult) String() string

type SubnetResultStatus

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

func (SubnetResultStatus) MarshalJSON

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

func (*SubnetResultStatus) UnmarshalJSON

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

type SubnetResultStatusEnum

type SubnetResultStatusEnum struct {
	ACTIVE  SubnetResultStatus
	UNKNOWN SubnetResultStatus
	ERROR   SubnetResultStatus
}

func GetSubnetResultStatusEnum

func GetSubnetResultStatusEnum() SubnetResultStatusEnum

type SubnetStatus

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

func (SubnetStatus) MarshalJSON

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

func (*SubnetStatus) UnmarshalJSON

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

type SubnetStatusEnum

type SubnetStatusEnum struct {
	ACTIVE  SubnetStatus
	UNKNOWN SubnetStatus
	ERROR   SubnetStatus
}

func GetSubnetStatusEnum

func GetSubnetStatusEnum() SubnetStatusEnum

type UpdatePortOption

type UpdatePortOption struct {
	// 功能说明:端口名称 取值范围:0~255个字符,支持中文、英文、字母、_(下划线)、-(中划线)
	Name *string `json:"name,omitempty"`
	// 安全组的ID列表
	SecurityGroups *[]string `json:"security_groups,omitempty"`
	// 功能说明:IP/Mac对列表 约束: - IP地址不允许为 “0.0.0.0”。 - 如果配置地址池较大(CIDR掩码小于24位),建议为该port配置一个单独的安全组。 - 为虚拟IP配置后端ECS场景,allowed_address_pairs中配置的IP地址,必须为ECS网卡已有的IP地址,否则可能会导致虚拟IP通信异常。
	AllowedAddressPairs *[]AllowedAddressPair `json:"allowed_address_pairs,omitempty"`
	// 功能说明:DHCP的扩展Option(扩展属性)
	ExtraDhcpOpts *[]ExtraDhcpOpt `json:"extra_dhcp_opts,omitempty"`
}

func (UpdatePortOption) String

func (o UpdatePortOption) String() string

type UpdatePortRequest

type UpdatePortRequest struct {
	PortId string                 `json:"port_id"`
	Body   *UpdatePortRequestBody `json:"body,omitempty"`
}

Request Object

func (UpdatePortRequest) String

func (o UpdatePortRequest) String() string

type UpdatePortRequestBody

type UpdatePortRequestBody struct {
	Port *UpdatePortOption `json:"port"`
}

func (UpdatePortRequestBody) String

func (o UpdatePortRequestBody) String() string

type UpdatePortResponse

type UpdatePortResponse struct {
	Port           *Port `json:"port,omitempty"`
	HttpStatusCode int   `json:"-"`
}

Response Object

func (UpdatePortResponse) String

func (o UpdatePortResponse) String() string

type UpdateSubnetOption

type UpdateSubnetOption struct {
	// 功能说明:子网名称 取值范围:1-64,支持数字、字母、中文、_(下划线)、-(中划线)、.(点)
	Name string `json:"name"`
	// 功能说明:子网描述 取值范围:0-255个字符,不能包含“<”和“>”。
	Description *string `json:"description,omitempty"`
	// 功能说明:是否创建ipv6子网 取值范围:true(开启),false(关闭)
	Ipv6Enable *bool `json:"ipv6_enable,omitempty"`
	// 功能说明:子网是否开启dhcp功能 取值范围:true(开启),false(关闭) 约束:不填时默认为true。当设置为false时,会导致新创建的ECS无法获取IP地址,cloudinit无法注入账号密码,请谨慎操作。
	DhcpEnable *bool `json:"dhcp_enable,omitempty"`
	// 功能说明:子网dns服务器地址1 约束:ip格式 默认值:不填时为空 [内网DNS地址请参见](https://support.huaweicloud.com/dns_faq/dns_faq_002.html) [通过API获取请参见](https://support.huaweicloud.com/api-dns/dns_api_69001.html)
	PrimaryDns *string `json:"primary_dns,omitempty"`
	// 功能说明:子网dns服务器地址2 约束:ip格式 默认值:不填时为空 [内网DNS地址请参见](https://support.huaweicloud.com/dns_faq/dns_faq_002.html) [通过API获取请参见](https://support.huaweicloud.com/api-dns/dns_api_69001.html)
	SecondaryDns *string `json:"secondary_dns,omitempty"`
	// 功能说明:子网dns服务器地址的集合;如果想使用两个以上dns服务器,请使用该字段。 约束:是子网dns服务器地址1跟子网dns服务器地址2的合集的父集 默认值:不填时为空,无法使用云内网DNS功能 [内网DNS地址请参见](https://support.huaweicloud.com/dns_faq/dns_faq_002.html) [通过API获取请参见](https://support.huaweicloud.com/api-dns/dns_api_69001.html)
	DnsList *[]string `json:"dnsList,omitempty"`
	// 子网配置的NTP地址
	ExtraDhcpOpts *[]ExtraDhcpOption `json:"extra_dhcp_opts,omitempty"`
}

func (UpdateSubnetOption) String

func (o UpdateSubnetOption) String() string

type UpdateSubnetRequest

type UpdateSubnetRequest struct {
	VpcId    string                   `json:"vpc_id"`
	SubnetId string                   `json:"subnet_id"`
	Body     *UpdateSubnetRequestBody `json:"body,omitempty"`
}

Request Object

func (UpdateSubnetRequest) String

func (o UpdateSubnetRequest) String() string

type UpdateSubnetRequestBody

type UpdateSubnetRequestBody struct {
	Subnet *UpdateSubnetOption `json:"subnet"`
}

func (UpdateSubnetRequestBody) String

func (o UpdateSubnetRequestBody) String() string

type UpdateSubnetResponse

type UpdateSubnetResponse struct {
	Subnet         *SubnetResult `json:"subnet,omitempty"`
	HttpStatusCode int           `json:"-"`
}

Response Object

func (UpdateSubnetResponse) String

func (o UpdateSubnetResponse) String() string

type UpdateVpcOption

type UpdateVpcOption struct {
	// 功能说明:虚拟私有云名称  取值范围:0-64个字符,支持数字、字母、中文、_(下划线)、-(中划线)、.(点)  约束:如果名称不为空,则同一个租户下的VPC不允许重名。
	Name *string `json:"name,omitempty"`
	// 功能说明:虚拟私有云的描述  取值范围:0-255个字符,不能包含“<”和“>”。
	Description *string `json:"description,omitempty"`
	// 功能说明:虚拟私有云下可用子网的范围  取值范围:  - 10.0.0.0/8 ~ 10.255.255.240/28 - 172.16.0.0/12 ~ 172.31.255.240/28 - 192.168.0.0/16 ~ 192.168.255.240/28  约束:必须是ipv4 cidr格式,例如:192.168.0.0/16
	Cidr *string `json:"cidr,omitempty"`
	// 功能说明:路由信息列表,详情参见route对象
	Routes *[]Route `json:"routes,omitempty"`
}

func (UpdateVpcOption) String

func (o UpdateVpcOption) String() string

type UpdateVpcPeeringOption

type UpdateVpcPeeringOption struct {
	// 功能说明:对等连接名称 取值范围:支持1~64个字符
	Name *string `json:"name,omitempty"`
	// 功能说明:对等连接描述 取值范围:0-255个字符,支持数字、字母、中文字符
	Description *string `json:"description,omitempty"`
}

更新peering对象

func (UpdateVpcPeeringOption) String

func (o UpdateVpcPeeringOption) String() string

type UpdateVpcPeeringRequest

type UpdateVpcPeeringRequest struct {
	PeeringId string                       `json:"peering_id"`
	Body      *UpdateVpcPeeringRequestBody `json:"body,omitempty"`
}

Request Object

func (UpdateVpcPeeringRequest) String

func (o UpdateVpcPeeringRequest) String() string

type UpdateVpcPeeringRequestBody

type UpdateVpcPeeringRequestBody struct {
	Peering *UpdateVpcPeeringOption `json:"peering"`
}

func (UpdateVpcPeeringRequestBody) String

type UpdateVpcPeeringResponse

type UpdateVpcPeeringResponse struct {
	Peering        *VpcPeering `json:"peering,omitempty"`
	HttpStatusCode int         `json:"-"`
}

Response Object

func (UpdateVpcPeeringResponse) String

func (o UpdateVpcPeeringResponse) String() string

type UpdateVpcRequest

type UpdateVpcRequest struct {
	VpcId string                `json:"vpc_id"`
	Body  *UpdateVpcRequestBody `json:"body,omitempty"`
}

Request Object

func (UpdateVpcRequest) String

func (o UpdateVpcRequest) String() string

type UpdateVpcRequestBody

type UpdateVpcRequestBody struct {
	Vpc *UpdateVpcOption `json:"vpc"`
}

func (UpdateVpcRequestBody) String

func (o UpdateVpcRequestBody) String() string

type UpdateVpcResponse

type UpdateVpcResponse struct {
	Vpc            *Vpc `json:"vpc,omitempty"`
	HttpStatusCode int  `json:"-"`
}

Response Object

func (UpdateVpcResponse) String

func (o UpdateVpcResponse) String() string

type Vpc

type Vpc struct {
	// 功能说明:虚拟私有云ID 取值范围:带\"-\"的UUID
	Id string `json:"id"`
	// 功能说明:虚拟私有云名称 取值范围:0-64个字符,支持数字、字母、中文、_(下划线)、-(中划线)、.(点) 约束:如果名称不为空,则同一个租户下的名称不能重复
	Name string `json:"name"`
	// 功能说明:虚拟私有云下可用子网的范围 取值范围: - 10.0.0.0/8~10.255.255.240/28 - 172.16.0.0/12 ~ 172.31.255.240/28 - 192.168.0.0/16 ~ 192.168.255.240/28 不指定cidr时,默认值为空 约束:必须是ipv4 cidr格式,例如:192.168.0.0/16
	Cidr string `json:"cidr"`
	// 功能说明:虚拟私有云的描述 取值范围:0-255个字符,不能包含“<”和“>”
	Description string `json:"description"`
	// 功能说明:路由信息列表,详情参见route对象
	Routes []Route `json:"routes"`
	// 功能说明:虚拟私有云的状态 取值范围: - CREATING:创建中 - OK:创建成功
	Status VpcStatus `json:"status"`
	// 功能说明:企业项目ID。 取值范围:最大长度36字节,带“-”连字符的UUID格式,或者是字符串“0”。“0”表示默认企业项目。
	EnterpriseProjectId string `json:"enterprise_project_id"`
}

func (Vpc) String

func (o Vpc) String() string

type VpcInfo

type VpcInfo struct {
	// 对等连接其中一端vpc ID
	VpcId string `json:"vpc_id"`
	// 对等连接其中一端vpc所属的租户ID 约束:跨租户VPC创建对等连接时必选
	TenantId *string `json:"tenant_id,omitempty"`
}

func (VpcInfo) String

func (o VpcInfo) String() string

type VpcPeering

type VpcPeering struct {
	// 对等连接ID
	Id string `json:"id"`
	// 功能说明:对等连接名称 取值范围:支持1~64个字符
	Name string `json:"name"`
	// 功能说明:对等连接状态 取值范围: - PENDING_ACCEPTANCE:等待接受 - REJECTED:已拒绝。 - EXPIRED:已过期。 - DELETED:已删除。 - ACTIVE:活动的。
	Status         VpcPeeringStatus `json:"status"`
	RequestVpcInfo *VpcInfo         `json:"request_vpc_info"`
	AcceptVpcInfo  *VpcInfo         `json:"accept_vpc_info"`
	// 功能说明:资源创建UTC时间 格式:yyyy-MM-ddTHH:mm:ss
	CreatedAt *sdktime.SdkTime `json:"created_at"`
	// 功能说明:资源更新UTC时间 格式:yyyy-MM-ddTHH:mm:ss
	UpdatedAt *sdktime.SdkTime `json:"updated_at"`
	// 对等连接描述
	Description string `json:"description"`
}

peering对象

func (VpcPeering) String

func (o VpcPeering) String() string

type VpcPeeringStatus

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

func (VpcPeeringStatus) MarshalJSON

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

func (*VpcPeeringStatus) UnmarshalJSON

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

type VpcPeeringStatusEnum

type VpcPeeringStatusEnum struct {
	PENDING_ACCEPTANCE VpcPeeringStatus
	REJECTED           VpcPeeringStatus
	EXPIRED            VpcPeeringStatus
	DELETED            VpcPeeringStatus
	ACTIVE             VpcPeeringStatus
}

func GetVpcPeeringStatusEnum

func GetVpcPeeringStatusEnum() VpcPeeringStatusEnum

type VpcRoute

type VpcRoute struct {
	// 路由ID
	Id string `json:"id"`
	// 路由目的地址CIDR,如192.168.200.0/24。
	Destination string `json:"destination"`
	// 功能说明:路由下一跳 取值范围:如果type为peering类型,则nexthop为peering的ID
	Nexthop string `json:"nexthop"`
	// 功能说明:路由类型 取值范围:peering
	Type VpcRouteType `json:"type"`
	// 请求添加路由的VPC ID
	VpcId string `json:"vpc_id"`
	// 项目ID
	TenantId string `json:"tenant_id"`
}

func (VpcRoute) String

func (o VpcRoute) String() string

type VpcRouteType

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

func (VpcRouteType) MarshalJSON

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

func (*VpcRouteType) UnmarshalJSON

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

type VpcRouteTypeEnum

type VpcRouteTypeEnum struct {
	PEERING VpcRouteType
}

func GetVpcRouteTypeEnum

func GetVpcRouteTypeEnum() VpcRouteTypeEnum

type VpcStatus

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

func (VpcStatus) MarshalJSON

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

func (*VpcStatus) UnmarshalJSON

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

type VpcStatusEnum

type VpcStatusEnum struct {
	CREATING VpcStatus
	OK       VpcStatus
	ERROR    VpcStatus
}

func GetVpcStatusEnum

func GetVpcStatusEnum() VpcStatusEnum

Source Files

Jump to

Keyboard shortcuts

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