import * as pulumi from "@pulumi/pulumi"; /** * The zia_activation resource triggers the activation of ZIA configuration changes in the Zscaler Internet Access (ZIA) cloud service. After making configuration changes to ZIA resources, this resource can be used to activate and push those changes to the ZIA cloud. Delete is a no-op. * * For more information, see the [ZIA Configuration Activation documentation](https://help.zscaler.com/zia/activating-configuration-changes). * * ## Example Usage * ### Basic Configuration Activation * * ```typescript * import * as zia from "@bdzscaler/pulumi-zia"; * * const example = new zia.Activation("example", { * status: "ACTIVE", * }); * ``` * * ## Import * * This is a singleton resource and does not support traditional import. It is automatically managed by the provider. */ export declare class Activation extends pulumi.CustomResource { /** * Get an existing Activation 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Activation; /** * Returns true if the given object is an instance of Activation. 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 Activation; /** * The internal resource identifier for the activation. */ readonly resourceId: pulumi.Output; /** * The activation status. Must be `ACTIVE` to trigger configuration activation. */ readonly status: pulumi.Output; /** * Create a Activation 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: ActivationArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Activation resource. */ export interface ActivationArgs { /** * The activation status. Must be `ACTIVE` to trigger configuration activation. */ status: pulumi.Input; } //# sourceMappingURL=activation.d.ts.map