google-apis-container_v1 0.42.0 → 0.44.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: dcd1083ea44d35672ee00388bf9e5327d81edee14165eca208cfa2e2e69fcb70
4
- data.tar.gz: 7812cd4441eebc3e7493d2a6f0b846220946c37682847db5bec54f845ae35437
3
+ metadata.gz: 3b04aaaf2d4497dccf881c1508d0fd9180fcc22185566a02d451d8ca28b31146
4
+ data.tar.gz: 377a65dc2223e437985ad133f7f638137366b70917e458bb676517c120416600
5
5
  SHA512:
6
- metadata.gz: 10e71bfc96ed1c3d0906905a2364c915c62b810552a0e2b96a9ea5a20b795a6bf519f1fec850d6a2e36dc554417260403275284ce45f38c0bd782425636e6b97
7
- data.tar.gz: ecec336dba2fbec710c0164e8a1186f5350e94bcfc078f80267a009d2c317d9191d5c42af68b9602579f8499ee92554e27c5afec5002b06a01d49b9c19de44ba
6
+ metadata.gz: '0252469ac2fa59adb6b915d4f55c52e062018b1ef0899c1b764464c16f485c607131fa26593990803197a598dbf7845e02c9756e28d55dd3da8ac529483e0e10'
7
+ data.tar.gz: a20ae4d0a92094b46d3656aa07411a3606bdee7ba2ee3d7093bb61fe41fa6f6cf4a920185e11c6de95de464064947f643040b14deca7d2eb37fce574e88e0f7d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-container_v1
2
2
 
3
+ ### v0.44.0 (2023-01-29)
4
+
5
+ * Regenerated from discovery document revision 20230117
6
+
7
+ ### v0.43.0 (2023-01-08)
8
+
9
+ * Regenerated from discovery document revision 20230104
10
+ * Regenerated using generator version 0.11.1
11
+
3
12
  ### v0.42.0 (2022-12-12)
4
13
 
5
14
  * Regenerated from discovery document revision 20221110
@@ -266,7 +266,8 @@ module Google
266
266
  # @return [String]
267
267
  attr_accessor :disk_type
268
268
 
269
- # The image type to use for NAP created node.
269
+ # The image type to use for NAP created node. Please see https://cloud.google.
270
+ # com/kubernetes-engine/docs/concepts/node-images for available image types.
270
271
  # Corresponds to the JSON property `imageType`
271
272
  # @return [String]
272
273
  attr_accessor :image_type
@@ -283,7 +284,7 @@ module Google
283
284
  # Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how
284
285
  # to specify min CPU platform](https://cloud.google.com/compute/docs/instances/
285
286
  # specify-min-cpu-platform). This field is deprecated, min_cpu_platform should
286
- # be specified using https://cloud.google.com/requested-min-cpu-platform label
287
+ # be specified using `cloud.google.com/requested-min-cpu-platform` label
287
288
  # selector on the pod. To unset the min cpu platform field pass "automatic" as
288
289
  # field value.
289
290
  # Corresponds to the JSON property `minCpuPlatform`
@@ -714,6 +715,13 @@ module Google
714
715
  # @return [String]
715
716
  attr_accessor :endpoint
716
717
 
718
+ # This checksum is computed by the server based on the value of cluster fields,
719
+ # and may be sent on update requests to ensure the client has an up-to-date
720
+ # value before proceeding.
721
+ # Corresponds to the JSON property `etag`
722
+ # @return [String]
723
+ attr_accessor :etag
724
+
717
725
  # [Output only] The time the cluster will be automatically deleted in [RFC3339](
718
726
  # https://www.ietf.org/rfc/rfc3339.txt) text format.
719
727
  # Corresponds to the JSON property `expireTime`
@@ -1025,6 +1033,7 @@ module Google
1025
1033
  @enable_kubernetes_alpha = args[:enable_kubernetes_alpha] if args.key?(:enable_kubernetes_alpha)
1026
1034
  @enable_tpu = args[:enable_tpu] if args.key?(:enable_tpu)
1027
1035
  @endpoint = args[:endpoint] if args.key?(:endpoint)
1036
+ @etag = args[:etag] if args.key?(:etag)
1028
1037
  @expire_time = args[:expire_time] if args.key?(:expire_time)
1029
1038
  @id = args[:id] if args.key?(:id)
1030
1039
  @identity_service_config = args[:identity_service_config] if args.key?(:identity_service_config)
@@ -1372,6 +1381,13 @@ module Google
1372
1381
  # @return [Google::Apis::ContainerV1::WorkloadIdentityConfig]
1373
1382
  attr_accessor :desired_workload_identity_config
1374
1383
 
1384
+ # The current etag of the cluster. If an etag is provided and does not match the
1385
+ # current etag of the cluster, update will be blocked and an ABORTED error will
1386
+ # be returned.
1387
+ # Corresponds to the JSON property `etag`
1388
+ # @return [String]
1389
+ attr_accessor :etag
1390
+
1375
1391
  def initialize(**args)
1376
1392
  update!(**args)
1377
1393
  end
@@ -1417,6 +1433,7 @@ module Google
1417
1433
  @desired_stack_type = args[:desired_stack_type] if args.key?(:desired_stack_type)
1418
1434
  @desired_vertical_pod_autoscaling = args[:desired_vertical_pod_autoscaling] if args.key?(:desired_vertical_pod_autoscaling)
1419
1435
  @desired_workload_identity_config = args[:desired_workload_identity_config] if args.key?(:desired_workload_identity_config)
1436
+ @etag = args[:etag] if args.key?(:etag)
1420
1437
  end
1421
1438
  end
1422
1439
 
@@ -1798,6 +1815,30 @@ module Google
1798
1815
  end
1799
1816
  end
1800
1817
 
1818
+ # EphemeralStorageLocalSsdConfig contains configuration for the node ephemeral
1819
+ # storage using Local SSD.
1820
+ class EphemeralStorageLocalSsdConfig
1821
+ include Google::Apis::Core::Hashable
1822
+
1823
+ # Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces.
1824
+ # Each local SSD is 375 GB in size. If zero, it means to disable using local
1825
+ # SSDs as ephemeral storage. The limit for this value is dependent upon the
1826
+ # maximum number of disks available on a machine per zone. See: https://cloud.
1827
+ # google.com/compute/docs/disks/local-ssd for more information.
1828
+ # Corresponds to the JSON property `localSsdCount`
1829
+ # @return [Fixnum]
1830
+ attr_accessor :local_ssd_count
1831
+
1832
+ def initialize(**args)
1833
+ update!(**args)
1834
+ end
1835
+
1836
+ # Update properties of this object
1837
+ def update!(**args)
1838
+ @local_ssd_count = args[:local_ssd_count] if args.key?(:local_ssd_count)
1839
+ end
1840
+ end
1841
+
1801
1842
  # Configuration of Fast Socket feature.
1802
1843
  class FastSocket
1803
1844
  include Google::Apis::Core::Hashable
@@ -2224,6 +2265,11 @@ module Google
2224
2265
  # @return [String]
2225
2266
  attr_accessor :services_ipv4_cidr_block
2226
2267
 
2268
+ # Output only. [Output only] The services IPv6 CIDR block for the cluster.
2269
+ # Corresponds to the JSON property `servicesIpv6CidrBlock`
2270
+ # @return [String]
2271
+ attr_accessor :services_ipv6_cidr_block
2272
+
2227
2273
  # The name of the secondary range to be used as for the services CIDR block. The
2228
2274
  # secondary range will be used for service ClusterIPs. This must be an existing
2229
2275
  # secondary range associated with the cluster subnetwork. This field is only
@@ -2237,6 +2283,11 @@ module Google
2237
2283
  # @return [String]
2238
2284
  attr_accessor :stack_type
2239
2285
 
2286
+ # Output only. [Output only] The subnet's IPv6 CIDR block used by nodes and pods.
2287
+ # Corresponds to the JSON property `subnetIpv6CidrBlock`
2288
+ # @return [String]
2289
+ attr_accessor :subnet_ipv6_cidr_block
2290
+
2240
2291
  # A custom subnetwork name to be used if `create_subnetwork` is true. If this
