import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Security Attribute Namespace resource in Oracle Cloud Infrastructure Security Attribute service. * * Gets the specified security attribute namespace's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSecurityAttributeNamespace = oci.securityattribute.getSecurityAttributeNamespace({ * securityAttributeNamespaceId: testSecurityAttributeNamespaceOciSecurityAttributeSecurityAttributeNamespace.id, * }); * ``` */ export declare function getSecurityAttributeNamespace(args: GetSecurityAttributeNamespaceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSecurityAttributeNamespace. */ export interface GetSecurityAttributeNamespaceArgs { /** * The OCID of the security attribute namespace. */ securityAttributeNamespaceId: string; } /** * A collection of values returned by getSecurityAttributeNamespace. */ export interface GetSecurityAttributeNamespaceResult { /** * The OCID of the compartment that contains the security attribute namespace. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * Description of the Security Attribute Namespace. */ readonly description: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The OCID of the security attribute namespace. */ readonly id: string; /** * Indicates whether the security attribute namespace is retired. See [Managing Security Attribute Namespaces](https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/managing-security-attribute-namespaces.htm). */ readonly isRetired: boolean; /** * Indicates possible modes the security attributes in this namespace is set to. Supported values are `enforce` and `audit`. Currently mode cannot be controlled by the user */ readonly modes: string[]; /** * The name of the security attribute namespace. It must be unique across all security attribute namespaces in the tenancy and cannot be changed. */ readonly name: string; readonly securityAttributeNamespaceId: string; /** * The security attribute namespace's current state. After creating a security attribute namespace, `lifecycleState` is in ACTIVE state. After retiring a security attribute namespace, its `lifecycleState` becomes INACTIVE. Security Attributes from a retired namespace cannot be attached to more resources. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * Date and time the security attribute namespace was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; } /** * This data source provides details about a specific Security Attribute Namespace resource in Oracle Cloud Infrastructure Security Attribute service. * * Gets the specified security attribute namespace's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSecurityAttributeNamespace = oci.securityattribute.getSecurityAttributeNamespace({ * securityAttributeNamespaceId: testSecurityAttributeNamespaceOciSecurityAttributeSecurityAttributeNamespace.id, * }); * ``` */ export declare function getSecurityAttributeNamespaceOutput(args: GetSecurityAttributeNamespaceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSecurityAttributeNamespace. */ export interface GetSecurityAttributeNamespaceOutputArgs { /** * The OCID of the security attribute namespace. */ securityAttributeNamespaceId: pulumi.Input; } //# sourceMappingURL=getSecurityAttributeNamespace.d.ts.map