google-apis-container_v1beta1 0.36.0 → 0.37.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: cc801c576f2f8b97f58e92770f0edcb2fe4451e75517a8593830dec935baebc8
4
- data.tar.gz: 1b0efe303d3d3b297c5b6b65fb46dfa7a846311322d5c040ddc15114798232ff
3
+ metadata.gz: 7fde86cf5263d6f312e675294473cf6a7423f1c3e2d28ce5d166a44c49a3880c
4
+ data.tar.gz: 37b89ab58fc0690603f774ade6000a68175bebf5e6bdb681effb2e36a9988482
5
5
  SHA512:
6
- metadata.gz: 39d0458ef69a033d8c2b3a7693f234dc428ddc7de2359fd210ee3deef90c611ad66595aca4bf8c02c92d7009267dbba68c20240fbb4b6640b46f78be9845955c
7
- data.tar.gz: c7a45e339e54b66be1741881114ddc978bb774267c9a315d010ff9d4986d1953e7d6331a565975860cd874e56535573816d54c4c9a0e4de7c6b1449145093501
6
+ metadata.gz: 37546ace175f57268f397b7fcead1a54e451f9e0d2ffff019e4e4ac61926849394989533600fd5cd037aafa7a5b6b4dcff53b308e94b040b7f9631f58adbda78
7
+ data.tar.gz: 9ab9a110aed388ae337c83e111c3daee87629e82fa0a5c8180c6a29a1c3d000f9f25bd4fb4ce44755aa754ad68eb8dca3f588cf43a4bee31a2ea4cc22a593359
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.37.0 (2022-09-15)
4
+
5
+ * Regenerated from discovery document revision 20220826
6
+
3
7
  ### v0.36.0 (2022-08-08)
4
8
 
5
9
  * Regenerated from discovery document revision 20220727
@@ -300,8 +300,8 @@ module Google
300
300
  # values are the friendly names of CPU platforms, such as minCpuPlatform: Intel
301
301
  # Haswell or minCpuPlatform: Intel Sandy Bridge. For more information, read [how
302
302
  # to specify min CPU platform](https://cloud.google.com/compute/docs/instances/
303
- # specify-min-cpu-platform) This field is deprecated, min_cpu_platform should be
304
- # specified using https://cloud.google.com/requested-min-cpu-platform label
303
+ # specify-min-cpu-platform). This field is deprecated, min_cpu_platform should
304
+ # be specified using https://cloud.google.com/requested-min-cpu-platform label
305
305
  # selector on the pod. To unset the min cpu platform field pass "automatic" as
306
306
  # field value.
307
307
  # Corresponds to the JSON property `minCpuPlatform`
@@ -1422,6 +1422,11 @@ module Google
1422
1422
  # @return [String]
1423
1423
  attr_accessor :desired_node_pool_id
1424
1424
 
1425
+ # NodePoolLoggingConfig specifies logging configuration for nodepools.
1426
+ # Corresponds to the JSON property `desiredNodePoolLoggingConfig`
1427
+ # @return [Google::Apis::ContainerV1beta1::NodePoolLoggingConfig]
1428
+ attr_accessor :desired_node_pool_logging_config
1429
+
1425
1430
  # The Kubernetes version to change the nodes to (typically an upgrade). Users
1426
1431
  # may specify either explicit versions offered by Kubernetes Engine or version
1427
1432
  # aliases, which have the following behavior: - "latest": picks the highest
@@ -1542,6 +1547,7 @@ module Google
1542
1547
  @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)
1543
1548
  @desired_node_pool_autoscaling = args[:desired_node_pool_autoscaling] if args.key?(:desired_node_pool_autoscaling)
1544
1549
  @desired_node_pool_id = args[:desired_node_pool_id] if args.key?(:desired_node_pool_id)
1550
+ @desired_node_pool_logging_config = args[:desired_node_pool_logging_config] if args.key?(:desired_node_pool_logging_config)
1545
1551
  @desired_node_version = args[:desired_node_version] if args.key?(:desired_node_version)