2241
2292
  # field is empty, then an automatic name will be chosen for the new subnetwork.
2242
2293
  # Corresponds to the JSON property `subnetworkName`
@@ -2288,8 +2339,10 @@ module Google
2288
2339
  @node_ipv4_cidr_block = args[:node_ipv4_cidr_block] if args.key?(:node_ipv4_cidr_block)
2289
2340
  @services_ipv4_cidr = args[:services_ipv4_cidr] if args.key?(:services_ipv4_cidr)
2290
2341
  @services_ipv4_cidr_block = args[:services_ipv4_cidr_block] if args.key?(:services_ipv4_cidr_block)
2342
+ @services_ipv6_cidr_block = args[:services_ipv6_cidr_block] if args.key?(:services_ipv6_cidr_block)
2291
2343
  @services_secondary_range_name = args[:services_secondary_range_name] if args.key?(:services_secondary_range_name)
2292
2344
  @stack_type = args[:stack_type] if args.key?(:stack_type)
2345
+ @subnet_ipv6_cidr_block = args[:subnet_ipv6_cidr_block] if args.key?(:subnet_ipv6_cidr_block)
2293
2346
  @subnetwork_name = args[:subnetwork_name] if args.key?(:subnetwork_name)
2294
2347
  @tpu_ipv4_cidr_block = args[:tpu_ipv4_cidr_block] if args.key?(:tpu_ipv4_cidr_block)
2295
2348
  @use_ip_aliases = args[:use_ip_aliases] if args.key?(:use_ip_aliases)
@@ -2577,6 +2630,30 @@ module Google
2577
2630
  end
2578
2631
  end
2579
2632
 
2633
+ # LocalNvmeSsdBlockConfig contains configuration for using raw-block local NVMe
2634
+ # SSD.
2635
+ class LocalNvmeSsdBlockConfig
2636
+ include Google::Apis::Core::Hashable
2637
+
2638
+ # The number of raw-block local NVMe SSD disks to be attached to the node. Each
2639
+ # local SSD is 375 GB in size. If zero, it means no raw-block local NVMe SSD
2640
+ # disks to be attached to the node. The limit for this value is dependent upon
2641
+ # the maximum number of disks available on a machine per zone. See: https://
2642
+ # cloud.google.com/compute/docs/disks/local-ssd for more information.
2643
+ # Corresponds to the JSON property `localSsdCount`
2644
+ # @return [Fixnum]
2645
+ attr_accessor :local_ssd_count
2646
+
2647
+ def initialize(**args)
2648
+ update!(**args)
2649
+ end
2650
+
2651
+ # Update properties of this object
2652
+ def update!(**args)
2653
+ @local_ssd_count = args[:local_ssd_count] if args.key?(:local_ssd_count)
2654
+ end
2655
+ end
2656
+
2580
2657
  # LoggingComponentConfig is cluster logging component configuration.
2581
2658
  class LoggingComponentConfig
2582
2659
  include Google::Apis::Core::Hashable
@@ -3178,6 +3255,12 @@ module Google
3178
3255
  # @return [String]
3179
3256
  attr_accessor :disk_type
3180
3257
 
3258
+ # EphemeralStorageLocalSsdConfig contains configuration for the node ephemeral
3259
+ # storage using Local SSD.
3260
+ # Corresponds to the JSON property `ephemeralStorageLocalSsdConfig`
3261
+ # @return [Google::Apis::ContainerV1::EphemeralStorageLocalSsdConfig]
3262
+ attr_accessor :ephemeral_storage_local_ssd_config
3263
+
3181
3264
  # Configuration of Fast Socket feature.
3182
3265
  # Corresponds to the JSON property `fastSocket`
3183
3266
  # @return [Google::Apis::ContainerV1::FastSocket]
@@ -3195,7 +3278,8 @@ module Google
3195
3278
  attr_accessor :gvnic
3196
3279
 
3197
3280
  # The image type to use for this node. Note that for a given image type, the
