import * as pulumi from "@pulumi/pulumi"; /** * Creates a new SecurityProfileGroup in a given organization and location. * Auto-naming is currently not supported for this resource. */ export declare class SecurityProfileGroup extends pulumi.CustomResource { /** * Get an existing SecurityProfileGroup 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): SecurityProfileGroup; /** * Returns true if the given object is an instance of SecurityProfileGroup. 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 SecurityProfileGroup; /** * Resource creation timestamp. */ readonly createTime: pulumi.Output; /** * Optional. An optional description of the profile group. Max length 2048 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 SecurityProfileGroup resource. It matches pattern `projects|organizations/*/locations/{location}/securityProfileGroups/{security_profile_group}`. */ readonly name: pulumi.Output; readonly organizationId: pulumi.Output; /** * Required. Short name of the SecurityProfileGroup 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_profile_group1". */ readonly securityProfileGroupId: pulumi.Output; /** * Optional. Reference to a SecurityProfile with the threat prevention configuration for the SecurityProfileGroup. */ readonly threatPreventionProfile: pulumi.Output; /** * Last resource update timestamp. */ readonly updateTime: pulumi.Output; /** * Create a SecurityProfileGroup 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: SecurityProfileGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a SecurityProfileGroup resource. */ export interface SecurityProfileGroupArgs { /** * Optional. An optional description of the profile group. Max length 2048 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 SecurityProfileGroup resource. It matches pattern `projects|organizations/*/locations/{location}/securityProfileGroups/{security_profile_group}`. */ name?: pulumi.Input; organizationId: pulumi.Input; /** * Required. Short name of the SecurityProfileGroup 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_profile_group1". */ securityProfileGroupId: pulumi.Input; /** * Optional. Reference to a SecurityProfile with the threat prevention configuration for the SecurityProfileGroup. */ threatPreventionProfile?: pulumi.Input; }