1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. getDbmulticloudOracleDbAzureKeys
Oracle Cloud Infrastructure v3.11.0 published on Thursday, Nov 13, 2025 by Pulumi
oci logo
Oracle Cloud Infrastructure v3.11.0 published on Thursday, Nov 13, 2025 by Pulumi

    This data source provides the list of Oracle Db Azure Keys in Oracle Cloud Infrastructure Dbmulticloud service.

    Lists all Oracle DB Azure Keys based on the specified filters.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testOracleDbAzureKeys = oci.oci.getDbmulticloudOracleDbAzureKeys({
        compartmentId: compartmentId,
        displayName: oracleDbAzureKeyDisplayName,
        oracleDbAzureKeyId: testOracleDbAzureKey.id,
        oracleDbAzureVaultId: testOracleDbAzureVault.id,
        state: oracleDbAzureKeyState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_oracle_db_azure_keys = oci.oci.get_dbmulticloud_oracle_db_azure_keys(compartment_id=compartment_id,
        display_name=oracle_db_azure_key_display_name,
        oracle_db_azure_key_id=test_oracle_db_azure_key["id"],
        oracle_db_azure_vault_id=test_oracle_db_azure_vault["id"],
        state=oracle_db_azure_key_state)
    
    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.GetDbmulticloudOracleDbAzureKeys(ctx, &oci.GetDbmulticloudOracleDbAzureKeysArgs{
    			CompartmentId:        compartmentId,
    			DisplayName:          pulumi.StringRef(oracleDbAzureKeyDisplayName),
    			OracleDbAzureKeyId:   pulumi.StringRef(testOracleDbAzureKey.Id),
    			OracleDbAzureVaultId: pulumi.StringRef(testOracleDbAzureVault.Id),
    			State:                pulumi.StringRef(oracleDbAzureKeyState),
    		}, nil)
    		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 testOracleDbAzureKeys = Oci.Oci.GetDbmulticloudOracleDbAzureKeys.Invoke(new()
        {
            CompartmentId = compartmentId,
            DisplayName = oracleDbAzureKeyDisplayName,
            OracleDbAzureKeyId = testOracleDbAzureKey.Id,
            OracleDbAzureVaultId = testOracleDbAzureVault.Id,
            State = oracleDbAzureKeyState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.oci.OciFunctions;
    import com.pulumi.oci.oci.inputs.GetDbmulticloudOracleDbAzureKeysArgs;
    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) {
            final var testOracleDbAzureKeys = OciFunctions.getDbmulticloudOracleDbAzureKeys(GetDbmulticloudOracleDbAzureKeysArgs.builder()
                .compartmentId(compartmentId)
                .displayName(oracleDbAzureKeyDisplayName)
                .oracleDbAzureKeyId(testOracleDbAzureKey.id())
                .oracleDbAzureVaultId(testOracleDbAzureVault.id())
                .state(oracleDbAzureKeyState)
                .build());
    
        }
    }
    
    variables:
      testOracleDbAzureKeys:
        fn::invoke:
          function: oci:oci:getDbmulticloudOracleDbAzureKeys
          arguments:
            compartmentId: ${compartmentId}
            displayName: ${oracleDbAzureKeyDisplayName}
            oracleDbAzureKeyId: ${testOracleDbAzureKey.id}
            oracleDbAzureVaultId: ${testOracleDbAzureVault.id}
            state: ${oracleDbAzureKeyState}
    

    Using getDbmulticloudOracleDbAzureKeys

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getDbmulticloudOracleDbAzureKeys(args: GetDbmulticloudOracleDbAzureKeysArgs, opts?: InvokeOptions): Promise<GetDbmulticloudOracleDbAzureKeysResult>
    function getDbmulticloudOracleDbAzureKeysOutput(args: GetDbmulticloudOracleDbAzureKeysOutputArgs, opts?: InvokeOptions): Output<GetDbmulticloudOracleDbAzureKeysResult>
    def get_dbmulticloud_oracle_db_azure_keys(compartment_id: Optional[str] = None,
                                              display_name: Optional[str] = None,
                                              filters: Optional[Sequence[GetDbmulticloudOracleDbAzureKeysFilter]] = None,
                                              oracle_db_azure_key_id: Optional[str] = None,
                                              oracle_db_azure_vault_id: Optional[str] = None,
                                              state: Optional[str] = None,
                                              opts: Optional[InvokeOptions] = None) -> GetDbmulticloudOracleDbAzureKeysResult
    def get_dbmulticloud_oracle_db_azure_keys_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                              display_name: Optional[pulumi.Input[str]] = None,
                                              filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetDbmulticloudOracleDbAzureKeysFilterArgs]]]] = None,
                                              oracle_db_azure_key_id: Optional[pulumi.Input[str]] = None,
                                              oracle_db_azure_vault_id: Optional[pulumi.Input[str]] = None,
                                              state: Optional[pulumi.Input[str]] = None,
                                              opts: Optional[InvokeOptions] = None) -> Output[GetDbmulticloudOracleDbAzureKeysResult]
    func GetDbmulticloudOracleDbAzureKeys(ctx *Context, args *GetDbmulticloudOracleDbAzureKeysArgs, opts ...InvokeOption) (*GetDbmulticloudOracleDbAzureKeysResult, error)
    func GetDbmulticloudOracleDbAzureKeysOutput(ctx *Context, args *GetDbmulticloudOracleDbAzureKeysOutputArgs, opts ...InvokeOption) GetDbmulticloudOracleDbAzureKeysResultOutput

    > Note: This function is named GetDbmulticloudOracleDbAzureKeys in the Go SDK.

    public static class GetDbmulticloudOracleDbAzureKeys 
    {
        public static Task<GetDbmulticloudOracleDbAzureKeysResult> InvokeAsync(GetDbmulticloudOracleDbAzureKeysArgs args, InvokeOptions? opts = null)
        public static Output<GetDbmulticloudOracleDbAzureKeysResult> Invoke(GetDbmulticloudOracleDbAzureKeysInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDbmulticloudOracleDbAzureKeysResult> getDbmulticloudOracleDbAzureKeys(GetDbmulticloudOracleDbAzureKeysArgs args, InvokeOptions options)
    public static Output<GetDbmulticloudOracleDbAzureKeysResult> getDbmulticloudOracleDbAzureKeys(GetDbmulticloudOracleDbAzureKeysArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:oci/getDbmulticloudOracleDbAzureKeys:getDbmulticloudOracleDbAzureKeys
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The ID of the compartment.
    DisplayName string
    A filter to return Oracle DB Azure Vault Keys resources that match the specified display name.
    Filters List<GetDbmulticloudOracleDbAzureKeysFilter>
    OracleDbAzureKeyId string
    A filter to return Oracle DB Azure Vault Keys resource that match the specified Oracle DB Azure Key OCID.
    OracleDbAzureVaultId string
    A filter to return Oracle DB Azure Vault resources that match the specified OCID of the Oracle DB Azure Vault resource.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    CompartmentId string
    The ID of the compartment.
    DisplayName string
    A filter to return Oracle DB Azure Vault Keys resources that match the specified display name.
    Filters []GetDbmulticloudOracleDbAzureKeysFilter
    OracleDbAzureKeyId string
    A filter to return Oracle DB Azure Vault Keys resource that match the specified Oracle DB Azure Key OCID.
    OracleDbAzureVaultId string
    A filter to return Oracle DB Azure Vault resources that match the specified OCID of the Oracle DB Azure Vault resource.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId String
    The ID of the compartment.
    displayName String
    A filter to return Oracle DB Azure Vault Keys resources that match the specified display name.
    filters List<GetDbmulticloudOracleDbAzureKeysFilter>
    oracleDbAzureKeyId String
    A filter to return Oracle DB Azure Vault Keys resource that match the specified Oracle DB Azure Key OCID.
    oracleDbAzureVaultId String
    A filter to return Oracle DB Azure Vault resources that match the specified OCID of the Oracle DB Azure Vault resource.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId string
    The ID of the compartment.
    displayName string
    A filter to return Oracle DB Azure Vault Keys resources that match the specified display name.
    filters GetDbmulticloudOracleDbAzureKeysFilter[]
    oracleDbAzureKeyId string
    A filter to return Oracle DB Azure Vault Keys resource that match the specified Oracle DB Azure Key OCID.
    oracleDbAzureVaultId string
    A filter to return Oracle DB Azure Vault resources that match the specified OCID of the Oracle DB Azure Vault resource.
    state string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartment_id str
    The ID of the compartment.
    display_name str
    A filter to return Oracle DB Azure Vault Keys resources that match the specified display name.
    filters Sequence[GetDbmulticloudOracleDbAzureKeysFilter]
    oracle_db_azure_key_id str
    A filter to return Oracle DB Azure Vault Keys resource that match the specified Oracle DB Azure Key OCID.
    oracle_db_azure_vault_id str
    A filter to return Oracle DB Azure Vault resources that match the specified OCID of the Oracle DB Azure Vault resource.
    state str
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId String
    The ID of the compartment.
    displayName String
    A filter to return Oracle DB Azure Vault Keys resources that match the specified display name.
    filters List<Property Map>
    oracleDbAzureKeyId String
    A filter to return Oracle DB Azure Vault Keys resource that match the specified Oracle DB Azure Key OCID.
    oracleDbAzureVaultId String
    A filter to return Oracle DB Azure Vault resources that match the specified OCID of the Oracle DB Azure Vault resource.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.

    getDbmulticloudOracleDbAzureKeys Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment that contains Oracle DB Azure Vault Key resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    OracleDbAzureKeySummaryCollections List<GetDbmulticloudOracleDbAzureKeysOracleDbAzureKeySummaryCollection>
    The list of oracle_db_azure_key_summary_collection.
    DisplayName string
    Oracle DB Azure Vault Key resource name.
    Filters List<GetDbmulticloudOracleDbAzureKeysFilter>
    OracleDbAzureKeyId string
    OracleDbAzureVaultId string
    The OCID of the Oracle DB Azure Vault resource.
    State string
    The current lifecycle state of the Oracle DB Azure Vault Key resource.
    CompartmentId string
    The OCID of the compartment that contains Oracle DB Azure Vault Key resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    OracleDbAzureKeySummaryCollections []GetDbmulticloudOracleDbAzureKeysOracleDbAzureKeySummaryCollection
    The list of oracle_db_azure_key_summary_collection.
    DisplayName string
    Oracle DB Azure Vault Key resource name.
    Filters []GetDbmulticloudOracleDbAzureKeysFilter
    OracleDbAzureKeyId string
    OracleDbAzureVaultId string
    The OCID of the Oracle DB Azure Vault resource.
    State string
    The current lifecycle state of the Oracle DB Azure Vault Key resource.
    compartmentId String
    The OCID of the compartment that contains Oracle DB Azure Vault Key resource.
    id String
    The provider-assigned unique ID for this managed resource.
    oracleDbAzureKeySummaryCollections List<GetDbmulticloudOracleDbAzureKeysOracleDbAzureKeySummaryCollection>
    The list of oracle_db_azure_key_summary_collection.
    displayName String
    Oracle DB Azure Vault Key resource name.
    filters List<GetDbmulticloudOracleDbAzureKeysFilter>
    oracleDbAzureKeyId String
    oracleDbAzureVaultId String
    The OCID of the Oracle DB Azure Vault resource.
    state String
    The current lifecycle state of the Oracle DB Azure Vault Key resource.
    compartmentId string
    The OCID of the compartment that contains Oracle DB Azure Vault Key resource.
    id string
    The provider-assigned unique ID for this managed resource.
    oracleDbAzureKeySummaryCollections GetDbmulticloudOracleDbAzureKeysOracleDbAzureKeySummaryCollection[]
    The list of oracle_db_azure_key_summary_collection.
    displayName string
    Oracle DB Azure Vault Key resource name.
    filters GetDbmulticloudOracleDbAzureKeysFilter[]
    oracleDbAzureKeyId string
    oracleDbAzureVaultId string
    The OCID of the Oracle DB Azure Vault resource.
    state string
    The current lifecycle state of the Oracle DB Azure Vault Key resource.
    compartment_id str
    The OCID of the compartment that contains Oracle DB Azure Vault Key resource.
    id str
    The provider-assigned unique ID for this managed resource.
    oracle_db_azure_key_summary_collections Sequence[GetDbmulticloudOracleDbAzureKeysOracleDbAzureKeySummaryCollection]
    The list of oracle_db_azure_key_summary_collection.
    display_name str
    Oracle DB Azure Vault Key resource name.
    filters Sequence[GetDbmulticloudOracleDbAzureKeysFilter]
    oracle_db_azure_key_id str
    oracle_db_azure_vault_id str
    The OCID of the Oracle DB Azure Vault resource.
    state str
    The current lifecycle state of the Oracle DB Azure Vault Key resource.
    compartmentId String
    The OCID of the compartment that contains Oracle DB Azure Vault Key resource.
    id String
    The provider-assigned unique ID for this managed resource.
    oracleDbAzureKeySummaryCollections List<Property Map>
    The list of oracle_db_azure_key_summary_collection.
    displayName String
    Oracle DB Azure Vault Key resource name.
    filters List<Property Map>
    oracleDbAzureKeyId String
    oracleDbAzureVaultId String
    The OCID of the Oracle DB Azure Vault resource.
    state String
    The current lifecycle state of the Oracle DB Azure Vault Key resource.

    Supporting Types

    GetDbmulticloudOracleDbAzureKeysFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetDbmulticloudOracleDbAzureKeysOracleDbAzureKeySummaryCollection

    GetDbmulticloudOracleDbAzureKeysOracleDbAzureKeySummaryCollectionItem

    AzureKeyId string
    The ID of the Azure Key resource.
    CompartmentId string
    The ID of the compartment.
    DefinedTags Dictionary<string, string>
    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
    A filter to return Oracle DB Azure Vault Keys resources that match the specified display name.
    FreeformTags Dictionary<string, string>
    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"}
    Id string
    The OCID of the Oracle DB Azure Vault Key resource.
    KeyProperties Dictionary<string, string>
    Key properties
    LastModification string
    Description of the latest modification of the Oracle DB Azure Vault Key resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    OracleDbAzureVaultId string
    A filter to return Oracle DB Azure Vault resources that match the specified OCID of the Oracle DB Azure Vault resource.
    ResourceType string
    Key Resource type.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    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 Key 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 Key resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    AzureKeyId string
    The ID of the Azure Key resource.
    CompartmentId string
    The ID of the compartment.
    DefinedTags map[string]string
    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
    A filter to return Oracle DB Azure Vault Keys resources that match the specified display name.
    FreeformTags map[string]string
    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"}
    Id string
    The OCID of the Oracle DB Azure Vault Key resource.
    KeyProperties map[string]string
    Key properties
    LastModification string
    Description of the latest modification of the Oracle DB Azure Vault Key resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    OracleDbAzureVaultId string
    A filter to return Oracle DB Azure Vault resources that match the specified OCID of the Oracle DB Azure Vault resource.
    ResourceType string
    Key Resource type.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    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 Key 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 Key resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    azureKeyId String
    The ID of the Azure Key resource.
    compartmentId String
    The ID of the compartment.
    definedTags Map<String,String>
    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
    A filter to return Oracle DB Azure Vault Keys resources that match the specified display name.
    freeformTags Map<String,String>
    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"}
    id String
    The OCID of the Oracle DB Azure Vault Key resource.
    keyProperties Map<String,String>
    Key properties
    lastModification String
    Description of the latest modification of the Oracle DB Azure Vault Key resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    oracleDbAzureVaultId String
    A filter to return Oracle DB Azure Vault resources that match the specified OCID of the Oracle DB Azure Vault resource.
    resourceType String
    Key Resource type.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    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 Key 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 Key resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    azureKeyId string
    The ID of the Azure Key resource.
    compartmentId string
    The ID of the compartment.
    definedTags {[key: string]: string}
    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
    A filter to return Oracle DB Azure Vault Keys resources that match the specified display name.
    freeformTags {[key: string]: string}
    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"}
    id string
    The OCID of the Oracle DB Azure Vault Key resource.
    keyProperties {[key: string]: string}
    Key properties
    lastModification string
    Description of the latest modification of the Oracle DB Azure Vault Key resource.
    lifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    oracleDbAzureVaultId string
    A filter to return Oracle DB Azure Vault resources that match the specified OCID of the Oracle DB Azure Vault resource.
    resourceType string
    Key Resource type.
    state string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    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 Key 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 Key resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    azure_key_id str
    The ID of the Azure Key resource.
    compartment_id str
    The ID of the compartment.
    defined_tags Mapping[str, str]
    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
    A filter to return Oracle DB Azure Vault Keys resources that match the specified display name.
    freeform_tags Mapping[str, str]
    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"}
    id str
    The OCID of the Oracle DB Azure Vault Key resource.
    key_properties Mapping[str, str]
    Key properties
    last_modification str
    Description of the latest modification of the Oracle DB Azure Vault Key resource.
    lifecycle_state_details str
    Description of the current lifecycle state in more detail.
    oracle_db_azure_vault_id str
    A filter to return Oracle DB Azure Vault resources that match the specified OCID of the Oracle DB Azure Vault resource.
    resource_type str
    Key Resource type.
    state str
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    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 Key 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 Key resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    azureKeyId String
    The ID of the Azure Key resource.
    compartmentId String
    The ID of the compartment.
    definedTags Map<String>
    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
    A filter to return Oracle DB Azure Vault Keys resources that match the specified display name.
    freeformTags Map<String>
    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"}
    id String
    The OCID of the Oracle DB Azure Vault Key resource.
    keyProperties Map<String>
    Key properties
    lastModification String
    Description of the latest modification of the Oracle DB Azure Vault Key resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    oracleDbAzureVaultId String
    A filter to return Oracle DB Azure Vault resources that match the specified OCID of the Oracle DB Azure Vault resource.
    resourceType String
    Key Resource type.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    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 Key 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 Key resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'

    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.0 published on Thursday, Nov 13, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate