Get Engine Versions Result
data class GetEngineVersionsResult(val defaultClusterVersion: String, val id: String, val latestMasterVersion: String, val latestNodeVersion: String, val location: String? = null, val project: String? = null, val releaseChannelDefaultVersion: Map<String, String>, val releaseChannelLatestVersion: Map<String, String>, val validMasterVersions: List<String>, val validNodeVersions: List<String>, val versionPrefix: String? = null)
A collection of values returned by getEngineVersions.
Constructors
Link copied to clipboard
constructor(defaultClusterVersion: String, id: String, latestMasterVersion: String, latestNodeVersion: String, location: String? = null, project: String? = null, releaseChannelDefaultVersion: Map<String, String>, releaseChannelLatestVersion: Map<String, String>, validMasterVersions: List<String>, validNodeVersions: List<String>, versionPrefix: String? = null)
Properties
Link copied to clipboard
Version of Kubernetes the service deploys by default.
Link copied to clipboard
The latest version available in the given zone for use with master instances.
Link copied to clipboard
The latest version available in the given zone for use with node instances.
Link copied to clipboard
A map from a release channel name to the channel's default version. See the docs on available release channel names for more details.
Link copied to clipboard
A map from a release channel name to the channel's latest version. See the docs on available release channel names for more details.
Link copied to clipboard
A list of versions available in the given zone for use with master instances.
Link copied to clipboard
A list of versions available in the given zone for use with node instances.
Link copied to clipboard