lookoutforvisionstub

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 {
	CreateDataset(ctx workflow.Context, input *lookoutforvision.CreateDatasetInput) (*lookoutforvision.CreateDatasetOutput, error)
	CreateDatasetAsync(ctx workflow.Context, input *lookoutforvision.CreateDatasetInput) *CreateDatasetFuture

	CreateModel(ctx workflow.Context, input *lookoutforvision.CreateModelInput) (*lookoutforvision.CreateModelOutput, error)
	CreateModelAsync(ctx workflow.Context, input *lookoutforvision.CreateModelInput) *CreateModelFuture

	CreateProject(ctx workflow.Context, input *lookoutforvision.CreateProjectInput) (*lookoutforvision.CreateProjectOutput, error)
	CreateProjectAsync(ctx workflow.Context, input *lookoutforvision.CreateProjectInput) *CreateProjectFuture

	DeleteDataset(ctx workflow.Context, input *lookoutforvision.DeleteDatasetInput) (*lookoutforvision.DeleteDatasetOutput, error)
	DeleteDatasetAsync(ctx workflow.Context, input *lookoutforvision.DeleteDatasetInput) *DeleteDatasetFuture

	DeleteModel(ctx workflow.Context, input *lookoutforvision.DeleteModelInput) (*lookoutforvision.DeleteModelOutput, error)
	DeleteModelAsync(ctx workflow.Context, input *lookoutforvision.DeleteModelInput) *DeleteModelFuture

	DeleteProject(ctx workflow.Context, input *lookoutforvision.DeleteProjectInput) (*lookoutforvision.DeleteProjectOutput, error)
	DeleteProjectAsync(ctx workflow.Context, input *lookoutforvision.DeleteProjectInput) *DeleteProjectFuture

	DescribeDataset(ctx workflow.Context, input *lookoutforvision.DescribeDatasetInput) (*lookoutforvision.DescribeDatasetOutput, error)
	DescribeDatasetAsync(ctx workflow.Context, input *lookoutforvision.DescribeDatasetInput) *DescribeDatasetFuture

	DescribeModel(ctx workflow.Context, input *lookoutforvision.DescribeModelInput) (*lookoutforvision.DescribeModelOutput, error)
	DescribeModelAsync(ctx workflow.Context, input *lookoutforvision.DescribeModelInput) *DescribeModelFuture

	DescribeProject(ctx workflow.Context, input *lookoutforvision.DescribeProjectInput) (*lookoutforvision.DescribeProjectOutput, error)
	DescribeProjectAsync(ctx workflow.Context, input *lookoutforvision.DescribeProjectInput) *DescribeProjectFuture

	DetectAnomalies(ctx workflow.Context, input *lookoutforvision.DetectAnomaliesInput) (*lookoutforvision.DetectAnomaliesOutput, error)
	DetectAnomaliesAsync(ctx workflow.Context, input *lookoutforvision.DetectAnomaliesInput) *DetectAnomaliesFuture

	ListDatasetEntries(ctx workflow.Context, input *lookoutforvision.ListDatasetEntriesInput) (*lookoutforvision.ListDatasetEntriesOutput, error)
	ListDatasetEntriesAsync(ctx workflow.Context, input *lookoutforvision.ListDatasetEntriesInput) *ListDatasetEntriesFuture

	ListModels(ctx workflow.Context, input *lookoutforvision.ListModelsInput) (*lookoutforvision.ListModelsOutput, error)
	ListModelsAsync(ctx workflow.Context, input *lookoutforvision.ListModelsInput) *ListModelsFuture

	ListProjects(ctx workflow.Context, input *lookoutforvision.ListProjectsInput) (*lookoutforvision.ListProjectsOutput, error)
	ListProjectsAsync(ctx workflow.Context, input *lookoutforvision.ListProjectsInput) *ListProjectsFuture

	StartModel(ctx workflow.Context, input *lookoutforvision.StartModelInput) (*lookoutforvision.StartModelOutput, error)
	StartModelAsync(ctx workflow.Context, input *lookoutforvision.StartModelInput) *StartModelFuture

	StopModel(ctx workflow.Context, input *lookoutforvision.StopModelInput) (*lookoutforvision.StopModelOutput, error)
	StopModelAsync(ctx workflow.Context, input *lookoutforvision.StopModelInput) *StopModelFuture

	UpdateDatasetEntries(ctx workflow.Context, input *lookoutforvision.UpdateDatasetEntriesInput) (*lookoutforvision.UpdateDatasetEntriesOutput, error)
	UpdateDatasetEntriesAsync(ctx workflow.Context, input *lookoutforvision.UpdateDatasetEntriesInput) *UpdateDatasetEntriesFuture
}

func NewClient

func NewClient() Client

type CreateDatasetFuture

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

func (*CreateDatasetFuture) Get

type CreateModelFuture

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

func (*CreateModelFuture) Get

type CreateProjectFuture

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

func (*CreateProjectFuture) Get

type DeleteDatasetFuture

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

func (*DeleteDatasetFuture) Get

type DeleteModelFuture

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

func (*DeleteModelFuture) Get

type DeleteProjectFuture

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

func (*DeleteProjectFuture) Get

type DescribeDatasetFuture

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

func (*DescribeDatasetFuture) Get

type DescribeModelFuture

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

func (*DescribeModelFuture) Get

type DescribeProjectFuture

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

func (*DescribeProjectFuture) Get

type DetectAnomaliesFuture

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

func (*DetectAnomaliesFuture) Get

type ListDatasetEntriesFuture

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

func (*ListDatasetEntriesFuture) Get

type ListModelsFuture

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

func (*ListModelsFuture) Get

type ListProjectsFuture

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

func (*ListProjectsFuture) Get

type StartModelFuture

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

func (*StartModelFuture) Get

type StopModelFuture

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

func (*StopModelFuture) Get

type UpdateDatasetEntriesFuture

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

func (*UpdateDatasetEntriesFuture) Get

Jump to

Keyboard shortcuts

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