google-apis-container_v1beta1 0.26.0 → 0.27.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: d283d4957f776f69a5c7ce3d920e432b2116ea6b32d472d3d142b51379582aa3
4
- data.tar.gz: 559fc4afaede657a42b06d465c2d575f1a62b6450ca9e81925842b954cca3403
3
+ metadata.gz: 39677e3ea3046b273ad8182756a4e5bb6caa8f70fb1adb8d9e73b003bebfa5a7
4
+ data.tar.gz: ed452e6400db1de49b0fb9c59f5efd0c6ea957b6877d35e986b1477a78eb4958
5
5
  SHA512:
6
- metadata.gz: 6f996452217a9a3ce69ae0a53b5dffa6c65bb0f785391bb6d3ce6430d22717b06a3aaefbfbdffa4d1efc0620d6443b63fec6c2ff16ce40205cd4bd320984d860
7
- data.tar.gz: 0be44934ccc3625b874f480bf1e72c2f1c4297ae6a07d4ab867cbd78b9266a94de40a3de5d1b33e59e4efb0b32d4305be13fadb9eab0d53bd76fece75a21066c
6
+ metadata.gz: 7fbe7b372489f10c7010c1a63d7b039828bdcc7745acdfcec8ed241d73f0225040637a7879231de00565c4fd18b998d84a750d68be6521952c9274d397eafd40
7
+ data.tar.gz: 947e185b0b9a88ceafc9591a768e494b177c7300a7c615c740a350e5e8050d0310dae00767200876008c29d796155f33b480c4991085c479f89296e10fa63765
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.27.0 (2022-03-22)
4
+
5
+ * Regenerated from discovery document revision 20220308
6
+
3
7
  ### v0.26.0 (2022-03-03)
4
8
 
5
9
  * Regenerated from discovery document revision 20220215
@@ -823,7 +823,9 @@ module Google
823
823
  # @return [Google::Apis::ContainerV1beta1::NetworkPolicy]
824
824
  attr_accessor :network_policy
825
825
 
826
- # Parameters that describe the nodes in a cluster.
826
+ # Parameters that describe the nodes in a cluster. *Note:* GKE Autopilot
827
+ # clusters do not recognize parameters in `NodeConfig`. Use
828
+ # AutoprovisioningNodePoolDefaults instead.
827
829
  # Corresponds to the JSON property `nodeConfig`
828
830
  # @return [Google::Apis::ContainerV1beta1::NodeConfig]
829
831
  attr_accessor :node_config
@@ -1723,11 +1725,11 @@ module Google
1723
1725
  # Represents a whole or partial calendar date, such as a birthday. The time of
1724
1726
  # day and time zone are either specified elsewhere or are insignificant. The
1725
1727
  # date is relative to the Gregorian Calendar. This can represent one of the
1726
- # following: * A full date, with non-zero year, month, and day values * A month
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
1728
+ # following: * A full date, with non-zero year, month, and day values. * A month
1729
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
1730
+ # with a zero month and a zero day. * A year and month, with a zero day (for
1731
+ # example, a credit card expiration date). Related types: * google.type.
1732
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
1731
1733
  class Date
1732
1734
  include Google::Apis::Core::Hashable
1733
1735
 
@@ -3179,7 +3181,9 @@ module Google
3179
3181
  end
3180
3182
  end
3181
3183
 
3182
- # Parameters that describe the nodes in a cluster.
3184
+ # Parameters that describe the nodes in a cluster. *Note:* GKE Autopilot
3185
+ # clusters do not recognize parameters in `NodeConfig`. Use
3186
+ # AutoprovisioningNodePoolDefaults instead.
3183
3187
  class NodeConfig
3184
3188
  include Google::Apis::Core::Hashable
3185
3189
 
@@ -3203,6 +3207,12 @@ module Google
3203
3207
  # @return [String]
3204
3208
  attr_accessor :boot_disk_kms_key
3205
3209
 
3210
+ # ConfidentialNodes is configuration for the confidential nodes feature, which
3211
+ # makes nodes run on confidential VMs.
3212
+ # Corresponds to the JSON property `confidentialNodes`
3213
+ # @return [Google::Apis::ContainerV1beta1::ConfidentialNodes]
3214
+ attr_accessor :confidential_nodes
3215
+
3206
3216
  # Size of the disk attached to each node, specified in GB. The smallest allowed
3207
3217
  # disk size is 10GB. If unspecified, the default disk size is 100GB.
3208
3218
  # Corresponds to the JSON property `diskSizeGb`
@@ -3390,6 +3400,7 @@ module Google
3390
3400
  @accelerators = args[:accelerators] if args.key?(:accelerators)
3391
3401
  @advanced_machine_features = args[:advanced_machine_features] if args.key?(:advanced_machine_features)
3392
3402
  @boot_disk_kms_key = args[:boot_disk_kms_key] if args.key?(:boot_disk_kms_key)
