google-apis-container_v1beta1 0.25.0 → 0.26.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: f53ea417f37754fe12154a2b699c9b69aec81103cf802baea5b67bd1212f2468
4
- data.tar.gz: 11111d82e754af3ba996cbe426dd9392c519b65bf1ea513f66d00b1a54b89556
3
+ metadata.gz: d283d4957f776f69a5c7ce3d920e432b2116ea6b32d472d3d142b51379582aa3
4
+ data.tar.gz: 559fc4afaede657a42b06d465c2d575f1a62b6450ca9e81925842b954cca3403
5
5
  SHA512:
6
- metadata.gz: e7ecb96da9a69650eefb1a8930380d810955d7c15762bd2c40c37da27ed1b2fd4f430f56d4ee1fce0bc6f24f127cb3741d22ce0a6a50a3d946e18cf47691a768
7
- data.tar.gz: 3191564ce53239d489db886d20b40a2345ed7a95d1a89d45ee6846db864c4fde7b8490adbbe7e71191d2796f9c19ffe2fb79adca56751f3d9184d4b075136758
6
+ metadata.gz: 6f996452217a9a3ce69ae0a53b5dffa6c65bb0f785391bb6d3ce6430d22717b06a3aaefbfbdffa4d1efc0620d6443b63fec6c2ff16ce40205cd4bd320984d860
7
+ data.tar.gz: 0be44934ccc3625b874f480bf1e72c2f1c4297ae6a07d4ab867cbd78b9266a94de40a3de5d1b33e59e4efb0b32d4305be13fadb9eab0d53bd76fece75a21066c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.26.0 (2022-03-03)
4
+
5
+ * Regenerated from discovery document revision 20220215
6
+
3
7
  ### v0.25.0 (2022-02-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20220114
@@ -282,13 +282,14 @@ module Google
282
282
  # @return [Google::Apis::ContainerV1beta1::NodeManagement]
283
283
  attr_accessor :management
284
284
 
285
- # Minimum CPU platform to be used by this instance. The instance may be
286
- # scheduled on the specified or newer CPU platform. Applicable values are the
287
- # friendly names of CPU platforms, such as `minCpuPlatform: "Intel Haswell"` or `
288
- # minCpuPlatform: "Intel Sandy Bridge"`. For more information, read [how to
289
- # specify min CPU platform](https://cloud.google.com/compute/docs/instances/
290
- # specify-min-cpu-platform) To unset the min cpu platform field pass "automatic"
291
- # as field value.
285
+ # Deprecated. Minimum CPU platform to be used for NAP created node pools. The
286
+ # instance may be scheduled on the specified or newer CPU platform. Applicable
287
+ # values are the friendly names of CPU platforms, such as minCpuPlatform: Intel
288
+ # Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how
289
+ # to specify min CPU platform](https://cloud.google.com/compute/docs/instances/
290
+ # specify-min-cpu-platform) This field is deprecated, min_cpu_platform should be
291
+ # specified using cloud.google.com/requested-min-cpu-platform label selector on
292
+ # the pod. To unset the min cpu platform field pass "automatic" as field value.
292
293
  # Corresponds to the JSON property `minCpuPlatform`
293
294
  # @return [String]
294
295
  attr_accessor :min_cpu_platform
@@ -834,6 +835,12 @@ module Google
834
835
  # @return [Fixnum]
835
836
  attr_accessor :node_ipv4_cidr_size
836
837
 
838
+ # node pool configs that apply to all auto-provisioned node pools in autopilot
839
+ # clusters and node auto-provisioning enabled clusters
840
+ # Corresponds to the JSON property `nodePoolAutoConfig`
841
+ # @return [Google::Apis::ContainerV1beta1::NodePoolAutoConfig]
842
+ attr_accessor :node_pool_auto_config
843
+
837
844
  # Subset of Nodepool message that has defaults.
838
845
  # Corresponds to the JSON property `nodePoolDefaults`
839
846
  # @return [Google::Apis::ContainerV1beta1::NodePoolDefaults]
@@ -943,6 +950,11 @@ module Google
943
950
  # @return [Google::Apis::ContainerV1beta1::VerticalPodAutoscaling]
