google-apis-tpu_v2alpha1 0.37.0 → 0.38.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 48b6fb8910f17c8b1ca6664cad2b9c51867cde239f2d70c62943d4ae6cf06973
|
4
|
+
data.tar.gz: d573a633dc40dcacf2fa52aa5f2b354ec5f82e286417ccd3df28eac410c4f47a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d0a64d8f1af673c48e6c574e7b7ba0a8ade9bdc8a69c447f9892d11bf70cd91bb9f06e66e338e0fb8045ff0a6983b3a1284cd4fb6b3546b74fe17b6de16afb86
|
7
|
+
data.tar.gz: 43c58f27a6f3c478ddbf492442cd216b46e9685c649f4526dd7340231dea2f7fc9a4d78e6962e5e23840e7a7d6b72ace553762b613d3d83e1ebec982592e7616
|
data/CHANGELOG.md
CHANGED
@@ -1291,6 +1291,11 @@ module Google
|
|
1291
1291
|
# @return [String]
|
1292
1292
|
attr_accessor :name
|
1293
1293
|
|
1294
|
+
# Optional. The provisioning model for the resource.
|
1295
|
+
# Corresponds to the JSON property `provisioningModel`
|
1296
|
+
# @return [String]
|
1297
|
+
attr_accessor :provisioning_model
|
1298
|
+
|
1294
1299
|
# Defines the policy of the QueuedRequest.
|
1295
1300
|
# Corresponds to the JSON property `queueingPolicy`
|
1296
1301
|
# @return [Google::Apis::TpuV2alpha1::QueueingPolicy]
|
@@ -1302,6 +1307,11 @@ module Google
|
|
1302
1307
|
# @return [String]
|
1303
1308
|
attr_accessor :reservation_name
|
1304
1309
|
|
1310
|
+
# Defines the maximum lifetime of the requested resource.
|
1311
|
+
# Corresponds to the JSON property `runDuration`
|
1312
|
+
# @return [Google::Apis::TpuV2alpha1::RunDuration]
|
1313
|
+
attr_accessor :run_duration
|
1314
|
+
|
1305
1315
|
# Spot tier definition.
|
1306
1316
|
# Corresponds to the JSON property `spot`
|
1307
1317
|
# @return [Google::Apis::TpuV2alpha1::Spot]
|
@@ -1327,8 +1337,10 @@ module Google
|
|
1327
1337
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1328
1338
|
@guaranteed = args[:guaranteed] if args.key?(:guaranteed)
|
1329
1339
|
@name = args[:name] if args.key?(:name)
|
1340
|
+
@provisioning_model = args[:provisioning_model] if args.key?(:provisioning_model)
|
1330
1341
|
@queueing_policy = args[:queueing_policy] if args.key?(:queueing_policy)
|
1331
1342
|
@reservation_name = args[:reservation_name] if args.key?(:reservation_name)
|
1343
|
+
@run_duration = args[:run_duration] if args.key?(:run_duration)
|
1332
1344
|
@spot = args[:spot] if args.key?(:spot)
|
1333
1345
|
@state = args[:state] if args.key?(:state)
|
1334
1346
|
@tpu = args[:tpu] if args.key?(:tpu)
|
@@ -1504,6 +1516,31 @@ module Google
|
|
1504
1516
|
end
|
1505
1517
|
end
|
1506
1518
|
|
1519
|
+
# Defines the maximum lifetime of the requested resource.
|
1520
|
+
class RunDuration
|
1521
|
+
include Google::Apis::Core::Hashable
|
1522
|
+
|
1523
|
+
# The maximum duration of the requested resource.
|
1524
|
+
# Corresponds to the JSON property `maxRunDuration`
|
1525
|
+
# @return [String]
|
1526
|
+
attr_accessor :max_run_duration
|
1527
|
+
|
1528
|
+
# The time at which the requested resource will be terminated.
|
1529
|
+
# Corresponds to the JSON property `terminationTime`
|
1530
|
+
# @return [String]
|
1531
|
+
attr_accessor :termination_time
|
1532
|
+
|
1533
|
+
def initialize(**args)
|
1534
|
+
update!(**args)
|
1535
|
+
end
|
1536
|
+
|
1537
|
+
# Update properties of this object
|
1538
|
+
def update!(**args)
|
1539
|
+
@max_run_duration = args[:max_run_duration] if args.key?(:max_run_duration)
|
1540
|
+
@termination_time = args[:termination_time] if args.key?(:termination_time)
|
1541
|
+
end
|
1542
|
+
end
|
1543
|
+
|
1507
1544
|
# A runtime version that a Node can be configured with.
|
1508
1545
|
class RuntimeVersion
|
1509
1546
|
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.38.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250320"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -292,6 +292,12 @@ module Google
|
|
292
292
|
include Google::Apis::Core::JsonObjectSupport
|
293
293
|
end
|
294
294
|
|
295
|
+
class RunDuration
|
296
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
|
+
|
298
|
+
include Google::Apis::Core::JsonObjectSupport
|
299
|
+
end
|
300
|
+
|
295
301
|
class RuntimeVersion
|
296
302
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
303
|
|
@@ -778,9 +784,12 @@ module Google
|
|
778
784
|
property :guaranteed, as: 'guaranteed', class: Google::Apis::TpuV2alpha1::Guaranteed, decorator: Google::Apis::TpuV2alpha1::Guaranteed::Representation
|
779
785
|
|
780
786
|
property :name, as: 'name'
|
787
|
+
property :provisioning_model, as: 'provisioningModel'
|
781
788
|
property :queueing_policy, as: 'queueingPolicy', class: Google::Apis::TpuV2alpha1::QueueingPolicy, decorator: Google::Apis::TpuV2alpha1::QueueingPolicy::Representation
|
782
789
|
|
783
790
|
property :reservation_name, as: 'reservationName'
|
791
|
+
property :run_duration, as: 'runDuration', class: Google::Apis::TpuV2alpha1::RunDuration, decorator: Google::Apis::TpuV2alpha1::RunDuration::Representation
|
792
|
+
|
784
793
|
property :spot, as: 'spot', class: Google::Apis::TpuV2alpha1::Spot, decorator: Google::Apis::TpuV2alpha1::Spot::Representation
|
785
794
|
|
786
795
|
property :state, as: 'state', class: Google::Apis::TpuV2alpha1::QueuedResourceState, decorator: Google::Apis::TpuV2alpha1::QueuedResourceState::Representation
|
@@ -842,6 +851,14 @@ module Google
|
|
842
851
|
end
|
843
852
|
end
|
844
853
|
|
854
|
+
class RunDuration
|
855
|
+
# @private
|
856
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
857
|
+
property :max_run_duration, as: 'maxRunDuration'
|
858
|
+
property :termination_time, as: 'terminationTime'
|
859
|
+
end
|
860
|
+
end
|
861
|
+
|
845
862
|
class RuntimeVersion
|
846
863
|
# @private
|
847
864
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -117,6 +117,9 @@ module Google
|
|
117
117
|
# Lists information about the supported locations for this service.
|
118
118
|
# @param [String] name
|
119
119
|
# The resource that owns the locations collection, if applicable.
|
120
|
+
# @param [Array<String>, String] extra_location_types
|
121
|
+
# Optional. A list of extra location types that should be used as conditions for
|
122
|
+
# controlling the visibility of the locations.
|
120
123
|
# @param [String] filter
|
121
124
|
# A filter to narrow down results to a preferred subset. The filtering language
|
122
125
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
@@ -144,11 +147,12 @@ module Google
|
|
144
147
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
145
148
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
146
149
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
147
|
-
def list_project_locations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
150
|
+
def list_project_locations(name, extra_location_types: nil, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
148
151
|
command = make_simple_command(:get, 'v2alpha1/{+name}/locations', options)
|
149
152
|
command.response_representation = Google::Apis::TpuV2alpha1::ListLocationsResponse::Representation
|
150
153
|
command.response_class = Google::Apis::TpuV2alpha1::ListLocationsResponse
|
151
154
|
command.params['name'] = name unless name.nil?
|
155
|
+
command.query['extraLocationTypes'] = extra_location_types unless extra_location_types.nil?
|
152
156
|
command.query['filter'] = filter unless filter.nil?
|
153
157
|
command.query['pageSize'] = page_size unless page_size.nil?
|
154
158
|
command.query['pageToken'] = page_token unless page_token.nil?
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.38.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-30 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-tpu_v2alpha1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-tpu_v2alpha1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-tpu_v2alpha1/v0.38.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-tpu_v2alpha1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|