applicationinsightsstub

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 {
	CreateApplication(ctx workflow.Context, input *applicationinsights.CreateApplicationInput) (*applicationinsights.CreateApplicationOutput, error)
	CreateApplicationAsync(ctx workflow.Context, input *applicationinsights.CreateApplicationInput) *CreateApplicationFuture

	CreateComponent(ctx workflow.Context, input *applicationinsights.CreateComponentInput) (*applicationinsights.CreateComponentOutput, error)
	CreateComponentAsync(ctx workflow.Context, input *applicationinsights.CreateComponentInput) *CreateComponentFuture

	CreateLogPattern(ctx workflow.Context, input *applicationinsights.CreateLogPatternInput) (*applicationinsights.CreateLogPatternOutput, error)
	CreateLogPatternAsync(ctx workflow.Context, input *applicationinsights.CreateLogPatternInput) *CreateLogPatternFuture

	DeleteApplication(ctx workflow.Context, input *applicationinsights.DeleteApplicationInput) (*applicationinsights.DeleteApplicationOutput, error)
	DeleteApplicationAsync(ctx workflow.Context, input *applicationinsights.DeleteApplicationInput) *DeleteApplicationFuture

	DeleteComponent(ctx workflow.Context, input *applicationinsights.DeleteComponentInput) (*applicationinsights.DeleteComponentOutput, error)
	DeleteComponentAsync(ctx workflow.Context, input *applicationinsights.DeleteComponentInput) *DeleteComponentFuture

	DeleteLogPattern(ctx workflow.Context, input *applicationinsights.DeleteLogPatternInput) (*applicationinsights.DeleteLogPatternOutput, error)
	DeleteLogPatternAsync(ctx workflow.Context, input *applicationinsights.DeleteLogPatternInput) *DeleteLogPatternFuture

	DescribeApplication(ctx workflow.Context, input *applicationinsights.DescribeApplicationInput) (*applicationinsights.DescribeApplicationOutput, error)
	DescribeApplicationAsync(ctx workflow.Context, input *applicationinsights.DescribeApplicationInput) *DescribeApplicationFuture

	DescribeComponent(ctx workflow.Context, input *applicationinsights.DescribeComponentInput) (*applicationinsights.DescribeComponentOutput, error)
	DescribeComponentAsync(ctx workflow.Context, input *applicationinsights.DescribeComponentInput) *DescribeComponentFuture

	DescribeComponentConfiguration(ctx workflow.Context, input *applicationinsights.DescribeComponentConfigurationInput) (*applicationinsights.DescribeComponentConfigurationOutput, error)
	DescribeComponentConfigurationAsync(ctx workflow.Context, input *applicationinsights.DescribeComponentConfigurationInput) *DescribeComponentConfigurationFuture

	DescribeComponentConfigurationRecommendation(ctx workflow.Context, input *applicationinsights.DescribeComponentConfigurationRecommendationInput) (*applicationinsights.DescribeComponentConfigurationRecommendationOutput, error)
	DescribeComponentConfigurationRecommendationAsync(ctx workflow.Context, input *applicationinsights.DescribeComponentConfigurationRecommendationInput) *DescribeComponentConfigurationRecommendationFuture

	DescribeLogPattern(ctx workflow.Context, input *applicationinsights.DescribeLogPatternInput) (*applicationinsights.DescribeLogPatternOutput, error)
	DescribeLogPatternAsync(ctx workflow.Context, input *applicationinsights.DescribeLogPatternInput) *DescribeLogPatternFuture

	DescribeObservation(ctx workflow.Context, input *applicationinsights.DescribeObservationInput) (*applicationinsights.DescribeObservationOutput, error)
	DescribeObservationAsync(ctx workflow.Context, input *applicationinsights.DescribeObservationInput) *DescribeObservationFuture

	DescribeProblem(ctx workflow.Context, input *applicationinsights.DescribeProblemInput) (*applicationinsights.DescribeProblemOutput, error)
	DescribeProblemAsync(ctx workflow.Context, input *applicationinsights.DescribeProblemInput) *DescribeProblemFuture

	DescribeProblemObservations(ctx workflow.Context, input *applicationinsights.DescribeProblemObservationsInput) (*applicationinsights.DescribeProblemObservationsOutput, error)
	DescribeProblemObservationsAsync(ctx workflow.Context, input *applicationinsights.DescribeProblemObservationsInput) *DescribeProblemObservationsFuture

	ListApplications(ctx workflow.Context, input *applicationinsights.ListApplicationsInput) (*applicationinsights.ListApplicationsOutput, error)
	ListApplicationsAsync(ctx workflow.Context, input *applicationinsights.ListApplicationsInput) *ListApplicationsFuture

	ListComponents(ctx workflow.Context, input *applicationinsights.ListComponentsInput) (*applicationinsights.ListComponentsOutput, error)
	ListComponentsAsync(ctx workflow.Context, input *applicationinsights.ListComponentsInput) *ListComponentsFuture

	ListConfigurationHistory(ctx workflow.Context, input *applicationinsights.ListConfigurationHistoryInput) (*applicationinsights.ListConfigurationHistoryOutput, error)
	ListConfigurationHistoryAsync(ctx workflow.Context, input *applicationinsights.ListConfigurationHistoryInput) *ListConfigurationHistoryFuture

	ListLogPatternSets(ctx workflow.Context, input *applicationinsights.ListLogPatternSetsInput) (*applicationinsights.ListLogPatternSetsOutput, error)
	ListLogPatternSetsAsync(ctx workflow.Context, input *applicationinsights.ListLogPatternSetsInput) *ListLogPatternSetsFuture

	ListLogPatterns(ctx workflow.Context, input *applicationinsights.ListLogPatternsInput) (*applicationinsights.ListLogPatternsOutput, error)
	ListLogPatternsAsync(ctx workflow.Context, input *applicationinsights.ListLogPatternsInput) *ListLogPatternsFuture

	ListProblems(ctx workflow.Context, input *applicationinsights.ListProblemsInput) (*applicationinsights.ListProblemsOutput, error)
	ListProblemsAsync(ctx workflow.Context, input *applicationinsights.ListProblemsInput) *ListProblemsFuture

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

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

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

	UpdateApplication(ctx workflow.Context, input *applicationinsights.UpdateApplicationInput) (*applicationinsights.UpdateApplicationOutput, error)
	UpdateApplicationAsync(ctx workflow.Context, input *applicationinsights.UpdateApplicationInput) *UpdateApplicationFuture

	UpdateComponent(ctx workflow.Context, input *applicationinsights.UpdateComponentInput) (*applicationinsights.UpdateComponentOutput, error)
	UpdateComponentAsync(ctx workflow.Context, input *applicationinsights.UpdateComponentInput) *UpdateComponentFuture

	UpdateComponentConfiguration(ctx workflow.Context, input *applicationinsights.UpdateComponentConfigurationInput) (*applicationinsights.UpdateComponentConfigurationOutput, error)
	UpdateComponentConfigurationAsync(ctx workflow.Context, input *applicationinsights.UpdateComponentConfigurationInput) *UpdateComponentConfigurationFuture

	UpdateLogPattern(ctx workflow.Context, input *applicationinsights.UpdateLogPatternInput) (*applicationinsights.UpdateLogPatternOutput, error)
	UpdateLogPatternAsync(ctx workflow.Context, input *applicationinsights.UpdateLogPatternInput) *UpdateLogPatternFuture
}

