servicediscoverystub

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 {
	CreateHttpNamespace(ctx workflow.Context, input *servicediscovery.CreateHttpNamespaceInput) (*servicediscovery.CreateHttpNamespaceOutput, error)
	CreateHttpNamespaceAsync(ctx workflow.Context, input *servicediscovery.CreateHttpNamespaceInput) *CreateHttpNamespaceFuture

	CreatePrivateDnsNamespace(ctx workflow.Context, input *servicediscovery.CreatePrivateDnsNamespaceInput) (*servicediscovery.CreatePrivateDnsNamespaceOutput, error)
	CreatePrivateDnsNamespaceAsync(ctx workflow.Context, input *servicediscovery.CreatePrivateDnsNamespaceInput) *CreatePrivateDnsNamespaceFuture

	CreatePublicDnsNamespace(ctx workflow.Context, input *servicediscovery.CreatePublicDnsNamespaceInput) (*servicediscovery.CreatePublicDnsNamespaceOutput, error)
	CreatePublicDnsNamespaceAsync(ctx workflow.Context, input *servicediscovery.CreatePublicDnsNamespaceInput) *CreatePublicDnsNamespaceFuture

	CreateService(ctx workflow.Context, input *servicediscovery.CreateServiceInput) (*servicediscovery.CreateServiceOutput, error)
	CreateServiceAsync(ctx workflow.Context, input *servicediscovery.CreateServiceInput) *CreateServiceFuture

	DeleteNamespace(ctx workflow.Context, input *servicediscovery.DeleteNamespaceInput) (*servicediscovery.DeleteNamespaceOutput, error)
	DeleteNamespaceAsync(ctx workflow.Context, input *servicediscovery.DeleteNamespaceInput) *DeleteNamespaceFuture

	DeleteService(ctx workflow.Context, input *servicediscovery.DeleteServiceInput) (*servicediscovery.DeleteServiceOutput, error)
	DeleteServiceAsync(ctx workflow.Context, input *servicediscovery.DeleteServiceInput) *DeleteServiceFuture

	DeregisterInstance(ctx workflow.Context, input *servicediscovery.DeregisterInstanceInput) (*servicediscovery.DeregisterInstanceOutput, error)
	DeregisterInstanceAsync(ctx workflow.Context, input *servicediscovery.DeregisterInstanceInput) *DeregisterInstanceFuture

	DiscoverInstances(ctx workflow.Context, input *servicediscovery.DiscoverInstancesInput) (*servicediscovery.DiscoverInstancesOutput, error)
	DiscoverInstancesAsync(ctx workflow.Context, input *servicediscovery.DiscoverInstancesInput) *DiscoverInstancesFuture

	GetInstance(ctx workflow.Context, input *servicediscovery.GetInstanceInput) (*servicediscovery.GetInstanceOutput, error)
	GetInstanceAsync(ctx workflow.Context, input *servicediscovery.GetInstanceInput) *GetInstanceFuture

	GetInstancesHealthStatus(ctx workflow.Context, input *servicediscovery.GetInstancesHealthStatusInput) (*servicediscovery.GetInstancesHealthStatusOutput, error)
	GetInstancesHealthStatusAsync(ctx workflow.Context, input *servicediscovery.GetInstancesHealthStatusInput) *GetInstancesHealthStatusFuture

	GetNamespace(ctx workflow.Context, input *servicediscovery.GetNamespaceInput) (*servicediscovery.GetNamespaceOutput, error)
	GetNamespaceAsync(ctx workflow.Context, input *servicediscovery.GetNamespaceInput) *GetNamespaceFuture

	GetOperation(ctx workflow.Context, input *servicediscovery.GetOperationInput) (*servicediscovery.GetOperationOutput, error)
	GetOperationAsync(ctx workflow.Context, input *servicediscovery.GetOperationInput) *GetOperationFuture

	GetService(ctx workflow.Context, input *servicediscovery.GetServiceInput) (*servicediscovery.GetServiceOutput, error)
	GetServiceAsync(ctx workflow.Context, input *servicediscovery.GetServiceInput) *GetServiceFuture

	ListInstances(ctx workflow.Context, input *servicediscovery.ListInstancesInput) (*servicediscovery.ListInstancesOutput, error)
	ListInstancesAsync(ctx workflow.Context, input *servicediscovery.ListInstancesInput) *ListInstancesFuture

	ListNamespaces(ctx workflow.Context, input *servicediscovery.ListNamespacesInput) (*servicediscovery.ListNamespacesOutput, error)
	ListNamespacesAsync(ctx workflow.Context, input *servicediscovery.ListNamespacesInput) *ListNamespacesFuture

	ListOperations(ctx workflow.Context, input *servicediscovery.ListOperationsInput) (*servicediscovery.ListOperationsOutput, error)
	ListOperationsAsync(ctx workflow.Context, input *servicediscovery.ListOperationsInput) *ListOperationsFuture

	ListServices(ctx workflow.Context, input *servicediscovery.ListServicesInput) (*servicediscovery.ListServicesOutput, error)
	ListServicesAsync(ctx workflow.Context, input *servicediscovery.ListServicesInput) *ListServicesFuture

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

	RegisterInstance(ctx workflow.Context, input *servicediscovery.RegisterInstanceInput) (*servicediscovery.RegisterInstanceOutput, error)
	RegisterInstanceAsync(ctx workflow.Context, input *servicediscovery.RegisterInstanceInput) *RegisterInstanceFuture

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

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

	UpdateInstanceCustomHealthStatus(ctx workflow.Context, input *servicediscovery.UpdateInstanceCustomHealthStatusInput) (*servicediscovery.UpdateInstanceCustomHealthStatusOutput, error)
	UpdateInstanceCustomHealthStatusAsync(ctx workflow.Context, input *servicediscovery.UpdateInstanceCustomHealthStatusInput) *UpdateInstanceCustomHealthStatusFuture

	UpdateService(ctx workflow.Context, input *servicediscovery.UpdateServiceInput) (*servicediscovery.UpdateServiceOutput, error)
	UpdateServiceAsync(ctx workflow.Context, input *servicediscovery.UpdateServiceInput) *UpdateServiceFuture
}

