1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. DbmulticloudOracleDbAzureVault
Oracle Cloud Infrastructure v3.12.0 published on Friday, Nov 21, 2025 by Pulumi
oci logo
Oracle Cloud Infrastructure v3.12.0 published on Friday, Nov 21, 2025 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testOracleDbAzureVault = new oci.oci.DbmulticloudOracleDbAzureVault("test_oracle_db_azure_vault", {
        compartmentId: compartmentId,
        displayName: oracleDbAzureVaultDisplayName,
        oracleDbConnectorId: testOracleDbConnector.id,
        azureVaultId: testVault.id,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        freeformTags: {
            Department: "Finance",
        },
        location: oracleDbAzureVaultLocation,
        oracleDbAzureResourceGroup: oracleDbAzureVaultOracleDbAzureResourceGroup,
        properties: oracleDbAzureVaultProperties,
        type: oracleDbAzureVaultType,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_oracle_db_azure_vault = oci.oci.DbmulticloudOracleDbAzureVault("test_oracle_db_azure_vault",
        compartment_id=compartment_id,
        display_name=oracle_db_azure_vault_display_name,
        oracle_db_connector_id=test_oracle_db_connector["id"],
        azure_vault_id=test_vault["id"],
        defined_tags={
            "Operations.CostCenter": "42",
        },
        freeform_tags={
            "Department": "Finance",
        },
        location=oracle_db_azure_vault_location,
        oracle_db_azure_resource_group=oracle_db_azure_vault_oracle_db_azure_resource_group,
        properties=oracle_db_azure_vault_properties,
        type=oracle_db_azure_vault_type)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/oci"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := oci.NewDbmulticloudOracleDbAzureVault(ctx, "test_oracle_db_azure_vault", &oci.DbmulticloudOracleDbAzureVaultArgs{
    			CompartmentId:       pulumi.Any(compartmentId),
    			DisplayName:         pulumi.Any(oracleDbAzureVaultDisplayName),
    			OracleDbConnectorId: pulumi.Any(testOracleDbConnector.Id),
    			AzureVaultId:        pulumi.Any(testVault.Id),
    			DefinedTags: pulumi.StringMap{
    				"Operations.CostCenter": pulumi.String("42"),
    			},
    			FreeformTags: pulumi.StringMap{
    				"Department": pulumi.String("Finance"),
    			},
    			Location:                   pulumi.Any(oracleDbAzureVaultLocation),
    			OracleDbAzureResourceGroup: pulumi.Any(oracleDbAzureVaultOracleDbAzureResourceGroup),
    			Properties:                 pulumi.Any(oracleDbAzureVaultProperties),
    			Type:                       pulumi.Any(oracleDbAzureVaultType),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testOracleDbAzureVault = new Oci.Oci.DbmulticloudOracleDbAzureVault("test_oracle_db_azure_vault", new()
        {
            CompartmentId = compartmentId,
            DisplayName = oracleDbAzureVaultDisplayName,
            OracleDbConnectorId = testOracleDbConnector.Id,
            AzureVaultId = testVault.Id,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
            Location = oracleDbAzureVaultLocation,
            OracleDbAzureResourceGroup = oracleDbAzureVaultOracleDbAzureResourceGroup,
            Properties = oracleDbAzureVaultProperties,
            Type = oracleDbAzureVaultType,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.oci.DbmulticloudOracleDbAzureVault;
    import com.pulumi.oci.oci.DbmulticloudOracleDbAzureVaultArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var testOracleDbAzureVault = new DbmulticloudOracleDbAzureVault("testOracleDbAzureVault", DbmulticloudOracleDbAzureVaultArgs.builder()
                .compartmentId(compartmentId)
                .displayName(oracleDbAzureVaultDisplayName)
                .oracleDbConnectorId(testOracleDbConnector.id())
                .azureVaultId(testVault.id())
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .freeformTags(Map.of("Department", "Finance"))
                .location(oracleDbAzureVaultLocation)
                .oracleDbAzureResourceGroup(oracleDbAzureVaultOracleDbAzureResourceGroup)
                .properties(oracleDbAzureVaultProperties)
                .type(oracleDbAzureVaultType)
                .build());
    
        }
    }
    
    resources:
      testOracleDbAzureVault:
        type: oci:oci:DbmulticloudOracleDbAzureVault
        name: test_oracle_db_azure_vault
        properties:
          compartmentId: ${compartmentId}
          displayName: ${oracleDbAzureVaultDisplayName}
          oracleDbConnectorId: ${testOracleDbConnector.id}
          azureVaultId: ${testVault.id}
          definedTags:
            Operations.CostCenter: '42'
          freeformTags:
            Department: Finance
          location: ${oracleDbAzureVaultLocation}
          oracleDbAzureResourceGroup: ${oracleDbAzureVaultOracleDbAzureResourceGroup}
          properties: ${oracleDbAzureVaultProperties}
          type: ${oracleDbAzureVaultType}
    

    Create DbmulticloudOracleDbAzureVault Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new DbmulticloudOracleDbAzureVault(name: string, args: DbmulticloudOracleDbAzureVaultArgs, opts?: CustomResourceOptions);
    @overload
    def DbmulticloudOracleDbAzureVault(resource_name: str,
                                       args: DbmulticloudOracleDbAzureVaultArgs,
                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def DbmulticloudOracleDbAzureVault(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       compartment_id: Optional[str] = None,
                                       display_name: Optional[str] = None,
                                       oracle_db_connector_id: Optional[str] = None,
                                       azure_vault_id: Optional[str] = None,
                                       defined_tags: Optional[Mapping[str, str]] = None,
                                       freeform_tags: Optional[Mapping[str, str]] = None,
                                       location: Optional[str] = None,
                                       oracle_db_azure_resource_group: Optional[str] = None,
                                       properties: Optional[Mapping[str, str]] = None,
                                       type: Optional[str] = None)
    func NewDbmulticloudOracleDbAzureVault(ctx *Context, name string, args DbmulticloudOracleDbAzureVaultArgs, opts ...ResourceOption) (*DbmulticloudOracleDbAzureVault, error)
    public DbmulticloudOracleDbAzureVault(string name, DbmulticloudOracleDbAzureVaultArgs args, CustomResourceOptions? opts = null)
    public DbmulticloudOracleDbAzureVault(String name, DbmulticloudOracleDbAzureVaultArgs args)
    public DbmulticloudOracleDbAzureVault(String name, DbmulticloudOracleDbAzureVaultArgs args, CustomResourceOptions options)
    
    type: oci:oci:DbmulticloudOracleDbAzureVault
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DbmulticloudOracleDbAzureVaultArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DbmulticloudOracleDbAzureVaultArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DbmulticloudOracleDbAzureVaultArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DbmulticloudOracleDbAzureVaultArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DbmulticloudOracleDbAzureVaultArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var dbmulticloudOracleDbAzureVaultResource = new Oci.Oci.DbmulticloudOracleDbAzureVault("dbmulticloudOracleDbAzureVaultResource", new()
    {
        CompartmentId = "string",
        DisplayName = "string",
        OracleDbConnectorId = "string",
        AzureVaultId = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        FreeformTags = 
        {
            { "string", "string" },
        },
        Location = "string",
        OracleDbAzureResourceGroup = "string",
        Properties = 
        {
            { "string", "string" },
        },
        Type = "string",
    });
    
    example, err := oci.NewDbmulticloudOracleDbAzureVault(ctx, "dbmulticloudOracleDbAzureVaultResource", &oci.DbmulticloudOracleDbAzureVaultArgs{
    	CompartmentId:       pulumi.String("string"),
    	DisplayName:         pulumi.String("string"),
    	OracleDbConnectorId: pulumi.String("string"),
    	AzureVaultId:        pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Location:                   pulumi.String("string"),
    	OracleDbAzureResourceGroup: pulumi.String("string"),
    	Properties: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Type: pulumi.String("string"),
    })
    
    var dbmulticloudOracleDbAzureVaultResource = new DbmulticloudOracleDbAzureVault("dbmulticloudOracleDbAzureVaultResource", DbmulticloudOracleDbAzureVaultArgs.builder()
        .compartmentId("string")
        .displayName("string")
        .oracleDbConnectorId("string")
        .azureVaultId("string")
        .definedTags(Map.of("string", "string"))
        .freeformTags(Map.of("string", "string"))
        .location("string")
        .oracleDbAzureResourceGroup("string")
        .properties(Map.of("string", "string"))
        .type("string")
        .build());
    
    dbmulticloud_oracle_db_azure_vault_resource = oci.oci.DbmulticloudOracleDbAzureVault("dbmulticloudOracleDbAzureVaultResource",
        compartment_id="string",
        display_name="string",
        oracle_db_connector_id="string",
        azure_vault_id="string",
        defined_tags={
            "string": "string",
        },
        freeform_tags={
            "string": "string",
        },
        location="string",
        oracle_db_azure_resource_group="string",
        properties={
            "string": "string",
        },
        type="string")
    
    const dbmulticloudOracleDbAzureVaultResource = new oci.oci.DbmulticloudOracleDbAzureVault("dbmulticloudOracleDbAzureVaultResource", {
        compartmentId: "string",
        displayName: "string",
        oracleDbConnectorId: "string",
        azureVaultId: "string",
        definedTags: {
            string: "string",
        },
        freeformTags: {
            string: "string",
        },
        location: "string",
        oracleDbAzureResourceGroup: "string",
        properties: {
            string: "string",
        },
        type: "string",
    });
    
    type: oci:oci:DbmulticloudOracleDbAzureVault
    properties:
        azureVaultId: string
        compartmentId: string
        definedTags:
            string: string
        displayName: string
        freeformTags:
            string: string
        location: string
        oracleDbAzureResourceGroup: string
        oracleDbConnectorId: string
        properties:
            string: string
        type: string
    

    DbmulticloudOracleDbAzureVault Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The DbmulticloudOracleDbAzureVault resource accepts the following input properties:

    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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.
    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,
            azure_vault_id: Optional[str] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            last_modification: Optional[str] = None,
            lifecycle_state_details: Optional[str] = None,
            location: Optional[str] = None,
            oracle_db_azure_resource_group: Optional[str] = None,
            oracle_db_connector_id: Optional[str] = None,
            properties: Optional[Mapping[str, str]] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None,
            type: Optional[str] = None) -> 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}
    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:
    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.
    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'
    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

    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.
    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'
    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

    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.
    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'
    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

    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.
    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'
    type string

    (Updatable) Oracle DB Azure Vault resource type.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    azure_vault_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.
    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'
    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

    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.
    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'
    type String

    (Updatable) Oracle DB Azure Vault resource type.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Import

    OracleDbAzureVaults can be imported using the id, e.g.

    $ pulumi import oci:oci/dbmulticloudOracleDbAzureVault:DbmulticloudOracleDbAzureVault test_oracle_db_azure_vault "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.12.0 published on Friday, Nov 21, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate