Interface AwsServerConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AwsServerConfig
,AwsServerConfig.Builder
public interface AwsServerConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
The resource name of the config.com.google.protobuf.ByteString
getNameBytes()
The resource name of the config.String
getSupportedAwsRegions(int index)
The list of supported AWS regions.com.google.protobuf.ByteString
getSupportedAwsRegionsBytes(int index)
The list of supported AWS regions.int
getSupportedAwsRegionsCount()
The list of supported AWS regions.List<String>
getSupportedAwsRegionsList()
The list of supported AWS regions.AwsK8sVersionInfo
getValidVersions(int index)
List of valid Kubernetes versions.int
getValidVersionsCount()
List of valid Kubernetes versions.List<AwsK8sVersionInfo>
getValidVersionsList()
List of valid Kubernetes versions.AwsK8sVersionInfoOrBuilder
getValidVersionsOrBuilder(int index)
List of valid Kubernetes versions.List<? extends AwsK8sVersionInfoOrBuilder>
getValidVersionsOrBuilderList()
List of valid Kubernetes versions.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
The resource name of the config.
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The resource name of the config.
string name = 1;
- Returns:
- The bytes for name.
-
getValidVersionsList
List<AwsK8sVersionInfo> getValidVersionsList()
List of valid Kubernetes versions.
repeated .google.cloud.gkemulticloud.v1.AwsK8sVersionInfo valid_versions = 2;
-
getValidVersions
AwsK8sVersionInfo getValidVersions(int index)
List of valid Kubernetes versions.
repeated .google.cloud.gkemulticloud.v1.AwsK8sVersionInfo valid_versions = 2;
-
getValidVersionsCount
int getValidVersionsCount()
List of valid Kubernetes versions.
repeated .google.cloud.gkemulticloud.v1.AwsK8sVersionInfo valid_versions = 2;
-
getValidVersionsOrBuilderList
List<? extends AwsK8sVersionInfoOrBuilder> getValidVersionsOrBuilderList()
List of valid Kubernetes versions.
repeated .google.cloud.gkemulticloud.v1.AwsK8sVersionInfo valid_versions = 2;
-
getValidVersionsOrBuilder
AwsK8sVersionInfoOrBuilder getValidVersionsOrBuilder(int index)
List of valid Kubernetes versions.
repeated .google.cloud.gkemulticloud.v1.AwsK8sVersionInfo valid_versions = 2;
-
getSupportedAwsRegionsList
List<String> getSupportedAwsRegionsList()
The list of supported AWS regions.
repeated string supported_aws_regions = 3;
- Returns:
- A list containing the supportedAwsRegions.
-
getSupportedAwsRegionsCount
int getSupportedAwsRegionsCount()
The list of supported AWS regions.
repeated string supported_aws_regions = 3;
- Returns:
- The count of supportedAwsRegions.
-
getSupportedAwsRegions
String getSupportedAwsRegions(int index)
The list of supported AWS regions.
repeated string supported_aws_regions = 3;
- Parameters:
index
- The index of the element to return.- Returns:
- The supportedAwsRegions at the given index.
-
getSupportedAwsRegionsBytes
com.google.protobuf.ByteString getSupportedAwsRegionsBytes(int index)
The list of supported AWS regions.
repeated string supported_aws_regions = 3;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the supportedAwsRegions at the given index.
-
-