import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; import * as enums from "../../types/enums"; /** * Creates a new SecurityProfile in a given organization and location. * Auto-naming is currently not supported for this resource. */ export declare class SecurityProfile extends pulumi.CustomResource { /** * Get an existing SecurityProfile 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): SecurityProfile; /** * Returns true if the given object is an instance of SecurityProfile. 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 SecurityProfile; /** * Resource creation timestamp. */ readonly createTime: pulumi.Output; /** * Optional. An optional description of the profile. Max length 512 characters. */ readonly description: pulumi.Output; /** * This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding. */ readonly etag: pulumi.Output; /** * Optional. Labels as key value pairs. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; readonly location: pulumi.Output; /** * Immutable. Identifier. Name of the SecurityProfile resource. It matches pattern `projects|organizations/*/locations/{location}/securityProfiles/{security_profile}`. */ readonly name: pulumi.Output; readonly organizationId: pulumi.Output; /** * Required. Short name of the SecurityProfile 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. "security_profile1". */ readonly securityProfileId: pulumi.Output; /** * The threat prevention configuration for the SecurityProfile. */ readonly threatPreventionProfile: pulumi.Output; /** * Immutable. The single ProfileType that the SecurityProfile resource configures. */ readonly type: pulumi.Output; /** * Last resource update timestamp. */ readonly updateTime: pulumi.Output; /** * Create a SecurityProfile 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: SecurityProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a SecurityProfile resource. */ export interface SecurityProfileArgs { /** * Optional. An optional description of the profile. Max length 512 characters. */ description?: pulumi.Input; /** * Optional. Labels as key value pairs. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; location?: pulumi.Input; /** * Immutable. Identifier. Name of the SecurityProfile resource. It matches pattern `projects|organizations/*/locations/{location}/securityProfiles/{security_profile}`. */ name?: pulumi.Input; organizationId: pulumi.Input; /** * Required. Short name of the SecurityProfile 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. "security_profile1". */ securityProfileId: pulumi.Input; /** * The threat prevention configuration for the SecurityProfile. */ threatPreventionProfile?: pulumi.Input; /** * Immutable. The single ProfileType that the SecurityProfile resource configures. */ type?: pulumi.Input; }