1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. DbmulticloudOracleDbAzureBlobMount
Oracle Cloud Infrastructure v3.14.0 published on Friday, Jan 16, 2026 by Pulumi
oci logo
Oracle Cloud Infrastructure v3.14.0 published on Friday, Jan 16, 2026 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testOracleDbAzureBlobMount = new oci.oci.DbmulticloudOracleDbAzureBlobMount("test_oracle_db_azure_blob_mount", {
        compartmentId: compartmentId,
        displayName: oracleDbAzureBlobMountDisplayName,
        oracleDbAzureBlobContainerId: testOracleDbAzureBlobContainer.id,
        oracleDbAzureConnectorId: testOracleDbAzureConnector.id,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        freeformTags: {
            Department: "Finance",
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_oracle_db_azure_blob_mount = oci.oci.DbmulticloudOracleDbAzureBlobMount("test_oracle_db_azure_blob_mount",
        compartment_id=compartment_id,
        display_name=oracle_db_azure_blob_mount_display_name,
        oracle_db_azure_blob_container_id=test_oracle_db_azure_blob_container["id"],
        oracle_db_azure_connector_id=test_oracle_db_azure_connector["id"],
        defined_tags={
            "Operations.CostCenter": "42",
        },
        freeform_tags={
            "Department": "Finance",
        })
    
    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.NewDbmulticloudOracleDbAzureBlobMount(ctx, "test_oracle_db_azure_blob_mount", &oci.DbmulticloudOracleDbAzureBlobMountArgs{
    			CompartmentId:                pulumi.Any(compartmentId),
    			DisplayName:                  pulumi.Any(oracleDbAzureBlobMountDisplayName),
    			OracleDbAzureBlobContainerId: pulumi.Any(testOracleDbAzureBlobContainer.Id),
    			OracleDbAzureConnectorId:     pulumi.Any(testOracleDbAzureConnector.Id),
    			DefinedTags: pulumi.StringMap{
    				"Operations.CostCenter": pulumi.String("42"),
    			},
    			FreeformTags: pulumi.StringMap{
    				"Department": pulumi.String("Finance"),
    			},
    		})
    		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 testOracleDbAzureBlobMount = new Oci.Oci.DbmulticloudOracleDbAzureBlobMount("test_oracle_db_azure_blob_mount", new()
        {
            CompartmentId = compartmentId,
            DisplayName = oracleDbAzureBlobMountDisplayName,
            OracleDbAzureBlobContainerId = testOracleDbAzureBlobContainer.Id,
            OracleDbAzureConnectorId = testOracleDbAzureConnector.Id,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.oci.DbmulticloudOracleDbAzureBlobMount;
    import com.pulumi.oci.oci.DbmulticloudOracleDbAzureBlobMountArgs;
    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 testOracleDbAzureBlobMount = new DbmulticloudOracleDbAzureBlobMount("testOracleDbAzureBlobMount", DbmulticloudOracleDbAzureBlobMountArgs.builder()
                .compartmentId(compartmentId)
                .displayName(oracleDbAzureBlobMountDisplayName)
                .oracleDbAzureBlobContainerId(testOracleDbAzureBlobContainer.id())
                .oracleDbAzureConnectorId(testOracleDbAzureConnector.id())
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .freeformTags(Map.of("Department", "Finance"))
                .build());
    
        }
    }
    
    resources:
      testOracleDbAzureBlobMount:
        type: oci:oci:DbmulticloudOracleDbAzureBlobMount
        name: test_oracle_db_azure_blob_mount
        properties:
          compartmentId: ${compartmentId}
          displayName: ${oracleDbAzureBlobMountDisplayName}
          oracleDbAzureBlobContainerId: ${testOracleDbAzureBlobContainer.id}
          oracleDbAzureConnectorId: ${testOracleDbAzureConnector.id}
          definedTags:
            Operations.CostCenter: '42'
          freeformTags:
            Department: Finance
    

    Create DbmulticloudOracleDbAzureBlobMount Resource

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

    Constructor syntax

    new DbmulticloudOracleDbAzureBlobMount(name: string, args: DbmulticloudOracleDbAzureBlobMountArgs, opts?: CustomResourceOptions);
    @overload
    def DbmulticloudOracleDbAzureBlobMount(resource_name: str,
                                           args: DbmulticloudOracleDbAzureBlobMountArgs,
                                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def DbmulticloudOracleDbAzureBlobMount(resource_name: str,
                                           opts: Optional[ResourceOptions] = None,
                                           compartment_id: Optional[str] = None,
                                           display_name: Optional[str] = None,
                                           oracle_db_azure_blob_container_id: Optional[str] = None,
                                           oracle_db_azure_connector_id: Optional[str] = None,
                                           defined_tags: Optional[Mapping[str, str]] = None,
                                           freeform_tags: Optional[Mapping[str, str]] = None)
    func NewDbmulticloudOracleDbAzureBlobMount(ctx *Context, name string, args DbmulticloudOracleDbAzureBlobMountArgs, opts ...ResourceOption) (*DbmulticloudOracleDbAzureBlobMount, error)
    public DbmulticloudOracleDbAzureBlobMount(string name, DbmulticloudOracleDbAzureBlobMountArgs args, CustomResourceOptions? opts = null)
    public DbmulticloudOracleDbAzureBlobMount(String name, DbmulticloudOracleDbAzureBlobMountArgs args)
    public DbmulticloudOracleDbAzureBlobMount(String name, DbmulticloudOracleDbAzureBlobMountArgs args, CustomResourceOptions options)
    
    type: oci:oci:DbmulticloudOracleDbAzureBlobMount
    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 DbmulticloudOracleDbAzureBlobMountArgs
    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 DbmulticloudOracleDbAzureBlobMountArgs
    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 DbmulticloudOracleDbAzureBlobMountArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DbmulticloudOracleDbAzureBlobMountArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DbmulticloudOracleDbAzureBlobMountArgs
    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 dbmulticloudOracleDbAzureBlobMountResource = new Oci.Oci.DbmulticloudOracleDbAzureBlobMount("dbmulticloudOracleDbAzureBlobMountResource", new()
    {
        CompartmentId = "string",
        DisplayName = "string",
        OracleDbAzureBlobContainerId = "string",
        OracleDbAzureConnectorId = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        FreeformTags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := oci.NewDbmulticloudOracleDbAzureBlobMount(ctx, "dbmulticloudOracleDbAzureBlobMountResource", &oci.DbmulticloudOracleDbAzureBlobMountArgs{
    	CompartmentId:                pulumi.String("string"),
    	DisplayName:                  pulumi.String("string"),
    	OracleDbAzureBlobContainerId: pulumi.String("string"),
    	OracleDbAzureConnectorId:     pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var dbmulticloudOracleDbAzureBlobMountResource = new DbmulticloudOracleDbAzureBlobMount("dbmulticloudOracleDbAzureBlobMountResource", DbmulticloudOracleDbAzureBlobMountArgs.builder()
        .compartmentId("string")
        .displayName("string")
        .oracleDbAzureBlobContainerId("string")
        .oracleDbAzureConnectorId("string")
        .definedTags(Map.of("string", "string"))
        .freeformTags(Map.of("string", "string"))
        .build());
    
    dbmulticloud_oracle_db_azure_blob_mount_resource = oci.oci.DbmulticloudOracleDbAzureBlobMount("dbmulticloudOracleDbAzureBlobMountResource",
        compartment_id="string",
        display_name="string",
        oracle_db_azure_blob_container_id="string",
        oracle_db_azure_connector_id="string",
        defined_tags={
            "string": "string",
        },
        freeform_tags={
            "string": "string",
        })
    
    const dbmulticloudOracleDbAzureBlobMountResource = new oci.oci.DbmulticloudOracleDbAzureBlobMount("dbmulticloudOracleDbAzureBlobMountResource", {
        compartmentId: "string",
        displayName: "string",
        oracleDbAzureBlobContainerId: "string",
        oracleDbAzureConnectorId: "string",
        definedTags: {
            string: "string",
        },
        freeformTags: {
            string: "string",
        },
    });
    
    type: oci:oci:DbmulticloudOracleDbAzureBlobMount
    properties:
        compartmentId: string
        definedTags:
            string: string
        displayName: string
        freeformTags:
            string: string
        oracleDbAzureBlobContainerId: string
        oracleDbAzureConnectorId: string
    

    DbmulticloudOracleDbAzureBlobMount 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 DbmulticloudOracleDbAzureBlobMount resource accepts the following input properties:

    CompartmentId string
    (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
    DisplayName string
    (Updatable) Oracle DB Azure Blob Mount resource name.
    OracleDbAzureBlobContainerId string
    (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
    OracleDbAzureConnectorId string

    (Updatable) The OCID of the Oracle DB Azure Connector resource that contains Oracle DB Azure Blob Mount resource.

    ** 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

    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"}
    CompartmentId string
    (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
    DisplayName string
    (Updatable) Oracle DB Azure Blob Mount resource name.
    OracleDbAzureBlobContainerId string
    (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
    OracleDbAzureConnectorId string

    (Updatable) The OCID of the Oracle DB Azure Connector resource that contains Oracle DB Azure Blob Mount resource.

    ** 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

    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"}
    compartmentId String
    (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
    displayName String
    (Updatable) Oracle DB Azure Blob Mount resource name.
    oracleDbAzureBlobContainerId String
    (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
    oracleDbAzureConnectorId String

    (Updatable) The OCID of the Oracle DB Azure Connector resource that contains Oracle DB Azure Blob Mount resource.

    ** 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

    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"}
    compartmentId string
    (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
    displayName string
    (Updatable) Oracle DB Azure Blob Mount resource name.
    oracleDbAzureBlobContainerId string
    (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
    oracleDbAzureConnectorId string

    (Updatable) The OCID of the Oracle DB Azure Connector resource that contains Oracle DB Azure Blob Mount resource.

    ** 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

    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"}
    compartment_id str
    (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
    display_name str
    (Updatable) Oracle DB Azure Blob Mount resource name.
    oracle_db_azure_blob_container_id str
    (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
    oracle_db_azure_connector_id str

    (Updatable) The OCID of the Oracle DB Azure Connector resource that contains Oracle DB Azure Blob Mount resource.

    ** 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

    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"}
    compartmentId String
    (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
    displayName String
    (Updatable) Oracle DB Azure Blob Mount resource name.
    oracleDbAzureBlobContainerId String
    (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
    oracleDbAzureConnectorId String

    (Updatable) The OCID of the Oracle DB Azure Connector resource that contains Oracle DB Azure Blob Mount resource.

    ** 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

    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"}

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DbmulticloudOracleDbAzureBlobMount 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 Mount resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    MountPath string
    Oracle DB Azure Blob Mount path.
    State string
    The current lifecycle state of the Oracle DB Azure Blob Mount 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 Mount was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    TimeUpdated string
    Time when the Oracle DB Azure Blob Mount 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 Mount resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    MountPath string
    Oracle DB Azure Blob Mount path.
    State string
    The current lifecycle state of the Oracle DB Azure Blob Mount 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 Mount was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    TimeUpdated string
    Time when the Oracle DB Azure Blob Mount 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 Mount resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    mountPath String
    Oracle DB Azure Blob Mount path.
    state String
    The current lifecycle state of the Oracle DB Azure Blob Mount 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 Mount was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated String
    Time when the Oracle DB Azure Blob Mount 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 Mount resource.
    lifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    mountPath string
    Oracle DB Azure Blob Mount path.
    state string
    The current lifecycle state of the Oracle DB Azure Blob Mount 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 Mount was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated string
    Time when the Oracle DB Azure Blob Mount 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 Mount resource.
    lifecycle_state_details str
    Description of the current lifecycle state in more detail.
    mount_path str
    Oracle DB Azure Blob Mount path.
    state str
    The current lifecycle state of the Oracle DB Azure Blob Mount 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 Mount 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 Mount 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 Mount resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    mountPath String
    Oracle DB Azure Blob Mount path.
    state String
    The current lifecycle state of the Oracle DB Azure Blob Mount 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 Mount was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated String
    Time when the Oracle DB Azure Blob Mount was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'

    Look up Existing DbmulticloudOracleDbAzureBlobMount Resource

    Get an existing DbmulticloudOracleDbAzureBlobMount 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?: DbmulticloudOracleDbAzureBlobMountState, opts?: CustomResourceOptions): DbmulticloudOracleDbAzureBlobMount
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = 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,
            mount_path: Optional[str] = None,
            oracle_db_azure_blob_container_id: Optional[str] = None,
            oracle_db_azure_connector_id: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> DbmulticloudOracleDbAzureBlobMount
    func GetDbmulticloudOracleDbAzureBlobMount(ctx *Context, name string, id IDInput, state *DbmulticloudOracleDbAzureBlobMountState, opts ...ResourceOption) (*DbmulticloudOracleDbAzureBlobMount, error)
    public static DbmulticloudOracleDbAzureBlobMount Get(string name, Input<string> id, DbmulticloudOracleDbAzureBlobMountState? state, CustomResourceOptions? opts = null)
    public static DbmulticloudOracleDbAzureBlobMount get(String name, Output<String> id, DbmulticloudOracleDbAzureBlobMountState state, CustomResourceOptions options)
    resources:  _:    type: oci:oci:DbmulticloudOracleDbAzureBlobMount    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:
    CompartmentId string
    (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount 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 Mount 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 Mount resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    MountPath string
    Oracle DB Azure Blob Mount path.
    OracleDbAzureBlobContainerId string
    (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
    OracleDbAzureConnectorId string

    (Updatable) The OCID of the Oracle DB Azure Connector resource that contains Oracle DB Azure Blob Mount resource.

    ** 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 Mount 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 Mount was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    TimeUpdated string
    Time when the Oracle DB Azure Blob Mount was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    CompartmentId string
    (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount 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 Mount 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 Mount resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    MountPath string
    Oracle DB Azure Blob Mount path.
    OracleDbAzureBlobContainerId string
    (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
    OracleDbAzureConnectorId string

    (Updatable) The OCID of the Oracle DB Azure Connector resource that contains Oracle DB Azure Blob Mount resource.

    ** 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 Mount 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 Mount was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    TimeUpdated string
    Time when the Oracle DB Azure Blob Mount was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    compartmentId String
    (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount 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 Mount 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 Mount resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    mountPath String
    Oracle DB Azure Blob Mount path.
    oracleDbAzureBlobContainerId String
    (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
    oracleDbAzureConnectorId String

    (Updatable) The OCID of the Oracle DB Azure Connector resource that contains Oracle DB Azure Blob Mount resource.

    ** 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 Mount 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 Mount was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated String
    Time when the Oracle DB Azure Blob Mount was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    compartmentId string
    (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount 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 Mount 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 Mount resource.
    lifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    mountPath string
    Oracle DB Azure Blob Mount path.
    oracleDbAzureBlobContainerId string
    (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
    oracleDbAzureConnectorId string

    (Updatable) The OCID of the Oracle DB Azure Connector resource that contains Oracle DB Azure Blob Mount resource.

    ** 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 Mount 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 Mount was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated string
    Time when the Oracle DB Azure Blob Mount was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    compartment_id str
    (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount 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 Mount 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 Mount resource.
    lifecycle_state_details str
    Description of the current lifecycle state in more detail.
    mount_path str
    Oracle DB Azure Blob Mount path.
    oracle_db_azure_blob_container_id str
    (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
    oracle_db_azure_connector_id str

    (Updatable) The OCID of the Oracle DB Azure Connector resource that contains Oracle DB Azure Blob Mount resource.

    ** 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 Mount 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 Mount 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 Mount was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    compartmentId String
    (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount 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 Mount 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 Mount resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    mountPath String
    Oracle DB Azure Blob Mount path.
    oracleDbAzureBlobContainerId String
    (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
    oracleDbAzureConnectorId String

    (Updatable) The OCID of the Oracle DB Azure Connector resource that contains Oracle DB Azure Blob Mount resource.

    ** 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 Mount 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 Mount was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated String
    Time when the Oracle DB Azure Blob Mount was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'

    Import

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

    $ pulumi import oci:oci/dbmulticloudOracleDbAzureBlobMount:DbmulticloudOracleDbAzureBlobMount test_oracle_db_azure_blob_mount "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.14.0 published on Friday, Jan 16, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate