• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2020 Google LLC
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     https://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 // Generated by the protocol buffer compiler.  DO NOT EDIT!
17 // source: google/cloud/gkemulticloud/v1/azure_resources.proto
18 
19 package com.google.cloud.gkemulticloud.v1;
20 
21 public interface AzureServerConfigOrBuilder
22     extends
23     // @@protoc_insertion_point(interface_extends:google.cloud.gkemulticloud.v1.AzureServerConfig)
24     com.google.protobuf.MessageOrBuilder {
25 
26   /**
27    *
28    *
29    * <pre>
30    * The `AzureServerConfig` resource name.
31    * `AzureServerConfig` names are formatted as
32    * `projects/&lt;project-number&gt;/locations/&lt;region&gt;/azureServerConfig`.
33    * See [Resource Names](https://cloud.google.com/apis/design/resource_names)
34    * for more details on Google Cloud Platform resource names.
35    * </pre>
36    *
37    * <code>string name = 1;</code>
38    *
39    * @return The name.
40    */
getName()41   java.lang.String getName();
42   /**
43    *
44    *
45    * <pre>
46    * The `AzureServerConfig` resource name.
47    * `AzureServerConfig` names are formatted as
48    * `projects/&lt;project-number&gt;/locations/&lt;region&gt;/azureServerConfig`.
49    * See [Resource Names](https://cloud.google.com/apis/design/resource_names)
50    * for more details on Google Cloud Platform resource names.
51    * </pre>
52    *
53    * <code>string name = 1;</code>
54    *
55    * @return The bytes for name.
56    */
getNameBytes()57   com.google.protobuf.ByteString getNameBytes();
58 
59   /**
60    *
61    *
62    * <pre>
63    * List of valid Kubernetes versions.
64    * </pre>
65    *
66    * <code>repeated .google.cloud.gkemulticloud.v1.AzureK8sVersionInfo valid_versions = 2;</code>
67    */
getValidVersionsList()68   java.util.List<com.google.cloud.gkemulticloud.v1.AzureK8sVersionInfo> getValidVersionsList();
69   /**
70    *
71    *
72    * <pre>
73    * List of valid Kubernetes versions.
74    * </pre>
75    *
76    * <code>repeated .google.cloud.gkemulticloud.v1.AzureK8sVersionInfo valid_versions = 2;</code>
77    */
getValidVersions(int index)78   com.google.cloud.gkemulticloud.v1.AzureK8sVersionInfo getValidVersions(int index);
79   /**
80    *
81    *
82    * <pre>
83    * List of valid Kubernetes versions.
84    * </pre>
85    *
86    * <code>repeated .google.cloud.gkemulticloud.v1.AzureK8sVersionInfo valid_versions = 2;</code>
87    */
getValidVersionsCount()88   int getValidVersionsCount();
89   /**
90    *
91    *
92    * <pre>
93    * List of valid Kubernetes versions.
94    * </pre>
95    *
96    * <code>repeated .google.cloud.gkemulticloud.v1.AzureK8sVersionInfo valid_versions = 2;</code>
97    */
98   java.util.List<? extends com.google.cloud.gkemulticloud.v1.AzureK8sVersionInfoOrBuilder>
getValidVersionsOrBuilderList()99       getValidVersionsOrBuilderList();
100   /**
101    *
102    *
103    * <pre>
104    * List of valid Kubernetes versions.
105    * </pre>
106    *
107    * <code>repeated .google.cloud.gkemulticloud.v1.AzureK8sVersionInfo valid_versions = 2;</code>
108    */
getValidVersionsOrBuilder( int index)109   com.google.cloud.gkemulticloud.v1.AzureK8sVersionInfoOrBuilder getValidVersionsOrBuilder(
110       int index);
111 
112   /**
113    *
114    *
115    * <pre>
116    * The list of supported Azure regions.
117    * </pre>
118    *
119    * <code>repeated string supported_azure_regions = 3;</code>
120    *
121    * @return A list containing the supportedAzureRegions.
122    */
getSupportedAzureRegionsList()123   java.util.List<java.lang.String> getSupportedAzureRegionsList();
124   /**
125    *
126    *
127    * <pre>
128    * The list of supported Azure regions.
129    * </pre>
130    *
131    * <code>repeated string supported_azure_regions = 3;</code>
132    *
133    * @return The count of supportedAzureRegions.
134    */
getSupportedAzureRegionsCount()135   int getSupportedAzureRegionsCount();
136   /**
137    *
138    *
139    * <pre>
140    * The list of supported Azure regions.
141    * </pre>
142    *
143    * <code>repeated string supported_azure_regions = 3;</code>
144    *
145    * @param index The index of the element to return.
146    * @return The supportedAzureRegions at the given index.
147    */
getSupportedAzureRegions(int index)148   java.lang.String getSupportedAzureRegions(int index);
149   /**
150    *
151    *
152    * <pre>
153    * The list of supported Azure regions.
154    * </pre>
155    *
156    * <code>repeated string supported_azure_regions = 3;</code>
157    *
158    * @param index The index of the value to return.
159    * @return The bytes of the supportedAzureRegions at the given index.
160    */
getSupportedAzureRegionsBytes(int index)161   com.google.protobuf.ByteString getSupportedAzureRegionsBytes(int index);
162 }
163