getTiers

suspend fun getTiers(argument: GetTiersPlainArgs): GetTiersResult

Get all available machine types (tiers) for a project, for example, db-custom-1-3840. For more information see the official documentation and API.

Example Usage

No Java example available.

Return

A collection of values returned by getTiers.

Parameters

argument

A collection of arguments for invoking getTiers.


suspend fun getTiers(project: String? = null): GetTiersResult

Return

A collection of values returned by getTiers.

Parameters

project

The Project ID for which to list tiers. If project is not provided, the project defined within the default provider configuration is used.

See also


suspend fun getTiers(argument: suspend GetTiersPlainArgsBuilder.() -> Unit): GetTiersResult

Return

A collection of values returned by getTiers.

Parameters

argument

Builder for com.pulumi.gcp.sql.kotlin.inputs.GetTiersPlainArgs.

See also