Oracle Cloud Infrastructure v3.9.0 published on Wednesday, Sep 24, 2025 by Pulumi
oci.oci.getDbmulticloudOracleDbGcpIdentityConnectors
This data source provides the list of Oracle Db Gcp Identity Connectors in Oracle Cloud Infrastructure Dbmulticloud service.
Lists all Oracle DB GCP Identity Connectors based on the specified filters.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testOracleDbGcpIdentityConnectors = oci.oci.getDbmulticloudOracleDbGcpIdentityConnectors({
compartmentId: compartmentId,
displayName: oracleDbGcpIdentityConnectorDisplayName,
resourceId: testResource.id,
state: oracleDbGcpIdentityConnectorState,
});
import pulumi
import pulumi_oci as oci
test_oracle_db_gcp_identity_connectors = oci.oci.get_dbmulticloud_oracle_db_gcp_identity_connectors(compartment_id=compartment_id,
display_name=oracle_db_gcp_identity_connector_display_name,
resource_id=test_resource["id"],
state=oracle_db_gcp_identity_connector_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.GetDbmulticloudOracleDbGcpIdentityConnectors(ctx, &oci.GetDbmulticloudOracleDbGcpIdentityConnectorsArgs{
CompartmentId: compartmentId,
DisplayName: pulumi.StringRef(oracleDbGcpIdentityConnectorDisplayName),
ResourceId: pulumi.StringRef(testResource.Id),
State: pulumi.StringRef(oracleDbGcpIdentityConnectorState),
}, 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 testOracleDbGcpIdentityConnectors = Oci.Oci.GetDbmulticloudOracleDbGcpIdentityConnectors.Invoke(new()
{
CompartmentId = compartmentId,
DisplayName = oracleDbGcpIdentityConnectorDisplayName,
ResourceId = testResource.Id,
State = oracleDbGcpIdentityConnectorState,
});
});
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.GetDbmulticloudOracleDbGcpIdentityConnectorsArgs;
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 testOracleDbGcpIdentityConnectors = OciFunctions.getDbmulticloudOracleDbGcpIdentityConnectors(GetDbmulticloudOracleDbGcpIdentityConnectorsArgs.builder()
.compartmentId(compartmentId)
.displayName(oracleDbGcpIdentityConnectorDisplayName)
.resourceId(testResource.id())
.state(oracleDbGcpIdentityConnectorState)
.build());
}
}
variables:
testOracleDbGcpIdentityConnectors:
fn::invoke:
function: oci:oci:getDbmulticloudOracleDbGcpIdentityConnectors
arguments:
compartmentId: ${compartmentId}
displayName: ${oracleDbGcpIdentityConnectorDisplayName}
resourceId: ${testResource.id}
state: ${oracleDbGcpIdentityConnectorState}
Using getDbmulticloudOracleDbGcpIdentityConnectors
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 getDbmulticloudOracleDbGcpIdentityConnectors(args: GetDbmulticloudOracleDbGcpIdentityConnectorsArgs, opts?: InvokeOptions): Promise<GetDbmulticloudOracleDbGcpIdentityConnectorsResult>
function getDbmulticloudOracleDbGcpIdentityConnectorsOutput(args: GetDbmulticloudOracleDbGcpIdentityConnectorsOutputArgs, opts?: InvokeOptions): Output<GetDbmulticloudOracleDbGcpIdentityConnectorsResult>
def get_dbmulticloud_oracle_db_gcp_identity_connectors(compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetDbmulticloudOracleDbGcpIdentityConnectorsFilter]] = None,
resource_id: Optional[str] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDbmulticloudOracleDbGcpIdentityConnectorsResult
def get_dbmulticloud_oracle_db_gcp_identity_connectors_output(compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetDbmulticloudOracleDbGcpIdentityConnectorsFilterArgs]]]] = None,
resource_id: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDbmulticloudOracleDbGcpIdentityConnectorsResult]
func GetDbmulticloudOracleDbGcpIdentityConnectors(ctx *Context, args *GetDbmulticloudOracleDbGcpIdentityConnectorsArgs, opts ...InvokeOption) (*GetDbmulticloudOracleDbGcpIdentityConnectorsResult, error)
func GetDbmulticloudOracleDbGcpIdentityConnectorsOutput(ctx *Context, args *GetDbmulticloudOracleDbGcpIdentityConnectorsOutputArgs, opts ...InvokeOption) GetDbmulticloudOracleDbGcpIdentityConnectorsResultOutput
> Note: This function is named GetDbmulticloudOracleDbGcpIdentityConnectors
in the Go SDK.
public static class GetDbmulticloudOracleDbGcpIdentityConnectors
{
public static Task<GetDbmulticloudOracleDbGcpIdentityConnectorsResult> InvokeAsync(GetDbmulticloudOracleDbGcpIdentityConnectorsArgs args, InvokeOptions? opts = null)
public static Output<GetDbmulticloudOracleDbGcpIdentityConnectorsResult> Invoke(GetDbmulticloudOracleDbGcpIdentityConnectorsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDbmulticloudOracleDbGcpIdentityConnectorsResult> getDbmulticloudOracleDbGcpIdentityConnectors(GetDbmulticloudOracleDbGcpIdentityConnectorsArgs args, InvokeOptions options)
public static Output<GetDbmulticloudOracleDbGcpIdentityConnectorsResult> getDbmulticloudOracleDbGcpIdentityConnectors(GetDbmulticloudOracleDbGcpIdentityConnectorsArgs args, InvokeOptions options)
fn::invoke:
function: oci:oci/getDbmulticloudOracleDbGcpIdentityConnectors:getDbmulticloudOracleDbGcpIdentityConnectors
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - The ID of the compartment.
- Display
Name string - A filter to return Oracle DB GCP Identity Connector resources that match the specified display name.
- Filters
List<Get
Dbmulticloud Oracle Db Gcp Identity Connectors Filter> - Resource
Id string - A filter to return Oracle DB GCP Identity Connector resource that match the given resource OCID.
- State string
- A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
- Compartment
Id string - The ID of the compartment.
- Display
Name string - A filter to return Oracle DB GCP Identity Connector resources that match the specified display name.
- Filters
[]Get
Dbmulticloud Oracle Db Gcp Identity Connectors Filter - Resource
Id string - A filter to return Oracle DB GCP Identity Connector resource that match the given resource OCID.
- State string
- A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
- compartment
Id String - The ID of the compartment.
- display
Name String - A filter to return Oracle DB GCP Identity Connector resources that match the specified display name.
- filters
List<Get
Dbmulticloud Oracle Db Gcp Identity Connectors Filter> - resource
Id String - A filter to return Oracle DB GCP Identity Connector resource that match the given resource OCID.
- state String
- A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
- compartment
Id string - The ID of the compartment.
- display
Name string - A filter to return Oracle DB GCP Identity Connector resources that match the specified display name.
- filters
Get
Dbmulticloud Oracle Db Gcp Identity Connectors Filter[] - resource
Id string - A filter to return Oracle DB GCP Identity Connector resource that match the given resource OCID.
- state string
- A filter to return only resources that match the specified 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 Identity Connector resources that match the specified display name.
- filters
Sequence[Get
Dbmulticloud Oracle Db Gcp Identity Connectors Filter] - resource_
id str - A filter to return Oracle DB GCP Identity Connector resource that match the given resource OCID.
- state str
- A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
- compartment
Id String - The ID of the compartment.
- display
Name String - A filter to return Oracle DB GCP Identity Connector resources that match the specified display name.
- filters List<Property Map>
- resource
Id String - A filter to return Oracle DB GCP Identity Connector resource that match the given resource OCID.
- state String
- A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
getDbmulticloudOracleDbGcpIdentityConnectors Result
The following output properties are available:
- Compartment
Id string - The OCID of the compartment that contains the Oracle DB GCP Identity Connector resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Oracle
Db List<GetGcp Identity Connector Summary Collections Dbmulticloud Oracle Db Gcp Identity Connectors Oracle Db Gcp Identity Connector Summary Collection> - The list of oracle_db_gcp_identity_connector_summary_collection.
- Display
Name string - Oracle DB GCP Identity Connector resource name.
- Filters
List<Get
Dbmulticloud Oracle Db Gcp Identity Connectors Filter> - Resource
Id string - The OCID of the GCP VM Cluster resource.
- State string
- The current lifecycle state of the GCP Identity Connector resource.
- Compartment
Id string - The OCID of the compartment that contains the Oracle DB GCP Identity Connector resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Oracle
Db []GetGcp Identity Connector Summary Collections Dbmulticloud Oracle Db Gcp Identity Connectors Oracle Db Gcp Identity Connector Summary Collection - The list of oracle_db_gcp_identity_connector_summary_collection.
- Display
Name string - Oracle DB GCP Identity Connector resource name.
- Filters
[]Get
Dbmulticloud Oracle Db Gcp Identity Connectors Filter - Resource
Id string - The OCID of the GCP VM Cluster resource.
- State string
- The current lifecycle state of the GCP Identity Connector resource.
- compartment
Id String - The OCID of the compartment that contains the Oracle DB GCP Identity Connector resource.
- id String
- The provider-assigned unique ID for this managed resource.
- oracle
Db List<GetGcp Identity Connector Summary Collections Dbmulticloud Oracle Db Gcp Identity Connectors Oracle Db Gcp Identity Connector Summary Collection> - The list of oracle_db_gcp_identity_connector_summary_collection.
- display
Name String - Oracle DB GCP Identity Connector resource name.
- filters
List<Get
Dbmulticloud Oracle Db Gcp Identity Connectors Filter> - resource
Id String - The OCID of the GCP VM Cluster resource.
- state String
- The current lifecycle state of the GCP Identity Connector resource.
- compartment
Id string - The OCID of the compartment that contains the Oracle DB GCP Identity Connector resource.
- id string
- The provider-assigned unique ID for this managed resource.
- oracle
Db GetGcp Identity Connector Summary Collections Dbmulticloud Oracle Db Gcp Identity Connectors Oracle Db Gcp Identity Connector Summary Collection[] - The list of oracle_db_gcp_identity_connector_summary_collection.
- display
Name string - Oracle DB GCP Identity Connector resource name.
- filters
Get
Dbmulticloud Oracle Db Gcp Identity Connectors Filter[] - resource
Id string - The OCID of the GCP VM Cluster resource.
- state string
- The current lifecycle state of the GCP Identity Connector resource.
- compartment_
id str - The OCID of the compartment that contains the Oracle DB GCP Identity Connector resource.
- id str
- The provider-assigned unique ID for this managed resource.
- oracle_
db_ Sequence[Getgcp_ identity_ connector_ summary_ collections Dbmulticloud Oracle Db Gcp Identity Connectors Oracle Db Gcp Identity Connector Summary Collection] - The list of oracle_db_gcp_identity_connector_summary_collection.
- display_
name str - Oracle DB GCP Identity Connector resource name.
- filters
Sequence[Get
Dbmulticloud Oracle Db Gcp Identity Connectors Filter] - resource_
id str - The OCID of the GCP VM Cluster resource.
- state str
- The current lifecycle state of the GCP Identity Connector resource.
- compartment
Id String - The OCID of the compartment that contains the Oracle DB GCP Identity Connector resource.
- id String
- The provider-assigned unique ID for this managed resource.
- oracle
Db List<Property Map>Gcp Identity Connector Summary Collections - The list of oracle_db_gcp_identity_connector_summary_collection.
- display
Name String - Oracle DB GCP Identity Connector resource name.
- filters List<Property Map>
- resource
Id String - The OCID of the GCP VM Cluster resource.
- state String
- The current lifecycle state of the GCP Identity Connector resource.
Supporting Types
GetDbmulticloudOracleDbGcpIdentityConnectorsFilter
GetDbmulticloudOracleDbGcpIdentityConnectorsOracleDbGcpIdentityConnectorSummaryCollection
GetDbmulticloudOracleDbGcpIdentityConnectorsOracleDbGcpIdentityConnectorSummaryCollectionItem
- Compartment
Id string - The ID of the compartment.
- 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"}
- Display
Name string - A filter to return Oracle DB GCP Identity Connector resources that match the specified display name.
- 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"}
- Gcp
Identity stringConnectivity Status - The current Connectivity status of GCP Identity Connector resource.
- Gcp
Location string - GCP Location.
- Gcp
Nodes List<GetDbmulticloud Oracle Db Gcp Identity Connectors Oracle Db Gcp Identity Connector Summary Collection Item Gcp Node> - List of All VMs where GCP Identity Connector is configured for this VMCluster.
- Gcp
Resource stringService Agent Id - The ID of the GCP resource service agent.
- Gcp
Workload stringIdentity Pool Id - The ID of the cloud GCP Workload Identity Pool.
- Gcp
Workload stringIdentity Provider Id - The ID of the GCP Workload Identity Provider.
- Id string
- The OCID of the Oracle DB GCP Identity Connector resource.
- Issuer
Url string - OIDC token issuer Url.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- Project
Id string - Project id of the customer project.
- Resource
Id string - A filter to return Oracle DB GCP Identity Connector resource that match the given resource OCID.
- State string
- A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created 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'
- Time
Updated 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 string - The ID of the compartment.
- 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"}
- Display
Name string - A filter to return Oracle DB GCP Identity Connector resources that match the specified display name.
- 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"}
- Gcp
Identity stringConnectivity Status - The current Connectivity status of GCP Identity Connector resource.
- Gcp
Location string - GCP Location.
- Gcp
Nodes []GetDbmulticloud Oracle Db Gcp Identity Connectors Oracle Db Gcp Identity Connector Summary Collection Item Gcp Node - List of All VMs where GCP Identity Connector is configured for this VMCluster.
- Gcp
Resource stringService Agent Id - The ID of the GCP resource service agent.
- Gcp
Workload stringIdentity Pool Id - The ID of the cloud GCP Workload Identity Pool.
- Gcp
Workload stringIdentity Provider Id - The ID of the GCP Workload Identity Provider.
- Id string
- The OCID of the Oracle DB GCP Identity Connector resource.
- Issuer
Url string - OIDC token issuer Url.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- Project
Id string - Project id of the customer project.
- Resource
Id string - A filter to return Oracle DB GCP Identity Connector resource that match the given resource OCID.
- State string
- A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created 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'
- Time
Updated 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 String - The ID of the compartment.
- 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"}
- display
Name String - A filter to return Oracle DB GCP Identity Connector resources that match the specified display name.
- 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"}
- gcp
Identity StringConnectivity Status - The current Connectivity status of GCP Identity Connector resource.
- gcp
Location String - GCP Location.
- gcp
Nodes List<GetDbmulticloud Oracle Db Gcp Identity Connectors Oracle Db Gcp Identity Connector Summary Collection Item Gcp Node> - List of All VMs where GCP Identity Connector is configured for this VMCluster.
- gcp
Resource StringService Agent Id - The ID of the GCP resource service agent.
- gcp
Workload StringIdentity Pool Id - The ID of the cloud GCP Workload Identity Pool.
- gcp
Workload StringIdentity Provider Id - The ID of the GCP Workload Identity Provider.
- id String
- The OCID of the Oracle DB GCP Identity Connector resource.
- issuer
Url String - OIDC token issuer Url.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- project
Id String - Project id of the customer project.
- resource
Id String - A filter to return Oracle DB GCP Identity Connector resource that match the given resource OCID.
- state String
- A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created 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'
- time
Updated 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 string - The ID of the compartment.
- {[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"}
- display
Name string - A filter to return Oracle DB GCP Identity Connector resources that match the specified display name.
- {[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"}
- gcp
Identity stringConnectivity Status - The current Connectivity status of GCP Identity Connector resource.
- gcp
Location string - GCP Location.
- gcp
Nodes GetDbmulticloud Oracle Db Gcp Identity Connectors Oracle Db Gcp Identity Connector Summary Collection Item Gcp Node[] - List of All VMs where GCP Identity Connector is configured for this VMCluster.
- gcp
Resource stringService Agent Id - The ID of the GCP resource service agent.
- gcp
Workload stringIdentity Pool Id - The ID of the cloud GCP Workload Identity Pool.
- gcp
Workload stringIdentity Provider Id - The ID of the GCP Workload Identity Provider.
- id string
- The OCID of the Oracle DB GCP Identity Connector resource.
- issuer
Url string - OIDC token issuer Url.
- lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- project
Id string - Project id of the customer project.
- resource
Id string - A filter to return Oracle DB GCP Identity Connector resource that match the given resource OCID.
- state string
- A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created 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'
- time
Updated 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 - The ID of the compartment.
- 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 Identity Connector resources that match the specified display name.
- 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_
identity_ strconnectivity_ status - The current Connectivity status of GCP Identity Connector resource.
- gcp_
location str - GCP Location.
- gcp_
nodes Sequence[GetDbmulticloud Oracle Db Gcp Identity Connectors Oracle Db Gcp Identity Connector Summary Collection Item Gcp Node] - List of All VMs where GCP Identity Connector is configured for this VMCluster.
- gcp_
resource_ strservice_ agent_ id - The ID of the GCP resource service agent.
- gcp_
workload_ stridentity_ pool_ id - The ID of the cloud GCP Workload Identity Pool.
- gcp_
workload_ stridentity_ provider_ id - The ID of the GCP Workload Identity Provider.
- id str
- The OCID of the Oracle DB GCP Identity Connector resource.
- issuer_
url str - OIDC token issuer Url.
- lifecycle_
state_ strdetails - Description of the current lifecycle state in more detail.
- project_
id str - Project id of the customer project.
- resource_
id str - A filter to return Oracle DB GCP Identity Connector resource that match the given resource OCID.
- state str
- A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
- 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'
- compartment
Id String - The ID of the compartment.
- 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"}
- display
Name String - A filter to return Oracle DB GCP Identity Connector resources that match the specified display name.
- 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"}
- gcp
Identity StringConnectivity Status - The current Connectivity status of GCP Identity Connector resource.
- gcp
Location String - GCP Location.
- gcp
Nodes List<Property Map> - List of All VMs where GCP Identity Connector is configured for this VMCluster.
- gcp
Resource StringService Agent Id - The ID of the GCP resource service agent.
- gcp
Workload StringIdentity Pool Id - The ID of the cloud GCP Workload Identity Pool.
- gcp
Workload StringIdentity Provider Id - The ID of the GCP Workload Identity Provider.
- id String
- The OCID of the Oracle DB GCP Identity Connector resource.
- issuer
Url String - OIDC token issuer Url.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- project
Id String - Project id of the customer project.
- resource
Id String - A filter to return Oracle DB GCP Identity Connector resource that match the given resource OCID.
- state String
- A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created 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'
- time
Updated 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'
GetDbmulticloudOracleDbGcpIdentityConnectorsOracleDbGcpIdentityConnectorSummaryCollectionItemGcpNode
- Host
Id string - Host ID.
- Host
Name string - Host Name or Identity Connector name.
- Status string
- The current status of the GCP Identity Connector resource.
- Time
Last stringChecked - time when the GCP Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- Host
Id string - Host ID.
- Host
Name string - Host Name or Identity Connector name.
- Status string
- The current status of the GCP Identity Connector resource.
- Time
Last stringChecked - time when the GCP Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- host
Id String - Host ID.
- host
Name String - Host Name or Identity Connector name.
- status String
- The current status of the GCP Identity Connector resource.
- time
Last StringChecked - time when the GCP Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- host
Id string - Host ID.
- host
Name string - Host Name or Identity Connector name.
- status string
- The current status of the GCP Identity Connector resource.
- time
Last stringChecked - 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_ strchecked - time when the GCP Identity Connector's status was checked RFC 3339 timestamp format, e.g. '2020-05-22T21:10:29.600Z'
- host
Id String - Host ID.
- host
Name String - Host Name or Identity Connector name.
- status String
- The current status of the GCP Identity Connector resource.
- time
Last StringChecked - time when the GCP Identity Connector's status was checked 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.