google-apis-container_v1 0.38.0 → 0.40.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: 7c440a6950729c59c6e3b7f94a93e09a544fa245ff353d582d848ecc12b423c4
4
- data.tar.gz: 2056211db4b5c069909725416af4982202e9a224d91a44456f14614e5f1e6f64
3
+ metadata.gz: afd835df4d1665ad98fd75c166c521c35ff973a41602ebf5b17ae6e3f35a64a7
4
+ data.tar.gz: 8d9fa7a50a5f8f34f45529cd83c9cc6c449656cc62799151c245a806e89c20ef
5
5
  SHA512:
6
- metadata.gz: 85efb0e9680a3cc4198d39f32660b22e5eb5f5eccac48c91e4ed4699fe3c7ff778548fad6698fb9264111e3051718f615659137cc787e41673f1d408f959216d
7
- data.tar.gz: c8c8b66b9c956468e8fa65b3c0d54d3acb722b4ae4cf3f7a9749f4b72891c5239f590c21e41ae255cf4a80e257469d46a6906bb882b299e80c86d3d7b9d270d9
6
+ metadata.gz: 163ff257249ccad50ae11d004eddbf382dbb4c318940720ba44a6d377506ae86d7bf49ae8b7f192c1eb6f8a7da4f54ef944d2315c09cab53a9a2fd020aa55465
7
+ data.tar.gz: eb22baba646a89d832ac2ff16d44f9980ffffa23313eb06e1b69ded7e1578fcb51a26ca3e01f57f4be0aa65964134d4d7725a3a89c9e4fe231bc1c369e365b38
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-container_v1
2
2
 
3
+ ### v0.40.0 (2022-11-11)
4
+
5
+ * Regenerated from discovery document revision 20221024
6
+
7
+ ### v0.39.0 (2022-11-04)
8
+
9
+ * Regenerated from discovery document revision 20221017
10
+
3
11
  ### v0.38.0 (2022-10-28)
4
12
 
5
13
  * Regenerated using generator version 0.11.0
@@ -1174,6 +1174,17 @@ module Google
1174
1174
  # @return [Google::Apis::ContainerV1::DnsConfig]
1175
1175
  attr_accessor :desired_dns_config
1176
1176
 
1177
+ # Enable/Disable private endpoint for the cluster's master.
1178
+ # Corresponds to the JSON property `desiredEnablePrivateEndpoint`
1179
+ # @return [Boolean]
1180
+ attr_accessor :desired_enable_private_endpoint
1181
+ alias_method :desired_enable_private_endpoint?, :desired_enable_private_endpoint
1182
+
1183
+ # GatewayAPIConfig contains the desired config of Gateway API on this cluster.
1184
+ # Corresponds to the JSON property `desiredGatewayApiConfig`
1185
+ # @return [Google::Apis::ContainerV1::GatewayApiConfig]
1186
+ attr_accessor :desired_gateway_api_config
1187
+
1177
1188
  # GcfsConfig contains configurations of Google Container File System (image
1178
1189
  # streaming).
1179
1190
  # Corresponds to the JSON property `desiredGcfsConfig`
@@ -1369,6 +1380,8 @@ module Google
1369
1380
  @desired_datapath_provider = args[:desired_datapath_provider] if args.key?(:desired_datapath_provider)
1370
1381
  @desired_default_snat_status = args[:desired_default_snat_status] if args.key?(:desired_default_snat_status)
1371
1382
  @desired_dns_config = args[:desired_dns_config] if args.key?(:desired_dns_config)
1383
+ @desired_enable_private_endpoint = args[:desired_enable_private_endpoint] if args.key?(:desired_enable_private_endpoint)
1384
+ @desired_gateway_api_config = args[:desired_gateway_api_config] if args.key?(:desired_gateway_api_config)
1372
1385
  @desired_gcfs_config = args[:desired_gcfs_config] if args.key?(:desired_gcfs_config)
1373
1386
  @desired_identity_service_config = args[:desired_identity_service_config] if args.key?(:desired_identity_service_config)
1374
1387
  @desired_image_type = args[:desired_image_type] if args.key?(:desired_image_type)
@@ -1825,6 +1838,25 @@ module Google
1825
1838
  end
1826
1839
  end
1827
1840
 
1841
+ # GatewayAPIConfig contains the desired config of Gateway API on this cluster.
1842
+ class GatewayApiConfig
1843
+ include Google::Apis::Core::Hashable
1844
+
1845
+ # The Gateway API release channel to use for Gateway API.
1846
+ # Corresponds to the JSON property `channel`
1847
+ # @return [String]
1848
+ attr_accessor :channel
1849
+
1850
+ def initialize(**args)
1851
+ update!(**args)
1852
+ end
1853
+
1854
+ # Update properties of this object
1855
+ def update!(**args)
1856
+ @channel = args[:channel] if args.key?(:channel)
1857
+ end
1858
+ end
1859
+
1828
1860
  # Configuration for the Compute Engine PD CSI driver.
1829
1861
  class GcePersistentDiskCsiDriverConfig
1830
1862
  include Google::Apis::Core::Hashable
@@ -2393,6 +2425,11 @@ module Google
2393
2425
  class LinuxNodeConfig
2394
2426
  include Google::Apis::Core::Hashable
2395
2427
 
2428
+ # cgroup_mode specifies the cgroup mode to be used on the node.
2429
+ # Corresponds to the JSON property `cgroupMode`
2430
+ # @return [String]
2431
+ attr_accessor :cgroup_mode
2432
+
2396
2433
  # The Linux kernel parameters to be applied to the nodes and all pods running on
2397
2434
  # the nodes. The following parameters are supported. net.core.busy_poll net.core.
2398
2435
  # busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.wmem_default
@@ -2408,6 +2445,7 @@ module Google
2408
2445
 
2409
2446
  # Update properties of this object
2410
2447
  def update!(**args)
2448
+ @cgroup_mode = args[:cgroup_mode] if args.key?(:cgroup_mode)
2411
2449
  @sysctls = args[:sysctls] if args.key?(:sysctls)
2412
2450
  end
2413
2451
  end
@@ -2753,6 +2791,12 @@ module Google
2753
2791
  attr_accessor :enabled
2754
2792
  alias_method :enabled?, :enabled
2755
2793
 
2794
+ # Whether master is accessbile via Google Compute Engine Public IP addresses.
2795
+ # Corresponds to the JSON property `gcpPublicCidrsAccessEnabled`
2796
+ # @return [Boolean]
2797
+ attr_accessor :gcp_public_cidrs_access_enabled
2798
+ alias_method :gcp_public_cidrs_access_enabled?, :gcp_public_cidrs_access_enabled
2799
+
2756
2800
  def initialize(**args)
2757
2801
  update!(**args)
2758
2802
  end
@@ -2761,6 +2805,7 @@ module Google
2761
2805
  def update!(**args)
2762
2806
  @cidr_blocks = args[:cidr_blocks] if args.key?(:cidr_blocks)
2763
2807
  @enabled = args[:enabled] if args.key?(:enabled)
2808
+ @gcp_public_cidrs_access_enabled = args[:gcp_public_cidrs_access_enabled] if args.key?(:gcp_public_cidrs_access_enabled)
2764
2809
  end
2765
2810
  end
2766
2811
 
@@ -2924,6 +2969,11 @@ module Google
2924
2969
  attr_accessor :enable_l4ilb_subsetting
2925
2970
  alias_method :enable_l4ilb_subsetting?, :enable_l4ilb_subsetting
2926
2971
 
2972
+ # GatewayAPIConfig contains the desired config of Gateway API on this cluster.
2973
+ # Corresponds to the JSON property `gatewayApiConfig`
2974
+ # @return [Google::Apis::ContainerV1::GatewayApiConfig]
2975
+ attr_accessor :gateway_api_config
2976
+
2927
2977
  # Output only. The relative name of the Google Compute Engine network(https://
2928
2978
  # cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the
2929
2979
  # cluster is connected. Example: projects/my-project/global/networks/my-network
@@ -2960,6 +3010,7 @@ module Google
2960
3010
  @dns_config = args[:dns_config] if args.key?(:dns_config)
2961
3011
  @enable_intra_node_visibility = args[:enable_intra_node_visibility] if args.key?(:enable_intra_node_visibility)
2962
3012
  @enable_l4ilb_subsetting = args[:enable_l4ilb_subsetting] if args.key?(:enable_l4ilb_subsetting)
3013
+ @gateway_api_config = args[:gateway_api_config] if args.key?(:gateway_api_config)
2963
3014
  @network = args[:network] if args.key?(:network)
2964
3015
  @private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
2965
3016
  @service_external_ips_config = args[:service_external_ips_config] if args.key?(:service_external_ips_config)
@@ -3220,6 +3271,12 @@ module Google
3220
3271
  # @return [Google::Apis::ContainerV1::ReservationAffinity]
3221
3272
  attr_accessor :reservation_affinity
3222
3273
 
3274
+ # The resource labels for the node pool to use to annotate any related Google
3275
+ # Compute Engine resources.
3276
+ # Corresponds to the JSON property `resourceLabels`
3277
+ # @return [Hash<String,String>]
3278
+ attr_accessor :resource_labels
3279
+
3223
3280
  # SandboxConfig contains configurations of the sandbox to use for the node.
3224
3281
  # Corresponds to the JSON property `sandboxConfig`
3225
3282
  # @return [Google::Apis::ContainerV1::SandboxConfig]
@@ -3292,6 +3349,7 @@ module Google
3292
3349
  @oauth_scopes = args[:oauth_scopes] if args.key?(:oauth_scopes)
3293
3350
  @preemptible = args[:preemptible] if args.key?(:preemptible)
3294
3351
  @reservation_affinity = args[:reservation_affinity] if args.key?(:reservation_affinity)
3352
+ @resource_labels = args[:resource_labels] if args.key?(:resource_labels)
3295
3353
  @sandbox_config = args[:sandbox_config] if args.key?(:sandbox_config)
3296
3354
  @service_account = args[:service_account] if args.key?(:service_account)
3297
3355
  @shielded_instance_config = args[:shielded_instance_config] if args.key?(:shielded_instance_config)
@@ -3458,6 +3516,14 @@ module Google
3458
3516
  attr_accessor :create_pod_range
3459
3517
  alias_method :create_pod_range?, :create_pod_range
3460
3518
 
3519
+ # Whether nodes have internal IP addresses only. If enable_private_nodes is not
3520
+ # specified, then the value is derived from cluster.privateClusterConfig.
3521
+ # enablePrivateNodes
3522
+ # Corresponds to the JSON property `enablePrivateNodes`
3523
+ # @return [Boolean]
3524
+ attr_accessor :enable_private_nodes
3525
+ alias_method :enable_private_nodes?, :enable_private_nodes
3526
+
3461
3527
  # Configuration of all network bandwidth tiers
3462
3528
  # Corresponds to the JSON property `networkPerformanceConfig`
3463
3529
  # @return [Google::Apis::ContainerV1::NetworkPerformanceConfig]
@@ -3490,6 +3556,7 @@ module Google
3490
3556
  # Update properties of this object
3491
3557
  def update!(**args)
3492
3558
  @create_pod_range = args[:create_pod_range] if args.key?(:create_pod_range)
3559
+ @enable_private_nodes = args[:enable_private_nodes] if args.key?(:enable_private_nodes)
3493
3560
  @network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
3494
3561
  @pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
3495
3562
  @pod_range = args[:pod_range] if args.key?(:pod_range)
@@ -3570,6 +3637,11 @@ module Google
3570
3637
  # @return [Google::Apis::ContainerV1::NodeNetworkConfig]
3571
3638
  attr_accessor :network_config
3572
3639
 
3640
+ # PlacementPolicy defines the placement policy used by the node pool.
3641
+ # Corresponds to the JSON property `placementPolicy`
3642
+ # @return [Google::Apis::ContainerV1::PlacementPolicy]
3643
+ attr_accessor :placement_policy
3644
+
3573
3645
  # [Output only] The pod CIDR block size per node in this node pool.
3574
3646
  # Corresponds to the JSON property `podIpv4CidrSize`
3575
3647
  # @return [Fixnum]
@@ -3653,6 +3725,7 @@ module Google
3653
3725
  @max_pods_constraint = args[:max_pods_constraint] if args.key?(:max_pods_constraint)
3654
3726
  @name = args[:name] if args.key?(:name)
3655
3727
  @network_config = args[:network_config] if args.key?(:network_config)
3728
+ @placement_policy = args[:placement_policy] if args.key?(:placement_policy)
3656
3729
  @pod_ipv4_cidr_size = args[:pod_ipv4_cidr_size] if args.key?(:pod_ipv4_cidr_size)
3657
3730
  @self_link = args[:self_link] if args.key?(:self_link)
3658
3731
  @status = args[:status] if args.key?(:status)
@@ -4019,6 +4092,25 @@ module Google
4019
4092
  end
4020
4093
  end
4021
4094
 
4095
+ # PlacementPolicy defines the placement policy used by the node pool.
4096
+ class PlacementPolicy
4097
+ include Google::Apis::Core::Hashable
4098
+
4099
+ # The type of placement.
4100
+ # Corresponds to the JSON property `type`
4101
+ # @return [String]
4102
+ attr_accessor :type
4103
+
4104
+ def initialize(**args)
4105
+ update!(**args)
4106
+ end
4107
+
4108
+ # Update properties of this object
4109
+ def update!(**args)
4110
+ @type = args[:type] if args.key?(:type)
4111
+ end
4112
+ end
4113
+
4022
4114
  # Configuration options for private clusters.
4023
4115
  class PrivateClusterConfig
4024
4116
  include Google::Apis::Core::Hashable
@@ -4060,6 +4152,12 @@ module Google
4060
4152
  # @return [String]
4061
4153
  attr_accessor :private_endpoint
4062
4154
 
4155
+ # Subnet to provision the master's private endpoint during cluster creation.
4156
+ # Specified in projects/*/regions/*/subnetworks/* format.
4157
+ # Corresponds to the JSON property `privateEndpointSubnetwork`
4158
+ # @return [String]
4159
+ attr_accessor :private_endpoint_subnetwork
4160
+
4063
4161
  # Output only. The external IP address of this cluster's master endpoint.
4064
4162
  # Corresponds to the JSON property `publicEndpoint`
4065
4163
  # @return [String]
@@ -4077,6 +4175,7 @@ module Google
4077
4175
  @master_ipv4_cidr_block = args[:master_ipv4_cidr_block] if args.key?(:master_ipv4_cidr_block)
4078
4176
  @peering_name = args[:peering_name] if args.key?(:peering_name)
4079
4177
  @private_endpoint = args[:private_endpoint] if args.key?(:private_endpoint)
4178
+ @private_endpoint_subnetwork = args[:private_endpoint_subnetwork] if args.key?(:private_endpoint_subnetwork)
4080
4179
  @public_endpoint = args[:public_endpoint] if args.key?(:public_endpoint)
4081
4180
  end
4082
4181
  end
@@ -4264,6 +4363,26 @@ module Google
4264
4363
  end
4265
4364
  end
4266
4365
 
4366
+ # Collection of [GCP labels](https://cloud.google.com/resource-manager/docs/
4367
+ # creating-managing-labels).
4368
+ class ResourceLabels
4369
+ include Google::Apis::Core::Hashable
4370
+
4371
+ # Map of node label keys and node label values.
4372
+ # Corresponds to the JSON property `labels`
4373
+ # @return [Hash<String,String>]
4374
+ attr_accessor :labels
4375
+
4376
+ def initialize(**args)
4377
+ update!(**args)
4378
+ end
4379
+
4380
+ # Update properties of this object
4381
+ def update!(**args)
4382
+ @labels = args[:labels] if args.key?(:labels)
4383
+ end
4384
+ end
4385
+
4267
4386
  # Contains information about amount of some resource in the cluster. For memory,
4268
4387
  # value should be in GB.
4269
4388
  class ResourceLimit
@@ -5274,7 +5393,7 @@ module Google
5274
5393
  # @return [Fixnum]
5275
5394
  attr_accessor :batch_node_count
5276
5395
 
5277
- # Percentage of the bool pool nodes to drain in a batch. The range of this field
5396
+ # Percentage of the blue pool nodes to drain in a batch. The range of this field
5278
5397
  # should be (0.0, 1.0].
5279
5398
  # Corresponds to the JSON property `batchPercentage`
5280
5399
  # @return [Float]
@@ -5674,6 +5793,12 @@ module Google
5674
5793
  # @return [String]
5675
5794
  attr_accessor :project_id
5676
5795
 
5796
+ # Collection of [GCP labels](https://cloud.google.com/resource-manager/docs/
5797
+ # creating-managing-labels).
5798
+ # Corresponds to the JSON property `resourceLabels`
5799
+ # @return [Google::Apis::ContainerV1::ResourceLabels]
5800
+ attr_accessor :resource_labels
5801
+
5677
5802
  # Collection of Compute Engine network tags that can be applied to a node's
5678
5803
  # underlying VM instance.
5679
5804
  # Corresponds to the JSON property `tags`
@@ -5755,6 +5880,7 @@ module Google
5755
5880
  @node_pool_id = args[:node_pool_id] if args.key?(:node_pool_id)
5756
5881
  @node_version = args[:node_version] if args.key?(:node_version)
5757
5882
  @project_id = args[:project_id] if args.key?(:project_id)
5883
+ @resource_labels = args[:resource_labels] if args.key?(:resource_labels)
5758
5884
  @tags = args[:tags] if args.key?(:tags)
5759
5885
  @taints = args[:taints] if args.key?(:taints)
5760
5886
  @upgrade_settings = args[:upgrade_settings] if args.key?(:upgrade_settings)
@@ -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.38.0"
19
+ GEM_VERSION = "0.40.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 = "20220923"
25
+ REVISION = "20221024"
26
26
  end
27
27
  end
28
28
  end
@@ -226,6 +226,12 @@ module Google
226
226
  include Google::Apis::Core::JsonObjectSupport
227
227
  end
228
228
 
229
+ class GatewayApiConfig
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
229
235
  class GcePersistentDiskCsiDriverConfig
230
236
  class Representation < Google::Apis::Core::JsonRepresentation; end
231
237
 
@@ -562,6 +568,12 @@ module Google
562
568
  include Google::Apis::Core::JsonObjectSupport
563
569
  end
564
570
 
571
+ class PlacementPolicy
572
+ class Representation < Google::Apis::Core::JsonRepresentation; end
573
+
574
+ include Google::Apis::Core::JsonObjectSupport
575
+ end
576
+
565
577
  class PrivateClusterConfig
566
578
  class Representation < Google::Apis::Core::JsonRepresentation; end
567
579
 
@@ -604,6 +616,12 @@ module Google
604
616
  include Google::Apis::Core::JsonObjectSupport
605
617
  end
606
618
 
619
+ class ResourceLabels
620
+ class Representation < Google::Apis::Core::JsonRepresentation; end
621
+
622
+ include Google::Apis::Core::JsonObjectSupport
623
+ end
624
+
607
625
  class ResourceLimit
608
626
  class Representation < Google::Apis::Core::JsonRepresentation; end
609
627
 
@@ -1125,6 +1143,9 @@ module Google
1125
1143
 
1126
1144
  property :desired_dns_config, as: 'desiredDnsConfig', class: Google::Apis::ContainerV1::DnsConfig, decorator: Google::Apis::ContainerV1::DnsConfig::Representation
1127
1145
 
1146
+ property :desired_enable_private_endpoint, as: 'desiredEnablePrivateEndpoint'
1147
+ property :desired_gateway_api_config, as: 'desiredGatewayApiConfig', class: Google::Apis::ContainerV1::GatewayApiConfig, decorator: Google::Apis::ContainerV1::GatewayApiConfig::Representation
1148
+
1128
1149
  property :desired_gcfs_config, as: 'desiredGcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
1129
1150
 
1130
1151
  property :desired_identity_service_config, as: 'desiredIdentityServiceConfig', class: Google::Apis::ContainerV1::IdentityServiceConfig, decorator: Google::Apis::ContainerV1::IdentityServiceConfig::Representation
@@ -1301,6 +1322,13 @@ module Google
1301
1322
  end
1302
1323
  end
1303
1324
 
1325
+ class GatewayApiConfig
1326
+ # @private
1327
+ class Representation < Google::Apis::Core::JsonRepresentation
1328
+ property :channel, as: 'channel'
1329
+ end
1330
+ end
1331
+
1304
1332
  class GcePersistentDiskCsiDriverConfig
1305
1333
  # @private
1306
1334
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1451,6 +1479,7 @@ module Google
1451
1479
  class LinuxNodeConfig
1452
1480
  # @private
1453
1481
  class Representation < Google::Apis::Core::JsonRepresentation
1482
+ property :cgroup_mode, as: 'cgroupMode'
1454
1483
  hash :sysctls, as: 'sysctls'
1455
1484
  end
1456
1485
  end
@@ -1566,6 +1595,7 @@ module Google
1566
1595
  collection :cidr_blocks, as: 'cidrBlocks', class: Google::Apis::ContainerV1::CidrBlock, decorator: Google::Apis::ContainerV1::CidrBlock::Representation
1567
1596
 
1568
1597
  property :enabled, as: 'enabled'
1598
+ property :gcp_public_cidrs_access_enabled, as: 'gcpPublicCidrsAccessEnabled'
1569
1599
  end
1570
1600
  end
1571
1601
 
@@ -1620,6 +1650,8 @@ module Google
1620
1650
 
1621
1651
  property :enable_intra_node_visibility, as: 'enableIntraNodeVisibility'
1622
1652
  property :enable_l4ilb_subsetting, as: 'enableL4ilbSubsetting'
1653
+ property :gateway_api_config, as: 'gatewayApiConfig', class: Google::Apis::ContainerV1::GatewayApiConfig, decorator: Google::Apis::ContainerV1::GatewayApiConfig::Representation
1654
+
1623
1655
  property :network, as: 'network'
1624
1656
  property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
1625
1657
  property :service_external_ips_config, as: 'serviceExternalIpsConfig', class: Google::Apis::ContainerV1::ServiceExternalIPsConfig, decorator: Google::Apis::ContainerV1::ServiceExternalIPsConfig::Representation
@@ -1690,6 +1722,7 @@ module Google
1690
1722
  property :preemptible, as: 'preemptible'
1691
1723
  property :reservation_affinity, as: 'reservationAffinity', class: Google::Apis::ContainerV1::ReservationAffinity, decorator: Google::Apis::ContainerV1::ReservationAffinity::Representation
1692
1724
 
