google-cloud-container 0.11.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +2 -1
  3. data/AUTHENTICATION.md +51 -54
  4. data/LICENSE.md +203 -0
  5. data/MIGRATING.md +231 -0
  6. data/README.md +34 -34
  7. data/lib/{google/cloud/container/v1/doc/google/protobuf/empty.rb → google-cloud-container.rb} +4 -14
  8. data/lib/google/cloud/container.rb +81 -128
  9. data/lib/google/cloud/container/version.rb +6 -2
  10. metadata +98 -56
  11. data/LICENSE +0 -201
  12. data/lib/google/cloud/container/v1.rb +0 -157
  13. data/lib/google/cloud/container/v1/cluster_manager_client.rb +0 -2197
  14. data/lib/google/cloud/container/v1/cluster_manager_client_config.json +0 -181
  15. data/lib/google/cloud/container/v1/credentials.rb +0 -41
  16. data/lib/google/cloud/container/v1/doc/google/container/v1/cluster_service.rb +0 -2358
  17. data/lib/google/cloud/container/v1/doc/google/protobuf/timestamp.rb +0 -113
  18. data/lib/google/cloud/container/v1beta1.rb +0 -157
  19. data/lib/google/cloud/container/v1beta1/cluster_manager_client.rb +0 -2515
  20. data/lib/google/cloud/container/v1beta1/cluster_manager_client_config.json +0 -186
  21. data/lib/google/cloud/container/v1beta1/credentials.rb +0 -41
  22. data/lib/google/cloud/container/v1beta1/doc/google/container/v1beta1/cluster_service.rb +0 -2533
  23. data/lib/google/cloud/container/v1beta1/doc/google/protobuf/empty.rb +0 -29
  24. data/lib/google/cloud/container/v1beta1/doc/google/protobuf/timestamp.rb +0 -113
  25. data/lib/google/container/v1/cluster_service_pb.rb +0 -729
  26. data/lib/google/container/v1/cluster_service_services_pb.rb +0 -132
  27. data/lib/google/container/v1beta1/cluster_service_pb.rb +0 -798
  28. data/lib/google/container/v1beta1/cluster_service_services_pb.rb +0 -134
