google-apis-container_v1 0.40.0 → 0.41.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: 0dd78cd1611c126dcb1cd58109e40b1594e910bce6546b6e18c2fbb9937de40f
|
4
|
+
data.tar.gz: cdd8523d7f2b75a3ea2c3054380d1fe2a86a4cc679b709821e0116841cafffa0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11ce762be4e23713e650eda07e0b4b3aa522e6fb81555ca9345a48b67fe2a72c0210fcd2baf07f51fc5d55ba10225c5012e0401c21e92298401fc94df1d96039
|
7
|
+
data.tar.gz: 7f6080087d3324727df65f9d68d023661c27f0e91076c0d54d7670a7395d2351051df65f0084a40391daae02aca2f34eca27a996f575fbbbdec504ad2aad4375
|
data/CHANGELOG.md
CHANGED
@@ -390,8 +390,8 @@ module Google
|
|
390
390
|
attr_accessor :enabled
|
391
391
|
alias_method :enabled?, :enabled
|
392
392
|
|
393
|
-
# Mode of operation for binauthz policy evaluation.
|
394
|
-
#
|
393
|
+
# Mode of operation for binauthz policy evaluation. If unspecified, defaults to
|
394
|
+
# DISABLED.
|
395
395
|
# Corresponds to the JSON property `evaluationMode`
|
396
396
|
# @return [String]
|
397
397
|
attr_accessor :evaluation_mode
|
@@ -1790,6 +1790,26 @@ module Google
|
|
1790
1790
|
end
|
1791
1791
|
end
|
1792
1792
|
|
1793
|
+
# Configuration of Fast Socket feature.
|
1794
|
+
class FastSocket
|
1795
|
+
include Google::Apis::Core::Hashable
|
1796
|
+
|
1797
|
+
# Whether Fast Socket features are enabled in the node pool.
|
1798
|
+
# Corresponds to the JSON property `enabled`
|
1799
|
+
# @return [Boolean]
|
1800
|
+
attr_accessor :enabled
|
1801
|
+
alias_method :enabled?, :enabled
|
1802
|
+
|
1803
|
+
def initialize(**args)
|
1804
|
+
update!(**args)
|
1805
|
+
end
|
1806
|
+
|
1807
|
+
# Update properties of this object
|
1808
|
+
def update!(**args)
|
1809
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
1810
|
+
end
|
1811
|
+
end
|
1812
|
+
|
1793
1813
|
# Allows filtering to one or more specific event types. If event types are
|
1794
1814
|
# present, those and only those event types will be transmitted to the cluster.
|
1795
1815
|
# Other types will be skipped. If no filter is specified, or no event types are
|
@@ -3150,6 +3170,11 @@ module Google
|
|
3150
3170
|
# @return [String]
|
3151
3171
|
attr_accessor :disk_type
|
3152
3172
|
|
3173
|
+
# Configuration of Fast Socket feature.
|
3174
|
+
# Corresponds to the JSON property `fastSocket`
|
3175
|
+
# @return [Google::Apis::ContainerV1::FastSocket]
|
3176
|
+
attr_accessor :fast_socket
|
3177
|
+
|
3153
3178
|
# GcfsConfig contains configurations of Google Container File System (image
|
3154
3179
|
# streaming).
|
3155
3180
|
# Corresponds to the JSON property `gcfsConfig`
|
@@ -3334,6 +3359,7 @@ module Google
|
|
3334
3359
|
@confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
|
3335
3360
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
3336
3361
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
3362
|
+
@fast_socket = args[:fast_socket] if args.key?(:fast_socket)
|
3337
3363
|
@gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
|
3338
3364
|
@gvnic = args[:gvnic] if args.key?(:gvnic)
|
3339
3365
|
@image_type = args[:image_type] if args.key?(:image_type)
|
@@ -5712,6 +5738,11 @@ module Google
|
|
5712
5738
|
# @return [Google::Apis::ContainerV1::ConfidentialNodes]
|
5713
5739
|
attr_accessor :confidential_nodes
|
5714
5740
|
|
5741
|
+
# Configuration of Fast Socket feature.
|
5742
|
+
# Corresponds to the JSON property `fastSocket`
|
5743
|
+
# @return [Google::Apis::ContainerV1::FastSocket]
|
5744
|
+
attr_accessor :fast_socket
|
5745
|
+
|
5715
5746
|
# GcfsConfig contains configurations of Google Container File System (image
|
5716
5747
|
# streaming).
|
5717
5748
|
# Corresponds to the JSON property `gcfsConfig`
|
@@ -5867,6 +5898,7 @@ module Google
|
|
5867
5898
|
def update!(**args)
|
5868
5899
|
@cluster_id = args[:cluster_id] if args.key?(:cluster_id)
|
5869
5900
|
@confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
|
5901
|
+
@fast_socket = args[:fast_socket] if args.key?(:fast_socket)
|
5870
5902
|
@gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
|
5871
5903
|
@gvnic = args[:gvnic] if args.key?(:gvnic)
|
5872
5904
|
@image_type = args[:image_type] if args.key?(:image_type)
|
@@ -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.41.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221031"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -214,6 +214,12 @@ module Google
|
|
214
214
|
include Google::Apis::Core::JsonObjectSupport
|
215
215
|
end
|
216
216
|
|
217
|
+
class FastSocket
|
218
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
|
+
|
220
|
+
include Google::Apis::Core::JsonObjectSupport
|
221
|
+
end
|
222
|
+
|
217
223
|
class Filter
|
218
224
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
225
|
|
@@ -1307,6 +1313,13 @@ module Google
|
|
1307
1313
|
end
|
1308
1314
|
end
|
1309
1315
|
|
1316
|
+
class FastSocket
|
1317
|
+
# @private
|
1318
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1319
|
+
property :enabled, as: 'enabled'
|
1320
|
+
end
|
1321
|
+
end
|
1322
|
+
|
1310
1323
|
class Filter
|
1311
1324
|
# @private
|
1312
1325
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1701,6 +1714,8 @@ module Google
|
|
1701
1714
|
|
1702
1715
|
property :disk_size_gb, as: 'diskSizeGb'
|
1703
1716
|
property :disk_type, as: 'diskType'
|
1717
|
+
property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1::FastSocket, decorator: Google::Apis::ContainerV1::FastSocket::Representation
|
1718
|
+
|
1704
1719
|
property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
|
1705
1720
|
|
1706
1721
|
property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1::VirtualNic, decorator: Google::Apis::ContainerV1::VirtualNic::Representation
|
@@ -2316,6 +2331,8 @@ module Google
|
|
2316
2331
|
property :cluster_id, as: 'clusterId'
|
2317
2332
|
property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1::ConfidentialNodes, decorator: Google::Apis::ContainerV1::ConfidentialNodes::Representation
|
2318
2333
|
|
2334
|
+
property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1::FastSocket, decorator: Google::Apis::ContainerV1::FastSocket::Representation
|
2335
|
+
|
2319
2336
|
property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
|
2320
2337
|
|
2321
2338
|
property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1::VirtualNic, decorator: Google::Apis::ContainerV1::VirtualNic::Representation
|
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.41.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: 2022-
|
11
|
+
date: 2022-12-12 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.41.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: []
|