1546
1552
  @desired_notification_config = args[:desired_notification_config] if args.key?(:desired_notification_config)
1547
1553
  @desired_pod_security_policy_config = args[:desired_pod_security_policy_config] if args.key?(:desired_pod_security_policy_config)
@@ -2926,6 +2932,25 @@ module Google
2926
2932
  end
2927
2933
  end
2928
2934
 
2935
+ # LoggingVariantConfig specifies the behaviour of the logging component.
2936
+ class LoggingVariantConfig
2937
+ include Google::Apis::Core::Hashable
2938
+
2939
+ # Logging variant deployed on nodes.
2940
+ # Corresponds to the JSON property `variant`
2941
+ # @return [String]
2942
+ attr_accessor :variant
2943
+
2944
+ def initialize(**args)
2945
+ update!(**args)
2946
+ end
2947
+
2948
+ # Update properties of this object
2949
+ def update!(**args)
2950
+ @variant = args[:variant] if args.key?(:variant)
2951
+ end
2952
+ end
2953
+
2929
2954
  # Represents the Maintenance exclusion option.
2930
2955
  class MaintenanceExclusionOptions
2931
2956
  include Google::Apis::Core::Hashable
@@ -3528,6 +3553,11 @@ module Google
3528
3553
  # @return [Fixnum]
3529
3554
  attr_accessor :local_ssd_count
3530
3555
 
3556
+ # NodePoolLoggingConfig specifies logging configuration for nodepools.
3557
+ # Corresponds to the JSON property `loggingConfig`
3558
+ # @return [Google::Apis::ContainerV1beta1::NodePoolLoggingConfig]
3559
+ attr_accessor :logging_config
3560
+
3531
3561
  # The name of a Google Compute Engine [machine type](https://cloud.google.com/
3532
3562
  # compute/docs/machine-types). If unspecified, the default machine type is `e2-
3533
3563
  # medium`.
@@ -3558,7 +3588,7 @@ module Google
3558
3588
  # friendly names of CPU platforms, such as `minCpuPlatform: "Intel Haswell"` or `
3559
3589
  # minCpuPlatform: "Intel Sandy Bridge"`. For more information, read [how to
3560
3590
  # specify min CPU platform](https://cloud.google.com/compute/docs/instances/
3561
- # specify-min-cpu-platform)
3591
+ # specify-min-cpu-platform).
3562
3592
  # Corresponds to the JSON property `minCpuPlatform`
3563
3593
  # @return [String]
3564
3594
  attr_accessor :min_cpu_platform
@@ -3663,6 +3693,7 @@ module Google
3663
3693
  @labels = args[:labels] if args.key?(:labels)
3664
3694
  @linux_node_config = args[:linux_node_config] if args.key?(:linux_node_config)
3665
3695
  @local_ssd_count = args[:local_ssd_count] if args.key?(:local_ssd_count)
3696
+ @logging_config = args[:logging_config] if args.key?(:logging_config)
3666
3697
  @machine_type = args[:machine_type] if args.key?(:machine_type)
3667
3698
  @metadata = args[:metadata] if args.key?(:metadata)
3668
3699
  @min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
@@ -3689,6 +3720,11 @@ module Google
3689
3720
  # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
3690
3721
  attr_accessor :gcfs_config
3691
3722
 
3723
+ # NodePoolLoggingConfig specifies logging configuration for nodepools.
3724
+ # Corresponds to the JSON property `loggingConfig`
3725
+ # @return [Google::Apis::ContainerV1beta1::NodePoolLoggingConfig]
3726
+ attr_accessor :logging_config
3727
+
3692
3728
  def initialize(**args)
3693
3729
  update!(**args)
3694
3730
  end
@@ -3696,6 +3732,7 @@ module Google
3696
3732
  # Update properties of this object
3697
3733
  def update!(**args)
3698
3734
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
3735
+ @logging_config = args[:logging_config] if args.key?(:logging_config)
3699
3736
  end
3700
3737
  end
3701
3738
 
@@ -4140,6 +4177,25 @@ module Google
4140
4177
  end
4141
4178
  end
4142
4179
 
4180
+ # NodePoolLoggingConfig specifies logging configuration for nodepools.
4181
+ class NodePoolLoggingConfig
4182
+ include Google::Apis::Core::Hashable
4183
+
4184
+ # LoggingVariantConfig specifies the behaviour of the logging component.
4185
+ # Corresponds to the JSON property `variantConfig`
4186
+ # @return [Google::Apis::ContainerV1beta1::LoggingVariantConfig]
4187
+ attr_accessor :variant_config
4188
+
4189
+ def initialize(**args)
4190
+ update!(**args)
4191
+ end
4192
+
4193
+ # Update properties of this object
4194
+ def update!(**args)
4195
+ @variant_config = args[:variant_config] if args.key?(:variant_config)
4196
+ end
4197
+ end
4198
+
4143
4199
  # Kubernetes taint is comprised of three fields: key, value, and effect. Effect
4144
4200
  # can only be one of three types: NoSchedule, PreferNoSchedule or NoExecute. See
4145
4201
  # [here](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration)
@@ -4662,8 +4718,8 @@ module Google
4662
4718
  attr_accessor :consume_reservation_type
4663
4719
 
4664
4720
  # Corresponds to the label key of a reservation resource. To target a
4665
- # SPECIFIC_RESERVATION by name, specify "googleapis.com/reservation-name" as the
4666
- # key and specify the name of your reservation as its value.
4721
+ # SPECIFIC_RESERVATION by name, specify "compute.googleapis.com/reservation-name"
4722
+ # as the key and specify the name of your reservation as its value.
4667
4723
  # Corresponds to the JSON property `key`
4668
4724
  # @return [String]
4669
4725
  attr_accessor :key
@@ -6099,6 +6155,11 @@ module Google
6099
6155
  # @return [Array<String>]
6100
6156
  attr_accessor :locations
6101
6157
 
6158
+ # NodePoolLoggingConfig specifies logging configuration for nodepools.
6159
+ # Corresponds to the JSON property `loggingConfig`
6160
+ # @return [Google::Apis::ContainerV1beta1::NodePoolLoggingConfig]
6161
+ attr_accessor :logging_config
6162
+
6102
6163
  # The name (project, location, cluster, node pool) of the node pool to update.
6103
6164
  # Specified in the format `projects/*/locations/*/clusters/*/nodePools/*`.
6104
6165
  # Corresponds to the JSON property `name`
@@ -6196,6 +6257,7 @@ module Google
6196
6257
  @labels = args[:labels] if args.key?(:labels)
6197
6258
  @linux_node_config = args[:linux_node_config] if args.key?(:linux_node_config)
6198
6259
  @locations = args[:locations] if args.key?(:locations)
6260
+ @logging_config = args[:logging_config] if args.key?(:logging_config)
6199
6261
  @name = args[:name] if args.key?(:name)
6200
6262
  @node_network_config = args[:node_network_config] if args.key?(:node_network_config)
6201
6263
  @node_pool_id = args[:node_pool_id] if args.key?(:node_pool_id)
@@ -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.36.0"
19
+ GEM_VERSION = "0.37.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220727"
25
+ REVISION = "20220826"
26
26
  end
27
27
  end
28
28
  end
@@ -412,6 +412,12 @@ module Google
412
412
  include Google::Apis::Core::JsonObjectSupport
413
413
  end
414
414
 
415
+ class LoggingVariantConfig
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
415
421
  class MaintenanceExclusionOptions
416
422
  class Representation < Google::Apis::Core::JsonRepresentation; end
417
423
 
@@ -574,6 +580,12 @@ module Google
574
580
  include Google::Apis::Core::JsonObjectSupport
575
581
  end
576
582
 
583
+ class NodePoolLoggingConfig
584
+ class Representation < Google::Apis::Core::JsonRepresentation; end
585
+
586
+ include Google::Apis::Core::JsonObjectSupport
587
+ end
588
+
577
589
  class NodeTaint
578
590
  class Representation < Google::Apis::Core::JsonRepresentation; end
