Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testOracleDbAzureVault = new oci.oci.DbmulticloudOracleDbAzureVault("test_oracle_db_azure_vault", {
compartmentId: compartmentId,
displayName: oracleDbAzureVaultDisplayName,
oracleDbConnectorId: testOracleDbConnector.id,
azureVaultId: testVault.id,
definedTags: {
"Operations.CostCenter": "42",
},
freeformTags: {
Department: "Finance",
},
location: oracleDbAzureVaultLocation,
oracleDbAzureResourceGroup: oracleDbAzureVaultOracleDbAzureResourceGroup,
properties: oracleDbAzureVaultProperties,
type: oracleDbAzureVaultType,
});
import pulumi
import pulumi_oci as oci
test_oracle_db_azure_vault = oci.oci.DbmulticloudOracleDbAzureVault("test_oracle_db_azure_vault",
compartment_id=compartment_id,
display_name=oracle_db_azure_vault_display_name,
oracle_db_connector_id=test_oracle_db_connector["id"],
azure_vault_id=test_vault["id"],
defined_tags={
"Operations.CostCenter": "42",
},
freeform_tags={
"Department": "Finance",
},
location=oracle_db_azure_vault_location,
oracle_db_azure_resource_group=oracle_db_azure_vault_oracle_db_azure_resource_group,
properties=oracle_db_azure_vault_properties,
type=oracle_db_azure_vault_type)
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.NewDbmulticloudOracleDbAzureVault(ctx, "test_oracle_db_azure_vault", &oci.DbmulticloudOracleDbAzureVaultArgs{
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(oracleDbAzureVaultDisplayName),
OracleDbConnectorId: pulumi.Any(testOracleDbConnector.Id),
AzureVaultId: pulumi.Any(testVault.Id),
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
Location: pulumi.Any(oracleDbAzureVaultLocation),
OracleDbAzureResourceGroup: pulumi.Any(oracleDbAzureVaultOracleDbAzureResourceGroup),
Properties: pulumi.Any(oracleDbAzureVaultProperties),
Type: pulumi.Any(oracleDbAzureVaultType),
})
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 testOracleDbAzureVault = new Oci.Oci.DbmulticloudOracleDbAzureVault("test_oracle_db_azure_vault", new()
{
CompartmentId = compartmentId,
DisplayName = oracleDbAzureVaultDisplayName,
OracleDbConnectorId = testOracleDbConnector.Id,
AzureVaultId = testVault.Id,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
FreeformTags =
{
{ "Department", "Finance" },
},
Location = oracleDbAzureVaultLocation,
OracleDbAzureResourceGroup = oracleDbAzureVaultOracleDbAzureResourceGroup,
Properties = oracleDbAzureVaultProperties,
Type = oracleDbAzureVaultType,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.oci.DbmulticloudOracleDbAzureVault;
import com.pulumi.oci.oci.DbmulticloudOracleDbAzureVaultArgs;
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 testOracleDbAzureVault = new DbmulticloudOracleDbAzureVault("testOracleDbAzureVault", DbmulticloudOracleDbAzureVaultArgs.builder()
.compartmentId(compartmentId)
.displayName(oracleDbAzureVaultDisplayName)
.oracleDbConnectorId(testOracleDbConnector.id())
.azureVaultId(testVault.id())
.definedTags(Map.of("Operations.CostCenter", "42"))
.freeformTags(Map.of("Department", "Finance"))
.location(oracleDbAzureVaultLocation)
.oracleDbAzureResourceGroup(oracleDbAzureVaultOracleDbAzureResourceGroup)
.properties(oracleDbAzureVaultProperties)
.type(oracleDbAzureVaultType)
.build());
}
}
resources:
testOracleDbAzureVault:
type: oci:oci:DbmulticloudOracleDbAzureVault
name: test_oracle_db_azure_vault
properties:
compartmentId: ${compartmentId}
displayName: ${oracleDbAzureVaultDisplayName}
oracleDbConnectorId: ${testOracleDbConnector.id}
azureVaultId: ${testVault.id}
definedTags:
Operations.CostCenter: '42'
freeformTags:
Department: Finance
location: ${oracleDbAzureVaultLocation}
oracleDbAzureResourceGroup: ${oracleDbAzureVaultOracleDbAzureResourceGroup}
properties: ${oracleDbAzureVaultProperties}
type: ${oracleDbAzureVaultType}
Create DbmulticloudOracleDbAzureVault Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DbmulticloudOracleDbAzureVault(name: string, args: DbmulticloudOracleDbAzureVaultArgs, opts?: CustomResourceOptions);@overload
def DbmulticloudOracleDbAzureVault(resource_name: str,
args: DbmulticloudOracleDbAzureVaultArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DbmulticloudOracleDbAzureVault(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
oracle_db_connector_id: Optional[str] = None,
azure_vault_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
location: Optional[str] = None,
oracle_db_azure_resource_group: Optional[str] = None,
properties: Optional[Mapping[str, str]] = None,
type: Optional[str] = None)func NewDbmulticloudOracleDbAzureVault(ctx *Context, name string, args DbmulticloudOracleDbAzureVaultArgs, opts ...ResourceOption) (*DbmulticloudOracleDbAzureVault, error)public DbmulticloudOracleDbAzureVault(string name, DbmulticloudOracleDbAzureVaultArgs args, CustomResourceOptions? opts = null)
public DbmulticloudOracleDbAzureVault(String name, DbmulticloudOracleDbAzureVaultArgs args)
public DbmulticloudOracleDbAzureVault(String name, DbmulticloudOracleDbAzureVaultArgs args, CustomResourceOptions options)
type: oci:oci:DbmulticloudOracleDbAzureVault
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 DbmulticloudOracleDbAzureVaultArgs
- 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 DbmulticloudOracleDbAzureVaultArgs
- 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 DbmulticloudOracleDbAzureVaultArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DbmulticloudOracleDbAzureVaultArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DbmulticloudOracleDbAzureVaultArgs
- 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 dbmulticloudOracleDbAzureVaultResource = new Oci.Oci.DbmulticloudOracleDbAzureVault("dbmulticloudOracleDbAzureVaultResource", new()
{
CompartmentId = "string",
DisplayName = "string",
OracleDbConnectorId = "string",
AzureVaultId = "string",
DefinedTags =
{
{ "string", "string" },
},
FreeformTags =
{
{ "string", "string" },
},
Location = "string",
OracleDbAzureResourceGroup = "string",
Properties =
{
{ "string", "string" },
},
Type = "string",
});
example, err := oci.NewDbmulticloudOracleDbAzureVault(ctx, "dbmulticloudOracleDbAzureVaultResource", &oci.DbmulticloudOracleDbAzureVaultArgs{
CompartmentId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
OracleDbConnectorId: pulumi.String("string"),
AzureVaultId: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Location: pulumi.String("string"),
OracleDbAzureResourceGroup: pulumi.String("string"),
Properties: pulumi.StringMap{
"string": pulumi.String("string"),
},
Type: pulumi.String("string"),
})
var dbmulticloudOracleDbAzureVaultResource = new DbmulticloudOracleDbAzureVault("dbmulticloudOracleDbAzureVaultResource", DbmulticloudOracleDbAzureVaultArgs.builder()
.compartmentId("string")
.displayName("string")
.oracleDbConnectorId("string")
.azureVaultId("string")
.definedTags(Map.of("string", "string"))
.freeformTags(Map.of("string", "string"))
.location("string")
.oracleDbAzureResourceGroup("string")
.properties(Map.of("string", "string"))
.type("string")
.build());
dbmulticloud_oracle_db_azure_vault_resource = oci.oci.DbmulticloudOracleDbAzureVault("dbmulticloudOracleDbAzureVaultResource",
compartment_id="string",
display_name="string",
oracle_db_connector_id="string",
azure_vault_id="string",
defined_tags={
"string": "string",
},
freeform_tags={
"string": "string",
},
location="string",
oracle_db_azure_resource_group="string",
properties={
"string": "string",
},
type="string")
const dbmulticloudOracleDbAzureVaultResource = new oci.oci.DbmulticloudOracleDbAzureVault("dbmulticloudOracleDbAzureVaultResource", {
compartmentId: "string",
displayName: "string",
oracleDbConnectorId: "string",
azureVaultId: "string",
definedTags: {
string: "string",
},
freeformTags: {
string: "string",
},
location: "string",
oracleDbAzureResourceGroup: "string",
properties: {
string: "string",
},
type: "string",
});
type: oci:oci:DbmulticloudOracleDbAzureVault
properties:
azureVaultId: string
compartmentId: string
definedTags:
string: string
displayName: string
freeformTags:
string: string
location: string
oracleDbAzureResourceGroup: string
oracleDbConnectorId: string
properties:
string: string
type: string
DbmulticloudOracleDbAzureVault 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 DbmulticloudOracleDbAzureVault resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment that contains DB Azure Vault resource.
- Display
Name string - (Updatable) Oracle DB Azure Vault resource name.
- Oracle
Db stringConnector Id - (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
- Azure
Vault stringId - (Updatable) Azure Vault ID.
- 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"} - Location string
- (Updatable) Oracle DB Azure Vault resource location.
- Oracle
Db stringAzure Resource Group - (Updatable) Oracle DB Azure resource group name.
- Properties Dictionary<string, string>
- (Updatable) resource's properties.
- Type string
(Updatable) Oracle DB Azure Vault resource type.
** 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
- Compartment
Id string - (Updatable) The OCID of the compartment that contains DB Azure Vault resource.
- Display
Name string - (Updatable) Oracle DB Azure Vault resource name.
- Oracle
Db stringConnector Id - (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
- Azure
Vault stringId - (Updatable) Azure Vault ID.
- 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"} - Location string
- (Updatable) Oracle DB Azure Vault resource location.
- Oracle
Db stringAzure Resource Group - (Updatable) Oracle DB Azure resource group name.
- Properties map[string]string
- (Updatable) resource's properties.
- Type string
(Updatable) Oracle DB Azure Vault resource type.
** 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
- compartment
Id String - (Updatable) The OCID of the compartment that contains DB Azure Vault resource.
- display
Name String - (Updatable) Oracle DB Azure Vault resource name.
- oracle
Db StringConnector Id - (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
- azure
Vault StringId - (Updatable) Azure Vault ID.
- 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"} - location String
- (Updatable) Oracle DB Azure Vault resource location.
- oracle
Db StringAzure Resource Group - (Updatable) Oracle DB Azure resource group name.
- properties Map<String,String>
- (Updatable) resource's properties.
- type String
(Updatable) Oracle DB Azure Vault resource type.
** 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
- compartment
Id string - (Updatable) The OCID of the compartment that contains DB Azure Vault resource.
- display
Name string - (Updatable) Oracle DB Azure Vault resource name.
- oracle
Db stringConnector Id - (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
- azure
Vault stringId - (Updatable) Azure Vault ID.
- {[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"} - location string
- (Updatable) Oracle DB Azure Vault resource location.
- oracle
Db stringAzure Resource Group - (Updatable) Oracle DB Azure resource group name.
- properties {[key: string]: string}
- (Updatable) resource's properties.
- type string
(Updatable) Oracle DB Azure Vault resource type.
** 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
- compartment_
id str - (Updatable) The OCID of the compartment that contains DB Azure Vault resource.
- display_
name str - (Updatable) Oracle DB Azure Vault resource name.
- oracle_
db_ strconnector_ id - (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
- azure_
vault_ strid - (Updatable) Azure Vault ID.
- 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"} - location str
- (Updatable) Oracle DB Azure Vault resource location.
- oracle_
db_ strazure_ resource_ group - (Updatable) Oracle DB Azure resource group name.
- properties Mapping[str, str]
- (Updatable) resource's properties.
- type str
(Updatable) Oracle DB Azure Vault resource type.
** 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
- compartment
Id String - (Updatable) The OCID of the compartment that contains DB Azure Vault resource.
- display
Name String - (Updatable) Oracle DB Azure Vault resource name.
- oracle
Db StringConnector Id - (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
- azure
Vault StringId - (Updatable) Azure Vault ID.
- 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"} - location String
- (Updatable) Oracle DB Azure Vault resource location.
- oracle
Db StringAzure Resource Group - (Updatable) Oracle DB Azure resource group name.
- properties Map<String>
- (Updatable) resource's properties.
- type String
(Updatable) Oracle DB Azure Vault resource type.
** 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 DbmulticloudOracleDbAzureVault 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 Vault resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- State string
- The lifecycle state of the Oracle DB Azure Vault 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 DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
- Time
Updated string - Time when the DB Azure Vault resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21: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 Vault resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- State string
- The lifecycle state of the Oracle DB Azure Vault 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 DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
- Time
Updated string - Time when the DB Azure Vault resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21: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 Vault resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- state String
- The lifecycle state of the Oracle DB Azure Vault 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 DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
- time
Updated String - Time when the DB Azure Vault resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21: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 Vault resource.
- lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- state string
- The lifecycle state of the Oracle DB Azure Vault 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 DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
- time
Updated string - Time when the DB Azure Vault resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21: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 Vault resource.
- lifecycle_
state_ strdetails - Description of the current lifecycle state in more detail.
- state str
- The lifecycle state of the Oracle DB Azure Vault 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 DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
- time_
updated str - Time when the DB Azure Vault resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21: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 Vault resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- state String
- The lifecycle state of the Oracle DB Azure Vault 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 DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
- time
Updated String - Time when the DB Azure Vault resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
Look up Existing DbmulticloudOracleDbAzureVault Resource
Get an existing DbmulticloudOracleDbAzureVault 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?: DbmulticloudOracleDbAzureVaultState, opts?: CustomResourceOptions): DbmulticloudOracleDbAzureVault@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
azure_vault_id: 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,
location: Optional[str] = None,
oracle_db_azure_resource_group: Optional[str] = None,
oracle_db_connector_id: Optional[str] = None,
properties: Optional[Mapping[str, str]] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None,
type: Optional[str] = None) -> DbmulticloudOracleDbAzureVaultfunc GetDbmulticloudOracleDbAzureVault(ctx *Context, name string, id IDInput, state *DbmulticloudOracleDbAzureVaultState, opts ...ResourceOption) (*DbmulticloudOracleDbAzureVault, error)public static DbmulticloudOracleDbAzureVault Get(string name, Input<string> id, DbmulticloudOracleDbAzureVaultState? state, CustomResourceOptions? opts = null)public static DbmulticloudOracleDbAzureVault get(String name, Output<String> id, DbmulticloudOracleDbAzureVaultState state, CustomResourceOptions options)resources: _: type: oci:oci:DbmulticloudOracleDbAzureVault 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
Vault stringId - (Updatable) Azure Vault ID.
- Compartment
Id string - (Updatable) The OCID of the compartment that contains DB Azure Vault 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 Vault 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 Vault resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- Location string
- (Updatable) Oracle DB Azure Vault resource location.
- Oracle
Db stringAzure Resource Group - (Updatable) Oracle DB Azure resource group name.
- Oracle
Db stringConnector Id - (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
- Properties Dictionary<string, string>
- (Updatable) resource's properties.
- State string
- The lifecycle state of the Oracle DB Azure Vault 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 DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
- Time
Updated string - Time when the DB Azure Vault resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
- Type string
(Updatable) Oracle DB Azure Vault resource type.
** 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
Vault stringId - (Updatable) Azure Vault ID.
- Compartment
Id string - (Updatable) The OCID of the compartment that contains DB Azure Vault 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 Vault 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 Vault resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- Location string
- (Updatable) Oracle DB Azure Vault resource location.
- Oracle
Db stringAzure Resource Group - (Updatable) Oracle DB Azure resource group name.
- Oracle
Db stringConnector Id - (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
- Properties map[string]string
- (Updatable) resource's properties.
- State string
- The lifecycle state of the Oracle DB Azure Vault 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 DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
- Time
Updated string - Time when the DB Azure Vault resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
- Type string
(Updatable) Oracle DB Azure Vault resource type.
** 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
Vault StringId - (Updatable) Azure Vault ID.
- compartment
Id String - (Updatable) The OCID of the compartment that contains DB Azure Vault 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 Vault 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 Vault resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- location String
- (Updatable) Oracle DB Azure Vault resource location.
- oracle
Db StringAzure Resource Group - (Updatable) Oracle DB Azure resource group name.
- oracle
Db StringConnector Id - (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
- properties Map<String,String>
- (Updatable) resource's properties.
- state String
- The lifecycle state of the Oracle DB Azure Vault 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 DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
- time
Updated String - Time when the DB Azure Vault resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
- type String
(Updatable) Oracle DB Azure Vault resource type.
** 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
Vault stringId - (Updatable) Azure Vault ID.
- compartment
Id string - (Updatable) The OCID of the compartment that contains DB Azure Vault 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 Vault 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 Vault resource.
- lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- location string
- (Updatable) Oracle DB Azure Vault resource location.
- oracle
Db stringAzure Resource Group - (Updatable) Oracle DB Azure resource group name.
- oracle
Db stringConnector Id - (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
- properties {[key: string]: string}
- (Updatable) resource's properties.
- state string
- The lifecycle state of the Oracle DB Azure Vault 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 DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
- time
Updated string - Time when the DB Azure Vault resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
- type string
(Updatable) Oracle DB Azure Vault resource type.
** 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_
vault_ strid - (Updatable) Azure Vault ID.
- compartment_
id str - (Updatable) The OCID of the compartment that contains DB Azure Vault 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 Vault 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 Vault resource.
- lifecycle_
state_ strdetails - Description of the current lifecycle state in more detail.
- location str
- (Updatable) Oracle DB Azure Vault resource location.
- oracle_
db_ strazure_ resource_ group - (Updatable) Oracle DB Azure resource group name.
- oracle_
db_ strconnector_ id - (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
- properties Mapping[str, str]
- (Updatable) resource's properties.
- state str
- The lifecycle state of the Oracle DB Azure Vault 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 DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
- time_
updated str - Time when the DB Azure Vault resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
- type str
(Updatable) Oracle DB Azure Vault resource type.
** 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
Vault StringId - (Updatable) Azure Vault ID.
- compartment
Id String - (Updatable) The OCID of the compartment that contains DB Azure Vault 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 Vault 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 Vault resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- location String
- (Updatable) Oracle DB Azure Vault resource location.
- oracle
Db StringAzure Resource Group - (Updatable) Oracle DB Azure resource group name.
- oracle
Db StringConnector Id - (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
- properties Map<String>
- (Updatable) resource's properties.
- state String
- The lifecycle state of the Oracle DB Azure Vault 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 DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
- time
Updated String - Time when the DB Azure Vault resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
- type String
(Updatable) Oracle DB Azure Vault resource type.
** 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
Import
OracleDbAzureVaults can be imported using the id, e.g.
$ pulumi import oci:oci/dbmulticloudOracleDbAzureVault:DbmulticloudOracleDbAzureVault test_oracle_db_azure_vault "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.
