Documentation ¶
Index ¶
- func Join(osnURL string, blockBytes []byte, caCertPool *x509.CertPool, ...) (*http.Response, error)
- func ListAllChannels(osnURL string, caCertPool *x509.CertPool, tlsClientCert tls.Certificate) (*http.Response, error)
- func ListSingleChannel(osnURL, channelID string, caCertPool *x509.CertPool, ...) (*http.Response, error)
- func Remove(osnURL, channelID string, caCertPool *x509.CertPool, ...) (*http.Response, error)
- type ChannelInfo
- type ChannelInfoShort
- type ChannelList
- type ConsensusRelation
- type ErrorResponse
- type Status
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Join ¶
func Join(osnURL string, blockBytes []byte, caCertPool *x509.CertPool, tlsClientCert tls.Certificate) (*http.Response, error)
Joins an OSN to a new or existing channel.
func ListAllChannels ¶
func ListAllChannels(osnURL string, caCertPool *x509.CertPool, tlsClientCert tls.Certificate) (*http.Response, error)
Lists the channels an OSN is a member of.
func ListSingleChannel ¶
func ListSingleChannel(osnURL, channelID string, caCertPool *x509.CertPool, tlsClientCert tls.Certificate) (*http.Response, error)
Lists a single channel an OSN is a member of.
Types ¶
type ChannelInfo ¶
type ChannelInfo struct { // The channel name. Name string `json:"name"` // The channel relative URL (no Host:Port, only path), e.g.: "/participation/v1/channels/my-channel". URL string `json:"url"` // Whether the orderer is a “consenter”, ”follower”, or "config-tracker" of // the cluster for this channel. // For non cluster consensus types (solo, kafka) it is "other". // Possible values: “consenter”, ”follower”, "config-tracker", "other". ConsensusRelation ConsensusRelation `json:"consensusRelation"` // Whether the orderer is ”onboarding”, ”active”, or "inactive", for this channel. // For non cluster consensus types (solo, kafka) it is "active". // Possible values: “onboarding”, ”active”, "inactive". Status Status `json:"status"` // Current block height. Height uint64 `json:"height"` }
ChannelInfo carries the response to an HTTP request to List a single channel. This is marshaled into the body of the HTTP response.
type ChannelInfoShort ¶
type ChannelInfoShort struct { // The channel name. Name string `json:"name"` // The channel relative URL (no Host:Port, only path), e.g.: "/participation/v1/channels/my-channel". URL string `json:"url"` }
ChannelInfoShort carries a short info of a single channel.
type ChannelList ¶
type ChannelList struct { // The system channel info, nil if it doesn't exist. SystemChannel *ChannelInfoShort `json:"systemChannel"` // Application channels only, nil or empty if no channels defined. Channels []ChannelInfoShort `json:"channels"` }
ChannelList carries the response to an HTTP request to List all the channels. This is marshaled into the body of the HTTP response.
type ConsensusRelation ¶
type ConsensusRelation string
ConsensusRelation represents the relationship between the orderer and the channel's consensus cluster.
const ( // The orderer is a cluster consenter of a cluster consensus protocol (e.g. etcdraft) for a specific channel. // That is, the orderer is in the consenters set of the channel. ConsensusRelationConsenter ConsensusRelation = "consenter" // The orderer is following a cluster consensus protocol by pulling blocks from other orderers. // The orderer is NOT in the consenters set of the channel. ConsensusRelationFollower ConsensusRelation = "follower" // The orderer is NOT in the consenters set of the channel, and is just tracking (polling) the last config block // of the channel in order to detect when it is added to the channel. ConsensusRelationConfigTracker ConsensusRelation = "config-tracker" // The orderer runs a non-cluster consensus type, solo or kafka. ConsensusRelationOther ConsensusRelation = "other" )
type ErrorResponse ¶
type ErrorResponse struct {
Error string `json:"error"`
}
ErrorResponse carries the error response an HTTP request. This is marshaled into the body of the HTTP response.
type Status ¶
type Status string
Status represents the degree by which the orderer had caught up with the rest of the cluster after joining the channel (either as a consenter or a follower).
const ( // The orderer is active in the channel's consensus protocol, or following the cluster, // with block height > the join-block number. (Height is last block number +1). StatusActive Status = "active" // The orderer is catching up with the cluster by pulling blocks from other orderers, // with block height <= the join-block number. StatusOnBoarding Status = "onboarding" // The orderer is not storing any blocks for this channel. StatusInactive Status = "inactive" // The last orderer operation against the channel failed. StatusFailed Status = "failed" )