codebuildstub

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 BatchDeleteBuildsFuture

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

func (*BatchDeleteBuildsFuture) Get

type BatchGetBuildBatchesFuture

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

func (*BatchGetBuildBatchesFuture) Get

type BatchGetBuildsFuture

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

func (*BatchGetBuildsFuture) Get

type BatchGetProjectsFuture

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

func (*BatchGetProjectsFuture) Get

type BatchGetReportGroupsFuture

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

func (*BatchGetReportGroupsFuture) Get

type BatchGetReportsFuture

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

func (*BatchGetReportsFuture) Get

type Client

type Client interface {
	BatchDeleteBuilds(ctx workflow.Context, input *codebuild.BatchDeleteBuildsInput) (*codebuild.BatchDeleteBuildsOutput, error)
	BatchDeleteBuildsAsync(ctx workflow.Context, input *codebuild.BatchDeleteBuildsInput) *BatchDeleteBuildsFuture

	BatchGetBuildBatches(ctx workflow.Context, input *codebuild.BatchGetBuildBatchesInput) (*codebuild.BatchGetBuildBatchesOutput, error)
	BatchGetBuildBatchesAsync(ctx workflow.Context, input *codebuild.BatchGetBuildBatchesInput) *BatchGetBuildBatchesFuture

	BatchGetBuilds(ctx workflow.Context, input *codebuild.BatchGetBuildsInput) (*codebuild.BatchGetBuildsOutput, error)
	BatchGetBuildsAsync(ctx workflow.Context, input *codebuild.BatchGetBuildsInput) *BatchGetBuildsFuture

	BatchGetProjects(ctx workflow.Context, input *codebuild.BatchGetProjectsInput) (*codebuild.BatchGetProjectsOutput, error)
	BatchGetProjectsAsync(ctx workflow.Context, input *codebuild.BatchGetProjectsInput) *BatchGetProjectsFuture

	BatchGetReportGroups(ctx workflow.Context, input *codebuild.BatchGetReportGroupsInput) (*codebuild.BatchGetReportGroupsOutput, error)
	BatchGetReportGroupsAsync(ctx workflow.Context, input *codebuild.BatchGetReportGroupsInput) *BatchGetReportGroupsFuture

	BatchGetReports(ctx workflow.Context, input *codebuild.BatchGetReportsInput) (*codebuild.BatchGetReportsOutput, error)
	BatchGetReportsAsync(ctx workflow.Context, input *codebuild.BatchGetReportsInput) *BatchGetReportsFuture

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

	CreateReportGroup(ctx workflow.Context, input *codebuild.CreateReportGroupInput) (*codebuild.CreateReportGroupOutput, error)
	CreateReportGroupAsync(ctx workflow.Context, input *codebuild.CreateReportGroupInput) *CreateReportGroupFuture

	CreateWebhook(ctx workflow.Context, input *codebuild.CreateWebhookInput) (*codebuild.CreateWebhookOutput, error)
	CreateWebhookAsync(ctx workflow.Context, input *codebuild.CreateWebhookInput) *CreateWebhookFuture

	DeleteBuildBatch(ctx workflow.Context, input *codebuild.DeleteBuildBatchInput) (*codebuild.DeleteBuildBatchOutput, error)
	DeleteBuildBatchAsync(ctx workflow.Context, input *codebuild.DeleteBuildBatchInput) *DeleteBuildBatchFuture

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

	DeleteReport(ctx workflow.Context, input *codebuild.DeleteReportInput) (*codebuild.DeleteReportOutput, error)
	DeleteReportAsync(ctx workflow.Context, input *codebuild.DeleteReportInput) *DeleteReportFuture

	DeleteReportGroup(ctx workflow.Context, input *codebuild.DeleteReportGroupInput) (*codebuild.DeleteReportGroupOutput, error)
	DeleteReportGroupAsync(ctx workflow.Context, input *codebuild.DeleteReportGroupInput) *DeleteReportGroupFuture

	DeleteResourcePolicy(ctx workflow.Context, input *codebuild.DeleteResourcePolicyInput) (*codebuild.DeleteResourcePolicyOutput, error)
	DeleteResourcePolicyAsync(ctx workflow.Context, input *codebuild.DeleteResourcePolicyInput) *DeleteResourcePolicyFuture

	DeleteSourceCredentials(ctx workflow.Context, input *codebuild.DeleteSourceCredentialsInput) (*codebuild.DeleteSourceCredentialsOutput, error)
	DeleteSourceCredentialsAsync(ctx workflow.Context, input *codebuild.DeleteSourceCredentialsInput) *DeleteSourceCredentialsFuture

	DeleteWebhook(ctx workflow.Context, input *codebuild.DeleteWebhookInput) (*codebuild.DeleteWebhookOutput, error)
	DeleteWebhookAsync(ctx workflow.Context, input *codebuild.DeleteWebhookInput) *DeleteWebhookFuture

	DescribeCodeCoverages(ctx workflow.Context, input *codebuild.DescribeCodeCoveragesInput) (*codebuild.DescribeCodeCoveragesOutput, error)
	DescribeCodeCoveragesAsync(ctx workflow.Context, input *codebuild.DescribeCodeCoveragesInput) *DescribeCodeCoveragesFuture

	DescribeTestCases(ctx workflow.Context, input *codebuild.DescribeTestCasesInput) (*codebuild.DescribeTestCasesOutput, error)
	DescribeTestCasesAsync(ctx workflow.Context, input *codebuild.DescribeTestCasesInput) *DescribeTestCasesFuture

	GetReportGroupTrend(ctx workflow.Context, input *codebuild.GetReportGroupTrendInput) (*codebuild.GetReportGroupTrendOutput, error)
	GetReportGroupTrendAsync(ctx workflow.Context, input *codebuild.GetReportGroupTrendInput) *GetReportGroupTrendFuture

	GetResourcePolicy(ctx workflow.Context, input *codebuild.GetResourcePolicyInput) (*codebuild.GetResourcePolicyOutput, error)
	GetResourcePolicyAsync(ctx workflow.Context, input *codebuild.GetResourcePolicyInput) *GetResourcePolicyFuture

	ImportSourceCredentials(ctx workflow.Context, input *codebuild.ImportSourceCredentialsInput) (*codebuild.ImportSourceCredentialsOutput, error)
	ImportSourceCredentialsAsync(ctx workflow.Context, input *codebuild.ImportSourceCredentialsInput) *ImportSourceCredentialsFuture

	InvalidateProjectCache(ctx workflow.Context, input *codebuild.InvalidateProjectCacheInput) (*codebuild.InvalidateProjectCacheOutput, error)
	InvalidateProjectCacheAsync(ctx workflow.Context, input *codebuild.InvalidateProjectCacheInput) *InvalidateProjectCacheFuture

	ListBuildBatches(ctx workflow.Context, input *codebuild.ListBuildBatchesInput) (*codebuild.ListBuildBatchesOutput, error)
	ListBuildBatchesAsync(ctx workflow.Context, input *codebuild.ListBuildBatchesInput) *ListBuildBatchesFuture

	ListBuildBatchesForProject(ctx workflow.Context, input *codebuild.ListBuildBatchesForProjectInput) (*codebuild.ListBuildBatchesForProjectOutput, error)
	ListBuildBatchesForProjectAsync(ctx workflow.Context, input *codebuild.ListBuildBatchesForProjectInput) *ListBuildBatchesForProjectFuture

	ListBuilds(ctx workflow.Context, input *codebuild.ListBuildsInput) (*codebuild.ListBuildsOutput, error)
	ListBuildsAsync(ctx workflow.Context, input *codebuild.ListBuildsInput) *ListBuildsFuture

	ListBuildsForProject(ctx workflow.Context, input *codebuild.ListBuildsForProjectInput) (*codebuild.ListBuildsForProjectOutput, error)
	ListBuildsForProjectAsync(ctx workflow.Context, input *codebuild.ListBuildsForProjectInput) *ListBuildsForProjectFuture

	ListCuratedEnvironmentImages(ctx workflow.Context, input *codebuild.ListCuratedEnvironmentImagesInput) (*codebuild.ListCuratedEnvironmentImagesOutput, error)
	ListCuratedEnvironmentImagesAsync(ctx workflow.Context, input *codebuild.ListCuratedEnvironmentImagesInput) *ListCuratedEnvironmentImagesFuture

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

	ListReportGroups(ctx workflow.Context, input *codebuild.ListReportGroupsInput) (*codebuild.ListReportGroupsOutput, error)
	ListReportGroupsAsync(ctx workflow.Context, input *codebuild.ListReportGroupsInput) *ListReportGroupsFuture

	ListReports(ctx workflow.Context, input *codebuild.ListReportsInput) (*codebuild.ListReportsOutput, error)
	ListReportsAsync(ctx workflow.Context, input *codebuild.ListReportsInput) *ListReportsFuture

	ListReportsForReportGroup(ctx workflow.Context, input *codebuild.ListReportsForReportGroupInput) (*codebuild.ListReportsForReportGroupOutput, error)
	ListReportsForReportGroupAsync(ctx workflow.Context, input *codebuild.ListReportsForReportGroupInput) *ListReportsForReportGroupFuture

	ListSharedProjects(ctx workflow.Context, input *codebuild.ListSharedProjectsInput) (*codebuild.ListSharedProjectsOutput, error)
	ListSharedProjectsAsync(ctx workflow.Context, input *codebuild.ListSharedProjectsInput) *ListSharedProjectsFuture

	ListSharedReportGroups(ctx workflow.Context, input *codebuild.ListSharedReportGroupsInput) (*codebuild.ListSharedReportGroupsOutput, error)
	ListSharedReportGroupsAsync(ctx workflow.Context, input *codebuild.ListSharedReportGroupsInput) *ListSharedReportGroupsFuture

	ListSourceCredentials(ctx workflow.Context, input *codebuild.ListSourceCredentialsInput) (*codebuild.ListSourceCredentialsOutput, error)
	ListSourceCredentialsAsync(ctx workflow.Context, input *codebuild.ListSourceCredentialsInput) *ListSourceCredentialsFuture

	PutResourcePolicy(ctx workflow.Context, input *codebuild.PutResourcePolicyInput) (*codebuild.PutResourcePolicyOutput, error)
	PutResourcePolicyAsync(ctx workflow.Context, input *codebuild.PutResourcePolicyInput) *PutResourcePolicyFuture

	RetryBuild(ctx workflow.Context, input *codebuild.RetryBuildInput) (*codebuild.RetryBuildOutput, error)
	RetryBuildAsync(ctx workflow.Context, input *codebuild.RetryBuildInput) *RetryBuildFuture

	RetryBuildBatch(ctx workflow.Context, input *codebuild.RetryBuildBatchInput) (*codebuild.RetryBuildBatchOutput, error)
	RetryBuildBatchAsync(ctx workflow.Context, input *codebuild.RetryBuildBatchInput) *RetryBuildBatchFuture

	StartBuild(ctx workflow.Context, input *codebuild.StartBuildInput) (*codebuild.StartBuildOutput, error)
	StartBuildAsync(ctx workflow.Context, input *codebuild.StartBuildInput) *StartBuildFuture

	StartBuildBatch(ctx workflow.Context, input *codebuild.StartBuildBatchInput) (*codebuild.StartBuildBatchOutput, error)
	StartBuildBatchAsync(ctx workflow.Context, input *codebuild.StartBuildBatchInput) *StartBuildBatchFuture

	StopBuild(ctx workflow.Context, input *codebuild.StopBuildInput) (*codebuild.StopBuildOutput, error)
	StopBuildAsync(ctx workflow.Context, input *codebuild.StopBuildInput) *StopBuildFuture

	StopBuildBatch(ctx workflow.Context, input *codebuild.StopBuildBatchInput) (*codebuild.StopBuildBatchOutput, error)
	StopBuildBatchAsync(ctx workflow.Context, input *codebuild.StopBuildBatchInput) *StopBuildBatchFuture

	UpdateProject(ctx workflow.Context, input *codebuild.UpdateProjectInput) (*codebuild.UpdateProjectOutput, error)
	UpdateProjectAsync(ctx workflow.Context, input *codebuild.UpdateProjectInput) *UpdateProjectFuture

	UpdateReportGroup(ctx workflow.Context, input *codebuild.UpdateReportGroupInput) (*codebuild.UpdateReportGroupOutput, error)
	UpdateReportGroupAsync(ctx workflow.Context, input *codebuild.UpdateReportGroupInput) *UpdateReportGroupFuture

	UpdateWebhook(ctx workflow.Context, input *codebuild.UpdateWebhookInput) (*codebuild.UpdateWebhookOutput, error)
	UpdateWebhookAsync(ctx workflow.Context, input *codebuild.UpdateWebhookInput) *UpdateWebhookFuture
}

