google-apis-tpu_v2alpha1 0.8.0 → 0.10.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: 0da4c63e7d15d384725d201311aa7f1a348d046d60ce676fa0d28b8844494747
4
+ data.tar.gz: 7c515a127aa7791f627b5394ff4b802b36beb4304f29298e689f19c6abbaa984
5
5
  SHA512:
6
- metadata.gz: 2655ed2d6ce1480d4605f010bad7d4153670323aa3cf94759858912db4c8af42ac0fe9a807ae87ee2c98ac76d2256760bae090fa195410e4e22bd70f8b8fbf46
7
- data.tar.gz: c3f13ab3fe3f5e89eb4da8c9b1272aeffc10574b40c5182c515281a607495b5acee2d6f5451e7f3b24bd83c9185ae95302b347d52c6831f294bfc86c624fb8db
6
+ metadata.gz: 73fbad57383031b24ab0c4ae0d36fa84413a0a1d38eaea2328cd480e46bfb76684d1779009f7d0e3037b1f6ded713729cc640c2fb18919ac13faafe229837cf3
7
+ data.tar.gz: c2ae795d90eba2429a36d8976acf333288849c6aa4c6e01b9451cc6fd533108f6f8b06eb03d0b6fb213f39c483e4fadd37ca78bbf67d8f183508467961cfc716
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-tpu_v2alpha1
2
2
 
3
+ ### v0.10.0 (2022-09-21)
4
+
5
+ * Regenerated using generator version 0.10.0
6
+
7
+ ### v0.9.0 (2022-09-10)
8
+
9
+ * Regenerated from discovery document revision 20220907
10
+
3
11
  ### v0.8.0 (2022-07-04)
4
12
 
5
13
  * 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.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.9.0"
22
+ GENERATOR_VERSION = "0.10.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.10.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-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.7'
19
+ version: 0.9.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.7'
29
+ version: 0.9.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.10.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: []