1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. DbmulticloudOracleDbGcpIdentityConnector
Oracle Cloud Infrastructure v3.14.0 published on Friday, Jan 16, 2026 by Pulumi
oci logo
Oracle Cloud Infrastructure v3.14.0 published on Friday, Jan 16, 2026 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testOracleDbGcpIdentityConnector = new oci.oci.DbmulticloudOracleDbGcpIdentityConnector("test_oracle_db_gcp_identity_connector", {
        compartmentId: compartmentId,
        displayName: oracleDbGcpIdentityConnectorDisplayName,
        gcpLocation: oracleDbGcpIdentityConnectorGcpLocation,
        gcpResourceServiceAgentId: testAgent.id,
        gcpWorkloadIdentityPoolId: testPool.id,
        gcpWorkloadIdentityProviderId: testIdentityProvider.id,
        issuerUrl: oracleDbGcpIdentityConnectorIssuerUrl,
        projectId: testProject.id,
        resourceId: testResource.id,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        freeformTags: {
            Department: "Finance",
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_oracle_db_gcp_identity_connector = oci.oci.DbmulticloudOracleDbGcpIdentityConnector("test_oracle_db_gcp_identity_connector",
        compartment_id=compartment_id,
        display_name=oracle_db_gcp_identity_connector_display_name,
        gcp_location=oracle_db_gcp_identity_connector_gcp_location,
        gcp_resource_service_agent_id=test_agent["id"],
        gcp_workload_identity_pool_id=test_pool["id"],
        gcp_workload_identity_provider_id=test_identity_provider["id"],
        issuer_url=oracle_db_gcp_identity_connector_issuer_url,
        project_id=test_project["id"],
        resource_id=test_resource["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.NewDbmulticloudOracleDbGcpIdentityConnector(ctx, "test_oracle_db_gcp_identity_connector", &oci.DbmulticloudOracleDbGcpIdentityConnectorArgs{
    			CompartmentId:                 pulumi.Any(compartmentId),
    			DisplayName:                   pulumi.Any(oracleDbGcpIdentityConnectorDisplayName),
    			GcpLocation:                   pulumi.Any(oracleDbGcpIdentityConnectorGcpLocation),
    			GcpResourceServiceAgentId:     pulumi.Any(testAgent.Id),
    			GcpWorkloadIdentityPoolId:     pulumi.Any(testPool.Id),
    			GcpWorkloadIdentityProviderId: pulumi.Any(testIdentityProvider.Id),
    			IssuerUrl:                     pulumi.Any(oracleDbGcpIdentityConnectorIssuerUrl),
    			ProjectId:                     pulumi.Any(testProject.Id),
    			ResourceId:                    pulumi.Any(testResource.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 testOracleDbGcpIdentityConnector = new Oci.Oci.DbmulticloudOracleDbGcpIdentityConnector("test_oracle_db_gcp_identity_connector", new()
        {
            CompartmentId = compartmentId,
            DisplayName = oracleDbGcpIdentityConnectorDisplayName,
            GcpLocation = oracleDbGcpIdentityConnectorGcpLocation,
            GcpResourceServiceAgentId = testAgent.Id,
            GcpWorkloadIdentityPoolId = testPool.Id,
            GcpWorkloadIdentityProviderId = testIdentityProvider.Id,
            IssuerUrl = oracleDbGcpIdentityConnectorIssuerUrl,
            ProjectId = testProject.Id,
            ResourceId = testResource.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.DbmulticloudOracleDbGcpIdentityConnector;
    import com.pulumi.oci.oci.DbmulticloudOracleDbGcpIdentityConnectorArgs;
    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 testOracleDbGcpIdentityConnector = new DbmulticloudOracleDbGcpIdentityConnector("testOracleDbGcpIdentityConnector", DbmulticloudOracleDbGcpIdentityConnectorArgs.builder()
                .compartmentId(compartmentId)
                .displayName(oracleDbGcpIdentityConnectorDisplayName)
                .gcpLocation(oracleDbGcpIdentityConnectorGcpLocation)
                .gcpResourceServiceAgentId(testAgent.id())
                .gcpWorkloadIdentityPoolId(testPool.id())
                .gcpWorkloadIdentityProviderId(testIdentityProvider.id())
                .issuerUrl(oracleDbGcpIdentityConnectorIssuerUrl)
                .projectId(testProject.id())
                .resourceId(testResource.id())
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .freeformTags(Map.of("Department", "Finance"))
                .build());
    
        }
    }
    
    resources:
      testOracleDbGcpIdentityConnector:
        type: oci:oci:DbmulticloudOracleDbGcpIdentityConnector
        name: test_oracle_db_gcp_identity_connector
        properties:
          compartmentId: ${compartmentId}
          displayName: ${oracleDbGcpIdentityConnectorDisplayName}
          gcpLocation: ${oracleDbGcpIdentityConnectorGcpLocation}
          gcpResourceServiceAgentId: ${testAgent.id}
          gcpWorkloadIdentityPoolId: ${testPool.id}
          gcpWorkloadIdentityProviderId: ${testIdentityProvider.id}
          issuerUrl: ${oracleDbGcpIdentityConnectorIssuerUrl}
          projectId: ${testProject.id}
          resourceId: ${testResource.id}
          definedTags:
            Operations.CostCenter: '42'
          freeformTags:
            Department: Finance
    

    Create DbmulticloudOracleDbGcpIdentityConnector Resource

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

    Constructor syntax

    new DbmulticloudOracleDbGcpIdentityConnector(name: string, args: DbmulticloudOracleDbGcpIdentityConnectorArgs, opts?: CustomResourceOptions);
    @overload
    def DbmulticloudOracleDbGcpIdentityConnector(resource_name: str,
                                                 args: DbmulticloudOracleDbGcpIdentityConnectorArgs,
                                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def DbmulticloudOracleDbGcpIdentityConnector(resource_name: str,
                                                 opts: Optional[ResourceOptions] = None,
                                                 compartment_id: Optional[str] = None,
                                                 display_name: Optional[str] = None,
                                                 gcp_location: Optional[str] = None,
                                                 gcp_resource_service_agent_id: Optional[str] = None,
                                                 gcp_workload_identity_pool_id: Optional[str] = None,
                                                 gcp_workload_identity_provider_id: Optional[str] = None,
                                                 issuer_url: Optional[str] = None,
                                                 project_id: Optional[str] = None,
                                                 resource_id: Optional[str] = None,
                                                 defined_tags: Optional[Mapping[str, str]] = None,
                                                 freeform_tags: Optional[Mapping[str, str]] = None)
    func NewDbmulticloudOracleDbGcpIdentityConnector(ctx *Context, name string, args DbmulticloudOracleDbGcpIdentityConnectorArgs, opts ...ResourceOption) (*DbmulticloudOracleDbGcpIdentityConnector, error)
    public DbmulticloudOracleDbGcpIdentityConnector(string name, DbmulticloudOracleDbGcpIdentityConnectorArgs args, CustomResourceOptions? opts = null)
    public DbmulticloudOracleDbGcpIdentityConnector(String name, DbmulticloudOracleDbGcpIdentityConnectorArgs args)
    public DbmulticloudOracleDbGcpIdentityConnector(String name, DbmulticloudOracleDbGcpIdentityConnectorArgs args, CustomResourceOptions options)
    
    type: oci:oci:DbmulticloudOracleDbGcpIdentityConnector
    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 DbmulticloudOracleDbGcpIdentityConnectorArgs
    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 DbmulticloudOracleDbGcpIdentityConnectorArgs
    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 DbmulticloudOracleDbGcpIdentityConnectorArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DbmulticloudOracleDbGcpIdentityConnectorArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DbmulticloudOracleDbGcpIdentityConnectorArgs
    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 dbmulticloudOracleDbGcpIdentityConnectorResource = new Oci.Oci.DbmulticloudOracleDbGcpIdentityConnector("dbmulticloudOracleDbGcpIdentityConnectorResource", new()
    {
        CompartmentId = "string",
        DisplayName = "string",
        GcpLocation = "string",
        GcpResourceServiceAgentId = "string",
        GcpWorkloadIdentityPoolId = "string",
        GcpWorkloadIdentityProviderId = "string",
        IssuerUrl = "string",
        ProjectId = "string",
        ResourceId = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        FreeformTags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := oci.NewDbmulticloudOracleDbGcpIdentityConnector(ctx, "dbmulticloudOracleDbGcpIdentityConnectorResource", &oci.DbmulticloudOracleDbGcpIdentityConnectorArgs{
    	CompartmentId:                 pulumi.String("string"),
    	DisplayName:                   pulumi.String("string"),
    	GcpLocation:                   pulumi.String("string"),
    	GcpResourceServiceAgentId:     pulumi.String("string"),
    	GcpWorkloadIdentityPoolId:     pulumi.String("string"),
    	GcpWorkloadIdentityProviderId: pulumi.String("string"),
    	IssuerUrl:                     pulumi.String("string"),
    	ProjectId:                     pulumi.String("string"),
    	ResourceId:                    pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var dbmulticloudOracleDbGcpIdentityConnectorResource = new DbmulticloudOracleDbGcpIdentityConnector("dbmulticloudOracleDbGcpIdentityConnectorResource", DbmulticloudOracleDbGcpIdentityConnectorArgs.builder()
        .compartmentId("string")
        .displayName("string")
        .gcpLocation("string")
        .gcpResourceServiceAgentId("string")
        .gcpWorkloadIdentityPoolId("string")
        .gcpWorkloadIdentityProviderId("string")
        .issuerUrl("string")
        .projectId("string")
        .resourceId("string")
        .definedTags(Map.of("string", "string"))
        .freeformTags(Map.of("string", "string"))
        .build());
    
    dbmulticloud_oracle_db_gcp_identity_connector_resource = oci.oci.DbmulticloudOracleDbGcpIdentityConnector("dbmulticloudOracleDbGcpIdentityConnectorResource",
        compartment_id="string",
        display_name="string",
        gcp_location="string",
        gcp_resource_service_agent_id="string",
        gcp_workload_identity_pool_id="string",
        gcp_workload_identity_provider_id="string",
        issuer_url="string",
        project_id="string",
        resource_id="string",
        defined_tags={
            "string": "string",
        },
        freeform_tags={
            "string": "string",
        })
    
    const dbmulticloudOracleDbGcpIdentityConnectorResource = new oci.oci.DbmulticloudOracleDbGcpIdentityConnector("dbmulticloudOracleDbGcpIdentityConnectorResource", {
        compartmentId: "string",
        displayName: "string",
        gcpLocation: "string",
        gcpResourceServiceAgentId: "string",
        gcpWorkloadIdentityPoolId: "string",
        gcpWorkloadIdentityProviderId: "string",
        issuerUrl: "string",
        projectId: "string",
        resourceId: "string",
        definedTags: {
            string: "string",
        },
        freeformTags: {
            string: "string",
        },
    });
    
    type: oci:oci:DbmulticloudOracleDbGcpIdentityConnector
    properties:
        compartmentId: string
        definedTags:
            string: string
        displayName: string
        freeformTags:
            string: string
        gcpLocation: string
        gcpResourceServiceAgentId: string
        gcpWorkloadIdentityPoolId: string
        gcpWorkloadIdentityProviderId: string
        issuerUrl: string
        projectId: string
        resourceId: string
    

    DbmulticloudOracleDbGcpIdentityConnector 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 DbmulticloudOracleDbGcpIdentityConnector resource accepts the following input properties:

    CompartmentId string
    (Updatable) The OCID of the compartment that contains the Oracle DB GCP Identity Connector resource.
    DisplayName string
    (Updatable) Oracle DB Google GCP Identity Connector resource name.
    GcpLocation string
    (Updatable) GCP Location.
    GcpResourceServiceAgentId string
    (Updatable) The ID of the GCP resource service agent.
    GcpWorkloadIdentityPoolId string
    (Updatable) The ID of the cloud GCP Workload Identity Pool.
    GcpWorkloadIdentityProviderId string
    (Updatable) The ID of the GCP Workload Identity Provider.
    IssuerUrl string
    (Updatable) OIDC token issuer Url
    ProjectId string
    (Updatable) Project id of the customer project.
    ResourceId string

    (Updatable) The OCID of the GCP VM Cluster 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 the Oracle DB GCP Identity Connector resource.
    DisplayName string
    (Updatable) Oracle DB Google GCP Identity Connector resource name.
    GcpLocation string
    (Updatable) GCP Location.
    GcpResourceServiceAgentId string
    (Updatable) The ID of the GCP resource service agent.
    GcpWorkloadIdentityPoolId string
    (Updatable) The ID of the cloud GCP Workload Identity Pool.
    GcpWorkloadIdentityProviderId string
    (Updatable) The ID of the GCP Workload Identity Provider.
    IssuerUrl string
    (Updatable) OIDC token issuer Url
    ProjectId string
    (Updatable) Project id of the customer project.
    ResourceId string

    (Updatable) The OCID of the GCP VM Cluster 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 the Oracle DB GCP Identity Connector resource.
    displayName String
    (Updatable) Oracle DB Google GCP Identity Connector resource name.
    gcpLocation String
    (Updatable) GCP Location.
    gcpResourceServiceAgentId String
    (Updatable) The ID of the GCP resource service agent.
    gcpWorkloadIdentityPoolId String
    (Updatable) The ID of the cloud GCP Workload Identity Pool.
    gcpWorkloadIdentityProviderId String
    (Updatable) The ID of the GCP Workload Identity Provider.
    issuerUrl String
    (Updatable) OIDC token issuer Url
    projectId String
    (Updatable) Project id of the customer project.
    resourceId String

    (Updatable) The OCID of the GCP VM Cluster 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 the Oracle DB GCP Identity Connector resource.
    displayName string
    (Updatable) Oracle DB Google GCP Identity Connector resource name.
    gcpLocation string
    (Updatable) GCP Location.
    gcpResourceServiceAgentId string
    (Updatable) The ID of the GCP resource service agent.
    gcpWorkloadIdentityPoolId string
    (Updatable) The ID of the cloud GCP Workload Identity Pool.
    gcpWorkloadIdentityProviderId string
    (Updatable) The ID of the GCP Workload Identity Provider.
    issuerUrl string
    (Updatable) OIDC token issuer Url
    projectId string
    (Updatable) Project id of the customer project.
    resourceId string

    (Updatable) The OCID of the GCP VM Cluster 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 the Oracle DB GCP Identity Connector resource.
    display_name str
    (Updatable) Oracle DB Google GCP Identity Connector resource name.
    gcp_location str
    (Updatable) GCP Location.
    gcp_resource_service_agent_id str
    (Updatable) The ID of the GCP resource service agent.
    gcp_workload_identity_pool_id str
    (Updatable) The ID of the cloud GCP Workload Identity Pool.
    gcp_workload_identity_provider_id str
    (Updatable) The ID of the GCP Workload Identity Provider.
    issuer_url str
    (Updatable) OIDC token issuer Url
    project_id str
    (Updatable) Project id of the customer project.
    resource_id str

    (Updatable) The OCID of the GCP VM Cluster 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 the Oracle DB GCP Identity Connector resource.
    displayName String
    (Updatable) Oracle DB Google GCP Identity Connector resource name.
    gcpLocation String
    (Updatable) GCP Location.
    gcpResourceServiceAgentId String
    (Updatable) The ID of the GCP resource service agent.
    gcpWorkloadIdentityPoolId String
    (Updatable) The ID of the cloud GCP Workload Identity Pool.
    gcpWorkloadIdentityProviderId String
    (Updatable) The ID of the GCP Workload Identity Provider.
    issuerUrl String
    (Updatable) OIDC token issuer Url
    projectId String
    (Updatable) Project id of the customer project.
    resourceId String

    (Updatable) The OCID of the GCP VM Cluster 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 DbmulticloudOracleDbGcpIdentityConnector resource produces the following output properties:

    GcpIdentityConnectivityStatus string
    The current Connectivity status of GCP Identity Connector resource.
    GcpNodes List<DbmulticloudOracleDbGcpIdentityConnectorGcpNode>
    List of All VMs where GCP Identity Connector is configured for this VMCluster.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    State string
    The current lifecycle state of the GCP Identity Connector 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 GCP Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    TimeUpdated string
    Time when the Oracle DB GCP Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    GcpIdentityConnectivityStatus string
    The current Connectivity status of GCP Identity Connector resource.
    GcpNodes []DbmulticloudOracleDbGcpIdentityConnectorGcpNode
    List of All VMs where GCP Identity Connector is configured for this VMCluster.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    State string
    The current lifecycle state of the GCP Identity Connector 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 GCP Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    TimeUpdated string
    Time when the Oracle DB GCP Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    gcpIdentityConnectivityStatus String
    The current Connectivity status of GCP Identity Connector resource.
    gcpNodes List<DbmulticloudOracleDbGcpIdentityConnectorGcpNode>
    List of All VMs where GCP Identity Connector is configured for this VMCluster.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    state String
    The current lifecycle state of the GCP Identity Connector 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 GCP Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated String
    Time when the Oracle DB GCP Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    gcpIdentityConnectivityStatus string
    The current Connectivity status of GCP Identity Connector resource.
    gcpNodes DbmulticloudOracleDbGcpIdentityConnectorGcpNode[]
    List of All VMs where GCP Identity Connector is configured for this VMCluster.
    id string
    The provider-assigned unique ID for this managed resource.
    lifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    state string
    The current lifecycle state of the GCP Identity Connector 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 GCP Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated string
    Time when the Oracle DB GCP Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    gcp_identity_connectivity_status str
    The current Connectivity status of GCP Identity Connector resource.
    gcp_nodes Sequence[DbmulticloudOracleDbGcpIdentityConnectorGcpNode]
    List of All VMs where GCP Identity Connector is configured for this VMCluster.
    id str
    The provider-assigned unique ID for this managed resource.
    lifecycle_state_details str
    Description of the current lifecycle state in more detail.
    state str
    The current lifecycle state of the GCP Identity Connector 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 GCP Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    time_updated str
    Time when the Oracle DB GCP Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    gcpIdentityConnectivityStatus String
    The current Connectivity status of GCP Identity Connector resource.
    gcpNodes List<Property Map>
    List of All VMs where GCP Identity Connector is configured for this VMCluster.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    state String
    The current lifecycle state of the GCP Identity Connector 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 GCP Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated String
    Time when the Oracle DB GCP Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'

    Look up Existing DbmulticloudOracleDbGcpIdentityConnector Resource

    Get an existing DbmulticloudOracleDbGcpIdentityConnector 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?: DbmulticloudOracleDbGcpIdentityConnectorState, opts?: CustomResourceOptions): DbmulticloudOracleDbGcpIdentityConnector
    @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,
            gcp_identity_connectivity_status: Optional[str] = None,
            gcp_location: Optional[str] = None,
            gcp_nodes: Optional[Sequence[DbmulticloudOracleDbGcpIdentityConnectorGcpNodeArgs]] = None,
            gcp_resource_service_agent_id: Optional[str] = None,
            gcp_workload_identity_pool_id: Optional[str] = None,
            gcp_workload_identity_provider_id: Optional[str] = None,
            issuer_url: Optional[str] = None,
            lifecycle_state_details: Optional[str] = None,
            project_id: Optional[str] = None,
            resource_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) -> DbmulticloudOracleDbGcpIdentityConnector
    func GetDbmulticloudOracleDbGcpIdentityConnector(ctx *Context, name string, id IDInput, state *DbmulticloudOracleDbGcpIdentityConnectorState, opts ...ResourceOption) (*DbmulticloudOracleDbGcpIdentityConnector, error)
    public static DbmulticloudOracleDbGcpIdentityConnector Get(string name, Input<string> id, DbmulticloudOracleDbGcpIdentityConnectorState? state, CustomResourceOptions? opts = null)
    public static DbmulticloudOracleDbGcpIdentityConnector get(String name, Output<String> id, DbmulticloudOracleDbGcpIdentityConnectorState state, CustomResourceOptions options)
    resources:  _:    type: oci:oci:DbmulticloudOracleDbGcpIdentityConnector    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 the Oracle DB GCP Identity Connector 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 Google GCP Identity Connector 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"}
    GcpIdentityConnectivityStatus string
    The current Connectivity status of GCP Identity Connector resource.
    GcpLocation string
    (Updatable) GCP Location.
    GcpNodes List<DbmulticloudOracleDbGcpIdentityConnectorGcpNode>
    List of All VMs where GCP Identity Connector is configured for this VMCluster.
    GcpResourceServiceAgentId string
    (Updatable) The ID of the GCP resource service agent.
    GcpWorkloadIdentityPoolId string
    (Updatable) The ID of the cloud GCP Workload Identity Pool.
    GcpWorkloadIdentityProviderId string
    (Updatable) The ID of the GCP Workload Identity Provider.
    IssuerUrl string
    (Updatable) OIDC token issuer Url
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    ProjectId string
    (Updatable) Project id of the customer project.
    ResourceId string

    (Updatable) The OCID of the GCP VM Cluster 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 GCP Identity Connector 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 GCP Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    TimeUpdated string
    Time when the Oracle DB GCP Identity Connector 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 the Oracle DB GCP Identity Connector 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 Google GCP Identity Connector 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"}
    GcpIdentityConnectivityStatus string
    The current Connectivity status of GCP Identity Connector resource.
    GcpLocation string
    (Updatable) GCP Location.
    GcpNodes []DbmulticloudOracleDbGcpIdentityConnectorGcpNodeArgs
    List of All VMs where GCP Identity Connector is configured for this VMCluster.
    GcpResourceServiceAgentId string
    (Updatable) The ID of the GCP resource service agent.
    GcpWorkloadIdentityPoolId string
    (Updatable) The ID of the cloud GCP Workload Identity Pool.
    GcpWorkloadIdentityProviderId string
    (Updatable) The ID of the GCP Workload Identity Provider.
    IssuerUrl string
    (Updatable) OIDC token issuer Url
    LifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    ProjectId string
    (Updatable) Project id of the customer project.
    ResourceId string

    (Updatable) The OCID of the GCP VM Cluster 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 GCP Identity Connector 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 GCP Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    TimeUpdated string
    Time when the Oracle DB GCP Identity Connector 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 the Oracle DB GCP Identity Connector 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 Google GCP Identity Connector 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"}
    gcpIdentityConnectivityStatus String
    The current Connectivity status of GCP Identity Connector resource.
    gcpLocation String
    (Updatable) GCP Location.
    gcpNodes List<DbmulticloudOracleDbGcpIdentityConnectorGcpNode>
    List of All VMs where GCP Identity Connector is configured for this VMCluster.
    gcpResourceServiceAgentId String
    (Updatable) The ID of the GCP resource service agent.
    gcpWorkloadIdentityPoolId String
    (Updatable) The ID of the cloud GCP Workload Identity Pool.
    gcpWorkloadIdentityProviderId String
    (Updatable) The ID of the GCP Workload Identity Provider.
    issuerUrl String
    (Updatable) OIDC token issuer Url
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    projectId String
    (Updatable) Project id of the customer project.
    resourceId String

    (Updatable) The OCID of the GCP VM Cluster 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 GCP Identity Connector 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 GCP Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated String
    Time when the Oracle DB GCP Identity Connector 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 the Oracle DB GCP Identity Connector 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 Google GCP Identity Connector 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"}
    gcpIdentityConnectivityStatus string
    The current Connectivity status of GCP Identity Connector resource.
    gcpLocation string
    (Updatable) GCP Location.
    gcpNodes DbmulticloudOracleDbGcpIdentityConnectorGcpNode[]
    List of All VMs where GCP Identity Connector is configured for this VMCluster.
    gcpResourceServiceAgentId string
    (Updatable) The ID of the GCP resource service agent.
    gcpWorkloadIdentityPoolId string
    (Updatable) The ID of the cloud GCP Workload Identity Pool.
    gcpWorkloadIdentityProviderId string
    (Updatable) The ID of the GCP Workload Identity Provider.
    issuerUrl string
    (Updatable) OIDC token issuer Url
    lifecycleStateDetails string
    Description of the current lifecycle state in more detail.
    projectId string
    (Updatable) Project id of the customer project.
    resourceId string

    (Updatable) The OCID of the GCP VM Cluster 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 GCP Identity Connector 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 GCP Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated string
    Time when the Oracle DB GCP Identity Connector 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 the Oracle DB GCP Identity Connector 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 Google GCP Identity Connector 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"}
    gcp_identity_connectivity_status str
    The current Connectivity status of GCP Identity Connector resource.
    gcp_location str
    (Updatable) GCP Location.
    gcp_nodes Sequence[DbmulticloudOracleDbGcpIdentityConnectorGcpNodeArgs]
    List of All VMs where GCP Identity Connector is configured for this VMCluster.
    gcp_resource_service_agent_id str
    (Updatable) The ID of the GCP resource service agent.
    gcp_workload_identity_pool_id str
    (Updatable) The ID of the cloud GCP Workload Identity Pool.
    gcp_workload_identity_provider_id str
    (Updatable) The ID of the GCP Workload Identity Provider.
    issuer_url str
    (Updatable) OIDC token issuer Url
    lifecycle_state_details str
    Description of the current lifecycle state in more detail.
    project_id str
    (Updatable) Project id of the customer project.
    resource_id str

    (Updatable) The OCID of the GCP VM Cluster 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 GCP Identity Connector 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 GCP Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    time_updated str
    Time when the Oracle DB GCP Identity Connector 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 the Oracle DB GCP Identity Connector 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 Google GCP Identity Connector 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"}
    gcpIdentityConnectivityStatus String
    The current Connectivity status of GCP Identity Connector resource.
    gcpLocation String
    (Updatable) GCP Location.
    gcpNodes List<Property Map>
    List of All VMs where GCP Identity Connector is configured for this VMCluster.
    gcpResourceServiceAgentId String
    (Updatable) The ID of the GCP resource service agent.
    gcpWorkloadIdentityPoolId String
    (Updatable) The ID of the cloud GCP Workload Identity Pool.
    gcpWorkloadIdentityProviderId String
    (Updatable) The ID of the GCP Workload Identity Provider.
    issuerUrl String
    (Updatable) OIDC token issuer Url
    lifecycleStateDetails String
    Description of the current lifecycle state in more detail.
    projectId String
    (Updatable) Project id of the customer project.
    resourceId String

    (Updatable) The OCID of the GCP VM Cluster 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 GCP Identity Connector 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 GCP Identity Connector resource was created expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    timeUpdated String
    Time when the Oracle DB GCP Identity Connector resource was last modified expressed in RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'

    Supporting Types

    DbmulticloudOracleDbGcpIdentityConnectorGcpNode, DbmulticloudOracleDbGcpIdentityConnectorGcpNodeArgs

    HostId string
    Host ID.
    HostName string
    Host Name or Identity Connector name.
    Status string
    The current status of the GCP Identity Connector resource.
    TimeLastChecked string
    time when the GCP Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    HostId string
    Host ID.
    HostName string
    Host Name or Identity Connector name.
    Status string
    The current status of the GCP Identity Connector resource.
    TimeLastChecked string
    time when the GCP Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    hostId String
    Host ID.
    hostName String
    Host Name or Identity Connector name.
    status String
    The current status of the GCP Identity Connector resource.
    timeLastChecked String
    time when the GCP Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    hostId string
    Host ID.
    hostName string
    Host Name or Identity Connector name.
    status string
    The current status of the GCP Identity Connector resource.
    timeLastChecked string
    time when the GCP Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    host_id str
    Host ID.
    host_name str
    Host Name or Identity Connector name.
    status str
    The current status of the GCP Identity Connector resource.
    time_last_checked str
    time when the GCP Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
    hostId String
    Host ID.
    hostName String
    Host Name or Identity Connector name.
    status String
    The current status of the GCP Identity Connector resource.
    timeLastChecked String
    time when the GCP Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'

    Import

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

    $ pulumi import oci:oci/dbmulticloudOracleDbGcpIdentityConnector:DbmulticloudOracleDbGcpIdentityConnector test_oracle_db_gcp_identity_connector "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.14.0 published on Friday, Jan 16, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate