@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
72 lines (71 loc) • 2.22 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({});
* ```
*/
export declare function getEscloudNodeAvailableSpecs(args?: GetEscloudNodeAvailableSpecsArgs, opts?: pulumi.InvokeOptions): Promise<GetEscloudNodeAvailableSpecsResult>;
/**
* A collection of arguments for invoking getEscloudNodeAvailableSpecs.
*/
export interface GetEscloudNodeAvailableSpecsArgs {
/**
* The id of the instance.
*/
instanceId?: string;
/**
* File name where to save data source results.
*/
outputFile?: string;
}
/**
* A collection of values returned by getEscloudNodeAvailableSpecs.
*/
export interface GetEscloudNodeAvailableSpecsResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly instanceId?: string;
/**
* The collection of query.
*/
readonly nodeSpecs: outputs.escloud_v2.GetEscloudNodeAvailableSpecsNodeSpec[];
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({});
* ```
*/
export declare function getEscloudNodeAvailableSpecsOutput(args?: GetEscloudNodeAvailableSpecsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetEscloudNodeAvailableSpecsResult>;
/**
* A collection of arguments for invoking getEscloudNodeAvailableSpecs.
*/
export interface GetEscloudNodeAvailableSpecsOutputArgs {
/**
* The id of the instance.
*/
instanceId?: pulumi.Input<string>;
/**
* File name where to save data source results.
*/
outputFile?: pulumi.Input<string>;
}