google-apis-container_v1 0.70.0 → 0.72.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c66de375901a792f937d1f70ed88bd0e7276edb78f4543000e8dc54866498ebd
|
4
|
+
data.tar.gz: d2cdc2c146e01fb3eff0a1fefe3e99c363f80dc11e1619d7755ea1a3874e807f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c4ca7550e5b50aa03aa34447bf77f0a672f0f6449550956563ad0113dcb1a4126223ca96f43dc3e3b0f48b63e4ec57df6cd030a42c310298ad9adb79f455ac7
|
7
|
+
data.tar.gz: 838dc354fc7cd0af277148d65975f1c429a7553316b1555f1cc0fa0088fe74c2b9766e92a1de1703c2be68cf5821ae232492027c42e6a70f762843fd8d64e596
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-container_v1
|
2
2
|
|
3
|
+
### v0.72.0 (2024-05-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240422
|
6
|
+
|
7
|
+
### v0.71.0 (2024-04-28)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240409
|
10
|
+
|
3
11
|
### v0.70.0 (2024-04-14)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240327
|
@@ -284,6 +284,12 @@ module Google
|
|
284
284
|
class AdvancedMachineFeatures
|
285
285
|
include Google::Apis::Core::Hashable
|
286
286
|
|
287
|
+
# Whether or not to enable nested virtualization (defaults to false).
|
288
|
+
# Corresponds to the JSON property `enableNestedVirtualization`
|
289
|
+
# @return [Boolean]
|
290
|
+
attr_accessor :enable_nested_virtualization
|
291
|
+
alias_method :enable_nested_virtualization?, :enable_nested_virtualization
|
292
|
+
|
287
293
|
# The number of threads per physical core. To disable simultaneous
|
288
294
|
# multithreading (SMT) set this to 1. If unset, the maximum number of threads
|
289
295
|
# supported per core by the underlying processor is assumed.
|
@@ -297,6 +303,7 @@ module Google
|
|
297
303
|
|
298
304
|
# Update properties of this object
|
299
305
|
def update!(**args)
|
306
|
+
@enable_nested_virtualization = args[:enable_nested_virtualization] if args.key?(:enable_nested_virtualization)
|
300
307
|
@threads_per_core = args[:threads_per_core] if args.key?(:threads_per_core)
|
301
308
|
end
|
302
309
|
end
|
@@ -1254,6 +1261,18 @@ module Google
|
|
1254
1261
|
# @return [Google::Apis::ContainerV1::ResourceUsageExportConfig]
|
1255
1262
|
attr_accessor :resource_usage_export_config
|
1256
1263
|
|
1264
|
+
# Output only. Reserved for future use.
|
1265
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
1266
|
+
# @return [Boolean]
|
1267
|
+
attr_accessor :satisfies_pzi
|
1268
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
1269
|
+
|
1270
|
+
# Output only. Reserved for future use.
|
1271
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
1272
|
+
# @return [Boolean]
|
1273
|
+
attr_accessor :satisfies_pzs
|
1274
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
1275
|
+
|
1257
1276
|
# SecurityPostureConfig defines the flags needed to enable/disable features for
|
1258
1277
|
# the Security Posture API.
|
1259
1278
|
# Corresponds to the JSON property `securityPostureConfig`
|
@@ -1384,6 +1403,8 @@ module Google
|
|
1384
1403
|
@release_channel = args[:release_channel] if args.key?(:release_channel)
|
1385
1404
|
@resource_labels = args[:resource_labels] if args.key?(:resource_labels)
|
1386
1405
|
@resource_usage_export_config = args[:resource_usage_export_config] if args.key?(:resource_usage_export_config)
|
1406
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
1407
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
1387
1408
|
@security_posture_config = args[:security_posture_config] if args.key?(:security_posture_config)
|
1388
1409
|
@self_link = args[:self_link] if args.key?(:self_link)
|
1389
1410
|
@services_ipv4_cidr = args[:services_ipv4_cidr] if args.key?(:services_ipv4_cidr)
|
@@ -1681,6 +1702,16 @@ module Google
|
|
1681
1702
|
# @return [Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig]
|
1682
1703
|
attr_accessor :desired_network_performance_config
|
1683
1704
|
|
1705
|
+
# Node kubelet configs.
|
1706
|
+
# Corresponds to the JSON property `desiredNodeKubeletConfig`
|
1707
|
+
# @return [Google::Apis::ContainerV1::NodeKubeletConfig]
|
1708
|
+
attr_accessor :desired_node_kubelet_config
|
1709
|
+
|
1710
|
+
# Node kubelet configs.
|
1711
|
+
# Corresponds to the JSON property `desiredNodePoolAutoConfigKubeletConfig`
|
1712
|
+
# @return [Google::Apis::ContainerV1::NodeKubeletConfig]
|
1713
|
+
attr_accessor :desired_node_pool_auto_config_kubelet_config
|
1714
|
+
|
1684
1715
|
# Collection of Compute Engine network tags that can be applied to a node's
|
1685
1716
|
# underlying VM instance.
|
1686
1717
|
# Corresponds to the JSON property `desiredNodePoolAutoConfigNetworkTags`
|
@@ -1853,6 +1884,8 @@ module Google
|
|
1853
1884
|
@desired_monitoring_config = args[:desired_monitoring_config] if args.key?(:desired_monitoring_config)
|
1854
1885
|
@desired_monitoring_service = args[:desired_monitoring_service] if args.key?(:desired_monitoring_service)
|
1855
1886
|
@desired_network_performance_config = args[:desired_network_performance_config] if args.key?(:desired_network_performance_config)
|
1887
|
+
@desired_node_kubelet_config = args[:desired_node_kubelet_config] if args.key?(:desired_node_kubelet_config)
|
1888
|
+
@desired_node_pool_auto_config_kubelet_config = args[:desired_node_pool_auto_config_kubelet_config] if args.key?(:desired_node_pool_auto_config_kubelet_config)
|
1856
1889
|
@desired_node_pool_auto_config_network_tags = args[:desired_node_pool_auto_config_network_tags] if args.key?(:desired_node_pool_auto_config_network_tags)
|
1857
1890
|
@desired_node_pool_auto_config_resource_manager_tags = args[:desired_node_pool_auto_config_resource_manager_tags] if args.key?(:desired_node_pool_auto_config_resource_manager_tags)
|
1858
1891
|
@desired_node_pool_autoscaling = args[:desired_node_pool_autoscaling] if args.key?(:desired_node_pool_autoscaling)
|
@@ -3791,7 +3824,8 @@ module Google
|
|
3791
3824
|
# @return [Google::Apis::ContainerV1::GatewayApiConfig]
|
3792
3825
|
attr_accessor :gateway_api_config
|
3793
3826
|
|
3794
|
-
# Specify the details of in-transit encryption.
|
3827
|
+
# Specify the details of in-transit encryption. Now named inter-node transparent
|
3828
|
+
# encryption.
|
3795
3829
|
# Corresponds to the JSON property `inTransitEncryptionConfig`
|
3796
3830
|
# @return [String]
|
3797
3831
|
attr_accessor :in_transit_encryption_config
|
@@ -4317,6 +4351,11 @@ module Google
|
|
4317
4351
|
# @return [Google::Apis::ContainerV1::NodePoolLoggingConfig]
|
4318
4352
|
attr_accessor :logging_config
|
4319
4353
|
|
4354
|
+
# Node kubelet configs.
|
4355
|
+
# Corresponds to the JSON property `nodeKubeletConfig`
|
4356
|
+
# @return [Google::Apis::ContainerV1::NodeKubeletConfig]
|
4357
|
+
attr_accessor :node_kubelet_config
|
4358
|
+
|
4320
4359
|
def initialize(**args)
|
4321
4360
|
update!(**args)
|
4322
4361
|
end
|
@@ -4326,6 +4365,7 @@ module Google
|
|
4326
4365
|
@containerd_config = args[:containerd_config] if args.key?(:containerd_config)
|
4327
4366
|
@gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
|
4328
4367
|
@logging_config = args[:logging_config] if args.key?(:logging_config)
|
4368
|
+
@node_kubelet_config = args[:node_kubelet_config] if args.key?(:node_kubelet_config)
|
4329
4369
|
end
|
4330
4370
|
end
|
4331
4371
|
|
@@ -4747,6 +4787,11 @@ module Google
|
|
4747
4787
|
# @return [Google::Apis::ContainerV1::NetworkTags]
|
4748
4788
|
attr_accessor :network_tags
|
4749
4789
|
|
4790
|
+
# Node kubelet configs.
|
4791
|
+
# Corresponds to the JSON property `nodeKubeletConfig`
|
4792
|
+
# @return [Google::Apis::ContainerV1::NodeKubeletConfig]
|
4793
|
+
attr_accessor :node_kubelet_config
|
4794
|
+
|
4750
4795
|
# A map of resource manager tag keys and values to be attached to the nodes for
|
4751
4796
|
# managing Compute Engine firewalls using Network Firewall Policies. Tags must
|
4752
4797
|
# be according to specifications in https://cloud.google.com/vpc/docs/tags-
|
@@ -4763,6 +4808,7 @@ module Google
|
|
4763
4808
|
# Update properties of this object
|
4764
4809
|
def update!(**args)
|
4765
4810
|
@network_tags = args[:network_tags] if args.key?(:network_tags)
|
4811
|
+
@node_kubelet_config = args[:node_kubelet_config] if args.key?(:node_kubelet_config)
|
4766
4812
|
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
4767
4813
|
end
|
4768
4814
|
end
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.72.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240422"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1148,6 +1148,7 @@ module Google
|
|
1148
1148
|
class AdvancedMachineFeatures
|
1149
1149
|
# @private
|
1150
1150
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1151
|
+
property :enable_nested_virtualization, as: 'enableNestedVirtualization'
|
1151
1152
|
property :threads_per_core, :numeric_string => true, as: 'threadsPerCore'
|
1152
1153
|
end
|
1153
1154
|
end
|
@@ -1396,6 +1397,8 @@ module Google
|
|
1396
1397
|
hash :resource_labels, as: 'resourceLabels'
|
1397
1398
|
property :resource_usage_export_config, as: 'resourceUsageExportConfig', class: Google::Apis::ContainerV1::ResourceUsageExportConfig, decorator: Google::Apis::ContainerV1::ResourceUsageExportConfig::Representation
|
1398
1399
|
|
1400
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
1401
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
1399
1402
|
property :security_posture_config, as: 'securityPostureConfig', class: Google::Apis::ContainerV1::SecurityPostureConfig, decorator: Google::Apis::ContainerV1::SecurityPostureConfig::Representation
|
1400
1403
|
|
1401
1404
|
property :self_link, as: 'selfLink'
|
@@ -1494,6 +1497,10 @@ module Google
|
|
1494
1497
|
property :desired_monitoring_service, as: 'desiredMonitoringService'
|
1495
1498
|
property :desired_network_performance_config, as: 'desiredNetworkPerformanceConfig', class: Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig, decorator: Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig::Representation
|
1496
1499
|
|
1500
|
+
property :desired_node_kubelet_config, as: 'desiredNodeKubeletConfig', class: Google::Apis::ContainerV1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1::NodeKubeletConfig::Representation
|
1501
|
+
|
1502
|
+
property :desired_node_pool_auto_config_kubelet_config, as: 'desiredNodePoolAutoConfigKubeletConfig', class: Google::Apis::ContainerV1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1::NodeKubeletConfig::Representation
|
1503
|
+
|
1497
1504
|
property :desired_node_pool_auto_config_network_tags, as: 'desiredNodePoolAutoConfigNetworkTags', class: Google::Apis::ContainerV1::NetworkTags, decorator: Google::Apis::ContainerV1::NetworkTags::Representation
|
1498
1505
|
|
1499
1506
|
property :desired_node_pool_auto_config_resource_manager_tags, as: 'desiredNodePoolAutoConfigResourceManagerTags', class: Google::Apis::ContainerV1::ResourceManagerTags, decorator: Google::Apis::ContainerV1::ResourceManagerTags::Representation
|
@@ -2216,6 +2223,8 @@ module Google
|
|
2216
2223
|
|
2217
2224
|
property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1::NodePoolLoggingConfig::Representation
|
2218
2225
|
|
2226
|
+
property :node_kubelet_config, as: 'nodeKubeletConfig', class: Google::Apis::ContainerV1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1::NodeKubeletConfig::Representation
|
2227
|
+
|
2219
2228
|
end
|
2220
2229
|
end
|
2221
2230
|
|
@@ -2309,6 +2318,8 @@ module Google
|
|
2309
2318
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2310
2319
|
property :network_tags, as: 'networkTags', class: Google::Apis::ContainerV1::NetworkTags, decorator: Google::Apis::ContainerV1::NetworkTags::Representation
|
2311
2320
|
|
2321
|
+
property :node_kubelet_config, as: 'nodeKubeletConfig', class: Google::Apis::ContainerV1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1::NodeKubeletConfig::Representation
|
2322
|
+
|
2312
2323
|
property :resource_manager_tags, as: 'resourceManagerTags', class: Google::Apis::ContainerV1::ResourceManagerTags, decorator: Google::Apis::ContainerV1::ResourceManagerTags::Representation
|
2313
2324
|
|
2314
2325
|
end
|
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.
|
4
|
+
version: 0.72.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: 2024-
|
11
|
+
date: 2024-05-12 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.72.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: []
|