import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Cloud Db System Connector resource in Oracle Cloud Infrastructure Database Management service. * * Gets the details for the cloud connector specified by `cloudDbSystemConnectorId`. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudDbSystemConnector = oci.databasemanagement.getCloudDbSystemConnector({ * cloudDbSystemConnectorId: testCloudDbSystemConnectorOciDatabaseManagementCloudDbSystemConnector.id, * }); * ``` */ export declare function getCloudDbSystemConnector(args: GetCloudDbSystemConnectorArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudDbSystemConnector. */ export interface GetCloudDbSystemConnectorArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud connector. */ cloudDbSystemConnectorId: string; } /** * A collection of values returned by getCloudDbSystemConnector. */ export interface GetCloudDbSystemConnectorResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent used for the cloud DB system connector. */ readonly agentId: string; readonly cloudDbSystemConnectorId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB system that the connector is a part of. */ readonly cloudDbSystemId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * The error message indicating the reason for connection failure or `null` if the connection was successful. */ readonly connectionFailureMessage: string; /** * The connection details required to connect to a cloud DB system component. */ readonly connectionInfos: outputs.DatabaseManagement.GetCloudDbSystemConnectorConnectionInfo[]; /** * The status of connectivity to the cloud DB system component. */ readonly connectionStatus: string; /** * The type of connector. */ readonly connectorType: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * The user-friendly name for the cloud connector. The name does not have to be unique. */ readonly displayName: 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud DB system connector. */ readonly id: string; /** * Additional information about the current lifecycle state. */ readonly lifecycleDetails: string; /** * The current lifecycle state of the cloud DB system connector. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the connectionStatus of the cloud DB system connector was last updated. */ readonly timeConnectionStatusLastUpdated: string; /** * The date and time the cloud DB system connector was created. */ readonly timeCreated: string; /** * The date and time the cloud DB system connector was last updated. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Cloud Db System Connector resource in Oracle Cloud Infrastructure Database Management service. * * Gets the details for the cloud connector specified by `cloudDbSystemConnectorId`. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudDbSystemConnector = oci.databasemanagement.getCloudDbSystemConnector({ * cloudDbSystemConnectorId: testCloudDbSystemConnectorOciDatabaseManagementCloudDbSystemConnector.id, * }); * ``` */ export declare function getCloudDbSystemConnectorOutput(args: GetCloudDbSystemConnectorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudDbSystemConnector. */ export interface GetCloudDbSystemConnectorOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud connector. */ cloudDbSystemConnectorId: pulumi.Input; } //# sourceMappingURL=getCloudDbSystemConnector.d.ts.map