1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. DbmulticloudOracleDbAzureVaultAssociation
Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi
oci logo
Oracle Cloud Infrastructure v3.11.1 published on Friday, Nov 14, 2025 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testOracleDbAzureVaultAssociation = new oci.oci.DbmulticloudOracleDbAzureVaultAssociation("test_oracle_db_azure_vault_association", {
        compartmentId: compartmentId,
        displayName: oracleDbAzureVaultAssociationDisplayName,
        oracleDbAzureConnectorId: testOracleDbAzureConnector.id,
        oracleDbAzureVaultId: testOracleDbAzureVault.id,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        freeformTags: {
            Department: "Finance",
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_oracle_db_azure_vault_association = oci.oci.DbmulticloudOracleDbAzureVaultAssociation("test_oracle_db_azure_vault_association",
        compartment_id=compartment_id,
        display_name=oracle_db_azure_vault_association_display_name,
        oracle_db_azure_connector_id=test_oracle_db_azure_connector["id"],
        oracle_db_azure_vault_id=test_oracle_db_azure_vault["id"],
        defined_tags={
            "Operations.CostCenter": "42",
        },
        freeform_tags={
            "Department": "Finance",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/oci"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := oci.NewDbmulticloudOracleDbAzureVaultAssociation(ctx, "test_oracle_db_azure_vault_association", &oci.DbmulticloudOracleDbAzureVaultAssociationArgs{
    			CompartmentId:            pulumi.Any(compartmentId),
    			DisplayName:              pulumi.Any(oracleDbAzureVaultAssociationDisplayName),
    			OracleDbAzureConnectorId: pulumi.Any(testOracleDbAzureConnector.Id),
    			OracleDbAzureVaultId:     pulumi.Any(testOracleDbAzureVault.Id),
    			DefinedTags: pulumi.StringMap{
    				"Operations.CostCenter": pulumi.String("42"),
    			},
    			FreeformTags: pulumi.StringMap{
    				"Department": pulumi.String("Finance"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testOracleDbAzureVaultAssociation = new Oci.Oci.DbmulticloudOracleDbAzureVaultAssociation("test_oracle_db_azure_vault_association", new()
        {
            CompartmentId = compartmentId,
            DisplayName = oracleDbAzureVaultAssociationDisplayName,
            OracleDbAzureConnectorId = testOracleDbAzureConnector.Id,
            OracleDbAzureVaultId = testOracleDbAzureVault.Id,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.oci.DbmulticloudOracleDbAzureVaultAssociation;
    import com.pulumi.oci.oci.DbmulticloudOracleDbAzureVaultAssociationArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var testOracleDbAzureVaultAssociation = new DbmulticloudOracleDbAzureVaultAssociation("testOracleDbAzureVaultAssociation", DbmulticloudOracleDbAzureVaultAssociationArgs.builder()
                .compartmentId(compartmentId)
                .displayName(oracleDbAzureVaultAssociationDisplayName)
                .oracleDbAzureConnectorId(testOracleDbAzureConnector.id())
                .oracleDbAzureVaultId(testOracleDbAzureVault.id())
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .freeformTags(Map.of("Department", "Finance"))
                .build());
    
        }
    }
    
    resources:
      testOracleDbAzureVaultAssociation:
        type: oci:oci:DbmulticloudOracleDbAzureVaultAssociation
        name: test_oracle_db_azure_vault_association
        properties:
          compartmentId: ${compartmentId}
          displayName: ${oracleDbAzureVaultAssociationDisplayName}
          oracleDbAzureConnectorId: ${testOracleDbAzureConnector.id}
          oracleDbAzureVaultId: ${testOracleDbAzureVault.id}
          definedTags:
            Operations.CostCenter: '42'
          freeformTags:
            Department: Finance
    

    Create DbmulticloudOracleDbAzureVaultAssociation Resource

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

    Constructor syntax

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

    Parameters

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

    Constructor example

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

    var dbmulticloudOracleDbAzureVaultAssociationResource = new Oci.Oci.DbmulticloudOracleDbAzureVaultAssociation("dbmulticloudOracleDbAzureVaultAssociationResource", new()
    {
        CompartmentId = "string",
        DisplayName = "string",
        OracleDbAzureConnectorId = "string",
        OracleDbAzureVaultId = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        FreeformTags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := oci.NewDbmulticloudOracleDbAzureVaultAssociation(ctx, "dbmulticloudOracleDbAzureVaultAssociationResource", &oci.DbmulticloudOracleDbAzureVaultAssociationArgs{
    	CompartmentId:            pulumi.String("string"),
    	DisplayName:              pulumi.String("string"),
    	OracleDbAzureConnectorId: pulumi.String("string"),
    	OracleDbAzureVaultId:     pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var dbmulticloudOracleDbAzureVaultAssociationResource = new DbmulticloudOracleDbAzureVaultAssociation("dbmulticloudOracleDbAzureVaultAssociationResource", DbmulticloudOracleDbAzureVaultAssociationArgs.builder()
        .compartmentId("string")
        .displayName("string")
        .oracleDbAzureConnectorId("string")
        .oracleDbAzureVaultId("string")
        .definedTags(Map.of("string", "string"))
        .freeformTags(Map.of("string", "string"))
        .build());
    
    dbmulticloud_oracle_db_azure_vault_association_resource = oci.oci.DbmulticloudOracleDbAzureVaultAssociation("dbmulticloudOracleDbAzureVaultAssociationResource",
        compartment_id="string",
        display_name="string",
        oracle_db_azure_connector_id="string",
        oracle_db_azure_vault_id="string",
        defined_tags={
            "string": "string",
        },
        freeform_tags={
            "string": "string",
        })
    
    const dbmulticloudOracleDbAzureVaultAssociationResource = new oci.oci.DbmulticloudOracleDbAzureVaultAssociation("dbmulticloudOracleDbAzureVaultAssociationResource", {
        compartmentId: "string",
        displayName: "string",
        oracleDbAzureConnectorId: "string",
        oracleDbAzureVaultId: "string",
        definedTags: {
            string: "string",
        },
        freeformTags: {
            string: "string",
        },
    });
    
    type: oci:oci:DbmulticloudOracleDbAzureVaultAssociation
    properties:
        compartmentId: string
        definedTags:
            string: string
        displayName: string
        freeformTags:
            string: string
        oracleDbAzureConnectorId: string
        oracleDbAzureVaultId: string
    

    DbmulticloudOracleDbAzureVaultAssociation Resource Properties

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

    Inputs

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

    The DbmulticloudOracleDbAzureVaultAssociation resource accepts the following input properties:

    CompartmentId string
    (Updatable) The OCID of the compartment that contains Oracle DB Azure Vault Association resource.
    DisplayName string
    (Updatable) Oracle DB Azure Vault Association resource name.
    OracleDbAzureConnectorId string
    (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
    OracleDbAzureVaultId string

    (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association resource.

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

    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"}
    CompartmentId string
    (Updatable) The OCID of the compartment that contains Oracle DB Azure Vault Association resource.
    DisplayName string
    (Updatable) Oracle DB Azure Vault Association resource name.
    OracleDbAzureConnectorId string
    (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
    OracleDbAzureVaultId string

    (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association resource.

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

    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"}
    compartmentId String
    (Updatable) The OCID of the compartment that contains Oracle DB Azure Vault Association resource.
    displayName String
    (Updatable) Oracle DB Azure Vault Association resource name.
    oracleDbAzureConnectorId String
    (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
    oracleDbAzureVaultId String

    (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association resource.

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

    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"}
    compartmentId string
    (Updatable) The OCID of the compartment that contains Oracle DB Azure Vault Association resource.
    displayName string
    (Updatable) Oracle DB Azure Vault Association resource name.
    oracleDbAzureConnectorId string
    (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
    oracleDbAzureVaultId string

    (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association resource.

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

    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"}
    compartment_id str
    (Updatable) The OCID of the compartment that contains Oracle DB Azure Vault Association resource.
    display_name str
    (Updatable) Oracle DB Azure Vault Association resource name.
    oracle_db_azure_connector_id str
    (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
    oracle_db_azure_vault_id str

    (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association resource.

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

    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"}
    compartmentId String
    (Updatable) The OCID of the compartment that contains Oracle DB Azure Vault Association resource.
    displayName String
    (Updatable) Oracle DB Azure Vault Association resource name.
    oracleDbAzureConnectorId String
    (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
    oracleDbAzureVaultId String

    (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association resource.

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

    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"}

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DbmulticloudOracleDbAzureVaultAssociation resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    IsResourceAccessible bool
    The Associated resource is accessible or not.
    LastModification string
    Description of the latest modification of the Oracle DB Azure Vault Association resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    State string
    The current lifecycle state of the Oracle DB Azure Vault Association 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 Oracle DB Azure Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    TimeUpdated string
    Time when the Oracle DB Azure Vault Association resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    Id string
    The provider-assigned unique ID for this managed resource.
    IsResourceAccessible bool
    The Associated resource is accessible or not.
    LastModification string
    Description of the latest modification of the Oracle DB Azure Vault Association resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    State string
    The current lifecycle state of the Oracle DB Azure Vault Association 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 Oracle DB Azure Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    TimeUpdated string
    Time when the Oracle DB Azure Vault Association resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    id String
    The provider-assigned unique ID for this managed resource.
    isResourceAccessible Boolean
    The Associated resource is accessible or not.
    lastModification String
    Description of the latest modification of the Oracle DB Azure Vault Association resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    state String
    The current lifecycle state of the Oracle DB Azure Vault Association 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 Oracle DB Azure Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated String
    Time when the Oracle DB Azure Vault Association resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    id string
    The provider-assigned unique ID for this managed resource.
    isResourceAccessible boolean
    The Associated resource is accessible or not.
    lastModification string
    Description of the latest modification of the Oracle DB Azure Vault Association resource.
    lifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    state string
    The current lifecycle state of the Oracle DB Azure Vault Association 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 Oracle DB Azure Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated string
    Time when the Oracle DB Azure Vault Association resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    id str
    The provider-assigned unique ID for this managed resource.
    is_resource_accessible bool
    The Associated resource is accessible or not.
    last_modification str
    Description of the latest modification of the Oracle DB Azure Vault Association resource.
    lifecycle_state_details str
    Description of the current lifecycle state in more detail.
    state str
    The current lifecycle state of the Oracle DB Azure Vault Association 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 Oracle DB Azure Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    time_updated str
    Time when the Oracle DB Azure Vault Association resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    id String
    The provider-assigned unique ID for this managed resource.
    isResourceAccessible Boolean
    The Associated resource is accessible or not.
    lastModification String
    Description of the latest modification of the Oracle DB Azure Vault Association resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    state String
    The current lifecycle state of the Oracle DB Azure Vault Association 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 Oracle DB Azure Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated String
    Time when the Oracle DB Azure Vault Association resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'

    Look up Existing DbmulticloudOracleDbAzureVaultAssociation Resource

    Get an existing DbmulticloudOracleDbAzureVaultAssociation resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DbmulticloudOracleDbAzureVaultAssociationState, opts?: CustomResourceOptions): DbmulticloudOracleDbAzureVaultAssociation
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            is_resource_accessible: Optional[bool] = None,
            last_modification: Optional[str] = None,
            lifecycle_state_details: Optional[str] = None,
            oracle_db_azure_connector_id: Optional[str] = None,
            oracle_db_azure_vault_id: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> DbmulticloudOracleDbAzureVaultAssociation
    func GetDbmulticloudOracleDbAzureVaultAssociation(ctx *Context, name string, id IDInput, state *DbmulticloudOracleDbAzureVaultAssociationState, opts ...ResourceOption) (*DbmulticloudOracleDbAzureVaultAssociation, error)
    public static DbmulticloudOracleDbAzureVaultAssociation Get(string name, Input<string> id, DbmulticloudOracleDbAzureVaultAssociationState? state, CustomResourceOptions? opts = null)
    public static DbmulticloudOracleDbAzureVaultAssociation get(String name, Output<String> id, DbmulticloudOracleDbAzureVaultAssociationState state, CustomResourceOptions options)
    resources:  _:    type: oci:oci:DbmulticloudOracleDbAzureVaultAssociation    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CompartmentId string
    (Updatable) The OCID of the compartment that contains Oracle DB Azure Vault Association 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 Association 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"}
    IsResourceAccessible bool
    The Associated resource is accessible or not.
    LastModification string
    Description of the latest modification of the Oracle DB Azure Vault Association resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    OracleDbAzureConnectorId string
    (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
    OracleDbAzureVaultId string

    (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association resource.

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

    State string
    The current lifecycle state of the Oracle DB Azure Vault Association resource.
    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 Oracle DB Azure Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    TimeUpdated string
    Time when the Oracle DB Azure Vault Association resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    CompartmentId string
    (Updatable) The OCID of the compartment that contains Oracle DB Azure Vault Association 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 Association 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"}
    IsResourceAccessible bool
    The Associated resource is accessible or not.
    LastModification string
    Description of the latest modification of the Oracle DB Azure Vault Association resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    OracleDbAzureConnectorId string
    (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
    OracleDbAzureVaultId string

    (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association resource.

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

    State string
    The current lifecycle state of the Oracle DB Azure Vault Association resource.
    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 Oracle DB Azure Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    TimeUpdated string
    Time when the Oracle DB Azure Vault Association resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    compartmentId String
    (Updatable) The OCID of the compartment that contains Oracle DB Azure Vault Association 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 Association 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"}
    isResourceAccessible Boolean
    The Associated resource is accessible or not.
    lastModification String
    Description of the latest modification of the Oracle DB Azure Vault Association resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    oracleDbAzureConnectorId String
    (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
    oracleDbAzureVaultId String

    (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association resource.

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

    state String
    The current lifecycle state of the Oracle DB Azure Vault Association resource.
    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 Oracle DB Azure Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated String
    Time when the Oracle DB Azure Vault Association resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    compartmentId string
    (Updatable) The OCID of the compartment that contains Oracle DB Azure Vault Association 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 Association 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"}
    isResourceAccessible boolean
    The Associated resource is accessible or not.
    lastModification string
    Description of the latest modification of the Oracle DB Azure Vault Association resource.
    lifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    oracleDbAzureConnectorId string
    (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
    oracleDbAzureVaultId string

    (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association resource.

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

    state string
    The current lifecycle state of the Oracle DB Azure Vault Association resource.
    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 Oracle DB Azure Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated string
    Time when the Oracle DB Azure Vault Association resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    compartment_id str
    (Updatable) The OCID of the compartment that contains Oracle DB Azure Vault Association resource.
    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 Association 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"}
    is_resource_accessible bool
    The Associated resource is accessible or not.
    last_modification str
    Description of the latest modification of the Oracle DB Azure Vault Association resource.
    lifecycle_state_details str
    Description of the current lifecycle state in more detail.
    oracle_db_azure_connector_id str
    (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
    oracle_db_azure_vault_id str

    (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association resource.

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

    state str
    The current lifecycle state of the Oracle DB Azure Vault Association resource.
    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 Oracle DB Azure Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    time_updated str
    Time when the Oracle DB Azure Vault Association resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    compartmentId String
    (Updatable) The OCID of the compartment that contains Oracle DB Azure Vault Association 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 Association 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"}
    isResourceAccessible Boolean
    The Associated resource is accessible or not.
    lastModification String
    Description of the latest modification of the Oracle DB Azure Vault Association resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    oracleDbAzureConnectorId String
    (Updatable) The OCID of the Oracle DB Azure Connector that contains Oracle DB Azure Vault Association resource.
    oracleDbAzureVaultId String

    (Updatable) The OCID of the Oracle DB Azure Vault that contains Oracle DB Azure Vault Association resource.

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

    state String
    The current lifecycle state of the Oracle DB Azure Vault Association resource.
    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 Oracle DB Azure Vault Association resource was created in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated String
    Time when the Oracle DB Azure Vault Association resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'

    Import

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

    $ pulumi import oci:oci/dbmulticloudOracleDbAzureVaultAssociation:DbmulticloudOracleDbAzureVaultAssociation test_oracle_db_azure_vault_association "id"
    

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

    Package Details

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