3403
+ @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
3393
3404
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
3394
3405
  @disk_type = args[:disk_type] if args.key?(:disk_type)
3395
3406
  @ephemeral_storage_config = args[:ephemeral_storage_config] if args.key?(:ephemeral_storage_config)
@@ -3617,7 +3628,9 @@ module Google
3617
3628
  # @return [Array<Google::Apis::ContainerV1beta1::StatusCondition>]
3618
3629
  attr_accessor :conditions
3619
3630
 
3620
- # Parameters that describe the nodes in a cluster.
3631
+ # Parameters that describe the nodes in a cluster. *Note:* GKE Autopilot
3632
+ # clusters do not recognize parameters in `NodeConfig`. Use
3633
+ # AutoprovisioningNodePoolDefaults instead.
3621
3634
  # Corresponds to the JSON property `config`
3622
3635
  # @return [Google::Apis::ContainerV1beta1::NodeConfig]
3623
3636
  attr_accessor :config
@@ -5646,6 +5659,12 @@ module Google
5646
5659
  # @return [String]
5647
5660
  attr_accessor :cluster_id
5648
5661
 
5662
+ # ConfidentialNodes is configuration for the confidential nodes feature, which
5663
+ # makes nodes run on confidential VMs.
5664
+ # Corresponds to the JSON property `confidentialNodes`
5665
+ # @return [Google::Apis::ContainerV1beta1::ConfidentialNodes]
5666
+ attr_accessor :confidential_nodes
5667
+
5649
5668
  # GcfsConfig contains configurations of Google Container File System.
5650
5669
  # Corresponds to the JSON property `gcfsConfig`
5651
5670
  # @return [Google::Apis::ContainerV1beta1::GcfsConfig]
@@ -5754,6 +5773,7 @@ module Google
5754
5773
  # Update properties of this object
5755
5774
  def update!(**args)
5756
5775
  @cluster_id = args[:cluster_id] if args.key?(:cluster_id)
5776
+ @confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
5757
5777
  @gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
5758
5778
  @gvnic = args[:gvnic] if args.key?(:gvnic)
5759
5779
  @image_type = args[:image_type] if args.key?(:image_type)
@@ -6038,11 +6058,11 @@ module Google
6038
6058
  # Represents a whole or partial calendar date, such as a birthday. The time of
6039
6059
  # day and time zone are either specified elsewhere or are insignificant. The
6040
6060
  # date is relative to the Gregorian Calendar. This can represent one of the
6041
- # following: * A full date, with non-zero year, month, and day values * A month
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
6061
+ # following: * A full date, with non-zero year, month, and day values. * A month
6062
+ # and day, with a zero year (for example, an anniversary). * A year on its own,
6063
+ # with a zero month and a zero day. * A year and month, with a zero day (for
6064
+ # example, a credit card expiration date). Related types: * google.type.
6065
+ # TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
6046
6066
  # Corresponds to the JSON property `supportEndDate`
6047
6067
  # @return [Google::Apis::ContainerV1beta1::Date]
6048
6068
  attr_accessor :support_end_date
@@ -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.26.0"
19
+ GEM_VERSION = "0.27.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 = "20220215"
25
+ REVISION = "20220308"
26
26
  end
27
27
  end
28
28
  end
@@ -1736,6 +1736,8 @@ module Google
1736
1736
  property :advanced_machine_features, as: 'advancedMachineFeatures', class: Google::Apis::ContainerV1beta1::AdvancedMachineFeatures, decorator: Google::Apis::ContainerV1beta1::AdvancedMachineFeatures::Representation
1737
1737
 
1738
1738
  property :boot_disk_kms_key, as: 'bootDiskKmsKey'
1739
+ property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1beta1::ConfidentialNodes, decorator: Google::Apis::ContainerV1beta1::ConfidentialNodes::Representation
1740
+
1739
1741
  property :disk_size_gb, as: 'diskSizeGb'
1740
1742
  property :disk_type, as: 'diskType'
1741
1743
  property :ephemeral_storage_config, as: 'ephemeralStorageConfig', class: Google::Apis::ContainerV1beta1::EphemeralStorageConfig, decorator: Google::Apis::ContainerV1beta1::EphemeralStorageConfig::Representation
@@ -2326,6 +2328,8 @@ module Google
2326
2328
  # @private
2327
2329
  class Representation < Google::Apis::Core::JsonRepresentation
2328
2330
  property :cluster_id, as: 'clusterId'
2331
+ property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1beta1::ConfidentialNodes, decorator: Google::Apis::ContainerV1beta1::ConfidentialNodes::Representation
2332
+
2329
2333
  property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
2330
2334
 
2331
2335
  property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1beta1::VirtualNic, decorator: Google::Apis::ContainerV1beta1::VirtualNic::Representation
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.26.0
4
+ version: 0.27.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-03-07 00:00:00.000000000 Z
11
+ date: 2022-03-28 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.26.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.27.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: []