import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * 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 * * ```typescript * 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, * }); * ``` */ export declare function getDbmulticloudOracleDbGcpIdentityConnectors(args: GetDbmulticloudOracleDbGcpIdentityConnectorsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDbmulticloudOracleDbGcpIdentityConnectors. */ export interface GetDbmulticloudOracleDbGcpIdentityConnectorsArgs { /** * The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * A filter to return Oracle DB GCP Identity Connector resources that match the specified display name. */ displayName?: string; filters?: inputs.oci.GetDbmulticloudOracleDbGcpIdentityConnectorsFilter[]; /** * A filter to return Oracle DB Identity Connector resource that match the given resource [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ resourceId?: string; /** * A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getDbmulticloudOracleDbGcpIdentityConnectors. */ export interface GetDbmulticloudOracleDbGcpIdentityConnectorsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the Oracle DB GCP Identity Connector resource. */ readonly compartmentId: string; /** * Oracle DB GCP Identity Connector resource name. */ readonly displayName?: string; readonly filters?: outputs.oci.GetDbmulticloudOracleDbGcpIdentityConnectorsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of oracle_db_gcp_identity_connector_summary_collection. */ readonly oracleDbGcpIdentityConnectorSummaryCollections: outputs.oci.GetDbmulticloudOracleDbGcpIdentityConnectorsOracleDbGcpIdentityConnectorSummaryCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the GCP VM Cluster resource. */ readonly resourceId?: string; /** * The current lifecycle state of the GCP Identity Connector resource. */ readonly state?: string; } /** * 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 * * ```typescript * 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, * }); * ``` */ export declare function getDbmulticloudOracleDbGcpIdentityConnectorsOutput(args: GetDbmulticloudOracleDbGcpIdentityConnectorsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDbmulticloudOracleDbGcpIdentityConnectors. */ export interface GetDbmulticloudOracleDbGcpIdentityConnectorsOutputArgs { /** * The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * A filter to return Oracle DB GCP Identity Connector resources that match the specified display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return Oracle DB Identity Connector resource that match the given resource [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ resourceId?: pulumi.Input; /** * A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getDbmulticloudOracleDbGcpIdentityConnectors.d.ts.map