google-apis-container_v1beta1 0.40.0 → 0.42.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: 17b02ac1504ac3202f507e0e3adf8eb5805415be0057f7c464fe8aa4c015f62d
4
+ data.tar.gz: 95403df9a40dbd4e55e8b10ef70abf48cdafe4f77854e672e21f6dcdcd263e14
5
5
  SHA512:
6
- metadata.gz: e06d4be79cb1405233cfc88c56a8685cfb53663bf34c6bba63420cf749b3850ae15ea1f348f74d8808e4a68490baaa2455acaa2db001c0b2e69cadf02e9b130a
7
- data.tar.gz: fe3e2776f9f4d03fadc70cce21d412f7507340f2580cbe68dc3a6aa2e7bb41eaf86c436a1b8f3f3ce08ee7191e97b422ed8400877bb4a3aab677157686feb23d
6
+ metadata.gz: c3841fca4972ccefb909f38433cae25ca4e8b0550959a8103f8e539dbc6e25ac550fbc4496e1c0835207d47114c2274bd7ad0c6c5eb915ba4831e8c77448ac6c
7
+ data.tar.gz: f226753329e4fa9b5500f7164125c870a8bc6d2e6d32bab0d43d85082e46cb303c04792d398bd05a1c122a1914c3c684d68abdadf7e621a61f116e400a47f36c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.42.0 (2022-12-12)
4
+
5
+ * Regenerated from discovery document revision 20221110
6
+
7
+ ### v0.41.0 (2022-11-18)
8
+
9
+ * Regenerated from discovery document revision 20221031
10
+
3
11
  ### v0.40.0 (2022-11-04)
4
12
 
5
13
  * 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
@@ -1498,6 +1498,13 @@ module Google
1498
1498
  # @return [Google::Apis::ContainerV1beta1::ShieldedNodes]
1499
1499
  attr_accessor :desired_shielded_nodes
1500
1500
 
1501
+ # The desired stack type of the cluster. If a stack type is provided and does
1502
+ # not match the current stack type of the cluster, update will attempt to change
1503
+ # the stack type to the new type.
1504
+ # Corresponds to the JSON property `desiredStackType`
1505
+ # @return [String]
1506
+ attr_accessor :desired_stack_type
1507
+
1501
1508
  # Configuration for Cloud TPU.
1502
1509
  # Corresponds to the JSON property `desiredTpuConfig`
1503
1510
  # @return [Google::Apis::ContainerV1beta1::TpuConfig]
@@ -1571,6 +1578,7 @@ module Google
1571
1578
  @desired_resource_usage_export_config = args[:desired_resource_usage_export_config] if args.key?(:desired_resource_usage_export_config)
1572
1579
  @desired_service_external_ips_config = args[:desired_service_external_ips_config] if args.key?(:desired_service_external_ips_config)
1573
1580
  @desired_shielded_nodes = args[:desired_shielded_nodes] if args.key?(:desired_shielded_nodes)
1581
+ @desired_stack_type = args[:desired_stack_type] if args.key?(:desired_stack_type)
1574
1582
  @desired_tpu_config = args[:desired_tpu_config] if args.key?(:desired_tpu_config)
1575
1583
  @desired_vertical_pod_autoscaling = args[:desired_vertical_pod_autoscaling] if args.key?(:desired_vertical_pod_autoscaling)
1576
1584
  @desired_workload_alts_config = args[:desired_workload_alts_config] if args.key?(:desired_workload_alts_config)
@@ -2031,6 +2039,26 @@ module Google
2031
2039
  end
2032
2040
  end
2033
2041
 
2042
+ # Configuration of Fast Socket feature.
2043
+ class FastSocket
2044
+ include Google::Apis::Core::Hashable
2045
+
2046
+ # Whether Fast Socket features are enabled in the node pool.
2047
+ # Corresponds to the JSON property `enabled`
2048
+ # @return [Boolean]
2049
+ attr_accessor :enabled
2050
+ alias_method :enabled?, :enabled
2051
+
2052
+ def initialize(**args)
2053
+ update!(**args)
2054
+ end
2055
+
2056
+ # Update properties of this object
2057
+ def update!(**args)
2058
+ @enabled = args[:enabled] if args.key?(:enabled)
2059
+ end
2060
+ end
2061
+
2034
2062
  # Allows filtering to one or more specific event types. If event types are
2035
2063
  # present, those and only those event types will be transmitted to the cluster.
2036
2064
  # Other types will be skipped. If no filter is specified, or no event types are
@@ -3553,6 +3581,11 @@ module Google
3553
3581
  # @return [Google::Apis::ContainerV1beta1::EphemeralStorageConfig]
