google-cloud-container-v1 1.7.0 → 1.9.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/v1/cluster_manager/client.rb +309 -106
- data/lib/google/cloud/container/v1/cluster_manager/rest/client.rb +295 -106
- data/lib/google/cloud/container/v1/cluster_manager/rest/service_stub.rb +136 -0
- data/lib/google/cloud/container/v1/version.rb +1 -1
- data/lib/google/container/v1/cluster_service_pb.rb +38 -2
- data/lib/google/container/v1/cluster_service_services_pb.rb +6 -0
- data/proto_docs/google/container/v1/cluster_service.rb +1183 -156
- metadata +2 -2
@@ -24,6 +24,8 @@ module Google
|
|
24
24
|
module Container
|
25
25
|
module V1
|
26
26
|
module ClusterManager
|
27
|
+
# LINT: LEGACY_NAMES
|
28
|
+
#
|
27
29
|
# Google Kubernetes Engine Cluster Manager v1
|
28
30
|
class Service
|
29
31
|
|
@@ -134,6 +136,10 @@ module Google
|
|
134
136
|
# Checks the cluster compatibility with Autopilot mode, and returns a list of
|
135
137
|
# compatibility issues.
|
136
138
|
rpc :CheckAutopilotCompatibility, ::Google::Cloud::Container::V1::CheckAutopilotCompatibilityRequest, ::Google::Cloud::Container::V1::CheckAutopilotCompatibilityResponse
|
139
|
+
# Fetch upgrade information of a specific cluster.
|
140
|
+
rpc :FetchClusterUpgradeInfo, ::Google::Cloud::Container::V1::FetchClusterUpgradeInfoRequest, ::Google::Cloud::Container::V1::ClusterUpgradeInfo
|
141
|
+
# Fetch upgrade information of a specific nodepool.
|
142
|
+
rpc :FetchNodePoolUpgradeInfo, ::Google::Cloud::Container::V1::FetchNodePoolUpgradeInfoRequest, ::Google::Cloud::Container::V1::NodePoolUpgradeInfo
|
137
143
|
end
|
138
144
|
|
139
145
|
Stub = Service.rpc_stub_class
|