import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Get the details of your Ovhcloud Connect products. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const occs = ovh.OVHcloud.Connect({}); * ``` */ export declare function connects(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by Connects. */ export interface ConnectsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly occs: outputs.OVHcloud.ConnectsOcc[]; } /** * Get the details of your Ovhcloud Connect products. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const occs = ovh.OVHcloud.Connect({}); * ``` */ export declare function connectsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output;