3554
3582
  attr_accessor :ephemeral_storage_config
3555
3583
 
3584
+ # Configuration of Fast Socket feature.
3585
+ # Corresponds to the JSON property `fastSocket`
3586
+ # @return [Google::Apis::ContainerV1beta1::FastSocket]
3587
+ attr_accessor :fast_socket
3588
+
3556
3589
  # GcfsConfig contains configurations of Google Container File System.
3557
3590
  # Corresponds to the JSON property `gcfsConfig`
3558
3591
  # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
@@ -3737,6 +3770,7 @@ module Google
3737
3770
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
3738
3771
  @disk_type = args[:disk_type] if args.key?(:disk_type)
3739
3772
  @ephemeral_storage_config = args[:ephemeral_storage_config] if args.key?(:ephemeral_storage_config)
3773
+ @fast_socket = args[:fast_socket] if args.key?(:fast_socket)
3740
3774
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
3741
3775
  @gvnic = args[:gvnic] if args.key?(:gvnic)
3742
3776
  @image_type = args[:image_type] if args.key?(:image_type)
@@ -6209,6 +6243,11 @@ module Google
6209
6243
  # @return [Google::Apis::ContainerV1beta1::ConfidentialNodes]
6210
6244
  attr_accessor :confidential_nodes
6211
6245
 
6246
+ # Configuration of Fast Socket feature.
6247
+ # Corresponds to the JSON property `fastSocket`
6248
+ # @return [Google::Apis::ContainerV1beta1::FastSocket]
6249
+ attr_accessor :fast_socket
6250
+
6212
6251
  # GcfsConfig contains configurations of Google Container File System.
6213
6252
  # Corresponds to the JSON property `gcfsConfig`
6214
6253
  # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
@@ -6350,6 +6389,7 @@ module Google
6350
6389
  def update!(**args)
6351
6390
  @cluster_id = args[:cluster_id] if args.key?(:cluster_id)
6352
6391
  @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
6392
+ @fast_socket = args[:fast_socket] if args.key?(:fast_socket)
6353
6393
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
6354
6394
  @gvnic = args[:gvnic] if args.key?(:gvnic)
6355
6395
  @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.42.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 = "20221110"
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
 
@@ -1334,6 +1340,7 @@ module Google
1334
1340
 
1335
1341
  property :desired_shielded_nodes, as: 'desiredShieldedNodes', class: Google::Apis::ContainerV1beta1::ShieldedNodes, decorator: Google::Apis::ContainerV1beta1::ShieldedNodes::Representation
1336
1342
 
1343
+ property :desired_stack_type, as: 'desiredStackType'
1337
1344
  property :desired_tpu_config, as: 'desiredTpuConfig', class: Google::Apis::ContainerV1beta1::TpuConfig, decorator: Google::Apis::ContainerV1beta1::TpuConfig::Representation
1338
1345
 
1339
1346
  property :desired_vertical_pod_autoscaling, as: 'desiredVerticalPodAutoscaling', class: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling, decorator: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling::Representation
@@ -1475,6 +1482,13 @@ module Google
1475
1482
  end
1476
1483
  end
1477
1484
 
1485
+ class FastSocket
1486
+ # @private
1487
+ class Representation < Google::Apis::Core::JsonRepresentation
1488
+ property :enabled, as: 'enabled'
1489
+ end
1490
+ end
1491
+
1478
1492
  class Filter
1479
1493
  # @private
1480
1494
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1914,6 +1928,8 @@ module Google
1914
1928
  property :disk_type, as: 'diskType'
1915
1929
  property :ephemeral_storage_config, as: 'ephemeralStorageConfig', class: Google::Apis::ContainerV1beta1::EphemeralStorageConfig, decorator: Google::Apis::ContainerV1beta1::EphemeralStorageConfig::Representation
1916
1930
 
1931
+ property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1beta1::FastSocket, decorator: Google::Apis::ContainerV1beta1::FastSocket::Representation
1932
+
1917
1933
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
1918
1934
 
1919
1935
  property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1beta1::VirtualNic, decorator: Google::Apis::ContainerV1beta1::VirtualNic::Representation
@@ -2559,6 +2575,8 @@ module Google
2559
2575
  property :cluster_id, as: 'clusterId'
2560
2576
  property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1beta1::ConfidentialNodes, decorator: Google::Apis::ContainerV1beta1::ConfidentialNodes::Representation
2561
2577
 
2578
+ property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1beta1::FastSocket, decorator: Google::Apis::ContainerV1beta1::FastSocket::Representation
2579
+
2562
2580
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
2563
2581
 
2564
2582
  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.42.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: 2023-01-04 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.42.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: []