import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific On Prem Connector resource in Oracle Cloud Infrastructure Data Safe service. * * Gets the details of the specified on-premises connector. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOnPremConnector = oci.datasafe.getOnpremConnector({ * onPremConnectorId: testOnPremConnectorOciDataSafeOnPremConnector.id, * }); * ``` */ export declare function getOnpremConnector(args: GetOnpremConnectorArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOnpremConnector. */ export interface GetOnpremConnectorArgs { /** * The OCID of the on-premises connector. */ onPremConnectorId: string; } /** * A collection of values returned by getOnpremConnector. */ export interface GetOnpremConnectorResult { /** * Latest available version of the on-premises connector. */ readonly availableVersion: string; /** * The OCID of the compartment that contains the on-premises connector. */ readonly compartmentId: string; /** * Created version of the on-premises connector. */ readonly createdVersion: 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 description of the on-premises connector. */ readonly description: string; /** * The display name of the on-premises connector. */ 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 of the on-premises connector. */ readonly id: string; /** * Details about the current state of the on-premises connector. */ readonly lifecycleDetails: string; readonly onPremConnectorId: string; /** * The current state of the on-premises connector. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the on-premises connector was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). */ readonly timeCreated: string; } /** * This data source provides details about a specific On Prem Connector resource in Oracle Cloud Infrastructure Data Safe service. * * Gets the details of the specified on-premises connector. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOnPremConnector = oci.datasafe.getOnpremConnector({ * onPremConnectorId: testOnPremConnectorOciDataSafeOnPremConnector.id, * }); * ``` */ export declare function getOnpremConnectorOutput(args: GetOnpremConnectorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOnpremConnector. */ export interface GetOnpremConnectorOutputArgs { /** * The OCID of the on-premises connector. */ onPremConnectorId: pulumi.Input; } //# sourceMappingURL=getOnpremConnector.d.ts.map