google-apis-container_v1beta1 0.53.0 → 0.55.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: 28f5fb13517700bb00d0e6a168f2e43d413976000c38508ec15792b61c7c84a9
4
- data.tar.gz: eab2ebc9bdfdc02c65e9f4b2299407a57f5d2e5a096cc29418ee7f6ec3c8c8a8
3
+ metadata.gz: b6e5e9d70568a6270b4949f3f7578eb62ebf055540c7df1802cb27873eb857f2
4
+ data.tar.gz: 31336e0cb7652a222faa6e303a244450081a3147ad97cba71200e1353d0628f4
5
5
  SHA512:
6
- metadata.gz: 405627a49ff795e79d8f937f185193124f21f26020781172cd752b64584a143f5a4228d4fe4aa7905fa4d687aef73cf2f777f4f959588ce228abff3f19e7198a
7
- data.tar.gz: 41c628d65cf8b35f892a2ac16d8b669d5358e112932f64ede63a60d6588b2c20949aa23f9b62426567760b07c4dc84afe232c67df5b9246b35cd1cb76329b6a5
6
+ metadata.gz: df1dcd6de9a644428fa62dcd74cf5aabeaa0336ce0c2142ac44cd5b805c731eb0ebb8e8a62e49e09ae9ce0a6594dfbdbac4791515963faa96db7494315053671
7
+ data.tar.gz: d8d7faff0508d218679bd44f3c600e7c77ca214addc672f6c06e6d6b388474b8649740d3cb3f3bc6ff3b7c6004cb70cf64bc0ebf864455914193331f5100b29f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.55.0 (2023-07-16)
4
+
5
+ * Regenerated from discovery document revision 20230629
6
+
7
+ ### v0.54.0 (2023-07-09)
8
+
9
+ * Regenerated from discovery document revision 20230626
10
+
3
11
  ### v0.53.0 (2023-07-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20230620
@@ -76,6 +76,65 @@ module Google
76
76
  end
77
77
  end
78
78
 
79
+ # AdditionalNodeNetworkConfig is the configuration for additional node networks
80
+ # within the NodeNetworkConfig message
81
+ class AdditionalNodeNetworkConfig
82
+ include Google::Apis::Core::Hashable
83
+
84
+ # Name of the VPC where the additional interface belongs
85
+ # Corresponds to the JSON property `network`
86
+ # @return [String]
87
+ attr_accessor :network
88
+
89
+ # Name of the subnetwork where the additional interface belongs
90
+ # Corresponds to the JSON property `subnetwork`
91
+ # @return [String]
92
+ attr_accessor :subnetwork
93
+
94
+ def initialize(**args)
95
+ update!(**args)
96
+ end
97
+
98
+ # Update properties of this object
99
+ def update!(**args)
100
+ @network = args[:network] if args.key?(:network)
101
+ @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
102
+ end
103
+ end
104
+
105
+ # AdditionalPodNetworkConfig is the configuration for additional pod networks
106
+ # within the NodeNetworkConfig message
107
+ class AdditionalPodNetworkConfig
108
+ include Google::Apis::Core::Hashable
109
+
110
+ # Constraints applied to pods.
111
+ # Corresponds to the JSON property `maxPodsPerNode`
112
+ # @return [Google::Apis::ContainerV1beta1::MaxPodsConstraint]
113
+ attr_accessor :max_pods_per_node
114
+
115
+ # The name of the secondary range on the subnet which provides IP address for
116
+ # this pod range
117
+ # Corresponds to the JSON property `secondaryPodRange`
118
+ # @return [String]
119
+ attr_accessor :secondary_pod_range
120
+
121
+ # Name of the subnetwork where the additional pod network belongs
122
+ # Corresponds to the JSON property `subnetwork`
123
+ # @return [String]
124
+ attr_accessor :subnetwork
125
+
126
+ def initialize(**args)
127
+ update!(**args)
128
+ end
129
+
130
+ # Update properties of this object
131
+ def update!(**args)
132
+ @max_pods_per_node = args[:max_pods_per_node] if args.key?(:max_pods_per_node)
133
+ @secondary_pod_range = args[:secondary_pod_range] if args.key?(:secondary_pod_range)
134
+ @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
135
+ end
136
+ end
137
+
79
138
  # AdditionalPodRangesConfig is the configuration for additional pod secondary
