model

package
v1.0.3 Latest Latest
Warning

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

Go to latest
Published: Dec 23, 2021 License: Apache-2.0, BSD-2-Clause, BSD-3-Clause Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AclApiBindingCreate

type AclApiBindingCreate struct {
	AclId *string `json:"acl_id,omitempty"`

	PublishIds *[]string `json:"publish_ids,omitempty"`
}

func (AclApiBindingCreate) String

func (o AclApiBindingCreate) String() string

type AclApiBindingInfo

type AclApiBindingInfo struct {
	Id *string `json:"id,omitempty"`

	ApiId *string `json:"api_id,omitempty"`

	EnvId *string `json:"env_id,omitempty"`

	AclId *string `json:"acl_id,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`
}

func (AclApiBindingInfo) String

func (o AclApiBindingInfo) String() string

type AclBatchDelete

type AclBatchDelete struct {
	Acls *[]string `json:"acls,omitempty"`
}

func (AclBatchDelete) String

func (o AclBatchDelete) String() string

type AclBatchResultFailureResp

type AclBatchResultFailureResp struct {
	AclId *string `json:"acl_id,omitempty"`

	AclName *string `json:"acl_name,omitempty"`

	ErrorCode *string `json:"error_code,omitempty"`

	ErrorMsg *string `json:"error_msg,omitempty"`
}

func (AclBatchResultFailureResp) String

func (o AclBatchResultFailureResp) String() string

type AclBindApiInfo

type AclBindApiInfo struct {
	ApiId *string `json:"api_id,omitempty"`

	ApiName *string `json:"api_name,omitempty"`

	ApiType *int64 `json:"api_type,omitempty"`

	ApiRemark *string `json:"api_remark,omitempty"`

	EnvId *string `json:"env_id,omitempty"`

	EnvName *string `json:"env_name,omitempty"`

	BindId *string `json:"bind_id,omitempty"`

	GroupName *string `json:"group_name,omitempty"`

	BindTime *sdktime.SdkTime `json:"bind_time,omitempty"`

	PublishId *string `json:"publish_id,omitempty"`
}

func (AclBindApiInfo) String

func (o AclBindApiInfo) String() string

type AclBindingBatchDelete

type AclBindingBatchDelete struct {
	AclBindings *[]string `json:"acl_bindings,omitempty"`
}

func (AclBindingBatchDelete) String

func (o AclBindingBatchDelete) String() string

type AclBindingBatchFailure

type AclBindingBatchFailure struct {
	BindId *string `json:"bind_id,omitempty"`

	ErrorCode *string `json:"error_code,omitempty"`

	ErrorMsg *string `json:"error_msg,omitempty"`

	ApiId *string `json:"api_id,omitempty"`

	ApiName *string `json:"api_name,omitempty"`
}

func (AclBindingBatchFailure) String

func (o AclBindingBatchFailure) String() string

type AddEipV2Request

type AddEipV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (AddEipV2Request) String

func (o AddEipV2Request) String() string

type AddEipV2Response

type AddEipV2Response struct {
	EipId *string `json:"eip_id,omitempty"`

	EipAddress *string `json:"eip_address,omitempty"`

	EipStatus *string `json:"eip_status,omitempty"`

	EipIpv6Address *string `json:"eip_ipv6_address,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (AddEipV2Response) String

func (o AddEipV2Response) String() string

type AddEngressEipV2Request

type AddEngressEipV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (AddEngressEipV2Request) String

func (o AddEngressEipV2Request) String() string

type AddEngressEipV2Response

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

Response Object

func (AddEngressEipV2Response) String

func (o AddEngressEipV2Response) String() string

type AddingBackendInstancesV2Request

type AddingBackendInstancesV2Request struct {
	InstanceId string `json:"instance_id"`

	VpcChannelId string `json:"vpc_channel_id"`

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

Request Object

func (AddingBackendInstancesV2Request) String

type AddingBackendInstancesV2Response

type AddingBackendInstancesV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Members        *[]VpcMemberInfo `json:"members,omitempty"`
	HttpStatusCode int              `json:"-"`
}

Response Object

func (AddingBackendInstancesV2Response) String

type ApiAclCreate

type ApiAclCreate struct {
	AclName string `json:"acl_name"`

	AclType string `json:"acl_type"`

	AclValue string `json:"acl_value"`

	EntityType string `json:"entity_type"`
}

func (ApiAclCreate) String

func (o ApiAclCreate) String() string

type ApiAclInfoWithBindNum

type ApiAclInfoWithBindNum struct {
	AclName *string `json:"acl_name,omitempty"`

	AclType *string `json:"acl_type,omitempty"`

	AclValue *string `json:"acl_value,omitempty"`

	BindNum *int32 `json:"bind_num,omitempty"`

	EntityType *string `json:"entity_type,omitempty"`

	Id *string `json:"id,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`
}

func (ApiAclInfoWithBindNum) String

func (o ApiAclInfoWithBindNum) String() string

type ApiActionInfo

type ApiActionInfo struct {
	Action ApiActionInfoAction `json:"action"`

	EnvId string `json:"env_id"`

	ApiId string `json:"api_id"`

	Remark *string `json:"remark,omitempty"`
}

func (ApiActionInfo) String

func (o ApiActionInfo) String() string

type ApiActionInfoAction

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

func (ApiActionInfoAction) MarshalJSON

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

func (*ApiActionInfoAction) UnmarshalJSON

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

type ApiActionInfoActionEnum

type ApiActionInfoActionEnum struct {
	ONLINE  ApiActionInfoAction
	OFFLINE ApiActionInfoAction
}

func GetApiActionInfoActionEnum

func GetApiActionInfoActionEnum() ApiActionInfoActionEnum

type ApiAuthBase

type ApiAuthBase struct {
	Id *string `json:"id,omitempty"`

	ApiId *string `json:"api_id,omitempty"`

	ApiName *string `json:"api_name,omitempty"`

	GroupName *string `json:"group_name,omitempty"`

	ApiType *int32 `json:"api_type,omitempty"`

	ApiRemark *string `json:"api_remark,omitempty"`

	EnvId *string `json:"env_id,omitempty"`

	AuthRole *string `json:"auth_role,omitempty"`

	AuthTime *sdktime.SdkTime `json:"auth_time,omitempty"`

	AppName *string `json:"app_name,omitempty"`

	AppRemark *string `json:"app_remark,omitempty"`

	AppType *ApiAuthBaseAppType `json:"app_type,omitempty"`

	AppCreator *string `json:"app_creator,omitempty"`

	PublishId *string `json:"publish_id,omitempty"`

	GroupId *string `json:"group_id,omitempty"`

	AuthTunnel *ApiAuthBaseAuthTunnel `json:"auth_tunnel,omitempty"`

	AuthWhitelist *[]string `json:"auth_whitelist,omitempty"`

	AuthBlacklist *[]string `json:"auth_blacklist,omitempty"`

	VisitParam *string `json:"visit_param,omitempty"`

	RomaAppType *string `json:"roma_app_type,omitempty"`
}

func (ApiAuthBase) String

func (o ApiAuthBase) String() string

type ApiAuthBaseAppType

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

func (ApiAuthBaseAppType) MarshalJSON

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

func (*ApiAuthBaseAppType) UnmarshalJSON

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

type ApiAuthBaseAppTypeEnum

type ApiAuthBaseAppTypeEnum struct {
	APIG ApiAuthBaseAppType
	ROMA ApiAuthBaseAppType
}

func GetApiAuthBaseAppTypeEnum

func GetApiAuthBaseAppTypeEnum() ApiAuthBaseAppTypeEnum

type ApiAuthBaseAuthTunnel

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

func (ApiAuthBaseAuthTunnel) MarshalJSON

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

func (*ApiAuthBaseAuthTunnel) UnmarshalJSON

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

type ApiAuthBaseAuthTunnelEnum

type ApiAuthBaseAuthTunnelEnum struct {
	NORMAL ApiAuthBaseAuthTunnel
	GREEN  ApiAuthBaseAuthTunnel
}

func GetApiAuthBaseAuthTunnelEnum

func GetApiAuthBaseAuthTunnelEnum() ApiAuthBaseAuthTunnelEnum

type ApiAuthCreate

type ApiAuthCreate struct {
	EnvId string `json:"env_id"`

	AppIds []string `json:"app_ids"`

	ApiIds []string `json:"api_ids"`
}

func (ApiAuthCreate) String

func (o ApiAuthCreate) String() string

type ApiAuthInfo

type ApiAuthInfo struct {
	Id *string `json:"id,omitempty"`

	ApiId *string `json:"api_id,omitempty"`

	ApiName *string `json:"api_name,omitempty"`

	GroupName *string `json:"group_name,omitempty"`

	ApiType *int32 `json:"api_type,omitempty"`

	ApiRemark *string `json:"api_remark,omitempty"`

	EnvId *string `json:"env_id,omitempty"`

	AuthRole *string `json:"auth_role,omitempty"`

	AuthTime *sdktime.SdkTime `json:"auth_time,omitempty"`

	AppName *string `json:"app_name,omitempty"`

	AppRemark *string `json:"app_remark,omitempty"`

	AppType *ApiAuthInfoAppType `json:"app_type,omitempty"`

	AppCreator *string `json:"app_creator,omitempty"`

	PublishId *string `json:"publish_id,omitempty"`

	GroupId *string `json:"group_id,omitempty"`

	AuthTunnel *ApiAuthInfoAuthTunnel `json:"auth_tunnel,omitempty"`

	AuthWhitelist *[]string `json:"auth_whitelist,omitempty"`

	AuthBlacklist *[]string `json:"auth_blacklist,omitempty"`

	VisitParam *string `json:"visit_param,omitempty"`

	RomaAppType *string `json:"roma_app_type,omitempty"`

	EnvName *string `json:"env_name,omitempty"`

	AppId *string `json:"app_id,omitempty"`
}

func (ApiAuthInfo) String

func (o ApiAuthInfo) String() string

type ApiAuthInfoAppType

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

func (ApiAuthInfoAppType) MarshalJSON

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

func (*ApiAuthInfoAppType) UnmarshalJSON

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

type ApiAuthInfoAppTypeEnum

type ApiAuthInfoAppTypeEnum struct {
	APIG ApiAuthInfoAppType
	ROMA ApiAuthInfoAppType
}

func GetApiAuthInfoAppTypeEnum

func GetApiAuthInfoAppTypeEnum() ApiAuthInfoAppTypeEnum

type ApiAuthInfoAuthTunnel

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

func (ApiAuthInfoAuthTunnel) MarshalJSON

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

func (*ApiAuthInfoAuthTunnel) UnmarshalJSON

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

type ApiAuthInfoAuthTunnelEnum

type ApiAuthInfoAuthTunnelEnum struct {
	NORMAL ApiAuthInfoAuthTunnel
	GREEN  ApiAuthInfoAuthTunnel
}

func GetApiAuthInfoAuthTunnelEnum

func GetApiAuthInfoAuthTunnelEnum() ApiAuthInfoAuthTunnelEnum

type ApiAuthRelations

type ApiAuthRelations struct {
	ApiId *string `json:"api_id,omitempty"`

	AuthResult *AuthResult `json:"auth_result,omitempty"`

	AuthTime *sdktime.SdkTime `json:"auth_time,omitempty"`

	Id *string `json:"id,omitempty"`

	AppId *string `json:"app_id,omitempty"`

	AuthRole *ApiAuthRelationsAuthRole `json:"auth_role,omitempty"`

	AuthTunnel *ApiAuthRelationsAuthTunnel `json:"auth_tunnel,omitempty"`

	AuthWhitelist *[]string `json:"auth_whitelist,omitempty"`

	AuthBlacklist *[]string `json:"auth_blacklist,omitempty"`

	VisitParams *string `json:"visit_params,omitempty"`
}

func (ApiAuthRelations) String

func (o ApiAuthRelations) String() string

type ApiAuthRelationsAuthRole

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

func (ApiAuthRelationsAuthRole) MarshalJSON

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

func (*ApiAuthRelationsAuthRole) UnmarshalJSON

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

type ApiAuthRelationsAuthRoleEnum

type ApiAuthRelationsAuthRoleEnum struct {
	PROVIDER ApiAuthRelationsAuthRole
	CONSUMER ApiAuthRelationsAuthRole
}

func GetApiAuthRelationsAuthRoleEnum

func GetApiAuthRelationsAuthRoleEnum() ApiAuthRelationsAuthRoleEnum

type ApiAuthRelationsAuthTunnel

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

func (ApiAuthRelationsAuthTunnel) MarshalJSON

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

func (*ApiAuthRelationsAuthTunnel) UnmarshalJSON

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

type ApiAuthRelationsAuthTunnelEnum

type ApiAuthRelationsAuthTunnelEnum struct {
	NORMAL ApiAuthRelationsAuthTunnel
	GREEN  ApiAuthRelationsAuthTunnel
}

func GetApiAuthRelationsAuthTunnelEnum

func GetApiAuthRelationsAuthTunnelEnum() ApiAuthRelationsAuthTunnelEnum

type ApiBackendVpcReq

type ApiBackendVpcReq struct {
	VpcChannelProxyHost *string `json:"vpc_channel_proxy_host,omitempty"`

	VpcChannelId string `json:"vpc_channel_id"`
}

VPC通道详情。vpc_channel_status = 1,则这个object类型为必填信息

func (ApiBackendVpcReq) String

func (o ApiBackendVpcReq) String() string

type ApiBaseInfo

type ApiBaseInfo struct {
	Name string `json:"name"`

	Type ApiBaseInfoType `json:"type"`

	Version *string `json:"version,omitempty"`

	ReqProtocol ApiBaseInfoReqProtocol `json:"req_protocol"`

	ReqMethod ApiBaseInfoReqMethod `json:"req_method"`

	ReqUri string `json:"req_uri"`

	AuthType ApiBaseInfoAuthType `json:"auth_type"`

	AuthOpt *AuthOpt `json:"auth_opt,omitempty"`

	Cors *bool `json:"cors,omitempty"`

	MatchMode *ApiBaseInfoMatchMode `json:"match_mode,omitempty"`

	BackendType ApiBaseInfoBackendType `json:"backend_type"`

	Remark *string `json:"remark,omitempty"`

	GroupId string `json:"group_id"`

	BodyRemark *string `json:"body_remark,omitempty"`

	ResultNormalSample *string `json:"result_normal_sample,omitempty"`

	ResultFailureSample *string `json:"result_failure_sample,omitempty"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`

	Tags *[]string `json:"tags,omitempty"`

	ResponseId *string `json:"response_id,omitempty"`

	RomaAppId *string `json:"roma_app_id,omitempty"`

	DomainName *string `json:"domain_name,omitempty"`

	Tag *string `json:"tag,omitempty"`
}

func (ApiBaseInfo) String

func (o ApiBaseInfo) String() string

type ApiBaseInfoAuthType

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

func (ApiBaseInfoAuthType) MarshalJSON

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

func (*ApiBaseInfoAuthType) UnmarshalJSON

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

type ApiBaseInfoAuthTypeEnum

type ApiBaseInfoAuthTypeEnum struct {
	NONE       ApiBaseInfoAuthType
	APP        ApiBaseInfoAuthType
	IAM        ApiBaseInfoAuthType
	AUTHORIZER ApiBaseInfoAuthType
}

func GetApiBaseInfoAuthTypeEnum

func GetApiBaseInfoAuthTypeEnum() ApiBaseInfoAuthTypeEnum

type ApiBaseInfoBackendType

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

func (ApiBaseInfoBackendType) MarshalJSON

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

func (*ApiBaseInfoBackendType) UnmarshalJSON

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

type ApiBaseInfoBackendTypeEnum

type ApiBaseInfoBackendTypeEnum struct {
	HTTP     ApiBaseInfoBackendType
	FUNCTION ApiBaseInfoBackendType
	MOCK     ApiBaseInfoBackendType
}

func GetApiBaseInfoBackendTypeEnum

func GetApiBaseInfoBackendTypeEnum() ApiBaseInfoBackendTypeEnum

type ApiBaseInfoMatchMode

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

func (ApiBaseInfoMatchMode) MarshalJSON

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

func (*ApiBaseInfoMatchMode) UnmarshalJSON

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

type ApiBaseInfoMatchModeEnum

type ApiBaseInfoMatchModeEnum struct {
	SWA    ApiBaseInfoMatchMode
	NORMAL ApiBaseInfoMatchMode
}

func GetApiBaseInfoMatchModeEnum

func GetApiBaseInfoMatchModeEnum() ApiBaseInfoMatchModeEnum

type ApiBaseInfoReqMethod

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

func (ApiBaseInfoReqMethod) MarshalJSON

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

func (*ApiBaseInfoReqMethod) UnmarshalJSON

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

type ApiBaseInfoReqProtocol

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

func (ApiBaseInfoReqProtocol) MarshalJSON

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

func (*ApiBaseInfoReqProtocol) UnmarshalJSON

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

type ApiBaseInfoReqProtocolEnum

type ApiBaseInfoReqProtocolEnum struct {
	HTTP  ApiBaseInfoReqProtocol
	HTTPS ApiBaseInfoReqProtocol
	BOTH  ApiBaseInfoReqProtocol
}

func GetApiBaseInfoReqProtocolEnum

func GetApiBaseInfoReqProtocolEnum() ApiBaseInfoReqProtocolEnum

type ApiBaseInfoType

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

func (ApiBaseInfoType) MarshalJSON

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

func (*ApiBaseInfoType) UnmarshalJSON

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

type ApiBaseInfoTypeEnum

type ApiBaseInfoTypeEnum struct {
	E_1 ApiBaseInfoType
	E_2 ApiBaseInfoType
}

func GetApiBaseInfoTypeEnum

func GetApiBaseInfoTypeEnum() ApiBaseInfoTypeEnum

type ApiBatchPublish

type ApiBatchPublish struct {
	Apis *[]string `json:"apis,omitempty"`

	EnvId *string `json:"env_id,omitempty"`

	Remark *string `json:"remark,omitempty"`
}

func (ApiBatchPublish) String

func (o ApiBatchPublish) String() string

type ApiBindAclInfo

type ApiBindAclInfo struct {
	AclId *string `json:"acl_id,omitempty"`

	AclName *string `json:"acl_name,omitempty"`

	EntityType *ApiBindAclInfoEntityType `json:"entity_type,omitempty"`

	AclType *ApiBindAclInfoAclType `json:"acl_type,omitempty"`

	AclValue *string `json:"acl_value,omitempty"`

	EnvId *string `json:"env_id,omitempty"`

	EnvName *string `json:"env_name,omitempty"`

	BindId *string `json:"bind_id,omitempty"`

	BindTime *sdktime.SdkTime `json:"bind_time,omitempty"`
}

func (ApiBindAclInfo) String

func (o ApiBindAclInfo) String() string

type ApiBindAclInfoAclType

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

func (ApiBindAclInfoAclType) MarshalJSON

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

func (*ApiBindAclInfoAclType) UnmarshalJSON

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

type ApiBindAclInfoAclTypeEnum

type ApiBindAclInfoAclTypeEnum struct {
	PERMIT ApiBindAclInfoAclType
	DENY   ApiBindAclInfoAclType
}

func GetApiBindAclInfoAclTypeEnum

func GetApiBindAclInfoAclTypeEnum() ApiBindAclInfoAclTypeEnum

type ApiBindAclInfoEntityType

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

func (ApiBindAclInfoEntityType) MarshalJSON

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

func (*ApiBindAclInfoEntityType) UnmarshalJSON

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

type ApiBindAclInfoEntityTypeEnum

type ApiBindAclInfoEntityTypeEnum struct {
	IP     ApiBindAclInfoEntityType
	DOMAIN ApiBindAclInfoEntityType
}

func GetApiBindAclInfoEntityTypeEnum

func GetApiBindAclInfoEntityTypeEnum() ApiBindAclInfoEntityTypeEnum

type ApiCommon

type ApiCommon struct {
	Name string `json:"name"`

	Type ApiCommonType `json:"type"`

	Version *string `json:"version,omitempty"`

	ReqProtocol ApiCommonReqProtocol `json:"req_protocol"`

	ReqMethod ApiCommonReqMethod `json:"req_method"`

	ReqUri string `json:"req_uri"`

	AuthType ApiCommonAuthType `json:"auth_type"`

	AuthOpt *AuthOpt `json:"auth_opt,omitempty"`

	Cors *bool `json:"cors,omitempty"`

	MatchMode *ApiCommonMatchMode `json:"match_mode,omitempty"`

	BackendType ApiCommonBackendType `json:"backend_type"`

	Remark *string `json:"remark,omitempty"`

	GroupId string `json:"group_id"`

	BodyRemark *string `json:"body_remark,omitempty"`

	ResultNormalSample *string `json:"result_normal_sample,omitempty"`

	ResultFailureSample *string `json:"result_failure_sample,omitempty"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`

	Tags *[]string `json:"tags,omitempty"`

	ResponseId *string `json:"response_id,omitempty"`

	RomaAppId *string `json:"roma_app_id,omitempty"`

	DomainName *string `json:"domain_name,omitempty"`

	Tag *string `json:"tag,omitempty"`

	Id *string `json:"id,omitempty"`

	Status *int32 `json:"status,omitempty"`

	ArrangeNecessary *int32 `json:"arrange_necessary,omitempty"`

	RegisterTime *sdktime.SdkTime `json:"register_time,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`

	GroupName *string `json:"group_name,omitempty"`

	GroupVersion *string `json:"group_version,omitempty"`

	RunEnvId *string `json:"run_env_id,omitempty"`

	RunEnvName *string `json:"run_env_name,omitempty"`

	PublishId *string `json:"publish_id,omitempty"`

	FuncInfo *ApiFunc `json:"func_info,omitempty"`

	MockInfo *ApiMock `json:"mock_info,omitempty"`

	ReqParams *[]ReqParam `json:"req_params,omitempty"`

	BackendParams *[]BackendParam `json:"backend_params,omitempty"`

	PolicyFunctions *[]ApiPolicyFunctionResp `json:"policy_functions,omitempty"`

	PolicyMocks *[]ApiPolicyMockResp `json:"policy_mocks,omitempty"`
}

func (ApiCommon) String

func (o ApiCommon) String() string

type ApiCommonAuthType

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

func (ApiCommonAuthType) MarshalJSON

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

func (*ApiCommonAuthType) UnmarshalJSON

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

type ApiCommonAuthTypeEnum

type ApiCommonAuthTypeEnum struct {
	NONE       ApiCommonAuthType
	APP        ApiCommonAuthType
	IAM        ApiCommonAuthType
	AUTHORIZER ApiCommonAuthType
}

func GetApiCommonAuthTypeEnum

func GetApiCommonAuthTypeEnum() ApiCommonAuthTypeEnum

type ApiCommonBackendType

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

func (ApiCommonBackendType) MarshalJSON

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

func (*ApiCommonBackendType) UnmarshalJSON

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

type ApiCommonBackendTypeEnum

type ApiCommonBackendTypeEnum struct {
	HTTP     ApiCommonBackendType
	FUNCTION ApiCommonBackendType
	MOCK     ApiCommonBackendType
}

func GetApiCommonBackendTypeEnum

func GetApiCommonBackendTypeEnum() ApiCommonBackendTypeEnum

type ApiCommonMatchMode

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

func (ApiCommonMatchMode) MarshalJSON

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

func (*ApiCommonMatchMode) UnmarshalJSON

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

type ApiCommonMatchModeEnum

type ApiCommonMatchModeEnum struct {
	SWA    ApiCommonMatchMode
	NORMAL ApiCommonMatchMode
}

func GetApiCommonMatchModeEnum

func GetApiCommonMatchModeEnum() ApiCommonMatchModeEnum

type ApiCommonReqMethod

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

func (ApiCommonReqMethod) MarshalJSON

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

func (*ApiCommonReqMethod) UnmarshalJSON

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

type ApiCommonReqProtocol

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

func (ApiCommonReqProtocol) MarshalJSON

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

func (*ApiCommonReqProtocol) UnmarshalJSON

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

type ApiCommonReqProtocolEnum

type ApiCommonReqProtocolEnum struct {
	HTTP  ApiCommonReqProtocol
	HTTPS ApiCommonReqProtocol
	BOTH  ApiCommonReqProtocol
}

func GetApiCommonReqProtocolEnum

func GetApiCommonReqProtocolEnum() ApiCommonReqProtocolEnum

type ApiCommonType

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

func (ApiCommonType) MarshalJSON

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

func (*ApiCommonType) UnmarshalJSON

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

type ApiCommonTypeEnum

type ApiCommonTypeEnum struct {
	E_1 ApiCommonType
	E_2 ApiCommonType
}

func GetApiCommonTypeEnum

func GetApiCommonTypeEnum() ApiCommonTypeEnum

type ApiConditionBase

type ApiConditionBase struct {
	ReqParamName *string `json:"req_param_name,omitempty"`

	ConditionType *ApiConditionBaseConditionType `json:"condition_type,omitempty"`

	ConditionOrigin ApiConditionBaseConditionOrigin `json:"condition_origin"`

	ConditionValue string `json:"condition_value"`
}

func (ApiConditionBase) String

func (o ApiConditionBase) String() string

type ApiConditionBaseConditionOrigin

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

func (ApiConditionBaseConditionOrigin) MarshalJSON

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

func (*ApiConditionBaseConditionOrigin) UnmarshalJSON

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

type ApiConditionBaseConditionOriginEnum

type ApiConditionBaseConditionOriginEnum struct {
	PARAM  ApiConditionBaseConditionOrigin
	SOURCE ApiConditionBaseConditionOrigin
}

func GetApiConditionBaseConditionOriginEnum

func GetApiConditionBaseConditionOriginEnum() ApiConditionBaseConditionOriginEnum

type ApiConditionBaseConditionType

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

func (ApiConditionBaseConditionType) MarshalJSON

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

func (*ApiConditionBaseConditionType) UnmarshalJSON

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

type ApiConditionBaseConditionTypeEnum

type ApiConditionBaseConditionTypeEnum struct {
	EXACT   ApiConditionBaseConditionType
	ENUM    ApiConditionBaseConditionType
	PATTERN ApiConditionBaseConditionType
}

func GetApiConditionBaseConditionTypeEnum

func GetApiConditionBaseConditionTypeEnum() ApiConditionBaseConditionTypeEnum

type ApiCreate

type ApiCreate struct {
	Name string `json:"name"`

	Type ApiCreateType `json:"type"`

	Version *string `json:"version,omitempty"`

	ReqProtocol ApiCreateReqProtocol `json:"req_protocol"`

	ReqMethod ApiCreateReqMethod `json:"req_method"`

	ReqUri string `json:"req_uri"`

	AuthType ApiCreateAuthType `json:"auth_type"`

	AuthOpt *AuthOpt `json:"auth_opt,omitempty"`

	Cors *bool `json:"cors,omitempty"`

	MatchMode *ApiCreateMatchMode `json:"match_mode,omitempty"`

	BackendType ApiCreateBackendType `json:"backend_type"`

	Remark *string `json:"remark,omitempty"`

	GroupId string `json:"group_id"`

	BodyRemark *string `json:"body_remark,omitempty"`

	ResultNormalSample *string `json:"result_normal_sample,omitempty"`

	ResultFailureSample *string `json:"result_failure_sample,omitempty"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`

	Tags *[]string `json:"tags,omitempty"`

	ResponseId *string `json:"response_id,omitempty"`

	RomaAppId *string `json:"roma_app_id,omitempty"`

	DomainName *string `json:"domain_name,omitempty"`

	Tag *string `json:"tag,omitempty"`

	MockInfo *ApiMockCreate `json:"mock_info,omitempty"`

	FuncInfo *ApiFuncCreate `json:"func_info,omitempty"`

	ReqParams *[]ReqParamBase `json:"req_params,omitempty"`

	BackendParams *[]BackendParamBase `json:"backend_params,omitempty"`

	PolicyMocks *[]ApiPolicyMockCreate `json:"policy_mocks,omitempty"`

	PolicyFunctions *[]ApiPolicyFunctionCreate `json:"policy_functions,omitempty"`

	BackendApi *BackendApiCreate `json:"backend_api,omitempty"`

	PolicyHttps *[]ApiPolicyHttpCreate `json:"policy_https,omitempty"`
}

func (ApiCreate) String

func (o ApiCreate) String() string

type ApiCreateAuthType

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

func (ApiCreateAuthType) MarshalJSON

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

func (*ApiCreateAuthType) UnmarshalJSON

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

type ApiCreateAuthTypeEnum

type ApiCreateAuthTypeEnum struct {
	NONE       ApiCreateAuthType
	APP        ApiCreateAuthType
	IAM        ApiCreateAuthType
	AUTHORIZER ApiCreateAuthType
}

func GetApiCreateAuthTypeEnum

func GetApiCreateAuthTypeEnum() ApiCreateAuthTypeEnum

type ApiCreateBackendType

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

func (ApiCreateBackendType) MarshalJSON

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

func (*ApiCreateBackendType) UnmarshalJSON

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

type ApiCreateBackendTypeEnum

type ApiCreateBackendTypeEnum struct {
	HTTP     ApiCreateBackendType
	FUNCTION ApiCreateBackendType
	MOCK     ApiCreateBackendType
}

func GetApiCreateBackendTypeEnum

func GetApiCreateBackendTypeEnum() ApiCreateBackendTypeEnum

type ApiCreateBase

type ApiCreateBase struct {
	Name string `json:"name"`

	Type ApiCreateBaseType `json:"type"`

	Version *string `json:"version,omitempty"`

	ReqProtocol ApiCreateBaseReqProtocol `json:"req_protocol"`

	ReqMethod ApiCreateBaseReqMethod `json:"req_method"`

	ReqUri string `json:"req_uri"`

	AuthType ApiCreateBaseAuthType `json:"auth_type"`

	AuthOpt *AuthOpt `json:"auth_opt,omitempty"`

	Cors *bool `json:"cors,omitempty"`

	MatchMode *ApiCreateBaseMatchMode `json:"match_mode,omitempty"`

	BackendType ApiCreateBaseBackendType `json:"backend_type"`

	Remark *string `json:"remark,omitempty"`

	GroupId string `json:"group_id"`

	BodyRemark *string `json:"body_remark,omitempty"`

	ResultNormalSample *string `json:"result_normal_sample,omitempty"`

	ResultFailureSample *string `json:"result_failure_sample,omitempty"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`

	Tags *[]string `json:"tags,omitempty"`

	ResponseId *string `json:"response_id,omitempty"`

	RomaAppId *string `json:"roma_app_id,omitempty"`

	DomainName *string `json:"domain_name,omitempty"`

	Tag *string `json:"tag,omitempty"`

	MockInfo *ApiMockCreate `json:"mock_info,omitempty"`

	FuncInfo *ApiFuncCreate `json:"func_info,omitempty"`

	ReqParams *[]ReqParamBase `json:"req_params,omitempty"`

	BackendParams *[]BackendParamBase `json:"backend_params,omitempty"`

	PolicyMocks *[]ApiPolicyMockCreate `json:"policy_mocks,omitempty"`

	PolicyFunctions *[]ApiPolicyFunctionCreate `json:"policy_functions,omitempty"`
}

func (ApiCreateBase) String

func (o ApiCreateBase) String() string

type ApiCreateBaseAuthType

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

func (ApiCreateBaseAuthType) MarshalJSON

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

func (*ApiCreateBaseAuthType) UnmarshalJSON

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

type ApiCreateBaseAuthTypeEnum

type ApiCreateBaseAuthTypeEnum struct {
	NONE       ApiCreateBaseAuthType
	APP        ApiCreateBaseAuthType
	IAM        ApiCreateBaseAuthType
	AUTHORIZER ApiCreateBaseAuthType
}

func GetApiCreateBaseAuthTypeEnum

func GetApiCreateBaseAuthTypeEnum() ApiCreateBaseAuthTypeEnum

type ApiCreateBaseBackendType

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

func (ApiCreateBaseBackendType) MarshalJSON

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

func (*ApiCreateBaseBackendType) UnmarshalJSON

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

type ApiCreateBaseBackendTypeEnum

type ApiCreateBaseBackendTypeEnum struct {
	HTTP     ApiCreateBaseBackendType
	FUNCTION ApiCreateBaseBackendType
	MOCK     ApiCreateBaseBackendType
}

func GetApiCreateBaseBackendTypeEnum

func GetApiCreateBaseBackendTypeEnum() ApiCreateBaseBackendTypeEnum

type ApiCreateBaseMatchMode

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

func (ApiCreateBaseMatchMode) MarshalJSON

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

func (*ApiCreateBaseMatchMode) UnmarshalJSON

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

type ApiCreateBaseMatchModeEnum

type ApiCreateBaseMatchModeEnum struct {
	SWA    ApiCreateBaseMatchMode
	NORMAL ApiCreateBaseMatchMode
}

func GetApiCreateBaseMatchModeEnum

func GetApiCreateBaseMatchModeEnum() ApiCreateBaseMatchModeEnum

type ApiCreateBaseReqMethod

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

func (ApiCreateBaseReqMethod) MarshalJSON

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

func (*ApiCreateBaseReqMethod) UnmarshalJSON

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

type ApiCreateBaseReqProtocol

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

func (ApiCreateBaseReqProtocol) MarshalJSON

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

func (*ApiCreateBaseReqProtocol) UnmarshalJSON

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

type ApiCreateBaseReqProtocolEnum

type ApiCreateBaseReqProtocolEnum struct {
	HTTP  ApiCreateBaseReqProtocol
	HTTPS ApiCreateBaseReqProtocol
	BOTH  ApiCreateBaseReqProtocol
}

func GetApiCreateBaseReqProtocolEnum

func GetApiCreateBaseReqProtocolEnum() ApiCreateBaseReqProtocolEnum

type ApiCreateBaseType

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

func (ApiCreateBaseType) MarshalJSON

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

func (*ApiCreateBaseType) UnmarshalJSON

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

type ApiCreateBaseTypeEnum

type ApiCreateBaseTypeEnum struct {
	E_1 ApiCreateBaseType
	E_2 ApiCreateBaseType
}

func GetApiCreateBaseTypeEnum

func GetApiCreateBaseTypeEnum() ApiCreateBaseTypeEnum

type ApiCreateMatchMode

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

func (ApiCreateMatchMode) MarshalJSON

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

func (*ApiCreateMatchMode) UnmarshalJSON

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

type ApiCreateMatchModeEnum

type ApiCreateMatchModeEnum struct {
	SWA    ApiCreateMatchMode
	NORMAL ApiCreateMatchMode
}

func GetApiCreateMatchModeEnum

func GetApiCreateMatchModeEnum() ApiCreateMatchModeEnum

type ApiCreateReqMethod

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

func (ApiCreateReqMethod) MarshalJSON

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

func (*ApiCreateReqMethod) UnmarshalJSON

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

type ApiCreateReqProtocol

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

func (ApiCreateReqProtocol) MarshalJSON

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

func (*ApiCreateReqProtocol) UnmarshalJSON

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

type ApiCreateReqProtocolEnum

type ApiCreateReqProtocolEnum struct {
	HTTP  ApiCreateReqProtocol
	HTTPS ApiCreateReqProtocol
	BOTH  ApiCreateReqProtocol
}

func GetApiCreateReqProtocolEnum

func GetApiCreateReqProtocolEnum() ApiCreateReqProtocolEnum

type ApiCreateType

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

func (ApiCreateType) MarshalJSON

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

func (*ApiCreateType) UnmarshalJSON

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

type ApiCreateTypeEnum

type ApiCreateTypeEnum struct {
	E_1 ApiCreateType
	E_2 ApiCreateType
}

func GetApiCreateTypeEnum

func GetApiCreateTypeEnum() ApiCreateTypeEnum

type ApiDebugInfo

type ApiDebugInfo struct {
	Body *string `json:"body,omitempty"`

	Header map[string]string `json:"header,omitempty"`

	Method ApiDebugInfoMethod `json:"method"`

	Mode string `json:"mode"`

	Path string `json:"path"`

	Query map[string]string `json:"query,omitempty"`

	Scheme string `json:"scheme"`

	AppKey *string `json:"app_key,omitempty"`

	AppSecret *string `json:"app_secret,omitempty"`

	Domain *string `json:"domain,omitempty"`

	Stage *string `json:"stage,omitempty"`
}

func (ApiDebugInfo) String

func (o ApiDebugInfo) String() string

type ApiDebugInfoMethod

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

func (ApiDebugInfoMethod) MarshalJSON

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

func (*ApiDebugInfoMethod) UnmarshalJSON

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

type ApiDebugInfoMethodEnum

type ApiDebugInfoMethodEnum struct {
	GET     ApiDebugInfoMethod
	POST    ApiDebugInfoMethod
	PUT     ApiDebugInfoMethod
	DELETE  ApiDebugInfoMethod
	HEAD    ApiDebugInfoMethod
	PATCH   ApiDebugInfoMethod
	OPTIONS ApiDebugInfoMethod
}

func GetApiDebugInfoMethodEnum

func GetApiDebugInfoMethodEnum() ApiDebugInfoMethodEnum

type ApiForSign

type ApiForSign struct {
	AuthType *string `json:"auth_type,omitempty"`

	RunEnvName *string `json:"run_env_name,omitempty"`

	GroupName *string `json:"group_name,omitempty"`

	PublishId *string `json:"publish_id,omitempty"`

	GroupId *string `json:"group_id,omitempty"`

	Name *string `json:"name,omitempty"`

	Remark *string `json:"remark,omitempty"`

	RunEnvId *string `json:"run_env_id,omitempty"`

	Id *string `json:"id,omitempty"`

	ReqUri *string `json:"req_uri,omitempty"`

	Type *int32 `json:"type,omitempty"`

	SignatureName *string `json:"signature_name,omitempty"`
}

func (ApiForSign) String

func (o ApiForSign) String() string

type ApiForThrottle

type ApiForThrottle struct {
	AuthType *string `json:"auth_type,omitempty"`

	GroupName *string `json:"group_name,omitempty"`

	PublishId *string `json:"publish_id,omitempty"`

	ThrottleApplyId *string `json:"throttle_apply_id,omitempty"`

	ApplyTime *sdktime.SdkTime `json:"apply_time,omitempty"`

	Remark *string `json:"remark,omitempty"`

	RunEnvId *string `json:"run_env_id,omitempty"`

	Type *int32 `json:"type,omitempty"`

	ThrottleName *string `json:"throttle_name,omitempty"`

	ReqUri *string `json:"req_uri,omitempty"`

	RunEnvName *string `json:"run_env_name,omitempty"`

	GroupId *string `json:"group_id,omitempty"`

	Name *string `json:"name,omitempty"`

	Id *string `json:"id,omitempty"`
}

func (ApiForThrottle) String

func (o ApiForThrottle) String() string

type ApiFunc

type ApiFunc struct {
	FunctionUrn string `json:"function_urn"`

	Remark *string `json:"remark,omitempty"`

	InvocationType ApiFuncInvocationType `json:"invocation_type"`

	Version *string `json:"version,omitempty"`

	Timeout int32 `json:"timeout"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`

	Id *string `json:"id,omitempty"`

	RegisterTime *sdktime.SdkTime `json:"register_time,omitempty"`

	Status *int32 `json:"status,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`
}

函数工作流后端详情

func (ApiFunc) String

func (o ApiFunc) String() string

type ApiFuncCreate

type ApiFuncCreate struct {
	FunctionUrn string `json:"function_urn"`

	Remark *string `json:"remark,omitempty"`

	InvocationType ApiFuncCreateInvocationType `json:"invocation_type"`

	Version *string `json:"version,omitempty"`

	Timeout int32 `json:"timeout"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`
}

函数后端详情

func (ApiFuncCreate) String

func (o ApiFuncCreate) String() string

type ApiFuncCreateInvocationType

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

func (ApiFuncCreateInvocationType) MarshalJSON

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

func (*ApiFuncCreateInvocationType) UnmarshalJSON

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

type ApiFuncCreateInvocationTypeEnum

type ApiFuncCreateInvocationTypeEnum struct {
	ASYNC ApiFuncCreateInvocationType
	SYNC  ApiFuncCreateInvocationType
}

func GetApiFuncCreateInvocationTypeEnum

func GetApiFuncCreateInvocationTypeEnum() ApiFuncCreateInvocationTypeEnum

type ApiFuncInvocationType

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

func (ApiFuncInvocationType) MarshalJSON

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

func (*ApiFuncInvocationType) UnmarshalJSON

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

type ApiFuncInvocationTypeEnum

type ApiFuncInvocationTypeEnum struct {
	ASYNC ApiFuncInvocationType
	SYNC  ApiFuncInvocationType
}

func GetApiFuncInvocationTypeEnum

func GetApiFuncInvocationTypeEnum() ApiFuncInvocationTypeEnum

type ApiGroupBase

type ApiGroupBase struct {
	Name string `json:"name"`

	Remark *string `json:"remark,omitempty"`
}

func (ApiGroupBase) String

func (o ApiGroupBase) String() string

type ApiGroupCommonInfo

type ApiGroupCommonInfo struct {
	Id string `json:"id"`

	Name string `json:"name"`

	Status ApiGroupCommonInfoStatus `json:"status"`

	SlDomain string `json:"sl_domain"`

	RegisterTime *sdktime.SdkTime `json:"register_time"`

	UpdateTime *sdktime.SdkTime `json:"update_time"`

	OnSellStatus int32 `json:"on_sell_status"`

	UrlDomains *[]UrlDomain `json:"url_domains,omitempty"`
}

func (ApiGroupCommonInfo) String

func (o ApiGroupCommonInfo) String() string

type ApiGroupCommonInfoStatus

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

func (ApiGroupCommonInfoStatus) MarshalJSON

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

func (*ApiGroupCommonInfoStatus) UnmarshalJSON

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

type ApiGroupCommonInfoStatusEnum

type ApiGroupCommonInfoStatusEnum struct {
	E_1 ApiGroupCommonInfoStatus
}

func GetApiGroupCommonInfoStatusEnum

func GetApiGroupCommonInfoStatusEnum() ApiGroupCommonInfoStatusEnum

type ApiGroupCreate

type ApiGroupCreate struct {
	Name string `json:"name"`

	Remark *string `json:"remark,omitempty"`

	RomaAppId *string `json:"roma_app_id,omitempty"`

	Version *string `json:"version,omitempty"`
}

func (ApiGroupCreate) String

func (o ApiGroupCreate) String() string

type ApiGroupInfoPage

type ApiGroupInfoPage struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Groups *[]ApiGroupInfoPage `json:"groups,omitempty"`
}

func (ApiGroupInfoPage) String

func (o ApiGroupInfoPage) String() string

type ApiInfo

type ApiInfo struct {
	Name string `json:"name"`

	Type ApiInfoType `json:"type"`

	Version *string `json:"version,omitempty"`

	ReqProtocol ApiInfoReqProtocol `json:"req_protocol"`

	ReqMethod ApiInfoReqMethod `json:"req_method"`

	ReqUri string `json:"req_uri"`

	AuthType ApiInfoAuthType `json:"auth_type"`

	AuthOpt *AuthOpt `json:"auth_opt,omitempty"`

	Cors *bool `json:"cors,omitempty"`

	MatchMode *ApiInfoMatchMode `json:"match_mode,omitempty"`

	BackendType ApiInfoBackendType `json:"backend_type"`

	Remark *string `json:"remark,omitempty"`

	GroupId string `json:"group_id"`

	BodyRemark *string `json:"body_remark,omitempty"`

	ResultNormalSample *string `json:"result_normal_sample,omitempty"`

	ResultFailureSample *string `json:"result_failure_sample,omitempty"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`

	Tags *[]string `json:"tags,omitempty"`

	ResponseId *string `json:"response_id,omitempty"`

	RomaAppId *string `json:"roma_app_id,omitempty"`

	DomainName *string `json:"domain_name,omitempty"`

	Tag *string `json:"tag,omitempty"`

	Id *string `json:"id,omitempty"`

	Status *int32 `json:"status,omitempty"`

	ArrangeNecessary *int32 `json:"arrange_necessary,omitempty"`

	RegisterTime *sdktime.SdkTime `json:"register_time,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`

	GroupName *string `json:"group_name,omitempty"`

	GroupVersion *string `json:"group_version,omitempty"`

	RunEnvId *string `json:"run_env_id,omitempty"`

	RunEnvName *string `json:"run_env_name,omitempty"`

	PublishId *string `json:"publish_id,omitempty"`

	FuncInfo *ApiFunc `json:"func_info,omitempty"`

	MockInfo *ApiMock `json:"mock_info,omitempty"`

	ReqParams *[]ReqParam `json:"req_params,omitempty"`

	BackendParams *[]BackendParam `json:"backend_params,omitempty"`

	PolicyFunctions *[]ApiPolicyFunctionResp `json:"policy_functions,omitempty"`

	PolicyMocks *[]ApiPolicyMockResp `json:"policy_mocks,omitempty"`

	BackendApi *BackendApi `json:"backend_api,omitempty"`

	PolicyHttps *[]ApiPolicyHttpResp `json:"policy_https,omitempty"`
}

func (ApiInfo) String

func (o ApiInfo) String() string

type ApiInfoAuthType

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

func (ApiInfoAuthType) MarshalJSON

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

func (*ApiInfoAuthType) UnmarshalJSON

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

type ApiInfoAuthTypeEnum

type ApiInfoAuthTypeEnum struct {
	NONE       ApiInfoAuthType
	APP        ApiInfoAuthType
	IAM        ApiInfoAuthType
	AUTHORIZER ApiInfoAuthType
}

func GetApiInfoAuthTypeEnum

func GetApiInfoAuthTypeEnum() ApiInfoAuthTypeEnum

type ApiInfoBackendType

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

func (ApiInfoBackendType) MarshalJSON

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

func (*ApiInfoBackendType) UnmarshalJSON

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

type ApiInfoBackendTypeEnum

type ApiInfoBackendTypeEnum struct {
	HTTP     ApiInfoBackendType
	FUNCTION ApiInfoBackendType
	MOCK     ApiInfoBackendType
}

func GetApiInfoBackendTypeEnum

func GetApiInfoBackendTypeEnum() ApiInfoBackendTypeEnum

type ApiInfoMatchMode

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

func (ApiInfoMatchMode) MarshalJSON

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

func (*ApiInfoMatchMode) UnmarshalJSON

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

type ApiInfoMatchModeEnum

type ApiInfoMatchModeEnum struct {
	SWA    ApiInfoMatchMode
	NORMAL ApiInfoMatchMode
}

func GetApiInfoMatchModeEnum

func GetApiInfoMatchModeEnum() ApiInfoMatchModeEnum

type ApiInfoPerPage

type ApiInfoPerPage struct {
	Name string `json:"name"`

	Type ApiInfoPerPageType `json:"type"`

	Version *string `json:"version,omitempty"`

	ReqProtocol ApiInfoPerPageReqProtocol `json:"req_protocol"`

	ReqMethod ApiInfoPerPageReqMethod `json:"req_method"`

	ReqUri string `json:"req_uri"`

	AuthType ApiInfoPerPageAuthType `json:"auth_type"`

	AuthOpt *AuthOpt `json:"auth_opt,omitempty"`

	Cors *bool `json:"cors,omitempty"`

	MatchMode *ApiInfoPerPageMatchMode `json:"match_mode,omitempty"`

	BackendType ApiInfoPerPageBackendType `json:"backend_type"`

	Remark *string `json:"remark,omitempty"`

	GroupId string `json:"group_id"`

	BodyRemark *string `json:"body_remark,omitempty"`

	ResultNormalSample *string `json:"result_normal_sample,omitempty"`

	ResultFailureSample *string `json:"result_failure_sample,omitempty"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`

	Tags *[]string `json:"tags,omitempty"`

	ResponseId *string `json:"response_id,omitempty"`

	RomaAppId *string `json:"roma_app_id,omitempty"`

	DomainName *string `json:"domain_name,omitempty"`

	Tag *string `json:"tag,omitempty"`

	Id *string `json:"id,omitempty"`

	Status *int32 `json:"status,omitempty"`

	ArrangeNecessary *int32 `json:"arrange_necessary,omitempty"`

	RegisterTime *sdktime.SdkTime `json:"register_time,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`

	GroupName *string `json:"group_name,omitempty"`

	GroupVersion *string `json:"group_version,omitempty"`

	RunEnvId *string `json:"run_env_id,omitempty"`

	RunEnvName *string `json:"run_env_name,omitempty"`

	PublishId *string `json:"publish_id,omitempty"`

	ReqParams *[]ReqParam `json:"req_params,omitempty"`
}

func (ApiInfoPerPage) String

func (o ApiInfoPerPage) String() string

type ApiInfoPerPageAuthType

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

func (ApiInfoPerPageAuthType) MarshalJSON

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

func (*ApiInfoPerPageAuthType) UnmarshalJSON

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

type ApiInfoPerPageAuthTypeEnum

type ApiInfoPerPageAuthTypeEnum struct {
	NONE       ApiInfoPerPageAuthType
	APP        ApiInfoPerPageAuthType
	IAM        ApiInfoPerPageAuthType
	AUTHORIZER ApiInfoPerPageAuthType
}

func GetApiInfoPerPageAuthTypeEnum

func GetApiInfoPerPageAuthTypeEnum() ApiInfoPerPageAuthTypeEnum

type ApiInfoPerPageBackendType

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

func (ApiInfoPerPageBackendType) MarshalJSON

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

func (*ApiInfoPerPageBackendType) UnmarshalJSON

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

type ApiInfoPerPageBackendTypeEnum

type ApiInfoPerPageBackendTypeEnum struct {
	HTTP     ApiInfoPerPageBackendType
	FUNCTION ApiInfoPerPageBackendType
	MOCK     ApiInfoPerPageBackendType
}

func GetApiInfoPerPageBackendTypeEnum

func GetApiInfoPerPageBackendTypeEnum() ApiInfoPerPageBackendTypeEnum

type ApiInfoPerPageMatchMode

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

func (ApiInfoPerPageMatchMode) MarshalJSON

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

func (*ApiInfoPerPageMatchMode) UnmarshalJSON

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

type ApiInfoPerPageMatchModeEnum

type ApiInfoPerPageMatchModeEnum struct {
	SWA    ApiInfoPerPageMatchMode
	NORMAL ApiInfoPerPageMatchMode
}

func GetApiInfoPerPageMatchModeEnum

func GetApiInfoPerPageMatchModeEnum() ApiInfoPerPageMatchModeEnum

type ApiInfoPerPageReqMethod

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

func (ApiInfoPerPageReqMethod) MarshalJSON

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

func (*ApiInfoPerPageReqMethod) UnmarshalJSON

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

type ApiInfoPerPageReqProtocol

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

func (ApiInfoPerPageReqProtocol) MarshalJSON

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

func (*ApiInfoPerPageReqProtocol) UnmarshalJSON

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

type ApiInfoPerPageReqProtocolEnum

type ApiInfoPerPageReqProtocolEnum struct {
	HTTP  ApiInfoPerPageReqProtocol
	HTTPS ApiInfoPerPageReqProtocol
	BOTH  ApiInfoPerPageReqProtocol
}

func GetApiInfoPerPageReqProtocolEnum

func GetApiInfoPerPageReqProtocolEnum() ApiInfoPerPageReqProtocolEnum

type ApiInfoPerPageType

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

func (ApiInfoPerPageType) MarshalJSON

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

func (*ApiInfoPerPageType) UnmarshalJSON

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

type ApiInfoPerPageTypeEnum

type ApiInfoPerPageTypeEnum struct {
	E_1 ApiInfoPerPageType
	E_2 ApiInfoPerPageType
}

func GetApiInfoPerPageTypeEnum

func GetApiInfoPerPageTypeEnum() ApiInfoPerPageTypeEnum

type ApiInfoReqMethod

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

func (ApiInfoReqMethod) MarshalJSON

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

func (*ApiInfoReqMethod) UnmarshalJSON

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

type ApiInfoReqMethodEnum

type ApiInfoReqMethodEnum struct {
	GET     ApiInfoReqMethod
	POST    ApiInfoReqMethod
	PUT     ApiInfoReqMethod
	DELETE  ApiInfoReqMethod
	HEAD    ApiInfoReqMethod
	PATCH   ApiInfoReqMethod
	OPTIONS ApiInfoReqMethod
	ANY     ApiInfoReqMethod
}

func GetApiInfoReqMethodEnum

func GetApiInfoReqMethodEnum() ApiInfoReqMethodEnum

type ApiInfoReqProtocol

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

func (ApiInfoReqProtocol) MarshalJSON

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

func (*ApiInfoReqProtocol) UnmarshalJSON

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

type ApiInfoReqProtocolEnum

type ApiInfoReqProtocolEnum struct {
	HTTP  ApiInfoReqProtocol
	HTTPS ApiInfoReqProtocol
	BOTH  ApiInfoReqProtocol
}

func GetApiInfoReqProtocolEnum

func GetApiInfoReqProtocolEnum() ApiInfoReqProtocolEnum

type ApiInfoType

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

func (ApiInfoType) MarshalJSON

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

func (*ApiInfoType) UnmarshalJSON

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

type ApiInfoTypeEnum

type ApiInfoTypeEnum struct {
	E_1 ApiInfoType
	E_2 ApiInfoType
}

func GetApiInfoTypeEnum

func GetApiInfoTypeEnum() ApiInfoTypeEnum

type ApiMock

type ApiMock struct {
	Remark *string `json:"remark,omitempty"`

	ResultContent *string `json:"result_content,omitempty"`

	Version *string `json:"version,omitempty"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`

	Id *string `json:"id,omitempty"`

	RegisterTime *sdktime.SdkTime `json:"register_time,omitempty"`

	Status *int32 `json:"status,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`
}

mock后端详情

func (ApiMock) String

func (o ApiMock) String() string

type ApiMockCreate

type ApiMockCreate struct {
	Remark *string `json:"remark,omitempty"`

	ResultContent *string `json:"result_content,omitempty"`

	Version *string `json:"version,omitempty"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`
}

mock后端详情

func (ApiMockCreate) String

func (o ApiMockCreate) String() string

type ApiOutline

type ApiOutline struct {
	AuthType *string `json:"auth_type,omitempty"`

	RunEnvName *string `json:"run_env_name,omitempty"`

	GroupName *string `json:"group_name,omitempty"`

	PublishId *string `json:"publish_id,omitempty"`

	GroupId *string `json:"group_id,omitempty"`

	Name *string `json:"name,omitempty"`

	Remark *string `json:"remark,omitempty"`

	RunEnvId *string `json:"run_env_id,omitempty"`

	Id *string `json:"id,omitempty"`

	ReqUri *string `json:"req_uri,omitempty"`
}

func (ApiOutline) String

func (o ApiOutline) String() string

type ApiPolicyFunctionBase

type ApiPolicyFunctionBase struct {
	FunctionUrn string `json:"function_urn"`

	InvocationType ApiPolicyFunctionBaseInvocationType `json:"invocation_type"`

	Version *string `json:"version,omitempty"`

	Timeout *int32 `json:"timeout,omitempty"`
}

func (ApiPolicyFunctionBase) String

func (o ApiPolicyFunctionBase) String() string

type ApiPolicyFunctionBaseInvocationType

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

func (ApiPolicyFunctionBaseInvocationType) MarshalJSON

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

func (*ApiPolicyFunctionBaseInvocationType) UnmarshalJSON

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

type ApiPolicyFunctionBaseInvocationTypeEnum

type ApiPolicyFunctionBaseInvocationTypeEnum struct {
	ASYNC ApiPolicyFunctionBaseInvocationType
	SYNC  ApiPolicyFunctionBaseInvocationType
}

func GetApiPolicyFunctionBaseInvocationTypeEnum

func GetApiPolicyFunctionBaseInvocationTypeEnum() ApiPolicyFunctionBaseInvocationTypeEnum

type ApiPolicyFunctionCreate

type ApiPolicyFunctionCreate struct {
	FunctionUrn string `json:"function_urn"`

	InvocationType ApiPolicyFunctionCreateInvocationType `json:"invocation_type"`

	Version *string `json:"version,omitempty"`

	Timeout *int32 `json:"timeout,omitempty"`

	EffectMode ApiPolicyFunctionCreateEffectMode `json:"effect_mode"`

	Name string `json:"name"`

	BackendParams *[]BackendParamBase `json:"backend_params,omitempty"`

	Conditions []ApiConditionBase `json:"conditions"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`
}

func (ApiPolicyFunctionCreate) String

func (o ApiPolicyFunctionCreate) String() string

type ApiPolicyFunctionCreateEffectMode

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

func (ApiPolicyFunctionCreateEffectMode) MarshalJSON

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

func (*ApiPolicyFunctionCreateEffectMode) UnmarshalJSON

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

type ApiPolicyFunctionCreateEffectModeEnum

type ApiPolicyFunctionCreateEffectModeEnum struct {
	ALL ApiPolicyFunctionCreateEffectMode
	ANY ApiPolicyFunctionCreateEffectMode
}

func GetApiPolicyFunctionCreateEffectModeEnum

func GetApiPolicyFunctionCreateEffectModeEnum() ApiPolicyFunctionCreateEffectModeEnum

type ApiPolicyFunctionCreateInvocationType

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

func (ApiPolicyFunctionCreateInvocationType) MarshalJSON

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

func (*ApiPolicyFunctionCreateInvocationType) UnmarshalJSON

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

type ApiPolicyFunctionCreateInvocationTypeEnum

type ApiPolicyFunctionCreateInvocationTypeEnum struct {
	ASYNC ApiPolicyFunctionCreateInvocationType
	SYNC  ApiPolicyFunctionCreateInvocationType
}

func GetApiPolicyFunctionCreateInvocationTypeEnum

func GetApiPolicyFunctionCreateInvocationTypeEnum() ApiPolicyFunctionCreateInvocationTypeEnum

type ApiPolicyFunctionResp

type ApiPolicyFunctionResp struct {
	FunctionUrn string `json:"function_urn"`

	InvocationType ApiPolicyFunctionRespInvocationType `json:"invocation_type"`

	Version *string `json:"version,omitempty"`

	Timeout *int32 `json:"timeout,omitempty"`

	Id *string `json:"id,omitempty"`

	EffectMode ApiPolicyFunctionRespEffectMode `json:"effect_mode"`

	Name string `json:"name"`

	BackendParams *[]BackendParam `json:"backend_params,omitempty"`

	Conditions []CoditionResp `json:"conditions"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`
}

func (ApiPolicyFunctionResp) String

func (o ApiPolicyFunctionResp) String() string

type ApiPolicyFunctionRespEffectMode

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

func (ApiPolicyFunctionRespEffectMode) MarshalJSON

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

func (*ApiPolicyFunctionRespEffectMode) UnmarshalJSON

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

type ApiPolicyFunctionRespEffectModeEnum

type ApiPolicyFunctionRespEffectModeEnum struct {
	ALL ApiPolicyFunctionRespEffectMode
	ANY ApiPolicyFunctionRespEffectMode
}

func GetApiPolicyFunctionRespEffectModeEnum

func GetApiPolicyFunctionRespEffectModeEnum() ApiPolicyFunctionRespEffectModeEnum

type ApiPolicyFunctionRespInvocationType

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

func (ApiPolicyFunctionRespInvocationType) MarshalJSON

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

func (*ApiPolicyFunctionRespInvocationType) UnmarshalJSON

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

type ApiPolicyFunctionRespInvocationTypeEnum

type ApiPolicyFunctionRespInvocationTypeEnum struct {
	ASYNC ApiPolicyFunctionRespInvocationType
	SYNC  ApiPolicyFunctionRespInvocationType
}

func GetApiPolicyFunctionRespInvocationTypeEnum

func GetApiPolicyFunctionRespInvocationTypeEnum() ApiPolicyFunctionRespInvocationTypeEnum

type ApiPolicyHttpBase

type ApiPolicyHttpBase struct {
	UrlDomain *string `json:"url_domain,omitempty"`

	ReqProtocol ApiPolicyHttpBaseReqProtocol `json:"req_protocol"`

	ReqMethod ApiPolicyHttpBaseReqMethod `json:"req_method"`

	ReqUri string `json:"req_uri"`

	Timeout *int32 `json:"timeout,omitempty"`
}

func (ApiPolicyHttpBase) String

func (o ApiPolicyHttpBase) String() string

type ApiPolicyHttpBaseReqMethod

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

func (ApiPolicyHttpBaseReqMethod) MarshalJSON

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

func (*ApiPolicyHttpBaseReqMethod) UnmarshalJSON

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

type ApiPolicyHttpBaseReqProtocol

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

func (ApiPolicyHttpBaseReqProtocol) MarshalJSON

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

func (*ApiPolicyHttpBaseReqProtocol) UnmarshalJSON

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

type ApiPolicyHttpBaseReqProtocolEnum

type ApiPolicyHttpBaseReqProtocolEnum struct {
	HTTP  ApiPolicyHttpBaseReqProtocol
	HTTPS ApiPolicyHttpBaseReqProtocol
}

func GetApiPolicyHttpBaseReqProtocolEnum

func GetApiPolicyHttpBaseReqProtocolEnum() ApiPolicyHttpBaseReqProtocolEnum

type ApiPolicyHttpCreate

type ApiPolicyHttpCreate struct {
	UrlDomain *string `json:"url_domain,omitempty"`

	ReqProtocol ApiPolicyHttpCreateReqProtocol `json:"req_protocol"`

	ReqMethod ApiPolicyHttpCreateReqMethod `json:"req_method"`

	ReqUri string `json:"req_uri"`

	Timeout *int32 `json:"timeout,omitempty"`

	EffectMode ApiPolicyHttpCreateEffectMode `json:"effect_mode"`

	Name string `json:"name"`

	BackendParams *[]BackendParamBase `json:"backend_params,omitempty"`

	Conditions []ApiConditionBase `json:"conditions"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`

	VpcChannelInfo *ApiBackendVpcReq `json:"vpc_channel_info,omitempty"`

	VpcChannelStatus *ApiPolicyHttpCreateVpcChannelStatus `json:"vpc_channel_status,omitempty"`
}

func (ApiPolicyHttpCreate) String

func (o ApiPolicyHttpCreate) String() string

type ApiPolicyHttpCreateEffectMode

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

func (ApiPolicyHttpCreateEffectMode) MarshalJSON

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

func (*ApiPolicyHttpCreateEffectMode) UnmarshalJSON

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

type ApiPolicyHttpCreateEffectModeEnum

type ApiPolicyHttpCreateEffectModeEnum struct {
	ALL ApiPolicyHttpCreateEffectMode
	ANY ApiPolicyHttpCreateEffectMode
}

func GetApiPolicyHttpCreateEffectModeEnum

func GetApiPolicyHttpCreateEffectModeEnum() ApiPolicyHttpCreateEffectModeEnum

type ApiPolicyHttpCreateReqMethod

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

func (ApiPolicyHttpCreateReqMethod) MarshalJSON

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

func (*ApiPolicyHttpCreateReqMethod) UnmarshalJSON

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

type ApiPolicyHttpCreateReqProtocol

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

func (ApiPolicyHttpCreateReqProtocol) MarshalJSON

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

func (*ApiPolicyHttpCreateReqProtocol) UnmarshalJSON

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

type ApiPolicyHttpCreateReqProtocolEnum

type ApiPolicyHttpCreateReqProtocolEnum struct {
	HTTP  ApiPolicyHttpCreateReqProtocol
	HTTPS ApiPolicyHttpCreateReqProtocol
}

func GetApiPolicyHttpCreateReqProtocolEnum

func GetApiPolicyHttpCreateReqProtocolEnum() ApiPolicyHttpCreateReqProtocolEnum

type ApiPolicyHttpCreateVpcChannelStatus

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

func (ApiPolicyHttpCreateVpcChannelStatus) MarshalJSON

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

func (*ApiPolicyHttpCreateVpcChannelStatus) UnmarshalJSON

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

type ApiPolicyHttpCreateVpcChannelStatusEnum

type ApiPolicyHttpCreateVpcChannelStatusEnum struct {
	E_1 ApiPolicyHttpCreateVpcChannelStatus
	E_2 ApiPolicyHttpCreateVpcChannelStatus
}

func GetApiPolicyHttpCreateVpcChannelStatusEnum

func GetApiPolicyHttpCreateVpcChannelStatusEnum() ApiPolicyHttpCreateVpcChannelStatusEnum

type ApiPolicyHttpResp

type ApiPolicyHttpResp struct {
	Id *string `json:"id,omitempty"`

	EffectMode ApiPolicyHttpRespEffectMode `json:"effect_mode"`

	Name string `json:"name"`

	BackendParams *[]BackendParam `json:"backend_params,omitempty"`

	Conditions []CoditionResp `json:"conditions"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`

	UrlDomain *string `json:"url_domain,omitempty"`

	ReqProtocol ApiPolicyHttpRespReqProtocol `json:"req_protocol"`

	ReqMethod ApiPolicyHttpRespReqMethod `json:"req_method"`

	ReqUri string `json:"req_uri"`

	Timeout *int32 `json:"timeout,omitempty"`

	VpcChannelInfo *VpcInfo `json:"vpc_channel_info,omitempty"`

	VpcChannelStatus *int32 `json:"vpc_channel_status,omitempty"`
}

func (ApiPolicyHttpResp) String

func (o ApiPolicyHttpResp) String() string

type ApiPolicyHttpRespEffectMode

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

func (ApiPolicyHttpRespEffectMode) MarshalJSON

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

func (*ApiPolicyHttpRespEffectMode) UnmarshalJSON

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

type ApiPolicyHttpRespEffectModeEnum

type ApiPolicyHttpRespEffectModeEnum struct {
	ALL ApiPolicyHttpRespEffectMode
	ANY ApiPolicyHttpRespEffectMode
}

func GetApiPolicyHttpRespEffectModeEnum

func GetApiPolicyHttpRespEffectModeEnum() ApiPolicyHttpRespEffectModeEnum

type ApiPolicyHttpRespReqMethod

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

func (ApiPolicyHttpRespReqMethod) MarshalJSON

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

func (*ApiPolicyHttpRespReqMethod) UnmarshalJSON

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

type ApiPolicyHttpRespReqProtocol

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

func (ApiPolicyHttpRespReqProtocol) MarshalJSON

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

func (*ApiPolicyHttpRespReqProtocol) UnmarshalJSON

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

type ApiPolicyHttpRespReqProtocolEnum

type ApiPolicyHttpRespReqProtocolEnum struct {
	HTTP  ApiPolicyHttpRespReqProtocol
	HTTPS ApiPolicyHttpRespReqProtocol
}

func GetApiPolicyHttpRespReqProtocolEnum

func GetApiPolicyHttpRespReqProtocolEnum() ApiPolicyHttpRespReqProtocolEnum

type ApiPolicyMockBase

type ApiPolicyMockBase struct {
	ResultContent *string `json:"result_content,omitempty"`
}

func (ApiPolicyMockBase) String

func (o ApiPolicyMockBase) String() string

type ApiPolicyMockCreate

type ApiPolicyMockCreate struct {
	ResultContent *string `json:"result_content,omitempty"`

	EffectMode ApiPolicyMockCreateEffectMode `json:"effect_mode"`

	Name string `json:"name"`

	BackendParams *[]BackendParamBase `json:"backend_params,omitempty"`

	Conditions []ApiConditionBase `json:"conditions"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`
}

func (ApiPolicyMockCreate) String

func (o ApiPolicyMockCreate) String() string

type ApiPolicyMockCreateEffectMode

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

func (ApiPolicyMockCreateEffectMode) MarshalJSON

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

func (*ApiPolicyMockCreateEffectMode) UnmarshalJSON

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

type ApiPolicyMockCreateEffectModeEnum

type ApiPolicyMockCreateEffectModeEnum struct {
	ALL ApiPolicyMockCreateEffectMode
	ANY ApiPolicyMockCreateEffectMode
}

func GetApiPolicyMockCreateEffectModeEnum

func GetApiPolicyMockCreateEffectModeEnum() ApiPolicyMockCreateEffectModeEnum

type ApiPolicyMockResp

type ApiPolicyMockResp struct {
	Id *string `json:"id,omitempty"`

	EffectMode ApiPolicyMockRespEffectMode `json:"effect_mode"`

	Name string `json:"name"`

	BackendParams *[]BackendParam `json:"backend_params,omitempty"`

	Conditions []CoditionResp `json:"conditions"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`

	ResultContent *string `json:"result_content,omitempty"`
}

func (ApiPolicyMockResp) String

func (o ApiPolicyMockResp) String() string

type ApiPolicyMockRespEffectMode

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

func (ApiPolicyMockRespEffectMode) MarshalJSON

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

func (*ApiPolicyMockRespEffectMode) UnmarshalJSON

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

type ApiPolicyMockRespEffectModeEnum

type ApiPolicyMockRespEffectModeEnum struct {
	ALL ApiPolicyMockRespEffectMode
	ANY ApiPolicyMockRespEffectMode
}

func GetApiPolicyMockRespEffectModeEnum

func GetApiPolicyMockRespEffectModeEnum() ApiPolicyMockRespEffectModeEnum

type ApiPolicyReqBase

type ApiPolicyReqBase struct {
	EffectMode ApiPolicyReqBaseEffectMode `json:"effect_mode"`

	Name string `json:"name"`

	BackendParams *[]BackendParamBase `json:"backend_params,omitempty"`

	Conditions []ApiConditionBase `json:"conditions"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`
}

func (ApiPolicyReqBase) String

func (o ApiPolicyReqBase) String() string

type ApiPolicyReqBaseEffectMode

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

func (ApiPolicyReqBaseEffectMode) MarshalJSON

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

func (*ApiPolicyReqBaseEffectMode) UnmarshalJSON

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

type ApiPolicyReqBaseEffectModeEnum

type ApiPolicyReqBaseEffectModeEnum struct {
	ALL ApiPolicyReqBaseEffectMode
	ANY ApiPolicyReqBaseEffectMode
}

func GetApiPolicyReqBaseEffectModeEnum

func GetApiPolicyReqBaseEffectModeEnum() ApiPolicyReqBaseEffectModeEnum

type ApiPolicyRespBase

type ApiPolicyRespBase struct {
	Id *string `json:"id,omitempty"`

	EffectMode ApiPolicyRespBaseEffectMode `json:"effect_mode"`

	Name string `json:"name"`

	BackendParams *[]BackendParam `json:"backend_params,omitempty"`

	Conditions []CoditionResp `json:"conditions"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`
}

func (ApiPolicyRespBase) String

func (o ApiPolicyRespBase) String() string

type ApiPolicyRespBaseEffectMode

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

func (ApiPolicyRespBaseEffectMode) MarshalJSON

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

func (*ApiPolicyRespBaseEffectMode) UnmarshalJSON

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

type ApiPolicyRespBaseEffectModeEnum

type ApiPolicyRespBaseEffectModeEnum struct {
	ALL ApiPolicyRespBaseEffectMode
	ANY ApiPolicyRespBaseEffectMode
}

func GetApiPolicyRespBaseEffectModeEnum

func GetApiPolicyRespBaseEffectModeEnum() ApiPolicyRespBaseEffectModeEnum

type ApiRespBaseInfo

type ApiRespBaseInfo struct {
	Name string `json:"name"`

	Type ApiRespBaseInfoType `json:"type"`

	Version *string `json:"version,omitempty"`

	ReqProtocol ApiRespBaseInfoReqProtocol `json:"req_protocol"`

	ReqMethod ApiRespBaseInfoReqMethod `json:"req_method"`

	ReqUri string `json:"req_uri"`

	AuthType ApiRespBaseInfoAuthType `json:"auth_type"`

	AuthOpt *AuthOpt `json:"auth_opt,omitempty"`

	Cors *bool `json:"cors,omitempty"`

	MatchMode *ApiRespBaseInfoMatchMode `json:"match_mode,omitempty"`

	BackendType ApiRespBaseInfoBackendType `json:"backend_type"`

	Remark *string `json:"remark,omitempty"`

	GroupId string `json:"group_id"`

	BodyRemark *string `json:"body_remark,omitempty"`

	ResultNormalSample *string `json:"result_normal_sample,omitempty"`

	ResultFailureSample *string `json:"result_failure_sample,omitempty"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`

	Tags *[]string `json:"tags,omitempty"`

	ResponseId *string `json:"response_id,omitempty"`

	RomaAppId *string `json:"roma_app_id,omitempty"`

	DomainName *string `json:"domain_name,omitempty"`

	Tag *string `json:"tag,omitempty"`

	Id *string `json:"id,omitempty"`

	Status *int32 `json:"status,omitempty"`

	ArrangeNecessary *int32 `json:"arrange_necessary,omitempty"`

	RegisterTime *sdktime.SdkTime `json:"register_time,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`

	GroupName *string `json:"group_name,omitempty"`

	GroupVersion *string `json:"group_version,omitempty"`

	RunEnvId *string `json:"run_env_id,omitempty"`

	RunEnvName *string `json:"run_env_name,omitempty"`

	PublishId *string `json:"publish_id,omitempty"`
}

func (ApiRespBaseInfo) String

func (o ApiRespBaseInfo) String() string

type ApiRespBaseInfoAuthType

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

func (ApiRespBaseInfoAuthType) MarshalJSON

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

func (*ApiRespBaseInfoAuthType) UnmarshalJSON

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

type ApiRespBaseInfoAuthTypeEnum

type ApiRespBaseInfoAuthTypeEnum struct {
	NONE       ApiRespBaseInfoAuthType
	APP        ApiRespBaseInfoAuthType
	IAM        ApiRespBaseInfoAuthType
	AUTHORIZER ApiRespBaseInfoAuthType
}

func GetApiRespBaseInfoAuthTypeEnum

func GetApiRespBaseInfoAuthTypeEnum() ApiRespBaseInfoAuthTypeEnum

type ApiRespBaseInfoBackendType

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

func (ApiRespBaseInfoBackendType) MarshalJSON

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

func (*ApiRespBaseInfoBackendType) UnmarshalJSON

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

type ApiRespBaseInfoBackendTypeEnum

type ApiRespBaseInfoBackendTypeEnum struct {
	HTTP     ApiRespBaseInfoBackendType
	FUNCTION ApiRespBaseInfoBackendType
	MOCK     ApiRespBaseInfoBackendType
}

func GetApiRespBaseInfoBackendTypeEnum

func GetApiRespBaseInfoBackendTypeEnum() ApiRespBaseInfoBackendTypeEnum

type ApiRespBaseInfoMatchMode

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

func (ApiRespBaseInfoMatchMode) MarshalJSON

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

func (*ApiRespBaseInfoMatchMode) UnmarshalJSON

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

type ApiRespBaseInfoMatchModeEnum

type ApiRespBaseInfoMatchModeEnum struct {
	SWA    ApiRespBaseInfoMatchMode
	NORMAL ApiRespBaseInfoMatchMode
}

func GetApiRespBaseInfoMatchModeEnum

func GetApiRespBaseInfoMatchModeEnum() ApiRespBaseInfoMatchModeEnum

type ApiRespBaseInfoReqMethod

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

func (ApiRespBaseInfoReqMethod) MarshalJSON

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

func (*ApiRespBaseInfoReqMethod) UnmarshalJSON

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

type ApiRespBaseInfoReqProtocol

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

func (ApiRespBaseInfoReqProtocol) MarshalJSON

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

func (*ApiRespBaseInfoReqProtocol) UnmarshalJSON

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

type ApiRespBaseInfoReqProtocolEnum

type ApiRespBaseInfoReqProtocolEnum struct {
	HTTP  ApiRespBaseInfoReqProtocol
	HTTPS ApiRespBaseInfoReqProtocol
	BOTH  ApiRespBaseInfoReqProtocol
}

func GetApiRespBaseInfoReqProtocolEnum

func GetApiRespBaseInfoReqProtocolEnum() ApiRespBaseInfoReqProtocolEnum

type ApiRespBaseInfoType

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

func (ApiRespBaseInfoType) MarshalJSON

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

func (*ApiRespBaseInfoType) UnmarshalJSON

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

type ApiRespBaseInfoTypeEnum

type ApiRespBaseInfoTypeEnum struct {
	E_1 ApiRespBaseInfoType
	E_2 ApiRespBaseInfoType
}

func GetApiRespBaseInfoTypeEnum

func GetApiRespBaseInfoTypeEnum() ApiRespBaseInfoTypeEnum

type ApiVersion

type ApiVersion struct {
	VersionId *string `json:"version_id,omitempty"`
}

func (ApiVersion) String

func (o ApiVersion) String() string

type ApiVersionResp

type ApiVersionResp struct {
	VersionId *string `json:"version_id,omitempty"`

	VersionNo *string `json:"version_no,omitempty"`

	ApiId *string `json:"api_id,omitempty"`

	EnvId *string `json:"env_id,omitempty"`

	EnvName *string `json:"env_name,omitempty"`

	Remark *string `json:"remark,omitempty"`

	PublishTime *sdktime.SdkTime `json:"publish_time,omitempty"`

	Status *ApiVersionRespStatus `json:"status,omitempty"`
}

func (ApiVersionResp) String

func (o ApiVersionResp) String() string

type ApiVersionRespStatus

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

func (ApiVersionRespStatus) MarshalJSON

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

func (*ApiVersionRespStatus) UnmarshalJSON

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

type ApiVersionRespStatusEnum

type ApiVersionRespStatusEnum struct {
	E_1 ApiVersionRespStatus
	E_2 ApiVersionRespStatus
}

func GetApiVersionRespStatusEnum

func GetApiVersionRespStatusEnum() ApiVersionRespStatusEnum

type AppBaseInfo

type AppBaseInfo struct {
	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	Remark *string `json:"remark,omitempty"`
}

func (AppBaseInfo) String

func (o AppBaseInfo) String() string

type AppCodeBaseInfo

type AppCodeBaseInfo struct {
	AppCode string `json:"app_code"`

	Id *string `json:"id,omitempty"`

	AppId *string `json:"app_id,omitempty"`

	CreateTime *string `json:"create_time,omitempty"`
}

func (AppCodeBaseInfo) String

func (o AppCodeBaseInfo) String() string

type AppCodeCreate

type AppCodeCreate struct {
	AppCode string `json:"app_code"`
}

func (AppCodeCreate) String

func (o AppCodeCreate) String() string

type AppCreate

type AppCreate struct {
	Name string `json:"name"`

	Remark *string `json:"remark,omitempty"`

	AppKey *string `json:"app_key,omitempty"`

	AppSecret *string `json:"app_secret,omitempty"`
}

func (AppCreate) String

func (o AppCreate) String() string

type AppInfo

type AppInfo struct {
	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	Remark *string `json:"remark,omitempty"`

	Creator *AppInfoCreator `json:"creator,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`

	AppKey *string `json:"app_key,omitempty"`

	AppSecret *string `json:"app_secret,omitempty"`

	RegisterTime *sdktime.SdkTime `json:"register_time,omitempty"`

	Status *AppInfoStatus `json:"status,omitempty"`

	AppType *AppInfoAppType `json:"app_type,omitempty"`

	RomaAppType *string `json:"roma_app_type,omitempty"`
}

func (AppInfo) String

func (o AppInfo) String() string

type AppInfoAppType

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

func (AppInfoAppType) MarshalJSON

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

func (*AppInfoAppType) UnmarshalJSON

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

type AppInfoAppTypeEnum

type AppInfoAppTypeEnum struct {
	APIG AppInfoAppType
	ROMA AppInfoAppType
}

func GetAppInfoAppTypeEnum

func GetAppInfoAppTypeEnum() AppInfoAppTypeEnum

type AppInfoCreator

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

func (AppInfoCreator) MarshalJSON

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

func (*AppInfoCreator) UnmarshalJSON

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

type AppInfoCreatorEnum

type AppInfoCreatorEnum struct {
	USER   AppInfoCreator
	MARKET AppInfoCreator
}

func GetAppInfoCreatorEnum

func GetAppInfoCreatorEnum() AppInfoCreatorEnum

type AppInfoStatus

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

func (AppInfoStatus) MarshalJSON

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

func (*AppInfoStatus) UnmarshalJSON

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

type AppInfoStatusEnum

type AppInfoStatusEnum struct {
	E_1 AppInfoStatus
}

func GetAppInfoStatusEnum

func GetAppInfoStatusEnum() AppInfoStatusEnum

type AppInfoWithBindNum

type AppInfoWithBindNum struct {
	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	Remark *string `json:"remark,omitempty"`

	Creator *AppInfoWithBindNumCreator `json:"creator,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`

	AppKey *string `json:"app_key,omitempty"`

	AppSecret *string `json:"app_secret,omitempty"`

	RegisterTime *sdktime.SdkTime `json:"register_time,omitempty"`

	Status *AppInfoWithBindNumStatus `json:"status,omitempty"`

	AppType *AppInfoWithBindNumAppType `json:"app_type,omitempty"`

	RomaAppType *string `json:"roma_app_type,omitempty"`

	BindNum *int32 `json:"bind_num,omitempty"`
}

func (AppInfoWithBindNum) String

func (o AppInfoWithBindNum) String() string

type AppInfoWithBindNumAppType

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

func (AppInfoWithBindNumAppType) MarshalJSON

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

func (*AppInfoWithBindNumAppType) UnmarshalJSON

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

type AppInfoWithBindNumAppTypeEnum

type AppInfoWithBindNumAppTypeEnum struct {
	APIG AppInfoWithBindNumAppType
	ROMA AppInfoWithBindNumAppType
}

func GetAppInfoWithBindNumAppTypeEnum

func GetAppInfoWithBindNumAppTypeEnum() AppInfoWithBindNumAppTypeEnum

type AppInfoWithBindNumCreator

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

func (AppInfoWithBindNumCreator) MarshalJSON

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

func (*AppInfoWithBindNumCreator) UnmarshalJSON

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

type AppInfoWithBindNumCreatorEnum

type AppInfoWithBindNumCreatorEnum struct {
	USER   AppInfoWithBindNumCreator
	MARKET AppInfoWithBindNumCreator
}

func GetAppInfoWithBindNumCreatorEnum

func GetAppInfoWithBindNumCreatorEnum() AppInfoWithBindNumCreatorEnum

type AppInfoWithBindNumStatus

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

func (AppInfoWithBindNumStatus) MarshalJSON

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

func (*AppInfoWithBindNumStatus) UnmarshalJSON

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

type AppInfoWithBindNumStatusEnum

type AppInfoWithBindNumStatusEnum struct {
	E_1 AppInfoWithBindNumStatus
}

func GetAppInfoWithBindNumStatusEnum

func GetAppInfoWithBindNumStatusEnum() AppInfoWithBindNumStatusEnum

type AppResetCreate

type AppResetCreate struct {
	AppSecret *string `json:"app_secret,omitempty"`
}

func (AppResetCreate) String

func (o AppResetCreate) String() string

type AssociateCertificateV2Request

type AssociateCertificateV2Request struct {
	InstanceId string `json:"instance_id"`

	GroupId string `json:"group_id"`

	DomainId string `json:"domain_id"`

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

Request Object

func (AssociateCertificateV2Request) String

type AssociateCertificateV2Response

type AssociateCertificateV2Response struct {
	UrlDomain string `json:"url_domain"`

	Id string `json:"id"`

	Status AssociateCertificateV2ResponseStatus `json:"status"`

	MinSslVersion string `json:"min_ssl_version"`

	SslName string `json:"ssl_name"`

	SslId          string `json:"ssl_id"`
	HttpStatusCode int    `json:"-"`
}

Response Object

func (AssociateCertificateV2Response) String

type AssociateCertificateV2ResponseStatus

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

func (AssociateCertificateV2ResponseStatus) MarshalJSON

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

func (*AssociateCertificateV2ResponseStatus) UnmarshalJSON

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

type AssociateDomainV2Request

type AssociateDomainV2Request struct {
	InstanceId string `json:"instance_id"`

	GroupId string `json:"group_id"`

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

Request Object

func (AssociateDomainV2Request) String

func (o AssociateDomainV2Request) String() string

type AssociateDomainV2Response

type AssociateDomainV2Response struct {
	UrlDomain *string `json:"url_domain,omitempty"`

	Id *string `json:"id,omitempty"`

	Status *AssociateDomainV2ResponseStatus `json:"status,omitempty"`

	MinSslVersion  *string `json:"min_ssl_version,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (AssociateDomainV2Response) String

func (o AssociateDomainV2Response) String() string

type AssociateDomainV2ResponseStatus

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

func (AssociateDomainV2ResponseStatus) MarshalJSON

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

func (*AssociateDomainV2ResponseStatus) UnmarshalJSON

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

type AssociateRequestThrottlingPolicyV2Request

type AssociateRequestThrottlingPolicyV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (AssociateRequestThrottlingPolicyV2Request) String

type AssociateRequestThrottlingPolicyV2Response

type AssociateRequestThrottlingPolicyV2Response struct {
	ThrottleApplys *[]ThrottleApiBinding `json:"throttle_applys,omitempty"`
	HttpStatusCode int                   `json:"-"`
}

Response Object

func (AssociateRequestThrottlingPolicyV2Response) String

type AssociateSignatureKeyV2Request

type AssociateSignatureKeyV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (AssociateSignatureKeyV2Request) String

type AssociateSignatureKeyV2Response

type AssociateSignatureKeyV2Response struct {
	Bindings       *[]SignApiBindingInfo `json:"bindings,omitempty"`
	HttpStatusCode int                   `json:"-"`
}

Response Object

func (AssociateSignatureKeyV2Response) String

type AuthOpt

type AuthOpt struct {
	AppCodeAuthType *AuthOptAppCodeAuthType `json:"app_code_auth_type,omitempty"`
}

认证方式参数

func (AuthOpt) String

func (o AuthOpt) String() string

type AuthOptAppCodeAuthType

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

func (AuthOptAppCodeAuthType) MarshalJSON

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

func (*AuthOptAppCodeAuthType) UnmarshalJSON

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

type AuthOptAppCodeAuthTypeEnum

type AuthOptAppCodeAuthTypeEnum struct {
	DISABLE AuthOptAppCodeAuthType
	HEADER  AuthOptAppCodeAuthType
}

func GetAuthOptAppCodeAuthTypeEnum

func GetAuthOptAppCodeAuthTypeEnum() AuthOptAppCodeAuthTypeEnum

type AuthResult

type AuthResult struct {
	Status *AuthResultStatus `json:"status,omitempty"`

	ErrorMsg *string `json:"error_msg,omitempty"`

	ErrorCode *string `json:"error_code,omitempty"`

	ApiName *string `json:"api_name,omitempty"`

	AppName *string `json:"app_name,omitempty"`
}

授权结果

func (AuthResult) String

func (o AuthResult) String() string

type AuthResultStatus

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

func (AuthResultStatus) MarshalJSON

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

func (*AuthResultStatus) UnmarshalJSON

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

type AuthResultStatusEnum

type AuthResultStatusEnum struct {
	SUCCESS AuthResultStatus
	SKIPPED AuthResultStatus
	FAILED  AuthResultStatus
}

func GetAuthResultStatusEnum

func GetAuthResultStatusEnum() AuthResultStatusEnum

type AuthorizerBase

type AuthorizerBase struct {
	Name string `json:"name"`

	Type AuthorizerBaseType `json:"type"`

	AuthorizerType AuthorizerBaseAuthorizerType `json:"authorizer_type"`

	AuthorizerUri string `json:"authorizer_uri"`

	Identities *[]Identity `json:"identities,omitempty"`

	Ttl *int32 `json:"ttl,omitempty"`

	UserData *string `json:"user_data,omitempty"`

	LdApiId *string `json:"ld_api_id,omitempty"`

	NeedBody *bool `json:"need_body,omitempty"`
}

func (AuthorizerBase) String

func (o AuthorizerBase) String() string

type AuthorizerBaseAuthorizerType

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

func (AuthorizerBaseAuthorizerType) MarshalJSON

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

func (*AuthorizerBaseAuthorizerType) UnmarshalJSON

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

type AuthorizerBaseAuthorizerTypeEnum

type AuthorizerBaseAuthorizerTypeEnum struct {
	FUNC AuthorizerBaseAuthorizerType
}

func GetAuthorizerBaseAuthorizerTypeEnum

func GetAuthorizerBaseAuthorizerTypeEnum() AuthorizerBaseAuthorizerTypeEnum

type AuthorizerBaseType

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

func (AuthorizerBaseType) MarshalJSON

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

func (*AuthorizerBaseType) UnmarshalJSON

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

type AuthorizerBaseTypeEnum

type AuthorizerBaseTypeEnum struct {
	FRONTEND AuthorizerBaseType
	BACKEND  AuthorizerBaseType
}

func GetAuthorizerBaseTypeEnum

func GetAuthorizerBaseTypeEnum() AuthorizerBaseTypeEnum

type AuthorizerCreate

type AuthorizerCreate struct {
	Name string `json:"name"`

	Type AuthorizerCreateType `json:"type"`

	AuthorizerType AuthorizerCreateAuthorizerType `json:"authorizer_type"`

	AuthorizerUri string `json:"authorizer_uri"`

	Identities *[]Identity `json:"identities,omitempty"`

	Ttl *int32 `json:"ttl,omitempty"`

	UserData *string `json:"user_data,omitempty"`

	LdApiId *string `json:"ld_api_id,omitempty"`

	NeedBody *bool `json:"need_body,omitempty"`
}

func (AuthorizerCreate) String

func (o AuthorizerCreate) String() string

type AuthorizerCreateAuthorizerType

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

func (AuthorizerCreateAuthorizerType) MarshalJSON

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

func (*AuthorizerCreateAuthorizerType) UnmarshalJSON

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

type AuthorizerCreateAuthorizerTypeEnum

type AuthorizerCreateAuthorizerTypeEnum struct {
	FUNC AuthorizerCreateAuthorizerType
}

func GetAuthorizerCreateAuthorizerTypeEnum

func GetAuthorizerCreateAuthorizerTypeEnum() AuthorizerCreateAuthorizerTypeEnum

type AuthorizerCreateType

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

func (AuthorizerCreateType) MarshalJSON

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

func (*AuthorizerCreateType) UnmarshalJSON

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

type AuthorizerCreateTypeEnum

type AuthorizerCreateTypeEnum struct {
	FRONTEND AuthorizerCreateType
	BACKEND  AuthorizerCreateType
}

func GetAuthorizerCreateTypeEnum

func GetAuthorizerCreateTypeEnum() AuthorizerCreateTypeEnum

type AuthorizerResp

type AuthorizerResp struct {
	Name string `json:"name"`

	Type AuthorizerRespType `json:"type"`

	AuthorizerType AuthorizerRespAuthorizerType `json:"authorizer_type"`

	AuthorizerUri string `json:"authorizer_uri"`

	Identities *[]Identity `json:"identities,omitempty"`

	Ttl *int32 `json:"ttl,omitempty"`

	UserData *string `json:"user_data,omitempty"`

	LdApiId *string `json:"ld_api_id,omitempty"`

	NeedBody *bool `json:"need_body,omitempty"`

	Id *string `json:"id,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	RomaAppId *string `json:"roma_app_id,omitempty"`

	RomaAppName *string `json:"roma_app_name,omitempty"`
}

func (AuthorizerResp) String

func (o AuthorizerResp) String() string

type AuthorizerRespAuthorizerType

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

func (AuthorizerRespAuthorizerType) MarshalJSON

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

func (*AuthorizerRespAuthorizerType) UnmarshalJSON

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

type AuthorizerRespAuthorizerTypeEnum

type AuthorizerRespAuthorizerTypeEnum struct {
	FUNC AuthorizerRespAuthorizerType
}

func GetAuthorizerRespAuthorizerTypeEnum

func GetAuthorizerRespAuthorizerTypeEnum() AuthorizerRespAuthorizerTypeEnum

type AuthorizerRespType

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

func (AuthorizerRespType) MarshalJSON

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

func (*AuthorizerRespType) UnmarshalJSON

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

type AuthorizerRespTypeEnum

type AuthorizerRespTypeEnum struct {
	FRONTEND AuthorizerRespType
	BACKEND  AuthorizerRespType
}

func GetAuthorizerRespTypeEnum

func GetAuthorizerRespTypeEnum() AuthorizerRespTypeEnum

type AvailableZone

type AvailableZone struct {
	Name *string `json:"name,omitempty"`

	Id *string `json:"id,omitempty"`

	Code *string `json:"code,omitempty"`

	Port *string `json:"port,omitempty"`

	LocalName *LocalName `json:"local_name,omitempty"`

	Specs map[string]bool `json:"specs,omitempty"`
}

func (AvailableZone) String

func (o AvailableZone) String() string

type BackendApi

type BackendApi struct {
	AuthorizerId *string `json:"authorizer_id,omitempty"`

	UrlDomain *string `json:"url_domain,omitempty"`

	ReqProtocol BackendApiReqProtocol `json:"req_protocol"`

	Remark *string `json:"remark,omitempty"`

	ReqMethod BackendApiReqMethod `json:"req_method"`

	Version *string `json:"version,omitempty"`

	ReqUri string `json:"req_uri"`

	Timeout int32 `json:"timeout"`

	EnableClientSsl *bool `json:"enable_client_ssl,omitempty"`

	Id *string `json:"id,omitempty"`

	Status *int32 `json:"status,omitempty"`

	RegisterTime *sdktime.SdkTime `json:"register_time,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`

	VpcChannelInfo *VpcInfo `json:"vpc_channel_info,omitempty"`

	VpcChannelStatus *int32 `json:"vpc_channel_status,omitempty"`
}

web后端详情

func (BackendApi) String

func (o BackendApi) String() string

type BackendApiBase

type BackendApiBase struct {
	AuthorizerId *string `json:"authorizer_id,omitempty"`

	UrlDomain *string `json:"url_domain,omitempty"`

	ReqProtocol BackendApiBaseReqProtocol `json:"req_protocol"`

	Remark *string `json:"remark,omitempty"`

	ReqMethod BackendApiBaseReqMethod `json:"req_method"`

	Version *string `json:"version,omitempty"`

	ReqUri string `json:"req_uri"`

	Timeout int32 `json:"timeout"`

	EnableClientSsl *bool `json:"enable_client_ssl,omitempty"`

	Id *string `json:"id,omitempty"`

	Status *int32 `json:"status,omitempty"`

	RegisterTime *sdktime.SdkTime `json:"register_time,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`
}

func (BackendApiBase) String

func (o BackendApiBase) String() string

type BackendApiBaseInfo

type BackendApiBaseInfo struct {
	AuthorizerId *string `json:"authorizer_id,omitempty"`

	UrlDomain *string `json:"url_domain,omitempty"`

	ReqProtocol BackendApiBaseInfoReqProtocol `json:"req_protocol"`

	Remark *string `json:"remark,omitempty"`

	ReqMethod BackendApiBaseInfoReqMethod `json:"req_method"`

	Version *string `json:"version,omitempty"`

	ReqUri string `json:"req_uri"`

	Timeout int32 `json:"timeout"`

	EnableClientSsl *bool `json:"enable_client_ssl,omitempty"`
}

func (BackendApiBaseInfo) String

func (o BackendApiBaseInfo) String() string

type BackendApiBaseInfoReqMethod

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

func (BackendApiBaseInfoReqMethod) MarshalJSON

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

func (*BackendApiBaseInfoReqMethod) UnmarshalJSON

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

type BackendApiBaseInfoReqProtocol

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

func (BackendApiBaseInfoReqProtocol) MarshalJSON

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

func (*BackendApiBaseInfoReqProtocol) UnmarshalJSON

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

type BackendApiBaseInfoReqProtocolEnum

type BackendApiBaseInfoReqProtocolEnum struct {
	HTTP  BackendApiBaseInfoReqProtocol
	HTTPS BackendApiBaseInfoReqProtocol
}

func GetBackendApiBaseInfoReqProtocolEnum

func GetBackendApiBaseInfoReqProtocolEnum() BackendApiBaseInfoReqProtocolEnum

type BackendApiBaseReqMethod

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

func (BackendApiBaseReqMethod) MarshalJSON

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

func (*BackendApiBaseReqMethod) UnmarshalJSON

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

type BackendApiBaseReqProtocol

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

func (BackendApiBaseReqProtocol) MarshalJSON

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

func (*BackendApiBaseReqProtocol) UnmarshalJSON

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

type BackendApiBaseReqProtocolEnum

type BackendApiBaseReqProtocolEnum struct {
	HTTP  BackendApiBaseReqProtocol
	HTTPS BackendApiBaseReqProtocol
}

func GetBackendApiBaseReqProtocolEnum

func GetBackendApiBaseReqProtocolEnum() BackendApiBaseReqProtocolEnum

type BackendApiCreate

type BackendApiCreate struct {
	AuthorizerId *string `json:"authorizer_id,omitempty"`

	UrlDomain *string `json:"url_domain,omitempty"`

	ReqProtocol BackendApiCreateReqProtocol `json:"req_protocol"`

	Remark *string `json:"remark,omitempty"`

	ReqMethod BackendApiCreateReqMethod `json:"req_method"`

	Version *string `json:"version,omitempty"`

	ReqUri string `json:"req_uri"`

	Timeout int32 `json:"timeout"`

	EnableClientSsl *bool `json:"enable_client_ssl,omitempty"`

	VpcChannelInfo *ApiBackendVpcReq `json:"vpc_channel_info,omitempty"`

	VpcChannelStatus *BackendApiCreateVpcChannelStatus `json:"vpc_channel_status,omitempty"`
}

web后端详情

func (BackendApiCreate) String

func (o BackendApiCreate) String() string

type BackendApiCreateReqMethod

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

func (BackendApiCreateReqMethod) MarshalJSON

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

func (*BackendApiCreateReqMethod) UnmarshalJSON

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

type BackendApiCreateReqProtocol

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

func (BackendApiCreateReqProtocol) MarshalJSON

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

func (*BackendApiCreateReqProtocol) UnmarshalJSON

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

type BackendApiCreateReqProtocolEnum

type BackendApiCreateReqProtocolEnum struct {
	HTTP  BackendApiCreateReqProtocol
	HTTPS BackendApiCreateReqProtocol
}

func GetBackendApiCreateReqProtocolEnum

func GetBackendApiCreateReqProtocolEnum() BackendApiCreateReqProtocolEnum

type BackendApiCreateVpcChannelStatus

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

func (BackendApiCreateVpcChannelStatus) MarshalJSON

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

func (*BackendApiCreateVpcChannelStatus) UnmarshalJSON

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

type BackendApiCreateVpcChannelStatusEnum

type BackendApiCreateVpcChannelStatusEnum struct {
	E_1 BackendApiCreateVpcChannelStatus
	E_2 BackendApiCreateVpcChannelStatus
}

func GetBackendApiCreateVpcChannelStatusEnum

func GetBackendApiCreateVpcChannelStatusEnum() BackendApiCreateVpcChannelStatusEnum

type BackendApiReqMethod

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

func (BackendApiReqMethod) MarshalJSON

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

func (*BackendApiReqMethod) UnmarshalJSON

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

type BackendApiReqProtocol

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

func (BackendApiReqProtocol) MarshalJSON

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

func (*BackendApiReqProtocol) UnmarshalJSON

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

type BackendApiReqProtocolEnum

type BackendApiReqProtocolEnum struct {
	HTTP  BackendApiReqProtocol
	HTTPS BackendApiReqProtocol
}

func GetBackendApiReqProtocolEnum

func GetBackendApiReqProtocolEnum() BackendApiReqProtocolEnum

type BackendLatencyStats

type BackendLatencyStats struct {
	MaxBackendLatency *int32 `json:"max_backend_latency,omitempty"`

	AvgBackendLatency *float32 `json:"avg_backend_latency,omitempty"`
}

func (BackendLatencyStats) String

func (o BackendLatencyStats) String() string

type BackendParam

type BackendParam struct {
	Origin BackendParamOrigin `json:"origin"`

	Name string `json:"name"`

	Remark *string `json:"remark,omitempty"`

	Location BackendParamLocation `json:"location"`

	Value string `json:"value"`

	Id *string `json:"id,omitempty"`

	ReqParamId *string `json:"req_param_id,omitempty"`
}

func (BackendParam) String

func (o BackendParam) String() string

type BackendParamBase

type BackendParamBase struct {
	Origin BackendParamBaseOrigin `json:"origin"`

	Name string `json:"name"`

	Remark *string `json:"remark,omitempty"`

	Location BackendParamBaseLocation `json:"location"`

	Value string `json:"value"`
}

func (BackendParamBase) String

func (o BackendParamBase) String() string

type BackendParamBaseLocation

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

func (BackendParamBaseLocation) MarshalJSON

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

func (*BackendParamBaseLocation) UnmarshalJSON

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

type BackendParamBaseLocationEnum

type BackendParamBaseLocationEnum struct {
	PATH   BackendParamBaseLocation
	QUERY  BackendParamBaseLocation
	HEADER BackendParamBaseLocation
}

func GetBackendParamBaseLocationEnum

func GetBackendParamBaseLocationEnum() BackendParamBaseLocationEnum

type BackendParamBaseOrigin

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

func (BackendParamBaseOrigin) MarshalJSON

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

func (*BackendParamBaseOrigin) UnmarshalJSON

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

type BackendParamBaseOriginEnum

type BackendParamBaseOriginEnum struct {
	REQUEST  BackendParamBaseOrigin
	CONSTANT BackendParamBaseOrigin
	SYSTEM   BackendParamBaseOrigin
}

func GetBackendParamBaseOriginEnum

func GetBackendParamBaseOriginEnum() BackendParamBaseOriginEnum

type BackendParamLocation

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

func (BackendParamLocation) MarshalJSON

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

func (*BackendParamLocation) UnmarshalJSON

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

type BackendParamLocationEnum

type BackendParamLocationEnum struct {
	PATH   BackendParamLocation
	QUERY  BackendParamLocation
	HEADER BackendParamLocation
}

func GetBackendParamLocationEnum

func GetBackendParamLocationEnum() BackendParamLocationEnum

type BackendParamOrigin

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

func (BackendParamOrigin) MarshalJSON

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

func (*BackendParamOrigin) UnmarshalJSON

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

type BackendParamOriginEnum

type BackendParamOriginEnum struct {
	REQUEST  BackendParamOrigin
	CONSTANT BackendParamOrigin
	SYSTEM   BackendParamOrigin
}

func GetBackendParamOriginEnum

func GetBackendParamOriginEnum() BackendParamOriginEnum

type BasePage

type BasePage struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`
}

分页基本信息

func (BasePage) String

func (o BasePage) String() string

type BaseSignature

type BaseSignature struct {
	Name string `json:"name"`

	SignType *BaseSignatureSignType `json:"sign_type,omitempty"`

	SignKey *string `json:"sign_key,omitempty"`

	SignSecret *string `json:"sign_secret,omitempty"`

	SignAlgorithm *BaseSignatureSignAlgorithm `json:"sign_algorithm,omitempty"`
}

func (BaseSignature) String

func (o BaseSignature) String() string

type BaseSignatureSignAlgorithm

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

func (BaseSignatureSignAlgorithm) MarshalJSON

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

func (*BaseSignatureSignAlgorithm) UnmarshalJSON

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

type BaseSignatureSignAlgorithmEnum

type BaseSignatureSignAlgorithmEnum struct {
	AES_128_CFB BaseSignatureSignAlgorithm
	AES_256_CFB BaseSignatureSignAlgorithm
}

func GetBaseSignatureSignAlgorithmEnum

func GetBaseSignatureSignAlgorithmEnum() BaseSignatureSignAlgorithmEnum

type BaseSignatureSignType

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

func (BaseSignatureSignType) MarshalJSON

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

func (*BaseSignatureSignType) UnmarshalJSON

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

type BaseSignatureSignTypeEnum

type BaseSignatureSignTypeEnum struct {
	HMAC       BaseSignatureSignType
	BASIC      BaseSignatureSignType
	PUBLIC_KEY BaseSignatureSignType
	AES        BaseSignatureSignType
}

func GetBaseSignatureSignTypeEnum

func GetBaseSignatureSignTypeEnum() BaseSignatureSignTypeEnum

type BatchDeleteAclV2Request

type BatchDeleteAclV2Request struct {
	InstanceId string `json:"instance_id"`

	Action string `json:"action"`

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

Request Object

func (BatchDeleteAclV2Request) String

func (o BatchDeleteAclV2Request) String() string

type BatchDeleteAclV2Response

type BatchDeleteAclV2Response struct {
	SuccessCount *int32 `json:"success_count,omitempty"`

	Failure        *[]AclBatchResultFailureResp `json:"failure,omitempty"`
	HttpStatusCode int                          `json:"-"`
}

Response Object

func (BatchDeleteAclV2Response) String

func (o BatchDeleteAclV2Response) String() string

type BatchDeleteApiAclBindingV2Request

type BatchDeleteApiAclBindingV2Request struct {
	InstanceId string `json:"instance_id"`

	Action string `json:"action"`

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

Request Object

func (BatchDeleteApiAclBindingV2Request) String

type BatchDeleteApiAclBindingV2Response

type BatchDeleteApiAclBindingV2Response struct {
	SuccessCount *int32 `json:"success_count,omitempty"`

	Failure        *[]AclBindingBatchFailure `json:"failure,omitempty"`
	HttpStatusCode int                       `json:"-"`
}

Response Object

func (BatchDeleteApiAclBindingV2Response) String

type BatchDisassociateThrottlingPolicyV2Request

type BatchDisassociateThrottlingPolicyV2Request struct {
	InstanceId string `json:"instance_id"`

	Action string `json:"action"`

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

Request Object

func (BatchDisassociateThrottlingPolicyV2Request) String

type BatchDisassociateThrottlingPolicyV2Response

type BatchDisassociateThrottlingPolicyV2Response struct {
	SuccessCount *int32 `json:"success_count,omitempty"`

	Failure        *[]ThrottleBindingBatchFailure `json:"failure,omitempty"`
	HttpStatusCode int                            `json:"-"`
}

Response Object

func (BatchDisassociateThrottlingPolicyV2Response) String

type BatchFailure

type BatchFailure struct {
	ApiId *string `json:"api_id,omitempty"`

	ApiName *string `json:"api_name,omitempty"`

	ErrorCode *string `json:"error_code,omitempty"`

	ErrorMsg *string `json:"error_msg,omitempty"`
}

func (BatchFailure) String

func (o BatchFailure) String() string

type BatchPublishOrOfflineApiV2Request

type BatchPublishOrOfflineApiV2Request struct {
	InstanceId string `json:"instance_id"`

	Action string `json:"action"`

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

Request Object

func (BatchPublishOrOfflineApiV2Request) String

type BatchPublishOrOfflineApiV2Response

type BatchPublishOrOfflineApiV2Response struct {
	Success *[]PublishResp `json:"success,omitempty"`

	Failure        *[]BatchFailure `json:"failure,omitempty"`
	HttpStatusCode int             `json:"-"`
}

Response Object

func (BatchPublishOrOfflineApiV2Response) String

type CancelingAuthorizationV2Request

type CancelingAuthorizationV2Request struct {
	InstanceId string `json:"instance_id"`

	AppAuthId string `json:"app_auth_id"`
}

Request Object

func (CancelingAuthorizationV2Request) String

type CancelingAuthorizationV2Response

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

Response Object

func (CancelingAuthorizationV2Response) String

type CertForm

type CertForm struct {
	CertContent string `json:"cert_content"`

	Name string `json:"name"`

	PrivateKey string `json:"private_key"`
}

func (CertForm) String

func (o CertForm) String() string

type ChangeApiVersionV2Request

type ChangeApiVersionV2Request struct {
	InstanceId string `json:"instance_id"`

	ApiId string `json:"api_id"`

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

Request Object

func (ChangeApiVersionV2Request) String

func (o ChangeApiVersionV2Request) String() string

type ChangeApiVersionV2Response

type ChangeApiVersionV2Response struct {
	PublishId *string `json:"publish_id,omitempty"`

	ApiId *string `json:"api_id,omitempty"`

	ApiName *string `json:"api_name,omitempty"`

	EnvId *string `json:"env_id,omitempty"`

	Remark *string `json:"remark,omitempty"`

	PublishTime *sdktime.SdkTime `json:"publish_time,omitempty"`

	VersionId      *string `json:"version_id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ChangeApiVersionV2Response) String

type CheckAppV2Request

type CheckAppV2Request struct {
	InstanceId string `json:"instance_id"`

	AppId string `json:"app_id"`
}

Request Object

func (CheckAppV2Request) String

func (o CheckAppV2Request) String() string

type CheckAppV2Response

type CheckAppV2Response struct {
	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	Remark         *string `json:"remark,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (CheckAppV2Response) String

func (o CheckAppV2Response) String() string

type CoditionResp

type CoditionResp struct {
	ReqParamName *string `json:"req_param_name,omitempty"`

	ConditionType *CoditionRespConditionType `json:"condition_type,omitempty"`

	ConditionOrigin CoditionRespConditionOrigin `json:"condition_origin"`

	ConditionValue string `json:"condition_value"`

	Id *string `json:"id,omitempty"`

	ReqParamId *string `json:"req_param_id,omitempty"`

	ReqParamLocation *string `json:"req_param_location,omitempty"`
}

func (CoditionResp) String

func (o CoditionResp) String() string

type CoditionRespConditionOrigin

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

func (CoditionRespConditionOrigin) MarshalJSON

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

func (*CoditionRespConditionOrigin) UnmarshalJSON

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

type CoditionRespConditionOriginEnum

type CoditionRespConditionOriginEnum struct {
	PARAM  CoditionRespConditionOrigin
	SOURCE CoditionRespConditionOrigin
}

func GetCoditionRespConditionOriginEnum

func GetCoditionRespConditionOriginEnum() CoditionRespConditionOriginEnum

type CoditionRespConditionType

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

func (CoditionRespConditionType) MarshalJSON

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

func (*CoditionRespConditionType) UnmarshalJSON

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

type CoditionRespConditionTypeEnum

type CoditionRespConditionTypeEnum struct {
	EXACT   CoditionRespConditionType
	ENUM    CoditionRespConditionType
	PATTERN CoditionRespConditionType
}

func GetCoditionRespConditionTypeEnum

func GetCoditionRespConditionTypeEnum() CoditionRespConditionTypeEnum

type Config

type Config struct {
	ConfigId *string `json:"config_id,omitempty"`

	ConfigName *ConfigConfigName `json:"config_name,omitempty"`

	ConfigValue *string `json:"config_value,omitempty"`

	ConfigTime *sdktime.SdkTime `json:"config_time,omitempty"`

	Remark *string `json:"remark,omitempty"`

	Used *int64 `json:"used,omitempty"`
}

func (Config) String

func (o Config) String() string

type ConfigConfigName

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

func (ConfigConfigName) MarshalJSON

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

func (*ConfigConfigName) UnmarshalJSON

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

type ConfigConfigNameEnum

type ConfigConfigNameEnum struct {
	API_NUM_LIMIT                     ConfigConfigName
	APP_NUM_LIMIT                     ConfigConfigName
	APIGROUP_NUM_LIMIT                ConfigConfigName
	ENVIRONMENT_NUM_LIMIT             ConfigConfigName
	VARIABLE_NUM_LIMIT                ConfigConfigName
	SIGN_NUM_LIMIT                    ConfigConfigName
	THROTTLE_NUM_LIMIT                ConfigConfigName
	APIGROUP_DOMAIN_NUM_LIMIT         ConfigConfigName
	API_VERSION_NUM_LIMIT             ConfigConfigName
	VPC_NUM_LIMIT                     ConfigConfigName
	VPC_INSTANCE_NUM_LIMIT            ConfigConfigName
	API_PARAM_NUM_LIMIT               ConfigConfigName
	API_USER_CALL_LIMIT               ConfigConfigName
	ACL_NUM_LIMIT                     ConfigConfigName
	APP_THROTTLE_LIMIT                ConfigConfigName
	USER_THROTTLE_LIMIT               ConfigConfigName
	API_NUM_LIMIT_PER_GROUP           ConfigConfigName
	API_POLICY_NUM_LIMIT              ConfigConfigName
	API_CONDITION_NUM_LIMIT           ConfigConfigName
	SL_DOMAIN_CALL_LIMIT              ConfigConfigName
	ELB_SWITCH                        ConfigConfigName
	AUTHORIZER_NUM_LIMIT              ConfigConfigName
	AUTHORIZER_IDENTITY_NUM_LIMIT     ConfigConfigName
	APP_CODE_NUM_LIMIT                ConfigConfigName
	REGION_MANAGER_WHITELIST_SERVICES ConfigConfigName
	API_SWAGGER_NUM_LIMIT             ConfigConfigName
	API_TAG_NUM_LIMIT                 ConfigConfigName
	LTS_SWITCH                        ConfigConfigName
	APP_KEY_SECRET_SWITCH             ConfigConfigName
	RESPONSE_NUM_LIMIT                ConfigConfigName
	CONFIG_NUM_LIMIT_PER_APP          ConfigConfigName
	BACKEND_TOKEN_ALLOW_SWITCH        ConfigConfigName
	APP_TOKEN_SWITCH                  ConfigConfigName
	API_DESIGNER_SWITCH               ConfigConfigName
	APP_API_KEY_SWITCH                ConfigConfigName
	APP_BASIC_SWITCH                  ConfigConfigName
	APP_JWT_SWITCH                    ConfigConfigName
	APP_ROUTE_SWITCH                  ConfigConfigName
	PUBLIC_KEY_SWITCH                 ConfigConfigName
	APP_SECRET_SWITCH                 ConfigConfigName
	CASCADE_SWITCH                    ConfigConfigName
	IS_INIT_API_PATH_HASH             ConfigConfigName
}

func GetConfigConfigNameEnum

func GetConfigConfigNameEnum() ConfigConfigNameEnum

type CreateAclStrategyV2Request

type CreateAclStrategyV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (CreateAclStrategyV2Request) String

type CreateAclStrategyV2Response

type CreateAclStrategyV2Response struct {
	AclName *string `json:"acl_name,omitempty"`

	AclType *string `json:"acl_type,omitempty"`

	AclValue *string `json:"acl_value,omitempty"`

	EntityType *string `json:"entity_type,omitempty"`

	Id *string `json:"id,omitempty"`

	UpdateTime     *sdktime.SdkTime `json:"update_time,omitempty"`
	HttpStatusCode int              `json:"-"`
}

Response Object

func (CreateAclStrategyV2Response) String

type CreateAnAppV2Request

type CreateAnAppV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (CreateAnAppV2Request) String

func (o CreateAnAppV2Request) String() string

type CreateAnAppV2Response

type CreateAnAppV2Response struct {
	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	Remark *string `json:"remark,omitempty"`

	Creator *CreateAnAppV2ResponseCreator `json:"creator,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`

	AppKey *string `json:"app_key,omitempty"`

	AppSecret *string `json:"app_secret,omitempty"`

	RegisterTime *sdktime.SdkTime `json:"register_time,omitempty"`

	Status *CreateAnAppV2ResponseStatus `json:"status,omitempty"`

	AppType *CreateAnAppV2ResponseAppType `json:"app_type,omitempty"`

	RomaAppType    *string `json:"roma_app_type,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (CreateAnAppV2Response) String

func (o CreateAnAppV2Response) String() string

type CreateAnAppV2ResponseAppType

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

func (CreateAnAppV2ResponseAppType) MarshalJSON

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

func (*CreateAnAppV2ResponseAppType) UnmarshalJSON

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

type CreateAnAppV2ResponseAppTypeEnum

type CreateAnAppV2ResponseAppTypeEnum struct {
	APIG CreateAnAppV2ResponseAppType
	ROMA CreateAnAppV2ResponseAppType
}

func GetCreateAnAppV2ResponseAppTypeEnum

func GetCreateAnAppV2ResponseAppTypeEnum() CreateAnAppV2ResponseAppTypeEnum

type CreateAnAppV2ResponseCreator

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

func (CreateAnAppV2ResponseCreator) MarshalJSON

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

func (*CreateAnAppV2ResponseCreator) UnmarshalJSON

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

type CreateAnAppV2ResponseCreatorEnum

type CreateAnAppV2ResponseCreatorEnum struct {
	USER   CreateAnAppV2ResponseCreator
	MARKET CreateAnAppV2ResponseCreator
}

func GetCreateAnAppV2ResponseCreatorEnum

func GetCreateAnAppV2ResponseCreatorEnum() CreateAnAppV2ResponseCreatorEnum

type CreateAnAppV2ResponseStatus

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

func (CreateAnAppV2ResponseStatus) MarshalJSON

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

func (*CreateAnAppV2ResponseStatus) UnmarshalJSON

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

type CreateAnAppV2ResponseStatusEnum

type CreateAnAppV2ResponseStatusEnum struct {
	E_1 CreateAnAppV2ResponseStatus
}

func GetCreateAnAppV2ResponseStatusEnum

func GetCreateAnAppV2ResponseStatusEnum() CreateAnAppV2ResponseStatusEnum

type CreateApiAclBindingV2Request

type CreateApiAclBindingV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (CreateApiAclBindingV2Request) String

type CreateApiAclBindingV2Response

type CreateApiAclBindingV2Response struct {
	AclBindings    *[]AclApiBindingInfo `json:"acl_bindings,omitempty"`
	HttpStatusCode int                  `json:"-"`
}

Response Object

func (CreateApiAclBindingV2Response) String

type CreateApiGroupV2Request

type CreateApiGroupV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (CreateApiGroupV2Request) String

func (o CreateApiGroupV2Request) String() string

type CreateApiGroupV2Response

type CreateApiGroupV2Response struct {
	Id string `json:"id"`

	Name string `json:"name"`

	Status CreateApiGroupV2ResponseStatus `json:"status"`

	SlDomain string `json:"sl_domain"`

	RegisterTime *sdktime.SdkTime `json:"register_time"`

	UpdateTime *sdktime.SdkTime `json:"update_time"`

	OnSellStatus int32 `json:"on_sell_status"`

	UrlDomains *[]UrlDomain `json:"url_domains,omitempty"`

	SlDomains *[]string `json:"sl_domains,omitempty"`

	Remark *string `json:"remark,omitempty"`

	CallLimits *int32 `json:"call_limits,omitempty"`

	TimeInterval *int32 `json:"time_interval,omitempty"`

	TimeUnit *string `json:"time_unit,omitempty"`

	IsDefault *int32 `json:"is_default,omitempty"`

	Version *string `json:"version,omitempty"`

	RomaAppId *string `json:"roma_app_id,omitempty"`

	RomaAppName    *string `json:"roma_app_name,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (CreateApiGroupV2Response) String

func (o CreateApiGroupV2Response) String() string

type CreateApiGroupV2ResponseStatus

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

func (CreateApiGroupV2ResponseStatus) MarshalJSON

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

func (*CreateApiGroupV2ResponseStatus) UnmarshalJSON

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

type CreateApiGroupV2ResponseStatusEnum

type CreateApiGroupV2ResponseStatusEnum struct {
	E_1 CreateApiGroupV2ResponseStatus
}

func GetCreateApiGroupV2ResponseStatusEnum

func GetCreateApiGroupV2ResponseStatusEnum() CreateApiGroupV2ResponseStatusEnum

type CreateApiV2Request

type CreateApiV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (CreateApiV2Request) String

func (o CreateApiV2Request) String() string

type CreateApiV2Response

type CreateApiV2Response struct {
	Name string `json:"name"`

	Type CreateApiV2ResponseType `json:"type"`

	Version *string `json:"version,omitempty"`

	ReqProtocol CreateApiV2ResponseReqProtocol `json:"req_protocol"`

	ReqMethod CreateApiV2ResponseReqMethod `json:"req_method"`

	ReqUri string `json:"req_uri"`

	AuthType CreateApiV2ResponseAuthType `json:"auth_type"`

	AuthOpt *AuthOpt `json:"auth_opt,omitempty"`

	Cors *bool `json:"cors,omitempty"`

	MatchMode *CreateApiV2ResponseMatchMode `json:"match_mode,omitempty"`

	BackendType CreateApiV2ResponseBackendType `json:"backend_type"`

	Remark *string `json:"remark,omitempty"`

	GroupId string `json:"group_id"`

	BodyRemark *string `json:"body_remark,omitempty"`

	ResultNormalSample *string `json:"result_normal_sample,omitempty"`

	ResultFailureSample *string `json:"result_failure_sample,omitempty"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`

	Tags *[]string `json:"tags,omitempty"`

	ResponseId *string `json:"response_id,omitempty"`

	RomaAppId *string `json:"roma_app_id,omitempty"`

	DomainName *string `json:"domain_name,omitempty"`

	Tag *string `json:"tag,omitempty"`

	Id *string `json:"id,omitempty"`

	Status *int32 `json:"status,omitempty"`

	ArrangeNecessary *int32 `json:"arrange_necessary,omitempty"`

	RegisterTime *sdktime.SdkTime `json:"register_time,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`

	GroupName *string `json:"group_name,omitempty"`

	GroupVersion *string `json:"group_version,omitempty"`

	RunEnvId *string `json:"run_env_id,omitempty"`

	RunEnvName *string `json:"run_env_name,omitempty"`

	PublishId *string `json:"publish_id,omitempty"`

	FuncInfo *ApiFunc `json:"func_info,omitempty"`

	MockInfo *ApiMock `json:"mock_info,omitempty"`

	ReqParams *[]ReqParam `json:"req_params,omitempty"`

	BackendParams *[]BackendParam `json:"backend_params,omitempty"`

	PolicyFunctions *[]ApiPolicyFunctionResp `json:"policy_functions,omitempty"`

	PolicyMocks *[]ApiPolicyMockResp `json:"policy_mocks,omitempty"`

	BackendApi *BackendApi `json:"backend_api,omitempty"`

	PolicyHttps    *[]ApiPolicyHttpResp `json:"policy_https,omitempty"`
	HttpStatusCode int                  `json:"-"`
}

Response Object

func (CreateApiV2Response) String

func (o CreateApiV2Response) String() string

type CreateApiV2ResponseAuthType

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

func (CreateApiV2ResponseAuthType) MarshalJSON

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

func (*CreateApiV2ResponseAuthType) UnmarshalJSON

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

type CreateApiV2ResponseBackendType

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

func (CreateApiV2ResponseBackendType) MarshalJSON

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

func (*CreateApiV2ResponseBackendType) UnmarshalJSON

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

type CreateApiV2ResponseBackendTypeEnum

type CreateApiV2ResponseBackendTypeEnum struct {
	HTTP     CreateApiV2ResponseBackendType
	FUNCTION CreateApiV2ResponseBackendType
	MOCK     CreateApiV2ResponseBackendType
}

func GetCreateApiV2ResponseBackendTypeEnum

func GetCreateApiV2ResponseBackendTypeEnum() CreateApiV2ResponseBackendTypeEnum

type CreateApiV2ResponseMatchMode

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

func (CreateApiV2ResponseMatchMode) MarshalJSON

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

func (*CreateApiV2ResponseMatchMode) UnmarshalJSON

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

type CreateApiV2ResponseMatchModeEnum

type CreateApiV2ResponseMatchModeEnum struct {
	SWA    CreateApiV2ResponseMatchMode
	NORMAL CreateApiV2ResponseMatchMode
}

func GetCreateApiV2ResponseMatchModeEnum

func GetCreateApiV2ResponseMatchModeEnum() CreateApiV2ResponseMatchModeEnum

type CreateApiV2ResponseReqMethod

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

func (CreateApiV2ResponseReqMethod) MarshalJSON

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

func (*CreateApiV2ResponseReqMethod) UnmarshalJSON

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

type CreateApiV2ResponseReqProtocol

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

func (CreateApiV2ResponseReqProtocol) MarshalJSON

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

func (*CreateApiV2ResponseReqProtocol) UnmarshalJSON

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

type CreateApiV2ResponseType

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

func (CreateApiV2ResponseType) MarshalJSON

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

func (*CreateApiV2ResponseType) UnmarshalJSON

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

type CreateApiV2ResponseTypeEnum

type CreateApiV2ResponseTypeEnum struct {
	E_1 CreateApiV2ResponseType
	E_2 CreateApiV2ResponseType
}

func GetCreateApiV2ResponseTypeEnum

func GetCreateApiV2ResponseTypeEnum() CreateApiV2ResponseTypeEnum

type CreateAppCodeAutoV2Request

type CreateAppCodeAutoV2Request struct {
	InstanceId string `json:"instance_id"`

	AppId string `json:"app_id"`
}

Request Object

func (CreateAppCodeAutoV2Request) String

type CreateAppCodeAutoV2Response

type CreateAppCodeAutoV2Response struct {
	AppCode string `json:"app_code"`

	Id *string `json:"id,omitempty"`

	AppId *string `json:"app_id,omitempty"`

	CreateTime     *string `json:"create_time,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (CreateAppCodeAutoV2Response) String

type CreateAppCodeV2Request

type CreateAppCodeV2Request struct {
	InstanceId string `json:"instance_id"`

	AppId string `json:"app_id"`

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

Request Object

func (CreateAppCodeV2Request) String

func (o CreateAppCodeV2Request) String() string

type CreateAppCodeV2Response

type CreateAppCodeV2Response struct {
	AppCode string `json:"app_code"`

	Id *string `json:"id,omitempty"`

	AppId *string `json:"app_id,omitempty"`

	CreateTime     *string `json:"create_time,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (CreateAppCodeV2Response) String

func (o CreateAppCodeV2Response) String() string

type CreateAuthorizingAppsV2Request

type CreateAuthorizingAppsV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (CreateAuthorizingAppsV2Request) String

type CreateAuthorizingAppsV2Response

type CreateAuthorizingAppsV2Response struct {
	Auths          *[]ApiAuthRelations `json:"auths,omitempty"`
	HttpStatusCode int                 `json:"-"`
}

Response Object

func (CreateAuthorizingAppsV2Response) String

type CreateCustomAuthorizerV2Request

type CreateCustomAuthorizerV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (CreateCustomAuthorizerV2Request) String

type CreateCustomAuthorizerV2Response

type CreateCustomAuthorizerV2Response struct {
	Name string `json:"name"`

	Type CreateCustomAuthorizerV2ResponseType `json:"type"`

	AuthorizerType CreateCustomAuthorizerV2ResponseAuthorizerType `json:"authorizer_type"`

	AuthorizerUri string `json:"authorizer_uri"`

	Identities *[]Identity `json:"identities,omitempty"`

	Ttl *int32 `json:"ttl,omitempty"`

	UserData *string `json:"user_data,omitempty"`

	LdApiId *string `json:"ld_api_id,omitempty"`

	NeedBody *bool `json:"need_body,omitempty"`

	Id *string `json:"id,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	RomaAppId *string `json:"roma_app_id,omitempty"`

	RomaAppName    *string `json:"roma_app_name,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (CreateCustomAuthorizerV2Response) String

type CreateCustomAuthorizerV2ResponseAuthorizerType

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

func (CreateCustomAuthorizerV2ResponseAuthorizerType) MarshalJSON

func (*CreateCustomAuthorizerV2ResponseAuthorizerType) UnmarshalJSON

type CreateCustomAuthorizerV2ResponseAuthorizerTypeEnum

type CreateCustomAuthorizerV2ResponseAuthorizerTypeEnum struct {
	FUNC CreateCustomAuthorizerV2ResponseAuthorizerType
}

func GetCreateCustomAuthorizerV2ResponseAuthorizerTypeEnum

func GetCreateCustomAuthorizerV2ResponseAuthorizerTypeEnum() CreateCustomAuthorizerV2ResponseAuthorizerTypeEnum

type CreateCustomAuthorizerV2ResponseType

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

func (CreateCustomAuthorizerV2ResponseType) MarshalJSON

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

func (*CreateCustomAuthorizerV2ResponseType) UnmarshalJSON

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

type CreateCustomAuthorizerV2ResponseTypeEnum

type CreateCustomAuthorizerV2ResponseTypeEnum struct {
	FRONTEND CreateCustomAuthorizerV2ResponseType
	BACKEND  CreateCustomAuthorizerV2ResponseType
}

func GetCreateCustomAuthorizerV2ResponseTypeEnum

func GetCreateCustomAuthorizerV2ResponseTypeEnum() CreateCustomAuthorizerV2ResponseTypeEnum

type CreateEnvironmentV2Request

type CreateEnvironmentV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (CreateEnvironmentV2Request) String

type CreateEnvironmentV2Response

type CreateEnvironmentV2Response struct {
	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	Name *string `json:"name,omitempty"`

	Remark *string `json:"remark,omitempty"`

	Id             *string `json:"id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (CreateEnvironmentV2Response) String

type CreateEnvironmentVariableV2Request

type CreateEnvironmentVariableV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (CreateEnvironmentVariableV2Request) String

type CreateEnvironmentVariableV2Response

type CreateEnvironmentVariableV2Response struct {
	VariableValue string `json:"variable_value"`

	EnvId *string `json:"env_id,omitempty"`

	GroupId *string `json:"group_id,omitempty"`

	VariableName *string `json:"variable_name,omitempty"`

	Id             *string `json:"id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (CreateEnvironmentVariableV2Response) String

type CreateFeatureV2Request

type CreateFeatureV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (CreateFeatureV2Request) String

func (o CreateFeatureV2Request) String() string

type CreateFeatureV2Response

type CreateFeatureV2Response struct {
	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	Enable *bool `json:"enable,omitempty"`

	Config *string `json:"config,omitempty"`

	InstanceId *string `json:"instance_id,omitempty"`

	UpdateTime     *sdktime.SdkTime `json:"update_time,omitempty"`
	HttpStatusCode int              `json:"-"`
}

Response Object

func (CreateFeatureV2Response) String

func (o CreateFeatureV2Response) String() string

type CreateGatewayResponseV2Request

type CreateGatewayResponseV2Request struct {
	InstanceId string `json:"instance_id"`

	GroupId string `json:"group_id"`

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

Request Object

func (CreateGatewayResponseV2Request) String

type CreateGatewayResponseV2Response

type CreateGatewayResponseV2Response struct {
	Name *string `json:"name,omitempty"`

	Responses map[string]ResponseInfoResp `json:"responses,omitempty"`

	Id *string `json:"id,omitempty"`

	Default *bool `json:"default,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	UpdateTime     *sdktime.SdkTime `json:"update_time,omitempty"`
	HttpStatusCode int              `json:"-"`
}

Response Object

func (CreateGatewayResponseV2Response) String

type CreateInstanceV2Request

type CreateInstanceV2Request struct {
	Body *InstanceCreateReq `json:"body,omitempty"`
}

Request Object

func (CreateInstanceV2Request) String

func (o CreateInstanceV2Request) String() string

type CreateInstanceV2Response

type CreateInstanceV2Response struct {
	InstanceId *string `json:"instance_id,omitempty"`

	Message        *string `json:"message,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (CreateInstanceV2Response) String

func (o CreateInstanceV2Response) String() string

type CreateOrDeletePublishRecordForApiV2Request

type CreateOrDeletePublishRecordForApiV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (CreateOrDeletePublishRecordForApiV2Request) String

type CreateOrDeletePublishRecordForApiV2Response

type CreateOrDeletePublishRecordForApiV2Response struct {
	PublishId *string `json:"publish_id,omitempty"`

	ApiId *string `json:"api_id,omitempty"`

	ApiName *string `json:"api_name,omitempty"`

	EnvId *string `json:"env_id,omitempty"`

	Remark *string `json:"remark,omitempty"`

	PublishTime *sdktime.SdkTime `json:"publish_time,omitempty"`

	VersionId      *string `json:"version_id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (CreateOrDeletePublishRecordForApiV2Response) String

type CreateRequestThrottlingPolicyV2Request

type CreateRequestThrottlingPolicyV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (CreateRequestThrottlingPolicyV2Request) String

type CreateRequestThrottlingPolicyV2Response

type CreateRequestThrottlingPolicyV2Response struct {
	AppCallLimits *int32 `json:"app_call_limits,omitempty"`

	Name string `json:"name"`

	TimeUnit CreateRequestThrottlingPolicyV2ResponseTimeUnit `json:"time_unit"`

	Remark *string `json:"remark,omitempty"`

	ApiCallLimits int32 `json:"api_call_limits"`

	Type *CreateRequestThrottlingPolicyV2ResponseType `json:"type,omitempty"`

	EnableAdaptiveControl *string `json:"enable_adaptive_control,omitempty"`

	UserCallLimits *int32 `json:"user_call_limits,omitempty"`

	TimeInterval int32 `json:"time_interval"`

	IpCallLimits *int32 `json:"ip_call_limits,omitempty"`

	Id *string `json:"id,omitempty"`

	BindNum *int32 `json:"bind_num,omitempty"`

	IsIncluSpecialThrottle *CreateRequestThrottlingPolicyV2ResponseIsIncluSpecialThrottle `json:"is_inclu_special_throttle,omitempty"`

	CreateTime     *sdktime.SdkTime `json:"create_time,omitempty"`
	HttpStatusCode int              `json:"-"`
}

Response Object

func (CreateRequestThrottlingPolicyV2Response) String

type CreateRequestThrottlingPolicyV2ResponseIsIncluSpecialThrottle

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

func (CreateRequestThrottlingPolicyV2ResponseIsIncluSpecialThrottle) MarshalJSON

func (*CreateRequestThrottlingPolicyV2ResponseIsIncluSpecialThrottle) UnmarshalJSON

type CreateRequestThrottlingPolicyV2ResponseTimeUnit

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

func (CreateRequestThrottlingPolicyV2ResponseTimeUnit) MarshalJSON

func (*CreateRequestThrottlingPolicyV2ResponseTimeUnit) UnmarshalJSON

type CreateRequestThrottlingPolicyV2ResponseType

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

func (CreateRequestThrottlingPolicyV2ResponseType) MarshalJSON

func (*CreateRequestThrottlingPolicyV2ResponseType) UnmarshalJSON

type CreateSignatureKeyV2Request

type CreateSignatureKeyV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (CreateSignatureKeyV2Request) String

type CreateSignatureKeyV2Response

type CreateSignatureKeyV2Response struct {
	Name string `json:"name"`

	SignType *CreateSignatureKeyV2ResponseSignType `json:"sign_type,omitempty"`

	SignKey *string `json:"sign_key,omitempty"`

	SignSecret *string `json:"sign_secret,omitempty"`

	SignAlgorithm *CreateSignatureKeyV2ResponseSignAlgorithm `json:"sign_algorithm,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	Id             *string `json:"id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (CreateSignatureKeyV2Response) String

type CreateSignatureKeyV2ResponseSignAlgorithm

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

func (CreateSignatureKeyV2ResponseSignAlgorithm) MarshalJSON

func (*CreateSignatureKeyV2ResponseSignAlgorithm) UnmarshalJSON

type CreateSignatureKeyV2ResponseSignAlgorithmEnum

type CreateSignatureKeyV2ResponseSignAlgorithmEnum struct {
	AES_128_CFB CreateSignatureKeyV2ResponseSignAlgorithm
	AES_256_CFB CreateSignatureKeyV2ResponseSignAlgorithm
}

func GetCreateSignatureKeyV2ResponseSignAlgorithmEnum

func GetCreateSignatureKeyV2ResponseSignAlgorithmEnum() CreateSignatureKeyV2ResponseSignAlgorithmEnum

type CreateSignatureKeyV2ResponseSignType

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

func (CreateSignatureKeyV2ResponseSignType) MarshalJSON

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

func (*CreateSignatureKeyV2ResponseSignType) UnmarshalJSON

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

type CreateSpecialThrottlingConfigurationV2Request

type CreateSpecialThrottlingConfigurationV2Request struct {
	InstanceId string `json:"instance_id"`

	ThrottleId string `json:"throttle_id"`

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

Request Object

func (CreateSpecialThrottlingConfigurationV2Request) String

type CreateSpecialThrottlingConfigurationV2Response

type CreateSpecialThrottlingConfigurationV2Response struct {
	Id *string `json:"id,omitempty"`

	CallLimits *int32 `json:"call_limits,omitempty"`

	ApplyTime *sdktime.SdkTime `json:"apply_time,omitempty"`

	AppName *string `json:"app_name,omitempty"`

	AppId *string `json:"app_id,omitempty"`

	ObjectId *string `json:"object_id,omitempty"`

	ObjectType *string `json:"object_type,omitempty"`

	ObjectName *string `json:"object_name,omitempty"`

	ThrottleId     *string `json:"throttle_id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (CreateSpecialThrottlingConfigurationV2Response) String

type CreateVpcChannelV2Request

type CreateVpcChannelV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (CreateVpcChannelV2Request) String

func (o CreateVpcChannelV2Request) String() string

type CreateVpcChannelV2Response

type CreateVpcChannelV2Response struct {
	Name string `json:"name"`

	Port *int32 `json:"port,omitempty"`

	BalanceStrategy *CreateVpcChannelV2ResponseBalanceStrategy `json:"balance_strategy,omitempty"`

	MemberType *CreateVpcChannelV2ResponseMemberType `json:"member_type,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	Id *string `json:"id,omitempty"`

	Status *CreateVpcChannelV2ResponseStatus `json:"status,omitempty"`

	MemberGroups   *[]MemberGroupInfo `json:"member_groups,omitempty"`
	HttpStatusCode int                `json:"-"`
}

Response Object

func (CreateVpcChannelV2Response) String

type CreateVpcChannelV2ResponseBalanceStrategy

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

func (CreateVpcChannelV2ResponseBalanceStrategy) MarshalJSON

func (*CreateVpcChannelV2ResponseBalanceStrategy) UnmarshalJSON

type CreateVpcChannelV2ResponseMemberType

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

func (CreateVpcChannelV2ResponseMemberType) MarshalJSON

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

func (*CreateVpcChannelV2ResponseMemberType) UnmarshalJSON

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

type CreateVpcChannelV2ResponseMemberTypeEnum

type CreateVpcChannelV2ResponseMemberTypeEnum struct {
	IP  CreateVpcChannelV2ResponseMemberType
	ECS CreateVpcChannelV2ResponseMemberType
}

func GetCreateVpcChannelV2ResponseMemberTypeEnum

func GetCreateVpcChannelV2ResponseMemberTypeEnum() CreateVpcChannelV2ResponseMemberTypeEnum

type CreateVpcChannelV2ResponseStatus

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

func (CreateVpcChannelV2ResponseStatus) MarshalJSON

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

func (*CreateVpcChannelV2ResponseStatus) UnmarshalJSON

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

type CreateVpcChannelV2ResponseStatusEnum

type CreateVpcChannelV2ResponseStatusEnum struct {
	E_1 CreateVpcChannelV2ResponseStatus
	E_2 CreateVpcChannelV2ResponseStatus
}

func GetCreateVpcChannelV2ResponseStatusEnum

func GetCreateVpcChannelV2ResponseStatusEnum() CreateVpcChannelV2ResponseStatusEnum

type DebugApiV2Request

type DebugApiV2Request struct {
	InstanceId string `json:"instance_id"`

	ApiId string `json:"api_id"`

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

Request Object

func (DebugApiV2Request) String

func (o DebugApiV2Request) String() string

type DebugApiV2Response

type DebugApiV2Response struct {
	Request *string `json:"request,omitempty"`

	Response *string `json:"response,omitempty"`

	Latency *int32 `json:"latency,omitempty"`

	Log            *string `json:"log,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (DebugApiV2Response) String

func (o DebugApiV2Response) String() string

type DeleteAclV2Request

type DeleteAclV2Request struct {
	InstanceId string `json:"instance_id"`

	AclId string `json:"acl_id"`
}

Request Object

func (DeleteAclV2Request) String

func (o DeleteAclV2Request) String() string

type DeleteAclV2Response

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

Response Object

func (DeleteAclV2Response) String

func (o DeleteAclV2Response) String() string

type DeleteApiAclBindingV2Request

type DeleteApiAclBindingV2Request struct {
	InstanceId string `json:"instance_id"`

	AclBindingsId string `json:"acl_bindings_id"`
}

Request Object

func (DeleteApiAclBindingV2Request) String

type DeleteApiAclBindingV2Response

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

Response Object

func (DeleteApiAclBindingV2Response) String

type DeleteApiByVersionIdV2Request

type DeleteApiByVersionIdV2Request struct {
	InstanceId string `json:"instance_id"`

	VersionId string `json:"version_id"`
}

Request Object

func (DeleteApiByVersionIdV2Request) String

type DeleteApiByVersionIdV2Response

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

Response Object

func (DeleteApiByVersionIdV2Response) String

type DeleteApiGroupV2Request

type DeleteApiGroupV2Request struct {
	InstanceId string `json:"instance_id"`

	GroupId string `json:"group_id"`
}

Request Object

func (DeleteApiGroupV2Request) String

func (o DeleteApiGroupV2Request) String() string

type DeleteApiGroupV2Response

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

Response Object

func (DeleteApiGroupV2Response) String

func (o DeleteApiGroupV2Response) String() string

type DeleteApiV2Request

type DeleteApiV2Request struct {
	InstanceId string `json:"instance_id"`

	ApiId string `json:"api_id"`
}

Request Object

func (DeleteApiV2Request) String

func (o DeleteApiV2Request) String() string

type DeleteApiV2Response

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

Response Object

func (DeleteApiV2Response) String

func (o DeleteApiV2Response) String() string

type DeleteAppCodeV2Request

type DeleteAppCodeV2Request struct {
	InstanceId string `json:"instance_id"`

	AppId string `json:"app_id"`

	AppCodeId string `json:"app_code_id"`
}

Request Object

func (DeleteAppCodeV2Request) String

func (o DeleteAppCodeV2Request) String() string

type DeleteAppCodeV2Response

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

Response Object

func (DeleteAppCodeV2Response) String

func (o DeleteAppCodeV2Response) String() string

type DeleteAppV2Request

type DeleteAppV2Request struct {
	InstanceId string `json:"instance_id"`

	AppId string `json:"app_id"`
}

Request Object

func (DeleteAppV2Request) String

func (o DeleteAppV2Request) String() string

type DeleteAppV2Response

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

Response Object

func (DeleteAppV2Response) String

func (o DeleteAppV2Response) String() string

type DeleteBackendInstanceV2Request

type DeleteBackendInstanceV2Request struct {
	InstanceId string `json:"instance_id"`

	VpcChannelId string `json:"vpc_channel_id"`

	MemberId string `json:"member_id"`
}

Request Object

func (DeleteBackendInstanceV2Request) String

type DeleteBackendInstanceV2Response

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

Response Object

func (DeleteBackendInstanceV2Response) String

type DeleteCustomAuthorizerV2Request

type DeleteCustomAuthorizerV2Request struct {
	InstanceId string `json:"instance_id"`

	AuthorizerId string `json:"authorizer_id"`
}

Request Object

func (DeleteCustomAuthorizerV2Request) String

type DeleteCustomAuthorizerV2Response

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

Response Object

func (DeleteCustomAuthorizerV2Response) String

type DeleteEnvironmentV2Request

type DeleteEnvironmentV2Request struct {
	InstanceId string `json:"instance_id"`

	EnvId string `json:"env_id"`
}

Request Object

func (DeleteEnvironmentV2Request) String

type DeleteEnvironmentV2Response

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

Response Object

func (DeleteEnvironmentV2Response) String

type DeleteEnvironmentVariableV2Request

type DeleteEnvironmentVariableV2Request struct {
	InstanceId string `json:"instance_id"`

	EnvVariableId string `json:"env_variable_id"`
}

Request Object

func (DeleteEnvironmentVariableV2Request) String

type DeleteEnvironmentVariableV2Response

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

Response Object

func (DeleteEnvironmentVariableV2Response) String

type DeleteGatewayResponseTypeV2Request

type DeleteGatewayResponseTypeV2Request struct {
	InstanceId string `json:"instance_id"`

	GroupId string `json:"group_id"`

	ResponseId string `json:"response_id"`

	ResponseType DeleteGatewayResponseTypeV2RequestResponseType `json:"response_type"`
}

Request Object

func (DeleteGatewayResponseTypeV2Request) String

type DeleteGatewayResponseTypeV2RequestResponseType

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

func (DeleteGatewayResponseTypeV2RequestResponseType) MarshalJSON

func (*DeleteGatewayResponseTypeV2RequestResponseType) UnmarshalJSON

type DeleteGatewayResponseTypeV2Response

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

Response Object

func (DeleteGatewayResponseTypeV2Response) String

type DeleteGatewayResponseV2Request

type DeleteGatewayResponseV2Request struct {
	InstanceId string `json:"instance_id"`

	GroupId string `json:"group_id"`

	ResponseId string `json:"response_id"`
}

Request Object

func (DeleteGatewayResponseV2Request) String

type DeleteGatewayResponseV2Response

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

Response Object

func (DeleteGatewayResponseV2Response) String

type DeleteInstancesV2Request

type DeleteInstancesV2Request struct {
	InstanceId string `json:"instance_id"`
}

Request Object

func (DeleteInstancesV2Request) String

func (o DeleteInstancesV2Request) String() string

type DeleteInstancesV2Response

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

Response Object

func (DeleteInstancesV2Response) String

func (o DeleteInstancesV2Response) String() string

type DeleteRequestThrottlingPolicyV2Request

type DeleteRequestThrottlingPolicyV2Request struct {
	InstanceId string `json:"instance_id"`

	ThrottleId string `json:"throttle_id"`
}

Request Object

func (DeleteRequestThrottlingPolicyV2Request) String

type DeleteRequestThrottlingPolicyV2Response

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

Response Object

func (DeleteRequestThrottlingPolicyV2Response) String

type DeleteSignatureKeyV2Request

type DeleteSignatureKeyV2Request struct {
	InstanceId string `json:"instance_id"`

	SignId string `json:"sign_id"`
}

Request Object

func (DeleteSignatureKeyV2Request) String

type DeleteSignatureKeyV2Response

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

Response Object

func (DeleteSignatureKeyV2Response) String

type DeleteSpecialThrottlingConfigurationV2Request

type DeleteSpecialThrottlingConfigurationV2Request struct {
	InstanceId string `json:"instance_id"`

	ThrottleId string `json:"throttle_id"`

	StrategyId string `json:"strategy_id"`
}

Request Object

func (DeleteSpecialThrottlingConfigurationV2Request) String

type DeleteSpecialThrottlingConfigurationV2Response

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

Response Object

func (DeleteSpecialThrottlingConfigurationV2Response) String

type DeleteVpcChannelV2Request

type DeleteVpcChannelV2Request struct {
	InstanceId string `json:"instance_id"`

	VpcChannelId string `json:"vpc_channel_id"`
}

Request Object

func (DeleteVpcChannelV2Request) String

func (o DeleteVpcChannelV2Request) String() string

type DeleteVpcChannelV2Response

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

Response Object

func (DeleteVpcChannelV2Response) String

type DisassociateCertificateV2Request

type DisassociateCertificateV2Request struct {
	InstanceId string `json:"instance_id"`

	GroupId string `json:"group_id"`

	DomainId string `json:"domain_id"`

	CertificateId string `json:"certificate_id"`
}

Request Object

func (DisassociateCertificateV2Request) String

type DisassociateCertificateV2Response

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

Response Object

func (DisassociateCertificateV2Response) String

type DisassociateDomainV2Request

type DisassociateDomainV2Request struct {
	InstanceId string `json:"instance_id"`

	GroupId string `json:"group_id"`

	DomainId string `json:"domain_id"`
}

Request Object

func (DisassociateDomainV2Request) String

type DisassociateDomainV2Response

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

Response Object

func (DisassociateDomainV2Response) String

type DisassociateRequestThrottlingPolicyV2Request

type DisassociateRequestThrottlingPolicyV2Request struct {
	InstanceId string `json:"instance_id"`

	ThrottleBindingId string `json:"throttle_binding_id"`
}

Request Object

func (DisassociateRequestThrottlingPolicyV2Request) String

type DisassociateRequestThrottlingPolicyV2Response

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

Response Object

func (DisassociateRequestThrottlingPolicyV2Response) String

type DisassociateSignatureKeyV2Request

type DisassociateSignatureKeyV2Request struct {
	InstanceId string `json:"instance_id"`

	SignBindingsId string `json:"sign_bindings_id"`
}

Request Object

func (DisassociateSignatureKeyV2Request) String

type DisassociateSignatureKeyV2Response

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

Response Object

func (DisassociateSignatureKeyV2Response) String

type EipBindReq

type EipBindReq struct {
	EipId *string `json:"eip_id,omitempty"`
}

func (EipBindReq) String

func (o EipBindReq) String() string

type EnvCreate

type EnvCreate struct {
	Name string `json:"name"`

	Remark *string `json:"remark,omitempty"`
}

func (EnvCreate) String

func (o EnvCreate) String() string

type EnvInfo

type EnvInfo struct {
	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	Name *string `json:"name,omitempty"`

	Remark *string `json:"remark,omitempty"`

	Id *string `json:"id,omitempty"`
}

func (EnvInfo) String

func (o EnvInfo) String() string

type EnvVariableBase

type EnvVariableBase struct {
	VariableValue string `json:"variable_value"`
}

func (EnvVariableBase) String

func (o EnvVariableBase) String() string

type EnvVariableCreate

type EnvVariableCreate struct {
	VariableValue string `json:"variable_value"`

	EnvId *string `json:"env_id,omitempty"`

	GroupId *string `json:"group_id,omitempty"`

	VariableName *string `json:"variable_name,omitempty"`
}

func (EnvVariableCreate) String

func (o EnvVariableCreate) String() string

type EnvVariableInfo

type EnvVariableInfo struct {
	VariableValue string `json:"variable_value"`

	EnvId *string `json:"env_id,omitempty"`

	GroupId *string `json:"group_id,omitempty"`

	VariableName *string `json:"variable_name,omitempty"`

	Id *string `json:"id,omitempty"`
}

func (EnvVariableInfo) String

func (o EnvVariableInfo) String() string

type ExportApiDefinitionsV2Request

type ExportApiDefinitionsV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (ExportApiDefinitionsV2Request) String

type ExportApiDefinitionsV2Response

type ExportApiDefinitionsV2Response struct {
	HttpStatusCode int           `json:"-"`
	Body           io.ReadCloser `json:"-" type:"stream"`
}

Response Object

func (ExportApiDefinitionsV2Response) Consume

func (o ExportApiDefinitionsV2Response) Consume(writer io.Writer) (int64, error)

func (ExportApiDefinitionsV2Response) String

type ExportOpenApiReq

type ExportOpenApiReq struct {
	EnvId *string `json:"env_id,omitempty"`

	GroupId string `json:"group_id"`

	Define *ExportOpenApiReqDefine `json:"define,omitempty"`

	Type *ExportOpenApiReqType `json:"type,omitempty"`

	Version *string `json:"version,omitempty"`

	Apis *[]string `json:"apis,omitempty"`
}

func (ExportOpenApiReq) String

func (o ExportOpenApiReq) String() string

type ExportOpenApiReqDefine

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

func (ExportOpenApiReqDefine) MarshalJSON

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

func (*ExportOpenApiReqDefine) UnmarshalJSON

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

type ExportOpenApiReqDefineEnum

type ExportOpenApiReqDefineEnum struct {
	SPEC  ExportOpenApiReqDefine
	PROXY ExportOpenApiReqDefine
	ALL   ExportOpenApiReqDefine
	DEV   ExportOpenApiReqDefine
}

func GetExportOpenApiReqDefineEnum

func GetExportOpenApiReqDefineEnum() ExportOpenApiReqDefineEnum

type ExportOpenApiReqType

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

func (ExportOpenApiReqType) MarshalJSON

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

func (*ExportOpenApiReqType) UnmarshalJSON

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

type ExportOpenApiReqTypeEnum

type ExportOpenApiReqTypeEnum struct {
	JSON ExportOpenApiReqType
	YAML ExportOpenApiReqType
	YML  ExportOpenApiReqType
}

func GetExportOpenApiReqTypeEnum

func GetExportOpenApiReqTypeEnum() ExportOpenApiReqTypeEnum

type Failure

type Failure struct {
	Path *string `json:"path,omitempty"`

	ErrorMsg *string `json:"error_msg,omitempty"`

	Method *string `json:"method,omitempty"`

	ErrorCode *string `json:"error_code,omitempty"`
}

func (Failure) String

func (o Failure) String() string

type FeatureInfo

type FeatureInfo struct {
	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	Enable *bool `json:"enable,omitempty"`

	Config *string `json:"config,omitempty"`

	InstanceId *string `json:"instance_id,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`
}

func (FeatureInfo) String

func (o FeatureInfo) String() string

type FeatureToggle

type FeatureToggle struct {
	Name string `json:"name"`

	Enable bool `json:"enable"`

	Config *string `json:"config,omitempty"`
}

func (FeatureToggle) String

func (o FeatureToggle) String() string

type Identity

type Identity struct {
	Name string `json:"name"`

	Location IdentityLocation `json:"location"`

	Validation *string `json:"validation,omitempty"`
}

func (Identity) String

func (o Identity) String() string

type IdentityLocation

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

func (IdentityLocation) MarshalJSON

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

func (*IdentityLocation) UnmarshalJSON

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

type IdentityLocationEnum

type IdentityLocationEnum struct {
	HEADER IdentityLocation
	QUERY  IdentityLocation
}

func GetIdentityLocationEnum

func GetIdentityLocationEnum() IdentityLocationEnum

type Ignore

type Ignore struct {
	Method *string `json:"method,omitempty"`

	Path *string `json:"path,omitempty"`
}

func (Ignore) String

func (o Ignore) String() string

type ImportApiDefinitionsV2Request

type ImportApiDefinitionsV2Request struct {
	InstanceId string `json:"instance_id"`

	Body *ImportApiDefinitionsV2RequestBody `json:"body,omitempty" type:"multipart"`
}

Request Object

func (ImportApiDefinitionsV2Request) String

type ImportApiDefinitionsV2RequestBody

type ImportApiDefinitionsV2RequestBody struct {
	// 是否创建新分组
	IsCreateGroup *def.MultiPart `json:"is_create_group,omitempty"`

	// API分组编号,当is_create_group=false时为必填
	GroupId *def.MultiPart `json:"group_id,omitempty"`

	// 扩展信息导入模式 - merge:当扩展信息定义冲突时,merge保留原有扩展信息 - override:当扩展信息定义冲突时,override会覆盖原有扩展信息
	ExtendMode *def.MultiPart `json:"extend_mode,omitempty"`

	// 是否开启简易导入模式
	SimpleMode *def.MultiPart `json:"simple_mode,omitempty"`

	// 是否开启Mock后端
	MockMode *def.MultiPart `json:"mock_mode,omitempty"`

	// 导入模式 - merge:当API信息定义冲突时,merge保留原有API信息 - override:当API信息定义冲突时,override会覆盖原有API信息
	ApiMode *def.MultiPart `json:"api_mode,omitempty"`

	// 导入Api的请求体,json或yaml格式的文件
	FileName *def.FilePart `json:"file_name"`
}

func (ImportApiDefinitionsV2RequestBody) String

func (*ImportApiDefinitionsV2RequestBody) UnmarshalJSON

func (o *ImportApiDefinitionsV2RequestBody) UnmarshalJSON(b []byte) error

type ImportApiDefinitionsV2RequestBodyApiMode

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

func (ImportApiDefinitionsV2RequestBodyApiMode) MarshalJSON

func (*ImportApiDefinitionsV2RequestBodyApiMode) UnmarshalJSON

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

type ImportApiDefinitionsV2RequestBodyApiModeEnum

type ImportApiDefinitionsV2RequestBodyApiModeEnum struct {
	MERGE    ImportApiDefinitionsV2RequestBodyApiMode
	OVERRIDE ImportApiDefinitionsV2RequestBodyApiMode
}

func GetImportApiDefinitionsV2RequestBodyApiModeEnum

func GetImportApiDefinitionsV2RequestBodyApiModeEnum() ImportApiDefinitionsV2RequestBodyApiModeEnum

type ImportApiDefinitionsV2RequestBodyExtendMode

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

func (ImportApiDefinitionsV2RequestBodyExtendMode) MarshalJSON

func (*ImportApiDefinitionsV2RequestBodyExtendMode) UnmarshalJSON

type ImportApiDefinitionsV2Response

type ImportApiDefinitionsV2Response struct {
	Success *[]Success `json:"success,omitempty"`

	Failure *[]Failure `json:"failure,omitempty"`

	Swagger *Swagger `json:"swagger,omitempty"`

	GroupId *string `json:"group_id,omitempty"`

	Ignore         *[]Ignore `json:"ignore,omitempty"`
	HttpStatusCode int       `json:"-"`
}

Response Object

func (ImportApiDefinitionsV2Response) String

type ImportBaseResult

type ImportBaseResult struct {
	Success *[]Success `json:"success,omitempty"`

	Failure *[]Failure `json:"failure,omitempty"`

	Swagger *Swagger `json:"swagger,omitempty"`
}

func (ImportBaseResult) String

func (o ImportBaseResult) String() string

type InnerLatencyStats

type InnerLatencyStats struct {
	MaxInnerLatency *int32 `json:"max_inner_latency,omitempty"`

	AvgInnerLatency *float32 `json:"avg_inner_latency,omitempty"`
}

func (InnerLatencyStats) String

func (o InnerLatencyStats) String() string

type InstanceAbstractReq

type InstanceAbstractReq struct {
	Description *string `json:"description,omitempty"`

	MaintainBegin *string `json:"maintain_begin,omitempty"`

	MaintainEnd *string `json:"maintain_end,omitempty"`
}

func (InstanceAbstractReq) String

func (o InstanceAbstractReq) String() string

type InstanceConfig

type InstanceConfig struct {
	ConfigId *string `json:"config_id,omitempty"`

	ConfigName *InstanceConfigConfigName `json:"config_name,omitempty"`

	ConfigValue *string `json:"config_value,omitempty"`

	ConfigTime *sdktime.SdkTime `json:"config_time,omitempty"`

	Remark *string `json:"remark,omitempty"`
}

func (InstanceConfig) String

func (o InstanceConfig) String() string

type InstanceConfigConfigName

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

func (InstanceConfigConfigName) MarshalJSON

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

func (*InstanceConfigConfigName) UnmarshalJSON

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

type InstanceConfigConfigNameEnum

type InstanceConfigConfigNameEnum struct {
	INSTANCE_NUM_LIMIT InstanceConfigConfigName
}

func GetInstanceConfigConfigNameEnum

func GetInstanceConfigConfigNameEnum() InstanceConfigConfigNameEnum

type InstanceCreateReq

type InstanceCreateReq struct {
	Description *string `json:"description,omitempty"`

	MaintainBegin *string `json:"maintain_begin,omitempty"`

	MaintainEnd *string `json:"maintain_end,omitempty"`

	InstanceName *string `json:"instance_name,omitempty"`

	InstanceId *string `json:"instance_id,omitempty"`

	SpecId *InstanceCreateReqSpecId `json:"spec_id,omitempty"`

	VpcId *string `json:"vpc_id,omitempty"`

	SubnetId *string `json:"subnet_id,omitempty"`

	SecurityGroupId *string `json:"security_group_id,omitempty"`

	EipId *string `json:"eip_id,omitempty"`

	EnterpriseProjectId *string `json:"enterprise_project_id,omitempty"`

	AvailableZoneIds *[]string `json:"available_zone_ids,omitempty"`

	BandwidthSize *int32 `json:"bandwidth_size,omitempty"`

	Ipv6Enable *bool `json:"ipv6_enable,omitempty"`
}

func (InstanceCreateReq) String

func (o InstanceCreateReq) String() string

type InstanceCreateReqSpecId

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

func (InstanceCreateReqSpecId) MarshalJSON

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

func (*InstanceCreateReqSpecId) UnmarshalJSON

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

type InstanceCreateReqSpecIdEnum

type InstanceCreateReqSpecIdEnum struct {
	BASIC             InstanceCreateReqSpecId
	PROFESSIONAL      InstanceCreateReqSpecId
	ENTERPRISE        InstanceCreateReqSpecId
	PLATINUM          InstanceCreateReqSpecId
	BASIC_IPV6        InstanceCreateReqSpecId
	PROFESSIONAL_IPV6 InstanceCreateReqSpecId
	ENTERPRISE_IPV6   InstanceCreateReqSpecId
	PLATINUM_IPV6     InstanceCreateReqSpecId
}

func GetInstanceCreateReqSpecIdEnum

func GetInstanceCreateReqSpecIdEnum() InstanceCreateReqSpecIdEnum

type InstanceModReq

type InstanceModReq struct {
	Description *string `json:"description,omitempty"`

	MaintainBegin *string `json:"maintain_begin,omitempty"`

	MaintainEnd *string `json:"maintain_end,omitempty"`

	InstanceName *string `json:"instance_name,omitempty"`

	SecurityGroupId *string `json:"security_group_id,omitempty"`
}

func (InstanceModReq) String

func (o InstanceModReq) String() string

type LatencyStats

type LatencyStats struct {
	MaxLatency *int32 `json:"max_latency,omitempty"`

	AvgLatency *float32 `json:"avg_latency,omitempty"`
}

func (LatencyStats) String

func (o LatencyStats) String() string

type ListAclPolicyBindedToApiV2Request

type ListAclPolicyBindedToApiV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	ApiId string `json:"api_id"`

	EnvId *string `json:"env_id,omitempty"`

	EnvName *string `json:"env_name,omitempty"`

	AclId *string `json:"acl_id,omitempty"`

	AclName *string `json:"acl_name,omitempty"`
}

Request Object

func (ListAclPolicyBindedToApiV2Request) String

type ListAclPolicyBindedToApiV2Response

type ListAclPolicyBindedToApiV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Acls           *[]ApiBindAclInfo `json:"acls,omitempty"`
	HttpStatusCode int               `json:"-"`
}

Response Object

func (ListAclPolicyBindedToApiV2Response) String

type ListAclStrategiesV2Request

type ListAclStrategiesV2Request struct {
	InstanceId string `json:"instance_id"`

	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	AclType *string `json:"acl_type,omitempty"`

	EntityType *string `json:"entity_type,omitempty"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	PreciseSearch *string `json:"precise_search,omitempty"`
}

Request Object

func (ListAclStrategiesV2Request) String

type ListAclStrategiesV2Response

type ListAclStrategiesV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Acls           *[]ApiAclInfoWithBindNum `json:"acls,omitempty"`
	HttpStatusCode int                      `json:"-"`
}

Response Object

func (ListAclStrategiesV2Response) String

type ListApiGroupsQuantitiesV2Request

type ListApiGroupsQuantitiesV2Request struct {
	InstanceId string `json:"instance_id"`
}

Request Object

func (ListApiGroupsQuantitiesV2Request) String

type ListApiGroupsQuantitiesV2Response

type ListApiGroupsQuantitiesV2Response struct {
	OffsellNums *int32 `json:"offsell_nums,omitempty"`

	OnsellNums     *int32 `json:"onsell_nums,omitempty"`
	HttpStatusCode int    `json:"-"`
}

Response Object

func (ListApiGroupsQuantitiesV2Response) String

type ListApiGroupsV2Request

type ListApiGroupsV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	PreciseSearch *string `json:"precise_search,omitempty"`
}

Request Object

func (ListApiGroupsV2Request) String

func (o ListApiGroupsV2Request) String() string

type ListApiGroupsV2Response

type ListApiGroupsV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Groups         *[]ApiGroupInfoPage `json:"groups,omitempty"`
	HttpStatusCode int                 `json:"-"`
}

Response Object

func (ListApiGroupsV2Response) String

func (o ListApiGroupsV2Response) String() string

type ListApiQuantitiesV2Request

type ListApiQuantitiesV2Request struct {
	InstanceId string `json:"instance_id"`
}

Request Object

func (ListApiQuantitiesV2Request) String

type ListApiQuantitiesV2Response

type ListApiQuantitiesV2Response struct {
	InstanceNum *int32 `json:"instance_num,omitempty"`

	NumsOnRelease *int32 `json:"nums_on_release,omitempty"`

	NumsOffRelease *int32 `json:"nums_off_release,omitempty"`
	HttpStatusCode int    `json:"-"`
}

Response Object

func (ListApiQuantitiesV2Response) String

type ListApiRuntimeDefinitionV2Request

type ListApiRuntimeDefinitionV2Request struct {
	InstanceId string `json:"instance_id"`

	ApiId string `json:"api_id"`

	EnvId *string `json:"env_id,omitempty"`
}

Request Object

func (ListApiRuntimeDefinitionV2Request) String

type ListApiRuntimeDefinitionV2Response

type ListApiRuntimeDefinitionV2Response struct {
	Name string `json:"name"`

	Type ListApiRuntimeDefinitionV2ResponseType `json:"type"`

	Version *string `json:"version,omitempty"`

	ReqProtocol ListApiRuntimeDefinitionV2ResponseReqProtocol `json:"req_protocol"`

	ReqMethod ListApiRuntimeDefinitionV2ResponseReqMethod `json:"req_method"`

	ReqUri string `json:"req_uri"`

	AuthType ListApiRuntimeDefinitionV2ResponseAuthType `json:"auth_type"`

	AuthOpt *AuthOpt `json:"auth_opt,omitempty"`

	Cors *bool `json:"cors,omitempty"`

	MatchMode *ListApiRuntimeDefinitionV2ResponseMatchMode `json:"match_mode,omitempty"`

	BackendType ListApiRuntimeDefinitionV2ResponseBackendType `json:"backend_type"`

	Remark *string `json:"remark,omitempty"`

	GroupId string `json:"group_id"`

	BodyRemark *string `json:"body_remark,omitempty"`

	ResultNormalSample *string `json:"result_normal_sample,omitempty"`

	ResultFailureSample *string `json:"result_failure_sample,omitempty"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`

	Tags *[]string `json:"tags,omitempty"`

	ResponseId *string `json:"response_id,omitempty"`

	RomaAppId *string `json:"roma_app_id,omitempty"`

	DomainName *string `json:"domain_name,omitempty"`

	Tag *string `json:"tag,omitempty"`

	Id *string `json:"id,omitempty"`

	GroupName *string `json:"group_name,omitempty"`

	RunEnvName *string `json:"run_env_name,omitempty"`

	RunEnvId *string `json:"run_env_id,omitempty"`

	PublishId *string `json:"publish_id,omitempty"`

	SlDomain *string `json:"sl_domain,omitempty"`

	SlDomains *[]string `json:"sl_domains,omitempty"`

	ReqParams      *[]ReqParam `json:"req_params,omitempty"`
	HttpStatusCode int         `json:"-"`
}

Response Object

func (ListApiRuntimeDefinitionV2Response) String

type ListApiRuntimeDefinitionV2ResponseAuthType

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

func (ListApiRuntimeDefinitionV2ResponseAuthType) MarshalJSON

func (*ListApiRuntimeDefinitionV2ResponseAuthType) UnmarshalJSON

type ListApiRuntimeDefinitionV2ResponseBackendType

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

func (ListApiRuntimeDefinitionV2ResponseBackendType) MarshalJSON

func (*ListApiRuntimeDefinitionV2ResponseBackendType) UnmarshalJSON

type ListApiRuntimeDefinitionV2ResponseMatchMode

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

func (ListApiRuntimeDefinitionV2ResponseMatchMode) MarshalJSON

func (*ListApiRuntimeDefinitionV2ResponseMatchMode) UnmarshalJSON

type ListApiRuntimeDefinitionV2ResponseReqMethod

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

func (ListApiRuntimeDefinitionV2ResponseReqMethod) MarshalJSON

func (*ListApiRuntimeDefinitionV2ResponseReqMethod) UnmarshalJSON

type ListApiRuntimeDefinitionV2ResponseReqProtocol

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

func (ListApiRuntimeDefinitionV2ResponseReqProtocol) MarshalJSON

func (*ListApiRuntimeDefinitionV2ResponseReqProtocol) UnmarshalJSON

type ListApiRuntimeDefinitionV2ResponseType

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

func (ListApiRuntimeDefinitionV2ResponseType) MarshalJSON

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

func (*ListApiRuntimeDefinitionV2ResponseType) UnmarshalJSON

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

type ListApiVersionDetailV2Request

type ListApiVersionDetailV2Request struct {
	InstanceId string `json:"instance_id"`

	VersionId string `json:"version_id"`
}

Request Object

func (ListApiVersionDetailV2Request) String

type ListApiVersionDetailV2Response

type ListApiVersionDetailV2Response struct {
	Name string `json:"name"`

	Type ListApiVersionDetailV2ResponseType `json:"type"`

	Version *string `json:"version,omitempty"`

	ReqProtocol ListApiVersionDetailV2ResponseReqProtocol `json:"req_protocol"`

	ReqMethod ListApiVersionDetailV2ResponseReqMethod `json:"req_method"`

	ReqUri string `json:"req_uri"`

	AuthType ListApiVersionDetailV2ResponseAuthType `json:"auth_type"`

	AuthOpt *AuthOpt `json:"auth_opt,omitempty"`

	Cors *bool `json:"cors,omitempty"`

	MatchMode *ListApiVersionDetailV2ResponseMatchMode `json:"match_mode,omitempty"`

	BackendType ListApiVersionDetailV2ResponseBackendType `json:"backend_type"`

	Remark *string `json:"remark,omitempty"`

	GroupId string `json:"group_id"`

	BodyRemark *string `json:"body_remark,omitempty"`

	ResultNormalSample *string `json:"result_normal_sample,omitempty"`

	ResultFailureSample *string `json:"result_failure_sample,omitempty"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`

	Tags *[]string `json:"tags,omitempty"`

	ResponseId *string `json:"response_id,omitempty"`

	RomaAppId *string `json:"roma_app_id,omitempty"`

	DomainName *string `json:"domain_name,omitempty"`

	Tag *string `json:"tag,omitempty"`

	Id *string `json:"id,omitempty"`

	Status *int32 `json:"status,omitempty"`

	ArrangeNecessary *int32 `json:"arrange_necessary,omitempty"`

	RegisterTime *sdktime.SdkTime `json:"register_time,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`

	GroupName *string `json:"group_name,omitempty"`

	GroupVersion *string `json:"group_version,omitempty"`

	RunEnvId *string `json:"run_env_id,omitempty"`

	RunEnvName *string `json:"run_env_name,omitempty"`

	PublishId *string `json:"publish_id,omitempty"`

	FuncInfo *ApiFunc `json:"func_info,omitempty"`

	MockInfo *ApiMock `json:"mock_info,omitempty"`

	ReqParams *[]ReqParam `json:"req_params,omitempty"`

	BackendParams *[]BackendParam `json:"backend_params,omitempty"`

	PolicyFunctions *[]ApiPolicyFunctionResp `json:"policy_functions,omitempty"`

	PolicyMocks *[]ApiPolicyMockResp `json:"policy_mocks,omitempty"`

	BackendApi *BackendApi `json:"backend_api,omitempty"`

	PolicyHttps *[]ApiPolicyHttpResp `json:"policy_https,omitempty"`

	SlDomain *string `json:"sl_domain,omitempty"`

	SlDomains *[]string `json:"sl_domains,omitempty"`

	VersionId *string `json:"version_id,omitempty"`

	PublishTime    *sdktime.SdkTime `json:"publish_time,omitempty"`
	HttpStatusCode int              `json:"-"`
}

Response Object

func (ListApiVersionDetailV2Response) String

type ListApiVersionDetailV2ResponseAuthType

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

func (ListApiVersionDetailV2ResponseAuthType) MarshalJSON

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

func (*ListApiVersionDetailV2ResponseAuthType) UnmarshalJSON

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

type ListApiVersionDetailV2ResponseBackendType

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

func (ListApiVersionDetailV2ResponseBackendType) MarshalJSON

func (*ListApiVersionDetailV2ResponseBackendType) UnmarshalJSON

type ListApiVersionDetailV2ResponseMatchMode

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

func (ListApiVersionDetailV2ResponseMatchMode) MarshalJSON

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

func (*ListApiVersionDetailV2ResponseMatchMode) UnmarshalJSON

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

type ListApiVersionDetailV2ResponseMatchModeEnum

type ListApiVersionDetailV2ResponseMatchModeEnum struct {
	SWA    ListApiVersionDetailV2ResponseMatchMode
	NORMAL ListApiVersionDetailV2ResponseMatchMode
}

func GetListApiVersionDetailV2ResponseMatchModeEnum

func GetListApiVersionDetailV2ResponseMatchModeEnum() ListApiVersionDetailV2ResponseMatchModeEnum

type ListApiVersionDetailV2ResponseReqMethod

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

func (ListApiVersionDetailV2ResponseReqMethod) MarshalJSON

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

func (*ListApiVersionDetailV2ResponseReqMethod) UnmarshalJSON

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

type ListApiVersionDetailV2ResponseReqProtocol

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

func (ListApiVersionDetailV2ResponseReqProtocol) MarshalJSON

func (*ListApiVersionDetailV2ResponseReqProtocol) UnmarshalJSON

type ListApiVersionDetailV2ResponseType

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

func (ListApiVersionDetailV2ResponseType) MarshalJSON

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

func (*ListApiVersionDetailV2ResponseType) UnmarshalJSON

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

type ListApiVersionDetailV2ResponseTypeEnum

type ListApiVersionDetailV2ResponseTypeEnum struct {
	E_1 ListApiVersionDetailV2ResponseType
	E_2 ListApiVersionDetailV2ResponseType
}

func GetListApiVersionDetailV2ResponseTypeEnum

func GetListApiVersionDetailV2ResponseTypeEnum() ListApiVersionDetailV2ResponseTypeEnum

type ListApiVersionsV2Request

type ListApiVersionsV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	ApiId string `json:"api_id"`

	EnvId *string `json:"env_id,omitempty"`

	EnvName *string `json:"env_name,omitempty"`
}

Request Object

func (ListApiVersionsV2Request) String

func (o ListApiVersionsV2Request) String() string

type ListApiVersionsV2Response

type ListApiVersionsV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	ApiVersions    *[]ApiVersionResp `json:"api_versions,omitempty"`
	HttpStatusCode int               `json:"-"`
}

Response Object

func (ListApiVersionsV2Response) String

func (o ListApiVersionsV2Response) String() string

type ListApisBindedToAclPolicyV2Request

type ListApisBindedToAclPolicyV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	AclId string `json:"acl_id"`

	ApiId *string `json:"api_id,omitempty"`

	ApiName *string `json:"api_name,omitempty"`

	EnvId *string `json:"env_id,omitempty"`

	GroupId *string `json:"group_id,omitempty"`
}

Request Object

func (ListApisBindedToAclPolicyV2Request) String

type ListApisBindedToAclPolicyV2Response

type ListApisBindedToAclPolicyV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Apis           *[]AclBindApiInfo `json:"apis,omitempty"`
	HttpStatusCode int               `json:"-"`
}

Response Object

func (ListApisBindedToAclPolicyV2Response) String

type ListApisBindedToAppV2Request

type ListApisBindedToAppV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	AppId string `json:"app_id"`

	ApiId *string `json:"api_id,omitempty"`

	ApiName *string `json:"api_name,omitempty"`

	GroupId *string `json:"group_id,omitempty"`

	GroupName *string `json:"group_name,omitempty"`

	EnvId *string `json:"env_id,omitempty"`
}

Request Object

func (ListApisBindedToAppV2Request) String

type ListApisBindedToAppV2Response

type ListApisBindedToAppV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Auths          *[]ApiAuthInfo `json:"auths,omitempty"`
	HttpStatusCode int            `json:"-"`
}

Response Object

func (ListApisBindedToAppV2Response) String

type ListApisBindedToRequestThrottlingPolicyV2Request

type ListApisBindedToRequestThrottlingPolicyV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	ThrottleId string `json:"throttle_id"`

	EnvId *string `json:"env_id,omitempty"`

	GroupId *string `json:"group_id,omitempty"`

	ApiId *string `json:"api_id,omitempty"`

	ApiName *string `json:"api_name,omitempty"`
}

Request Object

func (ListApisBindedToRequestThrottlingPolicyV2Request) String

type ListApisBindedToRequestThrottlingPolicyV2Response

type ListApisBindedToRequestThrottlingPolicyV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Apis           *[]ApiForThrottle `json:"apis,omitempty"`
	HttpStatusCode int               `json:"-"`
}

Response Object

func (ListApisBindedToRequestThrottlingPolicyV2Response) String

type ListApisBindedToSignatureKeyV2Request

type ListApisBindedToSignatureKeyV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	SignId string `json:"sign_id"`

	EnvId *string `json:"env_id,omitempty"`

	ApiId *string `json:"api_id,omitempty"`

	ApiName *string `json:"api_name,omitempty"`

	GroupId *string `json:"group_id,omitempty"`
}

Request Object

func (ListApisBindedToSignatureKeyV2Request) String

type ListApisBindedToSignatureKeyV2Response

type ListApisBindedToSignatureKeyV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Bindings       *[]SignApiBindingBase `json:"bindings,omitempty"`
	HttpStatusCode int                   `json:"-"`
}

Response Object

func (ListApisBindedToSignatureKeyV2Response) String

type ListApisNotBoundWithSignatureKeyV2Request

type ListApisNotBoundWithSignatureKeyV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	SignId string `json:"sign_id"`

	EnvId *string `json:"env_id,omitempty"`

	ApiId *string `json:"api_id,omitempty"`

	ApiName *string `json:"api_name,omitempty"`

	GroupId *string `json:"group_id,omitempty"`
}

Request Object

func (ListApisNotBoundWithSignatureKeyV2Request) String

type ListApisNotBoundWithSignatureKeyV2Response

type ListApisNotBoundWithSignatureKeyV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Apis           *[]ApiForSign `json:"apis,omitempty"`
	HttpStatusCode int           `json:"-"`
}

Response Object

func (ListApisNotBoundWithSignatureKeyV2Response) String

type ListApisUnbindedToAclPolicyV2Request

type ListApisUnbindedToAclPolicyV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	AclId string `json:"acl_id"`

	ApiId *string `json:"api_id,omitempty"`

	ApiName *string `json:"api_name,omitempty"`

	EnvId *string `json:"env_id,omitempty"`

	GroupId *string `json:"group_id,omitempty"`
}

Request Object

func (ListApisUnbindedToAclPolicyV2Request) String

type ListApisUnbindedToAclPolicyV2Response

type ListApisUnbindedToAclPolicyV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Apis           *[]UnbindApiForAcl `json:"apis,omitempty"`
	HttpStatusCode int                `json:"-"`
}

Response Object

func (ListApisUnbindedToAclPolicyV2Response) String

type ListApisUnbindedToAppV2Request

type ListApisUnbindedToAppV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	AppId string `json:"app_id"`

	EnvId string `json:"env_id"`

	GroupId *string `json:"group_id,omitempty"`

	ApiId *string `json:"api_id,omitempty"`

	ApiName *string `json:"api_name,omitempty"`
}

Request Object

func (ListApisUnbindedToAppV2Request) String

type ListApisUnbindedToAppV2Response

type ListApisUnbindedToAppV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Apis           *[]ApiOutline `json:"apis,omitempty"`
	HttpStatusCode int           `json:"-"`
}

Response Object

func (ListApisUnbindedToAppV2Response) String

type ListApisUnbindedToRequestThrottlingPolicyV2Request

type ListApisUnbindedToRequestThrottlingPolicyV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	ThrottleId string `json:"throttle_id"`

	EnvId *string `json:"env_id,omitempty"`

	GroupId *string `json:"group_id,omitempty"`

	ApiId *string `json:"api_id,omitempty"`

	ApiName *string `json:"api_name,omitempty"`
}

Request Object

func (ListApisUnbindedToRequestThrottlingPolicyV2Request) String

type ListApisUnbindedToRequestThrottlingPolicyV2Response

type ListApisUnbindedToRequestThrottlingPolicyV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Apis           *[]ApiForThrottle `json:"apis,omitempty"`
	HttpStatusCode int               `json:"-"`
}

Response Object

func (ListApisUnbindedToRequestThrottlingPolicyV2Response) String

type ListApisV2Request

type ListApisV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	GroupId *string `json:"group_id,omitempty"`

	ReqProtocol *string `json:"req_protocol,omitempty"`

	ReqMethod *string `json:"req_method,omitempty"`

	ReqUri *string `json:"req_uri,omitempty"`

	AuthType *string `json:"auth_type,omitempty"`

	EnvId *string `json:"env_id,omitempty"`

	Type *int32 `json:"type,omitempty"`

	PreciseSearch *string `json:"precise_search,omitempty"`
}

Request Object

func (ListApisV2Request) String

func (o ListApisV2Request) String() string

type ListApisV2Response

type ListApisV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Apis           *[]ApiInfoPerPage `json:"apis,omitempty"`
	HttpStatusCode int               `json:"-"`
}

Response Object

func (ListApisV2Response) String

func (o ListApisV2Response) String() string

type ListAppCodesV2Request

type ListAppCodesV2Request struct {
	InstanceId string `json:"instance_id"`

	AppId string `json:"app_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`
}

Request Object

func (ListAppCodesV2Request) String

func (o ListAppCodesV2Request) String() string

type ListAppCodesV2Response

type ListAppCodesV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	AppCodes       *[]AppCodeBaseInfo `json:"app_codes,omitempty"`
	HttpStatusCode int                `json:"-"`
}

Response Object

func (ListAppCodesV2Response) String

func (o ListAppCodesV2Response) String() string

type ListAppQuantitiesV2Request

type ListAppQuantitiesV2Request struct {
	InstanceId string `json:"instance_id"`
}

Request Object

func (ListAppQuantitiesV2Request) String

type ListAppQuantitiesV2Response

type ListAppQuantitiesV2Response struct {
	AuthedNums *int32 `json:"authed_nums,omitempty"`

	UnauthedNums   *int32 `json:"unauthed_nums,omitempty"`
	HttpStatusCode int    `json:"-"`
}

Response Object

func (ListAppQuantitiesV2Response) String

type ListAppsBindedToApiV2Request

type ListAppsBindedToApiV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	ApiId *string `json:"api_id,omitempty"`

	AppName *string `json:"app_name,omitempty"`

	AppId *string `json:"app_id,omitempty"`

	EnvId *string `json:"env_id,omitempty"`
}

Request Object

func (ListAppsBindedToApiV2Request) String

type ListAppsBindedToApiV2Response

type ListAppsBindedToApiV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Auths          *[]ApiAuthInfo `json:"auths,omitempty"`
	HttpStatusCode int            `json:"-"`
}

Response Object

func (ListAppsBindedToApiV2Response) String

type ListAppsV2Request

type ListAppsV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	Status *int32 `json:"status,omitempty"`

	AppKey *string `json:"app_key,omitempty"`

	Creator *string `json:"creator,omitempty"`

	PreciseSearch *string `json:"precise_search,omitempty"`
}

Request Object

func (ListAppsV2Request) String

func (o ListAppsV2Request) String() string

type ListAppsV2Response

type ListAppsV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Apps           *[]AppInfoWithBindNum `json:"apps,omitempty"`
	HttpStatusCode int                   `json:"-"`
}

Response Object

func (ListAppsV2Response) String

func (o ListAppsV2Response) String() string

type ListAvailableZonesV2Request

type ListAvailableZonesV2Request struct {
}

Request Object

func (ListAvailableZonesV2Request) String

type ListAvailableZonesV2Response

type ListAvailableZonesV2Response struct {
	AvailableZones *[]AvailableZone `json:"available_zones,omitempty"`
	HttpStatusCode int              `json:"-"`
}

Response Object

func (ListAvailableZonesV2Response) String

type ListBackendInstancesV2Request

type ListBackendInstancesV2Request struct {
	InstanceId string `json:"instance_id"`

	VpcChannelId string `json:"vpc_channel_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	Name *string `json:"name,omitempty"`
}

Request Object

func (ListBackendInstancesV2Request) String

type ListBackendInstancesV2Response

type ListBackendInstancesV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Members        *[]VpcMemberInfo `json:"members,omitempty"`
	HttpStatusCode int              `json:"-"`
}

Response Object

func (ListBackendInstancesV2Response) String

type ListCustomAuthorizersV2Request

type ListCustomAuthorizersV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	Type *string `json:"type,omitempty"`
}

Request Object

func (ListCustomAuthorizersV2Request) String

type ListCustomAuthorizersV2Response

type ListCustomAuthorizersV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	AuthorizerList *[]AuthorizerResp `json:"authorizer_list,omitempty"`
	HttpStatusCode int               `json:"-"`
}

Response Object

func (ListCustomAuthorizersV2Response) String

type ListEnvironmentVariablesV2Request

type ListEnvironmentVariablesV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	EnvId *string `json:"env_id,omitempty"`

	VariableName *string `json:"variable_name,omitempty"`

	PreciseSearch *string `json:"precise_search,omitempty"`
}

Request Object

func (ListEnvironmentVariablesV2Request) String

type ListEnvironmentVariablesV2Response

type ListEnvironmentVariablesV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Variables      *[]EnvVariableInfo `json:"variables,omitempty"`
	HttpStatusCode int                `json:"-"`
}

Response Object

func (ListEnvironmentVariablesV2Response) String

type ListEnvironmentsV2Request

type ListEnvironmentsV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	Name *string `json:"name,omitempty"`
}

Request Object

func (ListEnvironmentsV2Request) String

func (o ListEnvironmentsV2Request) String() string

type ListEnvironmentsV2Response

type ListEnvironmentsV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Envs           *[]EnvInfo `json:"envs,omitempty"`
	HttpStatusCode int        `json:"-"`
}

Response Object

func (ListEnvironmentsV2Response) String

type ListFeaturesV2Request

type ListFeaturesV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`
}

Request Object

func (ListFeaturesV2Request) String

func (o ListFeaturesV2Request) String() string

type ListFeaturesV2Response

type ListFeaturesV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Features       *[]FeatureInfo `json:"features,omitempty"`
	HttpStatusCode int            `json:"-"`
}

Response Object

func (ListFeaturesV2Response) String

func (o ListFeaturesV2Response) String() string

type ListGatewayResponsesV2Request

type ListGatewayResponsesV2Request struct {
	InstanceId string `json:"instance_id"`

	GroupId string `json:"group_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`
}

Request Object

func (ListGatewayResponsesV2Request) String

type ListGatewayResponsesV2Response

type ListGatewayResponsesV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Responses      *[]ResponseInfoResp `json:"responses,omitempty"`
	HttpStatusCode int                 `json:"-"`
}

Response Object

func (ListGatewayResponsesV2Response) String

type ListInstanceCofigsV2Request

type ListInstanceCofigsV2Request struct {
	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`
}

Request Object

func (ListInstanceCofigsV2Request) String

type ListInstanceCofigsV2Response

type ListInstanceCofigsV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Configs        *[]InstanceConfig `json:"configs,omitempty"`
	HttpStatusCode int               `json:"-"`
}

Response Object

func (ListInstanceCofigsV2Response) String

type ListInstancesV2Request

type ListInstancesV2Request struct {
	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	InstanceId *string `json:"instance_id,omitempty"`

	InstanceName *string `json:"instance_name,omitempty"`

	Status *ListInstancesV2RequestStatus `json:"status,omitempty"`
}

Request Object

func (ListInstancesV2Request) String

func (o ListInstancesV2Request) String() string

type ListInstancesV2RequestStatus

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

func (ListInstancesV2RequestStatus) MarshalJSON

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

func (*ListInstancesV2RequestStatus) UnmarshalJSON

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

type ListInstancesV2RequestStatusEnum

func GetListInstancesV2RequestStatusEnum

func GetListInstancesV2RequestStatusEnum() ListInstancesV2RequestStatusEnum

type ListInstancesV2Response

type ListInstancesV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Instances      *[]RespInstanceBase `json:"instances,omitempty"`
	HttpStatusCode int                 `json:"-"`
}

Response Object

func (ListInstancesV2Response) String

func (o ListInstancesV2Response) String() string

type ListLatelyApiStatisticsV2Request

type ListLatelyApiStatisticsV2Request struct {
	InstanceId string `json:"instance_id"`

	ApiId string `json:"api_id"`

	Duration string `json:"duration"`
}

Request Object

func (ListLatelyApiStatisticsV2Request) String

type ListLatelyApiStatisticsV2Response

type ListLatelyApiStatisticsV2Response struct {
	Code *string `json:"code,omitempty"`

	Msg *string `json:"msg,omitempty"`

	StartTime *int64 `json:"start_time,omitempty"`

	EndTime *int64 `json:"end_time,omitempty"`

	List           *[]StatisticsApi `json:"list,omitempty"`
	HttpStatusCode int              `json:"-"`
}

Response Object

func (ListLatelyApiStatisticsV2Response) String

type ListLatelyGroupStatisticsV2Request

type ListLatelyGroupStatisticsV2Request struct {
	InstanceId string `json:"instance_id"`

	GroupId string `json:"group_id"`
}

Request Object

func (ListLatelyGroupStatisticsV2Request) String

type ListLatelyGroupStatisticsV2Response

type ListLatelyGroupStatisticsV2Response struct {
	Code *string `json:"code,omitempty"`

	Msg *string `json:"msg,omitempty"`

	StartTime *int64 `json:"start_time,omitempty"`

	EndTime *int64 `json:"end_time,omitempty"`

	List           *[]StatisticsGroup `json:"list,omitempty"`
	HttpStatusCode int                `json:"-"`
}

Response Object

func (ListLatelyGroupStatisticsV2Response) String

type ListProjectCofigsV2Request

type ListProjectCofigsV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`
}

Request Object

func (ListProjectCofigsV2Request) String

type ListProjectCofigsV2Response

type ListProjectCofigsV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Configs        *[]Config `json:"configs,omitempty"`
	HttpStatusCode int       `json:"-"`
}

Response Object

func (ListProjectCofigsV2Response) String

type ListRequestThrottlingPoliciesBindedToApiV2Request

type ListRequestThrottlingPoliciesBindedToApiV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	ApiId string `json:"api_id"`

	ThrottleId *string `json:"throttle_id,omitempty"`

	ThrottleName *string `json:"throttle_name,omitempty"`

	EnvId *string `json:"env_id,omitempty"`
}

Request Object

func (ListRequestThrottlingPoliciesBindedToApiV2Request) String

type ListRequestThrottlingPoliciesBindedToApiV2Response

type ListRequestThrottlingPoliciesBindedToApiV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Throttles      *[]ThrottleForApi `json:"throttles,omitempty"`
	HttpStatusCode int               `json:"-"`
}

Response Object

func (ListRequestThrottlingPoliciesBindedToApiV2Response) String

type ListRequestThrottlingPolicyV2Request

type ListRequestThrottlingPolicyV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	PreciseSearch *string `json:"precise_search,omitempty"`
}

Request Object

func (ListRequestThrottlingPolicyV2Request) String

type ListRequestThrottlingPolicyV2Response

type ListRequestThrottlingPolicyV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Throttles      *[]ThrottlesInfo `json:"throttles,omitempty"`
	HttpStatusCode int              `json:"-"`
}

Response Object

func (ListRequestThrottlingPolicyV2Response) String

type ListSignatureKeysBindedToApiV2Request

type ListSignatureKeysBindedToApiV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	ApiId string `json:"api_id"`

	SignId *string `json:"sign_id,omitempty"`

	SignName *string `json:"sign_name,omitempty"`

	EnvId *string `json:"env_id,omitempty"`
}

Request Object

func (ListSignatureKeysBindedToApiV2Request) String

type ListSignatureKeysBindedToApiV2Response

type ListSignatureKeysBindedToApiV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Bindings       *[]SignApiBindingInfo `json:"bindings,omitempty"`
	HttpStatusCode int                   `json:"-"`
}

Response Object

func (ListSignatureKeysBindedToApiV2Response) String

type ListSignatureKeysV2Request

type ListSignatureKeysV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	PreciseSearch *string `json:"precise_search,omitempty"`
}

Request Object

func (ListSignatureKeysV2Request) String

type ListSignatureKeysV2Response

type ListSignatureKeysV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Signs          *[]SignatureWithBindNum `json:"signs,omitempty"`
	HttpStatusCode int                     `json:"-"`
}

Response Object

func (ListSignatureKeysV2Response) String

type ListSpecialThrottlingConfigurationsV2Request

type ListSpecialThrottlingConfigurationsV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	ThrottleId string `json:"throttle_id"`

	ObjectType *string `json:"object_type,omitempty"`

	AppName *string `json:"app_name,omitempty"`

	User *string `json:"user,omitempty"`
}

Request Object

func (ListSpecialThrottlingConfigurationsV2Request) String

type ListSpecialThrottlingConfigurationsV2Response

type ListSpecialThrottlingConfigurationsV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	ThrottleSpecials *[]ThrottleSpecialInfo `json:"throttle_specials,omitempty"`
	HttpStatusCode   int                    `json:"-"`
}

Response Object

func (ListSpecialThrottlingConfigurationsV2Response) String

type ListTagsV2Request

type ListTagsV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`
}

Request Object

func (ListTagsV2Request) String

func (o ListTagsV2Request) String() string

type ListTagsV2Response

type ListTagsV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	Responses      *[]string `json:"responses,omitempty"`
	HttpStatusCode int       `json:"-"`
}

Response Object

func (ListTagsV2Response) String

func (o ListTagsV2Response) String() string

type ListVpcChannelsV2Request

type ListVpcChannelsV2Request struct {
	InstanceId string `json:"instance_id"`

	Offset *int64 `json:"offset,omitempty"`

	Limit *int32 `json:"limit,omitempty"`

	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	PreciseSearch *string `json:"precise_search,omitempty"`
}

Request Object

func (ListVpcChannelsV2Request) String

func (o ListVpcChannelsV2Request) String() string

type ListVpcChannelsV2Response

type ListVpcChannelsV2Response struct {
	Size int32 `json:"size"`

	Total int64 `json:"total"`

	VpcChannels    *[]VpcChannelInfo `json:"vpc_channels,omitempty"`
	HttpStatusCode int               `json:"-"`
}

Response Object

func (ListVpcChannelsV2Response) String

func (o ListVpcChannelsV2Response) String() string

type LocalName

type LocalName struct {
	EnUs *string `json:"en_us,omitempty"`

	ZhCn *string `json:"zh_cn,omitempty"`
}

可用区中英文名称。

func (LocalName) String

func (o LocalName) String() string

type MemberBase

type MemberBase struct {
	Host *string `json:"host,omitempty"`

	Weight *int32 `json:"weight,omitempty"`

	IsBackup *bool `json:"is_backup,omitempty"`

	MemberGroupName *string `json:"member_group_name,omitempty"`

	Status *MemberBaseStatus `json:"status,omitempty"`

	Port *int32 `json:"port,omitempty"`
}

func (MemberBase) String

func (o MemberBase) String() string

type MemberBaseStatus

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

func (MemberBaseStatus) MarshalJSON

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

func (*MemberBaseStatus) UnmarshalJSON

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

type MemberBaseStatusEnum

type MemberBaseStatusEnum struct {
	E_1 MemberBaseStatus
	E_2 MemberBaseStatus
}

func GetMemberBaseStatusEnum

func GetMemberBaseStatusEnum() MemberBaseStatusEnum

type MemberGroupCreate

type MemberGroupCreate struct {
	MemberGroupName string `json:"member_group_name"`

	MemberGroupRemark *string `json:"member_group_remark,omitempty"`

	MemberGroupWeight *int32 `json:"member_group_weight,omitempty"`

	DictCode *string `json:"dict_code,omitempty"`
}

func (MemberGroupCreate) String

func (o MemberGroupCreate) String() string

type MemberGroupInfo

type MemberGroupInfo struct {
	MemberGroupName string `json:"member_group_name"`

	MemberGroupRemark *string `json:"member_group_remark,omitempty"`

	MemberGroupWeight *int32 `json:"member_group_weight,omitempty"`

	DictCode *string `json:"dict_code,omitempty"`

	MemberGroupId *string `json:"member_group_id,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`
}

func (MemberGroupInfo) String

func (o MemberGroupInfo) String() string

type MemberInfo

type MemberInfo struct {
	Host *string `json:"host,omitempty"`

	Weight *int32 `json:"weight,omitempty"`

	IsBackup *bool `json:"is_backup,omitempty"`

	MemberGroupName *string `json:"member_group_name,omitempty"`

	Status *MemberInfoStatus `json:"status,omitempty"`

	Port *int32 `json:"port,omitempty"`

	EcsId *string `json:"ecs_id,omitempty"`

	EcsName *string `json:"ecs_name,omitempty"`
}

func (MemberInfo) String

func (o MemberInfo) String() string

type MemberInfoStatus

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

func (MemberInfoStatus) MarshalJSON

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

func (*MemberInfoStatus) UnmarshalJSON

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

type MemberInfoStatusEnum

type MemberInfoStatusEnum struct {
	E_1 MemberInfoStatus
	E_2 MemberInfoStatus
}

func GetMemberInfoStatusEnum

func GetMemberInfoStatusEnum() MemberInfoStatusEnum

type NetworkTrafficStats

type NetworkTrafficStats struct {
	OutputThroughput *int64 `json:"output_throughput,omitempty"`

	InputThroughput *int64 `json:"input_throughput,omitempty"`
}

func (NetworkTrafficStats) String

func (o NetworkTrafficStats) String() string

type OpenEngressEipReq

type OpenEngressEipReq struct {
	BandwidthSize *string `json:"bandwidth_size,omitempty"`
}

func (OpenEngressEipReq) String

func (o OpenEngressEipReq) String() string

type PublishResp

type PublishResp struct {
	PublishId *string `json:"publish_id,omitempty"`

	ApiId *string `json:"api_id,omitempty"`

	ApiName *string `json:"api_name,omitempty"`

	EnvId *string `json:"env_id,omitempty"`

	Remark *string `json:"remark,omitempty"`

	PublishTime *sdktime.SdkTime `json:"publish_time,omitempty"`

	VersionId *string `json:"version_id,omitempty"`
}

func (PublishResp) String

func (o PublishResp) String() string

type RemoveEipV2Request

type RemoveEipV2Request struct {
	InstanceId string `json:"instance_id"`
}

Request Object

func (RemoveEipV2Request) String

func (o RemoveEipV2Request) String() string

type RemoveEipV2Response

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

Response Object

func (RemoveEipV2Response) String

func (o RemoveEipV2Response) String() string

type RemoveEngressEipV2Request

type RemoveEngressEipV2Request struct {
	InstanceId string `json:"instance_id"`
}

Request Object

func (RemoveEngressEipV2Request) String

func (o RemoveEngressEipV2Request) String() string

type RemoveEngressEipV2Response

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

Response Object

func (RemoveEngressEipV2Response) String

type ReqParam

type ReqParam struct {
	Name string `json:"name"`

	Type ReqParamType `json:"type"`

	Location ReqParamLocation `json:"location"`

	DefaultValue *string `json:"default_value,omitempty"`

	SampleValue *string `json:"sample_value,omitempty"`

	Required *ReqParamRequired `json:"required,omitempty"`

	ValidEnable *ReqParamValidEnable `json:"valid_enable,omitempty"`

	Remark *string `json:"remark,omitempty"`

	Enumerations *string `json:"enumerations,omitempty"`

	MinNum *int32 `json:"min_num,omitempty"`

	MaxNum *int32 `json:"max_num,omitempty"`

	MinSize *int32 `json:"min_size,omitempty"`

	MaxSize *int32 `json:"max_size,omitempty"`

	Regular *string `json:"regular,omitempty"`

	JsonSchema *string `json:"json_schema,omitempty"`

	PassThrough *ReqParamPassThrough `json:"pass_through,omitempty"`

	Id *string `json:"id,omitempty"`
}

func (ReqParam) String

func (o ReqParam) String() string

type ReqParamBase

type ReqParamBase struct {
	Name string `json:"name"`

	Type ReqParamBaseType `json:"type"`

	Location ReqParamBaseLocation `json:"location"`

	DefaultValue *string `json:"default_value,omitempty"`

	SampleValue *string `json:"sample_value,omitempty"`

	Required *ReqParamBaseRequired `json:"required,omitempty"`

	ValidEnable *ReqParamBaseValidEnable `json:"valid_enable,omitempty"`

	Remark *string `json:"remark,omitempty"`

	Enumerations *string `json:"enumerations,omitempty"`

	MinNum *int32 `json:"min_num,omitempty"`

	MaxNum *int32 `json:"max_num,omitempty"`

	MinSize *int32 `json:"min_size,omitempty"`

	MaxSize *int32 `json:"max_size,omitempty"`

	Regular *string `json:"regular,omitempty"`

	JsonSchema *string `json:"json_schema,omitempty"`

	PassThrough *ReqParamBasePassThrough `json:"pass_through,omitempty"`
}

func (ReqParamBase) String

func (o ReqParamBase) String() string

type ReqParamBaseLocation

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

func (ReqParamBaseLocation) MarshalJSON

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

func (*ReqParamBaseLocation) UnmarshalJSON

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

type ReqParamBaseLocationEnum

type ReqParamBaseLocationEnum struct {
	PATH   ReqParamBaseLocation
	QUERY  ReqParamBaseLocation
	HEADER ReqParamBaseLocation
}

func GetReqParamBaseLocationEnum

func GetReqParamBaseLocationEnum() ReqParamBaseLocationEnum

type ReqParamBasePassThrough

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

func (ReqParamBasePassThrough) MarshalJSON

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

func (*ReqParamBasePassThrough) UnmarshalJSON

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

type ReqParamBasePassThroughEnum

type ReqParamBasePassThroughEnum struct {
	E_1 ReqParamBasePassThrough
	E_2 ReqParamBasePassThrough
}

func GetReqParamBasePassThroughEnum

func GetReqParamBasePassThroughEnum() ReqParamBasePassThroughEnum

type ReqParamBaseRequired

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

func (ReqParamBaseRequired) MarshalJSON

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

func (*ReqParamBaseRequired) UnmarshalJSON

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

type ReqParamBaseRequiredEnum

type ReqParamBaseRequiredEnum struct {
	E_1 ReqParamBaseRequired
	E_2 ReqParamBaseRequired
}

func GetReqParamBaseRequiredEnum

func GetReqParamBaseRequiredEnum() ReqParamBaseRequiredEnum

type ReqParamBaseType

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

func (ReqParamBaseType) MarshalJSON

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

func (*ReqParamBaseType) UnmarshalJSON

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

type ReqParamBaseTypeEnum

type ReqParamBaseTypeEnum struct {
	STRING ReqParamBaseType
	NUMBER ReqParamBaseType
}

func GetReqParamBaseTypeEnum

func GetReqParamBaseTypeEnum() ReqParamBaseTypeEnum

type ReqParamBaseValidEnable

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

func (ReqParamBaseValidEnable) MarshalJSON

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

func (*ReqParamBaseValidEnable) UnmarshalJSON

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

type ReqParamBaseValidEnableEnum

type ReqParamBaseValidEnableEnum struct {
	E_1 ReqParamBaseValidEnable
	E_2 ReqParamBaseValidEnable
}

func GetReqParamBaseValidEnableEnum

func GetReqParamBaseValidEnableEnum() ReqParamBaseValidEnableEnum

type ReqParamLocation

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

func (ReqParamLocation) MarshalJSON

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

func (*ReqParamLocation) UnmarshalJSON

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

type ReqParamLocationEnum

type ReqParamLocationEnum struct {
	PATH   ReqParamLocation
	QUERY  ReqParamLocation
	HEADER ReqParamLocation
}

func GetReqParamLocationEnum

func GetReqParamLocationEnum() ReqParamLocationEnum

type ReqParamPassThrough

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

func (ReqParamPassThrough) MarshalJSON

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

func (*ReqParamPassThrough) UnmarshalJSON

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

type ReqParamPassThroughEnum

type ReqParamPassThroughEnum struct {
	E_1 ReqParamPassThrough
	E_2 ReqParamPassThrough
}

func GetReqParamPassThroughEnum

func GetReqParamPassThroughEnum() ReqParamPassThroughEnum

type ReqParamRequired

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

func (ReqParamRequired) MarshalJSON

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

func (*ReqParamRequired) UnmarshalJSON

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

type ReqParamRequiredEnum

type ReqParamRequiredEnum struct {
	E_1 ReqParamRequired
	E_2 ReqParamRequired
}

func GetReqParamRequiredEnum

func GetReqParamRequiredEnum() ReqParamRequiredEnum

type ReqParamType

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

func (ReqParamType) MarshalJSON

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

func (*ReqParamType) UnmarshalJSON

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

type ReqParamTypeEnum

type ReqParamTypeEnum struct {
	STRING ReqParamType
	NUMBER ReqParamType
}

func GetReqParamTypeEnum

func GetReqParamTypeEnum() ReqParamTypeEnum

type ReqParamValidEnable

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

func (ReqParamValidEnable) MarshalJSON

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

func (*ReqParamValidEnable) UnmarshalJSON

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

type ReqParamValidEnableEnum

type ReqParamValidEnableEnum struct {
	E_1 ReqParamValidEnable
	E_2 ReqParamValidEnable
}

func GetReqParamValidEnableEnum

func GetReqParamValidEnableEnum() ReqParamValidEnableEnum

type RequestCountStats

type RequestCountStats struct {
	ReqCount *int32 `json:"req_count,omitempty"`

	ReqCount2xx *int32 `json:"req_count2xx,omitempty"`

	ReqCount4xx *int32 `json:"req_count4xx,omitempty"`

	ReqCount5xx *int32 `json:"req_count5xx,omitempty"`

	ReqCountError *int32 `json:"req_count_error,omitempty"`
}

func (RequestCountStats) String

func (o RequestCountStats) String() string

type ResettingAppSecretV2Request

type ResettingAppSecretV2Request struct {
	InstanceId string `json:"instance_id"`

	AppId string `json:"app_id"`

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

Request Object

func (ResettingAppSecretV2Request) String

type ResettingAppSecretV2Response

type ResettingAppSecretV2Response struct {
	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	Remark *string `json:"remark,omitempty"`

	Creator *ResettingAppSecretV2ResponseCreator `json:"creator,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`

	AppKey *string `json:"app_key,omitempty"`

	AppSecret *string `json:"app_secret,omitempty"`

	RegisterTime *sdktime.SdkTime `json:"register_time,omitempty"`

	Status *ResettingAppSecretV2ResponseStatus `json:"status,omitempty"`

	AppType *ResettingAppSecretV2ResponseAppType `json:"app_type,omitempty"`

	RomaAppType    *string `json:"roma_app_type,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ResettingAppSecretV2Response) String

type ResettingAppSecretV2ResponseAppType

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

func (ResettingAppSecretV2ResponseAppType) MarshalJSON

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

func (*ResettingAppSecretV2ResponseAppType) UnmarshalJSON

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

type ResettingAppSecretV2ResponseAppTypeEnum

type ResettingAppSecretV2ResponseAppTypeEnum struct {
	APIG ResettingAppSecretV2ResponseAppType
	ROMA ResettingAppSecretV2ResponseAppType
}

func GetResettingAppSecretV2ResponseAppTypeEnum

func GetResettingAppSecretV2ResponseAppTypeEnum() ResettingAppSecretV2ResponseAppTypeEnum

type ResettingAppSecretV2ResponseCreator

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

func (ResettingAppSecretV2ResponseCreator) MarshalJSON

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

func (*ResettingAppSecretV2ResponseCreator) UnmarshalJSON

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

type ResettingAppSecretV2ResponseCreatorEnum

type ResettingAppSecretV2ResponseCreatorEnum struct {
	USER   ResettingAppSecretV2ResponseCreator
	MARKET ResettingAppSecretV2ResponseCreator
}

func GetResettingAppSecretV2ResponseCreatorEnum

func GetResettingAppSecretV2ResponseCreatorEnum() ResettingAppSecretV2ResponseCreatorEnum

type ResettingAppSecretV2ResponseStatus

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

func (ResettingAppSecretV2ResponseStatus) MarshalJSON

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

func (*ResettingAppSecretV2ResponseStatus) UnmarshalJSON

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

type ResettingAppSecretV2ResponseStatusEnum

type ResettingAppSecretV2ResponseStatusEnum struct {
	E_1 ResettingAppSecretV2ResponseStatus
}

func GetResettingAppSecretV2ResponseStatusEnum

func GetResettingAppSecretV2ResponseStatusEnum() ResettingAppSecretV2ResponseStatusEnum

type RespInstanceBase

type RespInstanceBase struct {
	Id *string `json:"id,omitempty"`

	ProjectId *string `json:"project_id,omitempty"`

	InstanceName *string `json:"instance_name,omitempty"`

	Status *RespInstanceBaseStatus `json:"status,omitempty"`

	InstanceStatus *RespInstanceBaseInstanceStatus `json:"instance_status,omitempty"`

	Type *string `json:"type,omitempty"`

	Spec *RespInstanceBaseSpec `json:"spec,omitempty"`

	CreateTime *int64 `json:"create_time,omitempty"`

	EnterpriseProjectId *string `json:"enterprise_project_id,omitempty"`

	EipAddress *string `json:"eip_address,omitempty"`

	ChargingMode *RespInstanceBaseChargingMode `json:"charging_mode,omitempty"`

	CbcMetadata *string `json:"cbc_metadata,omitempty"`
}

func (RespInstanceBase) String

func (o RespInstanceBase) String() string

type RespInstanceBaseChargingMode

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

func (RespInstanceBaseChargingMode) MarshalJSON

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

func (*RespInstanceBaseChargingMode) UnmarshalJSON

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

type RespInstanceBaseChargingModeEnum

type RespInstanceBaseChargingModeEnum struct {
	E_0 RespInstanceBaseChargingMode
	E_1 RespInstanceBaseChargingMode
}

func GetRespInstanceBaseChargingModeEnum

func GetRespInstanceBaseChargingModeEnum() RespInstanceBaseChargingModeEnum

type RespInstanceBaseInstanceStatus

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

func (RespInstanceBaseInstanceStatus) MarshalJSON

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

func (*RespInstanceBaseInstanceStatus) UnmarshalJSON

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

type RespInstanceBaseSpec

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

func (RespInstanceBaseSpec) MarshalJSON

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

func (*RespInstanceBaseSpec) UnmarshalJSON

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

type RespInstanceBaseSpecEnum

type RespInstanceBaseSpecEnum struct {
	BASIC             RespInstanceBaseSpec
	PROFESSIONAL      RespInstanceBaseSpec
	ENTERPRISE        RespInstanceBaseSpec
	PLATINUM          RespInstanceBaseSpec
	BASIC_IPV6        RespInstanceBaseSpec
	PROFESSIONAL_IPV6 RespInstanceBaseSpec
	ENTERPRISE_IPV6   RespInstanceBaseSpec
	PLATINUM_IPV6     RespInstanceBaseSpec
}

func GetRespInstanceBaseSpecEnum

func GetRespInstanceBaseSpecEnum() RespInstanceBaseSpecEnum

type RespInstanceBaseStatus

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

func (RespInstanceBaseStatus) MarshalJSON

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

func (*RespInstanceBaseStatus) UnmarshalJSON

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

type RespInstanceBaseStatusEnum

type RespInstanceBaseStatusEnum struct {
	CREATING           RespInstanceBaseStatus
	CREATE_SUCCESS     RespInstanceBaseStatus
	CREATE_FAIL        RespInstanceBaseStatus
	INITING            RespInstanceBaseStatus
	REGISTERING        RespInstanceBaseStatus
	RUNNING            RespInstanceBaseStatus
	INITING_FAILED     RespInstanceBaseStatus
	REGISTER_FAILED    RespInstanceBaseStatus
	INSTALLING         RespInstanceBaseStatus
	INSTALL_FAILED     RespInstanceBaseStatus
	UPDATING           RespInstanceBaseStatus
	UPDATE_FAILED      RespInstanceBaseStatus
	ROLLBACKING        RespInstanceBaseStatus
	ROLLBACK_SUCCESS   RespInstanceBaseStatus
	ROLLBACK_FAILED    RespInstanceBaseStatus
	DELETING           RespInstanceBaseStatus
	DELETE_FAILED      RespInstanceBaseStatus
	UNREGISTERING      RespInstanceBaseStatus
	UN_REGISTER_FAILED RespInstanceBaseStatus
	CREATE_TIMEOUT     RespInstanceBaseStatus
	INIT_TIMEOUT       RespInstanceBaseStatus
	REGISTER_TIMEOUT   RespInstanceBaseStatus
	INSTALL_TIMEOUT    RespInstanceBaseStatus
	UPDATE_TIMEOUT     RespInstanceBaseStatus
	ROLLBACK_TIMEOUT   RespInstanceBaseStatus
	DELETE_TIMEOUT     RespInstanceBaseStatus
	UNREGISTER_TIMEOUT RespInstanceBaseStatus
	STARTING           RespInstanceBaseStatus
	FREEZING           RespInstanceBaseStatus
	FROZEN             RespInstanceBaseStatus
	RESTARTING         RespInstanceBaseStatus
	RESTART_FAIL       RespInstanceBaseStatus
	UNHEALTHY          RespInstanceBaseStatus
	RESTART_TIMEOUT    RespInstanceBaseStatus
}

func GetRespInstanceBaseStatusEnum

func GetRespInstanceBaseStatusEnum() RespInstanceBaseStatusEnum

type ResponseInfo

type ResponseInfo struct {
	Status *int32 `json:"status,omitempty"`

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

func (ResponseInfo) String

func (o ResponseInfo) String() string

type ResponseInfoResp

type ResponseInfoResp struct {
	Status *int32 `json:"status,omitempty"`

	Body *string `json:"body,omitempty"`

	Default *bool `json:"default,omitempty"`
}

func (ResponseInfoResp) String

func (o ResponseInfoResp) String() string

type ResponsesCreate

type ResponsesCreate struct {
	Name *string `json:"name,omitempty"`

	Responses map[string]ResponseInfo `json:"responses,omitempty"`
}

func (ResponsesCreate) String

func (o ResponsesCreate) String() string

type ShowDetailsOfAclPolicyV2Request

type ShowDetailsOfAclPolicyV2Request struct {
	InstanceId string `json:"instance_id"`

	AclId string `json:"acl_id"`
}

Request Object

func (ShowDetailsOfAclPolicyV2Request) String

type ShowDetailsOfAclPolicyV2Response

type ShowDetailsOfAclPolicyV2Response struct {
	AclName *string `json:"acl_name,omitempty"`

	AclType *string `json:"acl_type,omitempty"`

	AclValue *string `json:"acl_value,omitempty"`

	EntityType *string `json:"entity_type,omitempty"`

	Id *string `json:"id,omitempty"`

	UpdateTime     *sdktime.SdkTime `json:"update_time,omitempty"`
	HttpStatusCode int              `json:"-"`
}

Response Object

func (ShowDetailsOfAclPolicyV2Response) String

type ShowDetailsOfApiGroupV2Request

type ShowDetailsOfApiGroupV2Request struct {
	InstanceId string `json:"instance_id"`

	GroupId string `json:"group_id"`
}

Request Object

func (ShowDetailsOfApiGroupV2Request) String

type ShowDetailsOfApiGroupV2Response

type ShowDetailsOfApiGroupV2Response struct {
	Id string `json:"id"`

	Name string `json:"name"`

	Status ShowDetailsOfApiGroupV2ResponseStatus `json:"status"`

	SlDomain string `json:"sl_domain"`

	RegisterTime *sdktime.SdkTime `json:"register_time"`

	UpdateTime *sdktime.SdkTime `json:"update_time"`

	OnSellStatus int32 `json:"on_sell_status"`

	UrlDomains *[]UrlDomain `json:"url_domains,omitempty"`

	SlDomains *[]string `json:"sl_domains,omitempty"`

	Remark *string `json:"remark,omitempty"`

	CallLimits *int32 `json:"call_limits,omitempty"`

	TimeInterval *int32 `json:"time_interval,omitempty"`

	TimeUnit *string `json:"time_unit,omitempty"`

	IsDefault *int32 `json:"is_default,omitempty"`

	Version *string `json:"version,omitempty"`

	RomaAppId *string `json:"roma_app_id,omitempty"`

	RomaAppName    *string `json:"roma_app_name,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ShowDetailsOfApiGroupV2Response) String

type ShowDetailsOfApiGroupV2ResponseStatus

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

func (ShowDetailsOfApiGroupV2ResponseStatus) MarshalJSON

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

func (*ShowDetailsOfApiGroupV2ResponseStatus) UnmarshalJSON

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

type ShowDetailsOfApiGroupV2ResponseStatusEnum

type ShowDetailsOfApiGroupV2ResponseStatusEnum struct {
	E_1 ShowDetailsOfApiGroupV2ResponseStatus
}

func GetShowDetailsOfApiGroupV2ResponseStatusEnum

func GetShowDetailsOfApiGroupV2ResponseStatusEnum() ShowDetailsOfApiGroupV2ResponseStatusEnum

type ShowDetailsOfApiV2Request

type ShowDetailsOfApiV2Request struct {
	InstanceId string `json:"instance_id"`

	ApiId string `json:"api_id"`
}

Request Object

func (ShowDetailsOfApiV2Request) String

func (o ShowDetailsOfApiV2Request) String() string

type ShowDetailsOfApiV2Response

type ShowDetailsOfApiV2Response struct {
	Name string `json:"name"`

	Type ShowDetailsOfApiV2ResponseType `json:"type"`

	Version *string `json:"version,omitempty"`

	ReqProtocol ShowDetailsOfApiV2ResponseReqProtocol `json:"req_protocol"`

	ReqMethod ShowDetailsOfApiV2ResponseReqMethod `json:"req_method"`

	ReqUri string `json:"req_uri"`

	AuthType ShowDetailsOfApiV2ResponseAuthType `json:"auth_type"`

	AuthOpt *AuthOpt `json:"auth_opt,omitempty"`

	Cors *bool `json:"cors,omitempty"`

	MatchMode *ShowDetailsOfApiV2ResponseMatchMode `json:"match_mode,omitempty"`

	BackendType ShowDetailsOfApiV2ResponseBackendType `json:"backend_type"`

	Remark *string `json:"remark,omitempty"`

	GroupId string `json:"group_id"`

	BodyRemark *string `json:"body_remark,omitempty"`

	ResultNormalSample *string `json:"result_normal_sample,omitempty"`

	ResultFailureSample *string `json:"result_failure_sample,omitempty"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`

	Tags *[]string `json:"tags,omitempty"`

	ResponseId *string `json:"response_id,omitempty"`

	RomaAppId *string `json:"roma_app_id,omitempty"`

	DomainName *string `json:"domain_name,omitempty"`

	Tag *string `json:"tag,omitempty"`

	Id *string `json:"id,omitempty"`

	Status *int32 `json:"status,omitempty"`

	ArrangeNecessary *int32 `json:"arrange_necessary,omitempty"`

	RegisterTime *sdktime.SdkTime `json:"register_time,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`

	GroupName *string `json:"group_name,omitempty"`

	GroupVersion *string `json:"group_version,omitempty"`

	RunEnvId *string `json:"run_env_id,omitempty"`

	RunEnvName *string `json:"run_env_name,omitempty"`

	PublishId *string `json:"publish_id,omitempty"`

	FuncInfo *ApiFunc `json:"func_info,omitempty"`

	MockInfo *ApiMock `json:"mock_info,omitempty"`

	ReqParams *[]ReqParam `json:"req_params,omitempty"`

	BackendParams *[]BackendParam `json:"backend_params,omitempty"`

	PolicyFunctions *[]ApiPolicyFunctionResp `json:"policy_functions,omitempty"`

	PolicyMocks *[]ApiPolicyMockResp `json:"policy_mocks,omitempty"`

	BackendApi *BackendApi `json:"backend_api,omitempty"`

	PolicyHttps    *[]ApiPolicyHttpResp `json:"policy_https,omitempty"`
	HttpStatusCode int                  `json:"-"`
}

Response Object

func (ShowDetailsOfApiV2Response) String

type ShowDetailsOfApiV2ResponseAuthType

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

func (ShowDetailsOfApiV2ResponseAuthType) MarshalJSON

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

func (*ShowDetailsOfApiV2ResponseAuthType) UnmarshalJSON

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

type ShowDetailsOfApiV2ResponseBackendType

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

func (ShowDetailsOfApiV2ResponseBackendType) MarshalJSON

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

func (*ShowDetailsOfApiV2ResponseBackendType) UnmarshalJSON

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

type ShowDetailsOfApiV2ResponseMatchMode

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

func (ShowDetailsOfApiV2ResponseMatchMode) MarshalJSON

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

func (*ShowDetailsOfApiV2ResponseMatchMode) UnmarshalJSON

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

type ShowDetailsOfApiV2ResponseMatchModeEnum

type ShowDetailsOfApiV2ResponseMatchModeEnum struct {
	SWA    ShowDetailsOfApiV2ResponseMatchMode
	NORMAL ShowDetailsOfApiV2ResponseMatchMode
}

func GetShowDetailsOfApiV2ResponseMatchModeEnum

func GetShowDetailsOfApiV2ResponseMatchModeEnum() ShowDetailsOfApiV2ResponseMatchModeEnum

type ShowDetailsOfApiV2ResponseReqMethod

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

func (ShowDetailsOfApiV2ResponseReqMethod) MarshalJSON

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

func (*ShowDetailsOfApiV2ResponseReqMethod) UnmarshalJSON

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

type ShowDetailsOfApiV2ResponseReqProtocol

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

func (ShowDetailsOfApiV2ResponseReqProtocol) MarshalJSON

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

func (*ShowDetailsOfApiV2ResponseReqProtocol) UnmarshalJSON

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

type ShowDetailsOfApiV2ResponseType

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

func (ShowDetailsOfApiV2ResponseType) MarshalJSON

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

func (*ShowDetailsOfApiV2ResponseType) UnmarshalJSON

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

type ShowDetailsOfApiV2ResponseTypeEnum

type ShowDetailsOfApiV2ResponseTypeEnum struct {
	E_1 ShowDetailsOfApiV2ResponseType
	E_2 ShowDetailsOfApiV2ResponseType
}

func GetShowDetailsOfApiV2ResponseTypeEnum

func GetShowDetailsOfApiV2ResponseTypeEnum() ShowDetailsOfApiV2ResponseTypeEnum

type ShowDetailsOfAppCodeV2Request

type ShowDetailsOfAppCodeV2Request struct {
	InstanceId string `json:"instance_id"`

	AppId string `json:"app_id"`

	AppCodeId string `json:"app_code_id"`
}

Request Object

func (ShowDetailsOfAppCodeV2Request) String

type ShowDetailsOfAppCodeV2Response

type ShowDetailsOfAppCodeV2Response struct {
	AppCode string `json:"app_code"`

	Id *string `json:"id,omitempty"`

	AppId *string `json:"app_id,omitempty"`

	CreateTime     *string `json:"create_time,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ShowDetailsOfAppCodeV2Response) String

type ShowDetailsOfAppV2Request

type ShowDetailsOfAppV2Request struct {
	InstanceId string `json:"instance_id"`

	AppId string `json:"app_id"`
}

Request Object

func (ShowDetailsOfAppV2Request) String

func (o ShowDetailsOfAppV2Request) String() string

type ShowDetailsOfAppV2Response

type ShowDetailsOfAppV2Response struct {
	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	Remark *string `json:"remark,omitempty"`

	Creator *ShowDetailsOfAppV2ResponseCreator `json:"creator,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`

	AppKey *string `json:"app_key,omitempty"`

	AppSecret *string `json:"app_secret,omitempty"`

	RegisterTime *sdktime.SdkTime `json:"register_time,omitempty"`

	Status *ShowDetailsOfAppV2ResponseStatus `json:"status,omitempty"`

	AppType *ShowDetailsOfAppV2ResponseAppType `json:"app_type,omitempty"`

	RomaAppType    *string `json:"roma_app_type,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ShowDetailsOfAppV2Response) String

type ShowDetailsOfAppV2ResponseAppType

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

func (ShowDetailsOfAppV2ResponseAppType) MarshalJSON

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

func (*ShowDetailsOfAppV2ResponseAppType) UnmarshalJSON

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

type ShowDetailsOfAppV2ResponseAppTypeEnum

type ShowDetailsOfAppV2ResponseAppTypeEnum struct {
	APIG ShowDetailsOfAppV2ResponseAppType
	ROMA ShowDetailsOfAppV2ResponseAppType
}

func GetShowDetailsOfAppV2ResponseAppTypeEnum

func GetShowDetailsOfAppV2ResponseAppTypeEnum() ShowDetailsOfAppV2ResponseAppTypeEnum

type ShowDetailsOfAppV2ResponseCreator

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

func (ShowDetailsOfAppV2ResponseCreator) MarshalJSON

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

func (*ShowDetailsOfAppV2ResponseCreator) UnmarshalJSON

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

type ShowDetailsOfAppV2ResponseCreatorEnum

type ShowDetailsOfAppV2ResponseCreatorEnum struct {
	USER   ShowDetailsOfAppV2ResponseCreator
	MARKET ShowDetailsOfAppV2ResponseCreator
}

func GetShowDetailsOfAppV2ResponseCreatorEnum

func GetShowDetailsOfAppV2ResponseCreatorEnum() ShowDetailsOfAppV2ResponseCreatorEnum

type ShowDetailsOfAppV2ResponseStatus

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

func (ShowDetailsOfAppV2ResponseStatus) MarshalJSON

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

func (*ShowDetailsOfAppV2ResponseStatus) UnmarshalJSON

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

type ShowDetailsOfAppV2ResponseStatusEnum

type ShowDetailsOfAppV2ResponseStatusEnum struct {
	E_1 ShowDetailsOfAppV2ResponseStatus
}

func GetShowDetailsOfAppV2ResponseStatusEnum

func GetShowDetailsOfAppV2ResponseStatusEnum() ShowDetailsOfAppV2ResponseStatusEnum

type ShowDetailsOfCustomAuthorizersV2Request

type ShowDetailsOfCustomAuthorizersV2Request struct {
	InstanceId string `json:"instance_id"`

	AuthorizerId string `json:"authorizer_id"`
}

Request Object

func (ShowDetailsOfCustomAuthorizersV2Request) String

type ShowDetailsOfCustomAuthorizersV2Response

type ShowDetailsOfCustomAuthorizersV2Response struct {
	Name string `json:"name"`

	Type ShowDetailsOfCustomAuthorizersV2ResponseType `json:"type"`

	AuthorizerType ShowDetailsOfCustomAuthorizersV2ResponseAuthorizerType `json:"authorizer_type"`

	AuthorizerUri string `json:"authorizer_uri"`

	Identities *[]Identity `json:"identities,omitempty"`

	Ttl *int32 `json:"ttl,omitempty"`

	UserData *string `json:"user_data,omitempty"`

	LdApiId *string `json:"ld_api_id,omitempty"`

	NeedBody *bool `json:"need_body,omitempty"`

	Id *string `json:"id,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	RomaAppId *string `json:"roma_app_id,omitempty"`

	RomaAppName    *string `json:"roma_app_name,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ShowDetailsOfCustomAuthorizersV2Response) String

type ShowDetailsOfCustomAuthorizersV2ResponseAuthorizerType

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

func (ShowDetailsOfCustomAuthorizersV2ResponseAuthorizerType) MarshalJSON

func (*ShowDetailsOfCustomAuthorizersV2ResponseAuthorizerType) UnmarshalJSON

type ShowDetailsOfCustomAuthorizersV2ResponseAuthorizerTypeEnum

type ShowDetailsOfCustomAuthorizersV2ResponseAuthorizerTypeEnum struct {
	FUNC ShowDetailsOfCustomAuthorizersV2ResponseAuthorizerType
}

type ShowDetailsOfCustomAuthorizersV2ResponseType

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

func (ShowDetailsOfCustomAuthorizersV2ResponseType) MarshalJSON

func (*ShowDetailsOfCustomAuthorizersV2ResponseType) UnmarshalJSON

type ShowDetailsOfDomainNameCertificateV2Request

type ShowDetailsOfDomainNameCertificateV2Request struct {
	InstanceId string `json:"instance_id"`

	GroupId string `json:"group_id"`

	DomainId string `json:"domain_id"`

	CertificateId string `json:"certificate_id"`
}

Request Object

func (ShowDetailsOfDomainNameCertificateV2Request) String

type ShowDetailsOfDomainNameCertificateV2Response

type ShowDetailsOfDomainNameCertificateV2Response struct {
	CommonName *string `json:"common_name,omitempty"`

	San *[]string `json:"san,omitempty"`

	Version *int32 `json:"version,omitempty"`

	Organization *[]string `json:"organization,omitempty"`

	OrganizationalUnit *[]string `json:"organizational_unit,omitempty"`

	Locality *[]string `json:"locality,omitempty"`

	State *[]string `json:"state,omitempty"`

	Country *[]string `json:"country,omitempty"`

	NotBefore *string `json:"not_before,omitempty"`

	NotAfter *string `json:"not_after,omitempty"`

	SerialNumber *string `json:"serial_number,omitempty"`

	Issuer *[]string `json:"issuer,omitempty"`

	SignatureAlgorithm *string `json:"signature_algorithm,omitempty"`
	HttpStatusCode     int     `json:"-"`
}

Response Object

func (ShowDetailsOfDomainNameCertificateV2Response) String

type ShowDetailsOfEnvironmentVariableV2Request

type ShowDetailsOfEnvironmentVariableV2Request struct {
	InstanceId string `json:"instance_id"`

	EnvVariableId string `json:"env_variable_id"`
}

Request Object

func (ShowDetailsOfEnvironmentVariableV2Request) String

type ShowDetailsOfEnvironmentVariableV2Response

type ShowDetailsOfEnvironmentVariableV2Response struct {
	VariableValue string `json:"variable_value"`

	EnvId *string `json:"env_id,omitempty"`

	GroupId *string `json:"group_id,omitempty"`

	VariableName *string `json:"variable_name,omitempty"`

	Id             *string `json:"id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ShowDetailsOfEnvironmentVariableV2Response) String

type ShowDetailsOfGatewayResponseTypeV2Request

type ShowDetailsOfGatewayResponseTypeV2Request struct {
	InstanceId string `json:"instance_id"`

	GroupId string `json:"group_id"`

	ResponseId string `json:"response_id"`

	ResponseType ShowDetailsOfGatewayResponseTypeV2RequestResponseType `json:"response_type"`
}

Request Object

func (ShowDetailsOfGatewayResponseTypeV2Request) String

type ShowDetailsOfGatewayResponseTypeV2RequestResponseType

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

func (ShowDetailsOfGatewayResponseTypeV2RequestResponseType) MarshalJSON

func (*ShowDetailsOfGatewayResponseTypeV2RequestResponseType) UnmarshalJSON

type ShowDetailsOfGatewayResponseTypeV2Response

type ShowDetailsOfGatewayResponseTypeV2Response struct {
	Body           map[string]ResponseInfoResp `json:"body,omitempty"`
	HttpStatusCode int                         `json:"-"`
}

Response Object

func (ShowDetailsOfGatewayResponseTypeV2Response) String

type ShowDetailsOfGatewayResponseV2Request

type ShowDetailsOfGatewayResponseV2Request struct {
	InstanceId string `json:"instance_id"`

	GroupId string `json:"group_id"`

	ResponseId string `json:"response_id"`
}

Request Object

func (ShowDetailsOfGatewayResponseV2Request) String

type ShowDetailsOfGatewayResponseV2Response

type ShowDetailsOfGatewayResponseV2Response struct {
	Name *string `json:"name,omitempty"`

	Responses map[string]ResponseInfoResp `json:"responses,omitempty"`

	Id *string `json:"id,omitempty"`

	Default *bool `json:"default,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	UpdateTime     *sdktime.SdkTime `json:"update_time,omitempty"`
	HttpStatusCode int              `json:"-"`
}

Response Object

func (ShowDetailsOfGatewayResponseV2Response) String

type ShowDetailsOfInstanceProgressV2Request

type ShowDetailsOfInstanceProgressV2Request struct {
	InstanceId string `json:"instance_id"`
}

Request Object

func (ShowDetailsOfInstanceProgressV2Request) String

type ShowDetailsOfInstanceProgressV2Response

type ShowDetailsOfInstanceProgressV2Response struct {
	Progress *ShowDetailsOfInstanceProgressV2ResponseProgress `json:"progress,omitempty"`

	Status *ShowDetailsOfInstanceProgressV2ResponseStatus `json:"status,omitempty"`

	ErrorCode *string `json:"error_code,omitempty"`

	ErrorMsg *string `json:"error_msg,omitempty"`

	StartTime *int64 `json:"start_time,omitempty"`

	EndTime        *int64 `json:"end_time,omitempty"`
	HttpStatusCode int    `json:"-"`
}

Response Object

func (ShowDetailsOfInstanceProgressV2Response) String

type ShowDetailsOfInstanceProgressV2ResponseProgress

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

func (ShowDetailsOfInstanceProgressV2ResponseProgress) MarshalJSON

func (*ShowDetailsOfInstanceProgressV2ResponseProgress) UnmarshalJSON

type ShowDetailsOfInstanceProgressV2ResponseStatus

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

func (ShowDetailsOfInstanceProgressV2ResponseStatus) MarshalJSON

func (*ShowDetailsOfInstanceProgressV2ResponseStatus) UnmarshalJSON

type ShowDetailsOfInstanceV2Request

type ShowDetailsOfInstanceV2Request struct {
	InstanceId string `json:"instance_id"`
}

Request Object

func (ShowDetailsOfInstanceV2Request) String

type ShowDetailsOfInstanceV2Response

type ShowDetailsOfInstanceV2Response struct {
	Id *string `json:"id,omitempty"`

	ProjectId *string `json:"project_id,omitempty"`

	InstanceName *string `json:"instance_name,omitempty"`

	Status *ShowDetailsOfInstanceV2ResponseStatus `json:"status,omitempty"`

	InstanceStatus *ShowDetailsOfInstanceV2ResponseInstanceStatus `json:"instance_status,omitempty"`

	Type *string `json:"type,omitempty"`

	Spec *ShowDetailsOfInstanceV2ResponseSpec `json:"spec,omitempty"`

	CreateTime *int64 `json:"create_time,omitempty"`

	EnterpriseProjectId *string `json:"enterprise_project_id,omitempty"`

	EipAddress *string `json:"eip_address,omitempty"`

	ChargingMode *ShowDetailsOfInstanceV2ResponseChargingMode `json:"charging_mode,omitempty"`

	CbcMetadata *string `json:"cbc_metadata,omitempty"`

	Description *string `json:"description,omitempty"`

	VpcId *string `json:"vpc_id,omitempty"`

	SubnetId *string `json:"subnet_id,omitempty"`

	SecurityGroupId *string `json:"security_group_id,omitempty"`

	MaintainBegin *string `json:"maintain_begin,omitempty"`

	MaintainEnd *string `json:"maintain_end,omitempty"`

	IngressIp *string `json:"ingress_ip,omitempty"`

	UserId *string `json:"user_id,omitempty"`

	NatEipIpv6Cidr *string `json:"nat_eip_ipv6_cidr,omitempty"`

	EipIpv6Address *string `json:"eip_ipv6_address,omitempty"`

	NatEipAddress *string `json:"nat_eip_address,omitempty"`

	BandwidthSize *int32 `json:"bandwidth_size,omitempty"`

	AvailableZoneIds *string `json:"available_zone_ids,omitempty"`

	InstanceVersion *string `json:"instance_version,omitempty"`

	VirsubnetId *string `json:"virsubnet_id,omitempty"`

	RomaEipAddress *string `json:"roma_eip_address,omitempty"`

	Listeners *interface{} `json:"listeners,omitempty"`

	SupportedFeatures *[]string `json:"supported_features,omitempty"`
	HttpStatusCode    int       `json:"-"`
}

Response Object

func (ShowDetailsOfInstanceV2Response) String

type ShowDetailsOfInstanceV2ResponseChargingMode

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

func (ShowDetailsOfInstanceV2ResponseChargingMode) MarshalJSON

func (*ShowDetailsOfInstanceV2ResponseChargingMode) UnmarshalJSON

type ShowDetailsOfInstanceV2ResponseInstanceStatus

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

func (ShowDetailsOfInstanceV2ResponseInstanceStatus) MarshalJSON

func (*ShowDetailsOfInstanceV2ResponseInstanceStatus) UnmarshalJSON

type ShowDetailsOfInstanceV2ResponseInstanceStatusEnum

type ShowDetailsOfInstanceV2ResponseInstanceStatusEnum struct {
	E_1  ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_2  ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_3  ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_4  ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_5  ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_6  ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_7  ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_8  ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_10 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_11 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_12 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_13 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_20 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_21 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_22 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_23 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_24 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_25 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_26 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_27 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_28 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_29 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_30 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_31 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_32 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_33 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_34 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_35 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_36 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_37 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_38 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_39 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_40 ShowDetailsOfInstanceV2ResponseInstanceStatus
	E_41 ShowDetailsOfInstanceV2ResponseInstanceStatus
}

func GetShowDetailsOfInstanceV2ResponseInstanceStatusEnum

func GetShowDetailsOfInstanceV2ResponseInstanceStatusEnum() ShowDetailsOfInstanceV2ResponseInstanceStatusEnum

type ShowDetailsOfInstanceV2ResponseSpec

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

func (ShowDetailsOfInstanceV2ResponseSpec) MarshalJSON

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

func (*ShowDetailsOfInstanceV2ResponseSpec) UnmarshalJSON

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

type ShowDetailsOfInstanceV2ResponseStatus

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

func (ShowDetailsOfInstanceV2ResponseStatus) MarshalJSON

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

func (*ShowDetailsOfInstanceV2ResponseStatus) UnmarshalJSON

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

type ShowDetailsOfInstanceV2ResponseStatusEnum

type ShowDetailsOfInstanceV2ResponseStatusEnum struct {
	CREATING           ShowDetailsOfInstanceV2ResponseStatus
	CREATE_SUCCESS     ShowDetailsOfInstanceV2ResponseStatus
	CREATE_FAIL        ShowDetailsOfInstanceV2ResponseStatus
	INITING            ShowDetailsOfInstanceV2ResponseStatus
	REGISTERING        ShowDetailsOfInstanceV2ResponseStatus
	RUNNING            ShowDetailsOfInstanceV2ResponseStatus
	INITING_FAILED     ShowDetailsOfInstanceV2ResponseStatus
	REGISTER_FAILED    ShowDetailsOfInstanceV2ResponseStatus
	INSTALLING         ShowDetailsOfInstanceV2ResponseStatus
	INSTALL_FAILED     ShowDetailsOfInstanceV2ResponseStatus
	UPDATING           ShowDetailsOfInstanceV2ResponseStatus
	UPDATE_FAILED      ShowDetailsOfInstanceV2ResponseStatus
	ROLLBACKING        ShowDetailsOfInstanceV2ResponseStatus
	ROLLBACK_SUCCESS   ShowDetailsOfInstanceV2ResponseStatus
	ROLLBACK_FAILED    ShowDetailsOfInstanceV2ResponseStatus
	DELETING           ShowDetailsOfInstanceV2ResponseStatus
	DELETE_FAILED      ShowDetailsOfInstanceV2ResponseStatus
	UNREGISTERING      ShowDetailsOfInstanceV2ResponseStatus
	UN_REGISTER_FAILED ShowDetailsOfInstanceV2ResponseStatus
	CREATE_TIMEOUT     ShowDetailsOfInstanceV2ResponseStatus
	INIT_TIMEOUT       ShowDetailsOfInstanceV2ResponseStatus
	REGISTER_TIMEOUT   ShowDetailsOfInstanceV2ResponseStatus
	INSTALL_TIMEOUT    ShowDetailsOfInstanceV2ResponseStatus
	UPDATE_TIMEOUT     ShowDetailsOfInstanceV2ResponseStatus
	ROLLBACK_TIMEOUT   ShowDetailsOfInstanceV2ResponseStatus
	DELETE_TIMEOUT     ShowDetailsOfInstanceV2ResponseStatus
	UNREGISTER_TIMEOUT ShowDetailsOfInstanceV2ResponseStatus
	STARTING           ShowDetailsOfInstanceV2ResponseStatus
	FREEZING           ShowDetailsOfInstanceV2ResponseStatus
	FROZEN             ShowDetailsOfInstanceV2ResponseStatus
	RESTARTING         ShowDetailsOfInstanceV2ResponseStatus
	RESTART_FAIL       ShowDetailsOfInstanceV2ResponseStatus
	UNHEALTHY          ShowDetailsOfInstanceV2ResponseStatus
	RESTART_TIMEOUT    ShowDetailsOfInstanceV2ResponseStatus
}

func GetShowDetailsOfInstanceV2ResponseStatusEnum

func GetShowDetailsOfInstanceV2ResponseStatusEnum() ShowDetailsOfInstanceV2ResponseStatusEnum

type ShowDetailsOfRequestThrottlingPolicyV2Request

type ShowDetailsOfRequestThrottlingPolicyV2Request struct {
	InstanceId string `json:"instance_id"`

	ThrottleId string `json:"throttle_id"`
}

Request Object

func (ShowDetailsOfRequestThrottlingPolicyV2Request) String

type ShowDetailsOfRequestThrottlingPolicyV2Response

type ShowDetailsOfRequestThrottlingPolicyV2Response struct {
	AppCallLimits *int32 `json:"app_call_limits,omitempty"`

	Name string `json:"name"`

	TimeUnit ShowDetailsOfRequestThrottlingPolicyV2ResponseTimeUnit `json:"time_unit"`

	Remark *string `json:"remark,omitempty"`

	ApiCallLimits int32 `json:"api_call_limits"`

	Type *ShowDetailsOfRequestThrottlingPolicyV2ResponseType `json:"type,omitempty"`

	EnableAdaptiveControl *string `json:"enable_adaptive_control,omitempty"`

	UserCallLimits *int32 `json:"user_call_limits,omitempty"`

	TimeInterval int32 `json:"time_interval"`

	IpCallLimits *int32 `json:"ip_call_limits,omitempty"`

	Id *string `json:"id,omitempty"`

	BindNum *int32 `json:"bind_num,omitempty"`

	IsIncluSpecialThrottle *ShowDetailsOfRequestThrottlingPolicyV2ResponseIsIncluSpecialThrottle `json:"is_inclu_special_throttle,omitempty"`

	CreateTime     *sdktime.SdkTime `json:"create_time,omitempty"`
	HttpStatusCode int              `json:"-"`
}

Response Object

func (ShowDetailsOfRequestThrottlingPolicyV2Response) String

type ShowDetailsOfRequestThrottlingPolicyV2ResponseIsIncluSpecialThrottle

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

func (ShowDetailsOfRequestThrottlingPolicyV2ResponseIsIncluSpecialThrottle) MarshalJSON

func (*ShowDetailsOfRequestThrottlingPolicyV2ResponseIsIncluSpecialThrottle) UnmarshalJSON

type ShowDetailsOfRequestThrottlingPolicyV2ResponseTimeUnit

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

func (ShowDetailsOfRequestThrottlingPolicyV2ResponseTimeUnit) MarshalJSON

func (*ShowDetailsOfRequestThrottlingPolicyV2ResponseTimeUnit) UnmarshalJSON

type ShowDetailsOfRequestThrottlingPolicyV2ResponseType

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

func (ShowDetailsOfRequestThrottlingPolicyV2ResponseType) MarshalJSON

func (*ShowDetailsOfRequestThrottlingPolicyV2ResponseType) UnmarshalJSON

type ShowDetailsOfVpcChannelV2Request

type ShowDetailsOfVpcChannelV2Request struct {
	InstanceId string `json:"instance_id"`

	VpcChannelId string `json:"vpc_channel_id"`
}

Request Object

func (ShowDetailsOfVpcChannelV2Request) String

type ShowDetailsOfVpcChannelV2Response

type ShowDetailsOfVpcChannelV2Response struct {
	Name string `json:"name"`

	Port *int32 `json:"port,omitempty"`

	BalanceStrategy *ShowDetailsOfVpcChannelV2ResponseBalanceStrategy `json:"balance_strategy,omitempty"`

	MemberType *ShowDetailsOfVpcChannelV2ResponseMemberType `json:"member_type,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	Id *string `json:"id,omitempty"`

	Status *ShowDetailsOfVpcChannelV2ResponseStatus `json:"status,omitempty"`

	MemberGroups *[]MemberGroupInfo `json:"member_groups,omitempty"`

	Members *[]VpcMemberInfo `json:"members,omitempty"`

	VpcHealthConfig *VpcHealthConfigInfo `json:"vpc_health_config,omitempty"`
	HttpStatusCode  int                  `json:"-"`
}

Response Object

func (ShowDetailsOfVpcChannelV2Response) String

type ShowDetailsOfVpcChannelV2ResponseBalanceStrategy

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

func (ShowDetailsOfVpcChannelV2ResponseBalanceStrategy) MarshalJSON

func (*ShowDetailsOfVpcChannelV2ResponseBalanceStrategy) UnmarshalJSON

type ShowDetailsOfVpcChannelV2ResponseMemberType

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

func (ShowDetailsOfVpcChannelV2ResponseMemberType) MarshalJSON

func (*ShowDetailsOfVpcChannelV2ResponseMemberType) UnmarshalJSON

type ShowDetailsOfVpcChannelV2ResponseStatus

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

func (ShowDetailsOfVpcChannelV2ResponseStatus) MarshalJSON

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

func (*ShowDetailsOfVpcChannelV2ResponseStatus) UnmarshalJSON

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

type SignApiBinding

type SignApiBinding struct {
	SignId string `json:"sign_id"`

	PublishIds []string `json:"publish_ids"`
}

func (SignApiBinding) String

func (o SignApiBinding) String() string

type SignApiBindingBase

type SignApiBindingBase struct {
	PublishId *string `json:"publish_id,omitempty"`

	ApiId *string `json:"api_id,omitempty"`

	GroupName *string `json:"group_name,omitempty"`

	BindingTime *sdktime.SdkTime `json:"binding_time,omitempty"`

	EnvId *string `json:"env_id,omitempty"`

	EnvName *string `json:"env_name,omitempty"`

	ApiType *int32 `json:"api_type,omitempty"`

	ApiName *string `json:"api_name,omitempty"`

	Id *string `json:"id,omitempty"`

	ApiRemark *string `json:"api_remark,omitempty"`

	SignId *string `json:"sign_id,omitempty"`

	SignName *string `json:"sign_name,omitempty"`
}

func (SignApiBindingBase) String

func (o SignApiBindingBase) String() string

type SignApiBindingInfo

type SignApiBindingInfo struct {
	PublishId *string `json:"publish_id,omitempty"`

	ApiId *string `json:"api_id,omitempty"`

	GroupName *string `json:"group_name,omitempty"`

	BindingTime *sdktime.SdkTime `json:"binding_time,omitempty"`

	EnvId *string `json:"env_id,omitempty"`

	EnvName *string `json:"env_name,omitempty"`

	ApiType *int32 `json:"api_type,omitempty"`

	ApiName *string `json:"api_name,omitempty"`

	Id *string `json:"id,omitempty"`

	ApiRemark *string `json:"api_remark,omitempty"`

	SignId *string `json:"sign_id,omitempty"`

	SignName *string `json:"sign_name,omitempty"`

	SignKey *string `json:"sign_key,omitempty"`

	SignSecret *string `json:"sign_secret,omitempty"`

	SignType *SignApiBindingInfoSignType `json:"sign_type,omitempty"`
}

func (SignApiBindingInfo) String

func (o SignApiBindingInfo) String() string

type SignApiBindingInfoSignType

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

func (SignApiBindingInfoSignType) MarshalJSON

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

func (*SignApiBindingInfoSignType) UnmarshalJSON

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

type SignApiBindingInfoSignTypeEnum

type SignApiBindingInfoSignTypeEnum struct {
	HMAC       SignApiBindingInfoSignType
	BASIC      SignApiBindingInfoSignType
	PUBLIC_KEY SignApiBindingInfoSignType
	AES        SignApiBindingInfoSignType
}

func GetSignApiBindingInfoSignTypeEnum

func GetSignApiBindingInfoSignTypeEnum() SignApiBindingInfoSignTypeEnum

type SignApiBindingResult

type SignApiBindingResult struct {
	Bindings *[]SignApiBindingInfo `json:"bindings,omitempty"`
}

func (SignApiBindingResult) String

func (o SignApiBindingResult) String() string

type Signature

type Signature struct {
	Name string `json:"name"`

	SignType *SignatureSignType `json:"sign_type,omitempty"`

	SignKey *string `json:"sign_key,omitempty"`

	SignSecret *string `json:"sign_secret,omitempty"`

	SignAlgorithm *SignatureSignAlgorithm `json:"sign_algorithm,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	Id *string `json:"id,omitempty"`
}

func (Signature) String

func (o Signature) String() string

type SignatureSignAlgorithm

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

func (SignatureSignAlgorithm) MarshalJSON

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

func (*SignatureSignAlgorithm) UnmarshalJSON

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

type SignatureSignAlgorithmEnum

type SignatureSignAlgorithmEnum struct {
	AES_128_CFB SignatureSignAlgorithm
	AES_256_CFB SignatureSignAlgorithm
}

func GetSignatureSignAlgorithmEnum

func GetSignatureSignAlgorithmEnum() SignatureSignAlgorithmEnum

type SignatureSignType

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

func (SignatureSignType) MarshalJSON

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

func (*SignatureSignType) UnmarshalJSON

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

type SignatureSignTypeEnum

type SignatureSignTypeEnum struct {
	HMAC       SignatureSignType
	BASIC      SignatureSignType
	PUBLIC_KEY SignatureSignType
	AES        SignatureSignType
}

func GetSignatureSignTypeEnum

func GetSignatureSignTypeEnum() SignatureSignTypeEnum

type SignatureWithBindNum

type SignatureWithBindNum struct {
	Name string `json:"name"`

	SignType *SignatureWithBindNumSignType `json:"sign_type,omitempty"`

	SignKey *string `json:"sign_key,omitempty"`

	SignSecret *string `json:"sign_secret,omitempty"`

	SignAlgorithm *SignatureWithBindNumSignAlgorithm `json:"sign_algorithm,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	Id *string `json:"id,omitempty"`

	BindNum *int32 `json:"bind_num,omitempty"`

	LdapiBindNum *int32 `json:"ldapi_bind_num,omitempty"`
}

func (SignatureWithBindNum) String

func (o SignatureWithBindNum) String() string

type SignatureWithBindNumSignAlgorithm

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

func (SignatureWithBindNumSignAlgorithm) MarshalJSON

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

func (*SignatureWithBindNumSignAlgorithm) UnmarshalJSON

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

type SignatureWithBindNumSignAlgorithmEnum

type SignatureWithBindNumSignAlgorithmEnum struct {
	AES_128_CFB SignatureWithBindNumSignAlgorithm
	AES_256_CFB SignatureWithBindNumSignAlgorithm
}

func GetSignatureWithBindNumSignAlgorithmEnum

func GetSignatureWithBindNumSignAlgorithmEnum() SignatureWithBindNumSignAlgorithmEnum

type SignatureWithBindNumSignType

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

func (SignatureWithBindNumSignType) MarshalJSON

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

func (*SignatureWithBindNumSignType) UnmarshalJSON

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

type StatisticsApi

type StatisticsApi struct {
	MaxLatency *int32 `json:"max_latency,omitempty"`

	AvgLatency *float32 `json:"avg_latency,omitempty"`

	ReqCount *int32 `json:"req_count,omitempty"`

	ReqCount2xx *int32 `json:"req_count2xx,omitempty"`

	ReqCount4xx *int32 `json:"req_count4xx,omitempty"`

	ReqCount5xx *int32 `json:"req_count5xx,omitempty"`

	ReqCountError *int32 `json:"req_count_error,omitempty"`

	MaxInnerLatency *int32 `json:"max_inner_latency,omitempty"`

	AvgInnerLatency *float32 `json:"avg_inner_latency,omitempty"`

	MaxBackendLatency *int32 `json:"max_backend_latency,omitempty"`

	AvgBackendLatency *float32 `json:"avg_backend_latency,omitempty"`

	OutputThroughput *int64 `json:"output_throughput,omitempty"`

	InputThroughput *int64 `json:"input_throughput,omitempty"`

	CurrentMinute *int64 `json:"current_minute,omitempty"`

	Cycle *StatisticsApiCycle `json:"cycle,omitempty"`

	ApiId *string `json:"api_id,omitempty"`

	GroupId *string `json:"group_id,omitempty"`

	Provider *string `json:"provider,omitempty"`

	ReqTime *sdktime.SdkTime `json:"req_time,omitempty"`

	RegisterTime *sdktime.SdkTime `json:"register_time,omitempty"`

	Status *string `json:"status,omitempty"`
}

func (StatisticsApi) String

func (o StatisticsApi) String() string

type StatisticsApiCycle

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

func (StatisticsApiCycle) MarshalJSON

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

func (*StatisticsApiCycle) UnmarshalJSON

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

type StatisticsApiCycleEnum

type StatisticsApiCycleEnum struct {
	MINUTE StatisticsApiCycle
	HOUR   StatisticsApiCycle
	DAY    StatisticsApiCycle
}

func GetStatisticsApiCycleEnum

func GetStatisticsApiCycleEnum() StatisticsApiCycleEnum

type StatisticsGroup

type StatisticsGroup struct {
	MaxLatency *int32 `json:"max_latency,omitempty"`

	AvgLatency *float32 `json:"avg_latency,omitempty"`

	ReqCount *int32 `json:"req_count,omitempty"`

	ReqCount2xx *int32 `json:"req_count2xx,omitempty"`

	ReqCount4xx *int32 `json:"req_count4xx,omitempty"`

	ReqCount5xx *int32 `json:"req_count5xx,omitempty"`

	ReqCountError *int32 `json:"req_count_error,omitempty"`

	OutputThroughput *int64 `json:"output_throughput,omitempty"`

	InputThroughput *int64 `json:"input_throughput,omitempty"`

	CurrentMinute *int64 `json:"current_minute,omitempty"`

	GroupId *string `json:"group_id,omitempty"`

	Provider *string `json:"provider,omitempty"`

	ReqTime *sdktime.SdkTime `json:"req_time,omitempty"`

	RegisterTime *sdktime.SdkTime `json:"register_time,omitempty"`
}

func (StatisticsGroup) String

func (o StatisticsGroup) String() string

type Success

type Success struct {
	Path *string `json:"path,omitempty"`

	Method *string `json:"method,omitempty"`

	Action *SuccessAction `json:"action,omitempty"`

	Id *string `json:"id,omitempty"`
}

func (Success) String

func (o Success) String() string

type SuccessAction

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

func (SuccessAction) MarshalJSON

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

func (*SuccessAction) UnmarshalJSON

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

type SuccessActionEnum

type SuccessActionEnum struct {
	UPDATE SuccessAction
	CREATE SuccessAction
}

func GetSuccessActionEnum

func GetSuccessActionEnum() SuccessActionEnum

type Swagger

type Swagger struct {
	Id *string `json:"id,omitempty"`

	Result *string `json:"result,omitempty"`
}

swagger文档导入结果 暂不支持

func (Swagger) String

func (o Swagger) String() string

type ThrottleApiBinding

type ThrottleApiBinding struct {
	PublishId *string `json:"publish_id,omitempty"`

	Scope *ThrottleApiBindingScope `json:"scope,omitempty"`

	StrategyId *string `json:"strategy_id,omitempty"`

	ApplyTime *sdktime.SdkTime `json:"apply_time,omitempty"`

	Id *string `json:"id,omitempty"`
}

func (ThrottleApiBinding) String

func (o ThrottleApiBinding) String() string

type ThrottleApiBindingCreate

type ThrottleApiBindingCreate struct {
	StrategyId string `json:"strategy_id"`

	PublishIds []string `json:"publish_ids"`
}

func (ThrottleApiBindingCreate) String

func (o ThrottleApiBindingCreate) String() string

type ThrottleApiBindingScope

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

func (ThrottleApiBindingScope) MarshalJSON

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

func (*ThrottleApiBindingScope) UnmarshalJSON

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

type ThrottleApiBindingScopeEnum

type ThrottleApiBindingScopeEnum struct {
	E_1 ThrottleApiBindingScope
	E_2 ThrottleApiBindingScope
	E_3 ThrottleApiBindingScope
}

func GetThrottleApiBindingScopeEnum

func GetThrottleApiBindingScopeEnum() ThrottleApiBindingScopeEnum

type ThrottleBaseInfo

type ThrottleBaseInfo struct {
	AppCallLimits *int32 `json:"app_call_limits,omitempty"`

	Name string `json:"name"`

	TimeUnit ThrottleBaseInfoTimeUnit `json:"time_unit"`

	Remark *string `json:"remark,omitempty"`

	ApiCallLimits int32 `json:"api_call_limits"`

	Type *ThrottleBaseInfoType `json:"type,omitempty"`

	EnableAdaptiveControl *string `json:"enable_adaptive_control,omitempty"`

	UserCallLimits *int32 `json:"user_call_limits,omitempty"`

	TimeInterval int32 `json:"time_interval"`

	IpCallLimits *int32 `json:"ip_call_limits,omitempty"`
}

func (ThrottleBaseInfo) String

func (o ThrottleBaseInfo) String() string

type ThrottleBaseInfoTimeUnit

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

func (ThrottleBaseInfoTimeUnit) MarshalJSON

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

func (*ThrottleBaseInfoTimeUnit) UnmarshalJSON

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

type ThrottleBaseInfoTimeUnitEnum

type ThrottleBaseInfoTimeUnitEnum struct {
	SECOND ThrottleBaseInfoTimeUnit
	MINUTE ThrottleBaseInfoTimeUnit
	HOUR   ThrottleBaseInfoTimeUnit
	DAY    ThrottleBaseInfoTimeUnit
}

func GetThrottleBaseInfoTimeUnitEnum

func GetThrottleBaseInfoTimeUnitEnum() ThrottleBaseInfoTimeUnitEnum

type ThrottleBaseInfoType

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

func (ThrottleBaseInfoType) MarshalJSON

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

func (*ThrottleBaseInfoType) UnmarshalJSON

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

type ThrottleBaseInfoTypeEnum

type ThrottleBaseInfoTypeEnum struct {
	E_1 ThrottleBaseInfoType
	E_2 ThrottleBaseInfoType
}

func GetThrottleBaseInfoTypeEnum

func GetThrottleBaseInfoTypeEnum() ThrottleBaseInfoTypeEnum

type ThrottleBindingBatchDelete

type ThrottleBindingBatchDelete struct {
	ThrottleBindings *[]string `json:"throttle_bindings,omitempty"`
}

func (ThrottleBindingBatchDelete) String

type ThrottleBindingBatchFailure

type ThrottleBindingBatchFailure struct {
	BindId *string `json:"bind_id,omitempty"`

	ErrorCode *string `json:"error_code,omitempty"`

	ErrorMsg *string `json:"error_msg,omitempty"`

	ApiId *string `json:"api_id,omitempty"`

	ApiName *string `json:"api_name,omitempty"`
}

func (ThrottleBindingBatchFailure) String

type ThrottleForApi

type ThrottleForApi struct {
	AppCallLimits *int32 `json:"app_call_limits,omitempty"`

	Name string `json:"name"`

	TimeUnit ThrottleForApiTimeUnit `json:"time_unit"`

	Remark *string `json:"remark,omitempty"`

	ApiCallLimits int32 `json:"api_call_limits"`

	Type *ThrottleForApiType `json:"type,omitempty"`

	EnableAdaptiveControl *string `json:"enable_adaptive_control,omitempty"`

	UserCallLimits *int32 `json:"user_call_limits,omitempty"`

	TimeInterval int32 `json:"time_interval"`

	IpCallLimits *int32 `json:"ip_call_limits,omitempty"`

	Id *string `json:"id,omitempty"`

	BindNum *int32 `json:"bind_num,omitempty"`

	IsIncluSpecialThrottle *ThrottleForApiIsIncluSpecialThrottle `json:"is_inclu_special_throttle,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	EnvName *string `json:"env_name,omitempty"`

	BindId *string `json:"bind_id,omitempty"`

	BindTime *sdktime.SdkTime `json:"bind_time,omitempty"`
}

func (ThrottleForApi) String

func (o ThrottleForApi) String() string

type ThrottleForApiIsIncluSpecialThrottle

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

func (ThrottleForApiIsIncluSpecialThrottle) MarshalJSON

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

func (*ThrottleForApiIsIncluSpecialThrottle) UnmarshalJSON

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

type ThrottleForApiIsIncluSpecialThrottleEnum

type ThrottleForApiIsIncluSpecialThrottleEnum struct {
	E_1 ThrottleForApiIsIncluSpecialThrottle
	E_2 ThrottleForApiIsIncluSpecialThrottle
}

func GetThrottleForApiIsIncluSpecialThrottleEnum

func GetThrottleForApiIsIncluSpecialThrottleEnum() ThrottleForApiIsIncluSpecialThrottleEnum

type ThrottleForApiTimeUnit

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

func (ThrottleForApiTimeUnit) MarshalJSON

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

func (*ThrottleForApiTimeUnit) UnmarshalJSON

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

type ThrottleForApiTimeUnitEnum

type ThrottleForApiTimeUnitEnum struct {
	SECOND ThrottleForApiTimeUnit
	MINUTE ThrottleForApiTimeUnit
	HOUR   ThrottleForApiTimeUnit
	DAY    ThrottleForApiTimeUnit
}

func GetThrottleForApiTimeUnitEnum

func GetThrottleForApiTimeUnitEnum() ThrottleForApiTimeUnitEnum

type ThrottleForApiType

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

func (ThrottleForApiType) MarshalJSON

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

func (*ThrottleForApiType) UnmarshalJSON

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

type ThrottleForApiTypeEnum

type ThrottleForApiTypeEnum struct {
	E_1 ThrottleForApiType
	E_2 ThrottleForApiType
}

func GetThrottleForApiTypeEnum

func GetThrottleForApiTypeEnum() ThrottleForApiTypeEnum

type ThrottleSpecialBase

type ThrottleSpecialBase struct {
	Id *string `json:"id,omitempty"`

	CallLimits *int32 `json:"call_limits,omitempty"`

	ApplyTime *sdktime.SdkTime `json:"apply_time,omitempty"`

	AppName *string `json:"app_name,omitempty"`

	AppId *string `json:"app_id,omitempty"`
}

func (ThrottleSpecialBase) String

func (o ThrottleSpecialBase) String() string

type ThrottleSpecialCreate

type ThrottleSpecialCreate struct {
	CallLimits int32 `json:"call_limits"`

	ObjectId string `json:"object_id"`

	ObjectType ThrottleSpecialCreateObjectType `json:"object_type"`
}

func (ThrottleSpecialCreate) String

func (o ThrottleSpecialCreate) String() string

type ThrottleSpecialCreateObjectType

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

func (ThrottleSpecialCreateObjectType) MarshalJSON

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

func (*ThrottleSpecialCreateObjectType) UnmarshalJSON

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

type ThrottleSpecialCreateObjectTypeEnum

type ThrottleSpecialCreateObjectTypeEnum struct {
	APP  ThrottleSpecialCreateObjectType
	USER ThrottleSpecialCreateObjectType
}

func GetThrottleSpecialCreateObjectTypeEnum

func GetThrottleSpecialCreateObjectTypeEnum() ThrottleSpecialCreateObjectTypeEnum

type ThrottleSpecialInfo

type ThrottleSpecialInfo struct {
	Id *string `json:"id,omitempty"`

	CallLimits *int32 `json:"call_limits,omitempty"`

	ApplyTime *sdktime.SdkTime `json:"apply_time,omitempty"`

	AppName *string `json:"app_name,omitempty"`

	AppId *string `json:"app_id,omitempty"`

	ObjectId *string `json:"object_id,omitempty"`

	ObjectType *string `json:"object_type,omitempty"`

	ObjectName *string `json:"object_name,omitempty"`

	ThrottleId *string `json:"throttle_id,omitempty"`
}

func (ThrottleSpecialInfo) String

func (o ThrottleSpecialInfo) String() string

type ThrottleSpecialUpdate

type ThrottleSpecialUpdate struct {
	CallLimits int64 `json:"call_limits"`
}

func (ThrottleSpecialUpdate) String

func (o ThrottleSpecialUpdate) String() string

type ThrottlesInfo

type ThrottlesInfo struct {
	AppCallLimits *int32 `json:"app_call_limits,omitempty"`

	Name string `json:"name"`

	TimeUnit ThrottlesInfoTimeUnit `json:"time_unit"`

	Remark *string `json:"remark,omitempty"`

	ApiCallLimits int32 `json:"api_call_limits"`

	Type *ThrottlesInfoType `json:"type,omitempty"`

	EnableAdaptiveControl *string `json:"enable_adaptive_control,omitempty"`

	UserCallLimits *int32 `json:"user_call_limits,omitempty"`

	TimeInterval int32 `json:"time_interval"`

	IpCallLimits *int32 `json:"ip_call_limits,omitempty"`

	Id *string `json:"id,omitempty"`

	BindNum *int32 `json:"bind_num,omitempty"`

	IsIncluSpecialThrottle *ThrottlesInfoIsIncluSpecialThrottle `json:"is_inclu_special_throttle,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`
}

func (ThrottlesInfo) String

func (o ThrottlesInfo) String() string

type ThrottlesInfoIsIncluSpecialThrottle

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

func (ThrottlesInfoIsIncluSpecialThrottle) MarshalJSON

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

func (*ThrottlesInfoIsIncluSpecialThrottle) UnmarshalJSON

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

type ThrottlesInfoIsIncluSpecialThrottleEnum

type ThrottlesInfoIsIncluSpecialThrottleEnum struct {
	E_1 ThrottlesInfoIsIncluSpecialThrottle
	E_2 ThrottlesInfoIsIncluSpecialThrottle
}

func GetThrottlesInfoIsIncluSpecialThrottleEnum

func GetThrottlesInfoIsIncluSpecialThrottleEnum() ThrottlesInfoIsIncluSpecialThrottleEnum

type ThrottlesInfoTimeUnit

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

func (ThrottlesInfoTimeUnit) MarshalJSON

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

func (*ThrottlesInfoTimeUnit) UnmarshalJSON

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

type ThrottlesInfoTimeUnitEnum

type ThrottlesInfoTimeUnitEnum struct {
	SECOND ThrottlesInfoTimeUnit
	MINUTE ThrottlesInfoTimeUnit
	HOUR   ThrottlesInfoTimeUnit
	DAY    ThrottlesInfoTimeUnit
}

func GetThrottlesInfoTimeUnitEnum

func GetThrottlesInfoTimeUnitEnum() ThrottlesInfoTimeUnitEnum

type ThrottlesInfoType

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

func (ThrottlesInfoType) MarshalJSON

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

func (*ThrottlesInfoType) UnmarshalJSON

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

type ThrottlesInfoTypeEnum

type ThrottlesInfoTypeEnum struct {
	E_1 ThrottlesInfoType
	E_2 ThrottlesInfoType
}

func GetThrottlesInfoTypeEnum

func GetThrottlesInfoTypeEnum() ThrottlesInfoTypeEnum

type UnbindApiForAcl

type UnbindApiForAcl struct {
	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	GroupId *string `json:"group_id,omitempty"`

	GroupName *string `json:"group_name,omitempty"`

	Type *int32 `json:"type,omitempty"`

	Remark *string `json:"remark,omitempty"`

	RunEnvName *string `json:"run_env_name,omitempty"`

	RunEnvId *string `json:"run_env_id,omitempty"`

	PublishId *string `json:"publish_id,omitempty"`

	AclName *string `json:"acl_name,omitempty"`
}

func (UnbindApiForAcl) String

func (o UnbindApiForAcl) String() string

type UpdateAclStrategyV2Request

type UpdateAclStrategyV2Request struct {
	InstanceId string `json:"instance_id"`

	AclId string `json:"acl_id"`

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

Request Object

func (UpdateAclStrategyV2Request) String

type UpdateAclStrategyV2Response

type UpdateAclStrategyV2Response struct {
	AclName *string `json:"acl_name,omitempty"`

	AclType *string `json:"acl_type,omitempty"`

	AclValue *string `json:"acl_value,omitempty"`

	EntityType *string `json:"entity_type,omitempty"`

	Id *string `json:"id,omitempty"`

	UpdateTime     *sdktime.SdkTime `json:"update_time,omitempty"`
	HttpStatusCode int              `json:"-"`
}

Response Object

func (UpdateAclStrategyV2Response) String

type UpdateApiGroupV2Request

type UpdateApiGroupV2Request struct {
	InstanceId string `json:"instance_id"`

	GroupId string `json:"group_id"`

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

Request Object

func (UpdateApiGroupV2Request) String

func (o UpdateApiGroupV2Request) String() string

type UpdateApiGroupV2Response

type UpdateApiGroupV2Response struct {
	Id string `json:"id"`

	Name string `json:"name"`

	Status UpdateApiGroupV2ResponseStatus `json:"status"`

	SlDomain string `json:"sl_domain"`

	RegisterTime *sdktime.SdkTime `json:"register_time"`

	UpdateTime *sdktime.SdkTime `json:"update_time"`

	OnSellStatus int32 `json:"on_sell_status"`

	UrlDomains *[]UrlDomain `json:"url_domains,omitempty"`

	SlDomains *[]string `json:"sl_domains,omitempty"`

	Remark *string `json:"remark,omitempty"`

	CallLimits *int32 `json:"call_limits,omitempty"`

	TimeInterval *int32 `json:"time_interval,omitempty"`

	TimeUnit *string `json:"time_unit,omitempty"`

	IsDefault *int32 `json:"is_default,omitempty"`

	Version *string `json:"version,omitempty"`

	RomaAppId *string `json:"roma_app_id,omitempty"`

	RomaAppName    *string `json:"roma_app_name,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (UpdateApiGroupV2Response) String

func (o UpdateApiGroupV2Response) String() string

type UpdateApiGroupV2ResponseStatus

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

func (UpdateApiGroupV2ResponseStatus) MarshalJSON

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

func (*UpdateApiGroupV2ResponseStatus) UnmarshalJSON

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

type UpdateApiGroupV2ResponseStatusEnum

type UpdateApiGroupV2ResponseStatusEnum struct {
	E_1 UpdateApiGroupV2ResponseStatus
}

func GetUpdateApiGroupV2ResponseStatusEnum

func GetUpdateApiGroupV2ResponseStatusEnum() UpdateApiGroupV2ResponseStatusEnum

type UpdateApiV2Request

type UpdateApiV2Request struct {
	InstanceId string `json:"instance_id"`

	ApiId string `json:"api_id"`

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

Request Object

func (UpdateApiV2Request) String

func (o UpdateApiV2Request) String() string

type UpdateApiV2Response

type UpdateApiV2Response struct {
	Name string `json:"name"`

	Type UpdateApiV2ResponseType `json:"type"`

	Version *string `json:"version,omitempty"`

	ReqProtocol UpdateApiV2ResponseReqProtocol `json:"req_protocol"`

	ReqMethod UpdateApiV2ResponseReqMethod `json:"req_method"`

	ReqUri string `json:"req_uri"`

	AuthType UpdateApiV2ResponseAuthType `json:"auth_type"`

	AuthOpt *AuthOpt `json:"auth_opt,omitempty"`

	Cors *bool `json:"cors,omitempty"`

	MatchMode *UpdateApiV2ResponseMatchMode `json:"match_mode,omitempty"`

	BackendType UpdateApiV2ResponseBackendType `json:"backend_type"`

	Remark *string `json:"remark,omitempty"`

	GroupId string `json:"group_id"`

	BodyRemark *string `json:"body_remark,omitempty"`

	ResultNormalSample *string `json:"result_normal_sample,omitempty"`

	ResultFailureSample *string `json:"result_failure_sample,omitempty"`

	AuthorizerId *string `json:"authorizer_id,omitempty"`

	Tags *[]string `json:"tags,omitempty"`

	ResponseId *string `json:"response_id,omitempty"`

	RomaAppId *string `json:"roma_app_id,omitempty"`

	DomainName *string `json:"domain_name,omitempty"`

	Tag *string `json:"tag,omitempty"`

	Id *string `json:"id,omitempty"`

	Status *int32 `json:"status,omitempty"`

	ArrangeNecessary *int32 `json:"arrange_necessary,omitempty"`

	RegisterTime *sdktime.SdkTime `json:"register_time,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`

	GroupName *string `json:"group_name,omitempty"`

	GroupVersion *string `json:"group_version,omitempty"`

	RunEnvId *string `json:"run_env_id,omitempty"`

	RunEnvName *string `json:"run_env_name,omitempty"`

	PublishId *string `json:"publish_id,omitempty"`

	FuncInfo *ApiFunc `json:"func_info,omitempty"`

	MockInfo *ApiMock `json:"mock_info,omitempty"`

	ReqParams *[]ReqParam `json:"req_params,omitempty"`

	BackendParams *[]BackendParam `json:"backend_params,omitempty"`

	PolicyFunctions *[]ApiPolicyFunctionResp `json:"policy_functions,omitempty"`

	PolicyMocks *[]ApiPolicyMockResp `json:"policy_mocks,omitempty"`

	BackendApi *BackendApi `json:"backend_api,omitempty"`

	PolicyHttps    *[]ApiPolicyHttpResp `json:"policy_https,omitempty"`
	HttpStatusCode int                  `json:"-"`
}

Response Object

func (UpdateApiV2Response) String

func (o UpdateApiV2Response) String() string

type UpdateApiV2ResponseAuthType

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

func (UpdateApiV2ResponseAuthType) MarshalJSON

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

func (*UpdateApiV2ResponseAuthType) UnmarshalJSON

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

type UpdateApiV2ResponseBackendType

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

func (UpdateApiV2ResponseBackendType) MarshalJSON

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

func (*UpdateApiV2ResponseBackendType) UnmarshalJSON

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

type UpdateApiV2ResponseBackendTypeEnum

type UpdateApiV2ResponseBackendTypeEnum struct {
	HTTP     UpdateApiV2ResponseBackendType
	FUNCTION UpdateApiV2ResponseBackendType
	MOCK     UpdateApiV2ResponseBackendType
}

func GetUpdateApiV2ResponseBackendTypeEnum

func GetUpdateApiV2ResponseBackendTypeEnum() UpdateApiV2ResponseBackendTypeEnum

type UpdateApiV2ResponseMatchMode

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

func (UpdateApiV2ResponseMatchMode) MarshalJSON

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

func (*UpdateApiV2ResponseMatchMode) UnmarshalJSON

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

type UpdateApiV2ResponseMatchModeEnum

type UpdateApiV2ResponseMatchModeEnum struct {
	SWA    UpdateApiV2ResponseMatchMode
	NORMAL UpdateApiV2ResponseMatchMode
}

func GetUpdateApiV2ResponseMatchModeEnum

func GetUpdateApiV2ResponseMatchModeEnum() UpdateApiV2ResponseMatchModeEnum

type UpdateApiV2ResponseReqMethod

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

func (UpdateApiV2ResponseReqMethod) MarshalJSON

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

func (*UpdateApiV2ResponseReqMethod) UnmarshalJSON

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

type UpdateApiV2ResponseReqProtocol

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

func (UpdateApiV2ResponseReqProtocol) MarshalJSON

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

func (*UpdateApiV2ResponseReqProtocol) UnmarshalJSON

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

type UpdateApiV2ResponseType

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

func (UpdateApiV2ResponseType) MarshalJSON

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

func (*UpdateApiV2ResponseType) UnmarshalJSON

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

type UpdateApiV2ResponseTypeEnum

type UpdateApiV2ResponseTypeEnum struct {
	E_1 UpdateApiV2ResponseType
	E_2 UpdateApiV2ResponseType
}

func GetUpdateApiV2ResponseTypeEnum

func GetUpdateApiV2ResponseTypeEnum() UpdateApiV2ResponseTypeEnum

type UpdateAppV2Request

type UpdateAppV2Request struct {
	InstanceId string `json:"instance_id"`

	AppId string `json:"app_id"`

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

Request Object

func (UpdateAppV2Request) String

func (o UpdateAppV2Request) String() string

type UpdateAppV2Response

type UpdateAppV2Response struct {
	Id *string `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	Remark *string `json:"remark,omitempty"`

	Creator *UpdateAppV2ResponseCreator `json:"creator,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`

	AppKey *string `json:"app_key,omitempty"`

	AppSecret *string `json:"app_secret,omitempty"`

	RegisterTime *sdktime.SdkTime `json:"register_time,omitempty"`

	Status *UpdateAppV2ResponseStatus `json:"status,omitempty"`

	AppType *UpdateAppV2ResponseAppType `json:"app_type,omitempty"`

	RomaAppType    *string `json:"roma_app_type,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (UpdateAppV2Response) String

func (o UpdateAppV2Response) String() string

type UpdateAppV2ResponseAppType

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

func (UpdateAppV2ResponseAppType) MarshalJSON

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

func (*UpdateAppV2ResponseAppType) UnmarshalJSON

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

type UpdateAppV2ResponseAppTypeEnum

type UpdateAppV2ResponseAppTypeEnum struct {
	APIG UpdateAppV2ResponseAppType
	ROMA UpdateAppV2ResponseAppType
}

func GetUpdateAppV2ResponseAppTypeEnum

func GetUpdateAppV2ResponseAppTypeEnum() UpdateAppV2ResponseAppTypeEnum

type UpdateAppV2ResponseCreator

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

func (UpdateAppV2ResponseCreator) MarshalJSON

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

func (*UpdateAppV2ResponseCreator) UnmarshalJSON

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

type UpdateAppV2ResponseCreatorEnum

type UpdateAppV2ResponseCreatorEnum struct {
	USER   UpdateAppV2ResponseCreator
	MARKET UpdateAppV2ResponseCreator
}

func GetUpdateAppV2ResponseCreatorEnum

func GetUpdateAppV2ResponseCreatorEnum() UpdateAppV2ResponseCreatorEnum

type UpdateAppV2ResponseStatus

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

func (UpdateAppV2ResponseStatus) MarshalJSON

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

func (*UpdateAppV2ResponseStatus) UnmarshalJSON

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

type UpdateAppV2ResponseStatusEnum

type UpdateAppV2ResponseStatusEnum struct {
	E_1 UpdateAppV2ResponseStatus
}

func GetUpdateAppV2ResponseStatusEnum

func GetUpdateAppV2ResponseStatusEnum() UpdateAppV2ResponseStatusEnum

type UpdateCustomAuthorizerV2Request

type UpdateCustomAuthorizerV2Request struct {
	InstanceId string `json:"instance_id"`

	AuthorizerId string `json:"authorizer_id"`

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

Request Object

func (UpdateCustomAuthorizerV2Request) String

type UpdateCustomAuthorizerV2Response

type UpdateCustomAuthorizerV2Response struct {
	Name string `json:"name"`

	Type UpdateCustomAuthorizerV2ResponseType `json:"type"`

	AuthorizerType UpdateCustomAuthorizerV2ResponseAuthorizerType `json:"authorizer_type"`

	AuthorizerUri string `json:"authorizer_uri"`

	Identities *[]Identity `json:"identities,omitempty"`

	Ttl *int32 `json:"ttl,omitempty"`

	UserData *string `json:"user_data,omitempty"`

	LdApiId *string `json:"ld_api_id,omitempty"`

	NeedBody *bool `json:"need_body,omitempty"`

	Id *string `json:"id,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	RomaAppId *string `json:"roma_app_id,omitempty"`

	RomaAppName    *string `json:"roma_app_name,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (UpdateCustomAuthorizerV2Response) String

type UpdateCustomAuthorizerV2ResponseAuthorizerType

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

func (UpdateCustomAuthorizerV2ResponseAuthorizerType) MarshalJSON

func (*UpdateCustomAuthorizerV2ResponseAuthorizerType) UnmarshalJSON

type UpdateCustomAuthorizerV2ResponseAuthorizerTypeEnum

type UpdateCustomAuthorizerV2ResponseAuthorizerTypeEnum struct {
	FUNC UpdateCustomAuthorizerV2ResponseAuthorizerType
}

func GetUpdateCustomAuthorizerV2ResponseAuthorizerTypeEnum

func GetUpdateCustomAuthorizerV2ResponseAuthorizerTypeEnum() UpdateCustomAuthorizerV2ResponseAuthorizerTypeEnum

type UpdateCustomAuthorizerV2ResponseType

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

func (UpdateCustomAuthorizerV2ResponseType) MarshalJSON

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

func (*UpdateCustomAuthorizerV2ResponseType) UnmarshalJSON

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

type UpdateCustomAuthorizerV2ResponseTypeEnum

type UpdateCustomAuthorizerV2ResponseTypeEnum struct {
	FRONTEND UpdateCustomAuthorizerV2ResponseType
	BACKEND  UpdateCustomAuthorizerV2ResponseType
}

func GetUpdateCustomAuthorizerV2ResponseTypeEnum

func GetUpdateCustomAuthorizerV2ResponseTypeEnum() UpdateCustomAuthorizerV2ResponseTypeEnum

type UpdateDomainV2Request

type UpdateDomainV2Request struct {
	InstanceId string `json:"instance_id"`

	GroupId string `json:"group_id"`

	DomainId string `json:"domain_id"`

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

Request Object

func (UpdateDomainV2Request) String

func (o UpdateDomainV2Request) String() string

type UpdateDomainV2Response

type UpdateDomainV2Response struct {
	UrlDomain *string `json:"url_domain,omitempty"`

	Id *string `json:"id,omitempty"`

	Status *UpdateDomainV2ResponseStatus `json:"status,omitempty"`

	MinSslVersion  *string `json:"min_ssl_version,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (UpdateDomainV2Response) String

func (o UpdateDomainV2Response) String() string

type UpdateDomainV2ResponseStatus

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

func (UpdateDomainV2ResponseStatus) MarshalJSON

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

func (*UpdateDomainV2ResponseStatus) UnmarshalJSON

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

type UpdateEngressEipV2Request

type UpdateEngressEipV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (UpdateEngressEipV2Request) String

func (o UpdateEngressEipV2Request) String() string

type UpdateEngressEipV2Response

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

Response Object

func (UpdateEngressEipV2Response) String

type UpdateEnvironmentV2Request

type UpdateEnvironmentV2Request struct {
	InstanceId string `json:"instance_id"`

	EnvId string `json:"env_id"`

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

Request Object

func (UpdateEnvironmentV2Request) String

type UpdateEnvironmentV2Response

type UpdateEnvironmentV2Response struct {
	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	Name *string `json:"name,omitempty"`

	Remark *string `json:"remark,omitempty"`

	Id             *string `json:"id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (UpdateEnvironmentV2Response) String

type UpdateGatewayResponseTypeV2Request

type UpdateGatewayResponseTypeV2Request struct {
	InstanceId string `json:"instance_id"`

	GroupId string `json:"group_id"`

	ResponseId string `json:"response_id"`

	ResponseType UpdateGatewayResponseTypeV2RequestResponseType `json:"response_type"`

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

Request Object

func (UpdateGatewayResponseTypeV2Request) String

type UpdateGatewayResponseTypeV2RequestResponseType

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

func (UpdateGatewayResponseTypeV2RequestResponseType) MarshalJSON

func (*UpdateGatewayResponseTypeV2RequestResponseType) UnmarshalJSON

type UpdateGatewayResponseTypeV2Response

type UpdateGatewayResponseTypeV2Response struct {
	Body           map[string]ResponseInfoResp `json:"body,omitempty"`
	HttpStatusCode int                         `json:"-"`
}

Response Object

func (UpdateGatewayResponseTypeV2Response) String

type UpdateGatewayResponseV2Request

type UpdateGatewayResponseV2Request struct {
	InstanceId string `json:"instance_id"`

	GroupId string `json:"group_id"`

	ResponseId string `json:"response_id"`

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

Request Object

func (UpdateGatewayResponseV2Request) String

type UpdateGatewayResponseV2Response

type UpdateGatewayResponseV2Response struct {
	Name *string `json:"name,omitempty"`

	Responses map[string]ResponseInfoResp `json:"responses,omitempty"`

	Id *string `json:"id,omitempty"`

	Default *bool `json:"default,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	UpdateTime     *sdktime.SdkTime `json:"update_time,omitempty"`
	HttpStatusCode int              `json:"-"`
}

Response Object

func (UpdateGatewayResponseV2Response) String

type UpdateInstanceV2Request

type UpdateInstanceV2Request struct {
	InstanceId string `json:"instance_id"`

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

Request Object

func (UpdateInstanceV2Request) String

func (o UpdateInstanceV2Request) String() string

type UpdateInstanceV2Response

type UpdateInstanceV2Response struct {
	Id *string `json:"id,omitempty"`

	ProjectId *string `json:"project_id,omitempty"`

	InstanceName *string `json:"instance_name,omitempty"`

	Status *UpdateInstanceV2ResponseStatus `json:"status,omitempty"`

	InstanceStatus *UpdateInstanceV2ResponseInstanceStatus `json:"instance_status,omitempty"`

	Type *string `json:"type,omitempty"`

	Spec *UpdateInstanceV2ResponseSpec `json:"spec,omitempty"`

	CreateTime *int64 `json:"create_time,omitempty"`

	EnterpriseProjectId *string `json:"enterprise_project_id,omitempty"`

	EipAddress *string `json:"eip_address,omitempty"`

	ChargingMode *UpdateInstanceV2ResponseChargingMode `json:"charging_mode,omitempty"`

	CbcMetadata *string `json:"cbc_metadata,omitempty"`

	Description *string `json:"description,omitempty"`

	VpcId *string `json:"vpc_id,omitempty"`

	SubnetId *string `json:"subnet_id,omitempty"`

	SecurityGroupId *string `json:"security_group_id,omitempty"`

	MaintainBegin *string `json:"maintain_begin,omitempty"`

	MaintainEnd *string `json:"maintain_end,omitempty"`

	IngressIp *string `json:"ingress_ip,omitempty"`

	UserId *string `json:"user_id,omitempty"`

	NatEipIpv6Cidr *string `json:"nat_eip_ipv6_cidr,omitempty"`

	EipIpv6Address *string `json:"eip_ipv6_address,omitempty"`

	NatEipAddress *string `json:"nat_eip_address,omitempty"`

	BandwidthSize *int32 `json:"bandwidth_size,omitempty"`

	AvailableZoneIds *string `json:"available_zone_ids,omitempty"`

	InstanceVersion *string `json:"instance_version,omitempty"`

	VirsubnetId *string `json:"virsubnet_id,omitempty"`

	RomaEipAddress *string `json:"roma_eip_address,omitempty"`

	Listeners *interface{} `json:"listeners,omitempty"`

	SupportedFeatures *[]string `json:"supported_features,omitempty"`
	HttpStatusCode    int       `json:"-"`
}

Response Object

func (UpdateInstanceV2Response) String

func (o UpdateInstanceV2Response) String() string

type UpdateInstanceV2ResponseChargingMode

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

func (UpdateInstanceV2ResponseChargingMode) MarshalJSON

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

func (*UpdateInstanceV2ResponseChargingMode) UnmarshalJSON

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

type UpdateInstanceV2ResponseChargingModeEnum

type UpdateInstanceV2ResponseChargingModeEnum struct {
	E_0 UpdateInstanceV2ResponseChargingMode
	E_1 UpdateInstanceV2ResponseChargingMode
}

func GetUpdateInstanceV2ResponseChargingModeEnum

func GetUpdateInstanceV2ResponseChargingModeEnum() UpdateInstanceV2ResponseChargingModeEnum

type UpdateInstanceV2ResponseInstanceStatus

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

func (UpdateInstanceV2ResponseInstanceStatus) MarshalJSON

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

func (*UpdateInstanceV2ResponseInstanceStatus) UnmarshalJSON

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

type UpdateInstanceV2ResponseInstanceStatusEnum

type UpdateInstanceV2ResponseInstanceStatusEnum struct {
	E_1  UpdateInstanceV2ResponseInstanceStatus
	E_2  UpdateInstanceV2ResponseInstanceStatus
	E_3  UpdateInstanceV2ResponseInstanceStatus
	E_4  UpdateInstanceV2ResponseInstanceStatus
	E_5  UpdateInstanceV2ResponseInstanceStatus
	E_6  UpdateInstanceV2ResponseInstanceStatus
	E_7  UpdateInstanceV2ResponseInstanceStatus
	E_8  UpdateInstanceV2ResponseInstanceStatus
	E_10 UpdateInstanceV2ResponseInstanceStatus
	E_11 UpdateInstanceV2ResponseInstanceStatus
	E_12 UpdateInstanceV2ResponseInstanceStatus
	E_13 UpdateInstanceV2ResponseInstanceStatus
	E_20 UpdateInstanceV2ResponseInstanceStatus
	E_21 UpdateInstanceV2ResponseInstanceStatus
	E_22 UpdateInstanceV2ResponseInstanceStatus
	E_23 UpdateInstanceV2ResponseInstanceStatus
	E_24 UpdateInstanceV2ResponseInstanceStatus
	E_25 UpdateInstanceV2ResponseInstanceStatus
	E_26 UpdateInstanceV2ResponseInstanceStatus
	E_27 UpdateInstanceV2ResponseInstanceStatus
	E_28 UpdateInstanceV2ResponseInstanceStatus
	E_29 UpdateInstanceV2ResponseInstanceStatus
	E_30 UpdateInstanceV2ResponseInstanceStatus
	E_31 UpdateInstanceV2ResponseInstanceStatus
	E_32 UpdateInstanceV2ResponseInstanceStatus
	E_33 UpdateInstanceV2ResponseInstanceStatus
	E_34 UpdateInstanceV2ResponseInstanceStatus
	E_35 UpdateInstanceV2ResponseInstanceStatus
	E_36 UpdateInstanceV2ResponseInstanceStatus
	E_37 UpdateInstanceV2ResponseInstanceStatus
	E_38 UpdateInstanceV2ResponseInstanceStatus
	E_39 UpdateInstanceV2ResponseInstanceStatus
	E_40 UpdateInstanceV2ResponseInstanceStatus
	E_41 UpdateInstanceV2ResponseInstanceStatus
}

func GetUpdateInstanceV2ResponseInstanceStatusEnum

func GetUpdateInstanceV2ResponseInstanceStatusEnum() UpdateInstanceV2ResponseInstanceStatusEnum

type UpdateInstanceV2ResponseSpec

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

func (UpdateInstanceV2ResponseSpec) MarshalJSON

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

func (*UpdateInstanceV2ResponseSpec) UnmarshalJSON

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

type UpdateInstanceV2ResponseStatus

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

func (UpdateInstanceV2ResponseStatus) MarshalJSON

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

func (*UpdateInstanceV2ResponseStatus) UnmarshalJSON

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

type UpdateInstanceV2ResponseStatusEnum

type UpdateInstanceV2ResponseStatusEnum struct {
	CREATING           UpdateInstanceV2ResponseStatus
	CREATE_SUCCESS     UpdateInstanceV2ResponseStatus
	CREATE_FAIL        UpdateInstanceV2ResponseStatus
	INITING            UpdateInstanceV2ResponseStatus
	REGISTERING        UpdateInstanceV2ResponseStatus
	RUNNING            UpdateInstanceV2ResponseStatus
	INITING_FAILED     UpdateInstanceV2ResponseStatus
	REGISTER_FAILED    UpdateInstanceV2ResponseStatus
	INSTALLING         UpdateInstanceV2ResponseStatus
	INSTALL_FAILED     UpdateInstanceV2ResponseStatus
	UPDATING           UpdateInstanceV2ResponseStatus
	UPDATE_FAILED      UpdateInstanceV2ResponseStatus
	ROLLBACKING        UpdateInstanceV2ResponseStatus
	ROLLBACK_SUCCESS   UpdateInstanceV2ResponseStatus
	ROLLBACK_FAILED    UpdateInstanceV2ResponseStatus
	DELETING           UpdateInstanceV2ResponseStatus
	DELETE_FAILED      UpdateInstanceV2ResponseStatus
	UNREGISTERING      UpdateInstanceV2ResponseStatus
	UN_REGISTER_FAILED UpdateInstanceV2ResponseStatus
	CREATE_TIMEOUT     UpdateInstanceV2ResponseStatus
	INIT_TIMEOUT       UpdateInstanceV2ResponseStatus
	REGISTER_TIMEOUT   UpdateInstanceV2ResponseStatus
	INSTALL_TIMEOUT    UpdateInstanceV2ResponseStatus
	UPDATE_TIMEOUT     UpdateInstanceV2ResponseStatus
	ROLLBACK_TIMEOUT   UpdateInstanceV2ResponseStatus
	DELETE_TIMEOUT     UpdateInstanceV2ResponseStatus
	UNREGISTER_TIMEOUT UpdateInstanceV2ResponseStatus
	STARTING           UpdateInstanceV2ResponseStatus
	FREEZING           UpdateInstanceV2ResponseStatus
	FROZEN             UpdateInstanceV2ResponseStatus
	RESTARTING         UpdateInstanceV2ResponseStatus
	RESTART_FAIL       UpdateInstanceV2ResponseStatus
	UNHEALTHY          UpdateInstanceV2ResponseStatus
	RESTART_TIMEOUT    UpdateInstanceV2ResponseStatus
}

func GetUpdateInstanceV2ResponseStatusEnum

func GetUpdateInstanceV2ResponseStatusEnum() UpdateInstanceV2ResponseStatusEnum

type UpdateRequestThrottlingPolicyV2Request

type UpdateRequestThrottlingPolicyV2Request struct {
	InstanceId string `json:"instance_id"`

	ThrottleId string `json:"throttle_id"`

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

Request Object

func (UpdateRequestThrottlingPolicyV2Request) String

type UpdateRequestThrottlingPolicyV2Response

type UpdateRequestThrottlingPolicyV2Response struct {
	AppCallLimits *int32 `json:"app_call_limits,omitempty"`

	Name string `json:"name"`

	TimeUnit UpdateRequestThrottlingPolicyV2ResponseTimeUnit `json:"time_unit"`

	Remark *string `json:"remark,omitempty"`

	ApiCallLimits int32 `json:"api_call_limits"`

	Type *UpdateRequestThrottlingPolicyV2ResponseType `json:"type,omitempty"`

	EnableAdaptiveControl *string `json:"enable_adaptive_control,omitempty"`

	UserCallLimits *int32 `json:"user_call_limits,omitempty"`

	TimeInterval int32 `json:"time_interval"`

	IpCallLimits *int32 `json:"ip_call_limits,omitempty"`

	Id *string `json:"id,omitempty"`

	BindNum *int32 `json:"bind_num,omitempty"`

	IsIncluSpecialThrottle *UpdateRequestThrottlingPolicyV2ResponseIsIncluSpecialThrottle `json:"is_inclu_special_throttle,omitempty"`

	CreateTime     *sdktime.SdkTime `json:"create_time,omitempty"`
	HttpStatusCode int              `json:"-"`
}

Response Object

func (UpdateRequestThrottlingPolicyV2Response) String

type UpdateRequestThrottlingPolicyV2ResponseIsIncluSpecialThrottle

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

func (UpdateRequestThrottlingPolicyV2ResponseIsIncluSpecialThrottle) MarshalJSON

func (*UpdateRequestThrottlingPolicyV2ResponseIsIncluSpecialThrottle) UnmarshalJSON

type UpdateRequestThrottlingPolicyV2ResponseTimeUnit

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

func (UpdateRequestThrottlingPolicyV2ResponseTimeUnit) MarshalJSON

func (*UpdateRequestThrottlingPolicyV2ResponseTimeUnit) UnmarshalJSON

type UpdateRequestThrottlingPolicyV2ResponseType

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

func (UpdateRequestThrottlingPolicyV2ResponseType) MarshalJSON

func (*UpdateRequestThrottlingPolicyV2ResponseType) UnmarshalJSON

type UpdateSignatureKeyV2Request

type UpdateSignatureKeyV2Request struct {
	InstanceId string `json:"instance_id"`

	SignId string `json:"sign_id"`

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

Request Object

func (UpdateSignatureKeyV2Request) String

type UpdateSignatureKeyV2Response

type UpdateSignatureKeyV2Response struct {
	Name string `json:"name"`

	SignType *UpdateSignatureKeyV2ResponseSignType `json:"sign_type,omitempty"`

	SignKey *string `json:"sign_key,omitempty"`

	SignSecret *string `json:"sign_secret,omitempty"`

	SignAlgorithm *UpdateSignatureKeyV2ResponseSignAlgorithm `json:"sign_algorithm,omitempty"`

	UpdateTime *sdktime.SdkTime `json:"update_time,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	Id             *string `json:"id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (UpdateSignatureKeyV2Response) String

type UpdateSignatureKeyV2ResponseSignAlgorithm

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

func (UpdateSignatureKeyV2ResponseSignAlgorithm) MarshalJSON

func (*UpdateSignatureKeyV2ResponseSignAlgorithm) UnmarshalJSON

type UpdateSignatureKeyV2ResponseSignAlgorithmEnum

type UpdateSignatureKeyV2ResponseSignAlgorithmEnum struct {
	AES_128_CFB UpdateSignatureKeyV2ResponseSignAlgorithm
	AES_256_CFB UpdateSignatureKeyV2ResponseSignAlgorithm
}

func GetUpdateSignatureKeyV2ResponseSignAlgorithmEnum

func GetUpdateSignatureKeyV2ResponseSignAlgorithmEnum() UpdateSignatureKeyV2ResponseSignAlgorithmEnum

type UpdateSignatureKeyV2ResponseSignType

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

func (UpdateSignatureKeyV2ResponseSignType) MarshalJSON

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

func (*UpdateSignatureKeyV2ResponseSignType) UnmarshalJSON

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

type UpdateSpecialThrottlingConfigurationV2Request

type UpdateSpecialThrottlingConfigurationV2Request struct {
	InstanceId string `json:"instance_id"`

	ThrottleId string `json:"throttle_id"`

	StrategyId string `json:"strategy_id"`

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

Request Object

func (UpdateSpecialThrottlingConfigurationV2Request) String

type UpdateSpecialThrottlingConfigurationV2Response

type UpdateSpecialThrottlingConfigurationV2Response struct {
	Id *string `json:"id,omitempty"`

	CallLimits *int32 `json:"call_limits,omitempty"`

	ApplyTime *sdktime.SdkTime `json:"apply_time,omitempty"`

	AppName *string `json:"app_name,omitempty"`

	AppId *string `json:"app_id,omitempty"`

	ObjectId *string `json:"object_id,omitempty"`

	ObjectType *string `json:"object_type,omitempty"`

	ObjectName *string `json:"object_name,omitempty"`

	ThrottleId     *string `json:"throttle_id,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (UpdateSpecialThrottlingConfigurationV2Response) String

type UpdateVpcChannelV2Request

type UpdateVpcChannelV2Request struct {
	InstanceId string `json:"instance_id"`

	VpcChannelId string `json:"vpc_channel_id"`

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

Request Object

func (UpdateVpcChannelV2Request) String

func (o UpdateVpcChannelV2Request) String() string

type UpdateVpcChannelV2Response

type UpdateVpcChannelV2Response struct {
	Name string `json:"name"`

	Port *int32 `json:"port,omitempty"`

	BalanceStrategy *UpdateVpcChannelV2ResponseBalanceStrategy `json:"balance_strategy,omitempty"`

	MemberType *UpdateVpcChannelV2ResponseMemberType `json:"member_type,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	Id *string `json:"id,omitempty"`

	Status *UpdateVpcChannelV2ResponseStatus `json:"status,omitempty"`

	MemberGroups   *[]MemberGroupInfo `json:"member_groups,omitempty"`
	HttpStatusCode int                `json:"-"`
}

Response Object

func (UpdateVpcChannelV2Response) String

type UpdateVpcChannelV2ResponseBalanceStrategy

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

func (UpdateVpcChannelV2ResponseBalanceStrategy) MarshalJSON

func (*UpdateVpcChannelV2ResponseBalanceStrategy) UnmarshalJSON

type UpdateVpcChannelV2ResponseMemberType

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

func (UpdateVpcChannelV2ResponseMemberType) MarshalJSON

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

func (*UpdateVpcChannelV2ResponseMemberType) UnmarshalJSON

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

type UpdateVpcChannelV2ResponseMemberTypeEnum

type UpdateVpcChannelV2ResponseMemberTypeEnum struct {
	IP  UpdateVpcChannelV2ResponseMemberType
	ECS UpdateVpcChannelV2ResponseMemberType
}

func GetUpdateVpcChannelV2ResponseMemberTypeEnum

func GetUpdateVpcChannelV2ResponseMemberTypeEnum() UpdateVpcChannelV2ResponseMemberTypeEnum

type UpdateVpcChannelV2ResponseStatus

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

func (UpdateVpcChannelV2ResponseStatus) MarshalJSON

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

func (*UpdateVpcChannelV2ResponseStatus) UnmarshalJSON

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

type UpdateVpcChannelV2ResponseStatusEnum

type UpdateVpcChannelV2ResponseStatusEnum struct {
	E_1 UpdateVpcChannelV2ResponseStatus
	E_2 UpdateVpcChannelV2ResponseStatus
}

func GetUpdateVpcChannelV2ResponseStatusEnum

func GetUpdateVpcChannelV2ResponseStatusEnum() UpdateVpcChannelV2ResponseStatusEnum

type UrlDomain

type UrlDomain struct {
	Id *string `json:"id,omitempty"`

	Domain *string `json:"domain,omitempty"`

	CnameStatus *int32 `json:"cname_status,omitempty"`

	SslId *string `json:"ssl_id,omitempty"`

	SslName *string `json:"ssl_name,omitempty"`

	MinSslVersion *UrlDomainMinSslVersion `json:"min_ssl_version,omitempty"`
}

func (UrlDomain) String

func (o UrlDomain) String() string

type UrlDomainBase

type UrlDomainBase struct {
	MinSslVersion *UrlDomainBaseMinSslVersion `json:"min_ssl_version,omitempty"`
}

func (UrlDomainBase) String

func (o UrlDomainBase) String() string

type UrlDomainBaseInfo

type UrlDomainBaseInfo struct {
	UrlDomain string `json:"url_domain"`

	Id string `json:"id"`

	Status UrlDomainBaseInfoStatus `json:"status"`

	MinSslVersion string `json:"min_ssl_version"`
}

func (UrlDomainBaseInfo) String

func (o UrlDomainBaseInfo) String() string

type UrlDomainBaseInfoStatus

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

func (UrlDomainBaseInfoStatus) MarshalJSON

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

func (*UrlDomainBaseInfoStatus) UnmarshalJSON

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

type UrlDomainBaseMinSslVersion

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

func (UrlDomainBaseMinSslVersion) MarshalJSON

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

func (*UrlDomainBaseMinSslVersion) UnmarshalJSON

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

type UrlDomainBaseMinSslVersionEnum

type UrlDomainBaseMinSslVersionEnum struct {
	TL_SV1_1 UrlDomainBaseMinSslVersion
	TL_SV1_2 UrlDomainBaseMinSslVersion
}

func GetUrlDomainBaseMinSslVersionEnum

func GetUrlDomainBaseMinSslVersionEnum() UrlDomainBaseMinSslVersionEnum

type UrlDomainCreate

type UrlDomainCreate struct {
	MinSslVersion *UrlDomainCreateMinSslVersion `json:"min_ssl_version,omitempty"`

	UrlDomain *string `json:"url_domain,omitempty"`
}

func (UrlDomainCreate) String

func (o UrlDomainCreate) String() string

type UrlDomainCreateMinSslVersion

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

func (UrlDomainCreateMinSslVersion) MarshalJSON

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

func (*UrlDomainCreateMinSslVersion) UnmarshalJSON

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

type UrlDomainCreateMinSslVersionEnum

type UrlDomainCreateMinSslVersionEnum struct {
	TL_SV1_1 UrlDomainCreateMinSslVersion
	TL_SV1_2 UrlDomainCreateMinSslVersion
}

func GetUrlDomainCreateMinSslVersionEnum

func GetUrlDomainCreateMinSslVersionEnum() UrlDomainCreateMinSslVersionEnum

type UrlDomainMinSslVersion

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

func (UrlDomainMinSslVersion) MarshalJSON

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

func (*UrlDomainMinSslVersion) UnmarshalJSON

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

type UrlDomainMinSslVersionEnum

type UrlDomainMinSslVersionEnum struct {
	TL_SV1_1 UrlDomainMinSslVersion
	TL_SV1_2 UrlDomainMinSslVersion
}

func GetUrlDomainMinSslVersionEnum

func GetUrlDomainMinSslVersionEnum() UrlDomainMinSslVersionEnum

type UrlDomainModify

type UrlDomainModify struct {
	MinSslVersion UrlDomainModifyMinSslVersion `json:"min_ssl_version"`
}

func (UrlDomainModify) String

func (o UrlDomainModify) String() string

type UrlDomainModifyMinSslVersion

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

func (UrlDomainModifyMinSslVersion) MarshalJSON

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

func (*UrlDomainModifyMinSslVersion) UnmarshalJSON

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

type UrlDomainModifyMinSslVersionEnum

type UrlDomainModifyMinSslVersionEnum struct {
	TL_SV1_1 UrlDomainModifyMinSslVersion
	TL_SV1_2 UrlDomainModifyMinSslVersion
}

func GetUrlDomainModifyMinSslVersionEnum

func GetUrlDomainModifyMinSslVersionEnum() UrlDomainModifyMinSslVersionEnum

type VpcBase

type VpcBase struct {
	Name string `json:"name"`

	Port *int32 `json:"port,omitempty"`

	BalanceStrategy *VpcBaseBalanceStrategy `json:"balance_strategy,omitempty"`

	MemberType *VpcBaseMemberType `json:"member_type,omitempty"`
}

func (VpcBase) String

func (o VpcBase) String() string

type VpcBaseBalanceStrategy

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

func (VpcBaseBalanceStrategy) MarshalJSON

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

func (*VpcBaseBalanceStrategy) UnmarshalJSON

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

type VpcBaseBalanceStrategyEnum

type VpcBaseBalanceStrategyEnum struct {
	E_1 VpcBaseBalanceStrategy
	E_2 VpcBaseBalanceStrategy
	E_3 VpcBaseBalanceStrategy
	E_4 VpcBaseBalanceStrategy
}

func GetVpcBaseBalanceStrategyEnum

func GetVpcBaseBalanceStrategyEnum() VpcBaseBalanceStrategyEnum

type VpcBaseInfo

type VpcBaseInfo struct {
	EcsId *string `json:"ecs_id,omitempty"`

	EcsName *string `json:"ecs_name,omitempty"`

	CascadeFlag *bool `json:"cascade_flag,omitempty"`
}

func (VpcBaseInfo) String

func (o VpcBaseInfo) String() string

type VpcBaseMemberType

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

func (VpcBaseMemberType) MarshalJSON

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

func (*VpcBaseMemberType) UnmarshalJSON

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

type VpcBaseMemberTypeEnum

type VpcBaseMemberTypeEnum struct {
	IP  VpcBaseMemberType
	ECS VpcBaseMemberType
}

func GetVpcBaseMemberTypeEnum

func GetVpcBaseMemberTypeEnum() VpcBaseMemberTypeEnum

type VpcChannelInfo

type VpcChannelInfo struct {
	Name string `json:"name"`

	Port *int32 `json:"port,omitempty"`

	BalanceStrategy *VpcChannelInfoBalanceStrategy `json:"balance_strategy,omitempty"`

	MemberType *VpcChannelInfoMemberType `json:"member_type,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	Id *string `json:"id,omitempty"`

	Status *VpcChannelInfoStatus `json:"status,omitempty"`

	MemberGroups *[]MemberGroupInfo `json:"member_groups,omitempty"`
}

func (VpcChannelInfo) String

func (o VpcChannelInfo) String() string

type VpcChannelInfoBalanceStrategy

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

func (VpcChannelInfoBalanceStrategy) MarshalJSON

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

func (*VpcChannelInfoBalanceStrategy) UnmarshalJSON

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

type VpcChannelInfoMemberType

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

func (VpcChannelInfoMemberType) MarshalJSON

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

func (*VpcChannelInfoMemberType) UnmarshalJSON

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

type VpcChannelInfoMemberTypeEnum

type VpcChannelInfoMemberTypeEnum struct {
	IP  VpcChannelInfoMemberType
	ECS VpcChannelInfoMemberType
}

func GetVpcChannelInfoMemberTypeEnum

func GetVpcChannelInfoMemberTypeEnum() VpcChannelInfoMemberTypeEnum

type VpcChannelInfoStatus

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

func (VpcChannelInfoStatus) MarshalJSON

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

func (*VpcChannelInfoStatus) UnmarshalJSON

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

type VpcChannelInfoStatusEnum

type VpcChannelInfoStatusEnum struct {
	E_1 VpcChannelInfoStatus
	E_2 VpcChannelInfoStatus
}

func GetVpcChannelInfoStatusEnum

func GetVpcChannelInfoStatusEnum() VpcChannelInfoStatusEnum

type VpcCreate

type VpcCreate struct {
	Name string `json:"name"`

	Port *int32 `json:"port,omitempty"`

	BalanceStrategy *VpcCreateBalanceStrategy `json:"balance_strategy,omitempty"`

	MemberType *VpcCreateMemberType `json:"member_type,omitempty"`

	Members *[]MemberInfo `json:"members,omitempty"`

	VpcHealthConfig *VpcHealthConfig `json:"vpc_health_config,omitempty"`
}

func (VpcCreate) String

func (o VpcCreate) String() string

type VpcCreateBalanceStrategy

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

func (VpcCreateBalanceStrategy) MarshalJSON

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

func (*VpcCreateBalanceStrategy) UnmarshalJSON

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

type VpcCreateMemberType

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

func (VpcCreateMemberType) MarshalJSON

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

func (*VpcCreateMemberType) UnmarshalJSON

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

type VpcCreateMemberTypeEnum

type VpcCreateMemberTypeEnum struct {
	IP  VpcCreateMemberType
	ECS VpcCreateMemberType
}

func GetVpcCreateMemberTypeEnum

func GetVpcCreateMemberTypeEnum() VpcCreateMemberTypeEnum

type VpcHealthConfig

type VpcHealthConfig struct {
	Protocol VpcHealthConfigProtocol `json:"protocol"`

	Path *string `json:"path,omitempty"`

	Method *VpcHealthConfigMethod `json:"method,omitempty"`

	Port *int32 `json:"port,omitempty"`

	ThresholdNormal int32 `json:"threshold_normal"`

	ThresholdAbnormal int32 `json:"threshold_abnormal"`

	TimeInterval int32 `json:"time_interval"`

	HttpCode *string `json:"http_code,omitempty"`

	EnableClientSsl *bool `json:"enable_client_ssl,omitempty"`

	Status *VpcHealthConfigStatus `json:"status,omitempty"`

	Timeout *int32 `json:"timeout,omitempty"`
}

func (VpcHealthConfig) String

func (o VpcHealthConfig) String() string

type VpcHealthConfigBase

type VpcHealthConfigBase struct {
	Protocol VpcHealthConfigBaseProtocol `json:"protocol"`

	Path *string `json:"path,omitempty"`

	Method *VpcHealthConfigBaseMethod `json:"method,omitempty"`

	Port *int32 `json:"port,omitempty"`

	ThresholdNormal int32 `json:"threshold_normal"`

	ThresholdAbnormal int32 `json:"threshold_abnormal"`

	TimeInterval int32 `json:"time_interval"`

	HttpCode *string `json:"http_code,omitempty"`

	EnableClientSsl *bool `json:"enable_client_ssl,omitempty"`

	Status *VpcHealthConfigBaseStatus `json:"status,omitempty"`
}

健康检查详情,VPC通道类型为2时必选。

func (VpcHealthConfigBase) String

func (o VpcHealthConfigBase) String() string

type VpcHealthConfigBaseMethod

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

func (VpcHealthConfigBaseMethod) MarshalJSON

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

func (*VpcHealthConfigBaseMethod) UnmarshalJSON

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

type VpcHealthConfigBaseMethodEnum

type VpcHealthConfigBaseMethodEnum struct {
	GET  VpcHealthConfigBaseMethod
	HEAD VpcHealthConfigBaseMethod
}

func GetVpcHealthConfigBaseMethodEnum

func GetVpcHealthConfigBaseMethodEnum() VpcHealthConfigBaseMethodEnum

type VpcHealthConfigBaseProtocol

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

func (VpcHealthConfigBaseProtocol) MarshalJSON

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

func (*VpcHealthConfigBaseProtocol) UnmarshalJSON

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

type VpcHealthConfigBaseProtocolEnum

type VpcHealthConfigBaseProtocolEnum struct {
	TCP   VpcHealthConfigBaseProtocol
	HTTP  VpcHealthConfigBaseProtocol
	HTTPS VpcHealthConfigBaseProtocol
}

func GetVpcHealthConfigBaseProtocolEnum

func GetVpcHealthConfigBaseProtocolEnum() VpcHealthConfigBaseProtocolEnum

type VpcHealthConfigBaseStatus

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

func (VpcHealthConfigBaseStatus) MarshalJSON

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

func (*VpcHealthConfigBaseStatus) UnmarshalJSON

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

type VpcHealthConfigBaseStatusEnum

type VpcHealthConfigBaseStatusEnum struct {
	E_1 VpcHealthConfigBaseStatus
	E_2 VpcHealthConfigBaseStatus
}

func GetVpcHealthConfigBaseStatusEnum

func GetVpcHealthConfigBaseStatusEnum() VpcHealthConfigBaseStatusEnum

type VpcHealthConfigInfo

type VpcHealthConfigInfo struct {
	Protocol VpcHealthConfigInfoProtocol `json:"protocol"`

	Path *string `json:"path,omitempty"`

	Method *VpcHealthConfigInfoMethod `json:"method,omitempty"`

	Port *int32 `json:"port,omitempty"`

	ThresholdNormal int32 `json:"threshold_normal"`

	ThresholdAbnormal int32 `json:"threshold_abnormal"`

	TimeInterval int32 `json:"time_interval"`

	HttpCode *string `json:"http_code,omitempty"`

	EnableClientSsl *bool `json:"enable_client_ssl,omitempty"`

	Status *VpcHealthConfigInfoStatus `json:"status,omitempty"`

	Timeout *int32 `json:"timeout,omitempty"`

	VpcChannelId *string `json:"vpc_channel_id,omitempty"`

	Id *string `json:"id,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`
}

健康检查详情,仅VPC通道类型为2时有效。

func (VpcHealthConfigInfo) String

func (o VpcHealthConfigInfo) String() string

type VpcHealthConfigInfoMethod

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

func (VpcHealthConfigInfoMethod) MarshalJSON

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

func (*VpcHealthConfigInfoMethod) UnmarshalJSON

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

type VpcHealthConfigInfoMethodEnum

type VpcHealthConfigInfoMethodEnum struct {
	GET  VpcHealthConfigInfoMethod
	HEAD VpcHealthConfigInfoMethod
}

func GetVpcHealthConfigInfoMethodEnum

func GetVpcHealthConfigInfoMethodEnum() VpcHealthConfigInfoMethodEnum

type VpcHealthConfigInfoProtocol

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

func (VpcHealthConfigInfoProtocol) MarshalJSON

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

func (*VpcHealthConfigInfoProtocol) UnmarshalJSON

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

type VpcHealthConfigInfoProtocolEnum

type VpcHealthConfigInfoProtocolEnum struct {
	TCP   VpcHealthConfigInfoProtocol
	HTTP  VpcHealthConfigInfoProtocol
	HTTPS VpcHealthConfigInfoProtocol
}

func GetVpcHealthConfigInfoProtocolEnum

func GetVpcHealthConfigInfoProtocolEnum() VpcHealthConfigInfoProtocolEnum

type VpcHealthConfigInfoStatus

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

func (VpcHealthConfigInfoStatus) MarshalJSON

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

func (*VpcHealthConfigInfoStatus) UnmarshalJSON

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

type VpcHealthConfigInfoStatusEnum

type VpcHealthConfigInfoStatusEnum struct {
	E_1 VpcHealthConfigInfoStatus
	E_2 VpcHealthConfigInfoStatus
}

func GetVpcHealthConfigInfoStatusEnum

func GetVpcHealthConfigInfoStatusEnum() VpcHealthConfigInfoStatusEnum

type VpcHealthConfigMethod

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

func (VpcHealthConfigMethod) MarshalJSON

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

func (*VpcHealthConfigMethod) UnmarshalJSON

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

type VpcHealthConfigMethodEnum

type VpcHealthConfigMethodEnum struct {
	GET  VpcHealthConfigMethod
	HEAD VpcHealthConfigMethod
}

func GetVpcHealthConfigMethodEnum

func GetVpcHealthConfigMethodEnum() VpcHealthConfigMethodEnum

type VpcHealthConfigProtocol

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

func (VpcHealthConfigProtocol) MarshalJSON

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

func (*VpcHealthConfigProtocol) UnmarshalJSON

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

type VpcHealthConfigProtocolEnum

type VpcHealthConfigProtocolEnum struct {
	TCP   VpcHealthConfigProtocol
	HTTP  VpcHealthConfigProtocol
	HTTPS VpcHealthConfigProtocol
}

func GetVpcHealthConfigProtocolEnum

func GetVpcHealthConfigProtocolEnum() VpcHealthConfigProtocolEnum

type VpcHealthConfigStatus

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

func (VpcHealthConfigStatus) MarshalJSON

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

func (*VpcHealthConfigStatus) UnmarshalJSON

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

type VpcHealthConfigStatusEnum

type VpcHealthConfigStatusEnum struct {
	E_1 VpcHealthConfigStatus
	E_2 VpcHealthConfigStatus
}

func GetVpcHealthConfigStatusEnum

func GetVpcHealthConfigStatusEnum() VpcHealthConfigStatusEnum

type VpcInfo

type VpcInfo struct {
	EcsId *string `json:"ecs_id,omitempty"`

	EcsName *string `json:"ecs_name,omitempty"`

	CascadeFlag *bool `json:"cascade_flag,omitempty"`

	VpcChannelProxyHost *string `json:"vpc_channel_proxy_host,omitempty"`

	VpcChannelId *string `json:"vpc_channel_id,omitempty"`

	VpcChannelPort *int32 `json:"vpc_channel_port,omitempty"`
}

VPC通道详情。如果vpc_channel_status = 1,则这个object类型为必填信息

func (VpcInfo) String

func (o VpcInfo) String() string

type VpcMemberCreate

type VpcMemberCreate struct {
	Members []MemberInfo `json:"members"`
}

func (VpcMemberCreate) String

func (o VpcMemberCreate) String() string

type VpcMemberInfo

type VpcMemberInfo struct {
	Host *string `json:"host,omitempty"`

	Weight *int32 `json:"weight,omitempty"`

	IsBackup *bool `json:"is_backup,omitempty"`

	MemberGroupName *string `json:"member_group_name,omitempty"`

	Status *VpcMemberInfoStatus `json:"status,omitempty"`

	Port *int32 `json:"port,omitempty"`

	EcsId *string `json:"ecs_id,omitempty"`

	EcsName *string `json:"ecs_name,omitempty"`

	Id *string `json:"id,omitempty"`

	VpcChannelId *string `json:"vpc_channel_id,omitempty"`

	CreateTime *sdktime.SdkTime `json:"create_time,omitempty"`

	MemberGroupId *string `json:"member_group_id,omitempty"`
}

func (VpcMemberInfo) String

func (o VpcMemberInfo) String() string

type VpcMemberInfoStatus

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

func (VpcMemberInfoStatus) MarshalJSON

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

func (*VpcMemberInfoStatus) UnmarshalJSON

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

type VpcMemberInfoStatusEnum

type VpcMemberInfoStatusEnum struct {
	E_1 VpcMemberInfoStatus
	E_2 VpcMemberInfoStatus
}

func GetVpcMemberInfoStatusEnum

func GetVpcMemberInfoStatusEnum() VpcMemberInfoStatusEnum

Source Files

Jump to

Keyboard shortcuts

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