import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class CloudletsPolicyActivation extends pulumi.CustomResource { /** * Get an existing CloudletsPolicyActivation 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?: CloudletsPolicyActivationState, opts?: pulumi.CustomResourceOptions): CloudletsPolicyActivation; /** * Returns true if the given object is an instance of CloudletsPolicyActivation. 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 CloudletsPolicyActivation; /** * Set of property IDs to link to this Cloudlets policy. It is required for non-shared policies */ readonly associatedProperties: pulumi.Output; /** * Indicates if policy that is being activated is a shared policy */ readonly isShared: pulumi.Output; /** * The network you want to activate the policy version on (options are Staging and Production) */ readonly network: pulumi.Output; /** * ID of the Cloudlets policy you want to activate */ readonly policyId: pulumi.Output; /** * Activation status for this Cloudlets policy */ readonly status: pulumi.Output; /** * Enables to set timeout for processing */ readonly timeouts: pulumi.Output; /** * Cloudlets policy version you want to activate */ readonly version: pulumi.Output; /** * Create a CloudletsPolicyActivation 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: CloudletsPolicyActivationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CloudletsPolicyActivation resources. */ export interface CloudletsPolicyActivationState { /** * Set of property IDs to link to this Cloudlets policy. It is required for non-shared policies */ associatedProperties?: pulumi.Input[] | undefined>; /** * Indicates if policy that is being activated is a shared policy */ isShared?: pulumi.Input; /** * The network you want to activate the policy version on (options are Staging and Production) */ network?: pulumi.Input; /** * ID of the Cloudlets policy you want to activate */ policyId?: pulumi.Input; /** * Activation status for this Cloudlets policy */ status?: pulumi.Input; /** * Enables to set timeout for processing */ timeouts?: pulumi.Input; /** * Cloudlets policy version you want to activate */ version?: pulumi.Input; } /** * The set of arguments for constructing a CloudletsPolicyActivation resource. */ export interface CloudletsPolicyActivationArgs { /** * Set of property IDs to link to this Cloudlets policy. It is required for non-shared policies */ associatedProperties?: pulumi.Input[] | undefined>; /** * The network you want to activate the policy version on (options are Staging and Production) */ network: pulumi.Input; /** * ID of the Cloudlets policy you want to activate */ policyId: pulumi.Input; /** * Enables to set timeout for processing */ timeouts?: pulumi.Input; /** * Cloudlets policy version you want to activate */ version: pulumi.Input; } //# sourceMappingURL=cloudletsPolicyActivation.d.ts.map