Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testOracleDbAzureVaultAssociation = new oci.oci.DbmulticloudOracleDbAzureVaultAssociation("test_oracle_db_azure_vault_association", {
compartmentId: compartmentId,
displayName: oracleDbAzureVaultAssociationDisplayName,
oracleDbAzureConnectorId: testOracleDbAzureConnector.id,
oracleDbAzureVaultId: testOracleDbAzureVault.id,
definedTags: {
"Operations.CostCenter": "42",
},
freeformTags: {
Department: "Finance",
},
});
import pulumi
import pulumi_oci as oci
test_oracle_db_azure_vault_association = oci.oci.DbmulticloudOracleDbAzureVaultAssociation("test_oracle_db_azure_vault_association",
compartment_id=compartment_id,
display_name=oracle_db_azure_vault_association_display_name,
oracle_db_azure_connector_id=test_oracle_db_azure_connector["id"],
oracle_db_azure_vault_id=test_oracle_db_azure_vault["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.NewDbmulticloudOracleDbAzureVaultAssociation(ctx, "test_oracle_db_azure_vault_association", &oci.DbmulticloudOracleDbAzureVaultAssociationArgs{
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(oracleDbAzureVaultAssociationDisplayName),
OracleDbAzureConnectorId: pulumi.Any(testOracleDbAzureConnector.Id),
OracleDbAzureVaultId: pulumi.Any(testOracleDbAzureVault.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 testOracleDbAzureVaultAssociation = new Oci.Oci.DbmulticloudOracleDbAzureVaultAssociation("test_oracle_db_azure_vault_association", new()
{
CompartmentId = compartmentId,
DisplayName = oracleDbAzureVaultAssociationDisplayName,
OracleDbAzureConnectorId = testOracleDbAzureConnector.Id,
OracleDbAzureVaultId = testOracleDbAzureVault.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.DbmulticloudOracleDbAzureVaultAssociation;
import com.pulumi.oci.oci.DbmulticloudOracleDbAzureVaultAssociationArgs;
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 testOracleDbAzureVaultAssociation = new DbmulticloudOracleDbAzureVaultAssociation("testOracleDbAzureVaultAssociation", DbmulticloudOracleDbAzureVaultAssociationArgs.builder()
.compartmentId(compartmentId)
.displayName(oracleDbAzureVaultAssociationDisplayName)
.oracleDbAzureConnectorId(testOracleDbAzureConnector.id())
.oracleDbAzureVaultId(testOracleDbAzureVault.id())
.definedTags(Map.of("Operations.CostCenter", "42"))
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
resources:
testOracleDbAzureVaultAssociation:
type: oci:oci:DbmulticloudOracleDbAzureVaultAssociation
name: test_oracle_db_azure_vault_association
properties:
compartmentId: ${compartmentId}
displayName: ${oracleDbAzureVaultAssociationDisplayName}
oracleDbAzureConnectorId: ${testOracleDbAzureConnector.id}
oracleDbAzureVaultId: ${testOracleDbAzureVault.id}
definedTags:
Operations.CostCenter: '42'
freeformTags:
Department: Finance
Create DbmulticloudOracleDbAzureVaultAssociation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DbmulticloudOracleDbAzureVaultAssociation(name: string, args: DbmulticloudOracleDbAzureVaultAssociationArgs, opts?: CustomResourceOptions);@overload
def DbmulticloudOracleDbAzureVaultAssociation(resource_name: str,
args: DbmulticloudOracleDbAzureVaultAssociationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DbmulticloudOracleDbAzureVaultAssociation(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
oracle_db_azure_connector_id: Optional[str] = None,
oracle_db_azure_vault_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
freeform_tags: Optional[Mapping[str, str]] = None)func NewDbmulticloudOracleDbAzureVaultAssociation(ctx *Context, name string, args DbmulticloudOracleDbAzureVaultAssociationArgs, opts ...ResourceOption) (*DbmulticloudOracleDbAzureVaultAssociation, error)public DbmulticloudOracleDbAzureVaultAssociation(string name, DbmulticloudOracleDbAzureVaultAssociationArgs args, CustomResourceOptions? opts = null)
public DbmulticloudOracleDbAzureVaultAssociation(String name, DbmulticloudOracleDbAzureVaultAssociationArgs args)
public DbmulticloudOracleDbAzureVaultAssociation(String name, DbmulticloudOracleDbAzureVaultAssociationArgs args, CustomResourceOptions options)
type: oci:oci:DbmulticloudOracleDbAzureVaultAssociation
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 DbmulticloudOracleDbAzureVaultAssociationArgs
- 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 DbmulticloudOracleDbAzureVaultAssociationArgs
- 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 DbmulticloudOracleDbAzureVaultAssociationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DbmulticloudOracleDbAzureVaultAssociationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DbmulticloudOracleDbAzureVaultAssociationArgs
- 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 dbmulticloudOracleDbAzureVaultAssociationResource = new Oci.Oci.DbmulticloudOracleDbAzureVaultAssociation("dbmulticloudOracleDbAzureVaultAssociationResource", new()
{
CompartmentId = "string",
DisplayName = "string",
OracleDbAzureConnectorId = "string",
OracleDbAzureVaultId = "string",
DefinedTags =
{
{ "string", "string" },
},
FreeformTags =
{
{ "string", "string" },
},
});
example, err := oci.NewDbmulticloudOracleDbAzureVaultAssociation(ctx, "dbmulticloudOracleDbAzureVaultAssociationResource", &oci.DbmulticloudOracleDbAzureVaultAssociationArgs{
CompartmentId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
OracleDbAzureConnectorId: pulumi.String("string"),
OracleDbAzureVaultId: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var dbmulticloudOracleDbAzureVaultAssociationResource = new DbmulticloudOracleDbAzureVaultAssociation("dbmulticloudOracleDbAzureVaultAssociationResource", DbmulticloudOracleDbAzureVaultAssociationArgs.builder()
.compartmentId("string")
.displayName("string")
.oracleDbAzureConnectorId("string")
.oracleDbAzureVaultId("string")
.definedTags(Map.of("string", "string"))
.freeformTags(Map.of("string", "string"))
.build());
dbmulticloud_oracle_db_azure_vault_association_resource = oci.oci.DbmulticloudOracleDbAzureVaultAssociation("dbmulticloudOracleDbAzureVaultAssociationResource",
compartment_id="string",
display_name="string",
oracle_db_azure_connector_id="string",
oracle_db_azure_vault_id="string",
defined_tags={
"string": "string",
},
freeform_tags={
"string": "string",
})
const dbmulticloudOracleDbAzureVaultAssociationResource = new oci.oci.DbmulticloudOracleDbAzureVaultAssociation("dbmulticloudOracleDbAzureVaultAssociationResource", {
compartmentId: "string",
displayName: "string",
oracleDbAzureConnectorId: "string",
oracleDbAzureVaultId: "string",
definedTags: {
string: "string",
},
freeformTags: {
string: "string",
},
});
type: oci:oci:DbmulticloudOracleDbAzureVaultAssociation
properties:
compartmentId: string
definedTags:
string: string
displayName: string
freeformTags:
string: string
oracleDbAzureConnectorId: string
oracleDbAzureVaultId: string
DbmulticloudOracleDbAzureVaultAssociation 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 DbmulticloudOracleDbAzureVaultAssociation resource accepts the following input properties:
- Compartment
Id string - (Updatable) The OCID of the compartment that contains Oracle DB Azure Vault Association resource.
- Display
Name string - (Updatable) Oracle DB Azure Vault Association resource name.
- Oracle
Db stringAzure Connector Id - (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
- Oracle
Db stringAzure Vault Id (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association 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) The OCID of the compartment that contains Oracle DB Azure Vault Association resource.
- Display
Name string - (Updatable) Oracle DB Azure Vault Association resource name.
- Oracle
Db stringAzure Connector Id - (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
- Oracle
Db stringAzure Vault Id (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association 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) The OCID of the compartment that contains Oracle DB Azure Vault Association resource.
- display
Name String - (Updatable) Oracle DB Azure Vault Association resource name.
- oracle
Db StringAzure Connector Id - (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
- oracle
Db StringAzure Vault Id (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association 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) The OCID of the compartment that contains Oracle DB Azure Vault Association resource.
- display
Name string - (Updatable) Oracle DB Azure Vault Association resource name.
- oracle
Db stringAzure Connector Id - (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
- oracle
Db stringAzure Vault Id (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association 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) The OCID of the compartment that contains Oracle DB Azure Vault Association resource.
- display_
name str - (Updatable) Oracle DB Azure Vault Association resource name.
- oracle_
db_ strazure_ connector_ id - (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
- oracle_
db_ strazure_ vault_ id (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association 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) The OCID of the compartment that contains Oracle DB Azure Vault Association resource.
- display
Name String - (Updatable) Oracle DB Azure Vault Association resource name.
- oracle
Db StringAzure Connector Id - (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
- oracle
Db StringAzure Vault Id (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association 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 DbmulticloudOracleDbAzureVaultAssociation resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Resource boolAccessible - The Associated resource is accessible or not.
- Last
Modification string - Description of the latest modification of the Oracle DB Azure Vault Association resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- State string
- The current lifecycle state of the Oracle DB Azure Vault Association 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 Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- Time
Updated string - Time when the Oracle DB Azure Vault Association resource 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.
- Is
Resource boolAccessible - The Associated resource is accessible or not.
- Last
Modification string - Description of the latest modification of the Oracle DB Azure Vault Association resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- State string
- The current lifecycle state of the Oracle DB Azure Vault Association 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 Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- Time
Updated string - Time when the Oracle DB Azure Vault Association resource 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.
- is
Resource BooleanAccessible - The Associated resource is accessible or not.
- last
Modification String - Description of the latest modification of the Oracle DB Azure Vault Association resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- state String
- The current lifecycle state of the Oracle DB Azure Vault Association 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 Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time
Updated String - Time when the Oracle DB Azure Vault Association resource 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.
- is
Resource booleanAccessible - The Associated resource is accessible or not.
- last
Modification string - Description of the latest modification of the Oracle DB Azure Vault Association resource.
- lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- state string
- The current lifecycle state of the Oracle DB Azure Vault Association 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 Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time
Updated string - Time when the Oracle DB Azure Vault Association resource 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.
- is_
resource_ boolaccessible - The Associated resource is accessible or not.
- last_
modification str - Description of the latest modification of the Oracle DB Azure Vault Association resource.
- lifecycle_
state_ strdetails - Description of the current lifecycle state in more detail.
- state str
- The current lifecycle state of the Oracle DB Azure Vault Association 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 Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time_
updated str - Time when the Oracle DB Azure Vault Association resource 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.
- is
Resource BooleanAccessible - The Associated resource is accessible or not.
- last
Modification String - Description of the latest modification of the Oracle DB Azure Vault Association resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- state String
- The current lifecycle state of the Oracle DB Azure Vault Association 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 Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time
Updated String - Time when the Oracle DB Azure Vault Association resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
Look up Existing DbmulticloudOracleDbAzureVaultAssociation Resource
Get an existing DbmulticloudOracleDbAzureVaultAssociation 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?: DbmulticloudOracleDbAzureVaultAssociationState, opts?: CustomResourceOptions): DbmulticloudOracleDbAzureVaultAssociation@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,
is_resource_accessible: Optional[bool] = None,
last_modification: Optional[str] = None,
lifecycle_state_details: Optional[str] = None,
oracle_db_azure_connector_id: Optional[str] = None,
oracle_db_azure_vault_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) -> DbmulticloudOracleDbAzureVaultAssociationfunc GetDbmulticloudOracleDbAzureVaultAssociation(ctx *Context, name string, id IDInput, state *DbmulticloudOracleDbAzureVaultAssociationState, opts ...ResourceOption) (*DbmulticloudOracleDbAzureVaultAssociation, error)public static DbmulticloudOracleDbAzureVaultAssociation Get(string name, Input<string> id, DbmulticloudOracleDbAzureVaultAssociationState? state, CustomResourceOptions? opts = null)public static DbmulticloudOracleDbAzureVaultAssociation get(String name, Output<String> id, DbmulticloudOracleDbAzureVaultAssociationState state, CustomResourceOptions options)resources: _: type: oci:oci:DbmulticloudOracleDbAzureVaultAssociation 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) The OCID of the compartment that contains Oracle DB Azure Vault Association 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 Association 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"} - Is
Resource boolAccessible - The Associated resource is accessible or not.
- Last
Modification string - Description of the latest modification of the Oracle DB Azure Vault Association resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- Oracle
Db stringAzure Connector Id - (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
- Oracle
Db stringAzure Vault Id (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association 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 Vault Association 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 Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- Time
Updated string - Time when the Oracle DB Azure Vault Association resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- Compartment
Id string - (Updatable) The OCID of the compartment that contains Oracle DB Azure Vault Association 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 Association 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"} - Is
Resource boolAccessible - The Associated resource is accessible or not.
- Last
Modification string - Description of the latest modification of the Oracle DB Azure Vault Association resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- Oracle
Db stringAzure Connector Id - (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
- Oracle
Db stringAzure Vault Id (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association 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 Vault Association 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 Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- Time
Updated string - Time when the Oracle DB Azure Vault Association resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- compartment
Id String - (Updatable) The OCID of the compartment that contains Oracle DB Azure Vault Association 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 Association 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"} - is
Resource BooleanAccessible - The Associated resource is accessible or not.
- last
Modification String - Description of the latest modification of the Oracle DB Azure Vault Association resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- oracle
Db StringAzure Connector Id - (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
- oracle
Db StringAzure Vault Id (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association 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 Vault Association 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 Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time
Updated String - Time when the Oracle DB Azure Vault Association resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- compartment
Id string - (Updatable) The OCID of the compartment that contains Oracle DB Azure Vault Association 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 Association 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"} - is
Resource booleanAccessible - The Associated resource is accessible or not.
- last
Modification string - Description of the latest modification of the Oracle DB Azure Vault Association resource.
- lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- oracle
Db stringAzure Connector Id - (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
- oracle
Db stringAzure Vault Id (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association 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 Vault Association 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 Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time
Updated string - Time when the Oracle DB Azure Vault Association resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- compartment_
id str - (Updatable) The OCID of the compartment that contains Oracle DB Azure Vault Association 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 Association 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"} - is_
resource_ boolaccessible - The Associated resource is accessible or not.
- last_
modification str - Description of the latest modification of the Oracle DB Azure Vault Association resource.
- lifecycle_
state_ strdetails - Description of the current lifecycle state in more detail.
- oracle_
db_ strazure_ connector_ id - (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
- oracle_
db_ strazure_ vault_ id (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association 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 Vault Association 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 Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time_
updated str - Time when the Oracle DB Azure Vault Association resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- compartment
Id String - (Updatable) The OCID of the compartment that contains Oracle DB Azure Vault Association 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 Association 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"} - is
Resource BooleanAccessible - The Associated resource is accessible or not.
- last
Modification String - Description of the latest modification of the Oracle DB Azure Vault Association resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- oracle
Db StringAzure Connector Id - (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
- oracle
Db StringAzure Vault Id (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association 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 Vault Association 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 Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- time
Updated String - Time when the Oracle DB Azure Vault Association resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
Import
OracleDbAzureVaultAssociations can be imported using the id, e.g.
$ pulumi import oci:oci/dbmulticloudOracleDbAzureVaultAssociation:DbmulticloudOracleDbAzureVaultAssociation test_oracle_db_azure_vault_association "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.
