Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type WorkflowAccessKeysClientAPI ¶
type WorkflowAccessKeysClientAPI interface { CreateOrUpdate(ctx context.Context, resourceGroupName string, workflowName string, accessKeyName string, workflowAccesskey logic.WorkflowAccessKey) (result logic.WorkflowAccessKey, err error) Delete(ctx context.Context, resourceGroupName string, workflowName string, accessKeyName string) (result autorest.Response, err error) Get(ctx context.Context, resourceGroupName string, workflowName string, accessKeyName string) (result logic.WorkflowAccessKey, err error) List(ctx context.Context, resourceGroupName string, workflowName string, top *int32) (result logic.WorkflowAccessKeyListResultPage, err error) ListSecretKeys(ctx context.Context, resourceGroupName string, workflowName string, accessKeyName string) (result logic.WorkflowSecretKeys, err error) RegenerateSecretKey(ctx context.Context, resourceGroupName string, workflowName string, accessKeyName string, parameters logic.RegenerateSecretKeyParameters) (result logic.WorkflowSecretKeys, err error) }
WorkflowAccessKeysClientAPI contains the set of methods on the WorkflowAccessKeysClient type.
type WorkflowRunActionsClientAPI ¶
type WorkflowRunActionsClientAPI interface { Get(ctx context.Context, resourceGroupName string, workflowName string, runName string, actionName string) (result logic.WorkflowRunAction, err error) List(ctx context.Context, resourceGroupName string, workflowName string, runName string, top *int32, filter string) (result logic.WorkflowRunActionListResultPage, err error) }
WorkflowRunActionsClientAPI contains the set of methods on the WorkflowRunActionsClient type.
type WorkflowRunsClientAPI ¶
type WorkflowRunsClientAPI interface { Cancel(ctx context.Context, resourceGroupName string, workflowName string, runName string) (result autorest.Response, err error) Get(ctx context.Context, resourceGroupName string, workflowName string, runName string) (result logic.WorkflowRun, err error) List(ctx context.Context, resourceGroupName string, workflowName string, top *int32, filter string) (result logic.WorkflowRunListResultPage, err error) }
WorkflowRunsClientAPI contains the set of methods on the WorkflowRunsClient type.
type WorkflowTriggerHistoriesClientAPI ¶
type WorkflowTriggerHistoriesClientAPI interface { Get(ctx context.Context, resourceGroupName string, workflowName string, triggerName string, historyName string) (result logic.WorkflowTriggerHistory, err error) List(ctx context.Context, resourceGroupName string, workflowName string, triggerName string, top *int32, filter string) (result logic.WorkflowTriggerHistoryListResultPage, err error) }
WorkflowTriggerHistoriesClientAPI contains the set of methods on the WorkflowTriggerHistoriesClient type.
type WorkflowTriggersClientAPI ¶
type WorkflowTriggersClientAPI interface { Get(ctx context.Context, resourceGroupName string, workflowName string, triggerName string) (result logic.WorkflowTrigger, err error) List(ctx context.Context, resourceGroupName string, workflowName string, top *int32, filter string) (result logic.WorkflowTriggerListResultPage, err error) Run(ctx context.Context, resourceGroupName string, workflowName string, triggerName string) (result autorest.Response, err error) }
WorkflowTriggersClientAPI contains the set of methods on the WorkflowTriggersClient type.
type WorkflowVersionsClientAPI ¶
type WorkflowVersionsClientAPI interface {
Get(ctx context.Context, resourceGroupName string, workflowName string, versionID string) (result logic.WorkflowVersion, err error)
}
WorkflowVersionsClientAPI contains the set of methods on the WorkflowVersionsClient type.
type WorkflowsClientAPI ¶
type WorkflowsClientAPI interface { CreateOrUpdate(ctx context.Context, resourceGroupName string, workflowName string, workflow logic.Workflow) (result logic.Workflow, err error) Delete(ctx context.Context, resourceGroupName string, workflowName string) (result autorest.Response, err error) Disable(ctx context.Context, resourceGroupName string, workflowName string) (result autorest.Response, err error) Enable(ctx context.Context, resourceGroupName string, workflowName string) (result autorest.Response, err error) Get(ctx context.Context, resourceGroupName string, workflowName string) (result logic.Workflow, err error) ListByResourceGroup(ctx context.Context, resourceGroupName string, top *int32, filter string) (result logic.WorkflowListResultPage, err error) ListBySubscription(ctx context.Context, top *int32, filter string) (result logic.WorkflowListResultPage, err error) Run(ctx context.Context, resourceGroupName string, workflowName string, parameters logic.RunWorkflowParameters) (result logic.WorkflowsRunFuture, err error) Update(ctx context.Context, resourceGroupName string, workflowName string, workflow logic.Workflow) (result logic.Workflow, err error) Validate(ctx context.Context, resourceGroupName string, workflowName string, workflow logic.Workflow) (result autorest.Response, err error) }
WorkflowsClientAPI contains the set of methods on the WorkflowsClient type.