palette-sdk-typescript
Version:
TypeScript SDK for Spectro Cloud Palette API
36 lines (35 loc) • 1.37 kB
TypeScript
/**
* Copyright (c) Spectro Cloud
* SPDX-License-Identifier: Apache-2.0
*/
/**
* Generated by orval v7.17.0 🍺
* Do not edit manually.
* Palette APIs - 4.8
* OpenAPI spec version: v1
*/
export type CloudAccountsListSummaryParams = {
/**
* Filters can be combined with AND, OR operators with field path name. Eg: metadata.name=TestServiceANDspec.cloudType=aws
Server will be restricted to certain fields based on the indexed data for each resource.
*/
filters?: string;
/**
* Specify the fields with sort order. 1 indicates ascending and -1 for descending. Eg: orderBy=metadata.name=1,metadata.uid=-1
*/
orderBy?: string;
/**
* limit is a maximum number of responses to return for a list call. Default and maximum value of the limit is 50.
If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results.
*/
limit?: number;
/**
* offset is the next index number from which the response will start. The response offset value can be used along with continue token for the pagination.
*/
offset?: number;
/**
* continue token to paginate the subsequent data items
*/
continue?: string;
};
//# sourceMappingURL=cloudAccountsListSummaryParams.d.ts.map