import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get the list of compatible netboots for 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 netboots = ovh.Dedicated.getServerBoots({ * serviceName: "myserver", * bootType: "harddisk", * }); * ``` */ export declare function getServerBoots(args: GetServerBootsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getServerBoots. */ export interface GetServerBootsArgs { /** * Filter the value of bootType property (harddisk, rescue, internal, network) */ bootType?: string; /** * Filter the value of kernel property (iPXE script name) */ kernel?: string; /** * The internal name of your dedicated server. */ serviceName: string; } /** * A collection of values returned by getServerBoots. */ export interface GetServerBootsResult { readonly bootType?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly kernel?: string; /** * The list of dedicated server netboots. */ readonly results: number[]; readonly serviceName: string; } /** * Use this data source to get the list of compatible netboots for 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 netboots = ovh.Dedicated.getServerBoots({ * serviceName: "myserver", * bootType: "harddisk", * }); * ``` */ export declare function getServerBootsOutput(args: GetServerBootsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getServerBoots. */ export interface GetServerBootsOutputArgs { /** * Filter the value of bootType property (harddisk, rescue, internal, network) */ bootType?: pulumi.Input; /** * Filter the value of kernel property (iPXE script name) */ kernel?: pulumi.Input; /** * The internal name of your dedicated server. */ serviceName: pulumi.Input; }