Oracle Cloud Infrastructure v3.15.0 published on Thursday, Jan 22, 2026 by Pulumi
Oracle Cloud Infrastructure v3.15.0 published on Thursday, Jan 22, 2026 by Pulumi
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
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,
});
import pulumi
import pulumi_oci as oci
test_oracle_db_azure_blob_containers = oci.oci.get_dbmulticloud_oracle_db_azure_blob_containers(compartment_id=compartment_id,
azure_storage_account_name=oracle_db_azure_blob_container_azure_storage_account_name,
azure_storage_container_name=oracle_db_azure_blob_container_azure_storage_container_name,
display_name=oracle_db_azure_blob_container_display_name,
oracle_db_azure_blob_container_id=test_oracle_db_azure_blob_container["id"],
state=oracle_db_azure_blob_container_state)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/oci"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := oci.GetDbmulticloudOracleDbAzureBlobContainers(ctx, &oci.GetDbmulticloudOracleDbAzureBlobContainersArgs{
CompartmentId: compartmentId,
AzureStorageAccountName: pulumi.StringRef(oracleDbAzureBlobContainerAzureStorageAccountName),
AzureStorageContainerName: pulumi.StringRef(oracleDbAzureBlobContainerAzureStorageContainerName),
DisplayName: pulumi.StringRef(oracleDbAzureBlobContainerDisplayName),
OracleDbAzureBlobContainerId: pulumi.StringRef(testOracleDbAzureBlobContainer.Id),
State: pulumi.StringRef(oracleDbAzureBlobContainerState),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testOracleDbAzureBlobContainers = Oci.Oci.GetDbmulticloudOracleDbAzureBlobContainers.Invoke(new()
{
CompartmentId = compartmentId,
AzureStorageAccountName = oracleDbAzureBlobContainerAzureStorageAccountName,
AzureStorageContainerName = oracleDbAzureBlobContainerAzureStorageContainerName,
DisplayName = oracleDbAzureBlobContainerDisplayName,
OracleDbAzureBlobContainerId = testOracleDbAzureBlobContainer.Id,
State = oracleDbAzureBlobContainerState,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.oci.OciFunctions;
import com.pulumi.oci.oci.inputs.GetDbmulticloudOracleDbAzureBlobContainersArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var testOracleDbAzureBlobContainers = OciFunctions.getDbmulticloudOracleDbAzureBlobContainers(GetDbmulticloudOracleDbAzureBlobContainersArgs.builder()
.compartmentId(compartmentId)
.azureStorageAccountName(oracleDbAzureBlobContainerAzureStorageAccountName)
.azureStorageContainerName(oracleDbAzureBlobContainerAzureStorageContainerName)
.displayName(oracleDbAzureBlobContainerDisplayName)
.oracleDbAzureBlobContainerId(testOracleDbAzureBlobContainer.id())
.state(oracleDbAzureBlobContainerState)
.build());
}
}
variables:
testOracleDbAzureBlobContainers:
fn::invoke:
function: oci:oci:getDbmulticloudOracleDbAzureBlobContainers
arguments:
compartmentId: ${compartmentId}
azureStorageAccountName: ${oracleDbAzureBlobContainerAzureStorageAccountName}
azureStorageContainerName: ${oracleDbAzureBlobContainerAzureStorageContainerName}
displayName: ${oracleDbAzureBlobContainerDisplayName}
oracleDbAzureBlobContainerId: ${testOracleDbAzureBlobContainer.id}
state: ${oracleDbAzureBlobContainerState}
Using getDbmulticloudOracleDbAzureBlobContainers
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getDbmulticloudOracleDbAzureBlobContainers(args: GetDbmulticloudOracleDbAzureBlobContainersArgs, opts?: InvokeOptions): Promise<GetDbmulticloudOracleDbAzureBlobContainersResult>
function getDbmulticloudOracleDbAzureBlobContainersOutput(args: GetDbmulticloudOracleDbAzureBlobContainersOutputArgs, opts?: InvokeOptions): Output<GetDbmulticloudOracleDbAzureBlobContainersResult>def get_dbmulticloud_oracle_db_azure_blob_containers(azure_storage_account_name: Optional[str] = None,
azure_storage_container_name: Optional[str] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetDbmulticloudOracleDbAzureBlobContainersFilter]] = None,
oracle_db_azure_blob_container_id: Optional[str] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDbmulticloudOracleDbAzureBlobContainersResult
def get_dbmulticloud_oracle_db_azure_blob_containers_output(azure_storage_account_name: Optional[pulumi.Input[str]] = None,
azure_storage_container_name: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetDbmulticloudOracleDbAzureBlobContainersFilterArgs]]]] = None,
oracle_db_azure_blob_container_id: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDbmulticloudOracleDbAzureBlobContainersResult]func GetDbmulticloudOracleDbAzureBlobContainers(ctx *Context, args *GetDbmulticloudOracleDbAzureBlobContainersArgs, opts ...InvokeOption) (*GetDbmulticloudOracleDbAzureBlobContainersResult, error)
func GetDbmulticloudOracleDbAzureBlobContainersOutput(ctx *Context, args *GetDbmulticloudOracleDbAzureBlobContainersOutputArgs, opts ...InvokeOption) GetDbmulticloudOracleDbAzureBlobContainersResultOutput> Note: This function is named GetDbmulticloudOracleDbAzureBlobContainers in the Go SDK.
public static class GetDbmulticloudOracleDbAzureBlobContainers
{
public static Task<GetDbmulticloudOracleDbAzureBlobContainersResult> InvokeAsync(GetDbmulticloudOracleDbAzureBlobContainersArgs args, InvokeOptions? opts = null)
public static Output<GetDbmulticloudOracleDbAzureBlobContainersResult> Invoke(GetDbmulticloudOracleDbAzureBlobContainersInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDbmulticloudOracleDbAzureBlobContainersResult> getDbmulticloudOracleDbAzureBlobContainers(GetDbmulticloudOracleDbAzureBlobContainersArgs args, InvokeOptions options)
public static Output<GetDbmulticloudOracleDbAzureBlobContainersResult> getDbmulticloudOracleDbAzureBlobContainers(GetDbmulticloudOracleDbAzureBlobContainersArgs args, InvokeOptions options)
fn::invoke:
function: oci:oci/getDbmulticloudOracleDbAzureBlobContainers:getDbmulticloudOracleDbAzureBlobContainers
arguments:
# arguments dictionaryThe following arguments are supported:
- Compartment
Id string - The ID of the compartment.
- Azure
Storage stringAccount Name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Account name.
- Azure
Storage stringContainer Name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Storage name.
- Display
Name string - A filter to return Oracle DB Azure Blob Container resources that match the specified display name.
- Filters
List<Get
Dbmulticloud Oracle Db Azure Blob Containers Filter> - Oracle
Db stringAzure Blob Container Id - A filter to return Oracle DB Azure Blob Container resource.
- State string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Compartment
Id string - The ID of the compartment.
- Azure
Storage stringAccount Name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Account name.
- Azure
Storage stringContainer Name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Storage name.
- Display
Name string - A filter to return Oracle DB Azure Blob Container resources that match the specified display name.
- Filters
[]Get
Dbmulticloud Oracle Db Azure Blob Containers Filter - Oracle
Db stringAzure Blob Container Id - A filter to return Oracle DB Azure Blob Container resource.
- State string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- compartment
Id String - The ID of the compartment.
- azure
Storage StringAccount Name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Account name.
- azure
Storage StringContainer Name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Storage name.
- display
Name String - A filter to return Oracle DB Azure Blob Container resources that match the specified display name.
- filters
List<Get
Dbmulticloud Oracle Db Azure Blob Containers Filter> - oracle
Db StringAzure Blob Container Id - A filter to return Oracle DB Azure Blob Container resource.
- state String
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- compartment
Id string - The ID of the compartment.
- azure
Storage stringAccount Name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Account name.
- azure
Storage stringContainer Name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Storage name.
- display
Name string - A filter to return Oracle DB Azure Blob Container resources that match the specified display name.
- filters
Get
Dbmulticloud Oracle Db Azure Blob Containers Filter[] - oracle
Db stringAzure Blob Container Id - A filter to return Oracle DB Azure Blob Container resource.
- state string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- compartment_
id str - The ID of the compartment.
- azure_
storage_ straccount_ name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Account name.
- azure_
storage_ strcontainer_ name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Storage name.
- display_
name str - A filter to return Oracle DB Azure Blob Container resources that match the specified display name.
- filters
Sequence[Get
Dbmulticloud Oracle Db Azure Blob Containers Filter] - oracle_
db_ strazure_ blob_ container_ id - A filter to return Oracle DB Azure Blob Container resource.
- state str
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- compartment
Id String - The ID of the compartment.
- azure
Storage StringAccount Name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Account name.
- azure
Storage StringContainer Name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Storage name.
- display
Name String - A filter to return Oracle DB Azure Blob Container resources that match the specified display name.
- filters List<Property Map>
- oracle
Db StringAzure Blob Container Id - A filter to return Oracle DB Azure Blob Container resource.
- state String
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
getDbmulticloudOracleDbAzureBlobContainers Result
The following output properties are available:
- Compartment
Id string - The OCID of of the compartment that contains Oracle DB Azure Blob Container resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Oracle
Db List<GetAzure Blob Container Summary Collections Dbmulticloud Oracle Db Azure Blob Containers Oracle Db Azure Blob Container Summary Collection> - The list of oracle_db_azure_blob_container_summary_collection.
- Azure
Storage stringAccount Name - Azure Storage account name.
- Azure
Storage stringContainer Name - Azure Storage container name.
- Display
Name string - Oracle DB Azure Blob Container resource name.
- Filters
List<Get
Dbmulticloud Oracle Db Azure Blob Containers Filter> - Oracle
Db stringAzure Blob Container Id - State string
- The current lifecycle state of the Oracle DB Azure Blob Container resource.
- Compartment
Id string - The OCID of of the compartment that contains Oracle DB Azure Blob Container resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Oracle
Db []GetAzure Blob Container Summary Collections Dbmulticloud Oracle Db Azure Blob Containers Oracle Db Azure Blob Container Summary Collection - The list of oracle_db_azure_blob_container_summary_collection.
- Azure
Storage stringAccount Name - Azure Storage account name.
- Azure
Storage stringContainer Name - Azure Storage container name.
- Display
Name string - Oracle DB Azure Blob Container resource name.
- Filters
[]Get
Dbmulticloud Oracle Db Azure Blob Containers Filter - Oracle
Db stringAzure Blob Container Id - State string
- The current lifecycle state of the Oracle DB Azure Blob Container resource.
- compartment
Id String - The OCID of of the compartment that contains Oracle DB Azure Blob Container resource.
- id String
- The provider-assigned unique ID for this managed resource.
- oracle
Db List<GetAzure Blob Container Summary Collections Dbmulticloud Oracle Db Azure Blob Containers Oracle Db Azure Blob Container Summary Collection> - The list of oracle_db_azure_blob_container_summary_collection.
- azure
Storage StringAccount Name - Azure Storage account name.
- azure
Storage StringContainer Name - Azure Storage container name.
- display
Name String - Oracle DB Azure Blob Container resource name.
- filters
List<Get
Dbmulticloud Oracle Db Azure Blob Containers Filter> - oracle
Db StringAzure Blob Container Id - state String
- The current lifecycle state of the Oracle DB Azure Blob Container resource.
- compartment
Id string - The OCID of of the compartment that contains Oracle DB Azure Blob Container resource.
- id string
- The provider-assigned unique ID for this managed resource.
- oracle
Db GetAzure Blob Container Summary Collections Dbmulticloud Oracle Db Azure Blob Containers Oracle Db Azure Blob Container Summary Collection[] - The list of oracle_db_azure_blob_container_summary_collection.
- azure
Storage stringAccount Name - Azure Storage account name.
- azure
Storage stringContainer Name - Azure Storage container name.
- display
Name string - Oracle DB Azure Blob Container resource name.
- filters
Get
Dbmulticloud Oracle Db Azure Blob Containers Filter[] - oracle
Db stringAzure Blob Container Id - state string
- The current lifecycle state of the Oracle DB Azure Blob Container resource.
- compartment_
id str - The OCID of of the compartment that contains Oracle DB Azure Blob Container resource.
- id str
- The provider-assigned unique ID for this managed resource.
- oracle_
db_ Sequence[Getazure_ blob_ container_ summary_ collections Dbmulticloud Oracle Db Azure Blob Containers Oracle Db Azure Blob Container Summary Collection] - The list of oracle_db_azure_blob_container_summary_collection.
- azure_
storage_ straccount_ name - Azure Storage account name.
- azure_
storage_ strcontainer_ name - Azure Storage container name.
- display_
name str - Oracle DB Azure Blob Container resource name.
- filters
Sequence[Get
Dbmulticloud Oracle Db Azure Blob Containers Filter] - oracle_
db_ strazure_ blob_ container_ id - state str
- The current lifecycle state of the Oracle DB Azure Blob Container resource.
- compartment
Id String - The OCID of of the compartment that contains Oracle DB Azure Blob Container resource.
- id String
- The provider-assigned unique ID for this managed resource.
- oracle
Db List<Property Map>Azure Blob Container Summary Collections - The list of oracle_db_azure_blob_container_summary_collection.
- azure
Storage StringAccount Name - Azure Storage account name.
- azure
Storage StringContainer Name - Azure Storage container name.
- display
Name String - Oracle DB Azure Blob Container resource name.
- filters List<Property Map>
- oracle
Db StringAzure Blob Container Id - state String
- The current lifecycle state of the Oracle DB Azure Blob Container resource.
Supporting Types
GetDbmulticloudOracleDbAzureBlobContainersFilter
GetDbmulticloudOracleDbAzureBlobContainersOracleDbAzureBlobContainerSummaryCollection
GetDbmulticloudOracleDbAzureBlobContainersOracleDbAzureBlobContainerSummaryCollectionItem
- Azure
Storage stringAccount Name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Account name.
- Azure
Storage stringContainer Name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Storage name.
- Compartment
Id string - The ID of the compartment.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Display
Name string - A filter to return Oracle DB Azure Blob Container resources that match the specified display name.
- Dictionary<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. Example:
{"Department": "Finance"} - Id string
- The OCID of Oracle DB Azure Blob Container resource.
- Last
Modification string - Description of the latest modification of the Oracle DB Azure Blob Container resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- Private
Endpoint stringDns Alias - Private endpoint's DNS Alias.
- Private
Endpoint stringIp Address - Private endpoint IP.
- State string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- Time
Updated string - Time when the Oracle DB Azure Blob Container was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- Azure
Storage stringAccount Name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Account name.
- Azure
Storage stringContainer Name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Storage name.
- Compartment
Id string - The ID of the compartment.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - Display
Name string - A filter to return Oracle DB Azure Blob Container resources that match the specified display name.
- map[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. Example:
{"Department": "Finance"} - Id string
- The OCID of Oracle DB Azure Blob Container resource.
- Last
Modification string - Description of the latest modification of the Oracle DB Azure Blob Container resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- Private
Endpoint stringDns Alias - Private endpoint's DNS Alias.
- Private
Endpoint stringIp Address - Private endpoint IP.
- State string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- Time
Updated string - Time when the Oracle DB Azure Blob Container was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- azure
Storage StringAccount Name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Account name.
- azure
Storage StringContainer Name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Storage name.
- compartment
Id String - The ID of the compartment.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name String - A filter to return Oracle DB Azure Blob Container resources that match the specified display name.
- Map<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. Example:
{"Department": "Finance"} - id String
- The OCID of Oracle DB Azure Blob Container resource.
- last
Modification String - Description of the latest modification of the Oracle DB Azure Blob Container resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- private
Endpoint StringDns Alias - Private endpoint's DNS Alias.
- private
Endpoint StringIp Address - Private endpoint IP.
- state String
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time
Updated String - Time when the Oracle DB Azure Blob Container was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- azure
Storage stringAccount Name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Account name.
- azure
Storage stringContainer Name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Storage name.
- compartment
Id string - The ID of the compartment.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name string - A filter to return Oracle DB Azure Blob Container resources that match the specified display name.
- {[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. Example:
{"Department": "Finance"} - id string
- The OCID of Oracle DB Azure Blob Container resource.
- last
Modification string - Description of the latest modification of the Oracle DB Azure Blob Container resource.
- lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- private
Endpoint stringDns Alias - Private endpoint's DNS Alias.
- private
Endpoint stringIp Address - Private endpoint IP.
- state string
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time
Updated string - Time when the Oracle DB Azure Blob Container was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- azure_
storage_ straccount_ name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Account name.
- azure_
storage_ strcontainer_ name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Storage name.
- compartment_
id str - The ID of the compartment.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display_
name str - A filter to return Oracle DB Azure Blob Container resources that match the specified display name.
- Mapping[str, str]
- 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. Example:
{"Department": "Finance"} - id str
- The OCID of Oracle DB Azure Blob Container resource.
- last_
modification str - Description of the latest modification of the Oracle DB Azure Blob Container resource.
- lifecycle_
state_ strdetails - Description of the current lifecycle state in more detail.
- private_
endpoint_ strdns_ alias - Private endpoint's DNS Alias.
- private_
endpoint_ strip_ address - Private endpoint IP.
- state str
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
created str - Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time_
updated str - Time when the Oracle DB Azure Blob Container was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- azure
Storage StringAccount Name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Account name.
- azure
Storage StringContainer Name - A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Storage name.
- compartment
Id String - The ID of the compartment.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"} - display
Name String - A filter to return Oracle DB Azure Blob Container resources that match the specified display name.
- Map<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. Example:
{"Department": "Finance"} - id String
- The OCID of Oracle DB Azure Blob Container resource.
- last
Modification String - Description of the latest modification of the Oracle DB Azure Blob Container resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- private
Endpoint StringDns Alias - Private endpoint's DNS Alias.
- private
Endpoint StringIp Address - Private endpoint IP.
- state String
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time
Updated String - Time when the Oracle DB Azure Blob Container was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
Oracle Cloud Infrastructure v3.15.0 published on Thursday, Jan 22, 2026 by Pulumi
