@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
32 lines (31 loc) • 1.24 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
export declare function getServerGroupAttributes(args: GetServerGroupAttributesArgs, opts?: pulumi.InvokeOptions): Promise<GetServerGroupAttributesResult>;
/**
* A collection of arguments for invoking getServerGroupAttributes.
*/
export interface GetServerGroupAttributesArgs {
outputFile?: string;
serverGroupId: string;
}
/**
* A collection of values returned by getServerGroupAttributes.
*/
export interface GetServerGroupAttributesResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly outputFile?: string;
readonly serverGroupAttributes: outputs.nlb.GetServerGroupAttributesServerGroupAttribute[];
readonly serverGroupId: string;
readonly totalCount: number;
}
export declare function getServerGroupAttributesOutput(args: GetServerGroupAttributesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetServerGroupAttributesResult>;
/**
* A collection of arguments for invoking getServerGroupAttributes.
*/
export interface GetServerGroupAttributesOutputArgs {
outputFile?: pulumi.Input<string>;
serverGroupId: pulumi.Input<string>;
}