@pulumi/linode
Version:
A Pulumi package for creating and managing linode cloud resources.
57 lines (56 loc) • 2.43 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
/**
* Provides information about Linode Network Transfer Prices that match a set of filters.
* For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-network-transfer-prices).
*/
export declare function getNetworkTransferPrices(args?: GetNetworkTransferPricesArgs, opts?: pulumi.InvokeOptions): Promise<GetNetworkTransferPricesResult>;
/**
* A collection of arguments for invoking getNetworkTransferPrices.
*/
export interface GetNetworkTransferPricesArgs {
filters?: inputs.GetNetworkTransferPricesFilter[];
/**
* 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.GetNetworkTransferPricesType[];
}
/**
* A collection of values returned by getNetworkTransferPrices.
*/
export interface GetNetworkTransferPricesResult {
readonly filters?: outputs.GetNetworkTransferPricesFilter[];
/**
* The ID representing the Network Transfer Price.
*/
readonly id: string;
readonly order?: string;
readonly orderBy?: string;
readonly types?: outputs.GetNetworkTransferPricesType[];
}
/**
* Provides information about Linode Network Transfer Prices that match a set of filters.
* For more information, see the [Linode APIv4 docs](https://techdocs.akamai.com/linode-api/reference/get-network-transfer-prices).
*/
export declare function getNetworkTransferPricesOutput(args?: GetNetworkTransferPricesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetNetworkTransferPricesResult>;
/**
* A collection of arguments for invoking getNetworkTransferPrices.
*/
export interface GetNetworkTransferPricesOutputArgs {
filters?: pulumi.Input<pulumi.Input<inputs.GetNetworkTransferPricesFilterArgs>[]>;
/**
* 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.GetNetworkTransferPricesTypeArgs>[]>;
}