import * as pulumi from "@pulumi/pulumi"; /** * Triggers custom action execution using it's name in Self Service Application. * * ## Example Usage * * ### * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const test = new nutanix.SelfServiceAppProvision("test", { * bpName: "NAME OF BLUEPRINT", * appName: "NAME OF APPLICATION", * appDescription: "DESCRIPTION OF APPLICATION", * }); * const testSelfServiceAppCustomAction = new nutanix.SelfServiceAppCustomAction("test", { * appName: test.appName, * actionName: "NAME OF ACTION", * }); * ``` * */ export declare class SelfServiceAppCustomAction extends pulumi.CustomResource { /** * Get an existing SelfServiceAppCustomAction 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?: SelfServiceAppCustomActionState, opts?: pulumi.CustomResourceOptions): SelfServiceAppCustomAction; /** * Returns true if the given object is an instance of SelfServiceAppCustomAction. 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 SelfServiceAppCustomAction; /** * - (Required) The name of the action to run. * * Both (`appName` and `appUuid`) are optional. You can provide either of them. But atleast one of them is required to make this resource work. */ readonly actionName: pulumi.Output; /** * - (Optional) The name of the application. */ readonly appName: pulumi.Output; /** * - (Optional) The UUID of the application. */ readonly appUuid: pulumi.Output; /** * - (Computed) The UUID of the runlog associated with the execution of the custom action. This can be used to track the progress or status of the action execution. */ readonly runlogUuid: pulumi.Output; /** * Create a SelfServiceAppCustomAction 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: SelfServiceAppCustomActionArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SelfServiceAppCustomAction resources. */ export interface SelfServiceAppCustomActionState { /** * - (Required) The name of the action to run. * * Both (`appName` and `appUuid`) are optional. You can provide either of them. But atleast one of them is required to make this resource work. */ actionName?: pulumi.Input; /** * - (Optional) The name of the application. */ appName?: pulumi.Input; /** * - (Optional) The UUID of the application. */ appUuid?: pulumi.Input; /** * - (Computed) The UUID of the runlog associated with the execution of the custom action. This can be used to track the progress or status of the action execution. */ runlogUuid?: pulumi.Input; } /** * The set of arguments for constructing a SelfServiceAppCustomAction resource. */ export interface SelfServiceAppCustomActionArgs { /** * - (Required) The name of the action to run. * * Both (`appName` and `appUuid`) are optional. You can provide either of them. But atleast one of them is required to make this resource work. */ actionName: pulumi.Input; /** * - (Optional) The name of the application. */ appName?: pulumi.Input; /** * - (Optional) The UUID of the application. */ appUuid?: pulumi.Input; /** * - (Computed) The UUID of the runlog associated with the execution of the custom action. This can be used to track the progress or status of the action execution. */ runlogUuid?: pulumi.Input; } //# sourceMappingURL=selfServiceAppCustomAction.d.ts.map