google-cloud-container-v1 0.7.3 → 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +11 -6
- data/lib/google/cloud/container/v1/cluster_manager/client.rb +171 -44
- data/lib/google/cloud/container/v1/cluster_manager/paths.rb +50 -0
- data/lib/google/cloud/container/v1/cluster_manager.rb +1 -0
- data/lib/google/cloud/container/v1/version.rb +1 -1
- data/lib/google/cloud/container/v1.rb +2 -0
- data/lib/google/container/v1/cluster_service_pb.rb +372 -1
- data/lib/google/container/v1/cluster_service_services_pb.rb +6 -1
- data/proto_docs/google/container/v1/cluster_service.rb +1150 -55
- data/proto_docs/google/protobuf/any.rb +141 -0
- data/proto_docs/google/protobuf/duration.rb +98 -0
- data/proto_docs/google/protobuf/empty.rb +0 -2
- data/proto_docs/google/protobuf/wrappers.rb +121 -0
- data/proto_docs/google/rpc/code.rb +185 -0
- data/proto_docs/google/rpc/status.rb +46 -0
- metadata +18 -12
@@ -107,6 +107,9 @@ module Google
|
|
107
107
|
rpc :CreateNodePool, ::Google::Cloud::Container::V1::CreateNodePoolRequest, ::Google::Cloud::Container::V1::Operation
|
108
108
|
# Deletes a node pool from a cluster.
|
109
109
|
rpc :DeleteNodePool, ::Google::Cloud::Container::V1::DeleteNodePoolRequest, ::Google::Cloud::Container::V1::Operation
|
110
|
+
# CompleteNodePoolUpgrade will signal an on-going node pool upgrade to
|
111
|
+
# complete.
|
112
|
+
rpc :CompleteNodePoolUpgrade, ::Google::Cloud::Container::V1::CompleteNodePoolUpgradeRequest, ::Google::Protobuf::Empty
|
110
113
|
# Rolls back a previously Aborted or Failed NodePool upgrade.
|
111
114
|
# This makes no changes if the last upgrade successfully completed.
|
112
115
|
rpc :RollbackNodePoolUpgrade, ::Google::Cloud::Container::V1::RollbackNodePoolUpgradeRequest, ::Google::Cloud::Container::V1::Operation
|
@@ -120,7 +123,9 @@ module Google
|
|
120
123
|
rpc :StartIPRotation, ::Google::Cloud::Container::V1::StartIPRotationRequest, ::Google::Cloud::Container::V1::Operation
|
121
124
|
# Completes master IP rotation.
|
122
125
|
rpc :CompleteIPRotation, ::Google::Cloud::Container::V1::CompleteIPRotationRequest, ::Google::Cloud::Container::V1::Operation
|
123
|
-
# Sets the size for a specific node pool.
|
126
|
+
# Sets the size for a specific node pool. The new size will be used for all
|
127
|
+
# replicas, including future replicas created by modifying
|
128
|
+
# [NodePool.locations][google.container.v1.NodePool.locations].
|
124
129
|
rpc :SetNodePoolSize, ::Google::Cloud::Container::V1::SetNodePoolSizeRequest, ::Google::Cloud::Container::V1::Operation
|
125
130
|
# Enables or disables Network Policy for a cluster.
|
126
131
|
rpc :SetNetworkPolicy, ::Google::Cloud::Container::V1::SetNetworkPolicyRequest, ::Google::Cloud::Container::V1::Operation
|