3198
- # latest version of it will be used.
3281
+ # latest version of it will be used. Please see https://cloud.google.com/
3282
+ # kubernetes-engine/docs/concepts/node-images for available image types.
3199
3283
  # Corresponds to the JSON property `imageType`
3200
3284
  # @return [String]
3201
3285
  attr_accessor :image_type
@@ -3221,6 +3305,12 @@ module Google
3221
3305
  # @return [Google::Apis::ContainerV1::LinuxNodeConfig]
3222
3306
  attr_accessor :linux_node_config
3223
3307
 
3308
+ # LocalNvmeSsdBlockConfig contains configuration for using raw-block local NVMe
3309
+ # SSD.
3310
+ # Corresponds to the JSON property `localNvmeSsdBlockConfig`
3311
+ # @return [Google::Apis::ContainerV1::LocalNvmeSsdBlockConfig]
3312
+ attr_accessor :local_nvme_ssd_block_config
3313
+
3224
3314
  # The number of local SSD disks to be attached to the node. The limit for this
3225
3315
  # value is dependent upon the maximum number of disks available on a machine per
3226
3316
  # zone. See: https://cloud.google.com/compute/docs/disks/local-ssd for more
@@ -3349,6 +3439,13 @@ module Google
3349
3439
  # @return [Array<Google::Apis::ContainerV1::NodeTaint>]
3350
3440
  attr_accessor :taints
3351
3441
 
3442
+ # Parameters that can be configured on Windows nodes. Windows Node Config that
3443
+ # define the parameters that will be used to configure the Windows node pool
3444
+ # settings
3445
+ # Corresponds to the JSON property `windowsNodeConfig`
3446
+ # @return [Google::Apis::ContainerV1::WindowsNodeConfig]
3447
+ attr_accessor :windows_node_config
3448
+
3352
3449
  # WorkloadMetadataConfig defines the metadata configuration to expose to
3353
3450
  # workloads on the node pool.
3354
3451
  # Corresponds to the JSON property `workloadMetadataConfig`
@@ -3367,6 +3464,7 @@ module Google
3367
3464
  @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
3368
3465
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
3369
3466
  @disk_type = args[:disk_type] if args.key?(:disk_type)
3467
+ @ephemeral_storage_local_ssd_config = args[:ephemeral_storage_local_ssd_config] if args.key?(:ephemeral_storage_local_ssd_config)
3370
3468
  @fast_socket = args[:fast_socket] if args.key?(:fast_socket)
3371
3469
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
3372
3470
  @gvnic = args[:gvnic] if args.key?(:gvnic)
@@ -3374,6 +3472,7 @@ module Google
3374
3472
  @kubelet_config = args[:kubelet_config] if args.key?(:kubelet_config)
3375
3473
  @labels = args[:labels] if args.key?(:labels)
3376
3474
  @linux_node_config = args[:linux_node_config] if args.key?(:linux_node_config)
3475
+ @local_nvme_ssd_block_config = args[:local_nvme_ssd_block_config] if args.key?(:local_nvme_ssd_block_config)
3377
3476
  @local_ssd_count = args[:local_ssd_count] if args.key?(:local_ssd_count)
3378
3477
  @logging_config = args[:logging_config] if args.key?(:logging_config)
3379
3478
  @machine_type = args[:machine_type] if args.key?(:machine_type)
@@ -3390,6 +3489,7 @@ module Google
3390
3489
  @spot = args[:spot] if args.key?(:spot)
3391
3490
  @tags = args[:tags] if args.key?(:tags)
3392
3491
  @taints = args[:taints] if args.key?(:taints)
3492
+ @windows_node_config = args[:windows_node_config] if args.key?(:windows_node_config)
3393
3493
  @workload_metadata_config = args[:workload_metadata_config] if args.key?(:workload_metadata_config)
3394
3494
  end
3395
3495
  end
@@ -3624,6 +3724,13 @@ module Google
3624
3724
  # @return [Google::Apis::ContainerV1::NodeConfig]
3625
3725
  attr_accessor :config
3626
3726
 
3727
+ # This checksum is computed by the server based on the value of node pool fields,
3728
+ # and may be sent on update requests to ensure the client has an up-to-date
3729
+ # value before proceeding.
3730
+ # Corresponds to the JSON property `etag`
3731
+ # @return [String]
3732
+ attr_accessor :etag
3733
+
3627
3734
  # The initial node count for the pool. You must ensure that your Compute Engine [
3628
3735
  # resource quota](https://cloud.google.com/compute/quotas) is sufficient for
3629
3736
  # this number of instances. You must also have available firewall and routes
@@ -3738,7 +3845,9 @@ module Google
3738
3845
  # @return [Google::Apis::ContainerV1::UpgradeSettings]
3739
3846
  attr_accessor :upgrade_settings
3740
3847
 
3741
- # The version of the Kubernetes of this node.
3848
+ # The version of Kubernetes running on this NodePool's nodes. If unspecified, it
3849
+ # defaults as described [here](https://cloud.google.com/kubernetes-engine/
3850
+ # versioning#specifying_node_version).
3742
3851
  # Corresponds to the JSON property `version`
3743
3852
  # @return [String]
3744
3853
  attr_accessor :version
@@ -3752,6 +3861,7 @@ module Google
3752
3861
  @autoscaling = args[:autoscaling] if args.key?(:autoscaling)
3753
3862
  @conditions = args[:conditions] if args.key?(:conditions)
3754
3863
  @config = args[:config] if args.key?(:config)
3864
+ @etag = args[:etag] if args.key?(:etag)
3755
3865
  @initial_node_count = args[:initial_node_count] if args.key?(:initial_node_count)
3756
3866
  @instance_group_urls = args[:instance_group_urls] if args.key?(:instance_group_urls)
3757
3867
  @locations = args[:locations] if args.key?(:locations)
@@ -5746,6 +5856,13 @@ module Google
5746
5856
  # @return [Google::Apis::ContainerV1::ConfidentialNodes]
5747
5857
  attr_accessor :confidential_nodes
5748
5858
 
5859
+ # The current etag of the node pool. If an etag is provided and does not match
5860
+ # the current etag of the node pool, update will be blocked and an ABORTED error
5861
+ # will be returned.
5862
+ # Corresponds to the JSON property `etag`
5863
+ # @return [String]
5864
+ attr_accessor :etag
5865
+
5749
5866
  # Configuration of Fast Socket feature.
5750
5867
  # Corresponds to the JSON property `fastSocket`
5751
5868
  # @return [Google::Apis::ContainerV1::FastSocket]
@@ -5762,7 +5879,9 @@ module Google
5762
5879
  # @return [Google::Apis::ContainerV1::VirtualNic]
5763
5880
  attr_accessor :gvnic
5764
5881
 
5765
- # Required. The desired image type for the node pool.
5882
+ # Required. The desired image type for the node pool. Please see https://cloud.
5883
+ # google.com/kubernetes-engine/docs/concepts/node-images for available image
5884
+ # types.
5766
5885
  # Corresponds to the JSON property `imageType`
5767
5886
  # @return [String]
5768
5887
  attr_accessor :image_type
@@ -5885,6 +6004,13 @@ module Google
5885
6004
  # @return [Google::Apis::ContainerV1::UpgradeSettings]
5886
6005
  attr_accessor :upgrade_settings
5887
6006
 
6007
+ # Parameters that can be configured on Windows nodes. Windows Node Config that
6008
+ # define the parameters that will be used to configure the Windows node pool
6009
+ # settings
6010
+ # Corresponds to the JSON property `windowsNodeConfig`
6011
+ # @return [Google::Apis::ContainerV1::WindowsNodeConfig]
6012
+ attr_accessor :windows_node_config
6013
+
5888
6014
  # WorkloadMetadataConfig defines the metadata configuration to expose to
5889
6015
  # workloads on the node pool.
5890
6016
  # Corresponds to the JSON property `workloadMetadataConfig`
@@ -5906,6 +6032,7 @@ module Google
5906
6032
  def update!(**args)
5907
6033
  @cluster_id = args[:cluster_id] if args.key?(:cluster_id)
5908
6034
  @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
6035
+ @etag = args[:etag] if args.key?(:etag)
5909
6036
  @fast_socket = args[:fast_socket] if args.key?(:fast_socket)
5910
6037
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
5911
6038
  @gvnic = args[:gvnic] if args.key?(:gvnic)
@@ -5924,6 +6051,7 @@ module Google
5924
6051
  @tags = args[:tags] if args.key?(:tags)
5925
6052
  @taints = args[:taints] if args.key?(:taints)
5926
6053
  @upgrade_settings = args[:upgrade_settings] if args.key?(:upgrade_settings)
6054
+ @windows_node_config = args[:windows_node_config] if args.key?(:windows_node_config)
5927
6055
  @workload_metadata_config = args[:workload_metadata_config] if args.key?(:workload_metadata_config)
5928
6056
  @zone = args[:zone] if args.key?(:zone)
5929
6057
  end
@@ -6213,6 +6341,27 @@ module Google
6213
6341
  end
6214
6342
  end
6215
6343
 
6344
+ # Parameters that can be configured on Windows nodes. Windows Node Config that
6345
+ # define the parameters that will be used to configure the Windows node pool
6346
+ # settings
6347
+ class WindowsNodeConfig
6348
+ include Google::Apis::Core::Hashable
6349
+
6350
+ # OSVersion specifies the Windows node config to be used on the node
6351
+ # Corresponds to the JSON property `osVersion`
6352
+ # @return [String]
6353
+ attr_accessor :os_version
6354
+
6355
+ def initialize(**args)
6356
+ update!(**args)
6357
+ end
6358
+
6359
+ # Update properties of this object
6360
+ def update!(**args)
6361
+ @os_version = args[:os_version] if args.key?(:os_version)
6362
+ end
6363
+ end
6364
+
6216
6365
  # Configuration for the use of Kubernetes Service Accounts in GCP IAM policies.
6217
6366
  class WorkloadIdentityConfig
6218
6367
  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.44.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 = "20230117"
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
@@ -1438,8 +1465,10 @@ module Google
1438
1465
  property :node_ipv4_cidr_block, as: 'nodeIpv4CidrBlock'
1439
1466
  property :services_ipv4_cidr, as: 'servicesIpv4Cidr'
1440
1467
  property :services_ipv4_cidr_block, as: 'servicesIpv4CidrBlock'
1468
+ property :services_ipv6_cidr_block, as: 'servicesIpv6CidrBlock'
1441
1469
  property :services_secondary_range_name, as: 'servicesSecondaryRangeName'
1442
1470
  property :stack_type, as: 'stackType'
1471
+ property :subnet_ipv6_cidr_block, as: 'subnetIpv6CidrBlock'
1443
1472
  property :subnetwork_name, as: 'subnetworkName'
1444
1473
  property :tpu_ipv4_cidr_block, as: 'tpuIpv4CidrBlock'
1445
1474
  property :use_ip_aliases, as: 'useIpAliases'
@@ -1533,6 +1562,13 @@ module Google
1533
1562
  end
1534
1563
  end
1535
1564
 
1565
+ class LocalNvmeSsdBlockConfig
1566
+ # @private
1567
+ class Representation < Google::Apis::Core::JsonRepresentation
1568
+ property :local_ssd_count, as: 'localSsdCount'
1569
+ end
1570
+ end
1571
+
1536
1572
  class LoggingComponentConfig
1537
1573
  # @private
1538
1574
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1715,6 +1751,8 @@ module Google
1715
1751
 
1716
1752
  property :disk_size_gb, as: 'diskSizeGb'
1717
1753
  property :disk_type, as: 'diskType'
1754
+ property :ephemeral_storage_local_ssd_config, as: 'ephemeralStorageLocalSsdConfig', class: Google::Apis::ContainerV1::EphemeralStorageLocalSsdConfig, decorator: Google::Apis::ContainerV1::EphemeralStorageLocalSsdConfig::Representation
1755
+
1718
1756
  property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1::FastSocket, decorator: Google::Apis::ContainerV1::FastSocket::Representation
