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:
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the Oracle DB GCP Identity Connector resource.
- Display
Name string - (Updatable) Oracle DB Google GCP Identity Connector resource name.
- Gcp
Location string - (Updatable) GCP Location.
- Gcp
Resource stringService Agent Id - (Updatable) The ID of the GCP resource service agent.
- Gcp
Workload stringIdentity Pool Id - (Updatable) The ID of the cloud GCP Workload Identity Pool.
- Gcp
Workload stringIdentity Provider Id - (Updatable) The ID of the GCP Workload Identity Provider.
- Issuer
Url string - (Updatable) OIDC token issuer Url
- Project
Id string - (Updatable) Project id of the customer project.
- Resource
Id 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
- 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"} - 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"}
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the Oracle DB GCP Identity Connector resource.
- Display
Name string - (Updatable) Oracle DB Google GCP Identity Connector resource name.
- Gcp
Location string - (Updatable) GCP Location.
- Gcp
Resource stringService Agent Id - (Updatable) The ID of the GCP resource service agent.
- Gcp
Workload stringIdentity Pool Id - (Updatable) The ID of the cloud GCP Workload Identity Pool.
- Gcp
Workload stringIdentity Provider Id - (Updatable) The ID of the GCP Workload Identity Provider.
- Issuer
Url string - (Updatable) OIDC token issuer Url
- Project
Id string - (Updatable) Project id of the customer project.
- Resource
Id 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
- 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"} - 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"}
- compartment
Id String - (Updatable) The OCID of the compartment that contains the Oracle DB GCP Identity Connector resource.
- display
Name String - (Updatable) Oracle DB Google GCP Identity Connector resource name.
- gcp
Location String - (Updatable) GCP Location.
- gcp
Resource StringService Agent Id - (Updatable) The ID of the GCP resource service agent.
- gcp
Workload StringIdentity Pool Id - (Updatable) The ID of the cloud GCP Workload Identity Pool.
- gcp
Workload StringIdentity Provider Id - (Updatable) The ID of the GCP Workload Identity Provider.
- issuer
Url String - (Updatable) OIDC token issuer Url
- project
Id String - (Updatable) Project id of the customer project.
- resource
Id 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
- 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"} - 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"}
- compartment
Id string - (Updatable) The OCID of the compartment that contains the Oracle DB GCP Identity Connector resource.
- display
Name string - (Updatable) Oracle DB Google GCP Identity Connector resource name.
- gcp
Location string - (Updatable) GCP Location.
- gcp
Resource stringService Agent Id - (Updatable) The ID of the GCP resource service agent.
- gcp
Workload stringIdentity Pool Id - (Updatable) The ID of the cloud GCP Workload Identity Pool.
- gcp
Workload stringIdentity Provider Id - (Updatable) The ID of the GCP Workload Identity Provider.
- issuer
Url string - (Updatable) OIDC token issuer Url
- project
Id string - (Updatable) Project id of the customer project.
- resource
Id 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
- {[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"} - {[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_ strservice_ agent_ id - (Updatable) The ID of the GCP resource service agent.
- gcp_
workload_ stridentity_ pool_ id - (Updatable) The ID of the cloud GCP Workload Identity Pool.
- gcp_
workload_ stridentity_ provider_ id - (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
- 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"} - 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"}
- compartment
Id String - (Updatable) The OCID of the compartment that contains the Oracle DB GCP Identity Connector resource.
- display
Name String - (Updatable) Oracle DB Google GCP Identity Connector resource name.
- gcp
Location String - (Updatable) GCP Location.
- gcp
Resource StringService Agent Id - (Updatable) The ID of the GCP resource service agent.
- gcp
Workload StringIdentity Pool Id - (Updatable) The ID of the cloud GCP Workload Identity Pool.
- gcp
Workload StringIdentity Provider Id - (Updatable) The ID of the GCP Workload Identity Provider.
- issuer
Url String - (Updatable) OIDC token issuer Url
- project
Id String - (Updatable) Project id of the customer project.
- resource
Id 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
- 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"} - 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:
- Gcp
Identity stringConnectivity Status - The current Connectivity status of GCP Identity Connector resource.
- Gcp
Nodes List<DbmulticloudOracle Db Gcp Identity Connector Gcp Node> - List of All VMs where GCP Identity Connector is configured for this VMCluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- State string
- The current lifecycle state of the GCP Identity Connector resource.
- 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'
- Gcp
Identity stringConnectivity Status - The current Connectivity status of GCP Identity Connector resource.
- Gcp
Nodes []DbmulticloudOracle Db Gcp Identity Connector Gcp Node - List of All VMs where GCP Identity Connector is configured for this VMCluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- State string
- The current lifecycle state of the GCP Identity Connector resource.
- 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'
- gcp
Identity StringConnectivity Status - The current Connectivity status of GCP Identity Connector resource.
- gcp
Nodes List<DbmulticloudOracle Db Gcp Identity Connector Gcp Node> - List of All VMs where GCP Identity Connector is configured for this VMCluster.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- state String
- The current lifecycle state of the GCP Identity Connector resource.
- 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'
- gcp
Identity stringConnectivity Status - The current Connectivity status of GCP Identity Connector resource.
- gcp
Nodes DbmulticloudOracle Db Gcp Identity Connector Gcp Node[] - List of All VMs where GCP Identity Connector is configured for this VMCluster.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- state string
- The current lifecycle state of the GCP Identity Connector resource.
- {[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'
- gcp_
identity_ strconnectivity_ status - The current Connectivity status of GCP Identity Connector resource.
- gcp_
nodes Sequence[DbmulticloudOracle Db Gcp Identity Connector Gcp Node] - 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_ strdetails - Description of the current lifecycle state in more detail.
- state str
- The current lifecycle state of the GCP Identity Connector resource.
- 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'
- gcp
Identity StringConnectivity Status - The current Connectivity status of GCP Identity Connector resource.
- gcp
Nodes 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.
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- state String
- The current lifecycle state of the GCP Identity Connector resource.
- 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'
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) -> DbmulticloudOracleDbGcpIdentityConnectorfunc 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.
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the Oracle DB GCP Identity Connector resource.
- 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"} - Display
Name string - (Updatable) Oracle DB Google GCP Identity Connector resource name.
- 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"} - Gcp
Identity stringConnectivity Status - The current Connectivity status of GCP Identity Connector resource.
- Gcp
Location string - (Updatable) GCP Location.
- Gcp
Nodes List<DbmulticloudOracle Db Gcp Identity Connector Gcp Node> - List of All VMs where GCP Identity Connector is configured for this VMCluster.
- Gcp
Resource stringService Agent Id - (Updatable) The ID of the GCP resource service agent.
- Gcp
Workload stringIdentity Pool Id - (Updatable) The ID of the cloud GCP Workload Identity Pool.
- Gcp
Workload stringIdentity Provider Id - (Updatable) The ID of the GCP Workload Identity Provider.
- Issuer
Url string - (Updatable) OIDC token issuer Url
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- Project
Id string - (Updatable) Project id of the customer project.
- Resource
Id 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.
- 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 - (Updatable) The OCID of the compartment that contains the Oracle DB GCP Identity Connector resource.
- 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"} - Display
Name string - (Updatable) Oracle DB Google GCP Identity Connector resource name.
- 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"} - Gcp
Identity stringConnectivity Status - The current Connectivity status of GCP Identity Connector resource.
- Gcp
Location string - (Updatable) GCP Location.
- Gcp
Nodes []DbmulticloudOracle Db Gcp Identity Connector Gcp Node Args - List of All VMs where GCP Identity Connector is configured for this VMCluster.
- Gcp
Resource stringService Agent Id - (Updatable) The ID of the GCP resource service agent.
- Gcp
Workload stringIdentity Pool Id - (Updatable) The ID of the cloud GCP Workload Identity Pool.
- Gcp
Workload stringIdentity Provider Id - (Updatable) The ID of the GCP Workload Identity Provider.
- Issuer
Url string - (Updatable) OIDC token issuer Url
- Lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- Project
Id string - (Updatable) Project id of the customer project.
- Resource
Id 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.
- 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 - (Updatable) The OCID of the compartment that contains the Oracle DB GCP Identity Connector resource.
- 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"} - display
Name String - (Updatable) Oracle DB Google GCP Identity Connector resource name.
- 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"} - gcp
Identity StringConnectivity Status - The current Connectivity status of GCP Identity Connector resource.
- gcp
Location String - (Updatable) GCP Location.
- gcp
Nodes List<DbmulticloudOracle Db Gcp Identity Connector Gcp Node> - List of All VMs where GCP Identity Connector is configured for this VMCluster.
- gcp
Resource StringService Agent Id - (Updatable) The ID of the GCP resource service agent.
- gcp
Workload StringIdentity Pool Id - (Updatable) The ID of the cloud GCP Workload Identity Pool.
- gcp
Workload StringIdentity Provider Id - (Updatable) The ID of the GCP Workload Identity Provider.
- issuer
Url String - (Updatable) OIDC token issuer Url
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- project
Id String - (Updatable) Project id of the customer project.
- resource
Id 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.
- 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 - (Updatable) The OCID of the compartment that contains the Oracle DB GCP Identity Connector resource.
- {[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"} - display
Name string - (Updatable) Oracle DB Google GCP Identity Connector resource name.
- {[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"} - gcp
Identity stringConnectivity Status - The current Connectivity status of GCP Identity Connector resource.
- gcp
Location string - (Updatable) GCP Location.
- gcp
Nodes DbmulticloudOracle Db Gcp Identity Connector Gcp Node[] - List of All VMs where GCP Identity Connector is configured for this VMCluster.
- gcp
Resource stringService Agent Id - (Updatable) The ID of the GCP resource service agent.
- gcp
Workload stringIdentity Pool Id - (Updatable) The ID of the cloud GCP Workload Identity Pool.
- gcp
Workload stringIdentity Provider Id - (Updatable) The ID of the GCP Workload Identity Provider.
- issuer
Url string - (Updatable) OIDC token issuer Url
- lifecycle
State stringDetails - Description of the current lifecycle state in more detail.
- project
Id string - (Updatable) Project id of the customer project.
- resource
Id 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.
- {[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 - (Updatable) The OCID of the compartment that contains the Oracle DB GCP Identity Connector resource.
- 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.
- 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_ strconnectivity_ status - The current Connectivity status of GCP Identity Connector resource.
- gcp_
location str - (Updatable) GCP Location.
- gcp_
nodes Sequence[DbmulticloudOracle Db Gcp Identity Connector Gcp Node Args] - List of All VMs where GCP Identity Connector is configured for this VMCluster.
- gcp_
resource_ strservice_ agent_ id - (Updatable) The ID of the GCP resource service agent.
- gcp_
workload_ stridentity_ pool_ id - (Updatable) The ID of the cloud GCP Workload Identity Pool.
- gcp_
workload_ stridentity_ provider_ id - (Updatable) The ID of the GCP Workload Identity Provider.
- issuer_
url str - (Updatable) OIDC token issuer Url
- lifecycle_
state_ strdetails - 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.
- 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 - (Updatable) The OCID of the compartment that contains the Oracle DB GCP Identity Connector resource.
- 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"} - display
Name String - (Updatable) Oracle DB Google GCP Identity Connector resource name.
- 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"} - gcp
Identity StringConnectivity Status - The current Connectivity status of GCP Identity Connector resource.
- gcp
Location String - (Updatable) 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 - (Updatable) The ID of the GCP resource service agent.
- gcp
Workload StringIdentity Pool Id - (Updatable) The ID of the cloud GCP Workload Identity Pool.
- gcp
Workload StringIdentity Provider Id - (Updatable) The ID of the GCP Workload Identity Provider.
- issuer
Url String - (Updatable) OIDC token issuer Url
- lifecycle
State StringDetails - Description of the current lifecycle state in more detail.
- project
Id String - (Updatable) Project id of the customer project.
- resource
Id 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.
- 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'
Supporting Types
DbmulticloudOracleDbGcpIdentityConnectorGcpNode, DbmulticloudOracleDbGcpIdentityConnectorGcpNodeArgs
- 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'
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
ociTerraform Provider.
