google-cloud-container 0.11.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
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,132 +0,0 @@
1
- # Generated by the protocol buffer compiler. DO NOT EDIT!
2
- # Source: google/container/v1/cluster_service.proto for package 'Google::Cloud::Container::V1'
3
- # Original file comments:
4
- # Copyright 2019 Google LLC.
5
- #
6
- # Licensed under the Apache License, Version 2.0 (the "License");
7
- # you may not use this file except in compliance with the License.
8
- # You may obtain a copy of the License at
9
- #
10
- # http://www.apache.org/licenses/LICENSE-2.0
11
- #
12
- # Unless required by applicable law or agreed to in writing, software
13
- # distributed under the License is distributed on an "AS IS" BASIS,
14
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
- # See the License for the specific language governing permissions and
16
- # limitations under the License.
17
- #
18
- #
19
-
20
-
21
- require 'grpc'
22
- require 'google/container/v1/cluster_service_pb'
23
-
24
- module Google
25
- module Cloud
26
- module Container
27
- end
28
- end
29
- Container = Cloud::Container unless const_defined? :Container
30
- end
31
- module Google::Cloud::Container::V1
32
- module ClusterManager
33
- # Google Kubernetes Engine Cluster Manager v1
34
- class Service
35
-
36
- include GRPC::GenericService
37
-
38
- self.marshal_class_method = :encode
39
- self.unmarshal_class_method = :decode
40
- self.service_name = 'google.container.v1.ClusterManager'
41
-
42
- # Lists all clusters owned by a project in either the specified zone or all
43
- # zones.
44
- rpc :ListClusters, ListClustersRequest, ListClustersResponse
45
- # Gets the details of a specific cluster.
46
- rpc :GetCluster, GetClusterRequest, Cluster
47
- # Creates a cluster, consisting of the specified number and type of Google
48
- # Compute Engine instances.
49
- #
50
- # By default, the cluster is created in the project's
51
- # [default network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks).
52
- #
53
- # One firewall is added for the cluster. After cluster creation,
54
- # the Kubelet creates routes for each node to allow the containers
55
- # on that node to communicate with all other instances in the
56
- # cluster.
57
- #
58
- # Finally, an entry is added to the project's global metadata indicating
59
- # which CIDR range the cluster is using.
60
- rpc :CreateCluster, CreateClusterRequest, Operation
61
- # Updates the settings of a specific cluster.
62
- rpc :UpdateCluster, UpdateClusterRequest, Operation
63
- # Updates the version and/or image type for the specified node pool.
64
- rpc :UpdateNodePool, UpdateNodePoolRequest, Operation
65
- # Sets the autoscaling settings for the specified node pool.
66
- rpc :SetNodePoolAutoscaling, SetNodePoolAutoscalingRequest, Operation
67
- # Sets the logging service for a specific cluster.
68
- rpc :SetLoggingService, SetLoggingServiceRequest, Operation
69
- # Sets the monitoring service for a specific cluster.
70
- rpc :SetMonitoringService, SetMonitoringServiceRequest, Operation
71
- # Sets the addons for a specific cluster.
72
- rpc :SetAddonsConfig, SetAddonsConfigRequest, Operation
73
- # Sets the locations for a specific cluster.
74
- rpc :SetLocations, SetLocationsRequest, Operation
75
- # Updates the master for a specific cluster.
76
- rpc :UpdateMaster, UpdateMasterRequest, Operation
77
- # Sets master auth materials. Currently supports changing the admin password
78
- # or a specific cluster, either via password generation or explicitly setting
79
- # the password.
80
- rpc :SetMasterAuth, SetMasterAuthRequest, Operation
81
- # Deletes the cluster, including the Kubernetes endpoint and all worker
82
- # nodes.
83
- #
84
- # Firewalls and routes that were configured during cluster creation
85
- # are also deleted.
86
- #
87
- # Other Google Compute Engine resources that might be in use by the cluster,
88
- # such as load balancer resources, are not deleted if they weren't present
89
- # when the cluster was initially created.
90
- rpc :DeleteCluster, DeleteClusterRequest, Operation
91
- # Lists all operations in a project in a specific zone or all zones.
92
- rpc :ListOperations, ListOperationsRequest, ListOperationsResponse
93
- # Gets the specified operation.
94
- rpc :GetOperation, GetOperationRequest, Operation
95
- # Cancels the specified operation.
96
- rpc :CancelOperation, CancelOperationRequest, Google::Protobuf::Empty
97
- # Returns configuration info about the Google Kubernetes Engine service.
98
- rpc :GetServerConfig, GetServerConfigRequest, ServerConfig
99
- # Lists the node pools for a cluster.
100
- rpc :ListNodePools, ListNodePoolsRequest, ListNodePoolsResponse
101
- # Retrieves the requested node pool.
102
- rpc :GetNodePool, GetNodePoolRequest, NodePool
103
- # Creates a node pool for a cluster.
104
- rpc :CreateNodePool, CreateNodePoolRequest, Operation
105
- # Deletes a node pool from a cluster.
106
- rpc :DeleteNodePool, DeleteNodePoolRequest, Operation
107
- # Rolls back a previously Aborted or Failed NodePool upgrade.
108
- # This makes no changes if the last upgrade successfully completed.
109
- rpc :RollbackNodePoolUpgrade, RollbackNodePoolUpgradeRequest, Operation
110
- # Sets the NodeManagement options for a node pool.
111
- rpc :SetNodePoolManagement, SetNodePoolManagementRequest, Operation
112
- # Sets labels on a cluster.
113
- rpc :SetLabels, SetLabelsRequest, Operation
114
- # Enables or disables the ABAC authorization mechanism on a cluster.
115
- rpc :SetLegacyAbac, SetLegacyAbacRequest, Operation
116
- # Starts master IP rotation.
117
- rpc :StartIPRotation, StartIPRotationRequest, Operation
118
- # Completes master IP rotation.
119
- rpc :CompleteIPRotation, CompleteIPRotationRequest, Operation
120
- # Sets the size for a specific node pool.
121
- rpc :SetNodePoolSize, SetNodePoolSizeRequest, Operation
122
- # Enables or disables Network Policy for a cluster.
123
- rpc :SetNetworkPolicy, SetNetworkPolicyRequest, Operation
124
- # Sets the maintenance policy for a cluster.
125
- rpc :SetMaintenancePolicy, SetMaintenancePolicyRequest, Operation
126
- # Lists subnetworks that are usable for creating clusters in a project.
127
- rpc :ListUsableSubnetworks, ListUsableSubnetworksRequest, ListUsableSubnetworksResponse
128
- end
129
-
130
- Stub = Service.rpc_stub_class
131
- end
132
- end
@@ -1,798 +0,0 @@
1
- # Generated by the protocol buffer compiler. DO NOT EDIT!
2
- # source: google/container/v1beta1/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.v1beta1.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.v1beta1.AcceleratorConfig"
25
- optional :disk_type, :string, 12
26
- optional :min_cpu_platform, :string, 13
27
- optional :workload_metadata_config, :message, 14, "google.container.v1beta1.WorkloadMetadataConfig"
28
- repeated :taints, :message, 15, "google.container.v1beta1.NodeTaint"
29
- optional :shielded_instance_config, :message, 20, "google.container.v1beta1.ShieldedInstanceConfig"
30
- end
31
- add_message "google.container.v1beta1.ShieldedInstanceConfig" do
32
- optional :enable_secure_boot, :bool, 1
33
- optional :enable_integrity_monitoring, :bool, 2
34
- end
35
- add_message "google.container.v1beta1.NodeTaint" do
36
- optional :key, :string, 1
37
- optional :value, :string, 2
38
- optional :effect, :enum, 3, "google.container.v1beta1.NodeTaint.Effect"
39
- end
40
- add_enum "google.container.v1beta1.NodeTaint.Effect" do
41
- value :EFFECT_UNSPECIFIED, 0
42
- value :NO_SCHEDULE, 1
43
- value :PREFER_NO_SCHEDULE, 2
44
- value :NO_EXECUTE, 3
45
- end
46
- add_message "google.container.v1beta1.MasterAuth" do
47
- optional :username, :string, 1
48
- optional :password, :string, 2
49
- optional :client_certificate_config, :message, 3, "google.container.v1beta1.ClientCertificateConfig"
50
- optional :cluster_ca_certificate, :string, 100
51
- optional :client_certificate, :string, 101
52
- optional :client_key, :string, 102
53
- end
54
- add_message "google.container.v1beta1.ClientCertificateConfig" do
55
- optional :issue_client_certificate, :bool, 1
56
- end
57
- add_message "google.container.v1beta1.AddonsConfig" do
58
- optional :http_load_balancing, :message, 1, "google.container.v1beta1.HttpLoadBalancing"
59
- optional :horizontal_pod_autoscaling, :message, 2, "google.container.v1beta1.HorizontalPodAutoscaling"
60
- optional :kubernetes_dashboard, :message, 3, "google.container.v1beta1.KubernetesDashboard"
61
- optional :network_policy_config, :message, 4, "google.container.v1beta1.NetworkPolicyConfig"
62
- optional :istio_config, :message, 5, "google.container.v1beta1.IstioConfig"
63
- optional :cloud_run_config, :message, 7, "google.container.v1beta1.CloudRunConfig"
64
- end
65
- add_message "google.container.v1beta1.HttpLoadBalancing" do
66
- optional :disabled, :bool, 1
67
- end
68
- add_message "google.container.v1beta1.HorizontalPodAutoscaling" do
69
- optional :disabled, :bool, 1
70
- end
71
- add_message "google.container.v1beta1.KubernetesDashboard" do
72
- optional :disabled, :bool, 1
73
- end
74
- add_message "google.container.v1beta1.NetworkPolicyConfig" do
75
- optional :disabled, :bool, 1
76
- end
77
- add_message "google.container.v1beta1.PrivateClusterConfig" do
78
- optional :enable_private_nodes, :bool, 1
79
- optional :enable_private_endpoint, :bool, 2
80
- optional :master_ipv4_cidr_block, :string, 3
81
- optional :private_endpoint, :string, 4
82
- optional :public_endpoint, :string, 5
83
- end
84
- add_message "google.container.v1beta1.IstioConfig" do
85
- optional :disabled, :bool, 1
86
- optional :auth, :enum, 2, "google.container.v1beta1.IstioConfig.IstioAuthMode"
87
- end
88
- add_enum "google.container.v1beta1.IstioConfig.IstioAuthMode" do
89
- value :AUTH_NONE, 0
90
- value :AUTH_MUTUAL_TLS, 1
91
- end
92
- add_message "google.container.v1beta1.CloudRunConfig" do
93
- optional :disabled, :bool, 1
94
- end
95
- add_message "google.container.v1beta1.MasterAuthorizedNetworksConfig" do
96
- optional :enabled, :bool, 1
97
- repeated :cidr_blocks, :message, 2, "google.container.v1beta1.MasterAuthorizedNetworksConfig.CidrBlock"
98
- end
99
- add_message "google.container.v1beta1.MasterAuthorizedNetworksConfig.CidrBlock" do
100
- optional :display_name, :string, 1
101
- optional :cidr_block, :string, 2
102
- end
103
- add_message "google.container.v1beta1.LegacyAbac" do
104
- optional :enabled, :bool, 1
105
- end
106
- add_message "google.container.v1beta1.NetworkPolicy" do
107
- optional :provider, :enum, 1, "google.container.v1beta1.NetworkPolicy.Provider"
108
- optional :enabled, :bool, 2
109
- end
110
- add_enum "google.container.v1beta1.NetworkPolicy.Provider" do
111
- value :PROVIDER_UNSPECIFIED, 0
112
- value :CALICO, 1
113
- end
114
- add_message "google.container.v1beta1.IPAllocationPolicy" do
115
- optional :use_ip_aliases, :bool, 1
116
- optional :create_subnetwork, :bool, 2
117
- optional :subnetwork_name, :string, 3
118
- optional :cluster_ipv4_cidr, :string, 4
119
- optional :node_ipv4_cidr, :string, 5
120
- optional :services_ipv4_cidr, :string, 6
121
- optional :cluster_secondary_range_name, :string, 7
122
- optional :services_secondary_range_name, :string, 8
123
- optional :cluster_ipv4_cidr_block, :string, 9
124
- optional :node_ipv4_cidr_block, :string, 10
125
- optional :services_ipv4_cidr_block, :string, 11
126
- optional :allow_route_overlap, :bool, 12
127
- optional :tpu_ipv4_cidr_block, :string, 13
128
- end
129
- add_message "google.container.v1beta1.BinaryAuthorization" do
130
- optional :enabled, :bool, 1
131
- end
132
- add_message "google.container.v1beta1.PodSecurityPolicyConfig" do
133
- optional :enabled, :bool, 1
134
- end
135
- add_message "google.container.v1beta1.AuthenticatorGroupsConfig" do
136
- optional :enabled, :bool, 1
137
- optional :security_group, :string, 2
138
- end
139
- add_message "google.container.v1beta1.Cluster" do
140
- optional :name, :string, 1
141
- optional :description, :string, 2
142
- optional :initial_node_count, :int32, 3
143
- optional :node_config, :message, 4, "google.container.v1beta1.NodeConfig"
144
- optional :master_auth, :message, 5, "google.container.v1beta1.MasterAuth"
145
- optional :logging_service, :string, 6
146
- optional :monitoring_service, :string, 7
147
- optional :network, :string, 8
148
- optional :cluster_ipv4_cidr, :string, 9
149
- optional :addons_config, :message, 10, "google.container.v1beta1.AddonsConfig"
150
- optional :subnetwork, :string, 11
151
- repeated :node_pools, :message, 12, "google.container.v1beta1.NodePool"
152
- repeated :locations, :string, 13
153
- optional :enable_kubernetes_alpha, :bool, 14
154
- map :resource_labels, :string, :string, 15
155
- optional :label_fingerprint, :string, 16
156
- optional :legacy_abac, :message, 18, "google.container.v1beta1.LegacyAbac"
157
- optional :network_policy, :message, 19, "google.container.v1beta1.NetworkPolicy"
158
- optional :ip_allocation_policy, :message, 20, "google.container.v1beta1.IPAllocationPolicy"
159
- optional :master_authorized_networks_config, :message, 22, "google.container.v1beta1.MasterAuthorizedNetworksConfig"
160
- optional :maintenance_policy, :message, 23, "google.container.v1beta1.MaintenancePolicy"
161
- optional :binary_authorization, :message, 24, "google.container.v1beta1.BinaryAuthorization"
162
- optional :pod_security_policy_config, :message, 25, "google.container.v1beta1.PodSecurityPolicyConfig"
163
- optional :autoscaling, :message, 26, "google.container.v1beta1.ClusterAutoscaling"
164
- optional :network_config, :message, 27, "google.container.v1beta1.NetworkConfig"
165
- optional :private_cluster, :bool, 28
166
- optional :master_ipv4_cidr_block, :string, 29
167
- optional :default_max_pods_constraint, :message, 30, "google.container.v1beta1.MaxPodsConstraint"
168
- optional :resource_usage_export_config, :message, 33, "google.container.v1beta1.ResourceUsageExportConfig"
169
- optional :authenticator_groups_config, :message, 34, "google.container.v1beta1.AuthenticatorGroupsConfig"
170
- optional :private_cluster_config, :message, 37, "google.container.v1beta1.PrivateClusterConfig"
171
- optional :vertical_pod_autoscaling, :message, 39, "google.container.v1beta1.VerticalPodAutoscaling"
172
- optional :self_link, :string, 100
173
- optional :zone, :string, 101
174
- optional :endpoint, :string, 102
175
- optional :initial_cluster_version, :string, 103
176
- optional :current_master_version, :string, 104
177
- optional :current_node_version, :string, 105
178
- optional :create_time, :string, 106
179
- optional :status, :enum, 107, "google.container.v1beta1.Cluster.Status"
180
- optional :status_message, :string, 108
181
- optional :node_ipv4_cidr_size, :int32, 109
182
- optional :services_ipv4_cidr, :string, 110
183
- repeated :instance_group_urls, :string, 111
184
- optional :current_node_count, :int32, 112
185
- optional :expire_time, :string, 113
186
- optional :location, :string, 114
187
- optional :enable_tpu, :bool, 115
188
- optional :tpu_ipv4_cidr_block, :string, 116
189
- optional :database_encryption, :message, 38, "google.container.v1beta1.DatabaseEncryption"
190
- repeated :conditions, :message, 118, "google.container.v1beta1.StatusCondition"
191
- end
192
- add_enum "google.container.v1beta1.Cluster.Status" do
193
- value :STATUS_UNSPECIFIED, 0
194
- value :PROVISIONING, 1
195
- value :RUNNING, 2
196
- value :RECONCILING, 3
197
- value :STOPPING, 4
198
- value :ERROR, 5
199
- value :DEGRADED, 6
200
- end
201
- add_message "google.container.v1beta1.ClusterUpdate" do
202
- optional :desired_node_version, :string, 4
203
- optional :desired_monitoring_service, :string, 5
204
- optional :desired_addons_config, :message, 6, "google.container.v1beta1.AddonsConfig"
205
- optional :desired_node_pool_id, :string, 7
206
- optional :desired_image_type, :string, 8
207
- optional :desired_node_pool_autoscaling, :message, 9, "google.container.v1beta1.NodePoolAutoscaling"
208
- repeated :desired_locations, :string, 10
209
- optional :desired_master_authorized_networks_config, :message, 12, "google.container.v1beta1.MasterAuthorizedNetworksConfig"
210
- optional :desired_pod_security_policy_config, :message, 14, "google.container.v1beta1.PodSecurityPolicyConfig"
211
- optional :desired_cluster_autoscaling, :message, 15, "google.container.v1beta1.ClusterAutoscaling"
212
- optional :desired_binary_authorization, :message, 16, "google.container.v1beta1.BinaryAuthorization"
213
- optional :desired_logging_service, :string, 19
214
- optional :desired_resource_usage_export_config, :message, 21, "google.container.v1beta1.ResourceUsageExportConfig"
215
- optional :desired_vertical_pod_autoscaling, :message, 22, "google.container.v1beta1.VerticalPodAutoscaling"
216
- optional :desired_intra_node_visibility_config, :message, 26, "google.container.v1beta1.IntraNodeVisibilityConfig"
217
- optional :desired_master_version, :string, 100
218
- end
219
- add_message "google.container.v1beta1.Operation" do
220
- optional :name, :string, 1
221
- optional :zone, :string, 2
222
- optional :operation_type, :enum, 3, "google.container.v1beta1.Operation.Type"
223
- optional :status, :enum, 4, "google.container.v1beta1.Operation.Status"
224
- optional :detail, :string, 8
225
- optional :status_message, :string, 5
226
- optional :self_link, :string, 6
227
- optional :target_link, :string, 7
228
- optional :location, :string, 9
229
- optional :start_time, :string, 10
230
- optional :end_time, :string, 11
231
- optional :progress, :message, 12, "google.container.v1beta1.OperationProgress"
232
- repeated :cluster_conditions, :message, 13, "google.container.v1beta1.StatusCondition"
233
- repeated :nodepool_conditions, :message, 14, "google.container.v1beta1.StatusCondition"
234
- end
235
- add_enum "google.container.v1beta1.Operation.Status" do
236
- value :STATUS_UNSPECIFIED, 0
237
- value :PENDING, 1
238
- value :RUNNING, 2
239
- value :DONE, 3
240
- value :ABORTING, 4
241
- end
242
- add_enum "google.container.v1beta1.Operation.Type" do
243
- value :TYPE_UNSPECIFIED, 0
244
- value :CREATE_CLUSTER, 1
245
- value :DELETE_CLUSTER, 2
246
- value :UPGRADE_MASTER, 3
247
- value :UPGRADE_NODES, 4
248
- value :REPAIR_CLUSTER, 5
249
- value :UPDATE_CLUSTER, 6
250
- value :CREATE_NODE_POOL, 7
251
- value :DELETE_NODE_POOL, 8
252
- value :SET_NODE_POOL_MANAGEMENT, 9
253
- value :AUTO_REPAIR_NODES, 10
254
- value :AUTO_UPGRADE_NODES, 11
255
- value :SET_LABELS, 12
256
- value :SET_MASTER_AUTH, 13
257
- value :SET_NODE_POOL_SIZE, 14
258
- value :SET_NETWORK_POLICY, 15
259
- value :SET_MAINTENANCE_POLICY, 16
260
- end
261
- add_message "google.container.v1beta1.OperationProgress" do
262
- optional :name, :string, 1
263
- optional :status, :enum, 2, "google.container.v1beta1.Operation.Status"
264
- repeated :metrics, :message, 3, "google.container.v1beta1.OperationProgress.Metric"
265
- repeated :stages, :message, 4, "google.container.v1beta1.OperationProgress"
266
- end
267
- add_message "google.container.v1beta1.OperationProgress.Metric" do
268
- optional :name, :string, 1
269
- oneof :value do
270
- optional :int_value, :int64, 2
271
- optional :double_value, :double, 3
272
- optional :string_value, :string, 4
273
- end
274
- end
275
- add_message "google.container.v1beta1.CreateClusterRequest" do
276
- optional :project_id, :string, 1
277
- optional :zone, :string, 2
278
- optional :cluster, :message, 3, "google.container.v1beta1.Cluster"
279
- optional :parent, :string, 5
280
- end
281
- add_message "google.container.v1beta1.GetClusterRequest" do
282
- optional :project_id, :string, 1
283
- optional :zone, :string, 2
284
- optional :cluster_id, :string, 3
285
- optional :name, :string, 5
286
- end
287
- add_message "google.container.v1beta1.UpdateClusterRequest" do
288
- optional :project_id, :string, 1
289
- optional :zone, :string, 2
290
- optional :cluster_id, :string, 3
291
- optional :update, :message, 4, "google.container.v1beta1.ClusterUpdate"
292
- optional :name, :string, 5
293
- end
294
- add_message "google.container.v1beta1.UpdateNodePoolRequest" do
295
- optional :project_id, :string, 1
296
- optional :zone, :string, 2
297
- optional :cluster_id, :string, 3
298
- optional :node_pool_id, :string, 4
299
- optional :node_version, :string, 5
300
- optional :image_type, :string, 6
301
- optional :workload_metadata_config, :message, 14, "google.container.v1beta1.WorkloadMetadataConfig"
302
- optional :name, :string, 8
303
- end
304
- add_message "google.container.v1beta1.SetNodePoolAutoscalingRequest" do
305
- optional :project_id, :string, 1
306
- optional :zone, :string, 2
307
- optional :cluster_id, :string, 3
308
- optional :node_pool_id, :string, 4
309
- optional :autoscaling, :message, 5, "google.container.v1beta1.NodePoolAutoscaling"
310
- optional :name, :string, 6
311
- end
312
- add_message "google.container.v1beta1.SetLoggingServiceRequest" do
313
- optional :project_id, :string, 1
314
- optional :zone, :string, 2
315
- optional :cluster_id, :string, 3
316
- optional :logging_service, :string, 4
317
- optional :name, :string, 5
318
- end
319
- add_message "google.container.v1beta1.SetMonitoringServiceRequest" do
320
- optional :project_id, :string, 1
321
- optional :zone, :string, 2
322
- optional :cluster_id, :string, 3
323
- optional :monitoring_service, :string, 4
324
- optional :name, :string, 6
325
- end
326
- add_message "google.container.v1beta1.SetAddonsConfigRequest" do
327
- optional :project_id, :string, 1
328
- optional :zone, :string, 2
329
- optional :cluster_id, :string, 3
330
- optional :addons_config, :message, 4, "google.container.v1beta1.AddonsConfig"
331
- optional :name, :string, 6
332
- end
333
- add_message "google.container.v1beta1.SetLocationsRequest" do
334
- optional :project_id, :string, 1
335
- optional :zone, :string, 2
336
- optional :cluster_id, :string, 3
337
- repeated :locations, :string, 4
338
- optional :name, :string, 6
339
- end
340
- add_message "google.container.v1beta1.UpdateMasterRequest" do
341
- optional :project_id, :string, 1
342
- optional :zone, :string, 2
343
- optional :cluster_id, :string, 3
344
- optional :master_version, :string, 4
345
- optional :name, :string, 7
346
- end
347
- add_message "google.container.v1beta1.SetMasterAuthRequest" do
348
- optional :project_id, :string, 1
349
- optional :zone, :string, 2
350
- optional :cluster_id, :string, 3
351
- optional :action, :enum, 4, "google.container.v1beta1.SetMasterAuthRequest.Action"
352
- optional :update, :message, 5, "google.container.v1beta1.MasterAuth"
353
- optional :name, :string, 7
354
- end
355
- add_enum "google.container.v1beta1.SetMasterAuthRequest.Action" do
356
- value :UNKNOWN, 0
357
- value :SET_PASSWORD, 1
358
- value :GENERATE_PASSWORD, 2
359
- value :SET_USERNAME, 3
360
- end
361
- add_message "google.container.v1beta1.DeleteClusterRequest" do
362
- optional :project_id, :string, 1
363
- optional :zone, :string, 2
364
- optional :cluster_id, :string, 3
365
- optional :name, :string, 4
366
- end
367
- add_message "google.container.v1beta1.ListClustersRequest" do
368
- optional :project_id, :string, 1
369
- optional :zone, :string, 2
370
- optional :parent, :string, 4
371
- end
372
- add_message "google.container.v1beta1.ListClustersResponse" do
373
- repeated :clusters, :message, 1, "google.container.v1beta1.Cluster"
374
- repeated :missing_zones, :string, 2
375
- end
376
- add_message "google.container.v1beta1.GetOperationRequest" do
377
- optional :project_id, :string, 1
378
- optional :zone, :string, 2
379
- optional :operation_id, :string, 3
380
- optional :name, :string, 5
381
- end
382
- add_message "google.container.v1beta1.ListOperationsRequest" do
383
- optional :project_id, :string, 1
384
- optional :zone, :string, 2
385
- optional :parent, :string, 4
386
- end
387
- add_message "google.container.v1beta1.CancelOperationRequest" do
388
- optional :project_id, :string, 1
389
- optional :zone, :string, 2
390
- optional :operation_id, :string, 3
391
- optional :name, :string, 4
392
- end
393
- add_message "google.container.v1beta1.ListOperationsResponse" do
394
- repeated :operations, :message, 1, "google.container.v1beta1.Operation"
395
- repeated :missing_zones, :string, 2
396
- end
397
- add_message "google.container.v1beta1.GetServerConfigRequest" do
398
- optional :project_id, :string, 1
399
- optional :zone, :string, 2
400
- optional :name, :string, 4
401
- end
402
- add_message "google.container.v1beta1.ServerConfig" do
403
- optional :default_cluster_version, :string, 1
404
- repeated :valid_node_versions, :string, 3
405
- optional :default_image_type, :string, 4
406
- repeated :valid_image_types, :string, 5
407
- repeated :valid_master_versions, :string, 6
408
- end
409
- add_message "google.container.v1beta1.CreateNodePoolRequest" do
410
- optional :project_id, :string, 1
411
- optional :zone, :string, 2
412
- optional :cluster_id, :string, 3
413
- optional :node_pool, :message, 4, "google.container.v1beta1.NodePool"
414
- optional :parent, :string, 6
415
- end
416
- add_message "google.container.v1beta1.DeleteNodePoolRequest" do
417
- optional :project_id, :string, 1
418
- optional :zone, :string, 2
419
- optional :cluster_id, :string, 3
420
- optional :node_pool_id, :string, 4
421
- optional :name, :string, 6
422
- end
423
- add_message "google.container.v1beta1.ListNodePoolsRequest" do
424
- optional :project_id, :string, 1
425
- optional :zone, :string, 2
426
- optional :cluster_id, :string, 3
427
- optional :parent, :string, 5
428
- end
429
- add_message "google.container.v1beta1.GetNodePoolRequest" do
430
- optional :project_id, :string, 1
431
- optional :zone, :string, 2
432
- optional :cluster_id, :string, 3
433
- optional :node_pool_id, :string, 4
434
- optional :name, :string, 6
435
- end
436
- add_message "google.container.v1beta1.NodePool" do
437
- optional :name, :string, 1
438
- optional :config, :message, 2, "google.container.v1beta1.NodeConfig"
439
- optional :initial_node_count, :int32, 3
440
- optional :self_link, :string, 100
441
- optional :version, :string, 101
442
- repeated :instance_group_urls, :string, 102
443
- optional :status, :enum, 103, "google.container.v1beta1.NodePool.Status"
444
- optional :status_message, :string, 104
445
- optional :autoscaling, :message, 4, "google.container.v1beta1.NodePoolAutoscaling"
446
- optional :management, :message, 5, "google.container.v1beta1.NodeManagement"
447
- optional :max_pods_constraint, :message, 6, "google.container.v1beta1.MaxPodsConstraint"
448
- repeated :conditions, :message, 105, "google.container.v1beta1.StatusCondition"
449
- optional :pod_ipv4_cidr_size, :int32, 7
450
- end
451
- add_enum "google.container.v1beta1.NodePool.Status" do
452
- value :STATUS_UNSPECIFIED, 0
453
- value :PROVISIONING, 1
454
- value :RUNNING, 2
455
- value :RUNNING_WITH_ERROR, 3
456
- value :RECONCILING, 4
457
- value :STOPPING, 5
458
- value :ERROR, 6
459
- end
460
- add_message "google.container.v1beta1.NodeManagement" do
461
- optional :auto_upgrade, :bool, 1
462
- optional :auto_repair, :bool, 2
463
- optional :upgrade_options, :message, 10, "google.container.v1beta1.AutoUpgradeOptions"
464
- end
465
- add_message "google.container.v1beta1.AutoUpgradeOptions" do
466
- optional :auto_upgrade_start_time, :string, 1
467
- optional :description, :string, 2
468
- end
469
- add_message "google.container.v1beta1.MaintenancePolicy" do
470
- optional :window, :message, 1, "google.container.v1beta1.MaintenanceWindow"
471
- optional :resource_version, :string, 3
472
- end
473
- add_message "google.container.v1beta1.MaintenanceWindow" do
474
- map :maintenance_exclusions, :string, :message, 4, "google.container.v1beta1.TimeWindow"
475
- oneof :policy do
476
- optional :daily_maintenance_window, :message, 2, "google.container.v1beta1.DailyMaintenanceWindow"
477
- optional :recurring_window, :message, 3, "google.container.v1beta1.RecurringTimeWindow"
478
- end
479
- end
480
- add_message "google.container.v1beta1.TimeWindow" do
481
- optional :start_time, :message, 1, "google.protobuf.Timestamp"
482
- optional :end_time, :message, 2, "google.protobuf.Timestamp"
483
- end
484
- add_message "google.container.v1beta1.RecurringTimeWindow" do
485
- optional :window, :message, 1, "google.container.v1beta1.TimeWindow"
486
- optional :recurrence, :string, 2
487
- end
488
- add_message "google.container.v1beta1.DailyMaintenanceWindow" do
489
- optional :start_time, :string, 2
490
- optional :duration, :string, 3
491
- end
492
- add_message "google.container.v1beta1.SetNodePoolManagementRequest" do
493
- optional :project_id, :string, 1
494
- optional :zone, :string, 2
495
- optional :cluster_id, :string, 3
496
- optional :node_pool_id, :string, 4
497
- optional :management, :message, 5, "google.container.v1beta1.NodeManagement"
498
- optional :name, :string, 7
499
- end
500
- add_message "google.container.v1beta1.SetNodePoolSizeRequest" do
501
- optional :project_id, :string, 1
502
- optional :zone, :string, 2
503
- optional :cluster_id, :string, 3
504
- optional :node_pool_id, :string, 4
505
- optional :node_count, :int32, 5
506
- optional :name, :string, 7
507
- end
508
- add_message "google.container.v1beta1.RollbackNodePoolUpgradeRequest" do
509
- optional :project_id, :string, 1
510
- optional :zone, :string, 2
511
- optional :cluster_id, :string, 3
512
- optional :node_pool_id, :string, 4
513
- optional :name, :string, 6
514
- end
515
- add_message "google.container.v1beta1.ListNodePoolsResponse" do
516
- repeated :node_pools, :message, 1, "google.container.v1beta1.NodePool"
517
- end
518
- add_message "google.container.v1beta1.ClusterAutoscaling" do
519
- optional :enable_node_autoprovisioning, :bool, 1
520
- repeated :resource_limits, :message, 2, "google.container.v1beta1.ResourceLimit"
521
- optional :autoprovisioning_node_pool_defaults, :message, 4, "google.container.v1beta1.AutoprovisioningNodePoolDefaults"
522
- repeated :autoprovisioning_locations, :string, 5
523
- end
524
- add_message "google.container.v1beta1.AutoprovisioningNodePoolDefaults" do
525
- repeated :oauth_scopes, :string, 1
526
- optional :service_account, :string, 2
527
- end
528
- add_message "google.container.v1beta1.ResourceLimit" do
529
- optional :resource_type, :string, 1
530
- optional :minimum, :int64, 2
531
- optional :maximum, :int64, 3
532
- end
533
- add_message "google.container.v1beta1.NodePoolAutoscaling" do
534
- optional :enabled, :bool, 1
535
- optional :min_node_count, :int32, 2
536
- optional :max_node_count, :int32, 3
537
- optional :autoprovisioned, :bool, 4
538
- end
539
- add_message "google.container.v1beta1.SetLabelsRequest" do
540
- optional :project_id, :string, 1
541
- optional :zone, :string, 2
542
- optional :cluster_id, :string, 3
543
- map :resource_labels, :string, :string, 4
544
- optional :label_fingerprint, :string, 5
545
- optional :name, :string, 7
546
- end
547
- add_message "google.container.v1beta1.SetLegacyAbacRequest" do
548
- optional :project_id, :string, 1
549
- optional :zone, :string, 2
550
- optional :cluster_id, :string, 3
551
- optional :enabled, :bool, 4
552
- optional :name, :string, 6
553
- end
554
- add_message "google.container.v1beta1.StartIPRotationRequest" do
555
- optional :project_id, :string, 1
556
- optional :zone, :string, 2
557
- optional :cluster_id, :string, 3
558
- optional :name, :string, 6
559
- optional :rotate_credentials, :bool, 7
560
- end
561
- add_message "google.container.v1beta1.CompleteIPRotationRequest" do
562
- optional :project_id, :string, 1
563
- optional :zone, :string, 2
564
- optional :cluster_id, :string, 3
565
- optional :name, :string, 7
566
- end
567
- add_message "google.container.v1beta1.AcceleratorConfig" do
568
- optional :accelerator_count, :int64, 1
569
- optional :accelerator_type, :string, 2
570
- end
571
- add_message "google.container.v1beta1.WorkloadMetadataConfig" do
572
- optional :node_metadata, :enum, 1, "google.container.v1beta1.WorkloadMetadataConfig.NodeMetadata"
573
- end
574
- add_enum "google.container.v1beta1.WorkloadMetadataConfig.NodeMetadata" do
575
- value :UNSPECIFIED, 0
576
- value :SECURE, 1
577
- value :EXPOSE, 2
578
- end
579
- add_message "google.container.v1beta1.SetNetworkPolicyRequest" do
580
- optional :project_id, :string, 1
581
- optional :zone, :string, 2
582
- optional :cluster_id, :string, 3
583
- optional :network_policy, :message, 4, "google.container.v1beta1.NetworkPolicy"
584
- optional :name, :string, 6
585
- end
586
- add_message "google.container.v1beta1.SetMaintenancePolicyRequest" do
587
- optional :project_id, :string, 1
588
- optional :zone, :string, 2
589
- optional :cluster_id, :string, 3
590
- optional :maintenance_policy, :message, 4, "google.container.v1beta1.MaintenancePolicy"
591
- optional :name, :string, 5
592
- end
593
- add_message "google.container.v1beta1.ListLocationsRequest" do
594
- optional :parent, :string, 1
595
- end
596
- add_message "google.container.v1beta1.ListLocationsResponse" do
597
- repeated :locations, :message, 1, "google.container.v1beta1.Location"
598
- optional :next_page_token, :string, 2
599
- end
600
- add_message "google.container.v1beta1.Location" do
601
- optional :type, :enum, 1, "google.container.v1beta1.Location.LocationType"
602
- optional :name, :string, 2
603
- optional :recommended, :bool, 3
604
- end
605
- add_enum "google.container.v1beta1.Location.LocationType" do
606
- value :LOCATION_TYPE_UNSPECIFIED, 0
607
- value :ZONE, 1
608
- value :REGION, 2
609
- end
610
- add_message "google.container.v1beta1.StatusCondition" do
611
- optional :code, :enum, 1, "google.container.v1beta1.StatusCondition.Code"
612
- optional :message, :string, 2
613
- end
614
- add_enum "google.container.v1beta1.StatusCondition.Code" do
615
- value :UNKNOWN, 0
616
- value :GCE_STOCKOUT, 1
617
- value :GKE_SERVICE_ACCOUNT_DELETED, 2
618
- value :GCE_QUOTA_EXCEEDED, 3
619
- value :SET_BY_OPERATOR, 4
620
- value :CLOUD_KMS_KEY_ERROR, 7
621
- end
622
- add_message "google.container.v1beta1.NetworkConfig" do
623
- optional :network, :string, 1
624
- optional :subnetwork, :string, 2
625
- optional :enable_intra_node_visibility, :bool, 5
626
- end
627
- add_message "google.container.v1beta1.ListUsableSubnetworksRequest" do
628
- optional :parent, :string, 1
629
- optional :filter, :string, 2
630
- optional :page_size, :int32, 3
631
- optional :page_token, :string, 4
632
- end
633
- add_message "google.container.v1beta1.ListUsableSubnetworksResponse" do
634
- repeated :subnetworks, :message, 1, "google.container.v1beta1.UsableSubnetwork"
635
- optional :next_page_token, :string, 2
636
- end
637
- add_message "google.container.v1beta1.UsableSubnetworkSecondaryRange" do
638
- optional :range_name, :string, 1
639
- optional :ip_cidr_range, :string, 2
640
- optional :status, :enum, 3, "google.container.v1beta1.UsableSubnetworkSecondaryRange.Status"
641
- end
642
- add_enum "google.container.v1beta1.UsableSubnetworkSecondaryRange.Status" do
643
- value :UNKNOWN, 0
644
- value :UNUSED, 1
645
- value :IN_USE_SERVICE, 2
646
- value :IN_USE_SHAREABLE_POD, 3
647
- value :IN_USE_MANAGED_POD, 4
648
- end
649
- add_message "google.container.v1beta1.UsableSubnetwork" do
650
- optional :subnetwork, :string, 1
651
- optional :network, :string, 2
652
- optional :ip_cidr_range, :string, 3
653
- repeated :secondary_ip_ranges, :message, 4, "google.container.v1beta1.UsableSubnetworkSecondaryRange"
654
- optional :status_message, :string, 5
655
- end
656
- add_message "google.container.v1beta1.VerticalPodAutoscaling" do
657
- optional :enabled, :bool, 1
658
- end
659
- add_message "google.container.v1beta1.IntraNodeVisibilityConfig" do
660
- optional :enabled, :bool, 1
661
- end
662
- add_message "google.container.v1beta1.MaxPodsConstraint" do
663
- optional :max_pods_per_node, :int64, 1
664
- end
665
- add_message "google.container.v1beta1.DatabaseEncryption" do
666
- optional :state, :enum, 2, "google.container.v1beta1.DatabaseEncryption.State"
667
- optional :key_name, :string, 1
668
- end
669
- add_enum "google.container.v1beta1.DatabaseEncryption.State" do
670
- value :UNKNOWN, 0
671
- value :ENCRYPTED, 1
672
- value :DECRYPTED, 2
673
- end
674
- add_message "google.container.v1beta1.ResourceUsageExportConfig" do
675
- optional :bigquery_destination, :message, 1, "google.container.v1beta1.ResourceUsageExportConfig.BigQueryDestination"
676
- optional :enable_network_egress_metering, :bool, 2
677
- optional :consumption_metering_config, :message, 3, "google.container.v1beta1.ResourceUsageExportConfig.ConsumptionMeteringConfig"
678
- end
679
- add_message "google.container.v1beta1.ResourceUsageExportConfig.BigQueryDestination" do
680
- optional :dataset_id, :string, 1
681
- end
682
- add_message "google.container.v1beta1.ResourceUsageExportConfig.ConsumptionMeteringConfig" do
683
- optional :enabled, :bool, 1
684
- end
685
- end
686
-
687
- module Google
688
- module Cloud
689
- module Container
690
- end
691
- end
692
- Container = Cloud::Container unless const_defined? :Container
693
- end
694
- module Google::Cloud::Container::V1beta1
695
- NodeConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NodeConfig").msgclass
696
- ShieldedInstanceConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ShieldedInstanceConfig").msgclass
697
- NodeTaint = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NodeTaint").msgclass
698
- NodeTaint::Effect = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NodeTaint.Effect").enummodule
699
- MasterAuth = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.MasterAuth").msgclass
700
- ClientCertificateConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ClientCertificateConfig").msgclass
701
- AddonsConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.AddonsConfig").msgclass
702
- HttpLoadBalancing = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.HttpLoadBalancing").msgclass
703
- HorizontalPodAutoscaling = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.HorizontalPodAutoscaling").msgclass
704
- KubernetesDashboard = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.KubernetesDashboard").msgclass
705
- NetworkPolicyConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NetworkPolicyConfig").msgclass
706
- PrivateClusterConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.PrivateClusterConfig").msgclass
707
- IstioConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.IstioConfig").msgclass
708
- IstioConfig::IstioAuthMode = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.IstioConfig.IstioAuthMode").enummodule
709
- CloudRunConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.CloudRunConfig").msgclass
710
- MasterAuthorizedNetworksConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.MasterAuthorizedNetworksConfig").msgclass
711
- MasterAuthorizedNetworksConfig::CidrBlock = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.MasterAuthorizedNetworksConfig.CidrBlock").msgclass
712
- LegacyAbac = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.LegacyAbac").msgclass
713
- NetworkPolicy = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NetworkPolicy").msgclass
714
- NetworkPolicy::Provider = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NetworkPolicy.Provider").enummodule
715
- IPAllocationPolicy = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.IPAllocationPolicy").msgclass
716
- BinaryAuthorization = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.BinaryAuthorization").msgclass
717
- PodSecurityPolicyConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.PodSecurityPolicyConfig").msgclass
718
- AuthenticatorGroupsConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.AuthenticatorGroupsConfig").msgclass
719
- Cluster = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.Cluster").msgclass
720
- Cluster::Status = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.Cluster.Status").enummodule
721
- ClusterUpdate = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ClusterUpdate").msgclass
722
- Operation = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.Operation").msgclass
723
- Operation::Status = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.Operation.Status").enummodule
724
- Operation::Type = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.Operation.Type").enummodule
725
- OperationProgress = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.OperationProgress").msgclass
726
- OperationProgress::Metric = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.OperationProgress.Metric").msgclass
727
- CreateClusterRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.CreateClusterRequest").msgclass
728
- GetClusterRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.GetClusterRequest").msgclass
729
- UpdateClusterRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.UpdateClusterRequest").msgclass
730
- UpdateNodePoolRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.UpdateNodePoolRequest").msgclass
731
- SetNodePoolAutoscalingRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.SetNodePoolAutoscalingRequest").msgclass
732
- SetLoggingServiceRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.SetLoggingServiceRequest").msgclass
733
- SetMonitoringServiceRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.SetMonitoringServiceRequest").msgclass
734
- SetAddonsConfigRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.SetAddonsConfigRequest").msgclass
735
- SetLocationsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.SetLocationsRequest").msgclass
736
- UpdateMasterRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.UpdateMasterRequest").msgclass
737
- SetMasterAuthRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.SetMasterAuthRequest").msgclass
738
- SetMasterAuthRequest::Action = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.SetMasterAuthRequest.Action").enummodule
739
- DeleteClusterRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.DeleteClusterRequest").msgclass
740
- ListClustersRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ListClustersRequest").msgclass
741
- ListClustersResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ListClustersResponse").msgclass
742
- GetOperationRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.GetOperationRequest").msgclass
743
- ListOperationsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ListOperationsRequest").msgclass
744
- CancelOperationRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.CancelOperationRequest").msgclass
745
- ListOperationsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ListOperationsResponse").msgclass
746
- GetServerConfigRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.GetServerConfigRequest").msgclass
747
- ServerConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ServerConfig").msgclass
748
- CreateNodePoolRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.CreateNodePoolRequest").msgclass
749
- DeleteNodePoolRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.DeleteNodePoolRequest").msgclass
750
- ListNodePoolsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ListNodePoolsRequest").msgclass
751
- GetNodePoolRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.GetNodePoolRequest").msgclass
752
- NodePool = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NodePool").msgclass
753
- NodePool::Status = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NodePool.Status").enummodule
754
- NodeManagement = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NodeManagement").msgclass
755
- AutoUpgradeOptions = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.AutoUpgradeOptions").msgclass
756
- MaintenancePolicy = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.MaintenancePolicy").msgclass
757
- MaintenanceWindow = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.MaintenanceWindow").msgclass
758
- TimeWindow = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.TimeWindow").msgclass
759
- RecurringTimeWindow = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.RecurringTimeWindow").msgclass
760
- DailyMaintenanceWindow = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.DailyMaintenanceWindow").msgclass
761
- SetNodePoolManagementRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.SetNodePoolManagementRequest").msgclass
762
- SetNodePoolSizeRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.SetNodePoolSizeRequest").msgclass
763
- RollbackNodePoolUpgradeRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.RollbackNodePoolUpgradeRequest").msgclass
764
- ListNodePoolsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ListNodePoolsResponse").msgclass
765
- ClusterAutoscaling = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ClusterAutoscaling").msgclass
766
- AutoprovisioningNodePoolDefaults = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.AutoprovisioningNodePoolDefaults").msgclass
767
- ResourceLimit = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ResourceLimit").msgclass
768
- NodePoolAutoscaling = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NodePoolAutoscaling").msgclass
769
- SetLabelsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.SetLabelsRequest").msgclass
770
- SetLegacyAbacRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.SetLegacyAbacRequest").msgclass
771
- StartIPRotationRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.StartIPRotationRequest").msgclass
772
- CompleteIPRotationRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.CompleteIPRotationRequest").msgclass
773
- AcceleratorConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.AcceleratorConfig").msgclass
774
- WorkloadMetadataConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.WorkloadMetadataConfig").msgclass
775
- WorkloadMetadataConfig::NodeMetadata = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.WorkloadMetadataConfig.NodeMetadata").enummodule
776
- SetNetworkPolicyRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.SetNetworkPolicyRequest").msgclass
777
- SetMaintenancePolicyRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.SetMaintenancePolicyRequest").msgclass
778
- ListLocationsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ListLocationsRequest").msgclass
779
- ListLocationsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ListLocationsResponse").msgclass
780
- Location = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.Location").msgclass
781
- Location::LocationType = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.Location.LocationType").enummodule
782
- StatusCondition = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.StatusCondition").msgclass
783
- StatusCondition::Code = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.StatusCondition.Code").enummodule
784
- NetworkConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NetworkConfig").msgclass
785
- ListUsableSubnetworksRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ListUsableSubnetworksRequest").msgclass
786
- ListUsableSubnetworksResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ListUsableSubnetworksResponse").msgclass
787
- UsableSubnetworkSecondaryRange = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.UsableSubnetworkSecondaryRange").msgclass
788
- UsableSubnetworkSecondaryRange::Status = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.UsableSubnetworkSecondaryRange.Status").enummodule
789
- UsableSubnetwork = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.UsableSubnetwork").msgclass
790
- VerticalPodAutoscaling = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.VerticalPodAutoscaling").msgclass
791
- IntraNodeVisibilityConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.IntraNodeVisibilityConfig").msgclass
792
- MaxPodsConstraint = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.MaxPodsConstraint").msgclass
793
- DatabaseEncryption = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.DatabaseEncryption").msgclass
794
- DatabaseEncryption::State = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.DatabaseEncryption.State").enummodule
795
- ResourceUsageExportConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ResourceUsageExportConfig").msgclass
796
- ResourceUsageExportConfig::BigQueryDestination = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ResourceUsageExportConfig.BigQueryDestination").msgclass
797
- ResourceUsageExportConfig::ConsumptionMeteringConfig = Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ResourceUsageExportConfig.ConsumptionMeteringConfig").msgclass
798
- end