@@ -1,29 +0,0 @@
1
- # Copyright 2020 Google LLC
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
6
- #
7
- # https://www.apache.org/licenses/LICENSE-2.0
8
- #
9
- # Unless required by applicable law or agreed to in writing, software
10
- # distributed under the License is distributed on an "AS IS" BASIS,
11
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
14
-
15
-
16
- module Google
17
- module Protobuf
18
- # A generic empty message that you can re-use to avoid defining duplicated
19
- # empty messages in your APIs. A typical example is to use it as the request
20
- # or the response type of an API method. For instance:
21
- #
22
- # service Foo {
23
- # rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
24
- # }
25
- #
26
- # The JSON representation for `Empty` is empty JSON object `{}`.
27
- class Empty; end
28
- end
29
- end
@@ -1,113 +0,0 @@
1
- # Copyright 2020 Google LLC
2
- #
3
- # Licensed under the Apache License, Version 2.0 (the "License");
4
- # you may not use this file except in compliance with the License.
5
- # You may obtain a copy of the License at
6
- #
7
- # https://www.apache.org/licenses/LICENSE-2.0
8
- #
9
- # Unless required by applicable law or agreed to in writing, software
10
- # distributed under the License is distributed on an "AS IS" BASIS,
11
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- # See the License for the specific language governing permissions and
13
- # limitations under the License.
14
-
15
-
16
- module Google
17
- module Protobuf
18
- # A Timestamp represents a point in time independent of any time zone or local
19
- # calendar, encoded as a count of seconds and fractions of seconds at
20
- # nanosecond resolution. The count is relative to an epoch at UTC midnight on
21
- # January 1, 1970, in the proleptic Gregorian calendar which extends the
22
- # Gregorian calendar backwards to year one.
23
- #
24
- # All minutes are 60 seconds long. Leap seconds are "smeared" so that no leap
25
- # second table is needed for interpretation, using a [24-hour linear
26
- # smear](https://developers.google.com/time/smear).
27
- #
28
- # The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By
29
- # restricting to that range, we ensure that we can convert to and from [RFC
30
- # 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.
31
- #
32
- # = Examples
33
- #
34
- # Example 1: Compute Timestamp from POSIX `time()`.
35
- #
36
- # Timestamp timestamp;
37
- # timestamp.set_seconds(time(NULL));
38
- # timestamp.set_nanos(0);
39
- #
40
- # Example 2: Compute Timestamp from POSIX `gettimeofday()`.
41
- #
42
- # struct timeval tv;
43
- # gettimeofday(&tv, NULL);
44
- #
45
- # Timestamp timestamp;
46
- # timestamp.set_seconds(tv.tv_sec);
47
- # timestamp.set_nanos(tv.tv_usec * 1000);
48
- #
49
- # Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.
50
- #
51
- # FILETIME ft;
52
- # GetSystemTimeAsFileTime(&ft);
53
- # UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;
54
- #
55
- # // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z
56
- # // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
57
- # Timestamp timestamp;
58
- # timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));
59
- # timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));
60
- #
61
- # Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.
62
- #
63
- # long millis = System.currentTimeMillis();
64
- #
65
- # Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
66
- # .setNanos((int) ((millis % 1000) * 1000000)).build();
67
- #
68
- #
69
- # Example 5: Compute Timestamp from current time in Python.
70
- #
71
- # timestamp = Timestamp()
72
- # timestamp.GetCurrentTime()
73
- #
74
- # = JSON Mapping
75
- #
76
- # In JSON format, the Timestamp type is encoded as a string in the
77
- # [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the
78
- # format is "{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z"
79
- # where {year} is always expressed using four digits while {month}, {day},
80
- # {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional
81
- # seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),
82
- # are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone
83
- # is required. A proto3 JSON serializer should always use UTC (as indicated by
84
- # "Z") when printing the Timestamp type and a proto3 JSON parser should be
85
- # able to accept both UTC and other timezones (as indicated by an offset).
86
- #
87
- # For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past
88
- # 01:30 UTC on January 15, 2017.
89
- #
90
- # In JavaScript, one can convert a Date object to this format using the
91
- # standard
92
- # [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)
93
- # method. In Python, a standard `datetime.datetime` object can be converted
94
- # to this format using
95
- # [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
96
- # the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
97
- # the Joda Time's [`ISODateTimeFormat.dateTime()`](
98
- # http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
99
- # ) to obtain a formatter capable of generating timestamps in this format.
100
- # @!attribute [rw] seconds
101
- # @return [Integer]
102
- # Represents seconds of UTC time since Unix epoch
103
- # 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
104
- # 9999-12-31T23:59:59Z inclusive.
105
- # @!attribute [rw] nanos
106
- # @return [Integer]
107
- # Non-negative fractions of a second at nanosecond resolution. Negative
108
- # second values with fractions must still have non-negative nanos values
109
- # that count forward in time. Must be from 0 to 999,999,999
110
- # inclusive.
111
- class Timestamp; end
112
- end
113
- end
@@ -1,729 +0,0 @@
1
- # Generated by the protocol buffer compiler. DO NOT EDIT!
2
- # source: google/container/v1/cluster_service.proto
3
-
4
-
5
- require 'google/protobuf'
6
-
7
- require 'google/api/annotations_pb'
8
- require 'google/api/client_pb'
9
- require 'google/api/field_behavior_pb'
10
- require 'google/protobuf/empty_pb'
11
- require 'google/protobuf/timestamp_pb'
12
- Google::Protobuf::DescriptorPool.generated_pool.build do
13
- add_message "google.container.v1.NodeConfig" do
14
- optional :machine_type, :string, 1
15
- optional :disk_size_gb, :int32, 2
16
- repeated :oauth_scopes, :string, 3
17
- optional :service_account, :string, 9
18
- map :metadata, :string, :string, 4
19
- optional :image_type, :string, 5
20
- map :labels, :string, :string, 6
21
- optional :local_ssd_count, :int32, 7
22
- repeated :tags, :string, 8
23
- optional :preemptible, :bool, 10
24
- repeated :accelerators, :message, 11, "google.container.v1.AcceleratorConfig"
25
- optional :disk_type, :string, 12
26
- optional :min_cpu_platform, :string, 13
27
- repeated :taints, :message, 15, "google.container.v1.NodeTaint"
28
- optional :shielded_instance_config, :message, 20, "google.container.v1.ShieldedInstanceConfig"
29
- end
30
- add_message "google.container.v1.ShieldedInstanceConfig" do
31
- optional :enable_secure_boot, :bool, 1
32
- optional :enable_integrity_monitoring, :bool, 2
33
- end
34
- add_message "google.container.v1.NodeTaint" do
35
- optional :key, :string, 1
36
- optional :value, :string, 2
37
- optional :effect, :enum, 3, "google.container.v1.NodeTaint.Effect"
38
- end
39
- add_enum "google.container.v1.NodeTaint.Effect" do
40
- value :EFFECT_UNSPECIFIED, 0
41
- value :NO_SCHEDULE, 1
42
- value :PREFER_NO_SCHEDULE, 2
43
- value :NO_EXECUTE, 3
44
- end
45
- add_message "google.container.v1.MasterAuth" do
46
- optional :username, :string, 1
47
- optional :password, :string, 2
48
- optional :client_certificate_config, :message, 3, "google.container.v1.ClientCertificateConfig"
49
- optional :cluster_ca_certificate, :string, 100
50
- optional :client_certificate, :string, 101
51
- optional :client_key, :string, 102
52
- end
53
- add_message "google.container.v1.ClientCertificateConfig" do
54
- optional :issue_client_certificate, :bool, 1
55
- end
56
- add_message "google.container.v1.AddonsConfig" do
57
- optional :http_load_balancing, :message, 1, "google.container.v1.HttpLoadBalancing"
58
- optional :horizontal_pod_autoscaling, :message, 2, "google.container.v1.HorizontalPodAutoscaling"
59
- optional :kubernetes_dashboard, :message, 3, "google.container.v1.KubernetesDashboard"
60
- optional :network_policy_config, :message, 4, "google.container.v1.NetworkPolicyConfig"
61
- optional :cloud_run_config, :message, 7, "google.container.v1.CloudRunConfig"
62
- end
63
- add_message "google.container.v1.HttpLoadBalancing" do
64
- optional :disabled, :bool, 1
65
- end
66
- add_message "google.container.v1.HorizontalPodAutoscaling" do
67
- optional :disabled, :bool, 1
68
- end
69
- add_message "google.container.v1.KubernetesDashboard" do
70
- optional :disabled, :bool, 1
71
- end
72
- add_message "google.container.v1.NetworkPolicyConfig" do
73
- optional :disabled, :bool, 1
74
- end
75
- add_message "google.container.v1.PrivateClusterConfig" do
76
- optional :enable_private_nodes, :bool, 1
77
- optional :enable_private_endpoint, :bool, 2
78
- optional :master_ipv4_cidr_block, :string, 3
79
- optional :private_endpoint, :string, 4
80
- optional :public_endpoint, :string, 5
81
- end
82
- add_message "google.container.v1.AuthenticatorGroupsConfig" do
83
- optional :enabled, :bool, 1
84
- optional :security_group, :string, 2
85
- end
86
- add_message "google.container.v1.CloudRunConfig" do
87
- optional :disabled, :bool, 1
88
- end
89
- add_message "google.container.v1.MasterAuthorizedNetworksConfig" do
90
- optional :enabled, :bool, 1
91
- repeated :cidr_blocks, :message, 2, "google.container.v1.MasterAuthorizedNetworksConfig.CidrBlock"
92
- end
93
- add_message "google.container.v1.MasterAuthorizedNetworksConfig.CidrBlock" do
94
- optional :display_name, :string, 1
95
- optional :cidr_block, :string, 2
96
- end
97
- add_message "google.container.v1.LegacyAbac" do
98
- optional :enabled, :bool, 1
99
- end
100
- add_message "google.container.v1.NetworkPolicy" do
101
- optional :provider, :enum, 1, "google.container.v1.NetworkPolicy.Provider"
102
- optional :enabled, :bool, 2
103
- end
104
- add_enum "google.container.v1.NetworkPolicy.Provider" do
105
- value :PROVIDER_UNSPECIFIED, 0
106
- value :CALICO, 1
107
- end
108
- add_message "google.container.v1.BinaryAuthorization" do
109
- optional :enabled, :bool, 1
110
- end
111
- add_message "google.container.v1.IPAllocationPolicy" do
112
- optional :use_ip_aliases, :bool, 1
113
- optional :create_subnetwork, :bool, 2
114
- optional :subnetwork_name, :string, 3
115
- optional :cluster_ipv4_cidr, :string, 4
116
- optional :node_ipv4_cidr, :string, 5
117
- optional :services_ipv4_cidr, :string, 6
118
- optional :cluster_secondary_range_name, :string, 7
119
- optional :services_secondary_range_name, :string, 8
120
- optional :cluster_ipv4_cidr_block, :string, 9
121
- optional :node_ipv4_cidr_block, :string, 10
122
- optional :services_ipv4_cidr_block, :string, 11
123
- optional :tpu_ipv4_cidr_block, :string, 13
124
- end
125
- add_message "google.container.v1.Cluster" do
126
- optional :name, :string, 1
127
- optional :description, :string, 2
128
- optional :initial_node_count, :int32, 3
129
- optional :node_config, :message, 4, "google.container.v1.NodeConfig"
130
- optional :master_auth, :message, 5, "google.container.v1.MasterAuth"
131
- optional :logging_service, :string, 6
132
- optional :monitoring_service, :string, 7
133
- optional :network, :string, 8
134
- optional :cluster_ipv4_cidr, :string, 9
135
- optional :addons_config, :message, 10, "google.container.v1.AddonsConfig"
136
- optional :subnetwork, :string, 11
137
- repeated :node_pools, :message, 12, "google.container.v1.NodePool"
138
- repeated :locations, :string, 13
139
- optional :enable_kubernetes_alpha, :bool, 14
140
- map :resource_labels, :string, :string, 15
141
- optional :label_fingerprint, :string, 16
142
- optional :legacy_abac, :message, 18, "google.container.v1.LegacyAbac"
143
- optional :network_policy, :message, 19, "google.container.v1.NetworkPolicy"
144
- optional :ip_allocation_policy, :message, 20, "google.container.v1.IPAllocationPolicy"
145
- optional :master_authorized_networks_config, :message, 22, "google.container.v1.MasterAuthorizedNetworksConfig"
146
- optional :maintenance_policy, :message, 23, "google.container.v1.MaintenancePolicy"
147
- optional :binary_authorization, :message, 24, "google.container.v1.BinaryAuthorization"
148
- optional :autoscaling, :message, 26, "google.container.v1.ClusterAutoscaling"
149
- optional :network_config, :message, 27, "google.container.v1.NetworkConfig"
150
- optional :default_max_pods_constraint, :message, 30, "google.container.v1.MaxPodsConstraint"
151
- optional :resource_usage_export_config, :message, 33, "google.container.v1.ResourceUsageExportConfig"
152
- optional :authenticator_groups_config, :message, 34, "google.container.v1.AuthenticatorGroupsConfig"
153
- optional :private_cluster_config, :message, 37, "google.container.v1.PrivateClusterConfig"
154
- optional :database_encryption, :message, 38, "google.container.v1.DatabaseEncryption"
155
- optional :vertical_pod_autoscaling, :message, 39, "google.container.v1.VerticalPodAutoscaling"
156
- optional :self_link, :string, 100
157
- optional :zone, :string, 101
158
- optional :endpoint, :string, 102
159
- optional :initial_cluster_version, :string, 103
160
- optional :current_master_version, :string, 104
161
- optional :current_node_version, :string, 105
162
- optional :create_time, :string, 106
163
- optional :status, :enum, 107, "google.container.v1.Cluster.Status"
164
- optional :status_message, :string, 108
165
- optional :node_ipv4_cidr_size, :int32, 109
166
- optional :services_ipv4_cidr, :string, 110
167
- repeated :instance_group_urls, :string, 111
168
- optional :current_node_count, :int32, 112
169
- optional :expire_time, :string, 113
170
- optional :location, :string, 114
171
- optional :enable_tpu, :bool, 115
172
- optional :tpu_ipv4_cidr_block, :string, 116
173
- repeated :conditions, :message, 118, "google.container.v1.StatusCondition"
174
- end
175
- add_enum "google.container.v1.Cluster.Status" do
176
- value :STATUS_UNSPECIFIED, 0
177
- value :PROVISIONING, 1
178
- value :RUNNING, 2
179
- value :RECONCILING, 3
180
- value :STOPPING, 4
181
- value :ERROR, 5
182
- value :DEGRADED, 6
183
- end
184
- add_message "google.container.v1.ClusterUpdate" do
185
- optional :desired_node_version, :string, 4
186
- optional :desired_monitoring_service, :string, 5
187
- optional :desired_addons_config, :message, 6, "google.container.v1.AddonsConfig"
188
- optional :desired_node_pool_id, :string, 7
189
- optional :desired_image_type, :string, 8
190
- optional :desired_database_encryption, :message, 46, "google.container.v1.DatabaseEncryption"
191
- optional :desired_node_pool_autoscaling, :message, 9, "google.container.v1.NodePoolAutoscaling"
192
- repeated :desired_locations, :string, 10
193
- optional :desired_master_authorized_networks_config, :message, 12, "google.container.v1.MasterAuthorizedNetworksConfig"
194
- optional :desired_cluster_autoscaling, :message, 15, "google.container.v1.ClusterAutoscaling"
195
- optional :desired_binary_authorization, :message, 16, "google.container.v1.BinaryAuthorization"
196
- optional :desired_logging_service, :string, 19
197
- optional :desired_resource_usage_export_config, :message, 21, "google.container.v1.ResourceUsageExportConfig"
198
- optional :desired_vertical_pod_autoscaling, :message, 22, "google.container.v1.VerticalPodAutoscaling"
199
- optional :desired_intra_node_visibility_config, :message, 26, "google.container.v1.IntraNodeVisibilityConfig"
200
- optional :desired_master_version, :string, 100
201
- end
202
- add_message "google.container.v1.Operation" do
203
- optional :name, :string, 1
204
- optional :zone, :string, 2
205
- optional :operation_type, :enum, 3, "google.container.v1.Operation.Type"
206
- optional :status, :enum, 4, "google.container.v1.Operation.Status"
207
- optional :detail, :string, 8
208
- optional :status_message, :string, 5
209
- optional :self_link, :string, 6
210
- optional :target_link, :string, 7
211
- optional :location, :string, 9
212
- optional :start_time, :string, 10
213
- optional :end_time, :string, 11
214
- repeated :cluster_conditions, :message, 13, "google.container.v1.StatusCondition"
215
- repeated :nodepool_conditions, :message, 14, "google.container.v1.StatusCondition"
216
- end
217
- add_enum "google.container.v1.Operation.Status" do
218
- value :STATUS_UNSPECIFIED, 0
219
- value :PENDING, 1
220
- value :RUNNING, 2
221
- value :DONE, 3
222
- value :ABORTING, 4
223
- end
224
- add_enum "google.container.v1.Operation.Type" do
225
- value :TYPE_UNSPECIFIED, 0
226
- value :CREATE_CLUSTER, 1
227
- value :DELETE_CLUSTER, 2
228
- value :UPGRADE_MASTER, 3
229
- value :UPGRADE_NODES, 4
230
- value :REPAIR_CLUSTER, 5
231
- value :UPDATE_CLUSTER, 6
232
- value :CREATE_NODE_POOL, 7
233
- value :DELETE_NODE_POOL, 8
234
- value :SET_NODE_POOL_MANAGEMENT, 9
235
- value :AUTO_REPAIR_NODES, 10
236
- value :AUTO_UPGRADE_NODES, 11
237
- value :SET_LABELS, 12
238
- value :SET_MASTER_AUTH, 13
239
- value :SET_NODE_POOL_SIZE, 14
240
- value :SET_NETWORK_POLICY, 15
241
- value :SET_MAINTENANCE_POLICY, 16
242
- end
243
- add_message "google.container.v1.CreateClusterRequest" do
244
- optional :project_id, :string, 1
245
- optional :zone, :string, 2
246
- optional :cluster, :message, 3, "google.container.v1.Cluster"
247
- optional :parent, :string, 5
248
- end
249
- add_message "google.container.v1.GetClusterRequest" do
250
- optional :project_id, :string, 1
251
- optional :zone, :string, 2
252
- optional :cluster_id, :string, 3
253
- optional :name, :string, 5
254
- end
255
- add_message "google.container.v1.UpdateClusterRequest" do
256
- optional :project_id, :string, 1
257
- optional :zone, :string, 2
258
- optional :cluster_id, :string, 3
259
- optional :update, :message, 4, "google.container.v1.ClusterUpdate"
260
- optional :name, :string, 5
261
- end
262
- add_message "google.container.v1.UpdateNodePoolRequest" do
263
- optional :project_id, :string, 1
264
- optional :zone, :string, 2
265
- optional :cluster_id, :string, 3
266
- optional :node_pool_id, :string, 4
267
- optional :node_version, :string, 5
268
- optional :image_type, :string, 6
269
- optional :name, :string, 8
270
- end
271
- add_message "google.container.v1.SetNodePoolAutoscalingRequest" do
272
- optional :project_id, :string, 1
273
- optional :zone, :string, 2
274
- optional :cluster_id, :string, 3
275
- optional :node_pool_id, :string, 4
276
- optional :autoscaling, :message, 5, "google.container.v1.NodePoolAutoscaling"
277
- optional :name, :string, 6
278
- end
279
- add_message "google.container.v1.SetLoggingServiceRequest" do
280
- optional :project_id, :string, 1
281
- optional :zone, :string, 2
282
- optional :cluster_id, :string, 3
283
- optional :logging_service, :string, 4
284
- optional :name, :string, 5
285
- end
286
- add_message "google.container.v1.SetMonitoringServiceRequest" do
287
- optional :project_id, :string, 1
288
- optional :zone, :string, 2
289
- optional :cluster_id, :string, 3
290
- optional :monitoring_service, :string, 4
291
- optional :name, :string, 6
292
- end
293
- add_message "google.container.v1.SetAddonsConfigRequest" do
294
- optional :project_id, :string, 1
295
- optional :zone, :string, 2
296
- optional :cluster_id, :string, 3
297
- optional :addons_config, :message, 4, "google.container.v1.AddonsConfig"
298
- optional :name, :string, 6
299
- end
300
- add_message "google.container.v1.SetLocationsRequest" do
301
- optional :project_id, :string, 1
302
- optional :zone, :string, 2
303
- optional :cluster_id, :string, 3
304
- repeated :locations, :string, 4
305
- optional :name, :string, 6
306
- end
307
- add_message "google.container.v1.UpdateMasterRequest" do
308
- optional :project_id, :string, 1
309
- optional :zone, :string, 2
310
- optional :cluster_id, :string, 3
311
- optional :master_version, :string, 4
312
- optional :name, :string, 7
313
- end
314
- add_message "google.container.v1.SetMasterAuthRequest" do
315
- optional :project_id, :string, 1
316
- optional :zone, :string, 2
317
- optional :cluster_id, :string, 3
318
- optional :action, :enum, 4, "google.container.v1.SetMasterAuthRequest.Action"
319
- optional :update, :message, 5, "google.container.v1.MasterAuth"
320
- optional :name, :string, 7
321
- end
322
- add_enum "google.container.v1.SetMasterAuthRequest.Action" do
323
- value :UNKNOWN, 0
324
- value :SET_PASSWORD, 1
325
- value :GENERATE_PASSWORD, 2
326
- value :SET_USERNAME, 3
327
- end
328
- add_message "google.container.v1.DeleteClusterRequest" do
329
- optional :project_id, :string, 1
330
- optional :zone, :string, 2
331
- optional :cluster_id, :string, 3
332
- optional :name, :string, 4
333
- end
334
- add_message "google.container.v1.ListClustersRequest" do
335
- optional :project_id, :string, 1
336
- optional :zone, :string, 2
337
- optional :parent, :string, 4
338
- end
339
- add_message "google.container.v1.ListClustersResponse" do
340
- repeated :clusters, :message, 1, "google.container.v1.Cluster"
341
- repeated :missing_zones, :string, 2
342
- end
343
- add_message "google.container.v1.GetOperationRequest" do
344
- optional :project_id, :string, 1
345
- optional :zone, :string, 2
346
- optional :operation_id, :string, 3
347
- optional :name, :string, 5
348
- end
349
- add_message "google.container.v1.ListOperationsRequest" do
350
- optional :project_id, :string, 1
351
- optional :zone, :string, 2
352
- optional :parent, :string, 4
353
- end
354
- add_message "google.container.v1.CancelOperationRequest" do
355
- optional :project_id, :string, 1
356
- optional :zone, :string, 2
357
- optional :operation_id, :string, 3
358
- optional :name, :string, 4
359
- end
360
- add_message "google.container.v1.ListOperationsResponse" do
361
- repeated :operations, :message, 1, "google.container.v1.Operation"
362
- repeated :missing_zones, :string, 2
363
- end
364
- add_message "google.container.v1.GetServerConfigRequest" do
365
- optional :project_id, :string, 1
366
- optional :zone, :string, 2
367
- optional :name, :string, 4
368
- end
369
- add_message "google.container.v1.ServerConfig" do
370
- optional :default_cluster_version, :string, 1
371
- repeated :valid_node_versions, :string, 3
372
- optional :default_image_type, :string, 4
373
- repeated :valid_image_types, :string, 5
374
- repeated :valid_master_versions, :string, 6
375
- end
376
- add_message "google.container.v1.CreateNodePoolRequest" do
377
- optional :project_id, :string, 1
378
- optional :zone, :string, 2
379
- optional :cluster_id, :string, 3
380
- optional :node_pool, :message, 4, "google.container.v1.NodePool"
381
- optional :parent, :string, 6
382
- end
383
- add_message "google.container.v1.DeleteNodePoolRequest" do
384
- optional :project_id, :string, 1
385
- optional :zone, :string, 2
386
- optional :cluster_id, :string, 3
387
- optional :node_pool_id, :string, 4
388
- optional :name, :string, 6
389
- end
390
- add_message "google.container.v1.ListNodePoolsRequest" do
391
- optional :project_id, :string, 1
392
- optional :zone, :string, 2
393
- optional :cluster_id, :string, 3
394
- optional :parent, :string, 5
395
- end
396
- add_message "google.container.v1.GetNodePoolRequest" do
397
- optional :project_id, :string, 1
398
- optional :zone, :string, 2
399
- optional :cluster_id, :string, 3
400
- optional :node_pool_id, :string, 4
401
- optional :name, :string, 6
402
- end
403
- add_message "google.container.v1.NodePool" do
404
- optional :name, :string, 1
405
- optional :config, :message, 2, "google.container.v1.NodeConfig"
406
- optional :initial_node_count, :int32, 3
407
- optional :self_link, :string, 100
408
- optional :version, :string, 101
409
- repeated :instance_group_urls, :string, 102
410
- optional :status, :enum, 103, "google.container.v1.NodePool.Status"
411
- optional :status_message, :string, 104
412
- optional :autoscaling, :message, 4, "google.container.v1.NodePoolAutoscaling"
413
- optional :management, :message, 5, "google.container.v1.NodeManagement"
414
- optional :max_pods_constraint, :message, 6, "google.container.v1.MaxPodsConstraint"
415
- repeated :conditions, :message, 105, "google.container.v1.StatusCondition"
416
- optional :pod_ipv4_cidr_size, :int32, 7
417
- end
418
- add_enum "google.container.v1.NodePool.Status" do
419
- value :STATUS_UNSPECIFIED, 0
420
- value :PROVISIONING, 1
421
- value :RUNNING, 2
422
- value :RUNNING_WITH_ERROR, 3
423
- value :RECONCILING, 4
424
- value :STOPPING, 5
425
- value :ERROR, 6
426
- end
427
- add_message "google.container.v1.NodeManagement" do
428
- optional :auto_upgrade, :bool, 1
429
- optional :auto_repair, :bool, 2
430
- optional :upgrade_options, :message, 10, "google.container.v1.AutoUpgradeOptions"
431
- end
432
- add_message "google.container.v1.AutoUpgradeOptions" do
433
- optional :auto_upgrade_start_time, :string, 1
434
- optional :description, :string, 2
435
- end
436
- add_message "google.container.v1.MaintenancePolicy" do
437
- optional :window, :message, 1, "google.container.v1.MaintenanceWindow"
438
- optional :resource_version, :string, 3
439
- end
440
- add_message "google.container.v1.MaintenanceWindow" do
441
- map :maintenance_exclusions, :string, :message, 4, "google.container.v1.TimeWindow"
442
- oneof :policy do
443
- optional :daily_maintenance_window, :message, 2, "google.container.v1.DailyMaintenanceWindow"
444
- optional :recurring_window, :message, 3, "google.container.v1.RecurringTimeWindow"
445
- end
446
- end
447
- add_message "google.container.v1.TimeWindow" do
448
- optional :start_time, :message, 1, "google.protobuf.Timestamp"
449
- optional :end_time, :message, 2, "google.protobuf.Timestamp"
450
- end
451
- add_message "google.container.v1.RecurringTimeWindow" do
452
- optional :window, :message, 1, "google.container.v1.TimeWindow"
453
- optional :recurrence, :string, 2
454
- end
455
- add_message "google.container.v1.DailyMaintenanceWindow" do
456
- optional :start_time, :string, 2
457
- optional :duration, :string, 3
458
- end
459
- add_message "google.container.v1.SetNodePoolManagementRequest" do
460
- optional :project_id, :string, 1
461
- optional :zone, :string, 2
462
- optional :cluster_id, :string, 3
463
- optional :node_pool_id, :string, 4
464
- optional :management, :message, 5, "google.container.v1.NodeManagement"
465
- optional :name, :string, 7
466
- end
467
- add_message "google.container.v1.SetNodePoolSizeRequest" do
468
- optional :project_id, :string, 1
469
- optional :zone, :string, 2
470
- optional :cluster_id, :string, 3
471
- optional :node_pool_id, :string, 4
472
- optional :node_count, :int32, 5
473
- optional :name, :string, 7
474
- end
475
- add_message "google.container.v1.RollbackNodePoolUpgradeRequest" do
476
- optional :project_id, :string, 1
477
- optional :zone, :string, 2
478
- optional :cluster_id, :string, 3
479
- optional :node_pool_id, :string, 4
480
- optional :name, :string, 6
481
- end
482
- add_message "google.container.v1.ListNodePoolsResponse" do
483
- repeated :node_pools, :message, 1, "google.container.v1.NodePool"
484
- end
485
- add_message "google.container.v1.ClusterAutoscaling" do
486
- optional :enable_node_autoprovisioning, :bool, 1
487
- repeated :resource_limits, :message, 2, "google.container.v1.ResourceLimit"
488
- optional :autoprovisioning_node_pool_defaults, :message, 4, "google.container.v1.AutoprovisioningNodePoolDefaults"
489
- repeated :autoprovisioning_locations, :string, 5
490
- end
491
- add_message "google.container.v1.AutoprovisioningNodePoolDefaults" do
492
- repeated :oauth_scopes, :string, 1
493
- optional :service_account, :string, 2
494
- end
495
- add_message "google.container.v1.ResourceLimit" do
496
- optional :resource_type, :string, 1
497
- optional :minimum, :int64, 2
498
- optional :maximum, :int64, 3
499
- end
500
- add_message "google.container.v1.NodePoolAutoscaling" do
501
- optional :enabled, :bool, 1
502
- optional :min_node_count, :int32, 2
503
- optional :max_node_count, :int32, 3
504
- optional :autoprovisioned, :bool, 4
505
- end
506
- add_message "google.container.v1.SetLabelsRequest" do
507
- optional :project_id, :string, 1
508
- optional :zone, :string, 2
509
- optional :cluster_id, :string, 3
510
- map :resource_labels, :string, :string, 4
511
- optional :label_fingerprint, :string, 5
512
- optional :name, :string, 7
513
- end
514
- add_message "google.container.v1.SetLegacyAbacRequest" do
515
- optional :project_id, :string, 1
516
- optional :zone, :string, 2
517
- optional :cluster_id, :string, 3
518
- optional :enabled, :bool, 4
519
- optional :name, :string, 6
520
- end
521
- add_message "google.container.v1.StartIPRotationRequest" do
522
- optional :project_id, :string, 1
523
- optional :zone, :string, 2
524
- optional :cluster_id, :string, 3
525
- optional :name, :string, 6
526
- optional :rotate_credentials, :bool, 7
527
- end
528
- add_message "google.container.v1.CompleteIPRotationRequest" do
529
- optional :project_id, :string, 1
530
- optional :zone, :string, 2
531
- optional :cluster_id, :string, 3
532
- optional :name, :string, 7
533
- end
534
- add_message "google.container.v1.AcceleratorConfig" do
535
- optional :accelerator_count, :int64, 1
536
- optional :accelerator_type, :string, 2
537
- end
538
- add_message "google.container.v1.SetNetworkPolicyRequest" do
539
- optional :project_id, :string, 1
540
- optional :zone, :string, 2
541
- optional :cluster_id, :string, 3
542
- optional :network_policy, :message, 4, "google.container.v1.NetworkPolicy"
543
- optional :name, :string, 6
544
- end
545
- add_message "google.container.v1.SetMaintenancePolicyRequest" do
546
- optional :project_id, :string, 1
547
- optional :zone, :string, 2
548
- optional :cluster_id, :string, 3
549
- optional :maintenance_policy, :message, 4, "google.container.v1.MaintenancePolicy"
550
- optional :name, :string, 5
551
- end
552
- add_message "google.container.v1.StatusCondition" do
553
- optional :code, :enum, 1, "google.container.v1.StatusCondition.Code"
554
- optional :message, :string, 2
555
- end
556
- add_enum "google.container.v1.StatusCondition.Code" do
557
- value :UNKNOWN, 0
558
- value :GCE_STOCKOUT, 1
559
- value :GKE_SERVICE_ACCOUNT_DELETED, 2
560
- value :GCE_QUOTA_EXCEEDED, 3
561
- value :SET_BY_OPERATOR, 4
562
- value :CLOUD_KMS_KEY_ERROR, 7
563
- end
564
- add_message "google.container.v1.NetworkConfig" do
565
- optional :network, :string, 1
566
- optional :subnetwork, :string, 2
567
- optional :enable_intra_node_visibility, :bool, 5
568
- end
569
- add_message "google.container.v1.IntraNodeVisibilityConfig" do
570
- optional :enabled, :bool, 1
571
- end
572
- add_message "google.container.v1.MaxPodsConstraint" do
573
- optional :max_pods_per_node, :int64, 1
574
- end
575
- add_message "google.container.v1.DatabaseEncryption" do
576
- optional :state, :enum, 2, "google.container.v1.DatabaseEncryption.State"
577
- optional :key_name, :string, 1
578
- end
579
- add_enum "google.container.v1.DatabaseEncryption.State" do
580
- value :UNKNOWN, 0
581
- value :ENCRYPTED, 1
582
- value :DECRYPTED, 2
583
- end
584
- add_message "google.container.v1.ListUsableSubnetworksRequest" do
585
- optional :parent, :string, 1
586
- optional :filter, :string, 2
587
- optional :page_size, :int32, 3
588
- optional :page_token, :string, 4
589
- end
590
- add_message "google.container.v1.ListUsableSubnetworksResponse" do
591
- repeated :subnetworks, :message, 1, "google.container.v1.UsableSubnetwork"
592
- optional :next_page_token, :string, 2
593
- end
594
- add_message "google.container.v1.UsableSubnetworkSecondaryRange" do
595
- optional :range_name, :string, 1
596
- optional :ip_cidr_range, :string, 2
597
- optional :status, :enum, 3, "google.container.v1.UsableSubnetworkSecondaryRange.Status"
598
- end
599
- add_enum "google.container.v1.UsableSubnetworkSecondaryRange.Status" do
600
- value :UNKNOWN, 0
601
- value :UNUSED, 1
602
- value :IN_USE_SERVICE, 2
603
- value :IN_USE_SHAREABLE_POD, 3
604
- value :IN_USE_MANAGED_POD, 4
605
- end
606
- add_message "google.container.v1.UsableSubnetwork" do
607
- optional :subnetwork, :string, 1
608
- optional :network, :string, 2
609
- optional :ip_cidr_range, :string, 3
610
- repeated :secondary_ip_ranges, :message, 4, "google.container.v1.UsableSubnetworkSecondaryRange"
611
- optional :status_message, :string, 5
612
- end
613
- add_message "google.container.v1.ResourceUsageExportConfig" do
614
- optional :bigquery_destination, :message, 1, "google.container.v1.ResourceUsageExportConfig.BigQueryDestination"
615
- optional :enable_network_egress_metering, :bool, 2
616
- optional :consumption_metering_config, :message, 3, "google.container.v1.ResourceUsageExportConfig.ConsumptionMeteringConfig"
617
- end
618
- add_message "google.container.v1.ResourceUsageExportConfig.BigQueryDestination" do
619
- optional :dataset_id, :string, 1
620
- end
621
- add_message "google.container.v1.ResourceUsageExportConfig.ConsumptionMeteringConfig" do
622
- optional :enabled, :bool, 1
623
- end
624
- add_message "google.container.v1.VerticalPodAutoscaling" do
625
- optional :enabled, :bool, 1
626
- end
627
- end
628
-
629
- module Google
630
- module Cloud
631
- module Container
632
- end
633
- end
634
- Container = Cloud::Container unless const_defined? :Container
635
- end
636
- module Google::Cloud::Container::V1
637
- NodeConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NodeConfig").msgclass
638
- ShieldedInstanceConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ShieldedInstanceConfig").msgclass
639
- NodeTaint = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NodeTaint").msgclass
640
- NodeTaint::Effect = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NodeTaint.Effect").enummodule
641
- MasterAuth = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.MasterAuth").msgclass
642
- ClientCertificateConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ClientCertificateConfig").msgclass
643
- AddonsConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.AddonsConfig").msgclass
644
- HttpLoadBalancing = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.HttpLoadBalancing").msgclass
645
- HorizontalPodAutoscaling = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.HorizontalPodAutoscaling").msgclass
646
- KubernetesDashboard = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.KubernetesDashboard").msgclass
647
- NetworkPolicyConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NetworkPolicyConfig").msgclass
648
- PrivateClusterConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.PrivateClusterConfig").msgclass
649
- AuthenticatorGroupsConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.AuthenticatorGroupsConfig").msgclass
650
- CloudRunConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.CloudRunConfig").msgclass
651
- MasterAuthorizedNetworksConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.MasterAuthorizedNetworksConfig").msgclass
652
- MasterAuthorizedNetworksConfig::CidrBlock = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.MasterAuthorizedNetworksConfig.CidrBlock").msgclass
653
- LegacyAbac = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.LegacyAbac").msgclass
654
- NetworkPolicy = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NetworkPolicy").msgclass
655
- NetworkPolicy::Provider = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NetworkPolicy.Provider").enummodule
656
- BinaryAuthorization = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.BinaryAuthorization").msgclass
657
- IPAllocationPolicy = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.IPAllocationPolicy").msgclass
658
- Cluster = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.Cluster").msgclass
659
- Cluster::Status = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.Cluster.Status").enummodule
660
- ClusterUpdate = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ClusterUpdate").msgclass
661
- Operation = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.Operation").msgclass
662
- Operation::Status = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.Operation.Status").enummodule
663
- Operation::Type = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.Operation.Type").enummodule
664
- CreateClusterRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.CreateClusterRequest").msgclass
665
- GetClusterRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.GetClusterRequest").msgclass
666
- UpdateClusterRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.UpdateClusterRequest").msgclass
667
- UpdateNodePoolRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.UpdateNodePoolRequest").msgclass
668
- SetNodePoolAutoscalingRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.SetNodePoolAutoscalingRequest").msgclass
669
- SetLoggingServiceRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.SetLoggingServiceRequest").msgclass
670
- SetMonitoringServiceRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.SetMonitoringServiceRequest").msgclass
671
- SetAddonsConfigRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.SetAddonsConfigRequest").msgclass
672
- SetLocationsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.SetLocationsRequest").msgclass
673
- UpdateMasterRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.UpdateMasterRequest").msgclass
674
- SetMasterAuthRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.SetMasterAuthRequest").msgclass
675
- SetMasterAuthRequest::Action = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.SetMasterAuthRequest.Action").enummodule
676
- DeleteClusterRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.DeleteClusterRequest").msgclass
677
- ListClustersRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ListClustersRequest").msgclass
678
- ListClustersResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ListClustersResponse").msgclass
679
- GetOperationRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.GetOperationRequest").msgclass
680
- ListOperationsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ListOperationsRequest").msgclass
681
- CancelOperationRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.CancelOperationRequest").msgclass
682
- ListOperationsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ListOperationsResponse").msgclass
683
- GetServerConfigRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.GetServerConfigRequest").msgclass
684
- ServerConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ServerConfig").msgclass
685
- CreateNodePoolRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.CreateNodePoolRequest").msgclass
686
- DeleteNodePoolRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.DeleteNodePoolRequest").msgclass
687
- ListNodePoolsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ListNodePoolsRequest").msgclass
688
- GetNodePoolRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.GetNodePoolRequest").msgclass
689
- NodePool = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NodePool").msgclass
690
- NodePool::Status = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NodePool.Status").enummodule
691
- NodeManagement = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NodeManagement").msgclass
692
- AutoUpgradeOptions = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.AutoUpgradeOptions").msgclass
693
- MaintenancePolicy = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.MaintenancePolicy").msgclass
694
- MaintenanceWindow = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.MaintenanceWindow").msgclass
695
- TimeWindow = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.TimeWindow").msgclass
696
- RecurringTimeWindow = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.RecurringTimeWindow").msgclass
697
- DailyMaintenanceWindow = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.DailyMaintenanceWindow").msgclass
698
- SetNodePoolManagementRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.SetNodePoolManagementRequest").msgclass
699
- SetNodePoolSizeRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.SetNodePoolSizeRequest").msgclass
700
- RollbackNodePoolUpgradeRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.RollbackNodePoolUpgradeRequest").msgclass
701
- ListNodePoolsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ListNodePoolsResponse").msgclass
702
- ClusterAutoscaling = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ClusterAutoscaling").msgclass
703
- AutoprovisioningNodePoolDefaults = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.AutoprovisioningNodePoolDefaults").msgclass
704
- ResourceLimit = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ResourceLimit").msgclass
705
- NodePoolAutoscaling = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NodePoolAutoscaling").msgclass
706
- SetLabelsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.SetLabelsRequest").msgclass
707
- SetLegacyAbacRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.SetLegacyAbacRequest").msgclass
708
- StartIPRotationRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.StartIPRotationRequest").msgclass
709
- CompleteIPRotationRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.CompleteIPRotationRequest").msgclass
710
- AcceleratorConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.AcceleratorConfig").msgclass
711
- SetNetworkPolicyRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.SetNetworkPolicyRequest").msgclass
712
- SetMaintenancePolicyRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.SetMaintenancePolicyRequest").msgclass
713
- StatusCondition = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.StatusCondition").msgclass
714
- StatusCondition::Code = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.StatusCondition.Code").enummodule
715
- NetworkConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NetworkConfig").msgclass
716
- IntraNodeVisibilityConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.IntraNodeVisibilityConfig").msgclass
717
- MaxPodsConstraint = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.MaxPodsConstraint").msgclass
718
- DatabaseEncryption = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.DatabaseEncryption").msgclass
719
- DatabaseEncryption::State = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.DatabaseEncryption.State").enummodule
720
- ListUsableSubnetworksRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ListUsableSubnetworksRequest").msgclass
721
- ListUsableSubnetworksResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ListUsableSubnetworksResponse").msgclass
722
- UsableSubnetworkSecondaryRange = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.UsableSubnetworkSecondaryRange").msgclass
723
- UsableSubnetworkSecondaryRange::Status = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.UsableSubnetworkSecondaryRange.Status").enummodule
724
- UsableSubnetwork = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.UsableSubnetwork").msgclass
725
- ResourceUsageExportConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ResourceUsageExportConfig").msgclass
726
- ResourceUsageExportConfig::BigQueryDestination = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ResourceUsageExportConfig.BigQueryDestination").msgclass
727
- ResourceUsageExportConfig::ConsumptionMeteringConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ResourceUsageExportConfig.ConsumptionMeteringConfig").msgclass
728
- VerticalPodAutoscaling = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.VerticalPodAutoscaling").msgclass
729
- end