import * as pulumi from "@pulumi/pulumi"; /** * Gets information about a baremetal option. * For more information, see [the documentation](https://developers.scaleway.com/en/products/baremetal/api). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumi/scaleway"; * * const byName = scaleway.getBaremetalOption({ * name: "Remote Access", * }); * const byId = scaleway.getBaremetalOption({ * optionId: "931df052-d713-4674-8b58-96a63244c8e2", * }); * ``` */ export declare function getBaremetalOption(args?: GetBaremetalOptionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBaremetalOption. */ export interface GetBaremetalOptionArgs { /** * The option name. Only one of `name` and `optionId` should be specified. */ name?: string; /** * The option id. Only one of `name` and `optionId` should be specified. */ optionId?: string; /** * `zone`) The zone in which the option exists. */ zone?: string; } /** * A collection of values returned by getBaremetalOption. */ export interface GetBaremetalOptionResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Is false if the option could not be added or removed. */ readonly manageable: boolean; /** * The name of the option. */ readonly name?: string; readonly optionId?: string; readonly zone: string; } /** * Gets information about a baremetal option. * For more information, see [the documentation](https://developers.scaleway.com/en/products/baremetal/api). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as scaleway from "@pulumi/scaleway"; * * const byName = scaleway.getBaremetalOption({ * name: "Remote Access", * }); * const byId = scaleway.getBaremetalOption({ * optionId: "931df052-d713-4674-8b58-96a63244c8e2", * }); * ``` */ export declare function getBaremetalOptionOutput(args?: GetBaremetalOptionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getBaremetalOption. */ export interface GetBaremetalOptionOutputArgs { /** * The option name. Only one of `name` and `optionId` should be specified. */ name?: pulumi.Input; /** * The option id. Only one of `name` and `optionId` should be specified. */ optionId?: pulumi.Input; /** * `zone`) The zone in which the option exists. */ zone?: pulumi.Input; }