google-cloud-container-v1beta1 0.46.0 → 0.47.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.
- checksums.yaml +4 -4
- data/lib/google/cloud/container/v1beta1/cluster_manager/client.rb +293 -92
- data/lib/google/cloud/container/v1beta1/cluster_manager/paths.rb +42 -0
- data/lib/google/cloud/container/v1beta1/version.rb +1 -1
- data/lib/google/container/v1beta1/cluster_service_pb.rb +35 -1
- data/lib/google/container/v1beta1/cluster_service_services_pb.rb +6 -0
- data/proto_docs/google/container/v1beta1/cluster_service.rb +1104 -120
- metadata +2 -2
@@ -24,6 +24,8 @@ module Google
|
|
24
24
|
module Container
|
25
25
|
module V1beta1
|
26
26
|
module ClusterManager
|
27
|
+
# LINT: LEGACY_NAMES
|
28
|
+
#
|
27
29
|
# Google Kubernetes Engine Cluster Manager v1beta1
|
28
30
|
class Service
|
29
31
|
|
@@ -136,6 +138,10 @@ module Google
|
|
136
138
|
rpc :CheckAutopilotCompatibility, ::Google::Cloud::Container::V1beta1::CheckAutopilotCompatibilityRequest, ::Google::Cloud::Container::V1beta1::CheckAutopilotCompatibilityResponse
|
137
139
|
# Fetches locations that offer Google Kubernetes Engine.
|
138
140
|
rpc :ListLocations, ::Google::Cloud::Container::V1beta1::ListLocationsRequest, ::Google::Cloud::Container::V1beta1::ListLocationsResponse
|
141
|
+
# Fetch upgrade information of a specific cluster.
|
142
|
+
rpc :FetchClusterUpgradeInfo, ::Google::Cloud::Container::V1beta1::FetchClusterUpgradeInfoRequest, ::Google::Cloud::Container::V1beta1::ClusterUpgradeInfo
|
143
|
+
# Fetch upgrade information of a specific nodepool.
|
144
|
+
rpc :FetchNodePoolUpgradeInfo, ::Google::Cloud::Container::V1beta1::FetchNodePoolUpgradeInfoRequest, ::Google::Cloud::Container::V1beta1::NodePoolUpgradeInfo
|
139
145
|
end
|
140
146
|
|
141
147
|
Stub = Service.rpc_stub_class
|