google-apis-container_v1beta1 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: 1091a2d7d41dd84ddc7536ef75cf0fc39f8436f650aab1f783e4aa9c65b62f01
4
- data.tar.gz: 1ff272a7955adaf9b89e389c0f0f11277d9f1c50a9cb06450b2058a7a500b83a
3
+ metadata.gz: 8064e970f0a800170a7bc54cc96c70bdf34b3d9420d9eca6fefd0b9cd4ebd324
4
+ data.tar.gz: 5c75a6ccdce5b6d023e0ec5de709a72e36edd1be65a6b35d48eb309e9dbf81f3
5
5
  SHA512:
6
- metadata.gz: e06d4be79cb1405233cfc88c56a8685cfb53663bf34c6bba63420cf749b3850ae15ea1f348f74d8808e4a68490baaa2455acaa2db001c0b2e69cadf02e9b130a
7
- data.tar.gz: fe3e2776f9f4d03fadc70cce21d412f7507340f2580cbe68dc3a6aa2e7bb41eaf86c436a1b8f3f3ce08ee7191e97b422ed8400877bb4a3aab677157686feb23d
6
+ metadata.gz: b3add70d59714bcec7b4b7a5e95bb21f8cabdec64fa67406e7601bbf2c7c1b3a6de598069e2f2bb7f22ca0d73a74cae43466200021f0376b72ac2c9acc02e3fb
7
+ data.tar.gz: 155aef9de6e5df86d1be98868277a57ba15c1a0fc8f967e56be8acdeee086bcd840fe28f10df6d3b4025262d6c01cfe103c1b521b16878e0dece48f5c2c92457
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.41.0 (2022-11-18)
4
+
5
+ * Regenerated from discovery document revision 20221031
6
+
3
7
  ### v0.40.0 (2022-11-04)
4
8
 
5
9
  * Regenerated from discovery document revision 20221017
@@ -429,8 +429,8 @@ module Google
429
429
  attr_accessor :enabled
430
430
  alias_method :enabled?, :enabled
431
431
 
432
- # Mode of operation for binauthz policy evaluation. Currently the only options
433
- # are equivalent to enable/disable. If unspecified, defaults to DISABLED.
432
+ # Mode of operation for binauthz policy evaluation. If unspecified, defaults to
433
+ # DISABLED.
434
434
  # Corresponds to the JSON property `evaluationMode`
435
435
  # @return [String]
436
436
  attr_accessor :evaluation_mode
@@ -2031,6 +2031,26 @@ module Google
2031
2031
  end
2032
2032
  end
2033
2033
 
2034
+ # Configuration of Fast Socket feature.
2035
+ class FastSocket
2036
+ include Google::Apis::Core::Hashable
2037
+
2038
+ # Whether Fast Socket features are enabled in the node pool.
2039
+ # Corresponds to the JSON property `enabled`
2040
+ # @return [Boolean]
2041
+ attr_accessor :enabled
2042
+ alias_method :enabled?, :enabled
2043
+
2044
+ def initialize(**args)
2045
+ update!(**args)
2046
+ end
2047
+
2048
+ # Update properties of this object
2049
+ def update!(**args)
2050
+ @enabled = args[:enabled] if args.key?(:enabled)
2051
+ end
2052
+ end
2053
+
2034
2054
  # Allows filtering to one or more specific event types. If event types are
2035
2055
  # present, those and only those event types will be transmitted to the cluster.
2036
2056
  # Other types will be skipped. If no filter is specified, or no event types are
@@ -3553,6 +3573,11 @@ module Google
3553
3573
  # @return [Google::Apis::ContainerV1beta1::EphemeralStorageConfig]
3554
3574
  attr_accessor :ephemeral_storage_config
3555
3575
 
3576
+ # Configuration of Fast Socket feature.
3577
+ # Corresponds to the JSON property `fastSocket`
3578
+ # @return [Google::Apis::ContainerV1beta1::FastSocket]
3579
+ attr_accessor :fast_socket
3580
+
3556
3581
  # GcfsConfig contains configurations of Google Container File System.
3557
3582
  # Corresponds to the JSON property `gcfsConfig`
3558
3583
  # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
