google-apis-container_v1 0.39.0 → 0.41.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: da326e47b11a25febd89bf3950049489f95a318135fd00f8e848d459e3efb676
4
- data.tar.gz: 9d0683b99773e45dbbbae4d995e62565b98f1a921e3f1fd204e6e695e501eb5b
3
+ metadata.gz: 0dd78cd1611c126dcb1cd58109e40b1594e910bce6546b6e18c2fbb9937de40f
4
+ data.tar.gz: cdd8523d7f2b75a3ea2c3054380d1fe2a86a4cc679b709821e0116841cafffa0
5
5
  SHA512:
6
- metadata.gz: 15d5948bfed78b62b32efe9c0a7b0c4b23708fbff58dcd5b5cce09b332d4944bd9f76b7e6cc294bc7befbb870ba5cf5bfb1af03a11ee027644e864adb81c2220
7
- data.tar.gz: 43054295dd17e44fe8e6aeb577bc0f691aacceb631e872a6c8e955e17ea0e0b205b0ad5e87d93cda20b166f8b75ee2abaae8a09b962a03475bc76f47972bef60
6
+ metadata.gz: 11ce762be4e23713e650eda07e0b4b3aa522e6fb81555ca9345a48b67fe2a72c0210fcd2baf07f51fc5d55ba10225c5012e0401c21e92298401fc94df1d96039
7
+ data.tar.gz: 7f6080087d3324727df65f9d68d023661c27f0e91076c0d54d7670a7395d2351051df65f0084a40391daae02aca2f34eca27a996f575fbbbdec504ad2aad4375
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-container_v1
2
2
 
3
+ ### v0.41.0 (2022-11-15)
4
+
5
+ * Regenerated from discovery document revision 20221031
6
+
7
+ ### v0.40.0 (2022-11-11)
8
+
9
+ * Regenerated from discovery document revision 20221024
10
+
3
11
  ### v0.39.0 (2022-11-04)
4
12
 
5
13
  * Regenerated from discovery document revision 20221017
@@ -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. Currently the only options
394
- # are equivalent to enable/disable. If unspecified, defaults to DISABLED.
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)
@@ -3637,6 +3663,11 @@ module Google
3637
3663
  # @return [Google::Apis::ContainerV1::NodeNetworkConfig]
3638
3664
  attr_accessor :network_config
3639
3665
 
3666
+ # PlacementPolicy defines the placement policy used by the node pool.
3667
+ # Corresponds to the JSON property `placementPolicy`
3668
+ # @return [Google::Apis::ContainerV1::PlacementPolicy]
3669
+ attr_accessor :placement_policy
3670
+
3640
3671
  # [Output only] The pod CIDR block size per node in this node pool.
3641
3672
  # Corresponds to the JSON property `podIpv4CidrSize`
3642
3673
  # @return [Fixnum]
@@ -3720,6 +3751,7 @@ module Google
3720
3751
  @max_pods_constraint = args[:max_pods_constraint] if args.key?(:max_pods_constraint)
3721
3752
  @name = args[:name] if args.key?(:name)
3722
3753
  @network_config = args[:network_config] if args.key?(:network_config)
3754
+ @placement_policy = args[:placement_policy] if args.key?(:placement_policy)
3723
3755
  @pod_ipv4_cidr_size = args[:pod_ipv4_cidr_size] if args.key?(:pod_ipv4_cidr_size)
3724
3756
  @self_link = args[:self_link] if args.key?(:self_link)
3725
3757
  @status = args[:status] if args.key?(:status)
@@ -4086,6 +4118,25 @@ module Google
4086
4118
  end
4087
4119
  end
4088
4120
 
4121
+ # PlacementPolicy defines the placement policy used by the node pool.
4122
+ class PlacementPolicy
4123
+ include Google::Apis::Core::Hashable
4124
+
4125
+ # The type of placement.
4126
+ # Corresponds to the JSON property `type`
4127
+ # @return [String]
4128
+ attr_accessor :type
4129
+
4130
+ def initialize(**args)
4131
+ update!(**args)
4132
+ end
4133
+
4134
+ # Update properties of this object
4135
+ def update!(**args)
4136
+ @type = args[:type] if args.key?(:type)
4137
+ end
4138
+ end
4139
+
4089
4140
  # Configuration options for private clusters.