80
139
  # ranges supporting the ClusterUpdate message.
81
140
  class AdditionalPodRangesConfig
@@ -199,6 +258,33 @@ module Google
199
258
  end
200
259
  end
201
260
 
261
+ # AdvancedDatapathObservabilityConfig specifies configuration of observability
262
+ # features of advanced datapath.
263
+ class AdvancedDatapathObservabilityConfig
264
+ include Google::Apis::Core::Hashable
265
+
266
+ # Expose flow metrics on nodes
267
+ # Corresponds to the JSON property `enableMetrics`
268
+ # @return [Boolean]
269
+ attr_accessor :enable_metrics
270
+ alias_method :enable_metrics?, :enable_metrics
271
+
272
+ # Method used to make Relay available
273
+ # Corresponds to the JSON property `relayMode`
274
+ # @return [String]
275
+ attr_accessor :relay_mode
276
+
277
+ def initialize(**args)
278
+ update!(**args)
279
+ end
280
+
281
+ # Update properties of this object
282
+ def update!(**args)
283
+ @enable_metrics = args[:enable_metrics] if args.key?(:enable_metrics)
284
+ @relay_mode = args[:relay_mode] if args.key?(:relay_mode)
285
+ end
286
+ end
287
+
202
288
  # Specifies options for controlling advanced machine features.
203
289
  class AdvancedMachineFeatures
204
290
  include Google::Apis::Core::Hashable
@@ -1546,6 +1632,12 @@ module Google
1546
1632
  # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
1547
1633
  attr_accessor :desired_gcfs_config
1548
1634
 
1635
+ # HostMaintenancePolicy contains the maintenance policy for the hosts on which
1636
+ # the GKE VMs run on.
1637
+ # Corresponds to the JSON property `desiredHostMaintenancePolicy`
1638
+ # @return [Google::Apis::ContainerV1beta1::HostMaintenancePolicy]
1639
+ attr_accessor :desired_host_maintenance_policy
1640
+
1549
1641
  # IdentityServiceConfig is configuration for Identity Service which allows
1550
1642
  # customers to use external identity providers with the K8S API
1551
1643
  # Corresponds to the JSON property `desiredIdentityServiceConfig`
@@ -1817,6 +1909,7 @@ module Google
1817
1909
  @desired_fleet = args[:desired_fleet] if args.key?(:desired_fleet)
1818
1910
  @desired_gateway_api_config = args[:desired_gateway_api_config] if args.key?(:desired_gateway_api_config)
1819
1911
  @desired_gcfs_config = args[:desired_gcfs_config] if args.key?(:desired_gcfs_config)
1912
+ @desired_host_maintenance_policy = args[:desired_host_maintenance_policy] if args.key?(:desired_host_maintenance_policy)
1820
1913
  @desired_identity_service_config = args[:desired_identity_service_config] if args.key?(:desired_identity_service_config)
1821
1914
  @desired_image_type = args[:desired_image_type] if args.key?(:desired_image_type)
1822
1915
  @desired_intra_node_visibility_config = args[:desired_intra_node_visibility_config] if args.key?(:desired_intra_node_visibility_config)
@@ -2688,6 +2781,26 @@ module Google
2688
2781
  end
2689
2782
  end
2690
2783
 
2784
+ # HostMaintenancePolicy contains the maintenance policy for the hosts on which
2785
+ # the GKE VMs run on.
2786
+ class HostMaintenancePolicy
2787
+ include Google::Apis::Core::Hashable
2788
+
2789
+ # Specifies the frequency of planned maintenance events.
2790
+ # Corresponds to the JSON property `maintenanceInterval`
2791
+ # @return [String]
2792
+ attr_accessor :maintenance_interval
2793
+
2794
+ def initialize(**args)
2795
+ update!(**args)
2796
+ end
2797
+
2798
+ # Update properties of this object
2799
+ def update!(**args)
2800
+ @maintenance_interval = args[:maintenance_interval] if args.key?(:maintenance_interval)
2801
+ end
2802
+ end
2803
+
2691
2804
  # RFC-2616: cache control support
2692
2805
  class HttpCacheControlResponseHeader
2693
2806
  include Google::Apis::Core::Hashable
@@ -2819,7 +2932,7 @@ module Google
2819
2932
  alias_method :create_subnetwork?, :create_subnetwork
2820
2933
 
2821
2934
  # Output only. [Output only] The utilization of the cluster default IPv4 range
2822
- # for pod. The ratio is Usage/[Total number of IPs in the secondary range],
2935
+ # for the pod. The ratio is Usage/[Total number of IPs in the secondary range],
2823
2936
  # Usage=numNodes*numZones*podIPsPerNode.
2824
2937
  # Corresponds to the JSON property `defaultPodIpv4RangeUtilization`
2825
2938
  # @return [Float]
@@ -3766,6 +3879,12 @@ module Google
3766
3879
  class MonitoringConfig
3767
3880
  include Google::Apis::Core::Hashable
3768
3881
 
3882
+ # AdvancedDatapathObservabilityConfig specifies configuration of observability
3883
+ # features of advanced datapath.
3884
+ # Corresponds to the JSON property `advancedDatapathObservabilityConfig`
3885
+ # @return [Google::Apis::ContainerV1beta1::AdvancedDatapathObservabilityConfig]
3886
+ attr_accessor :advanced_datapath_observability_config
3887
+
3769
3888
  # MonitoringComponentConfig is cluster monitoring component configuration.
3770
3889
  # Corresponds to the JSON property `componentConfig`
3771
3890
  # @return [Google::Apis::ContainerV1beta1::MonitoringComponentConfig]
@@ -3783,6 +3902,7 @@ module Google
3783
3902
 
3784
3903
  # Update properties of this object
3785
3904
  def update!(**args)
3905
+ @advanced_datapath_observability_config = args[:advanced_datapath_observability_config] if args.key?(:advanced_datapath_observability_config)
3786
3906
  @component_config = args[:component_config] if args.key?(:component_config)
3787
3907
  @managed_prometheus_config = args[:managed_prometheus_config] if args.key?(:managed_prometheus_config)
3788
3908
  end
@@ -3828,6 +3948,12 @@ module Google
3828
3948
  attr_accessor :enable_l4ilb_subsetting
3829
3949
  alias_method :enable_l4ilb_subsetting?, :enable_l4ilb_subsetting
3830
3950
 
3951
+ # Whether multi-networking is enabled for this cluster.
3952
+ # Corresponds to the JSON property `enableMultiNetworking`
3953
+ # @return [Boolean]
3954
+ attr_accessor :enable_multi_networking
3955
+ alias_method :enable_multi_networking?, :enable_multi_networking
3956
+
3831
3957
  # GatewayAPIConfig contains the desired config of Gateway API on this cluster.
3832
3958
  # Corresponds to the JSON property `gatewayApiConfig`
3833
3959
  # @return [Google::Apis::ContainerV1beta1::GatewayApiConfig]
@@ -3875,6 +4001,7 @@ module Google
3875
4001
  @enable_fqdn_network_policy = args[:enable_fqdn_network_policy] if args.key?(:enable_fqdn_network_policy)
3876
4002
  @enable_intra_node_visibility = args[:enable_intra_node_visibility] if args.key?(:enable_intra_node_visibility)
3877
4003
  @enable_l4ilb_subsetting = args[:enable_l4ilb_subsetting] if args.key?(:enable_l4ilb_subsetting)
