IdentityConnector
import type { IdentityConnector } from "https://googleapis.deno.dev/v1/oracledatabase:v1.ts";
The identity connector details which will allow OCI to securely access the resources in the customer project.
interface IdentityConnector {
readonly connectionState?:
| "CONNECTION_STATE_UNSPECIFIED"
| "CONNECTED"
| "PARTIALLY_CONNECTED"
| "DISCONNECTED"
| "UNKNOWN";
readonly serviceAgentEmail?: string;
}