Oracle Cloud Infrastructure v3.12.0 published on Friday, Nov 21, 2025 by Pulumi
Oracle Cloud Infrastructure v3.12.0 published on Friday, Nov 21, 2025 by Pulumi
This data source provides the list of Oracle Db Azure Blob Mounts in Oracle Cloud Infrastructure Dbmulticloud service.
Lists all Oracle DB Azure Blob Mount resources based on the specified filters.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testOracleDbAzureBlobMounts = oci.oci.getDbmulticloudOracleDbAzureBlobMounts({
compartmentId: compartmentId,
displayName: oracleDbAzureBlobMountDisplayName,
oracleDbAzureBlobContainerId: testOracleDbAzureBlobContainer.id,
oracleDbAzureBlobMountId: testOracleDbAzureBlobMount.id,
oracleDbAzureConnectorId: testOracleDbAzureConnector.id,
state: oracleDbAzureBlobMountState,
});
import pulumi
import pulumi_oci as oci
test_oracle_db_azure_blob_mounts = oci.oci.get_dbmulticloud_oracle_db_azure_blob_mounts(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_blob_mount_id=test_oracle_db_azure_blob_mount["id"],
oracle_db_azure_connector_id=test_oracle_db_azure_connector["id"],
state=oracle_db_azure_blob_mount_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.GetDbmulticloudOracleDbAzureBlobMounts(ctx, &oci.GetDbmulticloudOracleDbAzureBlobMountsArgs{
CompartmentId: compartmentId,
DisplayName: pulumi.StringRef(oracleDbAzureBlobMountDisplayName),
OracleDbAzureBlobContainerId: pulumi.StringRef(testOracleDbAzureBlobContainer.Id),
OracleDbAzureBlobMountId: pulumi.StringRef(testOracleDbAzureBlobMount.Id),
OracleDbAzureConnectorId: pulumi.StringRef(testOracleDbAzureConnector.Id),
State: pulumi.StringRef(oracleDbAzureBlobMountState),
}, 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 testOracleDbAzureBlobMounts = Oci.Oci.GetDbmulticloudOracleDbAzureBlobMounts.Invoke(new()
{
CompartmentId = compartmentId,
DisplayName = oracleDbAzureBlobMountDisplayName,
OracleDbAzureBlobContainerId = testOracleDbAzureBlobContainer.Id,
OracleDbAzureBlobMountId = testOracleDbAzureBlobMount.Id,
OracleDbAzureConnectorId = testOracleDbAzureConnector.Id,
State = oracleDbAzureBlobMountState,
});
});
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.GetDbmulticloudOracleDbAzureBlobMountsArgs;
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 testOracleDbAzureBlobMounts = OciFunctions.getDbmulticloudOracleDbAzureBlobMounts(GetDbmulticloudOracleDbAzureBlobMountsArgs.builder()
.compartmentId(compartmentId)
.displayName(oracleDbAzureBlobMountDisplayName)
.oracleDbAzureBlobContainerId(testOracleDbAzureBlobContainer.id())
.oracleDbAzureBlobMountId(testOracleDbAzureBlobMount.id())
.oracleDbAzureConnectorId(testOracleDbAzureConnector.id())
.state(oracleDbAzureBlobMountState)
.build());
}
}
variables:
testOracleDbAzureBlobMounts:
fn::invoke:
function: oci:oci:getDbmulticloudOracleDbAzureBlobMounts
arguments:
compartmentId: ${compartmentId}
displayName: ${oracleDbAzureBlobMountDisplayName}
oracleDbAzureBlobContainerId: ${testOracleDbAzureBlobContainer.id}
oracleDbAzureBlobMountId: ${testOracleDbAzureBlobMount.id}
oracleDbAzureConnectorId: ${testOracleDbAzureConnector.id}
state: ${oracleDbAzureBlobMountState}
Using getDbmulticloudOracleDbAzureBlobMounts
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 getDbmulticloudOracleDbAzureBlobMounts(args: GetDbmulticloudOracleDbAzureBlobMountsArgs, opts?: InvokeOptions): Promise<GetDbmulticloudOracleDbAzureBlobMountsResult>
function getDbmulticloudOracleDbAzureBlobMountsOutput(args: GetDbmulticloudOracleDbAzureBlobMountsOutputArgs, opts?: InvokeOptions): Output<GetDbmulticloudOracleDbAzureBlobMountsResult>def get_dbmulticloud_oracle_db_azure_blob_mounts(compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetDbmulticloudOracleDbAzureBlobMountsFilter]] = None,
oracle_db_azure_blob_container_id: Optional[str] = None,
oracle_db_azure_blob_mount_id: Optional[str] = None,
oracle_db_azure_connector_id: Optional[str] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDbmulticloudOracleDbAzureBlobMountsResult
def get_dbmulticloud_oracle_db_azure_blob_mounts_output(compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetDbmulticloudOracleDbAzureBlobMountsFilterArgs]]]] = None,
oracle_db_azure_blob_container_id: Optional[pulumi.Input[str]] = None,
oracle_db_azure_blob_mount_id: Optional[pulumi.Input[str]] = None,
oracle_db_azure_connector_id: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDbmulticloudOracleDbAzureBlobMountsResult]func GetDbmulticloudOracleDbAzureBlobMounts(ctx *Context, args *GetDbmulticloudOracleDbAzureBlobMountsArgs, opts ...InvokeOption) (*GetDbmulticloudOracleDbAzureBlobMountsResult, error)
func GetDbmulticloudOracleDbAzureBlobMountsOutput(ctx *Context, args *GetDbmulticloudOracleDbAzureBlobMountsOutputArgs, opts ...InvokeOption) GetDbmulticloudOracleDbAzureBlobMountsResultOutput> Note: This function is named GetDbmulticloudOracleDbAzureBlobMounts in the Go SDK.
public static class GetDbmulticloudOracleDbAzureBlobMounts
{
public static Task<GetDbmulticloudOracleDbAzureBlobMountsResult> InvokeAsync(GetDbmulticloudOracleDbAzureBlobMountsArgs args, InvokeOptions? opts = null)
public static Output<GetDbmulticloudOracleDbAzureBlobMountsResult> Invoke(GetDbmulticloudOracleDbAzureBlobMountsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDbmulticloudOracleDbAzureBlobMountsResult> getDbmulticloudOracleDbAzureBlobMounts(GetDbmulticloudOracleDbAzureBlobMountsArgs args, InvokeOptions options)
public static Output<GetDbmulticloudOracleDbAzureBlobMountsResult> getDbmulticloudOracleDbAzureBlobMounts(GetDbmulticloudOracleDbAzureBlobMountsArgs args, InvokeOptions options)
fn::invoke:
function: oci:oci/getDbmulticloudOracleDbAzureBlobMounts:getDbmulticloudOracleDbAzureBlobMounts
arguments:
# arguments dictionaryThe following arguments are supported:
- Compartment
Id string - The ID of the compartment.
- Display
Name string - A filter to return Oracle DB Azure Blob Mount resources that match the specified display name.
- Filters
List<Get
Dbmulticloud Oracle Db Azure Blob Mounts Filter> - Oracle
Db stringAzure Blob Container Id - A filter to return Oracle DB Azure Blob Container resource.
- Oracle
Db stringAzure Blob Mount Id - The OCID of the Oracle DB Azure Blob Mount resource.
- Oracle
Db stringAzure Connector Id - A filter to return Oracle DB Azure Azure Identity Connector resources.
- 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.
- Display
Name string - A filter to return Oracle DB Azure Blob Mount resources that match the specified display name.
- Filters
[]Get
Dbmulticloud Oracle Db Azure Blob Mounts Filter - Oracle
Db stringAzure Blob Container Id - A filter to return Oracle DB Azure Blob Container resource.
- Oracle
Db stringAzure Blob Mount Id - The OCID of the Oracle DB Azure Blob Mount resource.
- Oracle
Db stringAzure Connector Id - A filter to return Oracle DB Azure Azure Identity Connector resources.
- 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.
- display
Name String - A filter to return Oracle DB Azure Blob Mount resources that match the specified display name.
- filters
List<Get
Dbmulticloud Oracle Db Azure Blob Mounts Filter> - oracle
Db StringAzure Blob Container Id - A filter to return Oracle DB Azure Blob Container resource.
- oracle
Db StringAzure Blob Mount Id - The OCID of the Oracle DB Azure Blob Mount resource.
- oracle
Db StringAzure Connector Id - A filter to return Oracle DB Azure Azure Identity Connector resources.
- 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.
- display
Name string - A filter to return Oracle DB Azure Blob Mount resources that match the specified display name.
- filters
Get
Dbmulticloud Oracle Db Azure Blob Mounts Filter[] - oracle
Db stringAzure Blob Container Id - A filter to return Oracle DB Azure Blob Container resource.
- oracle
Db stringAzure Blob Mount Id - The OCID of the Oracle DB Azure Blob Mount resource.
- oracle
Db stringAzure Connector Id - A filter to return Oracle DB Azure Azure Identity Connector resources.
- 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.
- display_
name str - A filter to return Oracle DB Azure Blob Mount resources that match the specified display name.
- filters
Sequence[Get
Dbmulticloud Oracle Db Azure Blob Mounts Filter] - oracle_
db_ strazure_ blob_ container_ id - A filter to return Oracle DB Azure Blob Container resource.
- oracle_
db_ strazure_ blob_ mount_ id - The OCID of the Oracle DB Azure Blob Mount resource.
- oracle_
db_ strazure_ connector_ id - A filter to return Oracle DB Azure Azure Identity Connector resources.
- 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.
- display
Name String - A filter to return Oracle DB Azure Blob Mount 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.
- oracle
Db StringAzure Blob Mount Id - The OCID of the Oracle DB Azure Blob Mount resource.
- oracle
Db StringAzure Connector Id - A filter to return Oracle DB Azure Azure Identity Connector resources.
- state String
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
getDbmulticloudOracleDbAzureBlobMounts Result
The following output properties are available:
- Compartment
Id string - The OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Oracle
Db List<GetAzure Blob Mount Summary Collections Dbmulticloud Oracle Db Azure Blob Mounts Oracle Db Azure Blob Mount Summary Collection> - The list of oracle_db_azure_blob_mount_summary_collection.
- Display
Name string - Oracle DB Azure Blob Mount resource name.
- Filters
List<Get
Dbmulticloud Oracle Db Azure Blob Mounts Filter> - Oracle
Db stringAzure Blob Container Id - The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
- Oracle
Db stringAzure Blob Mount Id - Oracle
Db stringAzure Connector Id - The OCID of the Oracle DB Azure Connector resource that contains Oracle DB Azure Blob Mount resource.
- State string
- The current lifecycle state of the Oracle DB Azure Blob Mount resource.
- Compartment
Id string - The OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Oracle
Db []GetAzure Blob Mount Summary Collections Dbmulticloud Oracle Db Azure Blob Mounts Oracle Db Azure Blob Mount Summary Collection - The list of oracle_db_azure_blob_mount_summary_collection.
- Display
Name string - Oracle DB Azure Blob Mount resource name.
- Filters
[]Get
Dbmulticloud Oracle Db Azure Blob Mounts Filter - Oracle
Db stringAzure Blob Container Id - The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
- Oracle
Db stringAzure Blob Mount Id - Oracle
Db stringAzure Connector Id - The OCID of the Oracle DB Azure Connector resource that contains Oracle DB Azure Blob Mount resource.
- State string
- The current lifecycle state of the Oracle DB Azure Blob Mount resource.
- compartment
Id String - The OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
- id String
- The provider-assigned unique ID for this managed resource.
- oracle
Db List<GetAzure Blob Mount Summary Collections Dbmulticloud Oracle Db Azure Blob Mounts Oracle Db Azure Blob Mount Summary Collection> - The list of oracle_db_azure_blob_mount_summary_collection.
- display
Name String - Oracle DB Azure Blob Mount resource name.
- filters
List<Get
Dbmulticloud Oracle Db Azure Blob Mounts Filter> - oracle
Db StringAzure Blob Container Id - The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
- oracle
Db StringAzure Blob Mount Id - oracle
Db StringAzure Connector Id - The OCID of the Oracle DB Azure Connector resource that contains Oracle DB Azure Blob Mount resource.
- state String
- The current lifecycle state of the Oracle DB Azure Blob Mount resource.
- compartment
Id string - The OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
- id string
- The provider-assigned unique ID for this managed resource.
- oracle
Db GetAzure Blob Mount Summary Collections Dbmulticloud Oracle Db Azure Blob Mounts Oracle Db Azure Blob Mount Summary Collection[] - The list of oracle_db_azure_blob_mount_summary_collection.
- display
Name string - Oracle DB Azure Blob Mount resource name.
- filters
Get
Dbmulticloud Oracle Db Azure Blob Mounts Filter[] - oracle
Db stringAzure Blob Container Id - The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
- oracle
Db stringAzure Blob Mount Id - oracle
Db stringAzure Connector Id - The OCID of the Oracle DB Azure Connector resource that contains Oracle DB Azure Blob Mount resource.
- state string
- The current lifecycle state of the Oracle DB Azure Blob Mount resource.
- compartment_
id str - The OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
- id str
- The provider-assigned unique ID for this managed resource.
- oracle_
db_ Sequence[Getazure_ blob_ mount_ summary_ collections Dbmulticloud Oracle Db Azure Blob Mounts Oracle Db Azure Blob Mount Summary Collection] - The list of oracle_db_azure_blob_mount_summary_collection.
- display_
name str - Oracle DB Azure Blob Mount resource name.
- filters
Sequence[Get
Dbmulticloud Oracle Db Azure Blob Mounts Filter] - oracle_
db_ strazure_ blob_ container_ id - The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
- oracle_
db_ strazure_ blob_ mount_ id - oracle_
db_ strazure_ connector_ id - The OCID of the Oracle DB Azure Connector resource that contains Oracle DB Azure Blob Mount resource.
- state str
- The current lifecycle state of the Oracle DB Azure Blob Mount resource.
- compartment
Id String - The OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
- id String
- The provider-assigned unique ID for this managed resource.
- oracle
Db List<Property Map>Azure Blob Mount Summary Collections - The list of oracle_db_azure_blob_mount_summary_collection.
- display
Name String - Oracle DB Azure Blob Mount resource name.
- filters List<Property Map>
- oracle
Db StringAzure Blob Container Id - The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
- oracle
Db StringAzure Blob Mount Id - oracle
Db StringAzure Connector Id - The OCID of the Oracle DB Azure Connector resource that contains Oracle DB Azure Blob Mount resource.
- state String
- The current lifecycle state of the Oracle DB Azure Blob Mount resource.
Supporting Types
GetDbmulticloudOracleDbAzureBlobMountsFilter
GetDbmulticloudOracleDbAzureBlobMountsOracleDbAzureBlobMountSummaryCollection
GetDbmulticloudOracleDbAzureBlobMountsOracleDbAzureBlobMountSummaryCollectionItem
- 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 Mount 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 The OCID of the Oracle DB Azure Blob Mount resource.
- Last
Modification string - Description of the latest modification of the Oracle DB Azure Blob Mount resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- Mount
Path string - Oracle DB Azure Blob Mount path.
- Oracle
Db stringAzure Blob Container Id - A filter to return Oracle DB Azure Blob Container resource.
- Oracle
Db stringAzure Connector Id - A filter to return Oracle DB Azure Azure Identity Connector resources.
- 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 Mount 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 Mount was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- 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 Mount 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 The OCID of the Oracle DB Azure Blob Mount resource.
- Last
Modification string - Description of the latest modification of the Oracle DB Azure Blob Mount resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- Mount
Path string - Oracle DB Azure Blob Mount path.
- Oracle
Db stringAzure Blob Container Id - A filter to return Oracle DB Azure Blob Container resource.
- Oracle
Db stringAzure Connector Id - A filter to return Oracle DB Azure Azure Identity Connector resources.
- 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 Mount 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 Mount was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- 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 Mount 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 The OCID of the Oracle DB Azure Blob Mount resource.
- last
Modification String - Description of the latest modification of the Oracle DB Azure Blob Mount resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- mount
Path String - Oracle DB Azure Blob Mount path.
- oracle
Db StringAzure Blob Container Id - A filter to return Oracle DB Azure Blob Container resource.
- oracle
Db StringAzure Connector Id - A filter to return Oracle DB Azure Azure Identity Connector resources.
- 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 Mount 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 Mount was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- 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 Mount 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 The OCID of the Oracle DB Azure Blob Mount resource.
- last
Modification string - Description of the latest modification of the Oracle DB Azure Blob Mount resource.
- lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- mount
Path string - Oracle DB Azure Blob Mount path.
- oracle
Db stringAzure Blob Container Id - A filter to return Oracle DB Azure Blob Container resource.
- oracle
Db stringAzure Connector Id - A filter to return Oracle DB Azure Azure Identity Connector resources.
- 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 Mount 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 Mount was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- 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 Mount 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 The OCID of the Oracle DB Azure Blob Mount resource.
- last_
modification str - Description of the latest modification of the Oracle DB Azure Blob Mount resource.
- lifecycle_
state_ strdetails - Description of the current lifecycle state in more detail.
- mount_
path str - Oracle DB Azure Blob Mount path.
- oracle_
db_ strazure_ blob_ container_ id - A filter to return Oracle DB Azure Blob Container resource.
- oracle_
db_ strazure_ connector_ id - A filter to return Oracle DB Azure Azure Identity Connector resources.
- 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 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'
- 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 Mount 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 The OCID of the Oracle DB Azure Blob Mount resource.
- last
Modification String - Description of the latest modification of the Oracle DB Azure Blob Mount resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- mount
Path String - Oracle DB Azure Blob Mount path.
- oracle
Db StringAzure Blob Container Id - A filter to return Oracle DB Azure Blob Container resource.
- oracle
Db StringAzure Connector Id - A filter to return Oracle DB Azure Azure Identity Connector resources.
- 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 Mount 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 Mount 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.12.0 published on Friday, Nov 21, 2025 by Pulumi
