1. Packages
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. oci
  6. DbmulticloudOracleDbAzureVault
Viewing docs for Oracle Cloud Infrastructure v4.14.0
published on Thursday, Jun 4, 2026 by Pulumi
oci logo
Viewing docs for Oracle Cloud Infrastructure v4.14.0
published on Thursday, Jun 4, 2026 by Pulumi

    This resource provides the Oracle Db Azure Vault resource in Oracle Cloud Infrastructure Dbmulticloud service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/database-multicloud-integrations/latest/OracleDbAzureVault

    Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/dbmulticloud

    Creates DB Azure Vault resource.

    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/v4/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.ArrayList;
    import java.util.Arrays;
    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}
    
    pulumi {
      required_providers {
        oci = {
          source = "pulumi/oci"
        }
      }
    }
    
    resource "oci_oci_dbmulticloudoracledbazurevault" "test_oracle_db_azure_vault" {
      compartment_id         = compartmentId
      display_name           = oracleDbAzureVaultDisplayName
      oracle_db_connector_id = testOracleDbConnector.id
      azure_vault_id         = testVault.id
      defined_tags = {
        "Operations.CostCenter" = "42"
      }
      freeform_tags = {
        "Department" = "Finance"
      }
      location                       = oracleDbAzureVaultLocation
      oracle_db_azure_resource_group = 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,
                                       action: 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,
                                       target_region: Optional[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.
    
    
    resource "oci_oci_dbmulticloudoracledbazurevault" "name" {
        # resource properties
    }

    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",
        Action = "string",
        AzureVaultId = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        FreeformTags = 
        {
            { "string", "string" },
        },
        Location = "string",
        OracleDbAzureResourceGroup = "string",
        Properties = 
        {
            { "string", "string" },
        },
        TargetRegion = "string",
        Type = "string",
    });
    
    example, err := oci.NewDbmulticloudOracleDbAzureVault(ctx, "dbmulticloudOracleDbAzureVaultResource", &oci.DbmulticloudOracleDbAzureVaultArgs{
    	CompartmentId:       pulumi.String("string"),
    	DisplayName:         pulumi.String("string"),
    	OracleDbConnectorId: pulumi.String("string"),
    	Action:              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"),
    	},
    	TargetRegion: pulumi.String("string"),
    	Type:         pulumi.String("string"),
    })
    
    resource "oci_oci_dbmulticloudoracledbazurevault" "dbmulticloudOracleDbAzureVaultResource" {
      compartment_id         = "string"
      display_name           = "string"
      oracle_db_connector_id = "string"
      action                 = "string"
      azure_vault_id         = "string"
      defined_tags = {
        "string" = "string"
      }
      freeform_tags = {
        "string" = "string"
      }
      location                       = "string"
      oracle_db_azure_resource_group = "string"
      properties = {
        "string" = "string"
      }
      target_region = "string"
      type          = "string"
    }
    
    var dbmulticloudOracleDbAzureVaultResource = new DbmulticloudOracleDbAzureVault("dbmulticloudOracleDbAzureVaultResource", DbmulticloudOracleDbAzureVaultArgs.builder()
        .compartmentId("string")
        .displayName("string")
        .oracleDbConnectorId("string")
        .action("string")
        .azureVaultId("string")
        .definedTags(Map.of("string", "string"))
        .freeformTags(Map.of("string", "string"))
        .location("string")
        .oracleDbAzureResourceGroup("string")
        .properties(Map.of("string", "string"))
        .targetRegion("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",
        action="string",
        azure_vault_id="string",
        defined_tags={
            "string": "string",
        },
        freeform_tags={
            "string": "string",
        },
        location="string",
        oracle_db_azure_resource_group="string",
        properties={
            "string": "string",
        },
        target_region="string",
        type="string")
    
    const dbmulticloudOracleDbAzureVaultResource = new oci.oci.DbmulticloudOracleDbAzureVault("dbmulticloudOracleDbAzureVaultResource", {
        compartmentId: "string",
        displayName: "string",
        oracleDbConnectorId: "string",
        action: "string",
        azureVaultId: "string",
        definedTags: {
            string: "string",
        },
        freeformTags: {
            string: "string",
        },
        location: "string",
        oracleDbAzureResourceGroup: "string",
        properties: {
            string: "string",
        },
        targetRegion: "string",
        type: "string",
    });
    
    type: oci:oci:DbmulticloudOracleDbAzureVault
    properties:
        action: string
        azureVaultId: string
        compartmentId: string
        definedTags:
            string: string
        displayName: string
        freeformTags:
            string: string
        location: string
        oracleDbAzureResourceGroup: string
        oracleDbConnectorId: string
        properties:
            string: string
        targetRegion: 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:

    CompartmentId string
    (Updatable) The OCID of the compartment that contains DB Azure Vault resource.
    DisplayName string
    (Updatable) Oracle DB Azure Vault resource name.
    OracleDbConnectorId string
    (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
    Action string
    AzureVaultId string
    (Updatable) Azure Vault ID.
    DefinedTags 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"}
    FreeformTags 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.
    OracleDbAzureResourceGroup string
    (Updatable) Oracle DB Azure resource group name.
    Properties Dictionary<string, string>
    (Updatable) resource's properties.
    TargetRegion string
    The target region, where resource is replicated.
    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

    CompartmentId string
    (Updatable) The OCID of the compartment that contains DB Azure Vault resource.
    DisplayName string
    (Updatable) Oracle DB Azure Vault resource name.
    OracleDbConnectorId string
    (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
    Action string
    AzureVaultId string
    (Updatable) Azure Vault ID.
    DefinedTags 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"}
    FreeformTags 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.
    OracleDbAzureResourceGroup string
    (Updatable) Oracle DB Azure resource group name.
    Properties map[string]string
    (Updatable) resource's properties.
    TargetRegion string
    The target region, where resource is replicated.
    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_connector_id string
    (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
    action string
    azure_vault_id string
    (Updatable) Azure Vault ID.
    defined_tags 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"}
    freeform_tags 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_azure_resource_group string
    (Updatable) Oracle DB Azure resource group name.
    properties map(string)
    (Updatable) resource's properties.
    target_region string
    The target region, where resource is replicated.
    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

    compartmentId String
    (Updatable) The OCID of the compartment that contains DB Azure Vault resource.
    displayName String
    (Updatable) Oracle DB Azure Vault resource name.
    oracleDbConnectorId String
    (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
    action String
    azureVaultId String
    (Updatable) Azure Vault ID.
    definedTags 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"}
    freeformTags 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.
    oracleDbAzureResourceGroup String
    (Updatable) Oracle DB Azure resource group name.
    properties Map<String,String>
    (Updatable) resource's properties.
    targetRegion String
    The target region, where resource is replicated.
    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

    compartmentId string
    (Updatable) The OCID of the compartment that contains DB Azure Vault resource.
    displayName string
    (Updatable) Oracle DB Azure Vault resource name.
    oracleDbConnectorId string
    (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
    action string
    azureVaultId string
    (Updatable) Azure Vault ID.
    definedTags {[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"}
    freeformTags {[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.
    oracleDbAzureResourceGroup string
    (Updatable) Oracle DB Azure resource group name.
    properties {[key: string]: string}
    (Updatable) resource's properties.
    targetRegion string
    The target region, where resource is replicated.
    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_connector_id str
    (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
    action str
    azure_vault_id str
    (Updatable) Azure Vault ID.
    defined_tags 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"}
    freeform_tags 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_azure_resource_group str
    (Updatable) Oracle DB Azure resource group name.
    properties Mapping[str, str]
    (Updatable) resource's properties.
    target_region str
    The target region, where resource is replicated.
    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

    compartmentId String
    (Updatable) The OCID of the compartment that contains DB Azure Vault resource.
    displayName String
    (Updatable) Oracle DB Azure Vault resource name.
    oracleDbConnectorId String
    (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
    action String
    azureVaultId String
    (Updatable) Azure Vault ID.
    definedTags 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"}
    freeformTags 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.
    oracleDbAzureResourceGroup String
    (Updatable) Oracle DB Azure resource group name.
    properties Map<String>
    (Updatable) resource's properties.
    targetRegion String
    The target region, where resource is replicated.
    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.
    LastModification string
    Description of the latest modification of the Oracle DB Azure Vault resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    ReplicationMetadatas List<DbmulticloudOracleDbAzureVaultReplicationMetadata>
    Replication metadata, it has information about replication and target region.
    State string
    The lifecycle state of the Oracle DB Azure Vault resource.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    Time when the DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    TimeUpdated 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.
    LastModification string
    Description of the latest modification of the Oracle DB Azure Vault resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    ReplicationMetadatas []DbmulticloudOracleDbAzureVaultReplicationMetadata
    Replication metadata, it has information about replication and target region.
    State string
    The lifecycle state of the Oracle DB Azure Vault resource.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    Time when the DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    TimeUpdated 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_details string
    Description of the current lifecycle state in more detail.
    replication_metadatas list(object)
    Replication metadata, it has information about replication and target region.
    state string
    The lifecycle state of the Oracle DB Azure Vault resource.
    system_tags 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'
    id String
    The provider-assigned unique ID for this managed resource.
    lastModification String
    Description of the latest modification of the Oracle DB Azure Vault resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    replicationMetadatas List<DbmulticloudOracleDbAzureVaultReplicationMetadata>
    Replication metadata, it has information about replication and target region.
    state String
    The lifecycle state of the Oracle DB Azure Vault resource.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    Time when the DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    timeUpdated 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.
    lastModification string
    Description of the latest modification of the Oracle DB Azure Vault resource.
    lifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    replicationMetadatas DbmulticloudOracleDbAzureVaultReplicationMetadata[]
    Replication metadata, it has information about replication and target region.
    state string
    The lifecycle state of the Oracle DB Azure Vault resource.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    Time when the DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    timeUpdated 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_details str
    Description of the current lifecycle state in more detail.
    replication_metadatas Sequence[DbmulticloudOracleDbAzureVaultReplicationMetadata]
    Replication metadata, it has information about replication and target region.
    state str
    The lifecycle state of the Oracle DB Azure Vault resource.
    system_tags 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.
    lastModification String
    Description of the latest modification of the Oracle DB Azure Vault resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    replicationMetadatas List<Property Map>
    Replication metadata, it has information about replication and target region.
    state String
    The lifecycle state of the Oracle DB Azure Vault resource.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    Time when the DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    timeUpdated 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,
            action: Optional[str] = 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,
            replication_metadatas: Optional[Sequence[DbmulticloudOracleDbAzureVaultReplicationMetadataArgs]] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            target_region: Optional[str] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None,
            type: Optional[str] = None) -> DbmulticloudOracleDbAzureVault
    func 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}
    import {
      to = oci_oci_dbmulticloudoracledbazurevault.example
      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.
    The following state arguments are supported:
    Action string
    AzureVaultId string
    (Updatable) Azure Vault ID.
    CompartmentId string
    (Updatable) The OCID of the compartment that contains DB Azure Vault resource.
    DefinedTags 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"}
    DisplayName string
    (Updatable) Oracle DB Azure Vault resource name.
    FreeformTags 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"}
    LastModification string
    Description of the latest modification of the Oracle DB Azure Vault resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    Location string
    (Updatable) Oracle DB Azure Vault resource location.
    OracleDbAzureResourceGroup string
    (Updatable) Oracle DB Azure resource group name.
    OracleDbConnectorId string
    (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
    Properties Dictionary<string, string>
    (Updatable) resource's properties.
    ReplicationMetadatas List<DbmulticloudOracleDbAzureVaultReplicationMetadata>
    Replication metadata, it has information about replication and target region.
    State string
    The lifecycle state of the Oracle DB Azure Vault resource.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TargetRegion string
    The target region, where resource is replicated.
    TimeCreated string
    Time when the DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    TimeUpdated 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

    Action string
    AzureVaultId string
    (Updatable) Azure Vault ID.
    CompartmentId string
    (Updatable) The OCID of the compartment that contains DB Azure Vault resource.
    DefinedTags 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"}
    DisplayName string
    (Updatable) Oracle DB Azure Vault resource name.
    FreeformTags 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"}
    LastModification string
    Description of the latest modification of the Oracle DB Azure Vault resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    Location string
    (Updatable) Oracle DB Azure Vault resource location.
    OracleDbAzureResourceGroup string
    (Updatable) Oracle DB Azure resource group name.
    OracleDbConnectorId string
    (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
    Properties map[string]string
    (Updatable) resource's properties.
    ReplicationMetadatas []DbmulticloudOracleDbAzureVaultReplicationMetadataArgs
    Replication metadata, it has information about replication and target region.
    State string
    The lifecycle state of the Oracle DB Azure Vault resource.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TargetRegion string
    The target region, where resource is replicated.
    TimeCreated string
    Time when the DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    TimeUpdated 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

    action string
    azure_vault_id string
    (Updatable) Azure Vault ID.
    compartment_id string
    (Updatable) The OCID of the compartment that contains DB Azure Vault resource.
    defined_tags 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.
    freeform_tags 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_details string
    Description of the current lifecycle state in more detail.
    location string
    (Updatable) Oracle DB Azure Vault resource location.
    oracle_db_azure_resource_group string
    (Updatable) Oracle DB Azure resource group name.
    oracle_db_connector_id string
    (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
    properties map(string)
    (Updatable) resource's properties.
    replication_metadatas list(object)
    Replication metadata, it has information about replication and target region.
    state string
    The lifecycle state of the Oracle DB Azure Vault resource.
    system_tags map(string)
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    target_region string
    The target region, where resource is replicated.
    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

    action String
    azureVaultId String
    (Updatable) Azure Vault ID.
    compartmentId String
    (Updatable) The OCID of the compartment that contains DB Azure Vault resource.
    definedTags 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"}
    displayName String
    (Updatable) Oracle DB Azure Vault resource name.
    freeformTags 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"}
    lastModification String
    Description of the latest modification of the Oracle DB Azure Vault resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    location String
    (Updatable) Oracle DB Azure Vault resource location.
    oracleDbAzureResourceGroup String
    (Updatable) Oracle DB Azure resource group name.
    oracleDbConnectorId String
    (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
    properties Map<String,String>
    (Updatable) resource's properties.
    replicationMetadatas List<DbmulticloudOracleDbAzureVaultReplicationMetadata>
    Replication metadata, it has information about replication and target region.
    state String
    The lifecycle state of the Oracle DB Azure Vault resource.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetRegion String
    The target region, where resource is replicated.
    timeCreated String
    Time when the DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    timeUpdated 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

    action string
    azureVaultId string
    (Updatable) Azure Vault ID.
    compartmentId string
    (Updatable) The OCID of the compartment that contains DB Azure Vault resource.
    definedTags {[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"}
    displayName string
    (Updatable) Oracle DB Azure Vault resource name.
    freeformTags {[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"}
    lastModification string
    Description of the latest modification of the Oracle DB Azure Vault resource.
    lifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    location string
    (Updatable) Oracle DB Azure Vault resource location.
    oracleDbAzureResourceGroup string
    (Updatable) Oracle DB Azure resource group name.
    oracleDbConnectorId string
    (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
    properties {[key: string]: string}
    (Updatable) resource's properties.
    replicationMetadatas DbmulticloudOracleDbAzureVaultReplicationMetadata[]
    Replication metadata, it has information about replication and target region.
    state string
    The lifecycle state of the Oracle DB Azure Vault resource.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetRegion string
    The target region, where resource is replicated.
    timeCreated string
    Time when the DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    timeUpdated 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

    action str
    azure_vault_id str
    (Updatable) Azure Vault ID.
    compartment_id str
    (Updatable) The OCID of the compartment that contains DB Azure Vault resource.
    defined_tags 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.
    freeform_tags 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_details str
    Description of the current lifecycle state in more detail.
    location str
    (Updatable) Oracle DB Azure Vault resource location.
    oracle_db_azure_resource_group str
    (Updatable) Oracle DB Azure resource group name.
    oracle_db_connector_id str
    (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
    properties Mapping[str, str]
    (Updatable) resource's properties.
    replication_metadatas Sequence[DbmulticloudOracleDbAzureVaultReplicationMetadataArgs]
    Replication metadata, it has information about replication and target region.
    state str
    The lifecycle state of the Oracle DB Azure Vault resource.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    target_region str
    The target region, where resource is replicated.
    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

    action String
    azureVaultId String
    (Updatable) Azure Vault ID.
    compartmentId String
    (Updatable) The OCID of the compartment that contains DB Azure Vault resource.
    definedTags 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"}
    displayName String
    (Updatable) Oracle DB Azure Vault resource name.
    freeformTags 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"}
    lastModification String
    Description of the latest modification of the Oracle DB Azure Vault resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    location String
    (Updatable) Oracle DB Azure Vault resource location.
    oracleDbAzureResourceGroup String
    (Updatable) Oracle DB Azure resource group name.
    oracleDbConnectorId String
    (Updatable) The OCID of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
    properties Map<String>
    (Updatable) resource's properties.
    replicationMetadatas List<Property Map>
    Replication metadata, it has information about replication and target region.
    state String
    The lifecycle state of the Oracle DB Azure Vault resource.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetRegion String
    The target region, where resource is replicated.
    timeCreated String
    Time when the DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    timeUpdated 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

    Supporting Types

    DbmulticloudOracleDbAzureVaultReplicationMetadata, DbmulticloudOracleDbAzureVaultReplicationMetadataArgs

    replication_details list(object)
    List of all regions and their respective resource ID.
    replicationDetails List<Property Map>
    List of all regions and their respective resource ID.

    DbmulticloudOracleDbAzureVaultReplicationMetadataReplicationDetail, DbmulticloudOracleDbAzureVaultReplicationMetadataReplicationDetailArgs

    ReplicationState string
    The lifecycle state of the Oracle DB Azure Vault resource.
    TargetRegion string
    The target region, where resource is replicated.
    TimeCreated string
    Time when the DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    TimeUpdated 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'
    ReplicationState string
    The lifecycle state of the Oracle DB Azure Vault resource.
    TargetRegion string
    The target region, where resource is replicated.
    TimeCreated string
    Time when the DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    TimeUpdated 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'
    replication_state string
    The lifecycle state of the Oracle DB Azure Vault resource.
    target_region string
    The target region, where resource is replicated.
    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'
    replicationState String
    The lifecycle state of the Oracle DB Azure Vault resource.
    targetRegion String
    The target region, where resource is replicated.
    timeCreated String
    Time when the DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    timeUpdated 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'
    replicationState string
    The lifecycle state of the Oracle DB Azure Vault resource.
    targetRegion string
    The target region, where resource is replicated.
    timeCreated string
    Time when the DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    timeUpdated 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'
    replication_state str
    The lifecycle state of the Oracle DB Azure Vault resource.
    target_region str
    The target region, where resource is replicated.
    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'
    replicationState String
    The lifecycle state of the Oracle DB Azure Vault resource.
    targetRegion String
    The target region, where resource is replicated.
    timeCreated String
    Time when the DB Azure Vault resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    timeUpdated 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'

    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 oci Terraform Provider.
    oci logo
    Viewing docs for Oracle Cloud Infrastructure v4.14.0
    published on Thursday, Jun 4, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial