google-apis-container_v1 0.42.0 → 0.43.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: dcd1083ea44d35672ee00388bf9e5327d81edee14165eca208cfa2e2e69fcb70
4
- data.tar.gz: 7812cd4441eebc3e7493d2a6f0b846220946c37682847db5bec54f845ae35437
3
+ metadata.gz: 473f6ddc16b682f9e8dcc116e143d7351981864639ce77def9736f14f9ed1533
4
+ data.tar.gz: 849bc2319a0cec38b55eaf815b1d374eff0e987a2e66c26eb596575c782511be
5
5
  SHA512:
6
- metadata.gz: 10e71bfc96ed1c3d0906905a2364c915c62b810552a0e2b96a9ea5a20b795a6bf519f1fec850d6a2e36dc554417260403275284ce45f38c0bd782425636e6b97
7
- data.tar.gz: ecec336dba2fbec710c0164e8a1186f5350e94bcfc078f80267a009d2c317d9191d5c42af68b9602579f8499ee92554e27c5afec5002b06a01d49b9c19de44ba
6
+ metadata.gz: 3b8259b752407e8c6e663db73adb67d7794ff076a62370694630600449de98db306e39d15cd37f9904f743c37816117d0460a885b09b8965fc453fcdcb9c50ca
7
+ data.tar.gz: 9886e27d7b5d0e13c1787aea7a9c1901eba506e9a5b05f5262e8f51e9ee35db6f6f3473c07abd0902e8ebf78e964f603a5b0e0ae8998344b9d201618ff4cf5b6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-container_v1
2
2
 
3
+ ### v0.43.0 (2023-01-08)
4
+
5
+ * Regenerated from discovery document revision 20230104
6
+ * Regenerated using generator version 0.11.1
7
+
3
8
  ### v0.42.0 (2022-12-12)
4
9
 
5
10
  * Regenerated from discovery document revision 20221110
@@ -714,6 +714,13 @@ module Google
714
714
  # @return [String]
715
715
  attr_accessor :endpoint
716
716
 
717
+ # This checksum is computed by the server based on the value of cluster fields,
718
+ # and may be sent on update requests to ensure the client has an up-to-date
719
+ # value before proceeding.
720
+ # Corresponds to the JSON property `etag`
721
+ # @return [String]
722
+ attr_accessor :etag
723
+
717
724
  # [Output only] The time the cluster will be automatically deleted in [RFC3339](
718
725
  # https://www.ietf.org/rfc/rfc3339.txt) text format.
719
726
  # Corresponds to the JSON property `expireTime`
@@ -1025,6 +1032,7 @@ module Google
1025
1032
  @enable_kubernetes_alpha = args[:enable_kubernetes_alpha] if args.key?(:enable_kubernetes_alpha)
1026
1033
  @enable_tpu = args[:enable_tpu] if args.key?(:enable_tpu)
1027
1034
  @endpoint = args[:endpoint] if args.key?(:endpoint)
1035
+ @etag = args[:etag] if args.key?(:etag)
1028
1036
  @expire_time = args[:expire_time] if args.key?(:expire_time)
1029
1037
  @id = args[:id] if args.key?(:id)
1030
1038
  @identity_service_config = args[:identity_service_config] if args.key?(:identity_service_config)
@@ -1372,6 +1380,13 @@ module Google
1372
1380
  # @return [Google::Apis::ContainerV1::WorkloadIdentityConfig]
1373
1381
  attr_accessor :desired_workload_identity_config
1374
1382
 
1383
+ # The current etag of the cluster. If an etag is provided and does not match the
1384
+ # current etag of the cluster, update will be blocked and an ABORTED error will
1385
+ # be returned.
1386
+ # Corresponds to the JSON property `etag`
1387
+ # @return [String]
1388
+ attr_accessor :etag
1389
+
1375
1390
  def initialize(**args)
1376
1391
  update!(**args)
1377
1392
  end
@@ -1417,6 +1432,7 @@ module Google
1417
1432
  @desired_stack_type = args[:desired_stack_type] if args.key?(:desired_stack_type)