1719
1757
 
1720
1758
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
@@ -1727,6 +1765,8 @@ module Google
1727
1765
  hash :labels, as: 'labels'
1728
1766
  property :linux_node_config, as: 'linuxNodeConfig', class: Google::Apis::ContainerV1::LinuxNodeConfig, decorator: Google::Apis::ContainerV1::LinuxNodeConfig::Representation
1729
1767
 
1768
+ property :local_nvme_ssd_block_config, as: 'localNvmeSsdBlockConfig', class: Google::Apis::ContainerV1::LocalNvmeSsdBlockConfig, decorator: Google::Apis::ContainerV1::LocalNvmeSsdBlockConfig::Representation
1769
+
1730
1770
  property :local_ssd_count, as: 'localSsdCount'
1731
1771
  property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1::NodePoolLoggingConfig::Representation
1732
1772
 
@@ -1748,6 +1788,8 @@ module Google
1748
1788
  collection :tags, as: 'tags'
1749
1789
  collection :taints, as: 'taints', class: Google::Apis::ContainerV1::NodeTaint, decorator: Google::Apis::ContainerV1::NodeTaint::Representation
1750
1790
 
1791
+ property :windows_node_config, as: 'windowsNodeConfig', class: Google::Apis::ContainerV1::WindowsNodeConfig, decorator: Google::Apis::ContainerV1::WindowsNodeConfig::Representation
1792
+
1751
1793
  property :workload_metadata_config, as: 'workloadMetadataConfig', class: Google::Apis::ContainerV1::WorkloadMetadataConfig, decorator: Google::Apis::ContainerV1::WorkloadMetadataConfig::Representation
1752
1794
 
1753
1795
  end
@@ -1811,6 +1853,7 @@ module Google
1811
1853
 
1812
1854
  property :config, as: 'config', class: Google::Apis::ContainerV1::NodeConfig, decorator: Google::Apis::ContainerV1::NodeConfig::Representation
1813
1855
 
1856
+ property :etag, as: 'etag'
1814
1857
  property :initial_node_count, as: 'initialNodeCount'
1815
1858
  collection :instance_group_urls, as: 'instanceGroupUrls'
1816
1859
  collection :locations, as: 'locations'
@@ -2332,6 +2375,7 @@ module Google
2332
2375
  property :cluster_id, as: 'clusterId'
2333
2376
  property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1::ConfidentialNodes, decorator: Google::Apis::ContainerV1::ConfidentialNodes::Representation
2334
2377
 
2378
+ property :etag, as: 'etag'
2335
2379
  property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1::FastSocket, decorator: Google::Apis::ContainerV1::FastSocket::Representation
2336
2380
 
2337
2381
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
@@ -2362,6 +2406,8 @@ module Google
2362
2406
 
2363
2407
  property :upgrade_settings, as: 'upgradeSettings', class: Google::Apis::ContainerV1::UpgradeSettings, decorator: Google::Apis::ContainerV1::UpgradeSettings::Representation
2364
2408
 
2409
+ property :windows_node_config, as: 'windowsNodeConfig', class: Google::Apis::ContainerV1::WindowsNodeConfig, decorator: Google::Apis::ContainerV1::WindowsNodeConfig::Representation
2410
+
2365
2411
  property :workload_metadata_config, as: 'workloadMetadataConfig', class: Google::Apis::ContainerV1::WorkloadMetadataConfig, decorator: Google::Apis::ContainerV1::WorkloadMetadataConfig::Representation
2366
2412
 
2367
2413
  property :zone, as: 'zone'
@@ -2437,6 +2483,13 @@ module Google
2437
2483
  end
2438
2484
  end
2439
2485
 
2486
+ class WindowsNodeConfig
2487
+ # @private
2488
+ class Representation < Google::Apis::Core::JsonRepresentation
2489
+ property :os_version, as: 'osVersion'
2490
+ end
2491
+ end
2492
+
2440
2493
  class WorkloadIdentityConfig
2441
2494
  # @private
2442
2495
  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.44.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-29 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.44.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