579
591
 
@@ -1287,6 +1299,8 @@ module Google
1287
1299
  property :desired_node_pool_autoscaling, as: 'desiredNodePoolAutoscaling', class: Google::Apis::ContainerV1beta1::NodePoolAutoscaling, decorator: Google::Apis::ContainerV1beta1::NodePoolAutoscaling::Representation
1288
1300
 
1289
1301
  property :desired_node_pool_id, as: 'desiredNodePoolId'
1302
+ property :desired_node_pool_logging_config, as: 'desiredNodePoolLoggingConfig', class: Google::Apis::ContainerV1beta1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1beta1::NodePoolLoggingConfig::Representation
1303
+
1290
1304
  property :desired_node_version, as: 'desiredNodeVersion'
1291
1305
  property :desired_notification_config, as: 'desiredNotificationConfig', class: Google::Apis::ContainerV1beta1::NotificationConfig, decorator: Google::Apis::ContainerV1beta1::NotificationConfig::Representation
1292
1306
 
@@ -1702,6 +1716,13 @@ module Google
1702
1716
  end
1703
1717
  end
1704
1718
 
1719
+ class LoggingVariantConfig
1720
+ # @private
1721
+ class Representation < Google::Apis::Core::JsonRepresentation
1722
+ property :variant, as: 'variant'
1723
+ end
1724
+ end
1725
+
1705
1726
  class MaintenanceExclusionOptions
1706
1727
  # @private
1707
1728
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1879,6 +1900,8 @@ module Google
1879
1900
  property :linux_node_config, as: 'linuxNodeConfig', class: Google::Apis::ContainerV1beta1::LinuxNodeConfig, decorator: Google::Apis::ContainerV1beta1::LinuxNodeConfig::Representation
1880
1901
 
1881
1902
  property :local_ssd_count, as: 'localSsdCount'
1903
+ property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1beta1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1beta1::NodePoolLoggingConfig::Representation
1904
+
1882
1905
  property :machine_type, as: 'machineType'
1883
1906
  hash :metadata, as: 'metadata'
1884
1907
  property :min_cpu_platform, as: 'minCpuPlatform'
@@ -1906,6 +1929,8 @@ module Google
1906
1929
  class Representation < Google::Apis::Core::JsonRepresentation
1907
1930
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
1908
1931
 
1932
+ property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1beta1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1beta1::NodePoolLoggingConfig::Representation
1933
+
1909
1934
  end
1910
1935
  end
1911
1936
 
@@ -2009,6 +2034,14 @@ module Google
2009
2034
  end
2010
2035
  end
2011
2036
 
2037
+ class NodePoolLoggingConfig
2038
+ # @private
2039
+ class Representation < Google::Apis::Core::JsonRepresentation
2040
+ property :variant_config, as: 'variantConfig', class: Google::Apis::ContainerV1beta1::LoggingVariantConfig, decorator: Google::Apis::ContainerV1beta1::LoggingVariantConfig::Representation
2041
+
2042
+ end
2043
+ end
2044
+
2012
2045
  class NodeTaint
2013
2046
  # @private
2014
2047
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2502,6 +2535,8 @@ module Google
2502
2535
  property :linux_node_config, as: 'linuxNodeConfig', class: Google::Apis::ContainerV1beta1::LinuxNodeConfig, decorator: Google::Apis::ContainerV1beta1::LinuxNodeConfig::Representation
2503
2536
 
2504
2537
  collection :locations, as: 'locations'
2538
+ property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1beta1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1beta1::NodePoolLoggingConfig::Representation
2539
+
2505
2540
  property :name, as: 'name'
2506
2541
  property :node_network_config, as: 'nodeNetworkConfig', class: Google::Apis::ContainerV1beta1::NodeNetworkConfig, decorator: Google::Apis::ContainerV1beta1::NodeNetworkConfig::Representation
2507
2542
 
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.36.0
4
+ version: 0.37.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-08-15 00:00:00.000000000 Z
11
+ date: 2022-09-19 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.36.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.37.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: []