1418
1433
  @desired_vertical_pod_autoscaling = args[:desired_vertical_pod_autoscaling] if args.key?(:desired_vertical_pod_autoscaling)
1419
1434
  @desired_workload_identity_config = args[:desired_workload_identity_config] if args.key?(:desired_workload_identity_config)
1435
+ @etag = args[:etag] if args.key?(:etag)
1420
1436
  end
1421
1437
  end
1422
1438
 
@@ -1798,6 +1814,30 @@ module Google
1798
1814
  end
1799
1815
  end
1800
1816
 
1817
+ # EphemeralStorageLocalSsdConfig contains configuration for the node ephemeral
1818
+ # storage using Local SSD.
1819
+ class EphemeralStorageLocalSsdConfig
1820
+ include Google::Apis::Core::Hashable
1821
+
1822
+ # Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces.
1823
+ # Each local SSD is 375 GB in size. If zero, it means to disable using local
1824
+ # SSDs as ephemeral storage. The limit for this value is dependent upon the
1825
+ # maximum number of disks available on a machine per zone. See: https://cloud.
1826
+ # google.com/compute/docs/disks/local-ssd for more information.
1827
+ # Corresponds to the JSON property `localSsdCount`
1828
+ # @return [Fixnum]
1829
+ attr_accessor :local_ssd_count
1830
+
1831
+ def initialize(**args)
1832
+ update!(**args)
1833
+ end
1834
+
1835
+ # Update properties of this object
1836
+ def update!(**args)
1837
+ @local_ssd_count = args[:local_ssd_count] if args.key?(:local_ssd_count)
1838
+ end
1839
+ end
1840
+
1801
1841
  # Configuration of Fast Socket feature.
1802
1842
  class FastSocket
1803
1843
  include Google::Apis::Core::Hashable
@@ -2577,6 +2617,30 @@ module Google
2577
2617
  end
2578
2618
  end
2579
2619
 
2620
+ # LocalNvmeSsdBlockConfig contains configuration for using raw-block local NVMe
2621
+ # SSD.
2622
+ class LocalNvmeSsdBlockConfig
2623
+ include Google::Apis::Core::Hashable
2624
+
2625
+ # The number of raw-block local NVMe SSD disks to be attached to the node. Each
2626
+ # local SSD is 375 GB in size. If zero, it means no raw-block local NVMe SSD
2627
+ # disks to be attached to the node. The limit for this value is dependent upon
2628
+ # the maximum number of disks available on a machine per zone. See: https://
2629
+ # cloud.google.com/compute/docs/disks/local-ssd for more information.
2630
+ # Corresponds to the JSON property `localSsdCount`
2631
+ # @return [Fixnum]
2632
+ attr_accessor :local_ssd_count
2633
+
2634
+ def initialize(**args)
2635
+ update!(**args)
2636
+ end
2637
+
2638
+ # Update properties of this object
2639
+ def update!(**args)
2640
+ @local_ssd_count = args[:local_ssd_count] if args.key?(:local_ssd_count)
2641
+ end
2642
+ end
2643
+
2580
2644
  # LoggingComponentConfig is cluster logging component configuration.
2581
2645
  class LoggingComponentConfig
2582
2646
  include Google::Apis::Core::Hashable
@@ -3178,6 +3242,12 @@ module Google
3178
3242
  # @return [String]
3179
3243
  attr_accessor :disk_type
3180
3244
 
3245
+ # EphemeralStorageLocalSsdConfig contains configuration for the node ephemeral
3246
+ # storage using Local SSD.
3247
+ # Corresponds to the JSON property `ephemeralStorageLocalSsdConfig`
3248
+ # @return [Google::Apis::ContainerV1::EphemeralStorageLocalSsdConfig]
3249
+ attr_accessor :ephemeral_storage_local_ssd_config
3250
+
3181
3251
  # Configuration of Fast Socket feature.
3182
3252
  # Corresponds to the JSON property `fastSocket`
3183
3253
  # @return [Google::Apis::ContainerV1::FastSocket]
@@ -3221,6 +3291,12 @@ module Google
3221
3291
  # @return [Google::Apis::ContainerV1::LinuxNodeConfig]
3222
3292
  attr_accessor :linux_node_config