func NewClient

func NewClient() Client

type CreateProjectFuture

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

func (*CreateProjectFuture) Get

type CreateReportGroupFuture

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

func (*CreateReportGroupFuture) Get

type CreateWebhookFuture

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

func (*CreateWebhookFuture) Get

type DeleteBuildBatchFuture

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

func (*DeleteBuildBatchFuture) Get

type DeleteProjectFuture

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

func (*DeleteProjectFuture) Get

type DeleteReportFuture

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

func (*DeleteReportFuture) Get

type DeleteReportGroupFuture

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

func (*DeleteReportGroupFuture) Get

type DeleteResourcePolicyFuture

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

func (*DeleteResourcePolicyFuture) Get

type DeleteSourceCredentialsFuture

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

func (*DeleteSourceCredentialsFuture) Get

type DeleteWebhookFuture

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

func (*DeleteWebhookFuture) Get

type DescribeCodeCoveragesFuture

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

func (*DescribeCodeCoveragesFuture) Get

type DescribeTestCasesFuture

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

func (*DescribeTestCasesFuture) Get

type GetReportGroupTrendFuture

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

func (*GetReportGroupTrendFuture) Get

type GetResourcePolicyFuture

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

func (*GetResourcePolicyFuture) Get

type ImportSourceCredentialsFuture

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

