import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Oracle Db Azure Vault resource in Oracle Cloud Infrastructure Dbmulticloud service. * * Retrieves detailed information about an Oracle Database Azure Vault resource using its unique resource [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). This operation returns metadata and configuration details associated with the specified vault resource. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbAzureVault = oci.oci.getDbmulticloudOracleDbAzureVault({ * oracleDbAzureVaultId: testOracleDbAzureVaultOciDbmulticloudOracleDbAzureVault.id, * }); * ``` */ export declare function getDbmulticloudOracleDbAzureVault(args: GetDbmulticloudOracleDbAzureVaultArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbmulticloudOracleDbAzureVault. */ export interface GetDbmulticloudOracleDbAzureVaultArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault resource. */ oracleDbAzureVaultId: string; } /** * A collection of values returned by getDbmulticloudOracleDbAzureVault. */ export interface GetDbmulticloudOracleDbAzureVaultResult { readonly action: string; /** * Azure Vault ID. */ readonly azureVaultId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains this Oracle DB Azure Vault resource. */ 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; }; /** * Oracle DB Azure Vault resource name. */ readonly displayName: 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the oracle DB Azure Vault resource. */ readonly id: string; /** * Description of the latest modification of the Oracle DB Azure Vault resource. */ readonly lastModification: string; /** * Description of the current lifecycle state in more detail. */ readonly lifecycleStateDetails: string; /** * Oracle DB Azure Vault resource location. */ readonly location: string; /** * Oracle DB Azure resource group name. */ readonly oracleDbAzureResourceGroup: string; readonly oracleDbAzureVaultId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource. */ readonly oracleDbConnectorId: string; /** * Oracle DB Azure Vault resource's properties. */ readonly properties: { [key: string]: string; }; /** * Replication metadata, it has information about replication and target region. */ readonly replicationMetadatas: outputs.oci.GetDbmulticloudOracleDbAzureVaultReplicationMetadata[]; /** * The lifecycle state of the Oracle DB Azure Vault resource. */ 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; }; /** * The target region, where resource is replicated. */ readonly targetRegion: string; /** * Time when the DB Azure Vault resource was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-23T21:10:29.600Z' */ readonly timeCreated: string; /** * Time when the DB Azure Vault resource was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-23T21:10:29.600Z' */ readonly timeUpdated: string; /** * Oracle DB Azure Vault resource type. */ readonly type: string; } /** * This data source provides details about a specific Oracle Db Azure Vault resource in Oracle Cloud Infrastructure Dbmulticloud service. * * Retrieves detailed information about an Oracle Database Azure Vault resource using its unique resource [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). This operation returns metadata and configuration details associated with the specified vault resource. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbAzureVault = oci.oci.getDbmulticloudOracleDbAzureVault({ * oracleDbAzureVaultId: testOracleDbAzureVaultOciDbmulticloudOracleDbAzureVault.id, * }); * ``` */ export declare function getDbmulticloudOracleDbAzureVaultOutput(args: GetDbmulticloudOracleDbAzureVaultOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbmulticloudOracleDbAzureVault. */ export interface GetDbmulticloudOracleDbAzureVaultOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault resource. */ oracleDbAzureVaultId: pulumi.Input; } //# sourceMappingURL=getDbmulticloudOracleDbAzureVault.d.ts.map