3223
3293
 
3294
+ # LocalNvmeSsdBlockConfig contains configuration for using raw-block local NVMe
3295
+ # SSD.
3296
+ # Corresponds to the JSON property `localNvmeSsdBlockConfig`
3297
+ # @return [Google::Apis::ContainerV1::LocalNvmeSsdBlockConfig]
3298
+ attr_accessor :local_nvme_ssd_block_config
3299
+
3224
3300
  # The number of local SSD disks to be attached to the node. The limit for this
3225
3301
  # value is dependent upon the maximum number of disks available on a machine per
3226
3302
  # zone. See: https://cloud.google.com/compute/docs/disks/local-ssd for more
@@ -3349,6 +3425,13 @@ module Google
3349
3425
  # @return [Array<Google::Apis::ContainerV1::NodeTaint>]
3350
3426
  attr_accessor :taints
3351
3427
 
3428
+ # Parameters that can be configured on Windows nodes. Windows Node Config that
3429
+ # define the parameters that will be used to configure the Windows node pool
3430
+ # settings
3431
+ # Corresponds to the JSON property `windowsNodeConfig`
3432
+ # @return [Google::Apis::ContainerV1::WindowsNodeConfig]
3433
+ attr_accessor :windows_node_config
3434
+
3352
3435
  # WorkloadMetadataConfig defines the metadata configuration to expose to
3353
3436
  # workloads on the node pool.
3354
3437
  # Corresponds to the JSON property `workloadMetadataConfig`
@@ -3367,6 +3450,7 @@ module Google
3367
3450
  @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
3368
3451
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
3369
3452
  @disk_type = args[:disk_type] if args.key?(:disk_type)
3453
+ @ephemeral_storage_local_ssd_config = args[:ephemeral_storage_local_ssd_config] if args.key?(:ephemeral_storage_local_ssd_config)
3370
3454
  @fast_socket = args[:fast_socket] if args.key?(:fast_socket)
3371
3455
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
3372
3456
  @gvnic = args[:gvnic] if args.key?(:gvnic)
@@ -3374,6 +3458,7 @@ module Google
3374
3458
  @kubelet_config = args[:kubelet_config] if args.key?(:kubelet_config)
3375
3459
  @labels = args[:labels] if args.key?(:labels)
3376
3460
  @linux_node_config = args[:linux_node_config] if args.key?(:linux_node_config)
3461
+ @local_nvme_ssd_block_config = args[:local_nvme_ssd_block_config] if args.key?(:local_nvme_ssd_block_config)
3377
3462
  @local_ssd_count = args[:local_ssd_count] if args.key?(:local_ssd_count)
3378
3463
  @logging_config = args[:logging_config] if args.key?(:logging_config)
3379
3464
  @machine_type = args[:machine_type] if args.key?(:machine_type)
@@ -3390,6 +3475,7 @@ module Google
3390
3475
  @spot = args[:spot] if args.key?(:spot)
3391
3476
  @tags = args[:tags] if args.key?(:tags)
3392
3477
  @taints = args[:taints] if args.key?(:taints)
3478
+ @windows_node_config = args[:windows_node_config] if args.key?(:windows_node_config)
3393
3479
  @workload_metadata_config = args[:workload_metadata_config] if args.key?(:workload_metadata_config)
3394
3480
  end
3395
3481
  end
@@ -3624,6 +3710,13 @@ module Google
3624
3710
  # @return [Google::Apis::ContainerV1::NodeConfig]
3625
3711
  attr_accessor :config
3626
3712
 
3713
+ # This checksum is computed by the server based on the value of node pool fields,
3714
+ # and may be sent on update requests to ensure the client has an up-to-date
3715
+ # value before proceeding.
3716
+ # Corresponds to the JSON property `etag`
3717
+ # @return [String]
3718
+ attr_accessor :etag
3719
+
3627
3720
  # The initial node count for the pool. You must ensure that your Compute Engine [
3628
3721
  # resource quota](https://cloud.google.com/compute/quotas) is sufficient for
3629
3722
  # this number of instances. You must also have available firewall and routes
