lifecycle

package
v0.0.0-...-ea48f79 Latest Latest
Warning

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

Go to latest
Published: Oct 3, 2019 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ApproveChaincodeDefinitionForMyOrgArgs

type ApproveChaincodeDefinitionForMyOrgArgs struct {
	Sequence             int64                           `protobuf:"varint,1,opt,name=sequence,proto3" json:"sequence,omitempty"`
	Name                 string                          `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Version              string                          `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"`
	EndorsementPlugin    string                          `protobuf:"bytes,4,opt,name=endorsement_plugin,json=endorsementPlugin,proto3" json:"endorsement_plugin,omitempty"`
	ValidationPlugin     string                          `protobuf:"bytes,5,opt,name=validation_plugin,json=validationPlugin,proto3" json:"validation_plugin,omitempty"`
	ValidationParameter  []byte                          `protobuf:"bytes,6,opt,name=validation_parameter,json=validationParameter,proto3" json:"validation_parameter,omitempty"`
	Collections          *common.CollectionConfigPackage `protobuf:"bytes,7,opt,name=collections,proto3" json:"collections,omitempty"`
	InitRequired         bool                            `protobuf:"varint,8,opt,name=init_required,json=initRequired,proto3" json:"init_required,omitempty"`
	Source               *ChaincodeSource                `protobuf:"bytes,9,opt,name=source,proto3" json:"source,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                        `json:"-"`
	XXX_unrecognized     []byte                          `json:"-"`
	XXX_sizecache        int32                           `json:"-"`
}

ApproveChaincodeDefinitionForMyOrgArgs is the message used as arguments to `_lifecycle.ApproveChaincodeDefinitionForMyOrg`.

func (*ApproveChaincodeDefinitionForMyOrgArgs) Descriptor

func (*ApproveChaincodeDefinitionForMyOrgArgs) Descriptor() ([]byte, []int)

func (*ApproveChaincodeDefinitionForMyOrgArgs) GetCollections

func (*ApproveChaincodeDefinitionForMyOrgArgs) GetEndorsementPlugin

func (m *ApproveChaincodeDefinitionForMyOrgArgs) GetEndorsementPlugin() string

func (*ApproveChaincodeDefinitionForMyOrgArgs) GetInitRequired

func (m *ApproveChaincodeDefinitionForMyOrgArgs) GetInitRequired() bool

func (*ApproveChaincodeDefinitionForMyOrgArgs) GetName

func (*ApproveChaincodeDefinitionForMyOrgArgs) GetSequence

func (*ApproveChaincodeDefinitionForMyOrgArgs) GetSource

func (*ApproveChaincodeDefinitionForMyOrgArgs) GetValidationParameter

func (m *ApproveChaincodeDefinitionForMyOrgArgs) GetValidationParameter() []byte

func (*ApproveChaincodeDefinitionForMyOrgArgs) GetValidationPlugin

func (m *ApproveChaincodeDefinitionForMyOrgArgs) GetValidationPlugin() string

func (*ApproveChaincodeDefinitionForMyOrgArgs) GetVersion

func (*ApproveChaincodeDefinitionForMyOrgArgs) ProtoMessage

func (*ApproveChaincodeDefinitionForMyOrgArgs) Reset

func (*ApproveChaincodeDefinitionForMyOrgArgs) String

func (*ApproveChaincodeDefinitionForMyOrgArgs) XXX_DiscardUnknown

func (m *ApproveChaincodeDefinitionForMyOrgArgs) XXX_DiscardUnknown()

func (*ApproveChaincodeDefinitionForMyOrgArgs) XXX_Marshal

func (m *ApproveChaincodeDefinitionForMyOrgArgs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApproveChaincodeDefinitionForMyOrgArgs) XXX_Merge

func (*ApproveChaincodeDefinitionForMyOrgArgs) XXX_Size

func (*ApproveChaincodeDefinitionForMyOrgArgs) XXX_Unmarshal

func (m *ApproveChaincodeDefinitionForMyOrgArgs) XXX_Unmarshal(b []byte) error

type ApproveChaincodeDefinitionForMyOrgResult

type ApproveChaincodeDefinitionForMyOrgResult struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

ApproveChaincodeDefinitionForMyOrgResult is the message returned by `_lifecycle.ApproveChaincodeDefinitionForMyOrg`. Currently it returns nothing, but may be extended in the future.

func (*ApproveChaincodeDefinitionForMyOrgResult) Descriptor

func (*ApproveChaincodeDefinitionForMyOrgResult) Descriptor() ([]byte, []int)

func (*ApproveChaincodeDefinitionForMyOrgResult) ProtoMessage

func (*ApproveChaincodeDefinitionForMyOrgResult) Reset

func (*ApproveChaincodeDefinitionForMyOrgResult) String

func (*ApproveChaincodeDefinitionForMyOrgResult) XXX_DiscardUnknown

func (m *ApproveChaincodeDefinitionForMyOrgResult) XXX_DiscardUnknown()

func (*ApproveChaincodeDefinitionForMyOrgResult) XXX_Marshal

func (m *ApproveChaincodeDefinitionForMyOrgResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApproveChaincodeDefinitionForMyOrgResult) XXX_Merge

func (*ApproveChaincodeDefinitionForMyOrgResult) XXX_Size

func (*ApproveChaincodeDefinitionForMyOrgResult) XXX_Unmarshal

func (m *ApproveChaincodeDefinitionForMyOrgResult) XXX_Unmarshal(b []byte) error

type ChaincodeEndorsementInfo

type ChaincodeEndorsementInfo struct {
	Version              string   `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	InitRequired         bool     `protobuf:"varint,2,opt,name=init_required,json=initRequired,proto3" json:"init_required,omitempty"`
	EndorsementPlugin    string   `protobuf:"bytes,3,opt,name=endorsement_plugin,json=endorsementPlugin,proto3" json:"endorsement_plugin,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

ChaincodeEndorsementInfo is (most) everything the peer needs to know in order to execute a chaincode

func (*ChaincodeEndorsementInfo) Descriptor

func (*ChaincodeEndorsementInfo) Descriptor() ([]byte, []int)

func (*ChaincodeEndorsementInfo) GetEndorsementPlugin

func (m *ChaincodeEndorsementInfo) GetEndorsementPlugin() string

func (*ChaincodeEndorsementInfo) GetInitRequired

func (m *ChaincodeEndorsementInfo) GetInitRequired() bool

func (*ChaincodeEndorsementInfo) GetVersion

func (m *ChaincodeEndorsementInfo) GetVersion() string

func (*ChaincodeEndorsementInfo) ProtoMessage

func (*ChaincodeEndorsementInfo) ProtoMessage()

func (*ChaincodeEndorsementInfo) Reset

func (m *ChaincodeEndorsementInfo) Reset()

func (*ChaincodeEndorsementInfo) String

func (m *ChaincodeEndorsementInfo) String() string

func (*ChaincodeEndorsementInfo) XXX_DiscardUnknown

func (m *ChaincodeEndorsementInfo) XXX_DiscardUnknown()

func (*ChaincodeEndorsementInfo) XXX_Marshal

func (m *ChaincodeEndorsementInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ChaincodeEndorsementInfo) XXX_Merge

func (dst *ChaincodeEndorsementInfo) XXX_Merge(src proto.Message)

func (*ChaincodeEndorsementInfo) XXX_Size

func (m *ChaincodeEndorsementInfo) XXX_Size() int

func (*ChaincodeEndorsementInfo) XXX_Unmarshal

func (m *ChaincodeEndorsementInfo) XXX_Unmarshal(b []byte) error

type ChaincodeSource

type ChaincodeSource struct {
	// Types that are valid to be assigned to Type:
	//	*ChaincodeSource_Unavailable_
	//	*ChaincodeSource_LocalPackage
	Type                 isChaincodeSource_Type `protobuf_oneof:"Type"`
	XXX_NoUnkeyedLiteral struct{}               `json:"-"`
	XXX_unrecognized     []byte                 `json:"-"`
	XXX_sizecache        int32                  `json:"-"`
}

func (*ChaincodeSource) Descriptor

func (*ChaincodeSource) Descriptor() ([]byte, []int)

func (*ChaincodeSource) GetLocalPackage

func (m *ChaincodeSource) GetLocalPackage() *ChaincodeSource_Local

func (*ChaincodeSource) GetType

func (m *ChaincodeSource) GetType() isChaincodeSource_Type

func (*ChaincodeSource) GetUnavailable

func (m *ChaincodeSource) GetUnavailable() *ChaincodeSource_Unavailable

func (*ChaincodeSource) ProtoMessage

func (*ChaincodeSource) ProtoMessage()

func (*ChaincodeSource) Reset

func (m *ChaincodeSource) Reset()

func (*ChaincodeSource) String

func (m *ChaincodeSource) String() string

func (*ChaincodeSource) XXX_DiscardUnknown

func (m *ChaincodeSource) XXX_DiscardUnknown()

func (*ChaincodeSource) XXX_Marshal

func (m *ChaincodeSource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ChaincodeSource) XXX_Merge

func (dst *ChaincodeSource) XXX_Merge(src proto.Message)

func (*ChaincodeSource) XXX_OneofFuncs

func (*ChaincodeSource) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{})

XXX_OneofFuncs is for the internal use of the proto package.

func (*ChaincodeSource) XXX_Size

func (m *ChaincodeSource) XXX_Size() int

func (*ChaincodeSource) XXX_Unmarshal

func (m *ChaincodeSource) XXX_Unmarshal(b []byte) error

type ChaincodeSource_Local

type ChaincodeSource_Local struct {
	PackageId            string   `protobuf:"bytes,1,opt,name=package_id,json=packageId,proto3" json:"package_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ChaincodeSource_Local) Descriptor

func (*ChaincodeSource_Local) Descriptor() ([]byte, []int)

func (*ChaincodeSource_Local) GetPackageId

func (m *ChaincodeSource_Local) GetPackageId() string

func (*ChaincodeSource_Local) ProtoMessage

func (*ChaincodeSource_Local) ProtoMessage()

func (*ChaincodeSource_Local) Reset

func (m *ChaincodeSource_Local) Reset()

func (*ChaincodeSource_Local) String

func (m *ChaincodeSource_Local) String() string

func (*ChaincodeSource_Local) XXX_DiscardUnknown

func (m *ChaincodeSource_Local) XXX_DiscardUnknown()

func (*ChaincodeSource_Local) XXX_Marshal

func (m *ChaincodeSource_Local) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ChaincodeSource_Local) XXX_Merge

