google-apis-tpu_v2alpha1 0.8.0 → 0.9.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: 05aa6ae1d6804237164f57ed5f7f5134ee04aa4efba8c5110ff4ff08f7c287e2
4
- data.tar.gz: ded747666a1509d06d5025606379a6df2d2ba34c468d43a82ff620ce5ab83ddc
3
+ metadata.gz: d007d5a98642fb5ffdeceb88c43dc25b12200b9103cc817b50687d6194a45417
4
+ data.tar.gz: e47c74d93c12367c9743978abb94a0dc3f95d1c64b0b9bc4c437675759dc9c28
5
5
  SHA512:
6
- metadata.gz: 2655ed2d6ce1480d4605f010bad7d4153670323aa3cf94759858912db4c8af42ac0fe9a807ae87ee2c98ac76d2256760bae090fa195410e4e22bd70f8b8fbf46
7
- data.tar.gz: c3f13ab3fe3f5e89eb4da8c9b1272aeffc10574b40c5182c515281a607495b5acee2d6f5451e7f3b24bd83c9185ae95302b347d52c6831f294bfc86c624fb8db
6
+ metadata.gz: ae9f555e382c1ecbeb6bfa398cdb97fcc75c98e8b27b1f0e6e47ade1ce7325bff41f16b434f09f12b35fd43954dffa8829911419efd4109d0cc1cc854bafa3ae
7
+ data.tar.gz: e8f740f910ae44c92e990b7ca59fd20163b5ce05a89b9d6034aa7abd6f15cb8bf65ca27638f66c9168c473d2550daba35e577b5e662d14a694d7d23209514c6b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-tpu_v2alpha1
2
2
 
3
+ ### v0.9.0 (2022-09-10)
4
+
5
+ * Regenerated from discovery document revision 20220907
6
+
3
7
  ### v0.8.0 (2022-07-04)
4
8
 
5
9
  * Regenerated from discovery document revision 20220629
@@ -627,6 +627,11 @@ module Google
627
627
  # @return [Google::Apis::TpuV2alpha1::ServiceAccount]
628
628
  attr_accessor :service_account
629
629
 
630
+ # A set of Shielded Instance options.
631
+ # Corresponds to the JSON property `shieldedInstanceConfig`
632
+ # @return [Google::Apis::TpuV2alpha1::ShieldedInstanceConfig]
633
+ attr_accessor :shielded_instance_config
634
+
630
635
  # Output only. The current state for the TPU Node.
631
636
  # Corresponds to the JSON property `state`
632
637
  # @return [String]
@@ -666,6 +671,7 @@ module Google
666
671
  @runtime_version = args[:runtime_version] if args.key?(:runtime_version)
667
672
  @scheduling_config = args[:scheduling_config] if args.key?(:scheduling_config)
668
673
  @service_account = args[:service_account] if args.key?(:service_account)
674
+ @shielded_instance_config = args[:shielded_instance_config] if args.key?(:shielded_instance_config)
669
675
  @state = args[:state] if args.key?(:state)
670
676
  @symptoms = args[:symptoms] if args.key?(:symptoms)
671
677
  @tags = args[:tags] if args.key?(:tags)
@@ -889,6 +895,26 @@ module Google
889
895
  end
890
896
  end
891
897
 
898
+ # A set of Shielded Instance options.
899
+ class ShieldedInstanceConfig
900
+ include Google::Apis::Core::Hashable
901
+
902
+ # Defines whether the instance has Secure Boot enabled.
903
+ # Corresponds to the JSON property `enableSecureBoot`
904
+ # @return [Boolean]
905
+ attr_accessor :enable_secure_boot
906
+ alias_method :enable_secure_boot?, :enable_secure_boot
907
+
908
+ def initialize(**args)
909
+ update!(**args)
910
+ end
911
+
912
+ # Update properties of this object
913
+ def update!(**args)
914
+ @enable_secure_boot = args[:enable_secure_boot] if args.key?(:enable_secure_boot)
915
+ end
916
+ end
917
+
892
918
  # Request for SimulateMaintenanceEvent.
893
919
  class SimulateMaintenanceEventRequest
894
920
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module TpuV2alpha1
18
18
  # Version of the google-apis-tpu_v2alpha1 gem
19
- GEM_VERSION = "0.8.0"
19
+ GEM_VERSION = "0.9.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 = "20220629"
25
+ REVISION = "20220907"
26
26
  end
27
27
  end
28
28
  end
@@ -178,6 +178,12 @@ module Google
178
178
  include Google::Apis::Core::JsonObjectSupport
179
179
  end
180
180
 
181
+ class ShieldedInstanceConfig
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
181
187
  class SimulateMaintenanceEventRequest
182
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
189
 
@@ -397,6 +403,8 @@ module Google
397
403
 
398
404
  property :service_account, as: 'serviceAccount', class: Google::Apis::TpuV2alpha1::ServiceAccount, decorator: Google::Apis::TpuV2alpha1::ServiceAccount::Representation
399
405
 
406
+ property :shielded_instance_config, as: 'shieldedInstanceConfig', class: Google::Apis::TpuV2alpha1::ShieldedInstanceConfig, decorator: Google::Apis::TpuV2alpha1::ShieldedInstanceConfig::Representation
407
+
400
408
  property :state, as: 'state'
401
409
  collection :symptoms, as: 'symptoms', class: Google::Apis::TpuV2alpha1::Symptom, decorator: Google::Apis::TpuV2alpha1::Symptom::Representation
402
410
 
@@ -460,6 +468,13 @@ module Google
460
468
  end
461
469
  end
462
470
 
471
+ class ShieldedInstanceConfig
472
+ # @private
473
+ class Representation < Google::Apis::Core::JsonRepresentation
474
+ property :enable_secure_boot, as: 'enableSecureBoot'
475
+ end
476
+ end
477
+
463
478
  class SimulateMaintenanceEventRequest
464
479
  # @private
465
480
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-tpu_v2alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.9.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-07-11 00:00:00.000000000 Z
11
+ date: 2022-09-12 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-tpu_v2alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-tpu_v2alpha1/v0.8.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-tpu_v2alpha1/v0.9.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-tpu_v2alpha1
63
63
  post_install_message:
64
64
  rdoc_options: []