944
951
  attr_accessor :vertical_pod_autoscaling
945
952
 
953
+ # Configuration for direct-path (via ALTS) with workload identity.
954
+ # Corresponds to the JSON property `workloadAltsConfig`
955
+ # @return [Google::Apis::ContainerV1beta1::WorkloadAltsConfig]
956
+ attr_accessor :workload_alts_config
957
+
946
958
  # Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
947
959
  # Corresponds to the JSON property `workloadCertificates`
948
960
  # @return [Google::Apis::ContainerV1beta1::WorkloadCertificates]
@@ -1012,6 +1024,7 @@ module Google
1012
1024
  @network_policy = args[:network_policy] if args.key?(:network_policy)
1013
1025
  @node_config = args[:node_config] if args.key?(:node_config)
1014
1026
  @node_ipv4_cidr_size = args[:node_ipv4_cidr_size] if args.key?(:node_ipv4_cidr_size)
1027
+ @node_pool_auto_config = args[:node_pool_auto_config] if args.key?(:node_pool_auto_config)
1015
1028
  @node_pool_defaults = args[:node_pool_defaults] if args.key?(:node_pool_defaults)
1016
1029
  @node_pools = args[:node_pools] if args.key?(:node_pools)
1017
1030
  @notification_config = args[:notification_config] if args.key?(:notification_config)
@@ -1030,6 +1043,7 @@ module Google
1030
1043
  @tpu_config = args[:tpu_config] if args.key?(:tpu_config)
1031
1044
  @tpu_ipv4_cidr_block = args[:tpu_ipv4_cidr_block] if args.key?(:tpu_ipv4_cidr_block)
1032
1045
  @vertical_pod_autoscaling = args[:vertical_pod_autoscaling] if args.key?(:vertical_pod_autoscaling)
1046
+ @workload_alts_config = args[:workload_alts_config] if args.key?(:workload_alts_config)
1033
1047
  @workload_certificates = args[:workload_certificates] if args.key?(:workload_certificates)
1034
1048
  @workload_identity_config = args[:workload_identity_config] if args.key?(:workload_identity_config)
1035
1049
  @zone = args[:zone] if args.key?(:zone)
@@ -1257,6 +1271,13 @@ module Google
1257
1271
  # @return [String]
1258
1272
  attr_accessor :desired_monitoring_service
1259
1273
 
1274
+ # Collection of Compute Engine network tags that can be applied to a node's
1275
+ # underlying VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
1276
+ # docs/reference/rest/v1/NodeConfig)).
1277
+ # Corresponds to the JSON property `desiredNodePoolAutoConfigNetworkTags`
1278
+ # @return [Google::Apis::ContainerV1beta1::NetworkTags]
1279
+ attr_accessor :desired_node_pool_auto_config_network_tags
1280
+
1260
1281
  # NodePoolAutoscaling contains information required by cluster autoscaler to
1261
1282
  # adjust the size of the node pool to the current cluster usage.
1262
1283
  # Corresponds to the JSON property `desiredNodePoolAutoscaling`
@@ -1337,6 +1358,11 @@ module Google
1337
1358
  # @return [Google::Apis::ContainerV1beta1::VerticalPodAutoscaling]
1338
1359
  attr_accessor :desired_vertical_pod_autoscaling
1339
1360
 
1361
+ # Configuration for direct-path (via ALTS) with workload identity.
1362
+ # Corresponds to the JSON property `desiredWorkloadAltsConfig`
1363
+ # @return [Google::Apis::ContainerV1beta1::WorkloadAltsConfig]
1364
+ attr_accessor :desired_workload_alts_config
1365
+
1340
1366
  # Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
1341
1367
  # Corresponds to the JSON property `desiredWorkloadCertificates`
1342
1368
  # @return [Google::Apis::ContainerV1beta1::WorkloadCertificates]
@@ -1376,6 +1402,7 @@ module Google
1376
1402
  @desired_mesh_certificates = args[:desired_mesh_certificates] if args.key?(:desired_mesh_certificates)
