Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testOracleDbAzureBlobContainer = new oci.oci.DbmulticloudOracleDbAzureBlobContainer("test_oracle_db_azure_blob_container", {
azureStorageAccountName: oracleDbAzureBlobContainerAzureStorageAccountName,
azureStorageContainerName: oracleDbAzureBlobContainerAzureStorageContainerName,
compartmentId: compartmentId,
displayName: oracleDbAzureBlobContainerDisplayName,
definedTags: {
"Operations.CostCenter": "42",
},
freeformTags: {
Department: "Finance",
},
privateEndpointDnsAlias: oracleDbAzureBlobContainerPrivateEndpointDnsAlias,
privateEndpointIpAddress: oracleDbAzureBlobContainerPrivateEndpointIpAddress,
});
import pulumi
import pulumi_oci as oci
test_oracle_db_azure_blob_container = oci.oci.DbmulticloudOracleDbAzureBlobContainer("test_oracle_db_azure_blob_container",
azure_storage_account_name=oracle_db_azure_blob_container_azure_storage_account_name,
azure_storage_container_name=oracle_db_azure_blob_container_azure_storage_container_name,
compartment_id=compartment_id,
display_name=oracle_db_azure_blob_container_display_name,
defined_tags={
"Operations.CostCenter": "42",
},
freeform_tags={
"Department": "Finance",
},
private_endpoint_dns_alias=oracle_db_azure_blob_container_private_endpoint_dns_alias,
private_endpoint_ip_address=oracle_db_azure_blob_container_private_endpoint_ip_address)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/oci"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := oci.NewDbmulticloudOracleDbAzureBlobContainer(ctx, "test_oracle_db_azure_blob_container", &oci.DbmulticloudOracleDbAzureBlobContainerArgs{
AzureStorageAccountName: pulumi.Any(oracleDbAzureBlobContainerAzureStorageAccountName),
AzureStorageContainerName: pulumi.Any(oracleDbAzureBlobContainerAzureStorageContainerName),
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(oracleDbAzureBlobContainerDisplayName),
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
PrivateEndpointDnsAlias: pulumi.Any(oracleDbAzureBlobContainerPrivateEndpointDnsAlias),
PrivateEndpointIpAddress: pulumi.Any(oracleDbAzureBlobContainerPrivateEndpointIpAddress),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testOracleDbAzureBlobContainer = new Oci.Oci.DbmulticloudOracleDbAzureBlobContainer("test_oracle_db_azure_blob_container", new()
{
AzureStorageAccountName = oracleDbAzureBlobContainerAzureStorageAccountName,
AzureStorageContainerName = oracleDbAzureBlobContainerAzureStorageContainerName,
CompartmentId = compartmentId,
DisplayName = oracleDbAzureBlobContainerDisplayName,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
FreeformTags =
{
{ "Department", "Finance" },
},
PrivateEndpointDnsAlias = oracleDbAzureBlobContainerPrivateEndpointDnsAlias,
PrivateEndpointIpAddress = oracleDbAzureBlobContainerPrivateEndpointIpAddress,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.oci.DbmulticloudOracleDbAzureBlobContainer;
import com.pulumi.oci.oci.DbmulticloudOracleDbAzureBlobContainerArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testOracleDbAzureBlobContainer = new DbmulticloudOracleDbAzureBlobContainer("testOracleDbAzureBlobContainer", DbmulticloudOracleDbAzureBlobContainerArgs.builder()
.azureStorageAccountName(oracleDbAzureBlobContainerAzureStorageAccountName)
.azureStorageContainerName(oracleDbAzureBlobContainerAzureStorageContainerName)
.compartmentId(compartmentId)
.displayName(oracleDbAzureBlobContainerDisplayName)
.definedTags(Map.of("Operations.CostCenter", "42"))
.freeformTags(Map.of("Department", "Finance"))
.privateEndpointDnsAlias(oracleDbAzureBlobContainerPrivateEndpointDnsAlias)
.privateEndpointIpAddress(oracleDbAzureBlobContainerPrivateEndpointIpAddress)
.build());
}
}
resources:
testOracleDbAzureBlobContainer:
type: oci:oci:DbmulticloudOracleDbAzureBlobContainer
name: test_oracle_db_azure_blob_container
properties:
azureStorageAccountName: ${oracleDbAzureBlobContainerAzureStorageAccountName}
azureStorageContainerName: ${oracleDbAzureBlobContainerAzureStorageContainerName}
compartmentId: ${compartmentId}
displayName: ${oracleDbAzureBlobContainerDisplayName}
definedTags:
Operations.CostCenter: '42'
freeformTags:
Department: Finance
privateEndpointDnsAlias: ${oracleDbAzureBlobContainerPrivateEndpointDnsAlias}
privateEndpointIpAddress: ${oracleDbAzureBlobContainerPrivateEndpointIpAddress}
Create DbmulticloudOracleDbAzureBlobContainer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DbmulticloudOracleDbAzureBlobContainer(name: string, args: DbmulticloudOracleDbAzureBlobContainerArgs, opts?: CustomResourceOptions);@overload
def DbmulticloudOracleDbAzureBlobContainer(resource_name: str,
args: DbmulticloudOracleDbAzureBlobContainerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DbmulticloudOracleDbAzureBlobContainer(resource_name: str,
opts: Optional[ResourceOptions] = None,
azure_storage_account_name: Optional[str] = None,
azure_storage_container_name: Optional[str] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
private_endpoint_dns_alias: Optional[str] = None,
private_endpoint_ip_address: Optional[str] = None)func NewDbmulticloudOracleDbAzureBlobContainer(ctx *Context, name string, args DbmulticloudOracleDbAzureBlobContainerArgs, opts ...ResourceOption) (*DbmulticloudOracleDbAzureBlobContainer, error)public DbmulticloudOracleDbAzureBlobContainer(string name, DbmulticloudOracleDbAzureBlobContainerArgs args, CustomResourceOptions? opts = null)
public DbmulticloudOracleDbAzureBlobContainer(String name, DbmulticloudOracleDbAzureBlobContainerArgs args)
public DbmulticloudOracleDbAzureBlobContainer(String name, DbmulticloudOracleDbAzureBlobContainerArgs args, CustomResourceOptions options)
type: oci:oci:DbmulticloudOracleDbAzureBlobContainer
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DbmulticloudOracleDbAzureBlobContainerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DbmulticloudOracleDbAzureBlobContainerArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DbmulticloudOracleDbAzureBlobContainerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DbmulticloudOracleDbAzureBlobContainerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DbmulticloudOracleDbAzureBlobContainerArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var dbmulticloudOracleDbAzureBlobContainerResource = new Oci.Oci.DbmulticloudOracleDbAzureBlobContainer("dbmulticloudOracleDbAzureBlobContainerResource", new()
{
AzureStorageAccountName = "string",
AzureStorageContainerName = "string",
CompartmentId = "string",
DisplayName = "string",
DefinedTags =
{
{ "string", "string" },
},
FreeformTags =
{
{ "string", "string" },
},
PrivateEndpointDnsAlias = "string",
PrivateEndpointIpAddress = "string",
});
example, err := oci.NewDbmulticloudOracleDbAzureBlobContainer(ctx, "dbmulticloudOracleDbAzureBlobContainerResource", &oci.DbmulticloudOracleDbAzureBlobContainerArgs{
AzureStorageAccountName: pulumi.String("string"),
AzureStorageContainerName: pulumi.String("string"),
CompartmentId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
PrivateEndpointDnsAlias: pulumi.String("string"),
PrivateEndpointIpAddress: pulumi.String("string"),
})
var dbmulticloudOracleDbAzureBlobContainerResource = new DbmulticloudOracleDbAzureBlobContainer("dbmulticloudOracleDbAzureBlobContainerResource", DbmulticloudOracleDbAzureBlobContainerArgs.builder()
.azureStorageAccountName("string")
.azureStorageContainerName("string")
.compartmentId("string")
.displayName("string")
.definedTags(Map.of("string", "string"))
.freeformTags(Map.of("string", "string"))
.privateEndpointDnsAlias("string")
.privateEndpointIpAddress("string")
.build());
dbmulticloud_oracle_db_azure_blob_container_resource = oci.oci.DbmulticloudOracleDbAzureBlobContainer("dbmulticloudOracleDbAzureBlobContainerResource",
azure_storage_account_name="string",
azure_storage_container_name="string",
compartment_id="string",
display_name="string",
defined_tags={
"string": "string",
},
freeform_tags={
"string": "string",
},
private_endpoint_dns_alias="string",
private_endpoint_ip_address="string")
const dbmulticloudOracleDbAzureBlobContainerResource = new oci.oci.DbmulticloudOracleDbAzureBlobContainer("dbmulticloudOracleDbAzureBlobContainerResource", {
azureStorageAccountName: "string",
azureStorageContainerName: "string",
compartmentId: "string",
displayName: "string",
definedTags: {
string: "string",
},
freeformTags: {
string: "string",
},
privateEndpointDnsAlias: "string",
privateEndpointIpAddress: "string",
});
type: oci:oci:DbmulticloudOracleDbAzureBlobContainer
properties:
azureStorageAccountName: string
azureStorageContainerName: string
compartmentId: string
definedTags:
string: string
displayName: string
freeformTags:
string: string
privateEndpointDnsAlias: string
privateEndpointIpAddress: string
DbmulticloudOracleDbAzureBlobContainer Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DbmulticloudOracleDbAzureBlobContainer resource accepts the following input properties:
- Azure
Storage stringAccount Name - (Updatable) Azure Storage account name.
- Azure
Storage stringContainer Name - (Updatable) Azure Storage container name.
- Compartment
Id string - (Updatable) The OCID of Oracle DB Azure Blob Container resource.
- Display
Name string - (Updatable) Oracle DB Azure Blob Container resource name.
- 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"} - Private
Endpoint stringDns Alias - (Updatable) Private endpoint's DNS alias.
- Private
Endpoint stringIp Address (Updatable) Private endpoint IP.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Azure
Storage stringAccount Name - (Updatable) Azure Storage account name.
- Azure
Storage stringContainer Name - (Updatable) Azure Storage container name.
- Compartment
Id string - (Updatable) The OCID of Oracle DB Azure Blob Container resource.
- Display
Name string - (Updatable) Oracle DB Azure Blob Container resource name.
- 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"} - Private
Endpoint stringDns Alias - (Updatable) Private endpoint's DNS alias.
- Private
Endpoint stringIp Address (Updatable) Private endpoint IP.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- azure
Storage StringAccount Name - (Updatable) Azure Storage account name.
- azure
Storage StringContainer Name - (Updatable) Azure Storage container name.
- compartment
Id String - (Updatable) The OCID of Oracle DB Azure Blob Container resource.
- display
Name String - (Updatable) Oracle DB Azure Blob Container resource name.
- 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"} - private
Endpoint StringDns Alias - (Updatable) Private endpoint's DNS alias.
- private
Endpoint StringIp Address (Updatable) Private endpoint IP.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- azure
Storage stringAccount Name - (Updatable) Azure Storage account name.
- azure
Storage stringContainer Name - (Updatable) Azure Storage container name.
- compartment
Id string - (Updatable) The OCID of Oracle DB Azure Blob Container resource.
- display
Name string - (Updatable) Oracle DB Azure Blob Container resource name.
- {[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"} - private
Endpoint stringDns Alias - (Updatable) Private endpoint's DNS alias.
- private
Endpoint stringIp Address (Updatable) Private endpoint IP.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- azure_
storage_ straccount_ name - (Updatable) Azure Storage account name.
- azure_
storage_ strcontainer_ name - (Updatable) Azure Storage container name.
- compartment_
id str - (Updatable) The OCID of Oracle DB Azure Blob Container resource.
- display_
name str - (Updatable) Oracle DB Azure Blob Container resource name.
- 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"} - private_
endpoint_ strdns_ alias - (Updatable) Private endpoint's DNS alias.
- private_
endpoint_ strip_ address (Updatable) Private endpoint IP.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- azure
Storage StringAccount Name - (Updatable) Azure Storage account name.
- azure
Storage StringContainer Name - (Updatable) Azure Storage container name.
- compartment
Id String - (Updatable) The OCID of Oracle DB Azure Blob Container resource.
- display
Name String - (Updatable) Oracle DB Azure Blob Container resource name.
- 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"} - private
Endpoint StringDns Alias - (Updatable) Private endpoint's DNS alias.
- private
Endpoint StringIp Address (Updatable) Private endpoint IP.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Outputs
All input properties are implicitly available as output properties. Additionally, the DbmulticloudOracleDbAzureBlobContainer resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Modification string - Description of the latest modification of the Oracle DB Azure Blob Container resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- State string
- The current lifecycle state of the Oracle DB Azure Blob Container 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 Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- Time
Updated string - Time when the Oracle DB Azure Blob Container was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- 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 Container resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- State string
- The current lifecycle state of the Oracle DB Azure Blob Container 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 Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- Time
Updated string - Time when the Oracle DB Azure Blob Container was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- 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 Container resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- state String
- The current lifecycle state of the Oracle DB Azure Blob Container 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 Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time
Updated String - Time when the Oracle DB Azure Blob Container was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- 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 Container resource.
- lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- state string
- The current lifecycle state of the Oracle DB Azure Blob Container 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 Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time
Updated string - Time when the Oracle DB Azure Blob Container was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- id str
- The provider-assigned unique ID for this managed resource.
- last_
modification str - Description of the latest modification of the Oracle DB Azure Blob Container resource.
- lifecycle_
state_ strdetails - Description of the current lifecycle state in more detail.
- state str
- The current lifecycle state of the Oracle DB Azure Blob Container 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 Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time_
updated str - Time when the Oracle DB Azure Blob Container was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- id String
- The provider-assigned unique ID for this managed resource.
- last
Modification String - Description of the latest modification of the Oracle DB Azure Blob Container resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- state String
- The current lifecycle state of the Oracle DB Azure Blob Container 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 Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time
Updated String - Time when the Oracle DB Azure Blob Container was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
Look up Existing DbmulticloudOracleDbAzureBlobContainer Resource
Get an existing DbmulticloudOracleDbAzureBlobContainer resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: DbmulticloudOracleDbAzureBlobContainerState, opts?: CustomResourceOptions): DbmulticloudOracleDbAzureBlobContainer@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
azure_storage_account_name: Optional[str] = None,
azure_storage_container_name: Optional[str] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
last_modification: Optional[str] = None,
lifecycle_state_details: Optional[str] = None,
private_endpoint_dns_alias: Optional[str] = None,
private_endpoint_ip_address: Optional[str] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> DbmulticloudOracleDbAzureBlobContainerfunc GetDbmulticloudOracleDbAzureBlobContainer(ctx *Context, name string, id IDInput, state *DbmulticloudOracleDbAzureBlobContainerState, opts ...ResourceOption) (*DbmulticloudOracleDbAzureBlobContainer, error)public static DbmulticloudOracleDbAzureBlobContainer Get(string name, Input<string> id, DbmulticloudOracleDbAzureBlobContainerState? state, CustomResourceOptions? opts = null)public static DbmulticloudOracleDbAzureBlobContainer get(String name, Output<String> id, DbmulticloudOracleDbAzureBlobContainerState state, CustomResourceOptions options)resources: _: type: oci:oci:DbmulticloudOracleDbAzureBlobContainer get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Azure
Storage stringAccount Name - (Updatable) Azure Storage account name.
- Azure
Storage stringContainer Name - (Updatable) Azure Storage container name.
- Compartment
Id string - (Updatable) The OCID of Oracle DB Azure Blob Container 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 Container 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 Container resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- Private
Endpoint stringDns Alias - (Updatable) Private endpoint's DNS alias.
- Private
Endpoint stringIp Address (Updatable) Private endpoint IP.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- State string
- The current lifecycle state of the Oracle DB Azure Blob Container resource.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- Time
Updated string - Time when the Oracle DB Azure Blob Container was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- Azure
Storage stringAccount Name - (Updatable) Azure Storage account name.
- Azure
Storage stringContainer Name - (Updatable) Azure Storage container name.
- Compartment
Id string - (Updatable) The OCID of Oracle DB Azure Blob Container 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 Container 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 Container resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- Private
Endpoint stringDns Alias - (Updatable) Private endpoint's DNS alias.
- Private
Endpoint stringIp Address (Updatable) Private endpoint IP.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- State string
- The current lifecycle state of the Oracle DB Azure Blob Container resource.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- Time
Updated string - Time when the Oracle DB Azure Blob Container was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- azure
Storage StringAccount Name - (Updatable) Azure Storage account name.
- azure
Storage StringContainer Name - (Updatable) Azure Storage container name.
- compartment
Id String - (Updatable) The OCID of Oracle DB Azure Blob Container 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 Container 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 Container resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- private
Endpoint StringDns Alias - (Updatable) Private endpoint's DNS alias.
- private
Endpoint StringIp Address (Updatable) Private endpoint IP.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state String
- The current lifecycle state of the Oracle DB Azure Blob Container resource.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time
Updated String - Time when the Oracle DB Azure Blob Container was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- azure
Storage stringAccount Name - (Updatable) Azure Storage account name.
- azure
Storage stringContainer Name - (Updatable) Azure Storage container name.
- compartment
Id string - (Updatable) The OCID of Oracle DB Azure Blob Container 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 Container 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 Container resource.
- lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- private
Endpoint stringDns Alias - (Updatable) Private endpoint's DNS alias.
- private
Endpoint stringIp Address (Updatable) Private endpoint IP.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state string
- The current lifecycle state of the Oracle DB Azure Blob Container resource.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time
Updated string - Time when the Oracle DB Azure Blob Container was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- azure_
storage_ straccount_ name - (Updatable) Azure Storage account name.
- azure_
storage_ strcontainer_ name - (Updatable) Azure Storage container name.
- compartment_
id str - (Updatable) The OCID of Oracle DB Azure Blob Container 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 Container 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 Container resource.
- lifecycle_
state_ strdetails - Description of the current lifecycle state in more detail.
- private_
endpoint_ strdns_ alias - (Updatable) Private endpoint's DNS alias.
- private_
endpoint_ strip_ address (Updatable) Private endpoint IP.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state str
- The current lifecycle state of the Oracle DB Azure Blob Container resource.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
created str - Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time_
updated str - Time when the Oracle DB Azure Blob Container was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- azure
Storage StringAccount Name - (Updatable) Azure Storage account name.
- azure
Storage StringContainer Name - (Updatable) Azure Storage container name.
- compartment
Id String - (Updatable) The OCID of Oracle DB Azure Blob Container 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 Container 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 Container resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- private
Endpoint StringDns Alias - (Updatable) Private endpoint's DNS alias.
- private
Endpoint StringIp Address (Updatable) Private endpoint IP.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- state String
- The current lifecycle state of the Oracle DB Azure Blob Container resource.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - Time when the Oracle DB Azure Blob Container was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time
Updated String - Time when the Oracle DB Azure Blob Container was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
Import
OracleDbAzureBlobContainers can be imported using the id, e.g.
$ pulumi import oci:oci/dbmulticloudOracleDbAzureBlobContainer:DbmulticloudOracleDbAzureBlobContainer test_oracle_db_azure_blob_container "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
