import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a new Response Policy * Auto-naming is currently not supported for this resource. */ export declare class ResponsePolicy extends pulumi.CustomResource { /** * Get an existing ResponsePolicy 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): ResponsePolicy; /** * Returns true if the given object is an instance of ResponsePolicy. 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 ResponsePolicy; /** * For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */ readonly clientOperationId: pulumi.Output; /** * User-provided description for this Response Policy. */ readonly description: pulumi.Output; /** * The list of Google Kubernetes Engine clusters to which this response policy is applied. */ readonly gkeClusters: pulumi.Output; readonly kind: pulumi.Output; /** * User labels. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; /** * List of network names specifying networks to which this policy is applied. */ readonly networks: pulumi.Output; readonly project: pulumi.Output; /** * User assigned name for this Response Policy. */ readonly responsePolicyName: pulumi.Output; /** * Create a ResponsePolicy 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?: ResponsePolicyArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ResponsePolicy resource. */ export interface ResponsePolicyArgs { /** * For mutating operation requests only. An optional identifier specified by the client. Must be unique for operation resources in the Operations collection. */ clientOperationId?: pulumi.Input; /** * User-provided description for this Response Policy. */ description?: pulumi.Input; /** * The list of Google Kubernetes Engine clusters to which this response policy is applied. */ gkeClusters?: pulumi.Input[]>; kind?: pulumi.Input; /** * User labels. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * List of network names specifying networks to which this policy is applied. */ networks?: pulumi.Input[]>; project?: pulumi.Input; /** * User assigned name for this Response Policy. */ responsePolicyName?: pulumi.Input; }