Get Engine Versions Plain Args
data class GetEngineVersionsPlainArgs(val location: String? = null, val project: String? = null, val versionPrefix: String? = null) : ConvertibleToJava<GetEngineVersionsPlainArgs>
A collection of arguments for invoking getEngineVersions.
Properties
Link copied to clipboard
Link copied to clipboard
If provided, the provider will only return versions that match the string prefix. For example, 1.11.
will match all 1.11
series releases. Since this is just a string match, it's recommended that you append a .
after minor versions to ensure that prefixes such as 1.1
don't match versions like 1.12.5-gke.10
accidentally. See the docs on versioning schema for full details on how version strings are formatted.