@@ -3737,6 +3762,7 @@ module Google
3737
3762
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
3738
3763
  @disk_type = args[:disk_type] if args.key?(:disk_type)
3739
3764
  @ephemeral_storage_config = args[:ephemeral_storage_config] if args.key?(:ephemeral_storage_config)
3765
+ @fast_socket = args[:fast_socket] if args.key?(:fast_socket)
3740
3766
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
3741
3767
  @gvnic = args[:gvnic] if args.key?(:gvnic)
3742
3768
  @image_type = args[:image_type] if args.key?(:image_type)
@@ -6209,6 +6235,11 @@ module Google
6209
6235
  # @return [Google::Apis::ContainerV1beta1::ConfidentialNodes]
6210
6236
  attr_accessor :confidential_nodes
6211
6237
 
6238
+ # Configuration of Fast Socket feature.
6239
+ # Corresponds to the JSON property `fastSocket`
6240
+ # @return [Google::Apis::ContainerV1beta1::FastSocket]
6241
+ attr_accessor :fast_socket
6242
+
6212
6243
  # GcfsConfig contains configurations of Google Container File System.
6213
6244
  # Corresponds to the JSON property `gcfsConfig`
6214
6245
  # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
@@ -6350,6 +6381,7 @@ module Google
6350
6381
  def update!(**args)
6351
6382
  @cluster_id = args[:cluster_id] if args.key?(:cluster_id)
6352
6383
  @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
6384
+ @fast_socket = args[:fast_socket] if args.key?(:fast_socket)
6353
6385
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
6354
6386
  @gvnic = args[:gvnic] if args.key?(:gvnic)
6355
6387
  @image_type = args[:image_type] if args.key?(:image_type)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContainerV1beta1
18
18
  # Version of the google-apis-container_v1beta1 gem
19
- GEM_VERSION = "0.40.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 = "20221017"
25
+ REVISION = "20221031"
26
26
  end
27
27
  end
28
28
  end
@@ -238,6 +238,12 @@ module Google
238
238
  include Google::Apis::Core::JsonObjectSupport
239
239
  end
240
240
 
241
+ class FastSocket
242
+ class Representation < Google::Apis::Core::JsonRepresentation; end
243
+
244
+ include Google::Apis::Core::JsonObjectSupport
245
+ end
246
+
241
247
  class Filter
242
248
  class Representation < Google::Apis::Core::JsonRepresentation; end
243
249
 
@@ -1475,6 +1481,13 @@ module Google
1475
1481
  end
1476
1482
  end
1477
1483
 
1484
+ class FastSocket
1485
+ # @private
1486
+ class Representation < Google::Apis::Core::JsonRepresentation
1487
+ property :enabled, as: 'enabled'
1488
+ end
1489
+ end
1490
+
1478
1491
  class Filter
1479
1492
  # @private
1480
1493
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1914,6 +1927,8 @@ module Google
1914
1927
  property :disk_type, as: 'diskType'
1915
1928
  property :ephemeral_storage_config, as: 'ephemeralStorageConfig', class: Google::Apis::ContainerV1beta1::EphemeralStorageConfig, decorator: Google::Apis::ContainerV1beta1::EphemeralStorageConfig::Representation
1916
1929
 
1930
+ property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1beta1::FastSocket, decorator: Google::Apis::ContainerV1beta1::FastSocket::Representation
1931
+
1917
1932
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
1918
1933
 
1919
1934
  property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1beta1::VirtualNic, decorator: Google::Apis::ContainerV1beta1::VirtualNic::Representation
@@ -2559,6 +2574,8 @@ module Google
2559
2574
  property :cluster_id, as: 'clusterId'
2560
2575
  property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1beta1::ConfidentialNodes, decorator: Google::Apis::ContainerV1beta1::ConfidentialNodes::Representation
2561
2576
 
2577
+ property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1beta1::FastSocket, decorator: Google::Apis::ContainerV1beta1::FastSocket::Representation
2578
+
2562
2579
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
2563
2580
 
2564
2581
  property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1beta1::VirtualNic, decorator: Google::Apis::ContainerV1beta1::VirtualNic::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-container_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.40.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-07 00:00:00.000000000 Z
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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.40.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.41.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []