import * as pulumi from "@pulumi/pulumi"; /** * Creates a new GatewaySecurityPolicy in a given project and location. */ export declare class GatewaySecurityPolicy extends pulumi.CustomResource { /** * Get an existing GatewaySecurityPolicy 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): GatewaySecurityPolicy; /** * Returns true if the given object is an instance of GatewaySecurityPolicy. 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 GatewaySecurityPolicy; /** * The timestamp when the resource was created. */ readonly createTime: pulumi.Output; /** * Optional. Free-text description of the resource. */ readonly description: pulumi.Output; /** * Required. Short name of the GatewaySecurityPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "gateway_security_policy1". */ readonly gatewaySecurityPolicyId: pulumi.Output; readonly location: pulumi.Output; /** * Name of the resource. Name is of the form projects/{project}/locations/{location}/gatewaySecurityPolicies/{gateway_security_policy} gateway_security_policy should match the pattern:(^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$). */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * Optional. Name of a TLS Inspection Policy resource that defines how TLS inspection will be performed for any rule(s) which enables it. */ readonly tlsInspectionPolicy: pulumi.Output; /** * The timestamp when the resource was updated. */ readonly updateTime: pulumi.Output; /** * Create a GatewaySecurityPolicy 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: GatewaySecurityPolicyArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a GatewaySecurityPolicy resource. */ export interface GatewaySecurityPolicyArgs { /** * Optional. Free-text description of the resource. */ description?: pulumi.Input; /** * Required. Short name of the GatewaySecurityPolicy resource to be created. This value should be 1-63 characters long, containing only letters, numbers, hyphens, and underscores, and should not start with a number. E.g. "gateway_security_policy1". */ gatewaySecurityPolicyId: pulumi.Input; location?: pulumi.Input; /** * Name of the resource. Name is of the form projects/{project}/locations/{location}/gatewaySecurityPolicies/{gateway_security_policy} gateway_security_policy should match the pattern:(^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$). */ name?: pulumi.Input; project?: pulumi.Input; /** * Optional. Name of a TLS Inspection Policy resource that defines how TLS inspection will be performed for any rule(s) which enables it. */ tlsInspectionPolicy?: pulumi.Input; }