func (*ImportSourceCredentialsFuture) Get

type InvalidateProjectCacheFuture

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

func (*InvalidateProjectCacheFuture) Get

type ListBuildBatchesForProjectFuture

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

func (*ListBuildBatchesForProjectFuture) Get

type ListBuildBatchesFuture

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

func (*ListBuildBatchesFuture) Get

type ListBuildsForProjectFuture

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

func (*ListBuildsForProjectFuture) Get

type ListBuildsFuture

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

func (*ListBuildsFuture) Get

type ListCuratedEnvironmentImagesFuture

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

func (*ListCuratedEnvironmentImagesFuture) Get

type ListProjectsFuture

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

func (*ListProjectsFuture) Get

type ListReportGroupsFuture

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

func (*ListReportGroupsFuture) Get

type ListReportsForReportGroupFuture

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

func (*ListReportsForReportGroupFuture) Get

type ListReportsFuture

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

func (*ListReportsFuture) Get

type ListSharedProjectsFuture

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

func (*ListSharedProjectsFuture) Get

type ListSharedReportGroupsFuture

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

func (*ListSharedReportGroupsFuture) Get

type ListSourceCredentialsFuture

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

func (*ListSourceCredentialsFuture) Get

type PutResourcePolicyFuture

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

func (*PutResourcePolicyFuture) Get

type RetryBuildBatchFuture

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

func (*RetryBuildBatchFuture) Get

type RetryBuildFuture

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

func (*RetryBuildFuture) Get

type StartBuildBatchFuture

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

func (*StartBuildBatchFuture) Get

type StartBuildFuture

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

func (*StartBuildFuture) Get

type StopBuildBatchFuture

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

func (*StopBuildBatchFuture) Get

type StopBuildFuture

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

func (*StopBuildFuture) Get

type UpdateProjectFuture

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

func (*UpdateProjectFuture) Get

type UpdateReportGroupFuture

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

func (*UpdateReportGroupFuture) Get

type UpdateWebhookFuture

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

func (*UpdateWebhookFuture) Get

Jump to

Keyboard shortcuts

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