1377
1403
  @desired_monitoring_config = args[:desired_monitoring_config] if args.key?(:desired_monitoring_config)
1378
1404
  @desired_monitoring_service = args[:desired_monitoring_service] if args.key?(:desired_monitoring_service)
1405
+ @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)
1379
1406
  @desired_node_pool_autoscaling = args[:desired_node_pool_autoscaling] if args.key?(:desired_node_pool_autoscaling)
1380
1407
  @desired_node_pool_id = args[:desired_node_pool_id] if args.key?(:desired_node_pool_id)
1381
1408
  @desired_node_version = args[:desired_node_version] if args.key?(:desired_node_version)
@@ -1389,6 +1416,7 @@ module Google
1389
1416
  @desired_shielded_nodes = args[:desired_shielded_nodes] if args.key?(:desired_shielded_nodes)
1390
1417
  @desired_tpu_config = args[:desired_tpu_config] if args.key?(:desired_tpu_config)
1391
1418
  @desired_vertical_pod_autoscaling = args[:desired_vertical_pod_autoscaling] if args.key?(:desired_vertical_pod_autoscaling)
1419
+ @desired_workload_alts_config = args[:desired_workload_alts_config] if args.key?(:desired_workload_alts_config)
1392
1420
  @desired_workload_certificates = args[:desired_workload_certificates] if args.key?(:desired_workload_certificates)
1393
1421
  @desired_workload_identity_config = args[:desired_workload_identity_config] if args.key?(:desired_workload_identity_config)
1394
1422
  end
@@ -1696,10 +1724,10 @@ module Google
1696
1724
  # day and time zone are either specified elsewhere or are insignificant. The
1697
1725
  # date is relative to the Gregorian Calendar. This can represent one of the
1698
1726
  # following: * A full date, with non-zero year, month, and day values * A month
1699
- # and day value, with a zero year, such as an anniversary * A year on its own,
1700
- # with zero month and day values * A year and month value, with a zero day, such
1701
- # as a credit card expiration date Related types are google.type.TimeOfDay and `
1702
- # google.protobuf.Timestamp`.
1727
+ # and day, with a zero year (e.g., an anniversary) * A year on its own, with a
1728
+ # zero month and a zero day * A year and month, with a zero day (e.g., a credit
1729
+ # card expiration date) Related types: * google.type.TimeOfDay * google.type.
1730
+ # DateTime * google.protobuf.Timestamp
1703
1731
  class Date
1704
1732
  include Google::Apis::Core::Hashable
1705
1733
 
@@ -3702,6 +3730,28 @@ module Google
3702
3730
  end
3703
3731
  end
3704
3732
 
3733
+ # node pool configs that apply to all auto-provisioned node pools in autopilot
3734
+ # clusters and node auto-provisioning enabled clusters
3735
+ class NodePoolAutoConfig
3736
+ include Google::Apis::Core::Hashable
3737
+
3738
+ # Collection of Compute Engine network tags that can be applied to a node's
3739
+ # underlying VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
3740
+ # docs/reference/rest/v1/NodeConfig)).
3741
+ # Corresponds to the JSON property `networkTags`
3742
+ # @return [Google::Apis::ContainerV1beta1::NetworkTags]
3743
+ attr_accessor :network_tags
3744
+
3745
+ def initialize(**args)
3746
+ update!(**args)
3747
+ end
3748
+
3749
+ # Update properties of this object
3750
+ def update!(**args)
3751
+ @network_tags = args[:network_tags] if args.key?(:network_tags)
3752
+ end
3753
+ end
3754
+
3705
3755
  # NodePoolAutoscaling contains information required by cluster autoscaler to
3706
3756
  # adjust the size of the node pool to the current cluster usage.
3707
3757
  class NodePoolAutoscaling
@@ -5989,10 +6039,10 @@ module Google
5989
6039
  # day and time zone are either specified elsewhere or are insignificant. The
5990
6040
  # date is relative to the Gregorian Calendar. This can represent one of the
5991
6041
  # following: * A full date, with non-zero year, month, and day values * A month
