import * as pulumi from "@pulumi/pulumi"; export declare class AppSecActivations extends pulumi.CustomResource { /** * Get an existing AppSecActivations 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?: AppSecActivationsState, opts?: pulumi.CustomResourceOptions): AppSecActivations; /** * Returns true if the given object is an instance of AppSecActivations. 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 AppSecActivations; /** * Unique identifier of the security configuration to be activated */ readonly configId: pulumi.Output; /** * Network on which to activate the configuration version (STAGING or PRODUCTION) */ readonly network: pulumi.Output; /** * Note describing the activation. Will use timestamp if omitted. */ readonly note: pulumi.Output; /** * List of email addresses to be notified with the results of the activation */ readonly notificationEmails: pulumi.Output; /** * The results of the activation */ readonly status: pulumi.Output; /** * Version of the security configuration to be activated */ readonly version: pulumi.Output; /** * Create a AppSecActivations 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: AppSecActivationsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AppSecActivations resources. */ export interface AppSecActivationsState { /** * Unique identifier of the security configuration to be activated */ configId?: pulumi.Input; /** * Network on which to activate the configuration version (STAGING or PRODUCTION) */ network?: pulumi.Input; /** * Note describing the activation. Will use timestamp if omitted. */ note?: pulumi.Input; /** * List of email addresses to be notified with the results of the activation */ notificationEmails?: pulumi.Input[] | undefined>; /** * The results of the activation */ status?: pulumi.Input; /** * Version of the security configuration to be activated */ version?: pulumi.Input; } /** * The set of arguments for constructing a AppSecActivations resource. */ export interface AppSecActivationsArgs { /** * Unique identifier of the security configuration to be activated */ configId: pulumi.Input; /** * Network on which to activate the configuration version (STAGING or PRODUCTION) */ network?: pulumi.Input; /** * Note describing the activation. Will use timestamp if omitted. */ note?: pulumi.Input; /** * List of email addresses to be notified with the results of the activation */ notificationEmails: pulumi.Input[]>; /** * Version of the security configuration to be activated */ version: pulumi.Input; } //# sourceMappingURL=appSecActivations.d.ts.map