import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Oracle Db Azure Blob Mount resource in Oracle Cloud Infrastructure Dbmulticloud service. * * Retrieves the Oracle DB Azure Blob Mount resource for a specified resource [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbAzureBlobMount = oci.oci.getDbmulticloudOracleDbAzureBlobMount({ * oracleDbAzureBlobMountId: testOracleDbAzureBlobMountOciDbmulticloudOracleDbAzureBlobMount.id, * }); * ``` */ export declare function getDbmulticloudOracleDbAzureBlobMount(args: GetDbmulticloudOracleDbAzureBlobMountArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbmulticloudOracleDbAzureBlobMount. */ export interface GetDbmulticloudOracleDbAzureBlobMountArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Blob Mount resource. */ oracleDbAzureBlobMountId: string; } /** * A collection of values returned by getDbmulticloudOracleDbAzureBlobMount. */ export interface GetDbmulticloudOracleDbAzureBlobMountResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains Oracle DB Azure Blob Mount 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 Blob Mount 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 The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Blob Mount resource. */ readonly id: string; /** * Description of the latest modification of the Oracle DB Azure Blob Mount resource. */ readonly lastModification: string; /** * Description of the current lifecycle state in more detail. */ readonly lifecycleStateDetails: string; /** * Oracle DB Azure Blob Mount path. */ readonly mountPath: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource. */ readonly oracleDbAzureBlobContainerId: string; readonly oracleDbAzureBlobMountId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Connector resource that contains Oracle DB Azure Blob Mount resource. */ readonly oracleDbAzureConnectorId: string; /** * The current lifecycle state of the Oracle DB Azure Blob Mount 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; }; /** * Time when the Oracle DB Azure Blob Mount was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z' */ readonly timeCreated: string; /** * Time when the Oracle DB Azure Blob Mount was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z' */ readonly timeUpdated: string; } /** * This data source provides details about a specific Oracle Db Azure Blob Mount resource in Oracle Cloud Infrastructure Dbmulticloud service. * * Retrieves the Oracle DB Azure Blob Mount resource for a specified resource [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbAzureBlobMount = oci.oci.getDbmulticloudOracleDbAzureBlobMount({ * oracleDbAzureBlobMountId: testOracleDbAzureBlobMountOciDbmulticloudOracleDbAzureBlobMount.id, * }); * ``` */ export declare function getDbmulticloudOracleDbAzureBlobMountOutput(args: GetDbmulticloudOracleDbAzureBlobMountOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbmulticloudOracleDbAzureBlobMount. */ export interface GetDbmulticloudOracleDbAzureBlobMountOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Blob Mount resource. */ oracleDbAzureBlobMountId: pulumi.Input; } //# sourceMappingURL=getDbmulticloudOracleDbAzureBlobMount.d.ts.map