@@ -3752,6 +3845,7 @@ module Google
3752
3845
  @autoscaling = args[:autoscaling] if args.key?(:autoscaling)
3753
3846
  @conditions = args[:conditions] if args.key?(:conditions)
3754
3847
  @config = args[:config] if args.key?(:config)
3848
+ @etag = args[:etag] if args.key?(:etag)
3755
3849
  @initial_node_count = args[:initial_node_count] if args.key?(:initial_node_count)
3756
3850
  @instance_group_urls = args[:instance_group_urls] if args.key?(:instance_group_urls)
3757
3851
  @locations = args[:locations] if args.key?(:locations)
@@ -5746,6 +5840,13 @@ module Google
5746
5840
  # @return [Google::Apis::ContainerV1::ConfidentialNodes]
5747
5841
  attr_accessor :confidential_nodes
5748
5842
 
5843
+ # The current etag of the node pool. If an etag is provided and does not match
5844
+ # the current etag of the node pool, update will be blocked and an ABORTED error
5845
+ # will be returned.
5846
+ # Corresponds to the JSON property `etag`
5847
+ # @return [String]
5848
+ attr_accessor :etag
5849
+
5749
5850
  # Configuration of Fast Socket feature.
5750
5851
  # Corresponds to the JSON property `fastSocket`
5751
5852
  # @return [Google::Apis::ContainerV1::FastSocket]
@@ -5885,6 +5986,13 @@ module Google
5885
5986
  # @return [Google::Apis::ContainerV1::UpgradeSettings]
5886
5987
  attr_accessor :upgrade_settings
5887
5988
 
5989
+ # Parameters that can be configured on Windows nodes. Windows Node Config that
5990
+ # define the parameters that will be used to configure the Windows node pool
5991
+ # settings
5992
+ # Corresponds to the JSON property `windowsNodeConfig`
5993
+ # @return [Google::Apis::ContainerV1::WindowsNodeConfig]
5994
+ attr_accessor :windows_node_config
5995
+
5888
5996
  # WorkloadMetadataConfig defines the metadata configuration to expose to
5889
5997
  # workloads on the node pool.
5890
5998
  # Corresponds to the JSON property `workloadMetadataConfig`
@@ -5906,6 +6014,7 @@ module Google
5906
6014
  def update!(**args)
5907
6015
  @cluster_id = args[:cluster_id] if args.key?(:cluster_id)
5908
6016
  @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
6017
+ @etag = args[:etag] if args.key?(:etag)
5909
6018
  @fast_socket = args[:fast_socket] if args.key?(:fast_socket)
5910
6019
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
5911
6020
  @gvnic = args[:gvnic] if args.key?(:gvnic)
@@ -5924,6 +6033,7 @@ module Google
5924
6033
  @tags = args[:tags] if args.key?(:tags)
5925
6034
  @taints = args[:taints] if args.key?(:taints)
5926
6035
  @upgrade_settings = args[:upgrade_settings] if args.key?(:upgrade_settings)
6036
+ @windows_node_config = args[:windows_node_config] if args.key?(:windows_node_config)
5927
6037
  @workload_metadata_config = args[:workload_metadata_config] if args.key?(:workload_metadata_config)
5928
6038
  @zone = args[:zone] if args.key?(:zone)
5929
6039
  end
@@ -6213,6 +6323,27 @@ module Google
6213
6323
  end
6214
6324
  end
6215
6325
 
6326
+ # Parameters that can be configured on Windows nodes. Windows Node Config that
6327
+ # define the parameters that will be used to configure the Windows node pool
6328
+ # settings
6329
+ class WindowsNodeConfig
6330
+ include Google::Apis::Core::Hashable
6331
+
6332
+ # OSVersion specifies the Windows node config to be used on the node
6333
+ # Corresponds to the JSON property `osVersion`
6334
+ # @return [String]
6335
+ attr_accessor :os_version
6336
+
6337
+ def initialize(**args)
6338
+ update!(**args)
6339
+ end
6340
+
6341
+ # Update properties of this object
6342
+ def update!(**args)
6343
+ @os_version = args[:os_version] if args.key?(:os_version)
6344
+ end
6345
+ end
6346
+
6216
6347
  # Configuration for the use of Kubernetes Service Accounts in GCP IAM policies.