func NewClient

func NewClient() Client

type CreateApplicationFuture

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

func (*CreateApplicationFuture) Get

type CreateComponentFuture

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

func (*CreateComponentFuture) Get

type CreateLogPatternFuture

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

func (*CreateLogPatternFuture) Get

type DeleteApplicationFuture

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

func (*DeleteApplicationFuture) Get

type DeleteComponentFuture

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

func (*DeleteComponentFuture) Get

type DeleteLogPatternFuture

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

func (*DeleteLogPatternFuture) Get

type DescribeApplicationFuture

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

func (*DescribeApplicationFuture) Get

type DescribeComponentConfigurationFuture

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

type DescribeComponentConfigurationRecommendationFuture

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

type DescribeComponentFuture

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

func (*DescribeComponentFuture) Get

type DescribeLogPatternFuture

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

func (*DescribeLogPatternFuture) Get

type DescribeObservationFuture

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

func (*DescribeObservationFuture) Get

type DescribeProblemFuture

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

func (*DescribeProblemFuture) Get

type DescribeProblemObservationsFuture

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

func (*DescribeProblemObservationsFuture) Get

type ListApplicationsFuture

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

func (*ListApplicationsFuture) Get

type ListComponentsFuture

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

func (*ListComponentsFuture) Get

type ListConfigurationHistoryFuture

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

func (*ListConfigurationHistoryFuture) Get

type ListLogPatternSetsFuture

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

func (*ListLogPatternSetsFuture) Get

type ListLogPatternsFuture

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

func (*ListLogPatternsFuture) Get

type ListProblemsFuture

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

func (*ListProblemsFuture) Get

type ListTagsForResourceFuture

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

func (*ListTagsForResourceFuture) 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 UpdateApplicationFuture

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

func (*UpdateApplicationFuture) Get

type UpdateComponentConfigurationFuture

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

func (*UpdateComponentConfigurationFuture) Get

type UpdateComponentFuture

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

func (*UpdateComponentFuture) Get

type UpdateLogPatternFuture

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

func (*UpdateLogPatternFuture) Get

Jump to

Keyboard shortcuts

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