getSizes

suspend fun getSizes(argument: GetSizesPlainArgs): GetSizesResult

Retrieves information about the Droplet sizes that DigitalOcean supports, with the ability to filter and sort the results. If no filters are specified, all sizes will be returned.

Return

A collection of values returned by getSizes.

Parameters

argument

A collection of arguments for invoking getSizes.


suspend fun getSizes(filters: List<GetSizesFilter>? = null, sorts: List<GetSizesSort>? = null): GetSizesResult

Return

A collection of values returned by getSizes.

Parameters

filters

Filter the results. The filter block is documented below.

sorts

Sort the results. The sort block is documented below.

See also


suspend fun getSizes(argument: suspend GetSizesPlainArgsBuilder.() -> Unit): GetSizesResult

Return

A collection of values returned by getSizes.

Parameters

argument

Builder for com.pulumi.digitalocean.kotlin.inputs.GetSizesPlainArgs.

See also