func NewClient

func NewClient() Client

type CreateHttpNamespaceFuture

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

func (*CreateHttpNamespaceFuture) Get

type CreatePrivateDnsNamespaceFuture

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

func (*CreatePrivateDnsNamespaceFuture) Get

type CreatePublicDnsNamespaceFuture

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

func (*CreatePublicDnsNamespaceFuture) Get

type CreateServiceFuture

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

func (*CreateServiceFuture) Get

type DeleteNamespaceFuture

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

func (*DeleteNamespaceFuture) Get

type DeleteServiceFuture

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

func (*DeleteServiceFuture) Get

type DeregisterInstanceFuture

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

func (*DeregisterInstanceFuture) Get

type DiscoverInstancesFuture

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

func (*DiscoverInstancesFuture) Get

type GetInstanceFuture

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

func (*GetInstanceFuture) Get

type GetInstancesHealthStatusFuture

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

func (*GetInstancesHealthStatusFuture) Get

type GetNamespaceFuture

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

func (*GetNamespaceFuture) Get

type GetOperationFuture

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

func (*GetOperationFuture) Get

type GetServiceFuture

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

func (*GetServiceFuture) Get

type ListInstancesFuture

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

func (*ListInstancesFuture) Get

type ListNamespacesFuture

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

func (*ListNamespacesFuture) Get

type ListOperationsFuture

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

func (*ListOperationsFuture) Get

type ListServicesFuture

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

func (*ListServicesFuture) Get

type ListTagsForResourceFuture

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

func (*ListTagsForResourceFuture) Get

type RegisterInstanceFuture

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

func (*RegisterInstanceFuture) 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 UpdateInstanceCustomHealthStatusFuture

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

func (*UpdateInstanceCustomHealthStatusFuture) Get

type UpdateServiceFuture

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

func (*UpdateServiceFuture) Get

Jump to

Keyboard shortcuts

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