google-apis-container_v1 0.19.0 → 0.20.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: 43950a87c679f347db47f4bceaff32ea85a1adcc7b01a872d40b689146b22786
4
- data.tar.gz: 88c02b303fe11d54d889ab448ff65372802246138882ab7ec380fd105e1fd8e3
3
+ metadata.gz: 942292184f8627890c341fc08995165a9698e8e10e1a106a23a780c1fa644bdb
4
+ data.tar.gz: 682ab02bba42db38930003f81e65e00293160137bfffa21f7b0f466234abee3f
5
5
  SHA512:
6
- metadata.gz: 3b112cb5bc82d639e96b88f1a5e9d995abd2bf806a1157d99f5f02b231dbc9db4cba4b7450edb6b2e6d679c5c53974fa02fc91e2eb3f66571d2c71a9a24f491c
7
- data.tar.gz: 6d44d2c2dced8d7a8be2652b8fa23fc3b55f148212e638d6f1a25b7fd020763203ecf76b125147958ef0f52b31b2b4dab8c76ee576e410e3a9487eda1f6b8b45
6
+ metadata.gz: d036b9ddf1368c394f0dc249426540457733caecaac23c4fceced3a7c589dfa1a98af0f7b47b901bbc65c2d06f05e42f07487e8ef4408e4b0a4c762709e629c2
7
+ data.tar.gz: 3d0f643cc41e2b4e1e7605b8e354221cdd64cadc87f933b170b80fa02ca22da74d670f2b518c8ba6324749d7c2e794188904cd141039810f55c306cdacba4dfd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-container_v1
2
2
 
3
+ ### v0.20.0 (2021-10-28)
4
+
5
+ * Regenerated from discovery document revision 20211014
6
+
3
7
  ### v0.19.0 (2021-10-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20211008
@@ -129,6 +129,27 @@ module Google
129
129
  end
130
130
  end
131
131
 
132
+ # Specifies options for controlling advanced machine features.
133
+ class AdvancedMachineFeatures
134
+ include Google::Apis::Core::Hashable
135
+
136
+ # The number of threads per physical core. To disable simultaneous
137
+ # multithreading (SMT) set this to 1. If unset, the maximum number of threads
138
+ # supported per core by the underlying processor is assumed.
139
+ # Corresponds to the JSON property `threadsPerCore`
140
+ # @return [Fixnum]
141
+ attr_accessor :threads_per_core
142
+
143
+ def initialize(**args)
144
+ update!(**args)
145
+ end
146
+
147
+ # Update properties of this object
148
+ def update!(**args)
149
+ @threads_per_core = args[:threads_per_core] if args.key?(:threads_per_core)
150
+ end
151
+ end
152
+
132
153
  # Configuration for returning group information from authenticators.
133
154
  class AuthenticatorGroupsConfig
134
155
  include Google::Apis::Core::Hashable
@@ -2406,12 +2427,23 @@ module Google
2406
2427
  class MeshCertificates
2407
2428
  include Google::Apis::Core::Hashable
2408
2429
 
2430
+ # enable_certificates controls issuance of workload mTLS certificates. If set,
2431
+ # the GKE Workload Identity Certificates controller and node agent will be
2432
+ # deployed in the cluster, which can then be configured by creating a
2433
+ # WorkloadCertificateConfig Custom Resource. Requires Workload Identity (
2434
+ # workload_pool must be non-empty).
2435
+ # Corresponds to the JSON property `enableCertificates`
2436
+ # @return [Boolean]
2437
+ attr_accessor :enable_certificates
2438
+ alias_method :enable_certificates?, :enable_certificates
2439
+
2409
2440
  def initialize(**args)
2410
2441
  update!(**args)
2411
2442
  end
2412
2443
 
2413
2444
  # Update properties of this object
2414
2445
  def update!(**args)
2446
+ @enable_certificates = args[:enable_certificates] if args.key?(:enable_certificates)
2415
2447
  end
2416
2448
  end
2417
2449
 
@@ -2621,6 +2653,11 @@ module Google
2621
2653
  # @return [Array<Google::Apis::ContainerV1::AcceleratorConfig>]
2622
2654
  attr_accessor :accelerators
2623
2655
 
2656
+ # Specifies options for controlling advanced machine features.
2657
+ # Corresponds to the JSON property `advancedMachineFeatures`
2658
+ # @return [Google::Apis::ContainerV1::AdvancedMachineFeatures]
2659
+ attr_accessor :advanced_machine_features
2660
+
2624
2661
  # The Customer Managed Encryption Key used to encrypt the boot disk attached to
2625
2662
  # each node in the node pool. This should be of the form projects/[
2626
2663
  # KEY_PROJECT_ID]/locations/[LOCATION]/keyRings/[RING_NAME]/cryptoKeys/[KEY_NAME]
@@ -2803,6 +2840,7 @@ module Google
2803
2840
  # Update properties of this object
2804
2841
  def update!(**args)
2805
2842
  @accelerators = args[:accelerators] if args.key?(:accelerators)
2843
+ @advanced_machine_features = args[:advanced_machine_features] if args.key?(:advanced_machine_features)
2806
2844
  @boot_disk_kms_key = args[:boot_disk_kms_key] if args.key?(:boot_disk_kms_key)
2807
2845
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
2808
2846
  @disk_type = args[:disk_type] if args.key?(:disk_type)
@@ -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.0"
19
+ GEM_VERSION = "0.20.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
 
@@ -739,6 +745,13 @@ module Google
739
745
  end
740
746
  end
741
747
 
748
+ class AdvancedMachineFeatures
749
+ # @private
750
+ class Representation < Google::Apis::Core::JsonRepresentation
751
+ property :threads_per_core, :numeric_string => true, as: 'threadsPerCore'
752
+ end
753
+ end
754
+
742
755
  class AuthenticatorGroupsConfig
743
756
  # @private
744
757
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1334,6 +1347,7 @@ module Google
1334
1347
  class MeshCertificates
1335
1348
  # @private
1336
1349
  class Representation < Google::Apis::Core::JsonRepresentation
1350
+ property :enable_certificates, as: 'enableCertificates'
1337
1351
  end
1338
1352
  end
1339
1353
 
@@ -1398,6 +1412,8 @@ module Google
1398
1412
  class Representation < Google::Apis::Core::JsonRepresentation
1399
1413
  collection :accelerators, as: 'accelerators', class: Google::Apis::ContainerV1::AcceleratorConfig, decorator: Google::Apis::ContainerV1::AcceleratorConfig::Representation
1400
1414
 
1415
+ property :advanced_machine_features, as: 'advancedMachineFeatures', class: Google::Apis::ContainerV1::AdvancedMachineFeatures, decorator: Google::Apis::ContainerV1::AdvancedMachineFeatures::Representation
1416
+
1401
1417
  property :boot_disk_kms_key, as: 'bootDiskKmsKey'
1402
1418
  property :disk_size_gb, as: 'diskSizeGb'
1403
1419
  property :disk_type, as: 'diskType'
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.19.0
4
+ version: 0.20.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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.19.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.20.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: []