google-apis-container_v1 0.59.0 → 0.60.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 21f318fead636effeb5b2cbfc7b4161c2855a268ef435deb272bc44e2c12c61a
|
4
|
+
data.tar.gz: 35ae0d1c75af1e1c706c22b700baf6a98b91c6f74c8821b5c3a2cf77d0213bc9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c2859ced714a58992cb385cd8418b389136709f9e7ec00c9f8dff9d49a20a6072630feb9499ad62604004694bdeccbbd23d4ed25392258a25d3077ff10b92bf
|
7
|
+
data.tar.gz: e3a3ee87381cfcfffd0f9c005ba67b4715ee4a1fcfd90a074b522c801b3595a377098081c65a084f2a66f30dd2bb4bac53d89c7a5a5387139747598e44ee5d41
|
data/CHANGELOG.md
CHANGED
@@ -964,6 +964,11 @@ module Google
|
|
964
964
|
# @return [String]
|
965
965
|
attr_accessor :endpoint
|
966
966
|
|
967
|
+
# EnterpriseConfig is the cluster enterprise configuration.
|
968
|
+
# Corresponds to the JSON property `enterpriseConfig`
|
969
|
+
# @return [Google::Apis::ContainerV1::EnterpriseConfig]
|
970
|
+
attr_accessor :enterprise_config
|
971
|
+
|
967
972
|
# This checksum is computed by the server based on the value of cluster fields,
|
968
973
|
# and may be sent on update requests to ensure the client has an up-to-date
|
969
974
|
# value before proceeding.
|
@@ -1301,6 +1306,7 @@ module Google
|
|
1301
1306
|
@enable_kubernetes_alpha = args[:enable_kubernetes_alpha] if args.key?(:enable_kubernetes_alpha)
|
1302
1307
|
@enable_tpu = args[:enable_tpu] if args.key?(:enable_tpu)
|
1303
1308
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
1309
|
+
@enterprise_config = args[:enterprise_config] if args.key?(:enterprise_config)
|
1304
1310
|
@etag = args[:etag] if args.key?(:etag)
|
1305
1311
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
1306
1312
|
@fleet = args[:fleet] if args.key?(:fleet)
|
@@ -2182,6 +2188,26 @@ module Google
|
|
2182
2188
|
end
|
2183
2189
|
end
|
2184
2190
|
|
2191
|
+
# EnterpriseConfig is the cluster enterprise configuration.
|
2192
|
+
class EnterpriseConfig
|
2193
|
+
include Google::Apis::Core::Hashable
|
2194
|
+
|
2195
|
+
# Output only. [Output only] cluster_tier specifies the premium tier of the
|
2196
|
+
# cluster.
|
2197
|
+
# Corresponds to the JSON property `clusterTier`
|
2198
|
+
# @return [String]
|
2199
|
+
attr_accessor :cluster_tier
|
2200
|
+
|
2201
|
+
def initialize(**args)
|
2202
|
+
update!(**args)
|
2203
|
+
end
|
2204
|
+
|
2205
|
+
# Update properties of this object
|
2206
|
+
def update!(**args)
|
2207
|
+
@cluster_tier = args[:cluster_tier] if args.key?(:cluster_tier)
|
2208
|
+
end
|
2209
|
+
end
|
2210
|
+
|
2185
2211
|
# EphemeralStorageLocalSsdConfig contains configuration for the node ephemeral
|
2186
2212
|
# storage using Local SSDs.
|
2187
2213
|
class EphemeralStorageLocalSsdConfig
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContainerV1
|
18
18
|
# Version of the google-apis-container_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.60.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231024"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -262,6 +262,12 @@ module Google
|
|
262
262
|
include Google::Apis::Core::JsonObjectSupport
|
263
263
|
end
|
264
264
|
|
265
|
+
class EnterpriseConfig
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
265
271
|
class EphemeralStorageLocalSsdConfig
|
266
272
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
273
|
|
@@ -1259,6 +1265,8 @@ module Google
|
|
1259
1265
|
property :enable_kubernetes_alpha, as: 'enableKubernetesAlpha'
|
1260
1266
|
property :enable_tpu, as: 'enableTpu'
|
1261
1267
|
property :endpoint, as: 'endpoint'
|
1268
|
+
property :enterprise_config, as: 'enterpriseConfig', class: Google::Apis::ContainerV1::EnterpriseConfig, decorator: Google::Apis::ContainerV1::EnterpriseConfig::Representation
|
1269
|
+
|
1262
1270
|
property :etag, as: 'etag'
|
1263
1271
|
property :expire_time, as: 'expireTime'
|
1264
1272
|
property :fleet, as: 'fleet', class: Google::Apis::ContainerV1::Fleet, decorator: Google::Apis::ContainerV1::Fleet::Representation
|
@@ -1561,6 +1569,13 @@ module Google
|
|
1561
1569
|
end
|
1562
1570
|
end
|
1563
1571
|
|
1572
|
+
class EnterpriseConfig
|
1573
|
+
# @private
|
1574
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1575
|
+
property :cluster_tier, as: 'clusterTier'
|
1576
|
+
end
|
1577
|
+
end
|
1578
|
+
|
1564
1579
|
class EphemeralStorageLocalSsdConfig
|
1565
1580
|
# @private
|
1566
1581
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-container_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.60.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-
|
11
|
+
date: 2023-11-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.60.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|