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 Containers in Oracle Cloud Infrastructure Dbmulticloud service. * * Lists all Oracle DB Azure Blob Container resources based on the specified filters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbAzureBlobContainers = oci.oci.getDbmulticloudOracleDbAzureBlobContainers({ * compartmentId: compartmentId, * azureStorageAccountName: oracleDbAzureBlobContainerAzureStorageAccountName, * azureStorageContainerName: oracleDbAzureBlobContainerAzureStorageContainerName, * displayName: oracleDbAzureBlobContainerDisplayName, * oracleDbAzureBlobContainerId: testOracleDbAzureBlobContainer.id, * state: oracleDbAzureBlobContainerState, * }); * ``` */ export declare function getDbmulticloudOracleDbAzureBlobContainers(args: GetDbmulticloudOracleDbAzureBlobContainersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbmulticloudOracleDbAzureBlobContainers. */ export interface GetDbmulticloudOracleDbAzureBlobContainersArgs { /** * A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Account name. */ azureStorageAccountName?: string; /** * A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Storage name. */ azureStorageContainerName?: string; /** * 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 Container resources that match the specified display name. */ displayName?: string; filters?: inputs.oci.GetDbmulticloudOracleDbAzureBlobContainersFilter[]; /** * A filter to return Oracle DB Azure Blob Container resource. */ oracleDbAzureBlobContainerId?: 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 getDbmulticloudOracleDbAzureBlobContainers. */ export interface GetDbmulticloudOracleDbAzureBlobContainersResult { /** * Azure Storage account name. */ readonly azureStorageAccountName?: string; /** * Azure Storage container name. */ readonly azureStorageContainerName?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of of the compartment that contains Oracle DB Azure Blob Container resource. */ readonly compartmentId: string; /** * Oracle DB Azure Blob Container resource name. */ readonly displayName?: string; readonly filters?: outputs.oci.GetDbmulticloudOracleDbAzureBlobContainersFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly oracleDbAzureBlobContainerId?: string; /** * The list of oracle_db_azure_blob_container_summary_collection. */ readonly oracleDbAzureBlobContainerSummaryCollections: outputs.oci.GetDbmulticloudOracleDbAzureBlobContainersOracleDbAzureBlobContainerSummaryCollection[]; /** * The current lifecycle state of the Oracle DB Azure Blob Container resource. */ readonly state?: string; } /** * This data source provides the list of Oracle Db Azure Blob Containers in Oracle Cloud Infrastructure Dbmulticloud service. * * Lists all Oracle DB Azure Blob Container resources based on the specified filters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOracleDbAzureBlobContainers = oci.oci.getDbmulticloudOracleDbAzureBlobContainers({ * compartmentId: compartmentId, * azureStorageAccountName: oracleDbAzureBlobContainerAzureStorageAccountName, * azureStorageContainerName: oracleDbAzureBlobContainerAzureStorageContainerName, * displayName: oracleDbAzureBlobContainerDisplayName, * oracleDbAzureBlobContainerId: testOracleDbAzureBlobContainer.id, * state: oracleDbAzureBlobContainerState, * }); * ``` */ export declare function getDbmulticloudOracleDbAzureBlobContainersOutput(args: GetDbmulticloudOracleDbAzureBlobContainersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbmulticloudOracleDbAzureBlobContainers. */ export interface GetDbmulticloudOracleDbAzureBlobContainersOutputArgs { /** * A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Account name. */ azureStorageAccountName?: pulumi.Input; /** * A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Storage name. */ azureStorageContainerName?: pulumi.Input; /** * 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 Container 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; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getDbmulticloudOracleDbAzureBlobContainers.d.ts.map