5992
- # and day value, with a zero year, such as an anniversary * A year on its own,
5993
- # with zero month and day values * A year and month value, with a zero day, such
5994
- # as a credit card expiration date Related types are google.type.TimeOfDay and `
5995
- # google.protobuf.Timestamp`.
6042
+ # and day, with a zero year (e.g., an anniversary) * A year on its own, with a
6043
+ # zero month and a zero day * A year and month, with a zero day (e.g., a credit
6044
+ # card expiration date) Related types: * google.type.TimeOfDay * google.type.
6045
+ # DateTime * google.protobuf.Timestamp
5996
6046
  # Corresponds to the JSON property `supportEndDate`
5997
6047
  # @return [Google::Apis::ContainerV1beta1::Date]
5998
6048
  attr_accessor :support_end_date
@@ -6028,6 +6078,27 @@ module Google
6028
6078
  end
6029
6079
  end
6030
6080
 
6081
+ # Configuration for direct-path (via ALTS) with workload identity.
6082
+ class WorkloadAltsConfig
6083
+ include Google::Apis::Core::Hashable
6084
+
6085
+ # enable_alts controls whether the alts handshaker should be enabled or not for
6086
+ # direct-path. Requires Workload Identity (workload_pool must be non-empty).
6087
+ # Corresponds to the JSON property `enableAlts`
6088
+ # @return [Boolean]
6089
+ attr_accessor :enable_alts
6090
+ alias_method :enable_alts?, :enable_alts
6091
+
6092
+ def initialize(**args)
6093
+ update!(**args)
6094
+ end
6095
+
6096
+ # Update properties of this object
6097
+ def update!(**args)
6098
+ @enable_alts = args[:enable_alts] if args.key?(:enable_alts)
6099
+ end
6100
+ end
6101
+
6031
6102
  # Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
6032
6103
  class WorkloadCertificates
6033
6104
  include Google::Apis::Core::Hashable
@@ -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.25.0"
19
+ GEM_VERSION = "0.26.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220114"
25
+ REVISION = "20220215"
26
26
  end
27
27
  end
28
28
  end
@@ -520,6 +520,12 @@ module Google
520
520
  include Google::Apis::Core::JsonObjectSupport
521
521
  end
522
522
 
523
+ class NodePoolAutoConfig
524
+ class Representation < Google::Apis::Core::JsonRepresentation; end
525
+
526
+ include Google::Apis::Core::JsonObjectSupport
527
+ end
528
+
523
529
  class NodePoolAutoscaling
524
530
  class Representation < Google::Apis::Core::JsonRepresentation; end
525
531
 
@@ -844,6 +850,12 @@ module Google
844
850
  include Google::Apis::Core::JsonObjectSupport
845
851
  end
846
852
 
853
+ class WorkloadAltsConfig
854
+ class Representation < Google::Apis::Core::JsonRepresentation; end
855
+
856
+ include Google::Apis::Core::JsonObjectSupport
857
+ end
858
+
847
859
  class WorkloadCertificates
848
860
  class Representation < Google::Apis::Core::JsonRepresentation; end
849
861
 
@@ -1077,6 +1089,8 @@ module Google
1077
1089
  property :node_config, as: 'nodeConfig', class: Google::Apis::ContainerV1beta1::NodeConfig, decorator: Google::Apis::ContainerV1beta1::NodeConfig::Representation
1078
1090
 
1079
1091
  property :node_ipv4_cidr_size, as: 'nodeIpv4CidrSize'
1092
+ property :node_pool_auto_config, as: 'nodePoolAutoConfig', class: Google::Apis::ContainerV1beta1::NodePoolAutoConfig, decorator: Google::Apis::ContainerV1beta1::NodePoolAutoConfig::Representation
1093
+
1080
1094
  property :node_pool_defaults, as: 'nodePoolDefaults', class: Google::Apis::ContainerV1beta1::NodePoolDefaults, decorator: Google::Apis::ContainerV1beta1::NodePoolDefaults::Representation
1081
1095
 
1082
1096
  collection :node_pools, as: 'nodePools', class: Google::Apis::ContainerV1beta1::NodePool, decorator: Google::Apis::ContainerV1beta1::NodePool::Representation
