// *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; import * as utilities from "./utilities"; export function getSoftware(args?: GetSoftwareArgs, opts?: pulumi.InvokeOptions): Promise { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("timeweb-cloud:index/getSoftware:getSoftware", { "id": args.id, "name": args.name, "os": args.os, }, opts, utilities.getPackage()); } /** * A collection of arguments for invoking getSoftware. */ export interface GetSoftwareArgs { id?: string; name?: string; os?: inputs.GetSoftwareOs; } /** * A collection of values returned by getSoftware. */ export interface GetSoftwareResult { readonly id: string; readonly name: string; readonly os?: outputs.GetSoftwareOs; } export function getSoftwareOutput(args?: GetSoftwareOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("timeweb-cloud:index/getSoftware:getSoftware", { "id": args.id, "name": args.name, "os": args.os, }, opts, utilities.getPackage()); } /** * A collection of arguments for invoking getSoftware. */ export interface GetSoftwareOutputArgs { id?: pulumi.Input; name?: pulumi.Input; os?: pulumi.Input; }