1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. getDbmulticloudOracleDbGcpKeyRings
Oracle Cloud Infrastructure v3.16.0 published on Wednesday, Jan 28, 2026 by Pulumi
oci logo
Oracle Cloud Infrastructure v3.16.0 published on Wednesday, Jan 28, 2026 by Pulumi

    This data source provides the list of Oracle Db Gcp Key Rings in Oracle Cloud Infrastructure Dbmulticloud service.

    Lists the all DB GCP Key Rings based on filters.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testOracleDbGcpKeyRings = oci.oci.getDbmulticloudOracleDbGcpKeyRings({
        compartmentId: compartmentId,
        displayName: oracleDbGcpKeyRingDisplayName,
        oracleDbGcpConnectorId: testOracleDbGcpConnector.id,
        oracleDbGcpKeyRingId: testOracleDbGcpKeyRing.id,
        state: oracleDbGcpKeyRingState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_oracle_db_gcp_key_rings = oci.oci.get_dbmulticloud_oracle_db_gcp_key_rings(compartment_id=compartment_id,
        display_name=oracle_db_gcp_key_ring_display_name,
        oracle_db_gcp_connector_id=test_oracle_db_gcp_connector["id"],
        oracle_db_gcp_key_ring_id=test_oracle_db_gcp_key_ring["id"],
        state=oracle_db_gcp_key_ring_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.GetDbmulticloudOracleDbGcpKeyRings(ctx, &oci.GetDbmulticloudOracleDbGcpKeyRingsArgs{
    			CompartmentId:          compartmentId,
    			DisplayName:            pulumi.StringRef(oracleDbGcpKeyRingDisplayName),
    			OracleDbGcpConnectorId: pulumi.StringRef(testOracleDbGcpConnector.Id),
    			OracleDbGcpKeyRingId:   pulumi.StringRef(testOracleDbGcpKeyRing.Id),
    			State:                  pulumi.StringRef(oracleDbGcpKeyRingState),
    		}, 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 testOracleDbGcpKeyRings = Oci.Oci.GetDbmulticloudOracleDbGcpKeyRings.Invoke(new()
        {
            CompartmentId = compartmentId,
            DisplayName = oracleDbGcpKeyRingDisplayName,
            OracleDbGcpConnectorId = testOracleDbGcpConnector.Id,
            OracleDbGcpKeyRingId = testOracleDbGcpKeyRing.Id,
            State = oracleDbGcpKeyRingState,
        });
    
    });
    
    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.GetDbmulticloudOracleDbGcpKeyRingsArgs;
    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 testOracleDbGcpKeyRings = OciFunctions.getDbmulticloudOracleDbGcpKeyRings(GetDbmulticloudOracleDbGcpKeyRingsArgs.builder()
                .compartmentId(compartmentId)
                .displayName(oracleDbGcpKeyRingDisplayName)
                .oracleDbGcpConnectorId(testOracleDbGcpConnector.id())
                .oracleDbGcpKeyRingId(testOracleDbGcpKeyRing.id())
                .state(oracleDbGcpKeyRingState)
                .build());
    
        }
    }
    
    variables:
      testOracleDbGcpKeyRings:
        fn::invoke:
          function: oci:oci:getDbmulticloudOracleDbGcpKeyRings
          arguments:
            compartmentId: ${compartmentId}
            displayName: ${oracleDbGcpKeyRingDisplayName}
            oracleDbGcpConnectorId: ${testOracleDbGcpConnector.id}
            oracleDbGcpKeyRingId: ${testOracleDbGcpKeyRing.id}
            state: ${oracleDbGcpKeyRingState}
    

    Using getDbmulticloudOracleDbGcpKeyRings

    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 getDbmulticloudOracleDbGcpKeyRings(args: GetDbmulticloudOracleDbGcpKeyRingsArgs, opts?: InvokeOptions): Promise<GetDbmulticloudOracleDbGcpKeyRingsResult>
    function getDbmulticloudOracleDbGcpKeyRingsOutput(args: GetDbmulticloudOracleDbGcpKeyRingsOutputArgs, opts?: InvokeOptions): Output<GetDbmulticloudOracleDbGcpKeyRingsResult>
    def get_dbmulticloud_oracle_db_gcp_key_rings(compartment_id: Optional[str] = None,
                                                 display_name: Optional[str] = None,
                                                 filters: Optional[Sequence[GetDbmulticloudOracleDbGcpKeyRingsFilter]] = None,
                                                 oracle_db_gcp_connector_id: Optional[str] = None,
                                                 oracle_db_gcp_key_ring_id: Optional[str] = None,
                                                 state: Optional[str] = None,
                                                 opts: Optional[InvokeOptions] = None) -> GetDbmulticloudOracleDbGcpKeyRingsResult
    def get_dbmulticloud_oracle_db_gcp_key_rings_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                                 display_name: Optional[pulumi.Input[str]] = None,
                                                 filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetDbmulticloudOracleDbGcpKeyRingsFilterArgs]]]] = None,
                                                 oracle_db_gcp_connector_id: Optional[pulumi.Input[str]] = None,
                                                 oracle_db_gcp_key_ring_id: Optional[pulumi.Input[str]] = None,
                                                 state: Optional[pulumi.Input[str]] = None,
                                                 opts: Optional[InvokeOptions] = None) -> Output[GetDbmulticloudOracleDbGcpKeyRingsResult]
    func GetDbmulticloudOracleDbGcpKeyRings(ctx *Context, args *GetDbmulticloudOracleDbGcpKeyRingsArgs, opts ...InvokeOption) (*GetDbmulticloudOracleDbGcpKeyRingsResult, error)
    func GetDbmulticloudOracleDbGcpKeyRingsOutput(ctx *Context, args *GetDbmulticloudOracleDbGcpKeyRingsOutputArgs, opts ...InvokeOption) GetDbmulticloudOracleDbGcpKeyRingsResultOutput

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

    public static class GetDbmulticloudOracleDbGcpKeyRings 
    {
        public static Task<GetDbmulticloudOracleDbGcpKeyRingsResult> InvokeAsync(GetDbmulticloudOracleDbGcpKeyRingsArgs args, InvokeOptions? opts = null)
        public static Output<GetDbmulticloudOracleDbGcpKeyRingsResult> Invoke(GetDbmulticloudOracleDbGcpKeyRingsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDbmulticloudOracleDbGcpKeyRingsResult> getDbmulticloudOracleDbGcpKeyRings(GetDbmulticloudOracleDbGcpKeyRingsArgs args, InvokeOptions options)
    public static Output<GetDbmulticloudOracleDbGcpKeyRingsResult> getDbmulticloudOracleDbGcpKeyRings(GetDbmulticloudOracleDbGcpKeyRingsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:oci/getDbmulticloudOracleDbGcpKeyRings:getDbmulticloudOracleDbGcpKeyRings
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The ID of the compartment.
    DisplayName string
    A filter to return Oracle DB GCP Key Ring resources that match the specified display name.
    Filters List<GetDbmulticloudOracleDbGcpKeyRingsFilter>
    OracleDbGcpConnectorId string
    A filter to return Oracle DB GCP Identity Connector resources that match the specified resource OCID.
    OracleDbGcpKeyRingId string
    A filter to return Oracle DB GCP Key Rings.
    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 GCP Key Ring resources that match the specified display name.
    Filters []GetDbmulticloudOracleDbGcpKeyRingsFilter
    OracleDbGcpConnectorId string
    A filter to return Oracle DB GCP Identity Connector resources that match the specified resource OCID.
    OracleDbGcpKeyRingId string
    A filter to return Oracle DB GCP Key Rings.
    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 GCP Key Ring resources that match the specified display name.
    filters List<GetDbmulticloudOracleDbGcpKeyRingsFilter>
    oracleDbGcpConnectorId String
    A filter to return Oracle DB GCP Identity Connector resources that match the specified resource OCID.
    oracleDbGcpKeyRingId String
    A filter to return Oracle DB GCP Key Rings.
    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 GCP Key Ring resources that match the specified display name.
    filters GetDbmulticloudOracleDbGcpKeyRingsFilter[]
    oracleDbGcpConnectorId string
    A filter to return Oracle DB GCP Identity Connector resources that match the specified resource OCID.
    oracleDbGcpKeyRingId string
    A filter to return Oracle DB GCP Key Rings.
    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 GCP Key Ring resources that match the specified display name.
    filters Sequence[GetDbmulticloudOracleDbGcpKeyRingsFilter]
    oracle_db_gcp_connector_id str
    A filter to return Oracle DB GCP Identity Connector resources that match the specified resource OCID.
    oracle_db_gcp_key_ring_id str
    A filter to return Oracle DB GCP Key Rings.
    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 GCP Key Ring resources that match the specified display name.
    filters List<Property Map>
    oracleDbGcpConnectorId String
    A filter to return Oracle DB GCP Identity Connector resources that match the specified resource OCID.
    oracleDbGcpKeyRingId String
    A filter to return Oracle DB GCP Key Rings.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.

    getDbmulticloudOracleDbGcpKeyRings Result

    The following output properties are available:

    CompartmentId string
    The compartment OCID where the Oracle DB GCP Key Ring resource resides.
    Id string
    The provider-assigned unique ID for this managed resource.
    OracleDbGcpKeyRingSummaryCollections List<GetDbmulticloudOracleDbGcpKeyRingsOracleDbGcpKeyRingSummaryCollection>
    The list of oracle_db_gcp_key_ring_summary_collection.
    DisplayName string
    Display name of DB GCP Key Ring resource.
    Filters List<GetDbmulticloudOracleDbGcpKeyRingsFilter>
    OracleDbGcpConnectorId string
    OracleDbGcpKeyRingId string
    State string
    The lifecycle state of the Oracle DB GCP Key Ring resource.
    CompartmentId string
    The compartment OCID where the Oracle DB GCP Key Ring resource resides.
    Id string
    The provider-assigned unique ID for this managed resource.
    OracleDbGcpKeyRingSummaryCollections []GetDbmulticloudOracleDbGcpKeyRingsOracleDbGcpKeyRingSummaryCollection
    The list of oracle_db_gcp_key_ring_summary_collection.
    DisplayName string
    Display name of DB GCP Key Ring resource.
    Filters []GetDbmulticloudOracleDbGcpKeyRingsFilter
    OracleDbGcpConnectorId string
    OracleDbGcpKeyRingId string
    State string
    The lifecycle state of the Oracle DB GCP Key Ring resource.
    compartmentId String
    The compartment OCID where the Oracle DB GCP Key Ring resource resides.
    id String
    The provider-assigned unique ID for this managed resource.
    oracleDbGcpKeyRingSummaryCollections List<GetDbmulticloudOracleDbGcpKeyRingsOracleDbGcpKeyRingSummaryCollection>
    The list of oracle_db_gcp_key_ring_summary_collection.
    displayName String
    Display name of DB GCP Key Ring resource.
    filters List<GetDbmulticloudOracleDbGcpKeyRingsFilter>
    oracleDbGcpConnectorId String
    oracleDbGcpKeyRingId String
    state String
    The lifecycle state of the Oracle DB GCP Key Ring resource.
    compartmentId string
    The compartment OCID where the Oracle DB GCP Key Ring resource resides.
    id string
    The provider-assigned unique ID for this managed resource.
    oracleDbGcpKeyRingSummaryCollections GetDbmulticloudOracleDbGcpKeyRingsOracleDbGcpKeyRingSummaryCollection[]
    The list of oracle_db_gcp_key_ring_summary_collection.
    displayName string
    Display name of DB GCP Key Ring resource.
    filters GetDbmulticloudOracleDbGcpKeyRingsFilter[]
    oracleDbGcpConnectorId string
    oracleDbGcpKeyRingId string
    state string
    The lifecycle state of the Oracle DB GCP Key Ring resource.
    compartment_id str
    The compartment OCID where the Oracle DB GCP Key Ring resource resides.
    id str
    The provider-assigned unique ID for this managed resource.
    oracle_db_gcp_key_ring_summary_collections Sequence[GetDbmulticloudOracleDbGcpKeyRingsOracleDbGcpKeyRingSummaryCollection]
    The list of oracle_db_gcp_key_ring_summary_collection.
    display_name str
    Display name of DB GCP Key Ring resource.
    filters Sequence[GetDbmulticloudOracleDbGcpKeyRingsFilter]
    oracle_db_gcp_connector_id str
    oracle_db_gcp_key_ring_id str
    state str
    The lifecycle state of the Oracle DB GCP Key Ring resource.
    compartmentId String
    The compartment OCID where the Oracle DB GCP Key Ring resource resides.
    id String
    The provider-assigned unique ID for this managed resource.
    oracleDbGcpKeyRingSummaryCollections List<Property Map>
    The list of oracle_db_gcp_key_ring_summary_collection.
    displayName String
    Display name of DB GCP Key Ring resource.
    filters List<Property Map>
    oracleDbGcpConnectorId String
    oracleDbGcpKeyRingId String
    state String
    The lifecycle state of the Oracle DB GCP Key Ring resource.

    Supporting Types

    GetDbmulticloudOracleDbGcpKeyRingsFilter

    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

    GetDbmulticloudOracleDbGcpKeyRingsOracleDbGcpKeyRingSummaryCollection

    GetDbmulticloudOracleDbGcpKeyRingsOracleDbGcpKeyRingSummaryCollectionItem

    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 GCP Key Ring 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"}
    GcpKeyRingId string
    GCP Key Ring ID.
    Id string
    The OCID of the DB GCP Key Ring resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    Location string
    Location of the GCP Key Ring resource.
    OracleDbConnectorId string
    The OCID of the compartment where the Oracle DB GCP Identity Connector resource resides.
    Properties Dictionary<string, string>
    Oracle DB GCP Key Ring resource's properties.
    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 DB GCP Key Ring resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    TimeUpdated string
    Time when the DB GCP Key Ring resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    Type string
    Oracle DB GCP Key Ring resource Type.
    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 GCP Key Ring 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"}
    GcpKeyRingId string
    GCP Key Ring ID.
    Id string
    The OCID of the DB GCP Key Ring resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    Location string
    Location of the GCP Key Ring resource.
    OracleDbConnectorId string
    The OCID of the compartment where the Oracle DB GCP Identity Connector resource resides.
    Properties map[string]string
    Oracle DB GCP Key Ring resource's properties.
    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 DB GCP Key Ring resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    TimeUpdated string
    Time when the DB GCP Key Ring resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    Type string
    Oracle DB GCP Key Ring resource Type.
    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 GCP Key Ring 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"}
    gcpKeyRingId String
    GCP Key Ring ID.
    id String
    The OCID of the DB GCP Key Ring resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    location String
    Location of the GCP Key Ring resource.
    oracleDbConnectorId String
    The OCID of the compartment where the Oracle DB GCP Identity Connector resource resides.
    properties Map<String,String>
    Oracle DB GCP Key Ring resource's properties.
    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 DB GCP Key Ring resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    timeUpdated String
    Time when the DB GCP Key Ring resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    type String
    Oracle DB GCP Key Ring resource Type.
    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 GCP Key Ring 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"}
    gcpKeyRingId string
    GCP Key Ring ID.
    id string
    The OCID of the DB GCP Key Ring resource.
    lifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    location string
    Location of the GCP Key Ring resource.
    oracleDbConnectorId string
    The OCID of the compartment where the Oracle DB GCP Identity Connector resource resides.
    properties {[key: string]: string}
    Oracle DB GCP Key Ring resource's properties.
    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 DB GCP Key Ring resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    timeUpdated string
    Time when the DB GCP Key Ring resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    type string
    Oracle DB GCP Key Ring resource Type.
    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 GCP Key Ring 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"}
    gcp_key_ring_id str
    GCP Key Ring ID.
    id str
    The OCID of the DB GCP Key Ring resource.
    lifecycle_state_details str
    Description of the current lifecycle state in more detail.
    location str
    Location of the GCP Key Ring resource.
    oracle_db_connector_id str
    The OCID of the compartment where the Oracle DB GCP Identity Connector resource resides.
    properties Mapping[str, str]
    Oracle DB GCP Key Ring resource's properties.
    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 DB GCP Key Ring resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    time_updated str
    Time when the DB GCP Key Ring resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    type str
    Oracle DB GCP Key Ring resource Type.
    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 GCP Key Ring 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"}
    gcpKeyRingId String
    GCP Key Ring ID.
    id String
    The OCID of the DB GCP Key Ring resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    location String
    Location of the GCP Key Ring resource.
    oracleDbConnectorId String
    The OCID of the compartment where the Oracle DB GCP Identity Connector resource resides.
    properties Map<String>
    Oracle DB GCP Key Ring resource's properties.
    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 DB GCP Key Ring resource was created in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    timeUpdated String
    Time when the DB GCP Key Ring resource was last modified, expressed in RFC 3339 timestamp format, e.g. '2020-05-23T21:10:29.600Z'
    type String
    Oracle DB GCP Key Ring resource Type.

    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.16.0 published on Wednesday, Jan 28, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate