google-cloud-container-v1beta1 0.19.0 → 0.20.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b1fa3d6984cfbbc9b5c7d4d4b524d2587c6dfb06dbeb26305a6eb35a3948c12d
|
4
|
+
data.tar.gz: 72d81d79d36a130c61ee8eb3b8bafa1c60441972cbac741834cad642a8e2bac8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 715ab7f860247712541651e22d6c3e1b0a8decd895ac4829cee65e5c996d29f16ed0ec16c267a16a07fd3e2642b89ba55c853750dc9d267c346c464f18a4cfba
|
7
|
+
data.tar.gz: '097c77f6b3be2a08e7cbe2a161c585a6fc75966b24beffdde7bcc2c6fc2a34fb62a5af07feda87de2d6eefde130a3ddaa0021f1ffd8d4d348db35d08e233132f'
|
@@ -527,6 +527,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
527
527
|
value :SET_NODE_POOL_SIZE, 14
|
528
528
|
value :SET_NETWORK_POLICY, 15
|
529
529
|
value :SET_MAINTENANCE_POLICY, 16
|
530
|
+
value :RESIZE_CLUSTER, 18
|
530
531
|
end
|
531
532
|
add_message "google.container.v1beta1.OperationProgress" do
|
532
533
|
optional :name, :string, 1
|
@@ -1135,8 +1136,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
1135
1136
|
optional :enable_certificates, :message, 1, "google.protobuf.BoolValue"
|
1136
1137
|
end
|
1137
1138
|
add_message "google.container.v1beta1.DatabaseEncryption" do
|
1138
|
-
optional :state, :enum, 2, "google.container.v1beta1.DatabaseEncryption.State"
|
1139
1139
|
optional :key_name, :string, 1
|
1140
|
+
optional :state, :enum, 2, "google.container.v1beta1.DatabaseEncryption.State"
|
1140
1141
|
end
|
1141
1142
|
add_enum "google.container.v1beta1.DatabaseEncryption.State" do
|
1142
1143
|
value :UNKNOWN, 0
|
@@ -2107,10 +2107,23 @@ module Google
|
|
2107
2107
|
# Deprecated. Use field error instead.
|
2108
2108
|
# @!attribute [rw] self_link
|
2109
2109
|
# @return [::String]
|
2110
|
-
# Server-defined
|
2110
|
+
# Server-defined URI for the operation. Example:
|
2111
|
+
# `https://container.googleapis.com/v1alpha1/projects/123/locations/us-central1/operations/operation-123`.
|
2111
2112
|
# @!attribute [rw] target_link
|
2112
2113
|
# @return [::String]
|
2113
|
-
# Server-defined
|
2114
|
+
# Server-defined URI for the target of the operation. The format of this is a
|
2115
|
+
# URI to the resource being modified (such as a cluster, node pool, or node).
|
2116
|
+
# For node pool repairs, there may be multiple nodes being repaired, but only
|
2117
|
+
# one will be the target.
|
2118
|
+
#
|
2119
|
+
# Examples:
|
2120
|
+
#
|
2121
|
+
# -
|
2122
|
+
# `https://container.googleapis.com/v1beta1/projects/123/locations/us-central1/clusters/my-cluster`
|
2123
|
+
# -
|
2124
|
+
# `https://container.googleapis.com/v1beta1/projects/123/zones/us-central1-c/clusters/my-cluster/nodePools/my-np`
|
2125
|
+
# -
|
2126
|
+
# `https://container.googleapis.com/v1beta1/projects/123/zones/us-central1-c/clusters/my-cluster/nodePools/my-np/node/my-node`
|
2114
2127
|
# @!attribute [rw] location
|
2115
2128
|
# @return [::String]
|
2116
2129
|
# [Output only] The name of the Google Compute Engine
|
@@ -2162,58 +2175,126 @@ module Google
|
|
2162
2175
|
ABORTING = 4
|
2163
2176
|
end
|
2164
2177
|
|
2165
|
-
# Operation type.
|
2178
|
+
# Operation type categorizes the operation.
|
2166
2179
|
module Type
|
2167
2180
|
# Not set.
|
2168
2181
|
TYPE_UNSPECIFIED = 0
|
2169
2182
|
|
2170
|
-
#
|
2183
|
+
# The cluster is being created. The cluster should be assumed to be
|
2184
|
+
# unusable until the operation finishes.
|
2185
|
+
#
|
2186
|
+
# In the event of the operation failing, the cluster will enter the [ERROR
|
2187
|
+
# state][Cluster.Status.ERROR] and eventually be deleted.
|
2171
2188
|
CREATE_CLUSTER = 1
|
2172
2189
|
|
2173
|
-
#
|
2190
|
+
# The cluster is being deleted. The cluster should be assumed to be
|
2191
|
+
# unusable as soon as this operation starts.
|
2192
|
+
#
|
2193
|
+
# In the event of the operation failing, the cluster will enter the [ERROR
|
2194
|
+
# state][Cluster.Status.ERROR] and the deletion will be automatically
|
2195
|
+
# retried until completed.
|
2174
2196
|
DELETE_CLUSTER = 2
|
2175
2197
|
|
2176
|
-
#
|
2198
|
+
# The [cluster
|
2199
|
+
# version][google.container.v1beta1.ClusterUpdate.desired_master_version]
|
2200
|
+
# is being updated. Note that this includes "upgrades" to the same version,
|
2201
|
+
# which are simply a recreation. This also includes
|
2202
|
+
# [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#upgrading_automatically).
|
2203
|
+
# For more details, see [documentation on cluster
|
2204
|
+
# upgrades](https://cloud.google.com/kubernetes-engine/docs/concepts/cluster-upgrades#cluster_upgrades).
|
2177
2205
|
UPGRADE_MASTER = 3
|
2178
2206
|
|
2179
|
-
# A node upgrade
|
2207
|
+
# A node pool is being updated. Despite calling this an "upgrade", this
|
2208
|
+
# includes most forms of updates to node pools. This also includes
|
2209
|
+
# [auto-upgrades](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-upgrades).
|
2210
|
+
#
|
2211
|
+
# This operation sets the
|
2212
|
+
# {::Google::Cloud::Container::V1beta1::Operation#progress progress} field and may be
|
2213
|
+
# {::Google::Cloud::Container::V1beta1::ClusterManager::Client#cancel_operation canceled}.
|
2214
|
+
#
|
2215
|
+
# The upgrade strategy depends on [node pool
|
2216
|
+
# configuration](https://cloud.google.com/kubernetes-engine/docs/concepts/node-pool-upgrade-strategies).
|
2217
|
+
# The nodes are generally still usable during this operation.
|
2180
2218
|
UPGRADE_NODES = 4
|
2181
2219
|
|
2182
|
-
#
|
2220
|
+
# A problem has been detected with the control plane and is being repaired.
|
2221
|
+
# This operation type is initiated by GKE. For more details, see
|
2222
|
+
# [documentation on
|
2223
|
+
# repairs](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
|
2183
2224
|
REPAIR_CLUSTER = 5
|
2184
2225
|
|
2185
|
-
#
|
2226
|
+
# The cluster is being updated. This is a broad category of operations and
|
2227
|
+
# includes operations that only change metadata as well as those that must
|
2228
|
+
# recreate the entire cluster. If the control plane must be recreated, this
|
2229
|
+
# will cause temporary downtime for zonal clusters.
|
2230
|
+
#
|
2231
|
+
# Some features require recreating the nodes as well. Those will be
|
2232
|
+
# recreated as separate operations and the update may not be completely
|
2233
|
+
# functional until the node pools recreations finish. Node recreations will
|
2234
|
+
# generally follow [maintenance
|
2235
|
+
# policies](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions).
|
2236
|
+
#
|
2237
|
+
# Some GKE-initiated operations use this type. This includes certain types
|
2238
|
+
# of auto-upgrades and incident mitigations.
|
2186
2239
|
UPDATE_CLUSTER = 6
|
2187
2240
|
|
2188
|
-
#
|
2241
|
+
# A node pool is being created. The node pool should be assumed to be
|
2242
|
+
# unusable until this operation finishes. In the event of an error, the
|
2243
|
+
# node pool may be partially created.
|
2244
|
+
#
|
2245
|
+
# If enabled, [node
|
2246
|
+
# autoprovisioning](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-provisioning)
|
2247
|
+
# may have automatically initiated such operations.
|
2189
2248
|
CREATE_NODE_POOL = 7
|
2190
2249
|
|
2191
|
-
#
|
2250
|
+
# The node pool is being deleted. The node pool should be assumed to be
|
2251
|
+
# unusable as soon as this operation starts.
|
2192
2252
|
DELETE_NODE_POOL = 8
|
2193
2253
|
|
2194
|
-
#
|
2254
|
+
# The node pool's
|
2255
|
+
# {::Google::Cloud::Container::V1beta1::NodePool#management manamagent} field is being
|
2256
|
+
# updated. These operations only update metadata and may be concurrent with
|
2257
|
+
# most other operations.
|
2195
2258
|
SET_NODE_POOL_MANAGEMENT = 9
|
2196
2259
|
|
2197
|
-
#
|
2260
|
+
# A problem has been detected with nodes and [they are being
|
2261
|
+
# repaired](https://cloud.google.com/kubernetes-engine/docs/how-to/node-auto-repair).
|
2262
|
+
# This operation type is initiated by GKE, typically automatically. This
|
2263
|
+
# operation may be concurrent with other operations and there may be
|
2264
|
+
# multiple repairs occurring on the same node pool.
|
2198
2265
|
AUTO_REPAIR_NODES = 10
|
2199
2266
|
|
2200
|
-
# Automatic node upgrade
|
2267
|
+
# Unused. Automatic node upgrade uses
|
2268
|
+
# {::Google::Cloud::Container::V1beta1::Operation::Type::UPGRADE_NODES UPGRADE_NODES}.
|
2201
2269
|
AUTO_UPGRADE_NODES = 11
|
2202
2270
|
|
2203
|
-
#
|
2271
|
+
# Unused. Updating labels uses
|
2272
|
+
# {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
|
2204
2273
|
SET_LABELS = 12
|
2205
2274
|
|
2206
|
-
#
|
2275
|
+
# Unused. Updating master auth uses
|
2276
|
+
# {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
|
2207
2277
|
SET_MASTER_AUTH = 13
|
2208
2278
|
|
2209
|
-
#
|
2279
|
+
# The node pool is being resized. With the exception of resizing to or from
|
2280
|
+
# size zero, the node pool is generally usable during this operation.
|
2210
2281
|
SET_NODE_POOL_SIZE = 14
|
2211
2282
|
|
2212
|
-
#
|
2283
|
+
# Unused. Updating network policy uses
|
2284
|
+
# {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
|
2213
2285
|
SET_NETWORK_POLICY = 15
|
2214
2286
|
|
2215
|
-
#
|
2287
|
+
# Unused. Updating maintenance policy uses
|
2288
|
+
# {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
|
2216
2289
|
SET_MAINTENANCE_POLICY = 16
|
2290
|
+
|
2291
|
+
# The control plane is being resized. This operation type is initiated by
|
2292
|
+
# GKE. These operations are often performed preemptively to ensure that the
|
2293
|
+
# control plane has sufficient resources and is not typically an indication
|
2294
|
+
# of issues. For more details, see
|
2295
|
+
# [documentation on
|
2296
|
+
# resizes](https://cloud.google.com/kubernetes-engine/docs/concepts/maintenance-windows-and-exclusions#repairs).
|
2297
|
+
RESIZE_CLUSTER = 18
|
2217
2298
|
end
|
2218
2299
|
end
|
2219
2300
|
|
@@ -4614,13 +4695,13 @@ module Google
|
|
4614
4695
|
end
|
4615
4696
|
|
4616
4697
|
# Configuration of etcd encryption.
|
4617
|
-
# @!attribute [rw] state
|
4618
|
-
# @return [::Google::Cloud::Container::V1beta1::DatabaseEncryption::State]
|
4619
|
-
# Denotes the state of etcd encryption.
|
4620
4698
|
# @!attribute [rw] key_name
|
4621
4699
|
# @return [::String]
|
4622
4700
|
# Name of CloudKMS key to use for the encryption of secrets in etcd.
|
4623
4701
|
# Ex. projects/my-project/locations/global/keyRings/my-ring/cryptoKeys/my-key
|
4702
|
+
# @!attribute [rw] state
|
4703
|
+
# @return [::Google::Cloud::Container::V1beta1::DatabaseEncryption::State]
|
4704
|
+
# The desired state of etcd encryption.
|
4624
4705
|
class DatabaseEncryption
|
4625
4706
|
include ::Google::Protobuf::MessageExts
|
4626
4707
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-container-v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.20.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-04-
|
11
|
+
date: 2023-04-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|