Interface AzureServerConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AzureServerConfig,AzureServerConfig.Builder
public interface AzureServerConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()The `AzureServerConfig` resource name.com.google.protobuf.ByteStringgetNameBytes()The `AzureServerConfig` resource name.StringgetSupportedAzureRegions(int index)The list of supported Azure regions.com.google.protobuf.ByteStringgetSupportedAzureRegionsBytes(int index)The list of supported Azure regions.intgetSupportedAzureRegionsCount()The list of supported Azure regions.List<String>getSupportedAzureRegionsList()The list of supported Azure regions.AzureK8sVersionInfogetValidVersions(int index)List of valid Kubernetes versions.intgetValidVersionsCount()List of valid Kubernetes versions.List<AzureK8sVersionInfo>getValidVersionsList()List of valid Kubernetes versions.AzureK8sVersionInfoOrBuildergetValidVersionsOrBuilder(int index)List of valid Kubernetes versions.List<? extends AzureK8sVersionInfoOrBuilder>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 `AzureServerConfig` resource name. `AzureServerConfig` names are formatted as `projects/<project-number>/locations/<region>/azureServerConfig`. See [Resource Names](https://cloud.google.com/apis/design/resource_names) for more details on Google Cloud Platform resource names.
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The `AzureServerConfig` resource name. `AzureServerConfig` names are formatted as `projects/<project-number>/locations/<region>/azureServerConfig`. See [Resource Names](https://cloud.google.com/apis/design/resource_names) for more details on Google Cloud Platform resource names.
string name = 1;- Returns:
- The bytes for name.
-
getValidVersionsList
List<AzureK8sVersionInfo> getValidVersionsList()
List of valid Kubernetes versions.
repeated .google.cloud.gkemulticloud.v1.AzureK8sVersionInfo valid_versions = 2;
-
getValidVersions
AzureK8sVersionInfo getValidVersions(int index)
List of valid Kubernetes versions.
repeated .google.cloud.gkemulticloud.v1.AzureK8sVersionInfo valid_versions = 2;
-
getValidVersionsCount
int getValidVersionsCount()
List of valid Kubernetes versions.
repeated .google.cloud.gkemulticloud.v1.AzureK8sVersionInfo valid_versions = 2;
-
getValidVersionsOrBuilderList
List<? extends AzureK8sVersionInfoOrBuilder> getValidVersionsOrBuilderList()
List of valid Kubernetes versions.
repeated .google.cloud.gkemulticloud.v1.AzureK8sVersionInfo valid_versions = 2;
-
getValidVersionsOrBuilder
AzureK8sVersionInfoOrBuilder getValidVersionsOrBuilder(int index)
List of valid Kubernetes versions.
repeated .google.cloud.gkemulticloud.v1.AzureK8sVersionInfo valid_versions = 2;
-
getSupportedAzureRegionsList
List<String> getSupportedAzureRegionsList()
The list of supported Azure regions.
repeated string supported_azure_regions = 3;- Returns:
- A list containing the supportedAzureRegions.
-
getSupportedAzureRegionsCount
int getSupportedAzureRegionsCount()
The list of supported Azure regions.
repeated string supported_azure_regions = 3;- Returns:
- The count of supportedAzureRegions.
-
getSupportedAzureRegions
String getSupportedAzureRegions(int index)
The list of supported Azure regions.
repeated string supported_azure_regions = 3;- Parameters:
index- The index of the element to return.- Returns:
- The supportedAzureRegions at the given index.
-
getSupportedAzureRegionsBytes
com.google.protobuf.ByteString getSupportedAzureRegionsBytes(int index)
The list of supported Azure regions.
repeated string supported_azure_regions = 3;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the supportedAzureRegions at the given index.
-
-