@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
74 lines (73 loc) • 2.48 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Use this data source to query detailed information of escloud node available specs
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const foo = volcengine.escloud_v2.getEscloudNodeAvailableSpecs({});
* ```
*/
/** @deprecated volcengine.escloud_v2.EscloudNodeAvailableSpecs has been deprecated in favor of volcengine.escloud_v2.getEscloudNodeAvailableSpecs */
export declare function escloudNodeAvailableSpecs(args?: EscloudNodeAvailableSpecsArgs, opts?: pulumi.InvokeOptions): Promise<EscloudNodeAvailableSpecsResult>;
/**
* A collection of arguments for invoking EscloudNodeAvailableSpecs.
*/
export interface EscloudNodeAvailableSpecsArgs {
/**
* The id of the instance.
*/
instanceId?: string;
/**
* File name where to save data source results.
*/
outputFile?: string;
}
/**
* A collection of values returned by EscloudNodeAvailableSpecs.
*/
export interface EscloudNodeAvailableSpecsResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly instanceId?: string;
/**
* The collection of query.
*/
readonly nodeSpecs: outputs.escloud_v2.EscloudNodeAvailableSpecsNodeSpec[];
readonly outputFile?: string;
/**
* The total count of query.
*/
readonly totalCount: number;
}
/**
* Use this data source to query detailed information of escloud node available specs
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
*
* const foo = volcengine.escloud_v2.getEscloudNodeAvailableSpecs({});
* ```
*/
/** @deprecated volcengine.escloud_v2.EscloudNodeAvailableSpecs has been deprecated in favor of volcengine.escloud_v2.getEscloudNodeAvailableSpecs */
export declare function escloudNodeAvailableSpecsOutput(args?: EscloudNodeAvailableSpecsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<EscloudNodeAvailableSpecsResult>;
/**
* A collection of arguments for invoking EscloudNodeAvailableSpecs.
*/
export interface EscloudNodeAvailableSpecsOutputArgs {
/**
* The id of the instance.
*/
instanceId?: pulumi.Input<string>;
/**
* File name where to save data source results.
*/
outputFile?: pulumi.Input<string>;
}