@@ -1105,6 +1119,8 @@ module Google
1105
1119
  property :tpu_ipv4_cidr_block, as: 'tpuIpv4CidrBlock'
1106
1120
  property :vertical_pod_autoscaling, as: 'verticalPodAutoscaling', class: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling, decorator: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling::Representation
1107
1121
 
1122
+ property :workload_alts_config, as: 'workloadAltsConfig', class: Google::Apis::ContainerV1beta1::WorkloadAltsConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadAltsConfig::Representation
1123
+
1108
1124
  property :workload_certificates, as: 'workloadCertificates', class: Google::Apis::ContainerV1beta1::WorkloadCertificates, decorator: Google::Apis::ContainerV1beta1::WorkloadCertificates::Representation
1109
1125
 
1110
1126
  property :workload_identity_config, as: 'workloadIdentityConfig', class: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig::Representation
@@ -1176,6 +1192,8 @@ module Google
1176
1192
  property :desired_monitoring_config, as: 'desiredMonitoringConfig', class: Google::Apis::ContainerV1beta1::MonitoringConfig, decorator: Google::Apis::ContainerV1beta1::MonitoringConfig::Representation
1177
1193
 
1178
1194
  property :desired_monitoring_service, as: 'desiredMonitoringService'
1195
+ property :desired_node_pool_auto_config_network_tags, as: 'desiredNodePoolAutoConfigNetworkTags', class: Google::Apis::ContainerV1beta1::NetworkTags, decorator: Google::Apis::ContainerV1beta1::NetworkTags::Representation
1196
+
1179
1197
  property :desired_node_pool_autoscaling, as: 'desiredNodePoolAutoscaling', class: Google::Apis::ContainerV1beta1::NodePoolAutoscaling, decorator: Google::Apis::ContainerV1beta1::NodePoolAutoscaling::Representation
1180
1198
 
1181
1199
  property :desired_node_pool_id, as: 'desiredNodePoolId'
@@ -1199,6 +1217,8 @@ module Google
1199
1217
 
1200
1218
  property :desired_vertical_pod_autoscaling, as: 'desiredVerticalPodAutoscaling', class: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling, decorator: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling::Representation
1201
1219
 
1220
+ property :desired_workload_alts_config, as: 'desiredWorkloadAltsConfig', class: Google::Apis::ContainerV1beta1::WorkloadAltsConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadAltsConfig::Representation
1221
+
1202
1222
  property :desired_workload_certificates, as: 'desiredWorkloadCertificates', class: Google::Apis::ContainerV1beta1::WorkloadCertificates, decorator: Google::Apis::ContainerV1beta1::WorkloadCertificates::Representation
1203
1223
 
1204
1224
  property :desired_workload_identity_config, as: 'desiredWorkloadIdentityConfig', class: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig::Representation
@@ -1827,6 +1847,14 @@ module Google
1827
1847
  end
1828
1848
  end
1829
1849
 
1850
+ class NodePoolAutoConfig
1851
+ # @private
1852
+ class Representation < Google::Apis::Core::JsonRepresentation
1853
+ property :network_tags, as: 'networkTags', class: Google::Apis::ContainerV1beta1::NetworkTags, decorator: Google::Apis::ContainerV1beta1::NetworkTags::Representation
1854
+
1855
+ end
1856
+ end
1857
+
1830
1858
  class NodePoolAutoscaling
1831
1859
  # @private
1832
1860
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2412,6 +2440,13 @@ module Google
2412
2440
  end
2413
2441
  end
2414
2442
 
2443
+ class WorkloadAltsConfig
2444
+ # @private
2445
+ class Representation < Google::Apis::Core::JsonRepresentation
2446
+ property :enable_alts, as: 'enableAlts'
2447
+ end
2448
+ end
2449
+
2415
2450
  class WorkloadCertificates
2416
2451
  # @private
2417
2452
  class Representation < Google::Apis::Core::JsonRepresentation
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.25.0
4
+ version: 0.26.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-02-07 00:00:00.000000000 Z
11
+ date: 2022-03-07 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.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.26.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: []