4004
+ @enable_multi_networking = args[:enable_multi_networking] if args.key?(:enable_multi_networking)
3878
4005
  @gateway_api_config = args[:gateway_api_config] if args.key?(:gateway_api_config)
3879
4006
  @network = args[:network] if args.key?(:network)
3880
4007
  @network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
@@ -4084,6 +4211,12 @@ module Google
4084
4211
  # @return [Google::Apis::ContainerV1beta1::VirtualNic]
4085
4212
  attr_accessor :gvnic
4086
4213
 
4214
+ # HostMaintenancePolicy contains the maintenance policy for the hosts on which
4215
+ # the GKE VMs run on.
4216
+ # Corresponds to the JSON property `hostMaintenancePolicy`
4217
+ # @return [Google::Apis::ContainerV1beta1::HostMaintenancePolicy]
4218
+ attr_accessor :host_maintenance_policy
4219
+
4087
4220
  # The image type to use for this node. Note that for a given image type, the
4088
4221
  # latest version of it will be used. Please see https://cloud.google.com/
4089
4222
  # kubernetes-engine/docs/concepts/node-images for available image types.
@@ -4282,6 +4415,7 @@ module Google
4282
4415
  @fast_socket = args[:fast_socket] if args.key?(:fast_socket)
4283
4416
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
4284
4417
  @gvnic = args[:gvnic] if args.key?(:gvnic)
4418
+ @host_maintenance_policy = args[:host_maintenance_policy] if args.key?(:host_maintenance_policy)
4285
4419
  @image_type = args[:image_type] if args.key?(:image_type)
4286
4420
  @kubelet_config = args[:kubelet_config] if args.key?(:kubelet_config)
4287
4421
  @labels = args[:labels] if args.key?(:labels)
@@ -4318,6 +4452,12 @@ module Google
4318
4452
  # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
4319
4453
  attr_accessor :gcfs_config
4320
4454
 
4455
+ # HostMaintenancePolicy contains the maintenance policy for the hosts on which
4456
+ # the GKE VMs run on.
4457
+ # Corresponds to the JSON property `hostMaintenancePolicy`
4458
+ # @return [Google::Apis::ContainerV1beta1::HostMaintenancePolicy]
4459
+ attr_accessor :host_maintenance_policy
4460
+
4321
4461
  # NodePoolLoggingConfig specifies logging configuration for nodepools.
4322
4462
  # Corresponds to the JSON property `loggingConfig`
4323
4463
  # @return [Google::Apis::ContainerV1beta1::NodePoolLoggingConfig]
@@ -4330,6 +4470,7 @@ module Google
4330
4470
  # Update properties of this object
4331
4471
  def update!(**args)
4332
4472
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
4473
+ @host_maintenance_policy = args[:host_maintenance_policy] if args.key?(:host_maintenance_policy)
4333
4474
  @logging_config = args[:logging_config] if args.key?(:logging_config)
4334
4475
  end
4335
4476
  end
@@ -4455,6 +4596,18 @@ module Google
4455
4596
  class NodeNetworkConfig
4456
4597
  include Google::Apis::Core::Hashable
4457
4598
 
4599
+ # We specify the additional node networks for this node pool using this list.
4600
+ # Each node network corresponds to an additional interface
4601
+ # Corresponds to the JSON property `additionalNodeNetworkConfigs`
4602
+ # @return [Array<Google::Apis::ContainerV1beta1::AdditionalNodeNetworkConfig>]
4603
+ attr_accessor :additional_node_network_configs
4604
+
4605
+ # We specify the additional pod networks for this node pool using this list.
4606
+ # Each pod network corresponds to an additional alias IP range for the node
4607
+ # Corresponds to the JSON property `additionalPodNetworkConfigs`
4608
+ # @return [Array<Google::Apis::ContainerV1beta1::AdditionalPodNetworkConfig>]
4609
+ attr_accessor :additional_pod_network_configs
4610
+
4458
4611
  # Input only. Whether to create a new range for pod IPs in this node pool.
