import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class CloudletsPolicy extends pulumi.CustomResource { /** * Get an existing CloudletsPolicy 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?: CloudletsPolicyState, opts?: pulumi.CustomResourceOptions): CloudletsPolicy; /** * Returns true if the given object is an instance of CloudletsPolicy. 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 CloudletsPolicy; /** * Code for the type of Cloudlet (ALB, AP, AS, CD, ER, FR, IG, or VP). */ readonly cloudletCode: pulumi.Output; /** * An integer that corresponds to a non-shared Cloudlets policy type (0 to 9). Not used for shared policies. */ readonly cloudletId: pulumi.Output; /** * The description of this specific policy. */ readonly description: pulumi.Output; /** * Defines the group association for the policy. You must have edit privileges for the group. */ readonly groupId: pulumi.Output; /** * The type of policy that you want to create. */ readonly isShared: pulumi.Output; /** * The version of the Cloudlet specific matchRules. */ readonly matchRuleFormat: pulumi.Output; /** * A JSON structure that defines the rules for this policy. */ readonly matchRules: pulumi.Output; /** * The name of the policy. The name must be unique. */ readonly name: pulumi.Output; /** * Enables to set timeout for processing. */ readonly timeouts: pulumi.Output; /** * The version number of the policy. */ readonly version: pulumi.Output; /** * A JSON encoded list of warnings. */ readonly warnings: pulumi.Output; /** * Create a CloudletsPolicy 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: CloudletsPolicyArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CloudletsPolicy resources. */ export interface CloudletsPolicyState { /** * Code for the type of Cloudlet (ALB, AP, AS, CD, ER, FR, IG, or VP). */ cloudletCode?: pulumi.Input; /** * An integer that corresponds to a non-shared Cloudlets policy type (0 to 9). Not used for shared policies. */ cloudletId?: pulumi.Input; /** * The description of this specific policy. */ description?: pulumi.Input; /** * Defines the group association for the policy. You must have edit privileges for the group. */ groupId?: pulumi.Input; /** * The type of policy that you want to create. */ isShared?: pulumi.Input; /** * The version of the Cloudlet specific matchRules. */ matchRuleFormat?: pulumi.Input; /** * A JSON structure that defines the rules for this policy. */ matchRules?: pulumi.Input; /** * The name of the policy. The name must be unique. */ name?: pulumi.Input; /** * Enables to set timeout for processing. */ timeouts?: pulumi.Input; /** * The version number of the policy. */ version?: pulumi.Input; /** * A JSON encoded list of warnings. */ warnings?: pulumi.Input; } /** * The set of arguments for constructing a CloudletsPolicy resource. */ export interface CloudletsPolicyArgs { /** * Code for the type of Cloudlet (ALB, AP, AS, CD, ER, FR, IG, or VP). */ cloudletCode: pulumi.Input; /** * The description of this specific policy. */ description?: pulumi.Input; /** * Defines the group association for the policy. You must have edit privileges for the group. */ groupId: pulumi.Input; /** * The type of policy that you want to create. */ isShared?: pulumi.Input; /** * The version of the Cloudlet specific matchRules. */ matchRuleFormat?: pulumi.Input; /** * A JSON structure that defines the rules for this policy. */ matchRules?: pulumi.Input; /** * The name of the policy. The name must be unique. */ name?: pulumi.Input; /** * Enables to set timeout for processing. */ timeouts?: pulumi.Input; } //# sourceMappingURL=cloudletsPolicy.d.ts.map