managedblockchainstub

package
v0.6.0 Latest Latest
Warning

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

Go to latest
Published: Jan 31, 2022 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

type Client interface {
	CreateMember(ctx workflow.Context, input *managedblockchain.CreateMemberInput) (*managedblockchain.CreateMemberOutput, error)
	CreateMemberAsync(ctx workflow.Context, input *managedblockchain.CreateMemberInput) *CreateMemberFuture

	CreateNetwork(ctx workflow.Context, input *managedblockchain.CreateNetworkInput) (*managedblockchain.CreateNetworkOutput, error)
	CreateNetworkAsync(ctx workflow.Context, input *managedblockchain.CreateNetworkInput) *CreateNetworkFuture

	CreateNode(ctx workflow.Context, input *managedblockchain.CreateNodeInput) (*managedblockchain.CreateNodeOutput, error)
	CreateNodeAsync(ctx workflow.Context, input *managedblockchain.CreateNodeInput) *CreateNodeFuture

	CreateProposal(ctx workflow.Context, input *managedblockchain.CreateProposalInput) (*managedblockchain.CreateProposalOutput, error)
	CreateProposalAsync(ctx workflow.Context, input *managedblockchain.CreateProposalInput) *CreateProposalFuture

	DeleteMember(ctx workflow.Context, input *managedblockchain.DeleteMemberInput) (*managedblockchain.DeleteMemberOutput, error)
	DeleteMemberAsync(ctx workflow.Context, input *managedblockchain.DeleteMemberInput) *DeleteMemberFuture

	DeleteNode(ctx workflow.Context, input *managedblockchain.DeleteNodeInput) (*managedblockchain.DeleteNodeOutput, error)
	DeleteNodeAsync(ctx workflow.Context, input *managedblockchain.DeleteNodeInput) *DeleteNodeFuture

	GetMember(ctx workflow.Context, input *managedblockchain.GetMemberInput) (*managedblockchain.GetMemberOutput, error)
	GetMemberAsync(ctx workflow.Context, input *managedblockchain.GetMemberInput) *GetMemberFuture

	GetNetwork(ctx workflow.Context, input *managedblockchain.GetNetworkInput) (*managedblockchain.GetNetworkOutput, error)
	GetNetworkAsync(ctx workflow.Context, input *managedblockchain.GetNetworkInput) *GetNetworkFuture

	GetNode(ctx workflow.Context, input *managedblockchain.GetNodeInput) (*managedblockchain.GetNodeOutput, error)
	GetNodeAsync(ctx workflow.Context, input *managedblockchain.GetNodeInput) *GetNodeFuture

	GetProposal(ctx workflow.Context, input *managedblockchain.GetProposalInput) (*managedblockchain.GetProposalOutput, error)
	GetProposalAsync(ctx workflow.Context, input *managedblockchain.GetProposalInput) *GetProposalFuture

	ListInvitations(ctx workflow.Context, input *managedblockchain.ListInvitationsInput) (*managedblockchain.ListInvitationsOutput, error)
	ListInvitationsAsync(ctx workflow.Context, input *managedblockchain.ListInvitationsInput) *ListInvitationsFuture

	ListMembers(ctx workflow.Context, input *managedblockchain.ListMembersInput) (*managedblockchain.ListMembersOutput, error)
	ListMembersAsync(ctx workflow.Context, input *managedblockchain.ListMembersInput) *ListMembersFuture

	ListNetworks(ctx workflow.Context, input *managedblockchain.ListNetworksInput) (*managedblockchain.ListNetworksOutput, error)
	ListNetworksAsync(ctx workflow.Context, input *managedblockchain.ListNetworksInput) *ListNetworksFuture

	ListNodes(ctx workflow.Context, input *managedblockchain.ListNodesInput) (*managedblockchain.ListNodesOutput, error)
	ListNodesAsync(ctx workflow.Context, input *managedblockchain.ListNodesInput) *ListNodesFuture

	ListProposalVotes(ctx workflow.Context, input *managedblockchain.ListProposalVotesInput) (*managedblockchain.ListProposalVotesOutput, error)
	ListProposalVotesAsync(ctx workflow.Context, input *managedblockchain.ListProposalVotesInput) *ListProposalVotesFuture

	ListProposals(ctx workflow.Context, input *managedblockchain.ListProposalsInput) (*managedblockchain.ListProposalsOutput, error)
	ListProposalsAsync(ctx workflow.Context, input *managedblockchain.ListProposalsInput) *ListProposalsFuture

	ListTagsForResource(ctx workflow.Context, input *managedblockchain.ListTagsForResourceInput) (*managedblockchain.ListTagsForResourceOutput, error)
	ListTagsForResourceAsync(ctx workflow.Context, input *managedblockchain.ListTagsForResourceInput) *ListTagsForResourceFuture

	RejectInvitation(ctx workflow.Context, input *managedblockchain.RejectInvitationInput) (*managedblockchain.RejectInvitationOutput, error)
	RejectInvitationAsync(ctx workflow.Context, input *managedblockchain.RejectInvitationInput) *RejectInvitationFuture

	TagResource(ctx workflow.Context, input *managedblockchain.TagResourceInput) (*managedblockchain.TagResourceOutput, error)
	TagResourceAsync(ctx workflow.Context, input *managedblockchain.TagResourceInput) *TagResourceFuture

	UntagResource(ctx workflow.Context, input *managedblockchain.UntagResourceInput) (*managedblockchain.UntagResourceOutput, error)
	UntagResourceAsync(ctx workflow.Context, input *managedblockchain.UntagResourceInput) *UntagResourceFuture

	UpdateMember(ctx workflow.Context, input *managedblockchain.UpdateMemberInput) (*managedblockchain.UpdateMemberOutput, error)
	UpdateMemberAsync(ctx workflow.Context, input *managedblockchain.UpdateMemberInput) *UpdateMemberFuture

	UpdateNode(ctx workflow.Context, input *managedblockchain.UpdateNodeInput) (*managedblockchain.UpdateNodeOutput, error)
	UpdateNodeAsync(ctx workflow.Context, input *managedblockchain.UpdateNodeInput) *UpdateNodeFuture

	VoteOnProposal(ctx workflow.Context, input *managedblockchain.VoteOnProposalInput) (*managedblockchain.VoteOnProposalOutput, error)
	VoteOnProposalAsync(ctx workflow.Context, input *managedblockchain.VoteOnProposalInput) *VoteOnProposalFuture
}

