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:
- Compartment
Id string - (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
- Display
Name string - (Updatable) Oracle DB Azure Blob Mount resource name.
- Oracle
Db stringAzure Blob Container Id - (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
- Oracle
Db stringAzure Connector Id (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
- 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"} - 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"}
- Compartment
Id string - (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
- Display
Name string - (Updatable) Oracle DB Azure Blob Mount resource name.
- Oracle
Db stringAzure Blob Container Id - (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
- Oracle
Db stringAzure Connector Id (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
- 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"} - 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"}
- compartment
Id String - (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
- display
Name String - (Updatable) Oracle DB Azure Blob Mount resource name.
- oracle
Db StringAzure Blob Container Id - (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
- oracle
Db StringAzure Connector Id (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
- 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"} - 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"}
- compartment
Id string - (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
- display
Name string - (Updatable) Oracle DB Azure Blob Mount resource name.
- oracle
Db stringAzure Blob Container Id - (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
- oracle
Db stringAzure Connector Id (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
- {[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"} - {[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_ strazure_ blob_ container_ id - (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
- oracle_
db_ strazure_ connector_ id (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
- 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"} - 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"}
- compartment
Id String - (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
- display
Name String - (Updatable) Oracle DB Azure Blob Mount resource name.
- oracle
Db StringAzure Blob Container Id - (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
- oracle
Db StringAzure Connector Id (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
- 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"} - 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.
- 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.
- State string
- The current lifecycle state of the Oracle DB Azure Blob Mount resource.
- 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'
- Id string
- The provider-assigned unique ID for this managed 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.
- State string
- The current lifecycle state of the Oracle DB Azure Blob Mount resource.
- 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'
- id String
- The provider-assigned unique ID for this managed 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.
- state String
- The current lifecycle state of the Oracle DB Azure Blob Mount resource.
- 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'
- id string
- The provider-assigned unique ID for this managed 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.
- state string
- The current lifecycle state of the Oracle DB Azure Blob Mount resource.
- {[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'
- 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_ strdetails - 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.
- 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.
- 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.
- state String
- The current lifecycle state of the Oracle DB Azure Blob Mount resource.
- 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'
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) -> DbmulticloudOracleDbAzureBlobMountfunc 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.
- Compartment
Id string - (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
- 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"} - Display
Name string - (Updatable) Oracle DB Azure Blob Mount resource name.
- 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"} - 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 - (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
- Oracle
Db stringAzure Connector Id (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.
- 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 - (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
- 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"} - Display
Name string - (Updatable) Oracle DB Azure Blob Mount resource name.
- 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"} - 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 - (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
- Oracle
Db stringAzure Connector Id (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.
- 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 - (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
- 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"} - display
Name String - (Updatable) Oracle DB Azure Blob Mount resource name.
- 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"} - 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 - (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
- oracle
Db StringAzure Connector Id (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.
- 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 - (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
- {[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"} - display
Name string - (Updatable) Oracle DB Azure Blob Mount resource name.
- {[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"} - 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 - (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
- oracle
Db stringAzure Connector Id (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.
- {[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 - (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
- 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.
- 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_ 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 - (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
- oracle_
db_ strazure_ connector_ id (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.
- 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 - (Updatable) TThe OCID of the compartment that contains Oracle DB Azure Blob Mount resource.
- 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"} - display
Name String - (Updatable) Oracle DB Azure Blob Mount resource name.
- 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"} - 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 - (Updatable) The OCID of the Oracle DB Azure Blob Container resource that contains Oracle DB Azure Blob Mount resource.
- oracle
Db StringAzure Connector Id (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.
- 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'
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
ociTerraform Provider.
