groundstationstub

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 CancelContactFuture

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

func (*CancelContactFuture) Get

type Client

type Client interface {
	CancelContact(ctx workflow.Context, input *groundstation.CancelContactInput) (*groundstation.CancelContactOutput, error)
	CancelContactAsync(ctx workflow.Context, input *groundstation.CancelContactInput) *CancelContactFuture

	CreateConfig(ctx workflow.Context, input *groundstation.CreateConfigInput) (*groundstation.CreateConfigOutput, error)
	CreateConfigAsync(ctx workflow.Context, input *groundstation.CreateConfigInput) *CreateConfigFuture

	CreateDataflowEndpointGroup(ctx workflow.Context, input *groundstation.CreateDataflowEndpointGroupInput) (*groundstation.CreateDataflowEndpointGroupOutput, error)
	CreateDataflowEndpointGroupAsync(ctx workflow.Context, input *groundstation.CreateDataflowEndpointGroupInput) *CreateDataflowEndpointGroupFuture

	CreateMissionProfile(ctx workflow.Context, input *groundstation.CreateMissionProfileInput) (*groundstation.CreateMissionProfileOutput, error)
	CreateMissionProfileAsync(ctx workflow.Context, input *groundstation.CreateMissionProfileInput) *CreateMissionProfileFuture

	DeleteConfig(ctx workflow.Context, input *groundstation.DeleteConfigInput) (*groundstation.DeleteConfigOutput, error)
	DeleteConfigAsync(ctx workflow.Context, input *groundstation.DeleteConfigInput) *DeleteConfigFuture

	DeleteDataflowEndpointGroup(ctx workflow.Context, input *groundstation.DeleteDataflowEndpointGroupInput) (*groundstation.DeleteDataflowEndpointGroupOutput, error)
	DeleteDataflowEndpointGroupAsync(ctx workflow.Context, input *groundstation.DeleteDataflowEndpointGroupInput) *DeleteDataflowEndpointGroupFuture

	DeleteMissionProfile(ctx workflow.Context, input *groundstation.DeleteMissionProfileInput) (*groundstation.DeleteMissionProfileOutput, error)
	DeleteMissionProfileAsync(ctx workflow.Context, input *groundstation.DeleteMissionProfileInput) *DeleteMissionProfileFuture

	DescribeContact(ctx workflow.Context, input *groundstation.DescribeContactInput) (*groundstation.DescribeContactOutput, error)
	DescribeContactAsync(ctx workflow.Context, input *groundstation.DescribeContactInput) *DescribeContactFuture

	GetConfig(ctx workflow.Context, input *groundstation.GetConfigInput) (*groundstation.GetConfigOutput, error)
	GetConfigAsync(ctx workflow.Context, input *groundstation.GetConfigInput) *GetConfigFuture

	GetDataflowEndpointGroup(ctx workflow.Context, input *groundstation.GetDataflowEndpointGroupInput) (*groundstation.GetDataflowEndpointGroupOutput, error)
	GetDataflowEndpointGroupAsync(ctx workflow.Context, input *groundstation.GetDataflowEndpointGroupInput) *GetDataflowEndpointGroupFuture

	GetMinuteUsage(ctx workflow.Context, input *groundstation.GetMinuteUsageInput) (*groundstation.GetMinuteUsageOutput, error)
	GetMinuteUsageAsync(ctx workflow.Context, input *groundstation.GetMinuteUsageInput) *GetMinuteUsageFuture

	GetMissionProfile(ctx workflow.Context, input *groundstation.GetMissionProfileInput) (*groundstation.GetMissionProfileOutput, error)
	GetMissionProfileAsync(ctx workflow.Context, input *groundstation.GetMissionProfileInput) *GetMissionProfileFuture

	GetSatellite(ctx workflow.Context, input *groundstation.GetSatelliteInput) (*groundstation.GetSatelliteOutput, error)
	GetSatelliteAsync(ctx workflow.Context, input *groundstation.GetSatelliteInput) *GetSatelliteFuture

	ListConfigs(ctx workflow.Context, input *groundstation.ListConfigsInput) (*groundstation.ListConfigsOutput, error)
	ListConfigsAsync(ctx workflow.Context, input *groundstation.ListConfigsInput) *ListConfigsFuture

	ListContacts(ctx workflow.Context, input *groundstation.ListContactsInput) (*groundstation.ListContactsOutput, error)
	ListContactsAsync(ctx workflow.Context, input *groundstation.ListContactsInput) *ListContactsFuture

	ListDataflowEndpointGroups(ctx workflow.Context, input *groundstation.ListDataflowEndpointGroupsInput) (*groundstation.ListDataflowEndpointGroupsOutput, error)
	ListDataflowEndpointGroupsAsync(ctx workflow.Context, input *groundstation.ListDataflowEndpointGroupsInput) *ListDataflowEndpointGroupsFuture

	ListGroundStations(ctx workflow.Context, input *groundstation.ListGroundStationsInput) (*groundstation.ListGroundStationsOutput, error)
	ListGroundStationsAsync(ctx workflow.Context, input *groundstation.ListGroundStationsInput) *ListGroundStationsFuture

	ListMissionProfiles(ctx workflow.Context, input *groundstation.ListMissionProfilesInput) (*groundstation.ListMissionProfilesOutput, error)
	ListMissionProfilesAsync(ctx workflow.Context, input *groundstation.ListMissionProfilesInput) *ListMissionProfilesFuture

	ListSatellites(ctx workflow.Context, input *groundstation.ListSatellitesInput) (*groundstation.ListSatellitesOutput, error)
	ListSatellitesAsync(ctx workflow.Context, input *groundstation.ListSatellitesInput) *ListSatellitesFuture

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

	ReserveContact(ctx workflow.Context, input *groundstation.ReserveContactInput) (*groundstation.ReserveContactOutput, error)
	ReserveContactAsync(ctx workflow.Context, input *groundstation.ReserveContactInput) *ReserveContactFuture

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

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

	UpdateConfig(ctx workflow.Context, input *groundstation.UpdateConfigInput) (*groundstation.UpdateConfigOutput, error)
	UpdateConfigAsync(ctx workflow.Context, input *groundstation.UpdateConfigInput) *UpdateConfigFuture

	UpdateMissionProfile(ctx workflow.Context, input *groundstation.UpdateMissionProfileInput) (*groundstation.UpdateMissionProfileOutput, error)
	UpdateMissionProfileAsync(ctx workflow.Context, input *groundstation.UpdateMissionProfileInput) *UpdateMissionProfileFuture
}

