google-cloud-container-v1beta1 0.18.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'
|
@@ -483,6 +483,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
483
483
|
optional :removed_additional_pod_ranges_config, :message, 121, "google.container.v1beta1.AdditionalPodRangesConfig"
|
484
484
|
end
|
485
485
|
add_message "google.container.v1beta1.AdditionalPodRangesConfig" do
|
486
|
+
repeated :pod_range_names, :string, 1
|
486
487
|
end
|
487
488
|
add_message "google.container.v1beta1.Operation" do
|
488
489
|
optional :name, :string, 1
|
@@ -526,6 +527,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
526
527
|
value :SET_NODE_POOL_SIZE, 14
|
527
528
|
value :SET_NETWORK_POLICY, 15
|
528
529
|
value :SET_MAINTENANCE_POLICY, 16
|
530
|
+
value :RESIZE_CLUSTER, 18
|
529
531
|
end
|
530
532
|
add_message "google.container.v1beta1.OperationProgress" do
|
531
533
|
optional :name, :string, 1
|
@@ -1134,8 +1136,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
1134
1136
|
optional :enable_certificates, :message, 1, "google.protobuf.BoolValue"
|
1135
1137
|
end
|
1136
1138
|
add_message "google.container.v1beta1.DatabaseEncryption" do
|
1137
|
-
optional :state, :enum, 2, "google.container.v1beta1.DatabaseEncryption.State"
|
1138
1139
|
optional :key_name, :string, 1
|
1140
|
+
optional :state, :enum, 2, "google.container.v1beta1.DatabaseEncryption.State"
|
1139
1141
|
end
|
1140
1142
|
add_enum "google.container.v1beta1.DatabaseEncryption.State" do
|
1141
1143
|
value :UNKNOWN, 0
|
@@ -2074,6 +2074,9 @@ module Google
|
|
2074
2074
|
|
2075
2075
|
# AdditionalPodRangesConfig is the configuration for additional pod secondary
|
2076
2076
|
# ranges supporting the ClusterUpdate message.
|
2077
|
+
# @!attribute [rw] pod_range_names
|
2078
|
+
# @return [::Array<::String>]
|
2079
|
+
# Name for pod secondary ipv4 range which has the actual range defined ahead.
|
2077
2080
|
class AdditionalPodRangesConfig
|
2078
2081
|
include ::Google::Protobuf::MessageExts
|
2079
2082
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -2104,10 +2107,23 @@ module Google
|
|
2104
2107
|
# Deprecated. Use field error instead.
|
2105
2108
|
# @!attribute [rw] self_link
|
2106
2109
|
# @return [::String]
|
2107
|
-
# Server-defined
|
2110
|
+
# Server-defined URI for the operation. Example:
|
2111
|
+
# `https://container.googleapis.com/v1alpha1/projects/123/locations/us-central1/operations/operation-123`.
|
2108
2112
|
# @!attribute [rw] target_link
|
2109
2113
|
# @return [::String]
|
2110
|
-
# 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`
|
2111
2127
|
# @!attribute [rw] location
|
2112
2128
|
# @return [::String]
|
2113
2129
|
# [Output only] The name of the Google Compute Engine
|
@@ -2159,58 +2175,126 @@ module Google
|
|
2159
2175
|
ABORTING = 4
|
2160
2176
|
end
|
2161
2177
|
|
2162
|
-
# Operation type.
|
2178
|
+
# Operation type categorizes the operation.
|
2163
2179
|
module Type
|
2164
2180
|
# Not set.
|
2165
2181
|
TYPE_UNSPECIFIED = 0
|
2166
2182
|
|
2167
|
-
#
|
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.
|
2168
2188
|
CREATE_CLUSTER = 1
|
2169
2189
|
|
2170
|
-
#
|
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.
|
2171
2196
|
DELETE_CLUSTER = 2
|
2172
2197
|
|
2173
|
-
#
|
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).
|
2174
2205
|
UPGRADE_MASTER = 3
|
2175
2206
|
|
2176
|
-
# 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.
|
2177
2218
|
UPGRADE_NODES = 4
|
2178
2219
|
|
2179
|
-
#
|
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).
|
2180
2224
|
REPAIR_CLUSTER = 5
|
2181
2225
|
|
2182
|
-
#
|
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.
|
2183
2239
|
UPDATE_CLUSTER = 6
|
2184
2240
|
|
2185
|
-
#
|
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.
|
2186
2248
|
CREATE_NODE_POOL = 7
|
2187
2249
|
|
2188
|
-
#
|
2250
|
+
# The node pool is being deleted. The node pool should be assumed to be
|
2251
|
+
# unusable as soon as this operation starts.
|
2189
2252
|
DELETE_NODE_POOL = 8
|
2190
2253
|
|
2191
|
-
#
|
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.
|
2192
2258
|
SET_NODE_POOL_MANAGEMENT = 9
|
2193
2259
|
|
2194
|
-
#
|
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.
|
2195
2265
|
AUTO_REPAIR_NODES = 10
|
2196
2266
|
|
2197
|
-
# Automatic node upgrade
|
2267
|
+
# Unused. Automatic node upgrade uses
|
2268
|
+
# {::Google::Cloud::Container::V1beta1::Operation::Type::UPGRADE_NODES UPGRADE_NODES}.
|
2198
2269
|
AUTO_UPGRADE_NODES = 11
|
2199
2270
|
|
2200
|
-
#
|
2271
|
+
# Unused. Updating labels uses
|
2272
|
+
# {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
|
2201
2273
|
SET_LABELS = 12
|
2202
2274
|
|
2203
|
-
#
|
2275
|
+
# Unused. Updating master auth uses
|
2276
|
+
# {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
|
2204
2277
|
SET_MASTER_AUTH = 13
|
2205
2278
|
|
2206
|
-
#
|
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.
|
2207
2281
|
SET_NODE_POOL_SIZE = 14
|
2208
2282
|
|
2209
|
-
#
|
2283
|
+
# Unused. Updating network policy uses
|
2284
|
+
# {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
|
2210
2285
|
SET_NETWORK_POLICY = 15
|
2211
2286
|
|
2212
|
-
#
|
2287
|
+
# Unused. Updating maintenance policy uses
|
2288
|
+
# {::Google::Cloud::Container::V1beta1::Operation::Type::UPDATE_CLUSTER UPDATE_CLUSTER}.
|
2213
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
|
2214
2298
|
end
|
2215
2299
|
end
|
2216
2300
|
|
@@ -4611,13 +4695,13 @@ module Google
|
|
4611
4695
|
end
|
4612
4696
|
|
4613
4697
|
# Configuration of etcd encryption.
|
4614
|
-
# @!attribute [rw] state
|
4615
|
-
# @return [::Google::Cloud::Container::V1beta1::DatabaseEncryption::State]
|
4616
|
-
# Denotes the state of etcd encryption.
|
4617
4698
|
# @!attribute [rw] key_name
|
4618
4699
|
# @return [::String]
|
4619
4700
|
# Name of CloudKMS key to use for the encryption of secrets in etcd.
|
4620
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.
|
4621
4705
|
class DatabaseEncryption
|
4622
4706
|
include ::Google::Protobuf::MessageExts
|
4623
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
|