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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d007d5a98642fb5ffdeceb88c43dc25b12200b9103cc817b50687d6194a45417
|
4
|
+
data.tar.gz: e47c74d93c12367c9743978abb94a0dc3f95d1c64b0b9bc4c437675759dc9c28
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae9f555e382c1ecbeb6bfa398cdb97fcc75c98e8b27b1f0e6e47ade1ce7325bff41f16b434f09f12b35fd43954dffa8829911419efd4109d0cc1cc854bafa3ae
|
7
|
+
data.tar.gz: e8f740f910ae44c92e990b7ca59fd20163b5ce05a89b9d6034aa7abd6f15cb8bf65ca27638f66c9168c473d2550daba35e577b5e662d14a694d7d23209514c6b
|
data/CHANGELOG.md
CHANGED
@@ -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.
|
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 = "
|
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.
|
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-
|
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.
|
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: []
|