func NewClient

func NewClient() Client

type CreateConfigFuture

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

func (*CreateConfigFuture) Get

type CreateDataflowEndpointGroupFuture

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

func (*CreateDataflowEndpointGroupFuture) Get

type CreateMissionProfileFuture

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

func (*CreateMissionProfileFuture) Get

type DeleteConfigFuture

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

func (*DeleteConfigFuture) Get

type DeleteDataflowEndpointGroupFuture

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

func (*DeleteDataflowEndpointGroupFuture) Get

type DeleteMissionProfileFuture

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

func (*DeleteMissionProfileFuture) Get

type DescribeContactFuture

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

func (*DescribeContactFuture) Get

type GetConfigFuture

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

func (*GetConfigFuture) Get

type GetDataflowEndpointGroupFuture

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

func (*GetDataflowEndpointGroupFuture) Get

type GetMinuteUsageFuture

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

func (*GetMinuteUsageFuture) Get

type GetMissionProfileFuture

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

func (*GetMissionProfileFuture) Get

type GetSatelliteFuture

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

func (*GetSatelliteFuture) Get

type ListConfigsFuture

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

func (*ListConfigsFuture) Get

type ListContactsFuture

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

func (*ListContactsFuture) Get

type ListDataflowEndpointGroupsFuture

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

func (*ListDataflowEndpointGroupsFuture) Get

type ListGroundStationsFuture

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

func (*ListGroundStationsFuture) Get

type ListMissionProfilesFuture

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

func (*ListMissionProfilesFuture) Get

type ListSatellitesFuture

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

func (*ListSatellitesFuture) Get

type ListTagsForResourceFuture

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

func (*ListTagsForResourceFuture) Get

type ReserveContactFuture

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

func (*ReserveContactFuture) 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 UpdateConfigFuture

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

func (*UpdateConfigFuture) Get

type UpdateMissionProfileFuture

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

func (*UpdateMissionProfileFuture) Get

Jump to

Keyboard shortcuts

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