Package com.google.container.v1
Interface ServerConfig.ReleaseChannelConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ServerConfig.ReleaseChannelConfig
,ServerConfig.ReleaseChannelConfig.Builder
- Enclosing class:
- ServerConfig
public static interface ServerConfig.ReleaseChannelConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReleaseChannel.Channel
getChannel()
The release channel this configuration applies to.int
getChannelValue()
The release channel this configuration applies to.String
getDefaultVersion()
The default version for newly created clusters on the channel.com.google.protobuf.ByteString
getDefaultVersionBytes()
The default version for newly created clusters on the channel.String
getValidVersions(int index)
List of valid versions for the channel.com.google.protobuf.ByteString
getValidVersionsBytes(int index)
List of valid versions for the channel.int
getValidVersionsCount()
List of valid versions for the channel.List<String>
getValidVersionsList()
List of valid versions for the channel.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getChannelValue
int getChannelValue()
The release channel this configuration applies to.
.google.container.v1.ReleaseChannel.Channel channel = 1;
- Returns:
- The enum numeric value on the wire for channel.
-
getChannel
ReleaseChannel.Channel getChannel()
The release channel this configuration applies to.
.google.container.v1.ReleaseChannel.Channel channel = 1;
- Returns:
- The channel.
-
getDefaultVersion
String getDefaultVersion()
The default version for newly created clusters on the channel.
string default_version = 2;
- Returns:
- The defaultVersion.
-
getDefaultVersionBytes
com.google.protobuf.ByteString getDefaultVersionBytes()
The default version for newly created clusters on the channel.
string default_version = 2;
- Returns:
- The bytes for defaultVersion.
-
getValidVersionsList
List<String> getValidVersionsList()
List of valid versions for the channel.
repeated string valid_versions = 4;
- Returns:
- A list containing the validVersions.
-
getValidVersionsCount
int getValidVersionsCount()
List of valid versions for the channel.
repeated string valid_versions = 4;
- Returns:
- The count of validVersions.
-
getValidVersions
String getValidVersions(int index)
List of valid versions for the channel.
repeated string valid_versions = 4;
- Parameters:
index
- The index of the element to return.- Returns:
- The validVersions at the given index.
-
getValidVersionsBytes
com.google.protobuf.ByteString getValidVersionsBytes(int index)
List of valid versions for the channel.
repeated string valid_versions = 4;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the validVersions at the given index.
-
-