4459
4612
  # Defaults are provided for `pod_range` and `pod_ipv4_cidr_block` if they are
4460
4613
  # not specified. If neither `create_pod_range` or `pod_range` are specified, the
@@ -4495,7 +4648,7 @@ module Google
4495
4648
  # @return [String]
4496
4649
  attr_accessor :pod_ipv4_cidr_block
4497
4650
 
4498
- # Output only. [Output only] The utilization of the IPv4 range for pod. The
4651
+ # Output only. [Output only] The utilization of the IPv4 range for the pod. The
4499
4652
  # ratio is Usage/[Total number of IPs in the secondary range], Usage=numNodes*
4500
4653
  # numZones*podIPsPerNode.
4501
4654
  # Corresponds to the JSON property `podIpv4RangeUtilization`
@@ -4517,6 +4670,8 @@ module Google
4517
4670
 
4518
4671
  # Update properties of this object
4519
4672
  def update!(**args)
4673
+ @additional_node_network_configs = args[:additional_node_network_configs] if args.key?(:additional_node_network_configs)
4674
+ @additional_pod_network_configs = args[:additional_pod_network_configs] if args.key?(:additional_pod_network_configs)
4520
4675
  @create_pod_range = args[:create_pod_range] if args.key?(:create_pod_range)
4521
4676
  @enable_private_nodes = args[:enable_private_nodes] if args.key?(:enable_private_nodes)
4522
4677
  @network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
@@ -5084,6 +5239,13 @@ module Google
5084
5239
  class PlacementPolicy
5085
5240
  include Google::Apis::Core::Hashable
5086
5241
 
5242
+ # If set, refers to the name of a custom resource policy supplied by the user.
5243
+ # The resource policy must be in the same project and region as the node pool.
5244
+ # If not found, InvalidArgument error is returned.
5245
+ # Corresponds to the JSON property `policyName`
5246
+ # @return [String]
5247
+ attr_accessor :policy_name
5248
+
5087
5249
  # TPU placement topology for pod slice node pool. https://cloud.google.com/tpu/
5088
5250
  # docs/types-topologies#tpu_topologies
5089
5251
  # Corresponds to the JSON property `tpuTopology`
@@ -5101,6 +5263,7 @@ module Google
5101
5263
 
5102
5264
  # Update properties of this object
5103
5265
  def update!(**args)
5266
+ @policy_name = args[:policy_name] if args.key?(:policy_name)
5104
5267
  @tpu_topology = args[:tpu_topology] if args.key?(:tpu_topology)
5105
5268
  @type = args[:type] if args.key?(:type)
5106
5269
  end
@@ -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.53.0"
19
+ GEM_VERSION = "0.55.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230620"
25
+ REVISION = "20230629"
26
26
  end
27
27
  end
28
28
  end
@@ -28,6 +28,18 @@ module Google
28
28
  include Google::Apis::Core::JsonObjectSupport
29
29
  end
30
30
 
31
+ class AdditionalNodeNetworkConfig
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
37
+ class AdditionalPodNetworkConfig
38
+ class Representation < Google::Apis::Core::JsonRepresentation; end
39
+
40
+ include Google::Apis::Core::JsonObjectSupport
41
+ end
42
+
31
43
  class AdditionalPodRangesConfig
32
44
  class Representation < Google::Apis::Core::JsonRepresentation; end
33
45
 
@@ -40,6 +52,12 @@ module Google
40
52
  include Google::Apis::Core::JsonObjectSupport
41
53
  end
42
54
 
55
+ class AdvancedDatapathObservabilityConfig
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
43
61
  class AdvancedMachineFeatures
44
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
45
63
 
@@ -358,6 +376,12 @@ module Google
358
376
  include Google::Apis::Core::JsonObjectSupport
359
377
  end
360
378
 
379
+ class HostMaintenancePolicy
380
+ class Representation < Google::Apis::Core::JsonRepresentation; end
381
+
382
+ include Google::Apis::Core::JsonObjectSupport
383
+ end
384
+
361
385
  class HttpCacheControlResponseHeader
