import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Oracle Db Azure Blob Mounts in Oracle Cloud Infrastructure Dbmulticloud service. * * Lists all Oracle DB Azure Blob Mount resources based on the specified filters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbAzureBlobMounts = oci.oci.getDbmulticloudOracleDbAzureBlobMounts({ * compartmentId: compartmentId, * displayName: oracleDbAzureBlobMountDisplayName, * oracleDbAzureBlobContainerId: testOracleDbAzureBlobContainer.id, * oracleDbAzureBlobMountId: testOracleDbAzureBlobMount.id, * oracleDbAzureConnectorId: testOracleDbAzureConnector.id, * state: oracleDbAzureBlobMountState, * }); * ``` */ export declare function getDbmulticloudOracleDbAzureBlobMounts(args: GetDbmulticloudOracleDbAzureBlobMountsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbmulticloudOracleDbAzureBlobMounts. */ export interface GetDbmulticloudOracleDbAzureBlobMountsArgs { /** * The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * A filter to return Oracle DB Azure Blob Mount resources that match the specified display name. */ displayName?: string; filters?: inputs.oci.GetDbmulticloudOracleDbAzureBlobMountsFilter[]; /** * A filter to return Oracle DB Azure Blob Container resource. */ oracleDbAzureBlobContainerId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Blob Mount resource. */ oracleDbAzureBlobMountId?: string; /** * A filter to return Oracle DB Azure Azure Identity Connector resources. */ oracleDbAzureConnectorId?: string; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getDbmulticloudOracleDbAzureBlobMounts. */ export interface GetDbmulticloudOracleDbAzureBlobMountsResult { /** * 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; /** * Oracle DB Azure Blob Mount resource name. */ readonly displayName?: string; readonly filters?: outputs.oci.GetDbmulticloudOracleDbAzureBlobMountsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: 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 list of oracle_db_azure_blob_mount_summary_collection. */ readonly oracleDbAzureBlobMountSummaryCollections: outputs.oci.GetDbmulticloudOracleDbAzureBlobMountsOracleDbAzureBlobMountSummaryCollection[]; /** * 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; } /** * This data source provides the list of Oracle Db Azure Blob Mounts in Oracle Cloud Infrastructure Dbmulticloud service. * * Lists all Oracle DB Azure Blob Mount resources based on the specified filters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbAzureBlobMounts = oci.oci.getDbmulticloudOracleDbAzureBlobMounts({ * compartmentId: compartmentId, * displayName: oracleDbAzureBlobMountDisplayName, * oracleDbAzureBlobContainerId: testOracleDbAzureBlobContainer.id, * oracleDbAzureBlobMountId: testOracleDbAzureBlobMount.id, * oracleDbAzureConnectorId: testOracleDbAzureConnector.id, * state: oracleDbAzureBlobMountState, * }); * ``` */ export declare function getDbmulticloudOracleDbAzureBlobMountsOutput(args: GetDbmulticloudOracleDbAzureBlobMountsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbmulticloudOracleDbAzureBlobMounts. */ export interface GetDbmulticloudOracleDbAzureBlobMountsOutputArgs { /** * The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * A filter to return Oracle DB Azure Blob Mount resources that match the specified display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return Oracle DB Azure Blob Container resource. */ oracleDbAzureBlobContainerId?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Blob Mount resource. */ oracleDbAzureBlobMountId?: pulumi.Input; /** * A filter to return Oracle DB Azure Azure Identity Connector resources. */ oracleDbAzureConnectorId?: pulumi.Input; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getDbmulticloudOracleDbAzureBlobMounts.d.ts.map