import * as pulumi from "@pulumi/pulumi"; /** * This resource can manage a TrustSec Work Process Settings. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ise from "@pulumi/ise"; * * const example = new ise.trustsec.WorkProcessSettings("example", { * matrixMode: "MULTIPLE_MATRICES", * useDefcons: false, * enableApprovalWorkflow: false, * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import ise:trustsec/workProcessSettings:WorkProcessSettings example "MULTIPLE_MATRICES" * ``` */ export declare class WorkProcessSettings extends pulumi.CustomResource { /** * Get an existing WorkProcessSettings 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?: WorkProcessSettingsState, opts?: pulumi.CustomResourceOptions): WorkProcessSettings; /** * Returns true if the given object is an instance of WorkProcessSettings. 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 WorkProcessSettings; /** * Whether to enable approval workflow for TrustSec Matrix changes * - Default value: `false` */ readonly enableApprovalWorkflow: pulumi.Output; /** * TrustSec Matrix Mode * - Choices: `SINGLE_MATRIX`, `MULTIPLE_MATRICES` */ readonly matrixMode: pulumi.Output; /** * Whether to use DEFCON levels in the TrustSec Matrix */ readonly useDefcons: pulumi.Output; /** * Create a WorkProcessSettings 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?: WorkProcessSettingsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering WorkProcessSettings resources. */ export interface WorkProcessSettingsState { /** * Whether to enable approval workflow for TrustSec Matrix changes * - Default value: `false` */ enableApprovalWorkflow?: pulumi.Input; /** * TrustSec Matrix Mode * - Choices: `SINGLE_MATRIX`, `MULTIPLE_MATRICES` */ matrixMode?: pulumi.Input; /** * Whether to use DEFCON levels in the TrustSec Matrix */ useDefcons?: pulumi.Input; } /** * The set of arguments for constructing a WorkProcessSettings resource. */ export interface WorkProcessSettingsArgs { /** * Whether to enable approval workflow for TrustSec Matrix changes * - Default value: `false` */ enableApprovalWorkflow?: pulumi.Input; /** * TrustSec Matrix Mode * - Choices: `SINGLE_MATRIX`, `MULTIPLE_MATRICES` */ matrixMode?: pulumi.Input; /** * Whether to use DEFCON levels in the TrustSec Matrix */ useDefcons?: pulumi.Input; } //# sourceMappingURL=workProcessSettings.d.ts.map