import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * CreateSecurityProfile create a new custom security profile. */ 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; /** * Description of the security profile. */ readonly description: pulumi.Output; /** * Display name of the security profile. */ readonly displayName: pulumi.Output; /** * List of environments attached to security profile. */ readonly environments: pulumi.Output; /** * Maximum security score that can be generated by this profile. */ readonly maxScore: pulumi.Output; /** * Minimum security score that can be generated by this profile. */ readonly minScore: pulumi.Output; /** * Immutable. Name of the security profile resource. Format: organizations/{org}/securityProfiles/{profile} */ readonly name: pulumi.Output; readonly organizationId: pulumi.Output; /** * Customized profile configuration that computes the security score. */ readonly profileConfig: pulumi.Output; /** * The time when revision was created. */ readonly revisionCreateTime: pulumi.Output; /** * Revision ID of the security profile. */ readonly revisionId: pulumi.Output; /** * The time when revision was published. Once published, the security profile revision cannot be updated further and can be attached to environments. */ readonly revisionPublishTime: pulumi.Output; /** * The time when revision was updated. */ readonly revisionUpdateTime: pulumi.Output; /** * List of profile scoring configs in this revision. */ readonly scoringConfigs: pulumi.Output; /** * Required. The ID to use for the SecurityProfile, which will become the final component of the action's resource name. This value should be 1-63 characters and validated by "(^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$)". */ readonly securityProfileId: 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 { /** * Description of the security profile. */ description?: pulumi.Input; /** * Display name of the security profile. */ displayName?: pulumi.Input; /** * List of environments attached to security profile. */ environments?: pulumi.Input[]>; /** * Immutable. Name of the security profile resource. Format: organizations/{org}/securityProfiles/{profile} */ name?: pulumi.Input; organizationId: pulumi.Input; /** * Customized profile configuration that computes the security score. */ profileConfig: pulumi.Input; /** * List of profile scoring configs in this revision. */ scoringConfigs?: pulumi.Input[]>; /** * Required. The ID to use for the SecurityProfile, which will become the final component of the action's resource name. This value should be 1-63 characters and validated by "(^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$)". */ securityProfileId: pulumi.Input; }