Documentation ¶
Index ¶
- type BasicInfo
- type BatchAddPeersToChannelRequest
- type BatchAddPeersToChannelRequestBody
- type BatchAddPeersToChannelResponse
- type BatchCreateChannelsRequest
- type BatchCreateChannelsRequestBody
- type BatchCreateChannelsResponse
- type BatchInviteMembersToChannelRequest
- type BatchInviteMembersToChannelRequestBody
- type BatchInviteMembersToChannelResponse
- type BatchRemoveOrgsFromChannelRequest
- type BatchRemoveOrgsFromChannelRequestBody
- type BatchRemoveOrgsFromChannelResponse
- type BlockchainInfo
- type CceClusterInfo
- type CceCreateInfo
- type CfgRequestBody
- type Channel
- type ChannelCreateInfo
- type ChannelInfo
- type ChannelInfoV2
- type ComCce
- type CouchDbInfo
- type Couchdb
- type CreateBlockchainCertByUserNameRequest
- type CreateBlockchainCertByUserNameResponse
- type CreateNewBlockchainRequest
- type CreateNewBlockchainResponse
- type CreateRequestBody
- type CreateRequestBodyBlockInfo
- type DeleteBlockchainRequest
- type DeleteBlockchainResponse
- type DeleteMemberInviteRequest
- type DeleteMemberInviteRequestBody
- type DeleteMemberInviteResponse
- type Detail
- type DetailStatus
- type DetailStatusEnum
- type Dimension
- type DmsKafkaInfo
- type DownloadBlockchainCertRequest
- type DownloadBlockchainCertRequestCertType
- type DownloadBlockchainCertRequestCertTypeEnum
- type DownloadBlockchainCertResponse
- type DownloadBlockchainSdkConfigRequest
- type DownloadBlockchainSdkConfigResponse
- type EntityMetricList
- type EntityMetricListItem
- type FreezeCertRequest
- type FreezeCertResponse
- type HandleNotificationInvitee
- type HandleNotificationInvitor
- type HandleNotificationOrg
- type HandleNotificationRequest
- type HandleNotificationRequestBody
- type HandleNotificationRequestBodyStatus
- type HandleNotificationRequestBodyStatusEnum
- type HandleNotificationResponse
- type IefInfo
- type IefNode
- type IefNodeinfo
- type InstanceSpc
- type InvitationDetail
- type InvitationDetailStatus
- type InvitationDetailStatusEnum
- type InvitedDomain
- type InviteeInfo
- type InvitorInfo
- type InvitorInfos
- type KafkaCreateInfo
- type ListBcsMetricRequest
- type ListBcsMetricRequestBody
- type ListBcsMetricResponse
- type ListBlockchainChannelsRequest
- type ListBlockchainChannelsResponse
- type ListBlockchainsRequest
- type ListBlockchainsResponse
- type ListEntityMetricRequest
- type ListEntityMetricRequestBody
- type ListEntityMetricResponse
- type ListInstanceMetricRequest
- type ListInstanceMetricRequestBody
- type ListInstanceMetricResponse
- type ListMembersRequest
- type ListMembersResponse
- type ListNotificationsRequest
- type ListNotificationsResponse
- type ListOpRecordRequest
- type ListOpRecordRequestOperationStatus
- type ListOpRecordRequestOperationStatusEnum
- type ListOpRecordRequestOperationType
- type ListOpRecordRequestOperationTypeEnum
- type ListOpRecordRequestResourceType
- type ListOpRecordRequestResourceTypeEnum
- type ListOpRecordResponse
- type ListQuotasRequest
- type ListQuotasResponse
- type Member
- type MemberInvitee
- type MemberInvitor
- type MetricDataPoints
- type MetricDemision
- type MetricItemResultApi
- type Node
- type NodeInfo
- type NodeOrgs
- type NotificationList
- type ObsInfo
- type OprecordCluster
- type Org
- type OrgPeer
- type OrganizationV2
- type PeerAddress
- type PeerChannelInfo
- type PeerInfo
- type ProcessInfo
- type RecordDetailInfo
- type Resource
- type SfsInfo
- type ShowBlockchainDetailRequest
- type ShowBlockchainDetailResponse
- type ShowBlockchainFlavorsRequest
- type ShowBlockchainFlavorsResponse
- type ShowBlockchainNodesRequest
- type ShowBlockchainNodesResponse
- type ShowBlockchainStatusRequest
- type ShowBlockchainStatusResponse
- type StatisticValue
- type SubDetail
- type TurboInfo
- type UnfreezeCertRequest
- type UnfreezeCertResponse
- type UpdateInstanceRequest
- type UpdateInstanceRequestBody
- type UpdateInstanceResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BasicInfo ¶
type BasicInfo struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` Version *string `json:"version,omitempty"` ServiceType *string `json:"service_type,omitempty"` PurchaseType *string `json:"purchase_type,omitempty"` SignAlgorithm *string `json:"sign_algorithm,omitempty"` Consensus *string `json:"consensus,omitempty"` ChargingMode *int64 `json:"charging_mode,omitempty"` VersionType *int64 `json:"version_type,omitempty"` DatabaseType *string `json:"database_type,omitempty"` ClusterId *string `json:"cluster_id,omitempty"` ClusterName *string `json:"cluster_name,omitempty"` ClusterType *string `json:"cluster_type,omitempty"` ClusterAz *string `json:"cluster_az,omitempty"` CreatedTime *string `json:"created_time,omitempty"` DeployType *string `json:"deploy_type,omitempty"` IsCrossRegion *bool `json:"is_cross_region,omitempty"` IsSupportRollback *bool `json:"is_support_rollback,omitempty"` IsSupportRestful *bool `json:"is_support_restful,omitempty"` IsOldService *bool `json:"is_old_service,omitempty"` OldServiceVersion *string `json:"old_service_version,omitempty"` AgentPortalAddrs *[]string `json:"agent_portal_addrs,omitempty"` Status *string `json:"status,omitempty"` ProcessStatus *string `json:"process_status,omitempty"` OrderStatus *int64 `json:"order_status,omitempty"` }
type BatchAddPeersToChannelRequest ¶
type BatchAddPeersToChannelRequest struct { BlockchainId string `json:"blockchain_id"` Body *BatchAddPeersToChannelRequestBody `json:"body,omitempty"` }
Request Object
func (BatchAddPeersToChannelRequest) String ¶
func (o BatchAddPeersToChannelRequest) String() string
type BatchAddPeersToChannelRequestBody ¶
type BatchAddPeersToChannelRequestBody struct {
ChannelPeers []PeerChannelInfo `json:"channel_peers"`
}
节点加入通道
func (BatchAddPeersToChannelRequestBody) String ¶
func (o BatchAddPeersToChannelRequestBody) String() string
type BatchAddPeersToChannelResponse ¶
type BatchAddPeersToChannelResponse struct { OperationId *string `json:"operation_id,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (BatchAddPeersToChannelResponse) String ¶
func (o BatchAddPeersToChannelResponse) String() string
type BatchCreateChannelsRequest ¶
type BatchCreateChannelsRequest struct { BlockchainId string `json:"blockchain_id"` Body *BatchCreateChannelsRequestBody `json:"body,omitempty"` }
Request Object
func (BatchCreateChannelsRequest) String ¶
func (o BatchCreateChannelsRequest) String() string
type BatchCreateChannelsRequestBody ¶
type BatchCreateChannelsRequestBody struct {
Channels []ChannelCreateInfo `json:"channels"`
}
创建通道的配置
func (BatchCreateChannelsRequestBody) String ¶
func (o BatchCreateChannelsRequestBody) String() string
type BatchCreateChannelsResponse ¶
type BatchCreateChannelsResponse struct {
HttpStatusCode int `json:"-"`
}
Response Object
func (BatchCreateChannelsResponse) String ¶
func (o BatchCreateChannelsResponse) String() string
type BatchInviteMembersToChannelRequest ¶
type BatchInviteMembersToChannelRequest struct {
Body *BatchInviteMembersToChannelRequestBody `json:"body,omitempty"`
}
Request Object
func (BatchInviteMembersToChannelRequest) String ¶
func (o BatchInviteMembersToChannelRequest) String() string
type BatchInviteMembersToChannelRequestBody ¶
type BatchInviteMembersToChannelRequestBody struct { BcsId string `json:"bcs_id"` ChannelName string `json:"channel_name"` InvitorUsername *string `json:"invitor_username,omitempty"` InvitedUserinfo []InvitedDomain `json:"invited_userinfo"` }
邀请联盟成员
func (BatchInviteMembersToChannelRequestBody) String ¶
func (o BatchInviteMembersToChannelRequestBody) String() string
type BatchInviteMembersToChannelResponse ¶
type BatchInviteMembersToChannelResponse struct {
HttpStatusCode int `json:"-"`
}
Response Object
func (BatchInviteMembersToChannelResponse) String ¶
func (o BatchInviteMembersToChannelResponse) String() string
type BatchRemoveOrgsFromChannelRequest ¶ added in v0.0.65
type BatchRemoveOrgsFromChannelRequest struct { BlockchainId string `json:"blockchain_id"` ChannelId string `json:"channel_id"` Body *BatchRemoveOrgsFromChannelRequestBody `json:"body,omitempty"` }
Request Object
func (BatchRemoveOrgsFromChannelRequest) String ¶ added in v0.0.65
func (o BatchRemoveOrgsFromChannelRequest) String() string
type BatchRemoveOrgsFromChannelRequestBody ¶ added in v0.0.65
type BatchRemoveOrgsFromChannelRequestBody struct {
OrgNames []string `json:"org_names"`
}
func (BatchRemoveOrgsFromChannelRequestBody) String ¶ added in v0.0.65
func (o BatchRemoveOrgsFromChannelRequestBody) String() string
type BatchRemoveOrgsFromChannelResponse ¶ added in v0.0.65
type BatchRemoveOrgsFromChannelResponse struct { OperationId *string `json:"operation_id,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (BatchRemoveOrgsFromChannelResponse) String ¶ added in v0.0.65
func (o BatchRemoveOrgsFromChannelResponse) String() string
type BlockchainInfo ¶
type BlockchainInfo struct { Id *string `json:"id,omitempty"` Name *string `json:"name,omitempty"` }
func (BlockchainInfo) String ¶
func (o BlockchainInfo) String() string
type CceClusterInfo ¶ added in v0.0.65
type CceClusterInfo struct { ClusterId string `json:"cluster_id"` ClusterName string `json:"cluster_name"` }
使用已有CCE集群信息,说明:Fabric1.4版本服务仅支持1.15及以下版本集群
func (CceClusterInfo) String ¶ added in v0.0.65
func (o CceClusterInfo) String() string
type CceCreateInfo ¶ added in v0.0.65
type CceCreateInfo struct { NodeNum int64 `json:"node_num"` NodeFlavor string `json:"node_flavor"` CceFlavor string `json:"cce_flavor"` InitNodePwd string `json:"init_node_pwd"` Az string `json:"az"` ClusterPlatformType string `json:"cluster_platform_type"` }
创建新集群信息
func (CceCreateInfo) String ¶ added in v0.0.65
func (o CceCreateInfo) String() string
type CfgRequestBody ¶
type CfgRequestBody struct { ChaincodeName string `json:"chaincode_name"` CertPath string `json:"cert_path"` ChannelName string `json:"channel_name"` PeerOrgs map[string][]string `json:"peer_orgs"` UnionInfo map[string][]string `json:"union_info,omitempty"` IsMultiChan *bool `json:"is_multi_chan,omitempty"` ChannelChaincode map[string][]string `json:"channel_chaincode,omitempty"` }
func (CfgRequestBody) String ¶
func (o CfgRequestBody) String() string
type Channel ¶
type Channel struct { Name *string `json:"name,omitempty"` Description *string `json:"description,omitempty"` CreateTime *string `json:"create_time,omitempty"` Consensus *string `json:"consensus,omitempty"` Peers map[string][]string `json:"peers,omitempty"` ConsensusNodes map[string][]string `json:"consensusNodes,omitempty"` }
type ChannelCreateInfo ¶
type ChannelCreateInfo struct { ChannelName string `json:"channel_name"` ChannelDescription *string `json:"channel_description,omitempty"` }
通道信息
func (ChannelCreateInfo) String ¶
func (o ChannelCreateInfo) String() string
type ChannelInfo ¶
type ChannelInfo struct { Name *string `json:"name,omitempty"` OrgNames *[]string `json:"org_names,omitempty"` OrgNameHash *[]string `json:"org_name_hash,omitempty"` Peers map[string][]string `json:"peers,omitempty"` }
func (ChannelInfo) String ¶
func (o ChannelInfo) String() string
type ChannelInfoV2 ¶
type ChannelInfoV2 struct { Name string `json:"name"` OrgNames []string `json:"org_names"` Description *string `json:"description,omitempty"` }
func (ChannelInfoV2) String ¶
func (o ChannelInfoV2) String() string
type ComCce ¶
type ComCce struct { Cluster *Detail `json:"cluster,omitempty"` Network *Detail `json:"network,omitempty"` SecurityGroup *Detail `json:"security_group,omitempty"` }
CCE组件
type CouchDbInfo ¶
type CouchDbInfo struct {
User *string `json:"user,omitempty"`
}
func (CouchDbInfo) String ¶
func (o CouchDbInfo) String() string
type CreateBlockchainCertByUserNameRequest ¶ added in v0.0.69
type CreateBlockchainCertByUserNameRequest struct { BlockchainId string `json:"blockchain_id"` OrgName string `json:"org_name"` UserName string `json:"user_name"` }
Request Object
func (CreateBlockchainCertByUserNameRequest) String ¶ added in v0.0.69
func (o CreateBlockchainCertByUserNameRequest) String() string
type CreateBlockchainCertByUserNameResponse ¶ added in v0.0.69
type CreateBlockchainCertByUserNameResponse struct {
HttpStatusCode int `json:"-"`
}
Response Object
func (CreateBlockchainCertByUserNameResponse) String ¶ added in v0.0.69
func (o CreateBlockchainCertByUserNameResponse) String() string
type CreateNewBlockchainRequest ¶
type CreateNewBlockchainRequest struct {
Body *CreateRequestBody `json:"body,omitempty"`
}
Request Object
func (CreateNewBlockchainRequest) String ¶
func (o CreateNewBlockchainRequest) String() string
type CreateNewBlockchainResponse ¶
type CreateNewBlockchainResponse struct { BlockchainId *string `json:"blockchain_id,omitempty"` BlockchainName *string `json:"blockchain_name,omitempty"` OperationId *string `json:"operation_id,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (CreateNewBlockchainResponse) String ¶
func (o CreateNewBlockchainResponse) String() string
type CreateRequestBody ¶
type CreateRequestBody struct { Name string `json:"name"` VersionType int64 `json:"version_type"` FabricVersion string `json:"fabric_version"` BlockchainType *string `json:"blockchain_type,omitempty"` Consensus *string `json:"consensus,omitempty"` SignAlgorithm *string `json:"sign_algorithm,omitempty"` EnterpriseProjectId string `json:"enterprise_project_id"` VolumeType *string `json:"volume_type,omitempty"` EvsDiskType *string `json:"evs_disk_type,omitempty"` OrgDiskSize *int64 `json:"org_disk_size,omitempty"` DatabaseType *string `json:"database_type,omitempty"` ResourcePassword string `json:"resource_password"` OrdererNodeNumber *int64 `json:"orderer_node_number,omitempty"` UseEip *bool `json:"use_eip,omitempty"` BandwidthSize *int64 `json:"bandwidth_size,omitempty"` ClusterType string `json:"cluster_type"` CreateNewCluster bool `json:"create_new_cluster"` CceClusterInfo *CceClusterInfo `json:"cce_cluster_info,omitempty"` CceCreateInfo *CceCreateInfo `json:"cce_create_info,omitempty"` IefDeployMode *int64 `json:"ief_deploy_mode,omitempty"` IefNodesInfo *[]IefNode `json:"ief_nodes_info,omitempty"` PeerOrgs *[]OrgPeer `json:"peer_orgs,omitempty"` Channels *[]ChannelInfoV2 `json:"channels,omitempty"` CouchdbInfo *Couchdb `json:"couchdb_info,omitempty"` TurboInfo *TurboInfo `json:"turbo_info,omitempty"` BlockInfo *CreateRequestBodyBlockInfo `json:"block_info,omitempty"` KafkaCreateInfo *KafkaCreateInfo `json:"kafka_create_info,omitempty"` Tc3Need *bool `json:"tc3_need,omitempty"` RestfulApiSupport *bool `json:"restful_api_support,omitempty"` IsInvitee *bool `json:"is_invitee,omitempty"` InvitorInfos *InvitorInfos `json:"invitor_infos,omitempty"` }
func (CreateRequestBody) String ¶
func (o CreateRequestBody) String() string
type CreateRequestBodyBlockInfo ¶
type CreateRequestBodyBlockInfo struct { BatchTimeout *int64 `json:"batch_timeout,omitempty"` MaxMessageCount *int64 `json:"max_message_count,omitempty"` PreferredMaxbytes *int64 `json:"preferred_maxbytes,omitempty"` }
区块生成配置信息
func (CreateRequestBodyBlockInfo) String ¶
func (o CreateRequestBodyBlockInfo) String() string
type DeleteBlockchainRequest ¶
type DeleteBlockchainRequest struct { BlockchainId string `json:"blockchain_id"` IsDeleteStorage *bool `json:"is_delete_storage,omitempty"` IsDeleteObs *bool `json:"is_delete_obs,omitempty"` IsDeleteResource *bool `json:"is_delete_resource,omitempty"` }
Request Object
func (DeleteBlockchainRequest) String ¶
func (o DeleteBlockchainRequest) String() string
type DeleteBlockchainResponse ¶
type DeleteBlockchainResponse struct { OperationId *string `json:"operation_id,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (DeleteBlockchainResponse) String ¶
func (o DeleteBlockchainResponse) String() string
type DeleteMemberInviteRequest ¶ added in v0.0.69
type DeleteMemberInviteRequest struct {
Body *DeleteMemberInviteRequestBody `json:"body,omitempty"`
}
Request Object
func (DeleteMemberInviteRequest) String ¶ added in v0.0.69
func (o DeleteMemberInviteRequest) String() string
type DeleteMemberInviteRequestBody ¶ added in v0.0.69
type DeleteMemberInviteRequestBody struct { BcsId string `json:"bcs_id"` ChannelName string `json:"channel_name"` InvitedUserinfo []InvitationDetail `json:"invited_userinfo"` }
func (DeleteMemberInviteRequestBody) String ¶ added in v0.0.69
func (o DeleteMemberInviteRequestBody) String() string
type DeleteMemberInviteResponse ¶ added in v0.0.69
type DeleteMemberInviteResponse struct {
HttpStatusCode int `json:"-"`
}
Response Object
func (DeleteMemberInviteResponse) String ¶ added in v0.0.69
func (o DeleteMemberInviteResponse) String() string
type Detail ¶
type Detail struct { StartTime *string `json:"start_time,omitempty"` EndTime *string `json:"end_time,omitempty"` Status *DetailStatus `json:"status,omitempty"` Detail *string `json:"detail,omitempty"` }
组件创建信息
type DetailStatus ¶
type DetailStatus struct {
// contains filtered or unexported fields
}
func (DetailStatus) MarshalJSON ¶
func (c DetailStatus) MarshalJSON() ([]byte, error)
func (*DetailStatus) UnmarshalJSON ¶
func (c *DetailStatus) UnmarshalJSON(b []byte) error
type DetailStatusEnum ¶
type DetailStatusEnum struct { WAITING DetailStatus DEPLOYING DetailStatus FINISHED DetailStatus FAILED DetailStatus }
func GetDetailStatusEnum ¶
func GetDetailStatusEnum() DetailStatusEnum
type Dimension ¶
type Dimension struct { Name *string `json:"name,omitempty"` Value *string `json:"value,omitempty"` }
指标维度。
type DmsKafkaInfo ¶
type DmsKafkaInfo struct { Addr *[]string `json:"addr,omitempty"` OrderFadeEnable *bool `json:"order_fade_enable,omitempty"` OrderFadeCache *int64 `json:"order_fade_cache,omitempty"` }
func (DmsKafkaInfo) String ¶
func (o DmsKafkaInfo) String() string
type DownloadBlockchainCertRequest ¶
type DownloadBlockchainCertRequest struct { BlockchainId string `json:"blockchain_id"` OrgName string `json:"org_name"` CertType DownloadBlockchainCertRequestCertType `json:"cert_type"` }
Request Object
func (DownloadBlockchainCertRequest) String ¶
func (o DownloadBlockchainCertRequest) String() string
type DownloadBlockchainCertRequestCertType ¶
type DownloadBlockchainCertRequestCertType struct {
// contains filtered or unexported fields
}
func (DownloadBlockchainCertRequestCertType) MarshalJSON ¶
func (c DownloadBlockchainCertRequestCertType) MarshalJSON() ([]byte, error)
func (*DownloadBlockchainCertRequestCertType) UnmarshalJSON ¶
func (c *DownloadBlockchainCertRequestCertType) UnmarshalJSON(b []byte) error
type DownloadBlockchainCertRequestCertTypeEnum ¶
type DownloadBlockchainCertRequestCertTypeEnum struct { ADMIN DownloadBlockchainCertRequestCertType USER DownloadBlockchainCertRequestCertType CA DownloadBlockchainCertRequestCertType }
func GetDownloadBlockchainCertRequestCertTypeEnum ¶
func GetDownloadBlockchainCertRequestCertTypeEnum() DownloadBlockchainCertRequestCertTypeEnum
type DownloadBlockchainCertResponse ¶
type DownloadBlockchainCertResponse struct {
HttpStatusCode int `json:"-"`
}
Response Object
func (DownloadBlockchainCertResponse) String ¶
func (o DownloadBlockchainCertResponse) String() string
type DownloadBlockchainSdkConfigRequest ¶
type DownloadBlockchainSdkConfigRequest struct { BlockchainId string `json:"blockchain_id"` Body *CfgRequestBody `json:"body,omitempty"` }
Request Object
func (DownloadBlockchainSdkConfigRequest) String ¶
func (o DownloadBlockchainSdkConfigRequest) String() string
type DownloadBlockchainSdkConfigResponse ¶
type DownloadBlockchainSdkConfigResponse struct {
HttpStatusCode int `json:"-"`
}
Response Object
func (DownloadBlockchainSdkConfigResponse) String ¶
func (o DownloadBlockchainSdkConfigResponse) String() string
type EntityMetricList ¶
type EntityMetricList struct { Dimensions *[]Dimension `json:"dimensions,omitempty"` Values *[]EntityMetricListItem `json:"values,omitempty"` }
BCS组织维度监控数据列表结构
func (EntityMetricList) String ¶
func (o EntityMetricList) String() string
type EntityMetricListItem ¶ added in v0.0.70
type EntityMetricListItem struct { CpuUsage *string `json:"cpuUsage,omitempty"` DiskReadRate *string `json:"diskReadRate,omitempty"` DiskWriteRate *string `json:"diskWriteRate,omitempty"` MemUsage *string `json:"memUsage,omitempty"` RecvBytesRate *string `json:"recvBytesRate,omitempty"` SendBytesRate *string `json:"sendBytesRate,omitempty"` }
监控数据列表项目
func (EntityMetricListItem) String ¶ added in v0.0.70
func (o EntityMetricListItem) String() string
type FreezeCertRequest ¶ added in v0.0.69
type FreezeCertRequest struct { UserName string `json:"user_name"` BlockchainId string `json:"blockchain_id"` OrgName string `json:"org_name"` }
Request Object
func (FreezeCertRequest) String ¶ added in v0.0.69
func (o FreezeCertRequest) String() string
type FreezeCertResponse ¶ added in v0.0.69
type FreezeCertResponse struct { Result *string `json:"result,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (FreezeCertResponse) String ¶ added in v0.0.69
func (o FreezeCertResponse) String() string
type HandleNotificationInvitee ¶
type HandleNotificationInvitee struct { InviteeBcsId string `json:"invitee_bcs_id"` InviteeBcsName string `json:"invitee_bcs_name"` InviteeProjectId string `json:"invitee_project_id"` InviteeUserId string `json:"invitee_user_id"` }
func (HandleNotificationInvitee) String ¶
func (o HandleNotificationInvitee) String() string
type HandleNotificationInvitor ¶
type HandleNotificationInvitor struct { InvitorBcsId string `json:"invitor_bcs_id"` InvitorBcsName string `json:"invitor_bcs_name"` InvitorProjectId string `json:"invitor_project_id"` InvitorUserId string `json:"invitor_user_id"` }
func (HandleNotificationInvitor) String ¶
func (o HandleNotificationInvitor) String() string
type HandleNotificationOrg ¶
type HandleNotificationOrg struct {
Name string `json:"name"`
}
func (HandleNotificationOrg) String ¶
func (o HandleNotificationOrg) String() string
type HandleNotificationRequest ¶
type HandleNotificationRequest struct {
Body *HandleNotificationRequestBody `json:"body,omitempty"`
}
Request Object
func (HandleNotificationRequest) String ¶
func (o HandleNotificationRequest) String() string
type HandleNotificationRequestBody ¶
type HandleNotificationRequestBody struct { ChannelName string `json:"channel_name"` Status HandleNotificationRequestBodyStatus `json:"status"` InvitorInfo *HandleNotificationInvitor `json:"invitor_info"` InviteeInfo *HandleNotificationInvitee `json:"invitee_info,omitempty"` InvitedOrgs *[]HandleNotificationOrg `json:"invited_orgs,omitempty"` }
处理联盟邀请body数据
func (HandleNotificationRequestBody) String ¶
func (o HandleNotificationRequestBody) String() string
type HandleNotificationRequestBodyStatus ¶
type HandleNotificationRequestBodyStatus struct {
// contains filtered or unexported fields
}
func (HandleNotificationRequestBodyStatus) MarshalJSON ¶
func (c HandleNotificationRequestBodyStatus) MarshalJSON() ([]byte, error)
func (*HandleNotificationRequestBodyStatus) UnmarshalJSON ¶
func (c *HandleNotificationRequestBodyStatus) UnmarshalJSON(b []byte) error
type HandleNotificationRequestBodyStatusEnum ¶
type HandleNotificationRequestBodyStatusEnum struct { AGREED HandleNotificationRequestBodyStatus REJECT HandleNotificationRequestBodyStatus }
func GetHandleNotificationRequestBodyStatusEnum ¶
func GetHandleNotificationRequestBodyStatusEnum() HandleNotificationRequestBodyStatusEnum
type HandleNotificationResponse ¶
type HandleNotificationResponse struct {
HttpStatusCode int `json:"-"`
}
Response Object
func (HandleNotificationResponse) String ¶
func (o HandleNotificationResponse) String() string
type IefNode ¶
type IefNodeinfo ¶ added in v0.0.69
type IefNodeinfo struct { Status string `json:"status"` PublicIpAddress string `json:"public_ip_address"` Id string `json:"id"` }
func (IefNodeinfo) String ¶ added in v0.0.69
func (o IefNodeinfo) String() string
type InstanceSpc ¶ added in v0.0.67
type InstanceSpc struct { OrgPeerMaxNum *int64 `json:"org_peer_max_num,omitempty"` OrdererMaxNum *int64 `json:"orderer_max_num,omitempty"` MemberMaxNum *int32 `json:"member_max_num,omitempty"` }
func (InstanceSpc) String ¶ added in v0.0.67
func (o InstanceSpc) String() string
type InvitationDetail ¶ added in v0.0.69
type InvitationDetail struct { InvitedUser string `json:"invited_user"` Status *InvitationDetailStatus `json:"status,omitempty"` InvitedBcsId *string `json:"invited_bcs_id,omitempty"` }
被邀请列表
func (InvitationDetail) String ¶ added in v0.0.69
func (o InvitationDetail) String() string
type InvitationDetailStatus ¶ added in v0.0.69
type InvitationDetailStatus struct {
// contains filtered or unexported fields
}
func (InvitationDetailStatus) MarshalJSON ¶ added in v0.0.69
func (c InvitationDetailStatus) MarshalJSON() ([]byte, error)
func (*InvitationDetailStatus) UnmarshalJSON ¶ added in v0.0.69
func (c *InvitationDetailStatus) UnmarshalJSON(b []byte) error
type InvitationDetailStatusEnum ¶ added in v0.0.69
type InvitationDetailStatusEnum struct { QUIT InvitationDetailStatus WAITING InvitationDetailStatus REJECT InvitationDetailStatus RELEASED InvitationDetailStatus }
func GetInvitationDetailStatusEnum ¶ added in v0.0.69
func GetInvitationDetailStatusEnum() InvitationDetailStatusEnum
type InvitedDomain ¶
type InvitedDomain struct {
InvitedUser string `json:"invited_user"`
}
被邀请列表
func (InvitedDomain) String ¶
func (o InvitedDomain) String() string
type InviteeInfo ¶
type InviteeInfo struct { InviteeId *string `json:"invitee_id,omitempty"` InviteeName *int64 `json:"invitee_name,omitempty"` InviteeBcsName *string `json:"invitee_bcs_name,omitempty"` InviteeBcsId *string `json:"invitee_bcs_id,omitempty"` InviteeProjectId *string `json:"invitee_project_id,omitempty"` }
被邀请方的信息
func (InviteeInfo) String ¶
func (o InviteeInfo) String() string
type InvitorInfo ¶
type InvitorInfo struct { InvitorId *string `json:"invitor_id,omitempty"` InvitorName *string `json:"invitor_name,omitempty"` InvitorBcsId *string `json:"invitor_bcs_id,omitempty"` InvitorBcsName *string `json:"invitor_bcs_name,omitempty"` InvitorConsensus *string `json:"invitor_consensus,omitempty"` InvitorProjectId *string `json:"invitor_project_id,omitempty"` InvitorClusterType *string `json:"invitor_cluster_type,omitempty"` InvitorDatabaseType *string `json:"invitor_database_type,omitempty"` InvitorSignatureAlgorithm *string `json:"invitor_signature_algorithm,omitempty"` InvitorFabricVersion *string `json:"invitor_fabric_version,omitempty"` OrderFadeEnabled *bool `json:"order_fade_enabled,omitempty"` OrderFadeCache *int64 `json:"order_fade_cache,omitempty"` }
邀请者的信息
func (InvitorInfo) String ¶
func (o InvitorInfo) String() string
type InvitorInfos ¶ added in v0.0.65
type InvitorInfos struct { TenantId string `json:"tenant_id"` ProjectId string `json:"project_id"` BlockchainId string `json:"blockchain_id"` }
邀请方信息
func (InvitorInfos) String ¶ added in v0.0.65
func (o InvitorInfos) String() string
type KafkaCreateInfo ¶ added in v0.0.65
type KafkaCreateInfo struct { Spec string `json:"spec"` Storage int64 `json:"storage"` Az string `json:"az"` }
kafka实例创建信息
func (KafkaCreateInfo) String ¶ added in v0.0.65
func (o KafkaCreateInfo) String() string
type ListBcsMetricRequest ¶
type ListBcsMetricRequest struct { BlockchainId string `json:"blockchain_id"` Body *ListBcsMetricRequestBody `json:"body,omitempty"` }
Request Object
func (ListBcsMetricRequest) String ¶
func (o ListBcsMetricRequest) String() string
type ListBcsMetricRequestBody ¶
type ListBcsMetricRequestBody struct {
MetricNames *[]string `json:"metric_names,omitempty"`
}
BCS服务监控数据查询请求结构
func (ListBcsMetricRequestBody) String ¶
func (o ListBcsMetricRequestBody) String() string
type ListBcsMetricResponse ¶
type ListBcsMetricResponse struct { Metrics *[]MetricItemResultApi `json:"metrics,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (ListBcsMetricResponse) String ¶
func (o ListBcsMetricResponse) String() string
type ListBlockchainChannelsRequest ¶
type ListBlockchainChannelsRequest struct {
BlockchainId string `json:"blockchain_id"`
}
Request Object
func (ListBlockchainChannelsRequest) String ¶
func (o ListBlockchainChannelsRequest) String() string
type ListBlockchainChannelsResponse ¶
type ListBlockchainChannelsResponse struct { Channels *[]Channel `json:"channels,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (ListBlockchainChannelsResponse) String ¶
func (o ListBlockchainChannelsResponse) String() string
type ListBlockchainsRequest ¶
type ListBlockchainsRequest struct { }
Request Object
func (ListBlockchainsRequest) String ¶
func (o ListBlockchainsRequest) String() string
type ListBlockchainsResponse ¶
type ListBlockchainsResponse struct { Blockchains *[]BlockchainInfo `json:"blockchains,omitempty"` Count *int64 `json:"count,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (ListBlockchainsResponse) String ¶
func (o ListBlockchainsResponse) String() string
type ListEntityMetricRequest ¶
type ListEntityMetricRequest struct { BlockchainId string `json:"blockchain_id"` Body *ListEntityMetricRequestBody `json:"body,omitempty"` }
Request Object
func (ListEntityMetricRequest) String ¶
func (o ListEntityMetricRequest) String() string
type ListEntityMetricRequestBody ¶
type ListEntityMetricRequestBody struct { Type string `json:"type"` EntityName *string `json:"entity_name,omitempty"` }
BCS组织监控数据列表查询请求结构
func (ListEntityMetricRequestBody) String ¶
func (o ListEntityMetricRequestBody) String() string
type ListEntityMetricResponse ¶
type ListEntityMetricResponse struct { Metrics *[]EntityMetricList `json:"metrics,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (ListEntityMetricResponse) String ¶
func (o ListEntityMetricResponse) String() string
type ListInstanceMetricRequest ¶
type ListInstanceMetricRequest struct { BlockchainId string `json:"blockchain_id"` Body *ListInstanceMetricRequestBody `json:"body,omitempty"` }
Request Object
func (ListInstanceMetricRequest) String ¶
func (o ListInstanceMetricRequest) String() string
type ListInstanceMetricRequestBody ¶
type ListInstanceMetricRequestBody struct { Type string `json:"type"` EntityName string `json:"entity_name"` InstanceName string `json:"instance_name"` }
BCS组织实例监控数据详情查询请求结构
func (ListInstanceMetricRequestBody) String ¶
func (o ListInstanceMetricRequestBody) String() string
type ListInstanceMetricResponse ¶
type ListInstanceMetricResponse struct { Metrics *[]MetricItemResultApi `json:"metrics,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (ListInstanceMetricResponse) String ¶
func (o ListInstanceMetricResponse) String() string
type ListMembersRequest ¶
type ListMembersRequest struct { }
Request Object
func (ListMembersRequest) String ¶
func (o ListMembersRequest) String() string
type ListMembersResponse ¶
type ListMembersResponse struct { Members *[]Member `json:"members,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (ListMembersResponse) String ¶
func (o ListMembersResponse) String() string
type ListNotificationsRequest ¶
type ListNotificationsRequest struct { }
Request Object
func (ListNotificationsRequest) String ¶
func (o ListNotificationsRequest) String() string
type ListNotificationsResponse ¶
type ListNotificationsResponse struct { Notifications *[]NotificationList `json:"notifications,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (ListNotificationsResponse) String ¶
func (o ListNotificationsResponse) String() string
type ListOpRecordRequest ¶
type ListOpRecordRequest struct { BlockchainId *string `json:"blockchain_id,omitempty"` OperationStatus *ListOpRecordRequestOperationStatus `json:"operation_status,omitempty"` ResourceType *ListOpRecordRequestResourceType `json:"resource_type,omitempty"` OperationType *ListOpRecordRequestOperationType `json:"operation_type,omitempty"` OperationId *string `json:"operation_id,omitempty"` }
Request Object
func (ListOpRecordRequest) String ¶
func (o ListOpRecordRequest) String() string
type ListOpRecordRequestOperationStatus ¶
type ListOpRecordRequestOperationStatus struct {
// contains filtered or unexported fields
}
func (ListOpRecordRequestOperationStatus) MarshalJSON ¶
func (c ListOpRecordRequestOperationStatus) MarshalJSON() ([]byte, error)
func (*ListOpRecordRequestOperationStatus) UnmarshalJSON ¶
func (c *ListOpRecordRequestOperationStatus) UnmarshalJSON(b []byte) error
type ListOpRecordRequestOperationStatusEnum ¶
type ListOpRecordRequestOperationStatusEnum struct { WAITING ListOpRecordRequestOperationStatus PROCESSING ListOpRecordRequestOperationStatus FINISHED ListOpRecordRequestOperationStatus FAILED ListOpRecordRequestOperationStatus STOP ListOpRecordRequestOperationStatus }
func GetListOpRecordRequestOperationStatusEnum ¶
func GetListOpRecordRequestOperationStatusEnum() ListOpRecordRequestOperationStatusEnum
type ListOpRecordRequestOperationType ¶
type ListOpRecordRequestOperationType struct {
// contains filtered or unexported fields
}
func (ListOpRecordRequestOperationType) MarshalJSON ¶
func (c ListOpRecordRequestOperationType) MarshalJSON() ([]byte, error)
func (*ListOpRecordRequestOperationType) UnmarshalJSON ¶
func (c *ListOpRecordRequestOperationType) UnmarshalJSON(b []byte) error
type ListOpRecordRequestOperationTypeEnum ¶
type ListOpRecordRequestOperationTypeEnum struct { E_99 ListOpRecordRequestOperationType E_00 ListOpRecordRequestOperationType E_01 ListOpRecordRequestOperationType E_91 ListOpRecordRequestOperationType E_02 ListOpRecordRequestOperationType E_03 ListOpRecordRequestOperationType E_04 ListOpRecordRequestOperationType E_05 ListOpRecordRequestOperationType }
func GetListOpRecordRequestOperationTypeEnum ¶
func GetListOpRecordRequestOperationTypeEnum() ListOpRecordRequestOperationTypeEnum
type ListOpRecordRequestResourceType ¶
type ListOpRecordRequestResourceType struct {
// contains filtered or unexported fields
}
func (ListOpRecordRequestResourceType) MarshalJSON ¶
func (c ListOpRecordRequestResourceType) MarshalJSON() ([]byte, error)
func (*ListOpRecordRequestResourceType) UnmarshalJSON ¶
func (c *ListOpRecordRequestResourceType) UnmarshalJSON(b []byte) error
type ListOpRecordRequestResourceTypeEnum ¶
type ListOpRecordRequestResourceTypeEnum struct { BCSSVC01 ListOpRecordRequestResourceType BCSSVC02 ListOpRecordRequestResourceType PLUGIN01 ListOpRecordRequestResourceType PLUGIN02 ListOpRecordRequestResourceType PLUGIN03 ListOpRecordRequestResourceType }
func GetListOpRecordRequestResourceTypeEnum ¶
func GetListOpRecordRequestResourceTypeEnum() ListOpRecordRequestResourceTypeEnum
type ListOpRecordResponse ¶
type ListOpRecordResponse struct { Count *int64 `json:"count,omitempty"` OperationRecords *[]RecordDetailInfo `json:"operation_records,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (ListOpRecordResponse) String ¶
func (o ListOpRecordResponse) String() string
type ListQuotasRequest ¶
type ListQuotasRequest struct { }
Request Object
func (ListQuotasRequest) String ¶
func (o ListQuotasRequest) String() string
type ListQuotasResponse ¶
type ListQuotasResponse struct { Resources *[]Resource `json:"resources,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (ListQuotasResponse) String ¶
func (o ListQuotasResponse) String() string
type Member ¶
type Member struct { TcsNeed *bool `json:"tcs_need,omitempty"` ChannelName *string `json:"channel_name,omitempty"` InvitedOrgs *[]OrganizationV2 `json:"invited_orgs,omitempty"` InvitorInfo *MemberInvitor `json:"invitor_info,omitempty"` InviteeInfo *MemberInvitee `json:"invitee_info,omitempty"` }
联盟成员
type MemberInvitee ¶
type MemberInvitee struct { InviteeBcsId *string `json:"invitee_bcs_id,omitempty"` InviteeUserId *string `json:"invitee_user_id,omitempty"` InviteeUsername *string `json:"invitee_username,omitempty"` }
联盟成员中的被邀请方
func (MemberInvitee) String ¶
func (o MemberInvitee) String() string
type MemberInvitor ¶
type MemberInvitor struct { InvitorBcsId *string `json:"invitor_bcs_id,omitempty"` InvitorBcsName *string `json:"invitor_bcs_name,omitempty"` InvitorProjectId *string `json:"invitor_project_id,omitempty"` InvitorUserId *string `json:"invitor_user_id,omitempty"` InvitorUsername *string `json:"invitor_username,omitempty"` }
联盟成员中的邀请方
func (MemberInvitor) String ¶
func (o MemberInvitor) String() string
type MetricDataPoints ¶
type MetricDataPoints struct { Timestamp *int64 `json:"timestamp,omitempty"` Unit *string `json:"unit,omitempty"` Statistics *[]StatisticValue `json:"statistics,omitempty"` }
查询结果要点
func (MetricDataPoints) String ¶
func (o MetricDataPoints) String() string
type MetricDemision ¶
type MetricDemision struct { Namespace *string `json:"namespace,omitempty"` MetricName *string `json:"metricName,omitempty"` Dimensions *[]Dimension `json:"dimensions,omitempty"` }
指标描述信息
func (MetricDemision) String ¶
func (o MetricDemision) String() string
type MetricItemResultApi ¶
type MetricItemResultApi struct { Metric *MetricDemision `json:"metric,omitempty"` DataPoints *[]MetricDataPoints `json:"dataPoints,omitempty"` }
监控数据信息
func (MetricItemResultApi) String ¶
func (o MetricItemResultApi) String() string
type Node ¶
type NodeOrgs ¶ added in v0.0.65
type NodeOrgs struct { Name string `json:"name"` NodeCount int64 `json:"node_count"` PvcName *string `json:"pvc_name,omitempty"` }
节点组织
type NotificationList ¶
type NotificationList struct { ChannelName *string `json:"channel_name,omitempty"` Status *string `json:"status,omitempty"` UpdatedTime *string `json:"updated_time,omitempty"` Tc3Need *bool `json:"tc3_need,omitempty"` InvitorInfo *InvitorInfo `json:"invitor_info,omitempty"` InviteeInfo *InviteeInfo `json:"invitee_info,omitempty"` Hide *int64 `json:"hide,omitempty"` InviteeOrgs *[]OrganizationV2 `json:"invitee_orgs,omitempty"` ReadStatus *int64 `json:"read_status,omitempty"` CrossVersionUpgrade *string `json:"cross_version_upgrade,omitempty"` }
func (NotificationList) String ¶
func (o NotificationList) String() string
type OprecordCluster ¶
type OprecordCluster struct { ClusterType *string `json:"cluster_type,omitempty"` Name *string `json:"name,omitempty"` ClusterId *string `json:"cluster_id,omitempty"` NodeInfos *[]NodeInfo `json:"node_infos,omitempty"` }
集群信息
func (OprecordCluster) String ¶
func (o OprecordCluster) String() string
type Org ¶
type OrganizationV2 ¶
type OrganizationV2 struct { Name *string `json:"name,omitempty"` NameHash *string `json:"name_hash,omitempty"` NodeCount *string `json:"node_count,omitempty"` Status *string `json:"status,omitempty"` StatusDetail *string `json:"status_detail,omitempty"` }
组织信息
func (OrganizationV2) String ¶
func (o OrganizationV2) String() string
type PeerAddress ¶
type PeerAddress struct { DomainPort *string `json:"domain_port,omitempty"` IpPort *string `json:"ip_port,omitempty"` }
func (PeerAddress) String ¶
func (o PeerAddress) String() string
type PeerChannelInfo ¶ added in v0.0.65
type PeerChannelInfo struct { ChannelName string `json:"channel_name"` Peers map[string]int64 `json:"peers"` }
func (PeerChannelInfo) String ¶ added in v0.0.65
func (o PeerChannelInfo) String() string
type PeerInfo ¶
type ProcessInfo ¶
type ProcessInfo struct { StepName *string `json:"step_name,omitempty"` Status *string `json:"status,omitempty"` Detail *string `json:"detail,omitempty"` SubSteps map[string]SubDetail `json:"sub_steps,omitempty"` SerialNum *int64 `json:"serial_num,omitempty"` }
操作进度信息
func (ProcessInfo) String ¶
func (o ProcessInfo) String() string
type RecordDetailInfo ¶
type RecordDetailInfo struct { OperationId *string `json:"operation_id,omitempty"` ResourceType *string `json:"resource_type,omitempty"` OperationType *string `json:"operation_type,omitempty"` DomainId *string `json:"domain_id,omitempty"` ProjectId *string `json:"project_id,omitempty"` BlockchainId *string `json:"blockchain_id,omitempty"` BlockchainName *string `json:"blockchain_name,omitempty"` ClusterInfo *OprecordCluster `json:"cluster_info,omitempty"` OperationProcess map[string]ProcessInfo `json:"operation_process,omitempty"` RecordTime *int64 `json:"record_time,omitempty"` OperationStatus *string `json:"operation_status,omitempty"` Message *[]string `json:"message,omitempty"` Desc *string `json:"desc,omitempty"` }
操作记录详细信息
func (RecordDetailInfo) String ¶
func (o RecordDetailInfo) String() string
type Resource ¶
type SfsInfo ¶
type ShowBlockchainDetailRequest ¶
type ShowBlockchainDetailRequest struct {
BlockchainId string `json:"blockchain_id"`
}
Request Object
func (ShowBlockchainDetailRequest) String ¶
func (o ShowBlockchainDetailRequest) String() string
type ShowBlockchainDetailResponse ¶
type ShowBlockchainDetailResponse struct { BasicInfo *BasicInfo `json:"basic_info,omitempty"` Channels *[]ChannelInfo `json:"channels,omitempty"` PeerInfo *[]PeerInfo `json:"peer_info,omitempty"` LightPeerInfo *[]PeerInfo `json:"light_peer_info,omitempty"` OrdererInfo *PeerInfo `json:"orderer_info,omitempty"` CouchDbInfo *CouchDbInfo `json:"couch_db_info,omitempty"` DmsKafkaInfo *DmsKafkaInfo `json:"dms_kafka_info,omitempty"` IefInfo *IefInfo `json:"ief_info,omitempty"` SfsInfo *SfsInfo `json:"sfs_info,omitempty"` AgentInfo *PeerInfo `json:"agent_info,omitempty"` RestapiInfo *PeerInfo `json:"restapi_info,omitempty"` EvsPvcInfo map[string]map[string]string `json:"evs_pvc_info,omitempty"` Tc3TaskserverInfo *PeerInfo `json:"tc3_taskserver_info,omitempty"` ObsBucketInfo *ObsInfo `json:"obs_bucket_info,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (ShowBlockchainDetailResponse) String ¶
func (o ShowBlockchainDetailResponse) String() string
type ShowBlockchainFlavorsRequest ¶ added in v0.0.67
type ShowBlockchainFlavorsRequest struct { }
Request Object
func (ShowBlockchainFlavorsRequest) String ¶ added in v0.0.67
func (o ShowBlockchainFlavorsRequest) String() string
type ShowBlockchainFlavorsResponse ¶ added in v0.0.67
type ShowBlockchainFlavorsResponse struct { EnterpriseSpec *InstanceSpc `json:"enterprise_spec,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (ShowBlockchainFlavorsResponse) String ¶ added in v0.0.67
func (o ShowBlockchainFlavorsResponse) String() string
type ShowBlockchainNodesRequest ¶
type ShowBlockchainNodesRequest struct {
BlockchainId string `json:"blockchain_id"`
}
Request Object
func (ShowBlockchainNodesRequest) String ¶
func (o ShowBlockchainNodesRequest) String() string
type ShowBlockchainNodesResponse ¶
type ShowBlockchainNodesResponse struct { NodeOrgs map[string]Org `json:"node_orgs,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (ShowBlockchainNodesResponse) String ¶
func (o ShowBlockchainNodesResponse) String() string
type ShowBlockchainStatusRequest ¶
type ShowBlockchainStatusRequest struct {
BlockchainId string `json:"blockchain_id"`
}
Request Object
func (ShowBlockchainStatusRequest) String ¶
func (o ShowBlockchainStatusRequest) String() string
type ShowBlockchainStatusResponse ¶
type ShowBlockchainStatusResponse struct { Bcs *Detail `json:"bcs,omitempty"` Eip *Detail `json:"eip,omitempty"` Sfs *Detail `json:"sfs,omitempty"` Obs *Detail `json:"obs,omitempty"` Kafka *Detail `json:"kafka,omitempty"` Cce *ComCce `json:"cce,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (ShowBlockchainStatusResponse) String ¶
func (o ShowBlockchainStatusResponse) String() string
type StatisticValue ¶
type StatisticValue struct { Statistic *string `json:"statistic,omitempty"` Value *float64 `json:"value,omitempty"` }
统计结果
func (StatisticValue) String ¶
func (o StatisticValue) String() string
type SubDetail ¶
type SubDetail struct { SubstepName *string `json:"substep_name,omitempty"` Detail *string `json:"detail,omitempty"` Status *string `json:"status,omitempty"` Message *[]string `json:"message,omitempty"` StartTime *int64 `json:"start_time,omitempty"` EndTime *int64 `json:"end_time,omitempty"` SerialNum *int64 `json:"serial_num,omitempty"` }
子操作详情
type TurboInfo ¶ added in v0.0.65
type TurboInfo struct { Type string `json:"type"` AvailableZone string `json:"available_zone"` ResourceSpecCode string `json:"resource_spec_code"` }
极速文件存储卷信息
type UnfreezeCertRequest ¶ added in v0.0.69
type UnfreezeCertRequest struct { UserName string `json:"user_name"` BlockchainId string `json:"blockchain_id"` OrgName string `json:"org_name"` }
Request Object
func (UnfreezeCertRequest) String ¶ added in v0.0.69
func (o UnfreezeCertRequest) String() string
type UnfreezeCertResponse ¶ added in v0.0.69
type UnfreezeCertResponse struct { Result *string `json:"result,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (UnfreezeCertResponse) String ¶ added in v0.0.69
func (o UnfreezeCertResponse) String() string
type UpdateInstanceRequest ¶
type UpdateInstanceRequest struct { BlockchainId string `json:"blockchain_id"` Body *UpdateInstanceRequestBody `json:"body,omitempty"` }
Request Object
func (UpdateInstanceRequest) String ¶
func (o UpdateInstanceRequest) String() string
type UpdateInstanceRequestBody ¶ added in v0.0.65
type UpdateInstanceRequestBody struct { NodeOrgs []NodeOrgs `json:"node_orgs"` Publicips *[]IefNodeinfo `json:"publicips,omitempty"` IsDeleteOrg *bool `json:"is_delete_org,omitempty"` }
添加节点和添加组织,添加组织是需要提供pvc_name
func (UpdateInstanceRequestBody) String ¶ added in v0.0.65
func (o UpdateInstanceRequestBody) String() string
type UpdateInstanceResponse ¶
type UpdateInstanceResponse struct { OperationId *string `json:"operation_id,omitempty"` HttpStatusCode int `json:"-"` }
Response Object
func (UpdateInstanceResponse) String ¶
func (o UpdateInstanceResponse) String() string
Source Files ¶
- model_basic_info.go
- model_batch_add_peers_to_channel_request.go
- model_batch_add_peers_to_channel_request_body.go
- model_batch_add_peers_to_channel_response.go
- model_batch_create_channels_request.go
- model_batch_create_channels_request_body.go
- model_batch_create_channels_response.go
- model_batch_invite_members_to_channel_request.go
- model_batch_invite_members_to_channel_request_body.go
- model_batch_invite_members_to_channel_response.go
- model_batch_remove_orgs_from_channel_request.go
- model_batch_remove_orgs_from_channel_request_body.go
- model_batch_remove_orgs_from_channel_response.go
- model_blockchain_info.go
- model_cce_cluster_info.go
- model_cce_create_info.go
- model_cfg_request_body.go
- model_channel.go
- model_channel_create_info.go
- model_channel_info.go
- model_channel_info_v2.go
- model_com_cce.go
- model_couch_db_info.go
- model_couchdb.go
- model_create_blockchain_cert_by_user_name_request.go
- model_create_blockchain_cert_by_user_name_response.go
- model_create_new_blockchain_request.go
- model_create_new_blockchain_response.go
- model_create_request_body.go
- model_create_request_body_block_info.go
- model_delete_blockchain_request.go
- model_delete_blockchain_response.go
- model_delete_member_invite_request.go
- model_delete_member_invite_request_body.go
- model_delete_member_invite_response.go
- model_detail.go
- model_dimension.go
- model_dms_kafka_info.go
- model_download_blockchain_cert_request.go
- model_download_blockchain_cert_response.go
- model_download_blockchain_sdk_config_request.go
- model_download_blockchain_sdk_config_response.go
- model_entity_metric_list.go
- model_entity_metric_list_item.go
- model_freeze_cert_request.go
- model_freeze_cert_response.go
- model_handle_notification_invitee.go
- model_handle_notification_invitor.go
- model_handle_notification_org.go
- model_handle_notification_request.go
- model_handle_notification_request_body.go
- model_handle_notification_response.go
- model_ief_info.go
- model_ief_node.go
- model_ief_nodeinfo.go
- model_instance_spc.go
- model_invitation_detail.go
- model_invited_domain.go
- model_invitee_info.go
- model_invitor_info.go
- model_invitor_infos.go
- model_kafka_create_info.go
- model_list_bcs_metric_request.go
- model_list_bcs_metric_request_body.go
- model_list_bcs_metric_response.go
- model_list_blockchain_channels_request.go
- model_list_blockchain_channels_response.go
- model_list_blockchains_request.go
- model_list_blockchains_response.go
- model_list_entity_metric_request.go
- model_list_entity_metric_request_body.go
- model_list_entity_metric_response.go
- model_list_instance_metric_request.go
- model_list_instance_metric_request_body.go
- model_list_instance_metric_response.go
- model_list_members_request.go
- model_list_members_response.go
- model_list_notifications_request.go
- model_list_notifications_response.go
- model_list_op_record_request.go
- model_list_op_record_response.go
- model_list_quotas_request.go
- model_list_quotas_response.go
- model_member.go
- model_member_invitee.go
- model_member_invitor.go
- model_metric_data_points.go
- model_metric_demision.go
- model_metric_item_result_api.go
- model_node.go
- model_node_info.go
- model_node_orgs.go
- model_notification_list.go
- model_obs_info.go
- model_oprecord_cluster.go
- model_org.go
- model_org_peer.go
- model_organization_v2.go
- model_peer_address.go
- model_peer_channel_info.go
- model_peer_info.go
- model_process_info.go
- model_record_detail_info.go
- model_resource.go
- model_sfs_info.go
- model_show_blockchain_detail_request.go
- model_show_blockchain_detail_response.go
- model_show_blockchain_flavors_request.go
- model_show_blockchain_flavors_response.go
- model_show_blockchain_nodes_request.go
- model_show_blockchain_nodes_response.go
- model_show_blockchain_status_request.go
- model_show_blockchain_status_response.go
- model_statistic_value.go
- model_sub_detail.go
- model_turbo_info.go
- model_unfreeze_cert_request.go
- model_unfreeze_cert_response.go
- model_update_instance_request.go
- model_update_instance_request_body.go
- model_update_instance_response.go