func NewClient

func NewClient() Client

type CreateMemberFuture

type CreateMemberFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateMemberFuture) Get

type CreateNetworkFuture

type CreateNetworkFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateNetworkFuture) Get

type CreateNodeFuture

type CreateNodeFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateNodeFuture) Get

type CreateProposalFuture

type CreateProposalFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*CreateProposalFuture) Get

type DeleteMemberFuture

type DeleteMemberFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteMemberFuture) Get

type DeleteNodeFuture

type DeleteNodeFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*DeleteNodeFuture) Get

type GetMemberFuture

type GetMemberFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetMemberFuture) Get

type GetNetworkFuture

type GetNetworkFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetNetworkFuture) Get

type GetNodeFuture

type GetNodeFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetNodeFuture) Get

type GetProposalFuture

type GetProposalFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*GetProposalFuture) Get

type ListInvitationsFuture

type ListInvitationsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListInvitationsFuture) Get

type ListMembersFuture

type ListMembersFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListMembersFuture) Get

type ListNetworksFuture

type ListNetworksFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListNetworksFuture) Get

type ListNodesFuture

type ListNodesFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListNodesFuture) Get

type ListProposalVotesFuture

type ListProposalVotesFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListProposalVotesFuture) Get

type ListProposalsFuture

type ListProposalsFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListProposalsFuture) Get

type ListTagsForResourceFuture

type ListTagsForResourceFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*ListTagsForResourceFuture) Get

type RejectInvitationFuture

type RejectInvitationFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*RejectInvitationFuture) Get

type TagResourceFuture

type TagResourceFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*TagResourceFuture) Get

type UntagResourceFuture

type UntagResourceFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UntagResourceFuture) Get

type UpdateMemberFuture

type UpdateMemberFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdateMemberFuture) Get

type UpdateNodeFuture

type UpdateNodeFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*UpdateNodeFuture) Get

type VoteOnProposalFuture

type VoteOnProposalFuture struct {
	// public to support Selector.addFuture
	Future workflow.Future
}

func (*VoteOnProposalFuture) Get

Jump to

Keyboard shortcuts

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