1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. DbmulticloudOracleDbAzureBlobContainer
Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi
oci logo
Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testOracleDbAzureBlobContainer = new oci.oci.DbmulticloudOracleDbAzureBlobContainer("test_oracle_db_azure_blob_container", {
        azureStorageAccountName: oracleDbAzureBlobContainerAzureStorageAccountName,
        azureStorageContainerName: oracleDbAzureBlobContainerAzureStorageContainerName,
        compartmentId: compartmentId,
        displayName: oracleDbAzureBlobContainerDisplayName,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        freeformTags: {
            Department: "Finance",
        },
        privateEndpointDnsAlias: oracleDbAzureBlobContainerPrivateEndpointDnsAlias,
        privateEndpointIpAddress: oracleDbAzureBlobContainerPrivateEndpointIpAddress,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_oracle_db_azure_blob_container = oci.oci.DbmulticloudOracleDbAzureBlobContainer("test_oracle_db_azure_blob_container",
        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,
        compartment_id=compartment_id,
        display_name=oracle_db_azure_blob_container_display_name,
        defined_tags={
            "Operations.CostCenter": "42",
        },
        freeform_tags={
            "Department": "Finance",
        },
        private_endpoint_dns_alias=oracle_db_azure_blob_container_private_endpoint_dns_alias,
        private_endpoint_ip_address=oracle_db_azure_blob_container_private_endpoint_ip_address)
    
    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.NewDbmulticloudOracleDbAzureBlobContainer(ctx, "test_oracle_db_azure_blob_container", &oci.DbmulticloudOracleDbAzureBlobContainerArgs{
    			AzureStorageAccountName:   pulumi.Any(oracleDbAzureBlobContainerAzureStorageAccountName),
    			AzureStorageContainerName: pulumi.Any(oracleDbAzureBlobContainerAzureStorageContainerName),
    			CompartmentId:             pulumi.Any(compartmentId),
    			DisplayName:               pulumi.Any(oracleDbAzureBlobContainerDisplayName),
    			DefinedTags: pulumi.StringMap{
    				"Operations.CostCenter": pulumi.String("42"),
    			},
    			FreeformTags: pulumi.StringMap{
    				"Department": pulumi.String("Finance"),
    			},
    			PrivateEndpointDnsAlias:  pulumi.Any(oracleDbAzureBlobContainerPrivateEndpointDnsAlias),
    			PrivateEndpointIpAddress: pulumi.Any(oracleDbAzureBlobContainerPrivateEndpointIpAddress),
    		})
    		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 testOracleDbAzureBlobContainer = new Oci.Oci.DbmulticloudOracleDbAzureBlobContainer("test_oracle_db_azure_blob_container", new()
        {
            AzureStorageAccountName = oracleDbAzureBlobContainerAzureStorageAccountName,
            AzureStorageContainerName = oracleDbAzureBlobContainerAzureStorageContainerName,
            CompartmentId = compartmentId,
            DisplayName = oracleDbAzureBlobContainerDisplayName,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
            PrivateEndpointDnsAlias = oracleDbAzureBlobContainerPrivateEndpointDnsAlias,
            PrivateEndpointIpAddress = oracleDbAzureBlobContainerPrivateEndpointIpAddress,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.oci.DbmulticloudOracleDbAzureBlobContainer;
    import com.pulumi.oci.oci.DbmulticloudOracleDbAzureBlobContainerArgs;
    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) {
            var testOracleDbAzureBlobContainer = new DbmulticloudOracleDbAzureBlobContainer("testOracleDbAzureBlobContainer", DbmulticloudOracleDbAzureBlobContainerArgs.builder()
                .azureStorageAccountName(oracleDbAzureBlobContainerAzureStorageAccountName)
                .azureStorageContainerName(oracleDbAzureBlobContainerAzureStorageContainerName)
                .compartmentId(compartmentId)
                .displayName(oracleDbAzureBlobContainerDisplayName)
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .freeformTags(Map.of("Department", "Finance"))
                .privateEndpointDnsAlias(oracleDbAzureBlobContainerPrivateEndpointDnsAlias)
                .privateEndpointIpAddress(oracleDbAzureBlobContainerPrivateEndpointIpAddress)
                .build());
    
        }
    }
    
    resources:
      testOracleDbAzureBlobContainer:
        type: oci:oci:DbmulticloudOracleDbAzureBlobContainer
        name: test_oracle_db_azure_blob_container
        properties:
          azureStorageAccountName: ${oracleDbAzureBlobContainerAzureStorageAccountName}
          azureStorageContainerName: ${oracleDbAzureBlobContainerAzureStorageContainerName}
          compartmentId: ${compartmentId}
          displayName: ${oracleDbAzureBlobContainerDisplayName}
          definedTags:
            Operations.CostCenter: '42'
          freeformTags:
            Department: Finance
          privateEndpointDnsAlias: ${oracleDbAzureBlobContainerPrivateEndpointDnsAlias}
          privateEndpointIpAddress: ${oracleDbAzureBlobContainerPrivateEndpointIpAddress}
    

    Create DbmulticloudOracleDbAzureBlobContainer Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new DbmulticloudOracleDbAzureBlobContainer(name: string, args: DbmulticloudOracleDbAzureBlobContainerArgs, opts?: CustomResourceOptions);
    @overload
    def DbmulticloudOracleDbAzureBlobContainer(resource_name: str,
                                               args: DbmulticloudOracleDbAzureBlobContainerArgs,
                                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def DbmulticloudOracleDbAzureBlobContainer(resource_name: str,
                                               opts: Optional[ResourceOptions] = None,
                                               azure_storage_account_name: Optional[str] = None,
                                               azure_storage_container_name: Optional[str] = None,
                                               compartment_id: Optional[str] = None,
                                               display_name: Optional[str] = None,
                                               defined_tags: Optional[Mapping[str, str]] = None,
                                               freeform_tags: Optional[Mapping[str, str]] = None,
                                               private_endpoint_dns_alias: Optional[str] = None,
                                               private_endpoint_ip_address: Optional[str] = None)
    func NewDbmulticloudOracleDbAzureBlobContainer(ctx *Context, name string, args DbmulticloudOracleDbAzureBlobContainerArgs, opts ...ResourceOption) (*DbmulticloudOracleDbAzureBlobContainer, error)
    public DbmulticloudOracleDbAzureBlobContainer(string name, DbmulticloudOracleDbAzureBlobContainerArgs args, CustomResourceOptions? opts = null)
    public DbmulticloudOracleDbAzureBlobContainer(String name, DbmulticloudOracleDbAzureBlobContainerArgs args)
    public DbmulticloudOracleDbAzureBlobContainer(String name, DbmulticloudOracleDbAzureBlobContainerArgs args, CustomResourceOptions options)
    
    type: oci:oci:DbmulticloudOracleDbAzureBlobContainer
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DbmulticloudOracleDbAzureBlobContainerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DbmulticloudOracleDbAzureBlobContainerArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DbmulticloudOracleDbAzureBlobContainerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DbmulticloudOracleDbAzureBlobContainerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DbmulticloudOracleDbAzureBlobContainerArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var dbmulticloudOracleDbAzureBlobContainerResource = new Oci.Oci.DbmulticloudOracleDbAzureBlobContainer("dbmulticloudOracleDbAzureBlobContainerResource", new()
    {
        AzureStorageAccountName = "string",
        AzureStorageContainerName = "string",
        CompartmentId = "string",
        DisplayName = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        FreeformTags = 
        {
            { "string", "string" },
        },
        PrivateEndpointDnsAlias = "string",
        PrivateEndpointIpAddress = "string",
    });
    
    example, err := oci.NewDbmulticloudOracleDbAzureBlobContainer(ctx, "dbmulticloudOracleDbAzureBlobContainerResource", &oci.DbmulticloudOracleDbAzureBlobContainerArgs{
    	AzureStorageAccountName:   pulumi.String("string"),
    	AzureStorageContainerName: pulumi.String("string"),
    	CompartmentId:             pulumi.String("string"),
    	DisplayName:               pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	PrivateEndpointDnsAlias:  pulumi.String("string"),
    	PrivateEndpointIpAddress: pulumi.String("string"),
    })
    
    var dbmulticloudOracleDbAzureBlobContainerResource = new DbmulticloudOracleDbAzureBlobContainer("dbmulticloudOracleDbAzureBlobContainerResource", DbmulticloudOracleDbAzureBlobContainerArgs.builder()
        .azureStorageAccountName("string")
        .azureStorageContainerName("string")
        .compartmentId("string")
        .displayName("string")
        .definedTags(Map.of("string", "string"))
        .freeformTags(Map.of("string", "string"))
        .privateEndpointDnsAlias("string")
        .privateEndpointIpAddress("string")
        .build());
    
    dbmulticloud_oracle_db_azure_blob_container_resource = oci.oci.DbmulticloudOracleDbAzureBlobContainer("dbmulticloudOracleDbAzureBlobContainerResource",
        azure_storage_account_name="string",
        azure_storage_container_name="string",
        compartment_id="string",
        display_name="string",
        defined_tags={
            "string": "string",
        },
        freeform_tags={
            "string": "string",
        },
        private_endpoint_dns_alias="string",
        private_endpoint_ip_address="string")
    
    const dbmulticloudOracleDbAzureBlobContainerResource = new oci.oci.DbmulticloudOracleDbAzureBlobContainer("dbmulticloudOracleDbAzureBlobContainerResource", {
        azureStorageAccountName: "string",
        azureStorageContainerName: "string",
        compartmentId: "string",
        displayName: "string",
        definedTags: {
            string: "string",
        },
        freeformTags: {
            string: "string",
        },
        privateEndpointDnsAlias: "string",
        privateEndpointIpAddress: "string",
    });
    
    type: oci:oci:DbmulticloudOracleDbAzureBlobContainer
    properties:
        azureStorageAccountName: string
        azureStorageContainerName: string
        compartmentId: string
        definedTags:
            string: string
        displayName: string
        freeformTags:
            string: string
        privateEndpointDnsAlias: string
        privateEndpointIpAddress: string
    

    DbmulticloudOracleDbAzureBlobContainer Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The DbmulticloudOracleDbAzureBlobContainer resource accepts the following input properties:

    AzureStorageAccountName string
    (Updatable) Azure Storage account name.
    AzureStorageContainerName string
    (Updatable) Azure Storage container name.
    CompartmentId string
    (Updatable) The OCID of Oracle DB Azure Blob Container resource.
    DisplayName string
    (Updatable) Oracle DB Azure Blob Container resource name.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    FreeformTags Dictionary<string, string>
    (Updatable) 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"}
    PrivateEndpointDnsAlias string
    (Updatable) Private endpoint's DNS alias.
    PrivateEndpointIpAddress string

    (Updatable) Private endpoint IP.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    AzureStorageAccountName string
    (Updatable) Azure Storage account name.
    AzureStorageContainerName string
    (Updatable) Azure Storage container name.
    CompartmentId string
    (Updatable) The OCID of Oracle DB Azure Blob Container resource.
    DisplayName string
    (Updatable) Oracle DB Azure Blob Container resource name.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    FreeformTags map[string]string
    (Updatable) 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"}
    PrivateEndpointDnsAlias string
    (Updatable) Private endpoint's DNS alias.
    PrivateEndpointIpAddress string

    (Updatable) Private endpoint IP.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    azureStorageAccountName String
    (Updatable) Azure Storage account name.
    azureStorageContainerName String
    (Updatable) Azure Storage container name.
    compartmentId String
    (Updatable) The OCID of Oracle DB Azure Blob Container resource.
    displayName String
    (Updatable) Oracle DB Azure Blob Container resource name.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    freeformTags Map<String,String>
    (Updatable) 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"}
    privateEndpointDnsAlias String
    (Updatable) Private endpoint's DNS alias.
    privateEndpointIpAddress String

    (Updatable) Private endpoint IP.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    azureStorageAccountName string
    (Updatable) Azure Storage account name.
    azureStorageContainerName string
    (Updatable) Azure Storage container name.
    compartmentId string
    (Updatable) The OCID of Oracle DB Azure Blob Container resource.
    displayName string
    (Updatable) Oracle DB Azure Blob Container resource name.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    freeformTags {[key: string]: string}
    (Updatable) 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"}
    privateEndpointDnsAlias string
    (Updatable) Private endpoint's DNS alias.
    privateEndpointIpAddress string

    (Updatable) Private endpoint IP.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    azure_storage_account_name str
    (Updatable) Azure Storage account name.
    azure_storage_container_name str
    (Updatable) Azure Storage container name.
    compartment_id str
    (Updatable) The OCID of Oracle DB Azure Blob Container resource.
    display_name str
    (Updatable) Oracle DB Azure Blob Container resource name.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    freeform_tags Mapping[str, str]
    (Updatable) 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"}
    private_endpoint_dns_alias str
    (Updatable) Private endpoint's DNS alias.
    private_endpoint_ip_address str

    (Updatable) Private endpoint IP.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    azureStorageAccountName String
    (Updatable) Azure Storage account name.
    azureStorageContainerName String
    (Updatable) Azure Storage container name.
    compartmentId String
    (Updatable) The OCID of Oracle DB Azure Blob Container resource.
    displayName String
    (Updatable) Oracle DB Azure Blob Container resource name.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    freeformTags Map<String>
    (Updatable) 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"}
    privateEndpointDnsAlias String
    (Updatable) Private endpoint's DNS alias.
    privateEndpointIpAddress String

    (Updatable) Private endpoint IP.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DbmulticloudOracleDbAzureBlobContainer resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    LastModification string
    Description of the latest modification of the Oracle DB Azure Blob Container resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    State string
    The current lifecycle state of the Oracle DB Azure Blob Container resource.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    TimeUpdated 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'
    Id string
    The provider-assigned unique ID for this managed resource.
    LastModification string
    Description of the latest modification of the Oracle DB Azure Blob Container resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    State string
    The current lifecycle state of the Oracle DB Azure Blob Container resource.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    TimeUpdated 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'
    id String
    The provider-assigned unique ID for this managed resource.
    lastModification String
    Description of the latest modification of the Oracle DB Azure Blob Container resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    state String
    The current lifecycle state of the Oracle DB Azure Blob Container resource.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated 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'
    id string
    The provider-assigned unique ID for this managed resource.
    lastModification string
    Description of the latest modification of the Oracle DB Azure Blob Container resource.
    lifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    state string
    The current lifecycle state of the Oracle DB Azure Blob Container resource.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated 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'
    id str
    The provider-assigned unique ID for this managed resource.
    last_modification str
    Description of the latest modification of the Oracle DB Azure Blob Container resource.
    lifecycle_state_details str
    Description of the current lifecycle state in more detail.
    state str
    The current lifecycle state of the Oracle DB Azure Blob Container resource.
    system_tags 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'
    id String
    The provider-assigned unique ID for this managed resource.
    lastModification String
    Description of the latest modification of the Oracle DB Azure Blob Container resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    state String
    The current lifecycle state of the Oracle DB Azure Blob Container resource.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated 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'

    Look up Existing DbmulticloudOracleDbAzureBlobContainer Resource

    Get an existing DbmulticloudOracleDbAzureBlobContainer resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DbmulticloudOracleDbAzureBlobContainerState, opts?: CustomResourceOptions): DbmulticloudOracleDbAzureBlobContainer
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            azure_storage_account_name: Optional[str] = None,
            azure_storage_container_name: Optional[str] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            last_modification: Optional[str] = None,
            lifecycle_state_details: Optional[str] = None,
            private_endpoint_dns_alias: Optional[str] = None,
            private_endpoint_ip_address: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> DbmulticloudOracleDbAzureBlobContainer
    func GetDbmulticloudOracleDbAzureBlobContainer(ctx *Context, name string, id IDInput, state *DbmulticloudOracleDbAzureBlobContainerState, opts ...ResourceOption) (*DbmulticloudOracleDbAzureBlobContainer, error)
    public static DbmulticloudOracleDbAzureBlobContainer Get(string name, Input<string> id, DbmulticloudOracleDbAzureBlobContainerState? state, CustomResourceOptions? opts = null)
    public static DbmulticloudOracleDbAzureBlobContainer get(String name, Output<String> id, DbmulticloudOracleDbAzureBlobContainerState state, CustomResourceOptions options)
    resources:  _:    type: oci:oci:DbmulticloudOracleDbAzureBlobContainer    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AzureStorageAccountName string
    (Updatable) Azure Storage account name.
    AzureStorageContainerName string
    (Updatable) Azure Storage container name.
    CompartmentId string
    (Updatable) The OCID of Oracle DB Azure Blob Container resource.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    (Updatable) Oracle DB Azure Blob Container resource name.
    FreeformTags Dictionary<string, string>
    (Updatable) 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"}
    LastModification string
    Description of the latest modification of the Oracle DB Azure Blob Container resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    PrivateEndpointDnsAlias string
    (Updatable) Private endpoint's DNS alias.
    PrivateEndpointIpAddress string

    (Updatable) Private endpoint IP.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    State string
    The current lifecycle state of the Oracle DB Azure Blob Container resource.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    TimeUpdated 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'
    AzureStorageAccountName string
    (Updatable) Azure Storage account name.
    AzureStorageContainerName string
    (Updatable) Azure Storage container name.
    CompartmentId string
    (Updatable) The OCID of Oracle DB Azure Blob Container resource.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    (Updatable) Oracle DB Azure Blob Container resource name.
    FreeformTags map[string]string
    (Updatable) 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"}
    LastModification string
    Description of the latest modification of the Oracle DB Azure Blob Container resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    PrivateEndpointDnsAlias string
    (Updatable) Private endpoint's DNS alias.
    PrivateEndpointIpAddress string

    (Updatable) Private endpoint IP.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    State string
    The current lifecycle state of the Oracle DB Azure Blob Container resource.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    TimeUpdated 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'
    azureStorageAccountName String
    (Updatable) Azure Storage account name.
    azureStorageContainerName String
    (Updatable) Azure Storage container name.
    compartmentId String
    (Updatable) The OCID of Oracle DB Azure Blob Container resource.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    (Updatable) Oracle DB Azure Blob Container resource name.
    freeformTags Map<String,String>
    (Updatable) 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"}
    lastModification String
    Description of the latest modification of the Oracle DB Azure Blob Container resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    privateEndpointDnsAlias String
    (Updatable) Private endpoint's DNS alias.
    privateEndpointIpAddress String

    (Updatable) Private endpoint IP.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    state String
    The current lifecycle state of the Oracle DB Azure Blob Container resource.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated 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'
    azureStorageAccountName string
    (Updatable) Azure Storage account name.
    azureStorageContainerName string
    (Updatable) Azure Storage container name.
    compartmentId string
    (Updatable) The OCID of Oracle DB Azure Blob Container resource.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    (Updatable) Oracle DB Azure Blob Container resource name.
    freeformTags {[key: string]: string}
    (Updatable) 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"}
    lastModification string
    Description of the latest modification of the Oracle DB Azure Blob Container resource.
    lifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    privateEndpointDnsAlias string
    (Updatable) Private endpoint's DNS alias.
    privateEndpointIpAddress string

    (Updatable) Private endpoint IP.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    state string
    The current lifecycle state of the Oracle DB Azure Blob Container resource.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated 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_account_name str
    (Updatable) Azure Storage account name.
    azure_storage_container_name str
    (Updatable) Azure Storage container name.
    compartment_id str
    (Updatable) The OCID of Oracle DB Azure Blob Container resource.
    defined_tags Mapping[str, str]
    (Updatable) 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
    (Updatable) Oracle DB Azure Blob Container resource name.
    freeform_tags Mapping[str, str]
    (Updatable) 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"}
    last_modification str
    Description of the latest modification of the Oracle DB Azure Blob Container resource.
    lifecycle_state_details str
    Description of the current lifecycle state in more detail.
    private_endpoint_dns_alias str
    (Updatable) Private endpoint's DNS alias.
    private_endpoint_ip_address str

    (Updatable) Private endpoint IP.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    state str
    The current lifecycle state of the Oracle DB Azure Blob Container resource.
    system_tags 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'
    azureStorageAccountName String
    (Updatable) Azure Storage account name.
    azureStorageContainerName String
    (Updatable) Azure Storage container name.
    compartmentId String
    (Updatable) The OCID of Oracle DB Azure Blob Container resource.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    (Updatable) Oracle DB Azure Blob Container resource name.
    freeformTags Map<String>
    (Updatable) 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"}
    lastModification String
    Description of the latest modification of the Oracle DB Azure Blob Container resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    privateEndpointDnsAlias String
    (Updatable) Private endpoint's DNS alias.
    privateEndpointIpAddress String

    (Updatable) Private endpoint IP.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    state String
    The current lifecycle state of the Oracle DB Azure Blob Container resource.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated 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'

    Import

    OracleDbAzureBlobContainers can be imported using the id, e.g.

    $ pulumi import oci:oci/dbmulticloudOracleDbAzureBlobContainer:DbmulticloudOracleDbAzureBlobContainer test_oracle_db_azure_blob_container "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate