import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class Action extends pulumi.CustomResource { /** * Get an existing Action resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ActionState, opts?: pulumi.CustomResourceOptions): Action; /** * Returns true if the given object is an instance of Action. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Action; /** * Whether members can view the runs of this action */ readonly allowAnyoneToViewRuns: pulumi.Output; /** * The email notification of the approval */ readonly approvalEmailNotification: pulumi.Output; /** * The webhook notification of the approval */ readonly approvalWebhookNotification: pulumi.Output; /** * Automation trigger for the action */ readonly automationTrigger: pulumi.Output; /** * Azure DevOps invocation method */ readonly azureMethod: pulumi.Output; /** * The blueprint identifier the action relates to * * @deprecated Action is not attached to blueprint anymore. This value is ignored */ readonly blueprint: pulumi.Output; /** * Description */ readonly description: pulumi.Output; /** * GitHub invocation method */ readonly githubMethod: pulumi.Output; /** * Gitlab invocation method */ readonly gitlabMethod: pulumi.Output; /** * Icon */ readonly icon: pulumi.Output; /** * Identifier */ readonly identifier: pulumi.Output; /** * Integration invocation method (handled by Ocean integrations) */ readonly integrationMethod: pulumi.Output; /** * Kafka invocation method */ readonly kafkaMethod: pulumi.Output; /** * Publish action */ readonly publish: pulumi.Output; /** * Require approval before invoking the action. Can be one of "true", "false", "ANY" or "ALL" */ readonly requiredApproval: pulumi.Output; /** * Self service trigger for the action. Note: you can define only one of `orderProperties` and `steps` */ readonly selfServiceTrigger: pulumi.Output; /** * Title */ readonly title: pulumi.Output; /** * Upsert Entity invocation method */ readonly upsertEntityMethod: pulumi.Output; /** * Webhook invocation method */ readonly webhookMethod: pulumi.Output; /** * Create a Action resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ActionArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Action resources. */ export interface ActionState { /** * Whether members can view the runs of this action */ allowAnyoneToViewRuns?: pulumi.Input; /** * The email notification of the approval */ approvalEmailNotification?: pulumi.Input; /** * The webhook notification of the approval */ approvalWebhookNotification?: pulumi.Input; /** * Automation trigger for the action */ automationTrigger?: pulumi.Input; /** * Azure DevOps invocation method */ azureMethod?: pulumi.Input; /** * The blueprint identifier the action relates to * * @deprecated Action is not attached to blueprint anymore. This value is ignored */ blueprint?: pulumi.Input; /** * Description */ description?: pulumi.Input; /** * GitHub invocation method */ githubMethod?: pulumi.Input; /** * Gitlab invocation method */ gitlabMethod?: pulumi.Input; /** * Icon */ icon?: pulumi.Input; /** * Identifier */ identifier?: pulumi.Input; /** * Integration invocation method (handled by Ocean integrations) */ integrationMethod?: pulumi.Input; /** * Kafka invocation method */ kafkaMethod?: pulumi.Input; /** * Publish action */ publish?: pulumi.Input; /** * Require approval before invoking the action. Can be one of "true", "false", "ANY" or "ALL" */ requiredApproval?: pulumi.Input; /** * Self service trigger for the action. Note: you can define only one of `orderProperties` and `steps` */ selfServiceTrigger?: pulumi.Input; /** * Title */ title?: pulumi.Input; /** * Upsert Entity invocation method */ upsertEntityMethod?: pulumi.Input; /** * Webhook invocation method */ webhookMethod?: pulumi.Input; } /** * The set of arguments for constructing a Action resource. */ export interface ActionArgs { /** * Whether members can view the runs of this action */ allowAnyoneToViewRuns?: pulumi.Input; /** * The email notification of the approval */ approvalEmailNotification?: pulumi.Input; /** * The webhook notification of the approval */ approvalWebhookNotification?: pulumi.Input; /** * Automation trigger for the action */ automationTrigger?: pulumi.Input; /** * Azure DevOps invocation method */ azureMethod?: pulumi.Input; /** * The blueprint identifier the action relates to * * @deprecated Action is not attached to blueprint anymore. This value is ignored */ blueprint?: pulumi.Input; /** * Description */ description?: pulumi.Input; /** * GitHub invocation method */ githubMethod?: pulumi.Input; /** * Gitlab invocation method */ gitlabMethod?: pulumi.Input; /** * Icon */ icon?: pulumi.Input; /** * Identifier */ identifier: pulumi.Input; /** * Integration invocation method (handled by Ocean integrations) */ integrationMethod?: pulumi.Input; /** * Kafka invocation method */ kafkaMethod?: pulumi.Input; /** * Publish action */ publish?: pulumi.Input; /** * Require approval before invoking the action. Can be one of "true", "false", "ANY" or "ALL" */ requiredApproval?: pulumi.Input; /** * Self service trigger for the action. Note: you can define only one of `orderProperties` and `steps` */ selfServiceTrigger?: pulumi.Input; /** * Title */ title?: pulumi.Input; /** * Upsert Entity invocation method */ upsertEntityMethod?: pulumi.Input; /** * Webhook invocation method */ webhookMethod?: pulumi.Input; }