import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Security Zone resource in Oracle Cloud Infrastructure Cloud Guard service. * * Returns a security zone (SecurityZone resource) identified by securityZoneId. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSecurityZone = oci.cloudguard.getSecurityZone({ * securityZoneId: testSecurityZoneOciCloudGuardSecurityZone.id, * }); * ``` */ export declare function getSecurityZone(args: GetSecurityZoneArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSecurityZone. */ export interface GetSecurityZoneArgs { /** * The unique identifier of the security zone (`SecurityZone` resource). */ securityZoneId: string; } /** * A collection of values returned by getSecurityZone. */ export interface GetSecurityZoneResult { /** * The OCID of the compartment for the security zone */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * The security zone's description */ readonly description: string; /** * The security zone's display name */ readonly displayName: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * Unique identifier that can’t be changed after creation */ readonly id: string; /** * List of inherited compartments */ readonly inheritedByCompartments: string[]; /** * Indicates if upon deletion of the security zone the comparment should inherit parent security zone */ readonly isInheritanceAfterDeleteEnabled: boolean; /** * A message describing the current state in more detail. For example, this can be used to provide actionable information for a zone in the `Failed` state. */ readonly lifecycleDetails: string; readonly securityZoneId: string; /** * The OCID of the recipe (`SecurityRecipe` resource) for the security zone */ readonly securityZoneRecipeId: string; /** * The OCID of the target associated with the security zone */ readonly securityZoneTargetId: string; /** * The current lifecycle state of the security zone */ readonly state: string; /** * The time the security zone was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time the security zone was last updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Security Zone resource in Oracle Cloud Infrastructure Cloud Guard service. * * Returns a security zone (SecurityZone resource) identified by securityZoneId. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSecurityZone = oci.cloudguard.getSecurityZone({ * securityZoneId: testSecurityZoneOciCloudGuardSecurityZone.id, * }); * ``` */ export declare function getSecurityZoneOutput(args: GetSecurityZoneOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSecurityZone. */ export interface GetSecurityZoneOutputArgs { /** * The unique identifier of the security zone (`SecurityZone` resource). */ securityZoneId: pulumi.Input; } //# sourceMappingURL=getSecurityZone.d.ts.map