func (dst *ChaincodeSource_Local) XXX_Merge(src proto.Message)

func (*ChaincodeSource_Local) XXX_Size

func (m *ChaincodeSource_Local) XXX_Size() int

func (*ChaincodeSource_Local) XXX_Unmarshal

func (m *ChaincodeSource_Local) XXX_Unmarshal(b []byte) error

type ChaincodeSource_LocalPackage

type ChaincodeSource_LocalPackage struct {
	LocalPackage *ChaincodeSource_Local `protobuf:"bytes,2,opt,name=local_package,json=localPackage,proto3,oneof"`
}

type ChaincodeSource_Unavailable

type ChaincodeSource_Unavailable struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ChaincodeSource_Unavailable) Descriptor

func (*ChaincodeSource_Unavailable) Descriptor() ([]byte, []int)

func (*ChaincodeSource_Unavailable) ProtoMessage

func (*ChaincodeSource_Unavailable) ProtoMessage()

func (*ChaincodeSource_Unavailable) Reset

func (m *ChaincodeSource_Unavailable) Reset()

func (*ChaincodeSource_Unavailable) String

func (m *ChaincodeSource_Unavailable) String() string

func (*ChaincodeSource_Unavailable) XXX_DiscardUnknown

func (m *ChaincodeSource_Unavailable) XXX_DiscardUnknown()

func (*ChaincodeSource_Unavailable) XXX_Marshal

func (m *ChaincodeSource_Unavailable) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ChaincodeSource_Unavailable) XXX_Merge

func (dst *ChaincodeSource_Unavailable) XXX_Merge(src proto.Message)