4090
4141
  class PrivateClusterConfig
4091
4142
  include Google::Apis::Core::Hashable
@@ -5687,6 +5738,11 @@ module Google
5687
5738
  # @return [Google::Apis::ContainerV1::ConfidentialNodes]
5688
5739
  attr_accessor :confidential_nodes
5689
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
+
5690
5746
  # GcfsConfig contains configurations of Google Container File System (image
5691
5747
  # streaming).
5692
5748
  # Corresponds to the JSON property `gcfsConfig`
@@ -5842,6 +5898,7 @@ module Google
5842
5898
  def update!(**args)
5843
5899
  @cluster_id = args[:cluster_id] if args.key?(:cluster_id)
5844
5900
  @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
5901
+ @fast_socket = args[:fast_socket] if args.key?(:fast_socket)
5845
5902
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
5846
5903
  @gvnic = args[:gvnic] if args.key?(:gvnic)
5847
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.39.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
@@ -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
 
@@ -568,6 +574,12 @@ module Google
568
574
  include Google::Apis::Core::JsonObjectSupport
569
575
  end
570
576
 
577
+ class PlacementPolicy
578
+ class Representation < Google::Apis::Core::JsonRepresentation; end
579
+
580
+ include Google::Apis::Core::JsonObjectSupport
581
+ end
582
+
571
583
  class PrivateClusterConfig
572
584
  class Representation < Google::Apis::Core::JsonRepresentation; end
573
585
 
@@ -1301,6 +1313,13 @@ module Google
1301
1313
  end
1302
1314
  end
1303
1315
 
1316
+ class FastSocket
1317
+ # @private
1318
+ class Representation < Google::Apis::Core::JsonRepresentation
1319
+ property :enabled, as: 'enabled'
1320
+ end
1321
+ end
1322
+
1304
1323
  class Filter
1305
1324
  # @private
1306
1325
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1695,6 +1714,8 @@ module Google
1695
1714
 
1696
1715
  property :disk_size_gb, as: 'diskSizeGb'
1697
1716
  property :disk_type, as: 'diskType'
1717
+ property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1::FastSocket, decorator: Google::Apis::ContainerV1::FastSocket::Representation
1718
+
1698
1719
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
1699
1720
 
1700
1721
  property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1::VirtualNic, decorator: Google::Apis::ContainerV1::VirtualNic::Representation
@@ -1799,6 +1820,8 @@ module Google
1799
1820
  property :name, as: 'name'
1800
1821
  property :network_config, as: 'networkConfig', class: Google::Apis::ContainerV1::NodeNetworkConfig, decorator: Google::Apis::ContainerV1::NodeNetworkConfig::Representation
1801
1822
 
1823
+ property :placement_policy, as: 'placementPolicy', class: Google::Apis::ContainerV1::PlacementPolicy, decorator: Google::Apis::ContainerV1::PlacementPolicy::Representation
1824
+
1802
1825
  property :pod_ipv4_cidr_size, as: 'podIpv4CidrSize'
1803
1826
  property :self_link, as: 'selfLink'
1804
1827
  property :status, as: 'status'
@@ -1910,6 +1933,13 @@ module Google
1910
1933
  end
1911
1934
  end
1912
1935
 
1936
+ class PlacementPolicy
1937
+ # @private
1938
+ class Representation < Google::Apis::Core::JsonRepresentation
1939
+ property :type, as: 'type'
1940
+ end
1941
+ end
1942
+
1913
1943
  class PrivateClusterConfig
1914
1944
  # @private
1915
1945
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2301,6 +2331,8 @@ module Google
2301
2331
  property :cluster_id, as: 'clusterId'
2302
2332
  property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1::ConfidentialNodes, decorator: Google::Apis::ContainerV1::ConfidentialNodes::Representation
2303
2333
 
2334
+ property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1::FastSocket, decorator: Google::Apis::ContainerV1::FastSocket::Representation
2335
+
2304
2336
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
2305
2337
 
2306
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.39.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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.39.0
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: []