import * as pulumi from "@pulumi/pulumi"; /** * Creates a new TunnelDestGroup. */ export declare class DestGroup extends pulumi.CustomResource { /** * Get an existing DestGroup 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): DestGroup; /** * Returns true if the given object is an instance of DestGroup. 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 DestGroup; /** * Unordered list. List of CIDRs that this group applies to. */ readonly cidrs: pulumi.Output; /** * Unordered list. List of FQDNs that this group applies to. */ readonly fqdns: pulumi.Output; readonly location: pulumi.Output; /** * Immutable. Identifier for the TunnelDestGroup. Must be unique within the project and contain only lower case letters (a-z) and dashes (-). */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Required. The ID to use for the TunnelDestGroup, which becomes the final component of the resource name. This value must be 4-63 characters, and valid characters are `[a-z]-`. */ readonly tunnelDestGroupId: pulumi.Output; /** * Create a DestGroup 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: DestGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a DestGroup resource. */ export interface DestGroupArgs { /** * Unordered list. List of CIDRs that this group applies to. */ cidrs?: pulumi.Input[]>; /** * Unordered list. List of FQDNs that this group applies to. */ fqdns?: pulumi.Input[]>; location?: pulumi.Input; /** * Immutable. Identifier for the TunnelDestGroup. Must be unique within the project and contain only lower case letters (a-z) and dashes (-). */ name?: pulumi.Input; project?: pulumi.Input; /** * Required. The ID to use for the TunnelDestGroup, which becomes the final component of the resource name. This value must be 4-63 characters, and valid characters are `[a-z]-`. */ tunnelDestGroupId: pulumi.Input; }