dataexchangestub

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 CancelJobFuture

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

func (*CancelJobFuture) Get

type Client

type Client interface {
	CancelJob(ctx workflow.Context, input *dataexchange.CancelJobInput) (*dataexchange.CancelJobOutput, error)
	CancelJobAsync(ctx workflow.Context, input *dataexchange.CancelJobInput) *CancelJobFuture

	CreateDataSet(ctx workflow.Context, input *dataexchange.CreateDataSetInput) (*dataexchange.CreateDataSetOutput, error)
	CreateDataSetAsync(ctx workflow.Context, input *dataexchange.CreateDataSetInput) *CreateDataSetFuture

	CreateJob(ctx workflow.Context, input *dataexchange.CreateJobInput) (*dataexchange.CreateJobOutput, error)
	CreateJobAsync(ctx workflow.Context, input *dataexchange.CreateJobInput) *CreateJobFuture

	CreateRevision(ctx workflow.Context, input *dataexchange.CreateRevisionInput) (*dataexchange.CreateRevisionOutput, error)
	CreateRevisionAsync(ctx workflow.Context, input *dataexchange.CreateRevisionInput) *CreateRevisionFuture

	DeleteAsset(ctx workflow.Context, input *dataexchange.DeleteAssetInput) (*dataexchange.DeleteAssetOutput, error)
	DeleteAssetAsync(ctx workflow.Context, input *dataexchange.DeleteAssetInput) *DeleteAssetFuture

	DeleteDataSet(ctx workflow.Context, input *dataexchange.DeleteDataSetInput) (*dataexchange.DeleteDataSetOutput, error)
	DeleteDataSetAsync(ctx workflow.Context, input *dataexchange.DeleteDataSetInput) *DeleteDataSetFuture

	DeleteRevision(ctx workflow.Context, input *dataexchange.DeleteRevisionInput) (*dataexchange.DeleteRevisionOutput, error)
	DeleteRevisionAsync(ctx workflow.Context, input *dataexchange.DeleteRevisionInput) *DeleteRevisionFuture

	GetAsset(ctx workflow.Context, input *dataexchange.GetAssetInput) (*dataexchange.GetAssetOutput, error)
	GetAssetAsync(ctx workflow.Context, input *dataexchange.GetAssetInput) *GetAssetFuture

	GetDataSet(ctx workflow.Context, input *dataexchange.GetDataSetInput) (*dataexchange.GetDataSetOutput, error)
	GetDataSetAsync(ctx workflow.Context, input *dataexchange.GetDataSetInput) *GetDataSetFuture

	GetJob(ctx workflow.Context, input *dataexchange.GetJobInput) (*dataexchange.GetJobOutput, error)
	GetJobAsync(ctx workflow.Context, input *dataexchange.GetJobInput) *GetJobFuture

	GetRevision(ctx workflow.Context, input *dataexchange.GetRevisionInput) (*dataexchange.GetRevisionOutput, error)
	GetRevisionAsync(ctx workflow.Context, input *dataexchange.GetRevisionInput) *GetRevisionFuture

	ListDataSetRevisions(ctx workflow.Context, input *dataexchange.ListDataSetRevisionsInput) (*dataexchange.ListDataSetRevisionsOutput, error)
	ListDataSetRevisionsAsync(ctx workflow.Context, input *dataexchange.ListDataSetRevisionsInput) *ListDataSetRevisionsFuture

	ListDataSets(ctx workflow.Context, input *dataexchange.ListDataSetsInput) (*dataexchange.ListDataSetsOutput, error)
	ListDataSetsAsync(ctx workflow.Context, input *dataexchange.ListDataSetsInput) *ListDataSetsFuture

	ListJobs(ctx workflow.Context, input *dataexchange.ListJobsInput) (*dataexchange.ListJobsOutput, error)
	ListJobsAsync(ctx workflow.Context, input *dataexchange.ListJobsInput) *ListJobsFuture

	ListRevisionAssets(ctx workflow.Context, input *dataexchange.ListRevisionAssetsInput) (*dataexchange.ListRevisionAssetsOutput, error)
	ListRevisionAssetsAsync(ctx workflow.Context, input *dataexchange.ListRevisionAssetsInput) *ListRevisionAssetsFuture

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

	StartJob(ctx workflow.Context, input *dataexchange.StartJobInput) (*dataexchange.StartJobOutput, error)
	StartJobAsync(ctx workflow.Context, input *dataexchange.StartJobInput) *StartJobFuture

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

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

	UpdateAsset(ctx workflow.Context, input *dataexchange.UpdateAssetInput) (*dataexchange.UpdateAssetOutput, error)
	UpdateAssetAsync(ctx workflow.Context, input *dataexchange.UpdateAssetInput) *UpdateAssetFuture

	UpdateDataSet(ctx workflow.Context, input *dataexchange.UpdateDataSetInput) (*dataexchange.UpdateDataSetOutput, error)
	UpdateDataSetAsync(ctx workflow.Context, input *dataexchange.UpdateDataSetInput) *UpdateDataSetFuture

	UpdateRevision(ctx workflow.Context, input *dataexchange.UpdateRevisionInput) (*dataexchange.UpdateRevisionOutput, error)
	UpdateRevisionAsync(ctx workflow.Context, input *dataexchange.UpdateRevisionInput) *UpdateRevisionFuture
}

func NewClient

func NewClient() Client

type CreateDataSetFuture

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

func (*CreateDataSetFuture) Get

type CreateJobFuture

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

func (*CreateJobFuture) Get

type CreateRevisionFuture

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

func (*CreateRevisionFuture) Get

type DeleteAssetFuture

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

func (*DeleteAssetFuture) Get

type DeleteDataSetFuture

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

func (*DeleteDataSetFuture) Get

type DeleteRevisionFuture

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

func (*DeleteRevisionFuture) Get

type GetAssetFuture

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

func (*GetAssetFuture) Get

type GetDataSetFuture

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

func (*GetDataSetFuture) Get

type GetJobFuture

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

func (*GetJobFuture) Get

type GetRevisionFuture

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

func (*GetRevisionFuture) Get

type ListDataSetRevisionsFuture

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

func (*ListDataSetRevisionsFuture) Get

type ListDataSetsFuture

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

func (*ListDataSetsFuture) Get

type ListJobsFuture

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

func (*ListJobsFuture) Get

type ListRevisionAssetsFuture

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

func (*ListRevisionAssetsFuture) Get

type ListTagsForResourceFuture

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

func (*ListTagsForResourceFuture) Get

type StartJobFuture

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

func (*StartJobFuture) 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 UpdateAssetFuture

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

func (*UpdateAssetFuture) Get

type UpdateDataSetFuture

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

func (*UpdateDataSetFuture) Get

type UpdateRevisionFuture

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

func (*UpdateRevisionFuture) Get

Jump to

Keyboard shortcuts

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