@pulumi/linode
Version:
A Pulumi package for creating and managing linode cloud resources.
57 lines (56 loc) • 2.13 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
/**
* Provides information about Linode LKE types that match a set of filters.
* For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-lke-types).
*/
export declare function getLkeTypes(args?: GetLkeTypesArgs, opts?: pulumi.InvokeOptions): Promise<GetLkeTypesResult>;
/**
* A collection of arguments for invoking getLkeTypes.
*/
export interface GetLkeTypesArgs {
filters?: inputs.GetLkeTypesFilter[];
/**
* The order in which results should be returned. (`asc`, `desc`; default `asc`)
*/
order?: string;
/**
* The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
*/
orderBy?: string;
types?: inputs.GetLkeTypesType[];
}
/**
* A collection of values returned by getLkeTypes.
*/
export interface GetLkeTypesResult {
readonly filters?: outputs.GetLkeTypesFilter[];
/**
* The ID representing the Kubernetes type.
*/
readonly id: string;
readonly order?: string;
readonly orderBy?: string;
readonly types?: outputs.GetLkeTypesType[];
}
/**
* Provides information about Linode LKE types that match a set of filters.
* For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-lke-types).
*/
export declare function getLkeTypesOutput(args?: GetLkeTypesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLkeTypesResult>;
/**
* A collection of arguments for invoking getLkeTypes.
*/
export interface GetLkeTypesOutputArgs {
filters?: pulumi.Input<pulumi.Input<inputs.GetLkeTypesFilterArgs>[]>;
/**
* The order in which results should be returned. (`asc`, `desc`; default `asc`)
*/
order?: pulumi.Input<string>;
/**
* The attribute to order the results by. See the Filterable Fields section for a list of valid fields.
*/
orderBy?: pulumi.Input<string>;
types?: pulumi.Input<pulumi.Input<inputs.GetLkeTypesTypeArgs>[]>;
}