func (*ChaincodeSource_Unavailable) XXX_Size

func (m *ChaincodeSource_Unavailable) XXX_Size() int

func (*ChaincodeSource_Unavailable) XXX_Unmarshal

func (m *ChaincodeSource_Unavailable) XXX_Unmarshal(b []byte) error

type ChaincodeSource_Unavailable_

type ChaincodeSource_Unavailable_ struct {
	Unavailable *ChaincodeSource_Unavailable `protobuf:"bytes,1,opt,name=unavailable,proto3,oneof"`
}

type ChaincodeValidationInfo

type ChaincodeValidationInfo struct {
	ValidationPlugin     string   `protobuf:"bytes,1,opt,name=validation_plugin,json=validationPlugin,proto3" json:"validation_plugin,omitempty"`
	ValidationParameter  []byte   `protobuf:"bytes,2,opt,name=validation_parameter,json=validationParameter,proto3" json:"validation_parameter,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

ValidationInfo is (most) everything the peer needs to know in order to validate a transaction

func (*ChaincodeValidationInfo) Descriptor

func (*ChaincodeValidationInfo) Descriptor() ([]byte, []int)

func (*ChaincodeValidationInfo) GetValidationParameter

func (m *ChaincodeValidationInfo) GetValidationParameter() []byte

func (*ChaincodeValidationInfo) GetValidationPlugin

func (m *ChaincodeValidationInfo) GetValidationPlugin() string

func (*ChaincodeValidationInfo) ProtoMessage

func (*ChaincodeValidationInfo) ProtoMessage()

func (*ChaincodeValidationInfo) Reset

func (m *ChaincodeValidationInfo) Reset()

func (*ChaincodeValidationInfo) String

func (m *ChaincodeValidationInfo) String() string

func (*ChaincodeValidationInfo) XXX_DiscardUnknown

func (m *ChaincodeValidationInfo) XXX_DiscardUnknown()

func (*ChaincodeValidationInfo) XXX_Marshal

func (m *ChaincodeValidationInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ChaincodeValidationInfo) XXX_Merge

func (dst *ChaincodeValidationInfo) XXX_Merge(src proto.Message)

func (*ChaincodeValidationInfo) XXX_Size

func (m *ChaincodeValidationInfo) XXX_Size() int

func (*ChaincodeValidationInfo) XXX_Unmarshal

func (m *ChaincodeValidationInfo) XXX_Unmarshal(b []byte) error

type CommitChaincodeDefinitionArgs

type CommitChaincodeDefinitionArgs struct {
	Sequence             int64                           `protobuf:"varint,1,opt,name=sequence,proto3" json:"sequence,omitempty"`
	Name                 string                          `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Version              string                          `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"`
	EndorsementPlugin    string                          `protobuf:"bytes,4,opt,name=endorsement_plugin,json=endorsementPlugin,proto3" json:"endorsement_plugin,omitempty"`
	ValidationPlugin     string                          `protobuf:"bytes,5,opt,name=validation_plugin,json=validationPlugin,proto3" json:"validation_plugin,omitempty"`
	ValidationParameter  []byte                          `protobuf:"bytes,6,opt,name=validation_parameter,json=validationParameter,proto3" json:"validation_parameter,omitempty"`
	Collections          *common.CollectionConfigPackage `protobuf:"bytes,7,opt,name=collections,proto3" json:"collections,omitempty"`
	InitRequired         bool                            `protobuf:"varint,8,opt,name=init_required,json=initRequired,proto3" json:"init_required,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                        `json:"-"`
	XXX_unrecognized     []byte                          `json:"-"`
	XXX_sizecache        int32                           `json:"-"`
}

CommitChaincodeDefinitionArgs is the message used as arguments to `_lifecycle.CommitChaincodeDefinition`.

func (*CommitChaincodeDefinitionArgs) Descriptor

func (*CommitChaincodeDefinitionArgs) Descriptor() ([]byte, []int)

func (*CommitChaincodeDefinitionArgs) GetCollections

func (*CommitChaincodeDefinitionArgs) GetEndorsementPlugin

func (m *CommitChaincodeDefinitionArgs) GetEndorsementPlugin() string

func (*CommitChaincodeDefinitionArgs) GetInitRequired

func (m *CommitChaincodeDefinitionArgs) GetInitRequired() bool

func (*CommitChaincodeDefinitionArgs) GetName

func (*CommitChaincodeDefinitionArgs) GetSequence

func (m *CommitChaincodeDefinitionArgs) GetSequence() int64

func (*CommitChaincodeDefinitionArgs) GetValidationParameter

func (m *CommitChaincodeDefinitionArgs) GetValidationParameter() []byte

func (*CommitChaincodeDefinitionArgs) GetValidationPlugin

func (m *CommitChaincodeDefinitionArgs) GetValidationPlugin() string

func (*CommitChaincodeDefinitionArgs) GetVersion

func (m *CommitChaincodeDefinitionArgs) GetVersion() string

func (*CommitChaincodeDefinitionArgs) ProtoMessage

func (*CommitChaincodeDefinitionArgs) ProtoMessage()

func (*CommitChaincodeDefinitionArgs) Reset

func (m *CommitChaincodeDefinitionArgs) Reset()

func (*CommitChaincodeDefinitionArgs) String

func (*CommitChaincodeDefinitionArgs) XXX_DiscardUnknown

func (m *CommitChaincodeDefinitionArgs) XXX_DiscardUnknown()

func (*CommitChaincodeDefinitionArgs) XXX_Marshal

func (m *CommitChaincodeDefinitionArgs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CommitChaincodeDefinitionArgs) XXX_Merge

func (dst *CommitChaincodeDefinitionArgs) XXX_Merge(src proto.Message)

func (*CommitChaincodeDefinitionArgs) XXX_Size

func (m *CommitChaincodeDefinitionArgs) XXX_Size() int

func (*CommitChaincodeDefinitionArgs) XXX_Unmarshal

func (m *CommitChaincodeDefinitionArgs) XXX_Unmarshal(b []byte) error

type CommitChaincodeDefinitionResult

type CommitChaincodeDefinitionResult struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

CommitChaincodeDefinitionResult is the message returned by `_lifecycle.CommitChaincodeDefinition`. Currently it returns nothing, but may be extended in the future.

func (*CommitChaincodeDefinitionResult) Descriptor

func (*CommitChaincodeDefinitionResult) Descriptor() ([]byte, []int)

func (*CommitChaincodeDefinitionResult) ProtoMessage

func (*CommitChaincodeDefinitionResult) ProtoMessage()

func (*CommitChaincodeDefinitionResult) Reset

func (*CommitChaincodeDefinitionResult) String

func (*CommitChaincodeDefinitionResult) XXX_DiscardUnknown

func (m *CommitChaincodeDefinitionResult) XXX_DiscardUnknown()

func (*CommitChaincodeDefinitionResult) XXX_Marshal

func (m *CommitChaincodeDefinitionResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CommitChaincodeDefinitionResult) XXX_Merge

func (dst *CommitChaincodeDefinitionResult) XXX_Merge(src proto.Message)

func (*CommitChaincodeDefinitionResult) XXX_Size

func (m *CommitChaincodeDefinitionResult) XXX_Size() int

func (*CommitChaincodeDefinitionResult) XXX_Unmarshal

func (m *CommitChaincodeDefinitionResult) XXX_Unmarshal(b []byte) error

type InstallChaincodeArgs

type InstallChaincodeArgs struct {
	ChaincodeInstallPackage []byte   `` /* 132-byte string literal not displayed */
	XXX_NoUnkeyedLiteral    struct{} `json:"-"`
	XXX_unrecognized        []byte   `json:"-"`
	XXX_sizecache           int32    `json:"-"`
}

InstallChaincodeArgs is the message used as the argument to '_lifecycle.InstallChaincode'

func (*InstallChaincodeArgs) Descriptor

func (*InstallChaincodeArgs) Descriptor() ([]byte, []int)

func (*InstallChaincodeArgs) GetChaincodeInstallPackage

func (m *InstallChaincodeArgs) GetChaincodeInstallPackage() []byte

func (*InstallChaincodeArgs) ProtoMessage

func (*InstallChaincodeArgs) ProtoMessage()

func (*InstallChaincodeArgs) Reset

func (m *InstallChaincodeArgs) Reset()

func (*InstallChaincodeArgs) String

func (m *InstallChaincodeArgs) String() string

func (*InstallChaincodeArgs) XXX_DiscardUnknown

func (m *InstallChaincodeArgs) XXX_DiscardUnknown()

func (*InstallChaincodeArgs) XXX_Marshal

func (m *InstallChaincodeArgs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*InstallChaincodeArgs) XXX_Merge

func (dst *InstallChaincodeArgs) XXX_Merge(src proto.Message)

func (*InstallChaincodeArgs) XXX_Size

func (m *InstallChaincodeArgs) XXX_Size() int

func (*InstallChaincodeArgs) XXX_Unmarshal

func (m *InstallChaincodeArgs) XXX_Unmarshal(b []byte) error

type InstallChaincodeResult

type InstallChaincodeResult struct {
	PackageId            string   `protobuf:"bytes,1,opt,name=package_id,json=packageId,proto3" json:"package_id,omitempty"`
	Label                string   `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

InstallChaincodeArgs is the message returned by '_lifecycle.InstallChaincode'

func (*InstallChaincodeResult) Descriptor

func (*InstallChaincodeResult) Descriptor() ([]byte, []int)

func (*InstallChaincodeResult) GetLabel

func (m *InstallChaincodeResult) GetLabel() string

func (*InstallChaincodeResult) GetPackageId

func (m *InstallChaincodeResult) GetPackageId() string

func (*InstallChaincodeResult) ProtoMessage

func (*InstallChaincodeResult) ProtoMessage()

func (*InstallChaincodeResult) Reset

func (m *InstallChaincodeResult) Reset()

func (*InstallChaincodeResult) String

func (m *InstallChaincodeResult) String() string

func (*InstallChaincodeResult) XXX_DiscardUnknown

func (m *InstallChaincodeResult) XXX_DiscardUnknown()

func (*InstallChaincodeResult) XXX_Marshal

func (m *InstallChaincodeResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*InstallChaincodeResult) XXX_Merge

func (dst *InstallChaincodeResult) XXX_Merge(src proto.Message)

func (*InstallChaincodeResult) XXX_Size

func (m *InstallChaincodeResult) XXX_Size() int

func (*InstallChaincodeResult) XXX_Unmarshal

func (m *InstallChaincodeResult) XXX_Unmarshal(b []byte) error

type QueryApprovalStatusArgs

type QueryApprovalStatusArgs struct {
	Sequence             int64                           `protobuf:"varint,1,opt,name=sequence,proto3" json:"sequence,omitempty"`
	Name                 string                          `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Version              string                          `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"`
	EndorsementPlugin    string                          `protobuf:"bytes,4,opt,name=endorsement_plugin,json=endorsementPlugin,proto3" json:"endorsement_plugin,omitempty"`
	ValidationPlugin     string                          `protobuf:"bytes,5,opt,name=validation_plugin,json=validationPlugin,proto3" json:"validation_plugin,omitempty"`
	ValidationParameter  []byte                          `protobuf:"bytes,6,opt,name=validation_parameter,json=validationParameter,proto3" json:"validation_parameter,omitempty"`
	Collections          *common.CollectionConfigPackage `protobuf:"bytes,7,opt,name=collections,proto3" json:"collections,omitempty"`
	InitRequired         bool                            `protobuf:"varint,8,opt,name=init_required,json=initRequired,proto3" json:"init_required,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                        `json:"-"`
	XXX_unrecognized     []byte                          `json:"-"`
	XXX_sizecache        int32                           `json:"-"`
}

QueryApprovalStatusArgs is the message used as arguments to `_lifecycle.QueryApprovalStatus`

func (*QueryApprovalStatusArgs) Descriptor

func (*QueryApprovalStatusArgs) Descriptor() ([]byte, []int)

func (*QueryApprovalStatusArgs) GetCollections

func (*QueryApprovalStatusArgs) GetEndorsementPlugin

func (m *QueryApprovalStatusArgs) GetEndorsementPlugin() string

func (*QueryApprovalStatusArgs) GetInitRequired

func (m *QueryApprovalStatusArgs) GetInitRequired() bool

func (*QueryApprovalStatusArgs) GetName

func (m *QueryApprovalStatusArgs) GetName() string

func (*QueryApprovalStatusArgs) GetSequence

func (m *QueryApprovalStatusArgs) GetSequence() int64

func (*QueryApprovalStatusArgs) GetValidationParameter

func (m *QueryApprovalStatusArgs) GetValidationParameter() []byte

func (*QueryApprovalStatusArgs) GetValidationPlugin

func (m *QueryApprovalStatusArgs) GetValidationPlugin() string

func (*QueryApprovalStatusArgs) GetVersion

func (m *QueryApprovalStatusArgs) GetVersion() string

func (*QueryApprovalStatusArgs) ProtoMessage

func (*QueryApprovalStatusArgs) ProtoMessage()

func (*QueryApprovalStatusArgs) Reset

func (m *QueryApprovalStatusArgs) Reset()

func (*QueryApprovalStatusArgs) String

func (m *QueryApprovalStatusArgs) String() string

func (*QueryApprovalStatusArgs) XXX_DiscardUnknown

func (m *QueryApprovalStatusArgs) XXX_DiscardUnknown()

func (*QueryApprovalStatusArgs) XXX_Marshal

func (m *QueryApprovalStatusArgs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryApprovalStatusArgs) XXX_Merge

func (dst *QueryApprovalStatusArgs) XXX_Merge(src proto.Message)

func (*QueryApprovalStatusArgs) XXX_Size

func (m *QueryApprovalStatusArgs) XXX_Size() int

func (*QueryApprovalStatusArgs) XXX_Unmarshal

func (m *QueryApprovalStatusArgs) XXX_Unmarshal(b []byte) error

type QueryApprovalStatusResults

type QueryApprovalStatusResults struct {
	Approved             map[string]bool `` /* 158-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

QueryApprovalStatusResults is the message returned by `_lifecycle.QueryApprovalStatus`. It returns a map of orgs to their approval (true/false) for the definition supplied as args

func (*QueryApprovalStatusResults) Descriptor

func (*QueryApprovalStatusResults) Descriptor() ([]byte, []int)

func (*QueryApprovalStatusResults) GetApproved

func (m *QueryApprovalStatusResults) GetApproved() map[string]bool

func (*QueryApprovalStatusResults) ProtoMessage

func (*QueryApprovalStatusResults) ProtoMessage()

func (*QueryApprovalStatusResults) Reset

func (m *QueryApprovalStatusResults) Reset()

func (*QueryApprovalStatusResults) String

func (m *QueryApprovalStatusResults) String() string

func (*QueryApprovalStatusResults) XXX_DiscardUnknown

func (m *QueryApprovalStatusResults) XXX_DiscardUnknown()

func (*QueryApprovalStatusResults) XXX_Marshal

func (m *QueryApprovalStatusResults) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryApprovalStatusResults) XXX_Merge

func (dst *QueryApprovalStatusResults) XXX_Merge(src proto.Message)

func (*QueryApprovalStatusResults) XXX_Size

func (m *QueryApprovalStatusResults) XXX_Size() int

func (*QueryApprovalStatusResults) XXX_Unmarshal

func (m *QueryApprovalStatusResults) XXX_Unmarshal(b []byte) error

type QueryChaincodeDefinitionArgs

type QueryChaincodeDefinitionArgs struct {
	Name                 string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

QueryChaincodeDefinition is the message used as arguments to `_lifecycle.QueryChaincodeDefinition`.

func (*QueryChaincodeDefinitionArgs) Descriptor

func (*QueryChaincodeDefinitionArgs) Descriptor() ([]byte, []int)

func (*QueryChaincodeDefinitionArgs) GetName

func (m *QueryChaincodeDefinitionArgs) GetName() string

func (*QueryChaincodeDefinitionArgs) ProtoMessage

func (*QueryChaincodeDefinitionArgs) ProtoMessage()

func (*QueryChaincodeDefinitionArgs) Reset

func (m *QueryChaincodeDefinitionArgs) Reset()

func (*QueryChaincodeDefinitionArgs) String

func (*QueryChaincodeDefinitionArgs) XXX_DiscardUnknown

func (m *QueryChaincodeDefinitionArgs) XXX_DiscardUnknown()

func (*QueryChaincodeDefinitionArgs) XXX_Marshal

func (m *QueryChaincodeDefinitionArgs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryChaincodeDefinitionArgs) XXX_Merge

func (dst *QueryChaincodeDefinitionArgs) XXX_Merge(src proto.Message)

func (*QueryChaincodeDefinitionArgs) XXX_Size

func (m *QueryChaincodeDefinitionArgs) XXX_Size() int

func (*QueryChaincodeDefinitionArgs) XXX_Unmarshal

func (m *QueryChaincodeDefinitionArgs) XXX_Unmarshal(b []byte) error

type QueryChaincodeDefinitionResult

type QueryChaincodeDefinitionResult struct {
	Sequence             int64                           `protobuf:"varint,1,opt,name=sequence,proto3" json:"sequence,omitempty"`
	Version              string                          `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
	EndorsementPlugin    string                          `protobuf:"bytes,3,opt,name=endorsement_plugin,json=endorsementPlugin,proto3" json:"endorsement_plugin,omitempty"`
	ValidationPlugin     string                          `protobuf:"bytes,4,opt,name=validation_plugin,json=validationPlugin,proto3" json:"validation_plugin,omitempty"`
	ValidationParameter  []byte                          `protobuf:"bytes,5,opt,name=validation_parameter,json=validationParameter,proto3" json:"validation_parameter,omitempty"`
	Collections          *common.CollectionConfigPackage `protobuf:"bytes,6,opt,name=collections,proto3" json:"collections,omitempty"`
	InitRequired         bool                            `protobuf:"varint,7,opt,name=init_required,json=initRequired,proto3" json:"init_required,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                        `json:"-"`
	XXX_unrecognized     []byte                          `json:"-"`
	XXX_sizecache        int32                           `json:"-"`
}

CommitChaincodeDefinitionResult is the message returned by `_lifecycle.QueryChaincodeDefinition`.

func (*QueryChaincodeDefinitionResult) Descriptor

func (*QueryChaincodeDefinitionResult) Descriptor() ([]byte, []int)

func (*QueryChaincodeDefinitionResult) GetCollections

func (*QueryChaincodeDefinitionResult) GetEndorsementPlugin

func (m *QueryChaincodeDefinitionResult) GetEndorsementPlugin() string

func (*QueryChaincodeDefinitionResult) GetInitRequired

func (m *QueryChaincodeDefinitionResult) GetInitRequired() bool

func (*QueryChaincodeDefinitionResult) GetSequence

func (m *QueryChaincodeDefinitionResult) GetSequence() int64

func (*QueryChaincodeDefinitionResult) GetValidationParameter

func (m *QueryChaincodeDefinitionResult) GetValidationParameter() []byte

func (*QueryChaincodeDefinitionResult) GetValidationPlugin

func (m *QueryChaincodeDefinitionResult) GetValidationPlugin() string

func (*QueryChaincodeDefinitionResult) GetVersion

func (m *QueryChaincodeDefinitionResult) GetVersion() string

func (*QueryChaincodeDefinitionResult) ProtoMessage

func (*QueryChaincodeDefinitionResult) ProtoMessage()

func (*QueryChaincodeDefinitionResult) Reset

func (m *QueryChaincodeDefinitionResult) Reset()

func (*QueryChaincodeDefinitionResult) String

func (*QueryChaincodeDefinitionResult) XXX_DiscardUnknown

func (m *QueryChaincodeDefinitionResult) XXX_DiscardUnknown()

func (*QueryChaincodeDefinitionResult) XXX_Marshal

func (m *QueryChaincodeDefinitionResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryChaincodeDefinitionResult) XXX_Merge

func (dst *QueryChaincodeDefinitionResult) XXX_Merge(src proto.Message)

func (*QueryChaincodeDefinitionResult) XXX_Size

func (m *QueryChaincodeDefinitionResult) XXX_Size() int

func (*QueryChaincodeDefinitionResult) XXX_Unmarshal

func (m *QueryChaincodeDefinitionResult) XXX_Unmarshal(b []byte) error

type QueryInstalledChaincodeArgs

type QueryInstalledChaincodeArgs struct {
	PackageId            string   `protobuf:"bytes,1,opt,name=package_id,json=packageId,proto3" json:"package_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

QueryInstalledChaincodeArgs is the message used as arguments '_lifecycle.QueryInstalledChaincode'

func (*QueryInstalledChaincodeArgs) Descriptor

func (*QueryInstalledChaincodeArgs) Descriptor() ([]byte, []int)

func (*QueryInstalledChaincodeArgs) GetPackageId

func (m *QueryInstalledChaincodeArgs) GetPackageId() string

func (*QueryInstalledChaincodeArgs) ProtoMessage

func (*QueryInstalledChaincodeArgs) ProtoMessage()

func (*QueryInstalledChaincodeArgs) Reset

func (m *QueryInstalledChaincodeArgs) Reset()

func (*QueryInstalledChaincodeArgs) String

func (m *QueryInstalledChaincodeArgs) String() string

func (*QueryInstalledChaincodeArgs) XXX_DiscardUnknown

func (m *QueryInstalledChaincodeArgs) XXX_DiscardUnknown()

func (*QueryInstalledChaincodeArgs) XXX_Marshal

func (m *QueryInstalledChaincodeArgs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryInstalledChaincodeArgs) XXX_Merge

func (dst *QueryInstalledChaincodeArgs) XXX_Merge(src proto.Message)

func (*QueryInstalledChaincodeArgs) XXX_Size

func (m *QueryInstalledChaincodeArgs) XXX_Size() int

func (*QueryInstalledChaincodeArgs) XXX_Unmarshal

func (m *QueryInstalledChaincodeArgs) XXX_Unmarshal(b []byte) error

type QueryInstalledChaincodeResult

type QueryInstalledChaincodeResult struct {
	PackageId            string   `protobuf:"bytes,1,opt,name=package_id,json=packageId,proto3" json:"package_id,omitempty"`
	Label                string   `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

QueryInstalledChaincodeResult is the message returned by '_lifecycle.QueryInstalledChaincode'

func (*QueryInstalledChaincodeResult) Descriptor

func (*QueryInstalledChaincodeResult) Descriptor() ([]byte, []int)

func (*QueryInstalledChaincodeResult) GetLabel

func (m *QueryInstalledChaincodeResult) GetLabel() string

func (*QueryInstalledChaincodeResult) GetPackageId

func (m *QueryInstalledChaincodeResult) GetPackageId() string

func (*QueryInstalledChaincodeResult) ProtoMessage

func (*QueryInstalledChaincodeResult) ProtoMessage()

func (*QueryInstalledChaincodeResult) Reset

func (m *QueryInstalledChaincodeResult) Reset()

func (*QueryInstalledChaincodeResult) String

func (*QueryInstalledChaincodeResult) XXX_DiscardUnknown

func (m *QueryInstalledChaincodeResult) XXX_DiscardUnknown()

func (*QueryInstalledChaincodeResult) XXX_Marshal

func (m *QueryInstalledChaincodeResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryInstalledChaincodeResult) XXX_Merge

func (dst *QueryInstalledChaincodeResult) XXX_Merge(src proto.Message)

func (*QueryInstalledChaincodeResult) XXX_Size

func (m *QueryInstalledChaincodeResult) XXX_Size() int

func (*QueryInstalledChaincodeResult) XXX_Unmarshal

func (m *QueryInstalledChaincodeResult) XXX_Unmarshal(b []byte) error

type QueryInstalledChaincodesArgs

type QueryInstalledChaincodesArgs struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

QueryInstalledChaincodesArgs currently is an empty argument to '_lifecycle.QueryInstalledChaincodes'. In the future, it may be extended to have parameters.

func (*QueryInstalledChaincodesArgs) Descriptor

func (*QueryInstalledChaincodesArgs) Descriptor() ([]byte, []int)

func (*QueryInstalledChaincodesArgs) ProtoMessage

func (*QueryInstalledChaincodesArgs) ProtoMessage()

func (*QueryInstalledChaincodesArgs) Reset

func (m *QueryInstalledChaincodesArgs) Reset()

func (*QueryInstalledChaincodesArgs) String

func (*QueryInstalledChaincodesArgs) XXX_DiscardUnknown

func (m *QueryInstalledChaincodesArgs) XXX_DiscardUnknown()

func (*QueryInstalledChaincodesArgs) XXX_Marshal

func (m *QueryInstalledChaincodesArgs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryInstalledChaincodesArgs) XXX_Merge

func (dst *QueryInstalledChaincodesArgs) XXX_Merge(src proto.Message)

func (*QueryInstalledChaincodesArgs) XXX_Size

func (m *QueryInstalledChaincodesArgs) XXX_Size() int

func (*QueryInstalledChaincodesArgs) XXX_Unmarshal

func (m *QueryInstalledChaincodesArgs) XXX_Unmarshal(b []byte) error

type QueryInstalledChaincodesResult

type QueryInstalledChaincodesResult struct {
	InstalledChaincodes  []*QueryInstalledChaincodesResult_InstalledChaincode `protobuf:"bytes,1,rep,name=installed_chaincodes,json=installedChaincodes,proto3" json:"installed_chaincodes,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                                             `json:"-"`
	XXX_unrecognized     []byte                                               `json:"-"`
	XXX_sizecache        int32                                                `json:"-"`
}

QueryInstalledChaincodesResult is the message returned by '_lifecycle.QueryInstalledChaincodes'. It returns a list of installed chaincodes.

func (*QueryInstalledChaincodesResult) Descriptor

func (*QueryInstalledChaincodesResult) Descriptor() ([]byte, []int)

func (*QueryInstalledChaincodesResult) GetInstalledChaincodes

func (*QueryInstalledChaincodesResult) ProtoMessage

func (*QueryInstalledChaincodesResult) ProtoMessage()

func (*QueryInstalledChaincodesResult) Reset

func (m *QueryInstalledChaincodesResult) Reset()

func (*QueryInstalledChaincodesResult) String

func (*QueryInstalledChaincodesResult) XXX_DiscardUnknown

func (m *QueryInstalledChaincodesResult) XXX_DiscardUnknown()

func (*QueryInstalledChaincodesResult) XXX_Marshal

func (m *QueryInstalledChaincodesResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryInstalledChaincodesResult) XXX_Merge

func (dst *QueryInstalledChaincodesResult) XXX_Merge(src proto.Message)

func (*QueryInstalledChaincodesResult) XXX_Size

func (m *QueryInstalledChaincodesResult) XXX_Size() int

func (*QueryInstalledChaincodesResult) XXX_Unmarshal

func (m *QueryInstalledChaincodesResult) XXX_Unmarshal(b []byte) error

type QueryInstalledChaincodesResult_InstalledChaincode

type QueryInstalledChaincodesResult_InstalledChaincode struct {
	PackageId            string   `protobuf:"bytes,1,opt,name=package_id,json=packageId,proto3" json:"package_id,omitempty"`
	Label                string   `protobuf:"bytes,2,opt,name=label,proto3" json:"label,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*QueryInstalledChaincodesResult_InstalledChaincode) Descriptor

func (*QueryInstalledChaincodesResult_InstalledChaincode) GetLabel

func (*QueryInstalledChaincodesResult_InstalledChaincode) GetPackageId

func (*QueryInstalledChaincodesResult_InstalledChaincode) ProtoMessage

func (*QueryInstalledChaincodesResult_InstalledChaincode) Reset

func (*QueryInstalledChaincodesResult_InstalledChaincode) String

func (*QueryInstalledChaincodesResult_InstalledChaincode) XXX_DiscardUnknown

func (m *QueryInstalledChaincodesResult_InstalledChaincode) XXX_DiscardUnknown()

func (*QueryInstalledChaincodesResult_InstalledChaincode) XXX_Marshal

func (m *QueryInstalledChaincodesResult_InstalledChaincode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryInstalledChaincodesResult_InstalledChaincode) XXX_Merge

func (*QueryInstalledChaincodesResult_InstalledChaincode) XXX_Size

func (*QueryInstalledChaincodesResult_InstalledChaincode) XXX_Unmarshal

type QueryNamespaceDefinitionsArgs

type QueryNamespaceDefinitionsArgs struct {
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

QueryNamespaceDefinitions is the message used as arguments to `_lifecycle.QueryNamespaceDefinitions`.

func (*QueryNamespaceDefinitionsArgs) Descriptor

func (*QueryNamespaceDefinitionsArgs) Descriptor() ([]byte, []int)

func (*QueryNamespaceDefinitionsArgs) ProtoMessage

func (*QueryNamespaceDefinitionsArgs) ProtoMessage()

func (*QueryNamespaceDefinitionsArgs) Reset

func (m *QueryNamespaceDefinitionsArgs) Reset()

func (*QueryNamespaceDefinitionsArgs) String

func (*QueryNamespaceDefinitionsArgs) XXX_DiscardUnknown

func (m *QueryNamespaceDefinitionsArgs) XXX_DiscardUnknown()

func (*QueryNamespaceDefinitionsArgs) XXX_Marshal

func (m *QueryNamespaceDefinitionsArgs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryNamespaceDefinitionsArgs) XXX_Merge

func (dst *QueryNamespaceDefinitionsArgs) XXX_Merge(src proto.Message)

func (*QueryNamespaceDefinitionsArgs) XXX_Size

func (m *QueryNamespaceDefinitionsArgs) XXX_Size() int

func (*QueryNamespaceDefinitionsArgs) XXX_Unmarshal

func (m *QueryNamespaceDefinitionsArgs) XXX_Unmarshal(b []byte) error

type QueryNamespaceDefinitionsResult

type QueryNamespaceDefinitionsResult struct {
	Namespaces           map[string]*QueryNamespaceDefinitionsResult_Namespace `` /* 161-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}                                              `json:"-"`
	XXX_unrecognized     []byte                                                `json:"-"`
	XXX_sizecache        int32                                                 `json:"-"`
}

QueryNamespaceDefinitions is the message returned by `_lifecycle.QueryNamespaceDefinitions`.

func (*QueryNamespaceDefinitionsResult) Descriptor

func (*QueryNamespaceDefinitionsResult) Descriptor() ([]byte, []int)

func (*QueryNamespaceDefinitionsResult) GetNamespaces

func (*QueryNamespaceDefinitionsResult) ProtoMessage

func (*QueryNamespaceDefinitionsResult) ProtoMessage()

func (*QueryNamespaceDefinitionsResult) Reset

func (*QueryNamespaceDefinitionsResult) String

func (*QueryNamespaceDefinitionsResult) XXX_DiscardUnknown

func (m *QueryNamespaceDefinitionsResult) XXX_DiscardUnknown()

func (*QueryNamespaceDefinitionsResult) XXX_Marshal

func (m *QueryNamespaceDefinitionsResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryNamespaceDefinitionsResult) XXX_Merge

func (dst *QueryNamespaceDefinitionsResult) XXX_Merge(src proto.Message)

func (*QueryNamespaceDefinitionsResult) XXX_Size

func (m *QueryNamespaceDefinitionsResult) XXX_Size() int

func (*QueryNamespaceDefinitionsResult) XXX_Unmarshal

func (m *QueryNamespaceDefinitionsResult) XXX_Unmarshal(b []byte) error

type QueryNamespaceDefinitionsResult_Namespace

type QueryNamespaceDefinitionsResult_Namespace struct {
	Type                 string   `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*QueryNamespaceDefinitionsResult_Namespace) Descriptor

func (*QueryNamespaceDefinitionsResult_Namespace) Descriptor() ([]byte, []int)

func (*QueryNamespaceDefinitionsResult_Namespace) GetType

func (*QueryNamespaceDefinitionsResult_Namespace) ProtoMessage

func (*QueryNamespaceDefinitionsResult_Namespace) Reset

func (*QueryNamespaceDefinitionsResult_Namespace) String

func (*QueryNamespaceDefinitionsResult_Namespace) XXX_DiscardUnknown

func (m *QueryNamespaceDefinitionsResult_Namespace) XXX_DiscardUnknown()

func (*QueryNamespaceDefinitionsResult_Namespace) XXX_Marshal

func (m *QueryNamespaceDefinitionsResult_Namespace) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryNamespaceDefinitionsResult_Namespace) XXX_Merge

func (*QueryNamespaceDefinitionsResult_Namespace) XXX_Size

func (*QueryNamespaceDefinitionsResult_Namespace) XXX_Unmarshal

type StateData

type StateData struct {
	// Types that are valid to be assigned to Type:
	//	*StateData_Int64
	//	*StateData_Bytes
	//	*StateData_String_
	Type                 isStateData_Type `protobuf_oneof:"Type"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

StateData encodes a particular field of a datatype

func (*StateData) Descriptor

func (*StateData) Descriptor() ([]byte, []int)

func (*StateData) GetBytes

func (m *StateData) GetBytes() []byte

func (*StateData) GetInt64

func (m *StateData) GetInt64() int64

func (*StateData) GetString_

func (m *StateData) GetString_() string

func (*StateData) GetType

func (m *StateData) GetType() isStateData_Type

func (*StateData) ProtoMessage

func (*StateData) ProtoMessage()

func (*StateData) Reset

func (m *StateData) Reset()

func (*StateData) String

func (m *StateData) String() string

func (*StateData) XXX_DiscardUnknown

func (m *StateData) XXX_DiscardUnknown()

func (*StateData) XXX_Marshal

func (m *StateData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StateData) XXX_Merge

func (dst *StateData) XXX_Merge(src proto.Message)

func (*StateData) XXX_OneofFuncs

func (*StateData) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{})

XXX_OneofFuncs is for the internal use of the proto package.

func (*StateData) XXX_Size

func (m *StateData) XXX_Size() int

func (*StateData) XXX_Unmarshal

func (m *StateData) XXX_Unmarshal(b []byte) error

type StateData_Bytes

type StateData_Bytes struct {
	Bytes []byte `protobuf:"bytes,2,opt,name=Bytes,proto3,oneof"`
}

type StateData_Int64

type StateData_Int64 struct {
	Int64 int64 `protobuf:"varint,1,opt,name=Int64,proto3,oneof"`
}

type StateData_String_

type StateData_String_ struct {
	String_ string `protobuf:"bytes,3,opt,name=String,proto3,oneof"`
}

type StateMetadata

type StateMetadata struct {
	Datatype             string   `protobuf:"bytes,1,opt,name=datatype,proto3" json:"datatype,omitempty"`
	Fields               []string `protobuf:"bytes,2,rep,name=fields,proto3" json:"fields,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

StateMetadata describes the keys in a namespace. It is necessary because in collections, range scans are not possible during transactions which write. Therefore we must track the keys in our namespace ourselves.

func (*StateMetadata) Descriptor

func (*StateMetadata) Descriptor() ([]byte, []int)

func (*StateMetadata) GetDatatype

func (m *StateMetadata) GetDatatype() string

func (*StateMetadata) GetFields

func (m *StateMetadata) GetFields() []string

func (*StateMetadata) ProtoMessage

func (*StateMetadata) ProtoMessage()

func (*StateMetadata) Reset

func (m *StateMetadata) Reset()

func (*StateMetadata) String

func (m *StateMetadata) String() string

func (*StateMetadata) XXX_DiscardUnknown

func (m *StateMetadata) XXX_DiscardUnknown()

func (*StateMetadata) XXX_Marshal

func (m *StateMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*StateMetadata) XXX_Merge

func (dst *StateMetadata) XXX_Merge(src proto.Message)

func (*StateMetadata) XXX_Size

func (m *StateMetadata) XXX_Size() int

func (*StateMetadata) XXX_Unmarshal

func (m *StateMetadata) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

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