6217
6348
  class WorkloadIdentityConfig
6218
6349
  include Google::Apis::Core::Hashable
@@ -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.42.0"
19
+ GEM_VERSION = "0.43.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221110"
25
+ REVISION = "20230104"
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 EphemeralStorageLocalSsdConfig
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
217
223
  class FastSocket
218
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
225
 
@@ -364,6 +370,12 @@ module Google
364
370
  include Google::Apis::Core::JsonObjectSupport
365
371
  end
366
372
 
373
+ class LocalNvmeSsdBlockConfig
374
+ class Representation < Google::Apis::Core::JsonRepresentation; end
375
+
376
+ include Google::Apis::Core::JsonObjectSupport
377
+ end
378
+
367
379
  class LoggingComponentConfig
368
380
  class Representation < Google::Apis::Core::JsonRepresentation; end
369
381
 
@@ -850,6 +862,12 @@ module Google
850
862
  include Google::Apis::Core::JsonObjectSupport
851
863
  end
852
864
 
865
+ class WindowsNodeConfig
866
+ class Representation < Google::Apis::Core::JsonRepresentation; end
867
+
868
+ include Google::Apis::Core::JsonObjectSupport
869
+ end
870
+
853
871
  class WorkloadIdentityConfig
854
872
  class Representation < Google::Apis::Core::JsonRepresentation; end
855
873
 
@@ -1048,6 +1066,7 @@ module Google
1048
1066
  property :enable_kubernetes_alpha, as: 'enableKubernetesAlpha'
1049
1067
  property :enable_tpu, as: 'enableTpu'
1050
1068
  property :endpoint, as: 'endpoint'
1069
+ property :etag, as: 'etag'
1051
1070
  property :expire_time, as: 'expireTime'
1052
1071
  property :id, as: 'id'
1053
1072
  property :identity_service_config, as: 'identityServiceConfig', class: Google::Apis::ContainerV1::IdentityServiceConfig, decorator: Google::Apis::ContainerV1::IdentityServiceConfig::Representation
@@ -1199,6 +1218,7 @@ module Google
1199
1218
 
1200
1219
  property :desired_workload_identity_config, as: 'desiredWorkloadIdentityConfig', class: Google::Apis::ContainerV1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1::WorkloadIdentityConfig::Representation
1201
1220
 
1221
+ property :etag, as: 'etag'
1202
1222
  end
1203
1223
  end
1204
1224
 
@@ -1314,6 +1334,13 @@ module Google
1314
1334
  end
1315
1335
  end
1316
1336
 
1337
+ class EphemeralStorageLocalSsdConfig
1338
+ # @private
1339
+ class Representation < Google::Apis::Core::JsonRepresentation
1340
+ property :local_ssd_count, as: 'localSsdCount'
1341
+ end
1342
+ end
1343
+
1317
1344
  class FastSocket
1318
1345
  # @private
1319
1346
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1533,6 +1560,13 @@ module Google
1533
1560
  end
1534
1561
  end
1535
1562
 
1563
+ class LocalNvmeSsdBlockConfig
1564
+ # @private
1565
+ class Representation < Google::Apis::Core::JsonRepresentation
1566
+ property :local_ssd_count, as: 'localSsdCount'
1567
+ end
1568
+ end
1569
+
1536
1570
  class LoggingComponentConfig
1537
1571
  # @private
1538
1572
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1715,6 +1749,8 @@ module Google
1715
1749
 
1716
1750
  property :disk_size_gb, as: 'diskSizeGb'
1717
1751
  property :disk_type, as: 'diskType'
1752
+ property :ephemeral_storage_local_ssd_config, as: 'ephemeralStorageLocalSsdConfig', class: Google::Apis::ContainerV1::EphemeralStorageLocalSsdConfig, decorator: Google::Apis::ContainerV1::EphemeralStorageLocalSsdConfig::Representation
1753
+
1718
1754
  property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1::FastSocket, decorator: Google::Apis::ContainerV1::FastSocket::Representation
1719
1755
 