362
386
  class Representation < Google::Apis::Core::JsonRepresentation; end
363
387
 
@@ -1086,6 +1110,24 @@ module Google
1086
1110
  end
1087
1111
  end
1088
1112
 
1113
+ class AdditionalNodeNetworkConfig
1114
+ # @private
1115
+ class Representation < Google::Apis::Core::JsonRepresentation
1116
+ property :network, as: 'network'
1117
+ property :subnetwork, as: 'subnetwork'
1118
+ end
1119
+ end
1120
+
1121
+ class AdditionalPodNetworkConfig
1122
+ # @private
1123
+ class Representation < Google::Apis::Core::JsonRepresentation
1124
+ property :max_pods_per_node, as: 'maxPodsPerNode', class: Google::Apis::ContainerV1beta1::MaxPodsConstraint, decorator: Google::Apis::ContainerV1beta1::MaxPodsConstraint::Representation
1125
+
1126
+ property :secondary_pod_range, as: 'secondaryPodRange'
1127
+ property :subnetwork, as: 'subnetwork'
1128
+ end
1129
+ end
1130
+
1089
1131
  class AdditionalPodRangesConfig
1090
1132
  # @private
1091
1133
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1127,6 +1169,14 @@ module Google
1127
1169
  end
1128
1170
  end
1129
1171
 
1172
+ class AdvancedDatapathObservabilityConfig
1173
+ # @private
1174
+ class Representation < Google::Apis::Core::JsonRepresentation
1175
+ property :enable_metrics, as: 'enableMetrics'
1176
+ property :relay_mode, as: 'relayMode'
1177
+ end
1178
+ end
1179
+
1130
1180
  class AdvancedMachineFeatures
1131
1181
  # @private
1132
1182
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1468,6 +1518,8 @@ module Google
1468
1518
 
1469
1519
  property :desired_gcfs_config, as: 'desiredGcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
1470
1520
 
1521
+ property :desired_host_maintenance_policy, as: 'desiredHostMaintenancePolicy', class: Google::Apis::ContainerV1beta1::HostMaintenancePolicy, decorator: Google::Apis::ContainerV1beta1::HostMaintenancePolicy::Representation
1522
+
1471
1523
  property :desired_identity_service_config, as: 'desiredIdentityServiceConfig', class: Google::Apis::ContainerV1beta1::IdentityServiceConfig, decorator: Google::Apis::ContainerV1beta1::IdentityServiceConfig::Representation
1472
1524
 
1473
1525
  property :desired_image_type, as: 'desiredImageType'
@@ -1786,6 +1838,13 @@ module Google
1786
1838
  end
1787
1839
  end
1788
1840
 
1841
+ class HostMaintenancePolicy
1842
+ # @private
1843
+ class Representation < Google::Apis::Core::JsonRepresentation
1844
+ property :maintenance_interval, as: 'maintenanceInterval'
1845
+ end
1846
+ end
1847
+
1789
1848
  class HttpCacheControlResponseHeader
1790
1849
  # @private
1791
1850
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2091,6 +2150,8 @@ module Google
2091
2150
  class MonitoringConfig
2092
2151
  # @private
2093
2152
  class Representation < Google::Apis::Core::JsonRepresentation
2153
+ property :advanced_datapath_observability_config, as: 'advancedDatapathObservabilityConfig', class: Google::Apis::ContainerV1beta1::AdvancedDatapathObservabilityConfig, decorator: Google::Apis::ContainerV1beta1::AdvancedDatapathObservabilityConfig::Representation
2154
+
2094
2155
  property :component_config, as: 'componentConfig', class: Google::Apis::ContainerV1beta1::MonitoringComponentConfig, decorator: Google::Apis::ContainerV1beta1::MonitoringComponentConfig::Representation
2095
2156
 
