import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to get the network information about a dedicated server associated with your OVHcloud Account. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const spec = ovh.Dedicated.getServerSpecificationsNetwork({ * serviceName: "myserver", * }); * ``` */ export declare function getServerSpecificationsNetwork(args: GetServerSpecificationsNetworkArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getServerSpecificationsNetwork. */ export interface GetServerSpecificationsNetworkArgs { /** * The internal name of your dedicated server. */ serviceName: string; } /** * A collection of values returned by getServerSpecificationsNetwork. */ export interface GetServerSpecificationsNetworkResult { /** * vrack bandwidth limitation */ readonly bandwidth: outputs.Dedicated.GetServerSpecificationsNetworkBandwidth; /** * Network connection flow rate */ readonly connectionVal: outputs.Dedicated.GetServerSpecificationsNetworkConnectionVal; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * OLA details */ readonly ola: outputs.Dedicated.GetServerSpecificationsNetworkOla; /** * Routing details */ readonly routing: outputs.Dedicated.GetServerSpecificationsNetworkRouting; readonly serviceName: string; /** * Switching details */ readonly switching: outputs.Dedicated.GetServerSpecificationsNetworkSwitching; /** * Traffic details */ readonly traffic: outputs.Dedicated.GetServerSpecificationsNetworkTraffic; /** * VMAC information for this dedicated server */ readonly vmac: outputs.Dedicated.GetServerSpecificationsNetworkVmac; /** * vRack details */ readonly vrack: outputs.Dedicated.GetServerSpecificationsNetworkVrack; } /** * Use this data source to get the network information about a dedicated server associated with your OVHcloud Account. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const spec = ovh.Dedicated.getServerSpecificationsNetwork({ * serviceName: "myserver", * }); * ``` */ export declare function getServerSpecificationsNetworkOutput(args: GetServerSpecificationsNetworkOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getServerSpecificationsNetwork. */ export interface GetServerSpecificationsNetworkOutputArgs { /** * The internal name of your dedicated server. */ serviceName: pulumi.Input; }