1720
1756
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
@@ -1727,6 +1763,8 @@ module Google
1727
1763
  hash :labels, as: 'labels'
1728
1764
  property :linux_node_config, as: 'linuxNodeConfig', class: Google::Apis::ContainerV1::LinuxNodeConfig, decorator: Google::Apis::ContainerV1::LinuxNodeConfig::Representation
1729
1765
 
1766
+ property :local_nvme_ssd_block_config, as: 'localNvmeSsdBlockConfig', class: Google::Apis::ContainerV1::LocalNvmeSsdBlockConfig, decorator: Google::Apis::ContainerV1::LocalNvmeSsdBlockConfig::Representation
1767
+
1730
1768
  property :local_ssd_count, as: 'localSsdCount'
1731
1769
  property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1::NodePoolLoggingConfig::Representation
1732
1770
 
@@ -1748,6 +1786,8 @@ module Google
1748
1786
  collection :tags, as: 'tags'
1749
1787
  collection :taints, as: 'taints', class: Google::Apis::ContainerV1::NodeTaint, decorator: Google::Apis::ContainerV1::NodeTaint::Representation
1750
1788
 
1789
+ property :windows_node_config, as: 'windowsNodeConfig', class: Google::Apis::ContainerV1::WindowsNodeConfig, decorator: Google::Apis::ContainerV1::WindowsNodeConfig::Representation
1790
+
1751
1791
  property :workload_metadata_config, as: 'workloadMetadataConfig', class: Google::Apis::ContainerV1::WorkloadMetadataConfig, decorator: Google::Apis::ContainerV1::WorkloadMetadataConfig::Representation
1752
1792
 
1753
1793
  end
@@ -1811,6 +1851,7 @@ module Google
1811
1851
 
1812
1852
  property :config, as: 'config', class: Google::Apis::ContainerV1::NodeConfig, decorator: Google::Apis::ContainerV1::NodeConfig::Representation
1813
1853
 
1854
+ property :etag, as: 'etag'
1814
1855
  property :initial_node_count, as: 'initialNodeCount'
1815
1856
  collection :instance_group_urls, as: 'instanceGroupUrls'
1816
1857
  collection :locations, as: 'locations'
@@ -2332,6 +2373,7 @@ module Google
2332
2373
  property :cluster_id, as: 'clusterId'
2333
2374
  property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1::ConfidentialNodes, decorator: Google::Apis::ContainerV1::ConfidentialNodes::Representation
2334
2375
 
2376
+ property :etag, as: 'etag'
2335
2377
  property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1::FastSocket, decorator: Google::Apis::ContainerV1::FastSocket::Representation
2336
2378
 
2337
2379
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
@@ -2362,6 +2404,8 @@ module Google
2362
2404
 
2363
2405
  property :upgrade_settings, as: 'upgradeSettings', class: Google::Apis::ContainerV1::UpgradeSettings, decorator: Google::Apis::ContainerV1::UpgradeSettings::Representation
2364
2406
 
2407
+ property :windows_node_config, as: 'windowsNodeConfig', class: Google::Apis::ContainerV1::WindowsNodeConfig, decorator: Google::Apis::ContainerV1::WindowsNodeConfig::Representation
2408
+
2365
2409
  property :workload_metadata_config, as: 'workloadMetadataConfig', class: Google::Apis::ContainerV1::WorkloadMetadataConfig, decorator: Google::Apis::ContainerV1::WorkloadMetadataConfig::Representation
2366
2410
 
2367
2411
  property :zone, as: 'zone'
@@ -2437,6 +2481,13 @@ module Google
2437
2481
  end
2438
2482
  end
2439
2483
 
2484
+ class WindowsNodeConfig
2485
+ # @private
2486
+ class Representation < Google::Apis::Core::JsonRepresentation
2487
+ property :os_version, as: 'osVersion'
2488
+ end
2489
+ end
2490
+
2440
2491
  class WorkloadIdentityConfig
2441
2492
  # @private
2442
2493
  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.42.0
4
+ version: 0.43.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-01-04 00:00:00.000000000 Z
11
+ date: 2023-01-08 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.42.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.43.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.14
78
+ rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Kubernetes Engine API V1