2096
2157
  property :managed_prometheus_config, as: 'managedPrometheusConfig', class: Google::Apis::ContainerV1beta1::ManagedPrometheusConfig, decorator: Google::Apis::ContainerV1beta1::ManagedPrometheusConfig::Representation
@@ -2109,6 +2170,7 @@ module Google
2109
2170
  property :enable_fqdn_network_policy, as: 'enableFqdnNetworkPolicy'
2110
2171
  property :enable_intra_node_visibility, as: 'enableIntraNodeVisibility'
2111
2172
  property :enable_l4ilb_subsetting, as: 'enableL4ilbSubsetting'
2173
+ property :enable_multi_networking, as: 'enableMultiNetworking'
2112
2174
  property :gateway_api_config, as: 'gatewayApiConfig', class: Google::Apis::ContainerV1beta1::GatewayApiConfig, decorator: Google::Apis::ContainerV1beta1::GatewayApiConfig::Representation
2113
2175
 
2114
2176
  property :network, as: 'network'
@@ -2182,6 +2244,8 @@ module Google
2182
2244
 
2183
2245
  property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1beta1::VirtualNic, decorator: Google::Apis::ContainerV1beta1::VirtualNic::Representation
2184
2246
 
2247
+ property :host_maintenance_policy, as: 'hostMaintenancePolicy', class: Google::Apis::ContainerV1beta1::HostMaintenancePolicy, decorator: Google::Apis::ContainerV1beta1::HostMaintenancePolicy::Representation
2248
+
2185
2249
  property :image_type, as: 'imageType'
2186
2250
  property :kubelet_config, as: 'kubeletConfig', class: Google::Apis::ContainerV1beta1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1beta1::NodeKubeletConfig::Representation
2187
2251
 
@@ -2225,6 +2289,8 @@ module Google
2225
2289
  class Representation < Google::Apis::Core::JsonRepresentation
2226
2290
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
2227
2291
 
2292
+ property :host_maintenance_policy, as: 'hostMaintenancePolicy', class: Google::Apis::ContainerV1beta1::HostMaintenancePolicy, decorator: Google::Apis::ContainerV1beta1::HostMaintenancePolicy::Representation
2293
+
2228
2294
  property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1beta1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1beta1::NodePoolLoggingConfig::Representation
2229
2295
 
2230
2296
  end
@@ -2261,6 +2327,10 @@ module Google
2261
2327
  class NodeNetworkConfig
2262
2328
  # @private
2263
2329
  class Representation < Google::Apis::Core::JsonRepresentation
2330
+ collection :additional_node_network_configs, as: 'additionalNodeNetworkConfigs', class: Google::Apis::ContainerV1beta1::AdditionalNodeNetworkConfig, decorator: Google::Apis::ContainerV1beta1::AdditionalNodeNetworkConfig::Representation
2331
+
2332
+ collection :additional_pod_network_configs, as: 'additionalPodNetworkConfigs', class: Google::Apis::ContainerV1beta1::AdditionalPodNetworkConfig, decorator: Google::Apis::ContainerV1beta1::AdditionalPodNetworkConfig::Representation
2333
+
2264
2334
  property :create_pod_range, as: 'createPodRange'
2265
2335
  property :enable_private_nodes, as: 'enablePrivateNodes'
2266
2336
  property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ContainerV1beta1::NetworkPerformanceConfig, decorator: Google::Apis::ContainerV1beta1::NetworkPerformanceConfig::Representation
@@ -2411,6 +2481,7 @@ module Google
2411
2481
  class PlacementPolicy
2412
2482
  # @private
2413
2483
  class Representation < Google::Apis::Core::JsonRepresentation
2484
+ property :policy_name, as: 'policyName'
2414
2485
  property :tpu_topology, as: 'tpuTopology'
2415
2486
  property :type, as: 'type'
2416
2487
  end
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.53.0
4
+ version: 0.55.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-07-02 00:00:00.000000000 Z
11
+ date: 2023-07-16 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.53.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.55.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: []