1725
+ hash :resource_labels, as: 'resourceLabels'
1693
1726
  property :sandbox_config, as: 'sandboxConfig', class: Google::Apis::ContainerV1::SandboxConfig, decorator: Google::Apis::ContainerV1::SandboxConfig::Representation
1694
1727
 
1695
1728
  property :service_account, as: 'serviceAccount'
@@ -1745,6 +1778,7 @@ module Google
1745
1778
  # @private
1746
1779
  class Representation < Google::Apis::Core::JsonRepresentation
1747
1780
  property :create_pod_range, as: 'createPodRange'
1781
+ property :enable_private_nodes, as: 'enablePrivateNodes'
1748
1782
  property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ContainerV1::NetworkPerformanceConfig, decorator: Google::Apis::ContainerV1::NetworkPerformanceConfig::Representation
1749
1783
 
1750
1784
  property :pod_ipv4_cidr_block, as: 'podIpv4CidrBlock'
@@ -1771,6 +1805,8 @@ module Google
1771
1805
  property :name, as: 'name'
1772
1806
  property :network_config, as: 'networkConfig', class: Google::Apis::ContainerV1::NodeNetworkConfig, decorator: Google::Apis::ContainerV1::NodeNetworkConfig::Representation
1773
1807
 
1808
+ property :placement_policy, as: 'placementPolicy', class: Google::Apis::ContainerV1::PlacementPolicy, decorator: Google::Apis::ContainerV1::PlacementPolicy::Representation
1809
+
1774
1810
  property :pod_ipv4_cidr_size, as: 'podIpv4CidrSize'
1775
1811
  property :self_link, as: 'selfLink'
1776
1812
  property :status, as: 'status'
@@ -1882,6 +1918,13 @@ module Google
1882
1918
  end
1883
1919
  end
1884
1920
 
1921
+ class PlacementPolicy
1922
+ # @private
1923
+ class Representation < Google::Apis::Core::JsonRepresentation
1924
+ property :type, as: 'type'
1925
+ end
1926
+ end
1927
+
1885
1928
  class PrivateClusterConfig
1886
1929
  # @private
1887
1930
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1892,6 +1935,7 @@ module Google
1892
1935
  property :master_ipv4_cidr_block, as: 'masterIpv4CidrBlock'
1893
1936
  property :peering_name, as: 'peeringName'
1894
1937
  property :private_endpoint, as: 'privateEndpoint'
1938
+ property :private_endpoint_subnetwork, as: 'privateEndpointSubnetwork'
1895
1939
  property :public_endpoint, as: 'publicEndpoint'
1896
1940
  end
1897
1941
  end
@@ -1947,6 +1991,13 @@ module Google
1947
1991
  end
1948
1992
  end
1949
1993
 
1994
+ class ResourceLabels
1995
+ # @private
1996
+ class Representation < Google::Apis::Core::JsonRepresentation
1997
+ hash :labels, as: 'labels'
1998
+ end
1999
+ end
2000
+
1950
2001
  class ResourceLimit
1951
2002
  # @private
1952
2003
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2285,6 +2336,8 @@ module Google
2285
2336
  property :node_pool_id, as: 'nodePoolId'
2286
2337
  property :node_version, as: 'nodeVersion'
2287
2338
  property :project_id, as: 'projectId'
2339
+ property :resource_labels, as: 'resourceLabels', class: Google::Apis::ContainerV1::ResourceLabels, decorator: Google::Apis::ContainerV1::ResourceLabels::Representation
2340
+
2288
2341
  property :tags, as: 'tags', class: Google::Apis::ContainerV1::NetworkTags, decorator: Google::Apis::ContainerV1::NetworkTags::Representation
2289
2342
 
2290
2343
  property :taints, as: 'taints', class: Google::Apis::ContainerV1::NodeTaints, decorator: Google::Apis::ContainerV1::NodeTaints::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.38.0
4
+ version: 0.40.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-10-31 00:00:00.000000000 Z
11
+ date: 2022-11-14 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.38.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.40.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: []