google-apis-container_v1beta1 0.21.0 → 0.22.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: 980506ae9bb8799c0cb49367ddf26c74fc00668595be2aa5213007bf3f417552
4
- data.tar.gz: f78537060600905c37f8fa92ff3c6004108ad3f10554c306ca24e31f7024b179
3
+ metadata.gz: dd85c7d6376f7fd4c5008875cf8f8fe49d2831ac3990b77e7aa06545390f3a8f
4
+ data.tar.gz: d15854505ecd7f3bbb6e3f6fc61487c85c80bc2aeb0018f1fb248844469a19be
5
5
  SHA512:
6
- metadata.gz: bf509cb18069c27b807218ed4b11243c0767fdd3f407afd7dd636fabf3f21fe7b4f102abbee2d1ec634f7f946134c32ea9aa5a91557d8ef4298b3668e49cbc8a
7
- data.tar.gz: dbe4ba02d202d64d770729c770798f52713e500bc871db73956607918869e2241a842ad89d0f1c2cb0f59028506a7967b63e38465a3fd5aa34bc73b8685d5558
6
+ metadata.gz: e39594a890de1e78dfed1a41799dbfc48ad4f530af591e852b037e30ab7335d9c9c377bf6b9cca5da0c0fb7d09e627be43f10594c6fa3c5d09c0fb9a7e31e63b
7
+ data.tar.gz: 31b84211c102cd121d3fec96a3767c62ab2ffc97ca8edd2f719d715b9409e39f2acde2654652682085bd2244c8aa85c1a8c1d1b6735e715bf6cebda03642c92e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.22.0 (2021-10-28)
4
+
5
+ * Regenerated from discovery document revision 20211014
6
+
3
7
  ### v0.21.0 (2021-10-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20211008
@@ -141,6 +141,27 @@ module Google
141
141
  end
142
142
  end
143
143
 
144
+ # Specifies options for controlling advanced machine features.
145
+ class AdvancedMachineFeatures
146
+ include Google::Apis::Core::Hashable
147
+
148
+ # The number of threads per physical core. To disable simultaneous
149
+ # multithreading (SMT) set this to 1. If unset, the maximum number of threads
150
+ # supported per core by the underlying processor is assumed.
151
+ # Corresponds to the JSON property `threadsPerCore`
152
+ # @return [Fixnum]
153
+ attr_accessor :threads_per_core
154
+
155
+ def initialize(**args)
156
+ update!(**args)
157
+ end
158
+
159
+ # Update properties of this object
160
+ def update!(**args)
161
+ @threads_per_core = args[:threads_per_core] if args.key?(:threads_per_core)
162
+ end
163
+ end
164
+
144
165
  # Configuration for returning group information from authenticators.
145
166
  class AuthenticatorGroupsConfig
146
167
  include Google::Apis::Core::Hashable
@@ -3045,6 +3066,11 @@ module Google
3045
3066
  # @return [Array<Google::Apis::ContainerV1beta1::AcceleratorConfig>]
3046
3067
  attr_accessor :accelerators
3047
3068
 
3069
+ # Specifies options for controlling advanced machine features.
3070
+ # Corresponds to the JSON property `advancedMachineFeatures`
3071
+ # @return [Google::Apis::ContainerV1beta1::AdvancedMachineFeatures]
3072
+ attr_accessor :advanced_machine_features
3073
+
3048
3074
  # The Customer Managed Encryption Key used to encrypt the boot disk attached to
3049
3075
  # each node in the node pool. This should be of the form projects/[
3050
3076
  # KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]
@@ -3239,6 +3265,7 @@ module Google
3239
3265
  # Update properties of this object
3240
3266
  def update!(**args)
3241
3267
  @accelerators = args[:accelerators] if args.key?(:accelerators)
3268
+ @advanced_machine_features = args[:advanced_machine_features] if args.key?(:advanced_machine_features)
3242
3269
  @boot_disk_kms_key = args[:boot_disk_kms_key] if args.key?(:boot_disk_kms_key)
3243
3270
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
3244
3271
  @disk_type = args[:disk_type] if args.key?(:disk_type)
@@ -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.21.0"
19
+ GEM_VERSION = "0.22.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211008"
25
+ REVISION = "20211014"
26
26
  end
27
27
  end
28
28
  end
@@ -34,6 +34,12 @@ module Google
34
34
  include Google::Apis::Core::JsonObjectSupport
35
35
  end
36
36
 
37
+ class AdvancedMachineFeatures
38
+ class Representation < Google::Apis::Core::JsonRepresentation; end
39
+
40
+ include Google::Apis::Core::JsonObjectSupport
41
+ end
42
+
37
43
  class AuthenticatorGroupsConfig
38
44
  class Representation < Google::Apis::Core::JsonRepresentation; end
39
45
 
@@ -857,6 +863,13 @@ module Google
857
863
  end
858
864
  end
859
865
 
866
+ class AdvancedMachineFeatures
867
+ # @private
868
+ class Representation < Google::Apis::Core::JsonRepresentation
869
+ property :threads_per_core, :numeric_string => true, as: 'threadsPerCore'
870
+ end
871
+ end
872
+
860
873
  class AuthenticatorGroupsConfig
861
874
  # @private
862
875
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1632,6 +1645,8 @@ module Google
1632
1645
  class Representation < Google::Apis::Core::JsonRepresentation
1633
1646
  collection :accelerators, as: 'accelerators', class: Google::Apis::ContainerV1beta1::AcceleratorConfig, decorator: Google::Apis::ContainerV1beta1::AcceleratorConfig::Representation
1634
1647
 
1648
+ property :advanced_machine_features, as: 'advancedMachineFeatures', class: Google::Apis::ContainerV1beta1::AdvancedMachineFeatures, decorator: Google::Apis::ContainerV1beta1::AdvancedMachineFeatures::Representation
1649
+
1635
1650
  property :boot_disk_kms_key, as: 'bootDiskKmsKey'
1636
1651
  property :disk_size_gb, as: 'diskSizeGb'
1637
1652
  property :disk_type, as: 'diskType'
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.21.0
4
+ version: 0.22.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: 2021-10-27 00:00:00.000000000 Z
11
+ date: 2021-11-01 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.21.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.22.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: []