import * as pulumi from "@pulumi/pulumi"; export declare class ClientlistActivation extends pulumi.CustomResource { /** * Get an existing ClientlistActivation 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?: ClientlistActivationState, opts?: pulumi.CustomResourceOptions): ClientlistActivation; /** * Returns true if the given object is an instance of ClientlistActivation. 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 ClientlistActivation; /** * A brief description for the activation. */ readonly comments: pulumi.Output; /** * The client list unique identifier. */ readonly listId: pulumi.Output; /** * The network environment where you activate your client list: either STAGING or PRODUCTION. */ readonly network: pulumi.Output; /** * Users to notify via email. */ readonly notificationRecipients: pulumi.Output; /** * Identifies the Siebel ticket, if the activation is linked to one. */ readonly siebelTicketId: pulumi.Output; /** * The current activation status, either ACTIVE, INACTIVE, MODIFIED, PENDING_ACTIVATION, PENDING_DEACTIVATION, or FAILED. */ readonly status: pulumi.Output; /** * The client list version. */ readonly version: pulumi.Output; /** * Create a ClientlistActivation 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: ClientlistActivationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ClientlistActivation resources. */ export interface ClientlistActivationState { /** * A brief description for the activation. */ comments?: pulumi.Input; /** * The client list unique identifier. */ listId?: pulumi.Input; /** * The network environment where you activate your client list: either STAGING or PRODUCTION. */ network?: pulumi.Input; /** * Users to notify via email. */ notificationRecipients?: pulumi.Input[] | undefined>; /** * Identifies the Siebel ticket, if the activation is linked to one. */ siebelTicketId?: pulumi.Input; /** * The current activation status, either ACTIVE, INACTIVE, MODIFIED, PENDING_ACTIVATION, PENDING_DEACTIVATION, or FAILED. */ status?: pulumi.Input; /** * The client list version. */ version?: pulumi.Input; } /** * The set of arguments for constructing a ClientlistActivation resource. */ export interface ClientlistActivationArgs { /** * A brief description for the activation. */ comments?: pulumi.Input; /** * The client list unique identifier. */ listId: pulumi.Input; /** * The network environment where you activate your client list: either STAGING or PRODUCTION. */ network: pulumi.Input; /** * Users to notify via email. */ notificationRecipients?: pulumi.Input[] | undefined>; /** * Identifies the Siebel ticket, if the activation is linked to one. */ siebelTicketId?: pulumi.Input; /** * The client list version. */ version: pulumi.Input; } //# sourceMappingURL=clientlistActivation.d.ts.map