import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Data Safe Configuration resource in Oracle Cloud Infrastructure Data Safe service. * * Gets the details of the Data Safe configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDataSafeConfiguration = oci.datasafe.getDataSafeConfiguration({ * compartmentId: compartmentId, * }); * ``` */ export declare function getDataSafeConfiguration(args: GetDataSafeConfigurationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDataSafeConfiguration. */ export interface GetDataSafeConfigurationArgs { /** * A filter to return the Data Safe configuration for the specified tenancy OCID. */ compartmentId: string; } /** * A collection of values returned by getDataSafeConfiguration. */ export interface GetDataSafeConfigurationResult { /** * The OCID of the tenancy used to enable Data Safe. */ readonly compartmentId: string; /** * The Oracle Data Safe's NAT Gateway IP Address. */ readonly dataSafeNatGatewayIpAddress: 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; }; /** * 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; }; /** * Details of the tenancy level global settings in Data Safe. */ readonly globalSettings: outputs.DataSafe.GetDataSafeConfigurationGlobalSetting[]; readonly id: string; /** * Indicates if Data Safe is enabled. */ readonly isEnabled: boolean; /** * The current state of Data Safe. */ readonly state: string; /** * The date and time Data Safe was enabled, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). */ readonly timeEnabled: string; /** * The URL of the Data Safe service. */ readonly url: string; } /** * This data source provides details about a specific Data Safe Configuration resource in Oracle Cloud Infrastructure Data Safe service. * * Gets the details of the Data Safe configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDataSafeConfiguration = oci.datasafe.getDataSafeConfiguration({ * compartmentId: compartmentId, * }); * ``` */ export declare function getDataSafeConfigurationOutput(args: GetDataSafeConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDataSafeConfiguration. */ export interface GetDataSafeConfigurationOutputArgs { /** * A filter to return the Data Safe configuration for the specified tenancy OCID. */ compartmentId: pulumi.Input; } //# sourceMappingURL=getDataSafeConfiguration.d.ts.map