google-apis-baremetalsolution_v2 0.25.0 → 0.26.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: '08fb260c79fd0e283b115c85c0c50f709f65d1890e24d4a3cfd9dd229a434b10'
|
|
4
|
+
data.tar.gz: b0450906d4bc84fcf7307855f41bf693f98b9e38d31074dbaada55957bf09db0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6a01a4f68c7269fce29ff108ba89b9b968aabe1908d23c44a6402e982633efb332f8682a63fcfe7e98232493b1a0a0e293f4e12bf17a8caf5dd5687f2be45da6
|
|
7
|
+
data.tar.gz: b1a21e4abef8a6f7726f02594fdb2108abf87a2d811d13bbc0615fcda745f016c972cf9aa7c82bc511d67dd36a2a3126834da8d1188625eea3a6386e263d075d
|
data/CHANGELOG.md
CHANGED
|
@@ -355,6 +355,11 @@ module Google
|
|
|
355
355
|
# @return [Array<Google::Apis::BaremetalsolutionV2::Volume>]
|
|
356
356
|
attr_accessor :volumes
|
|
357
357
|
|
|
358
|
+
# The workload profile for the instance.
|
|
359
|
+
# Corresponds to the JSON property `workloadProfile`
|
|
360
|
+
# @return [String]
|
|
361
|
+
attr_accessor :workload_profile
|
|
362
|
+
|
|
358
363
|
def initialize(**args)
|
|
359
364
|
update!(**args)
|
|
360
365
|
end
|
|
@@ -378,6 +383,7 @@ module Google
|
|
|
378
383
|
@state = args[:state] if args.key?(:state)
|
|
379
384
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
380
385
|
@volumes = args[:volumes] if args.key?(:volumes)
|
|
386
|
+
@workload_profile = args[:workload_profile] if args.key?(:workload_profile)
|
|
381
387
|
end
|
|
382
388
|
end
|
|
383
389
|
|
|
@@ -2295,6 +2301,11 @@ module Google
|
|
|
2295
2301
|
# @return [String]
|
|
2296
2302
|
attr_accessor :storage_type
|
|
2297
2303
|
|
|
2304
|
+
# The workload profile for the volume.
|
|
2305
|
+
# Corresponds to the JSON property `workloadProfile`
|
|
2306
|
+
# @return [String]
|
|
2307
|
+
attr_accessor :workload_profile
|
|
2308
|
+
|
|
2298
2309
|
def initialize(**args)
|
|
2299
2310
|
update!(**args)
|
|
2300
2311
|
end
|
|
@@ -2322,6 +2333,7 @@ module Google
|
|
|
2322
2333
|
@snapshot_schedule_policy = args[:snapshot_schedule_policy] if args.key?(:snapshot_schedule_policy)
|
|
2323
2334
|
@state = args[:state] if args.key?(:state)
|
|
2324
2335
|
@storage_type = args[:storage_type] if args.key?(:storage_type)
|
|
2336
|
+
@workload_profile = args[:workload_profile] if args.key?(:workload_profile)
|
|
2325
2337
|
end
|
|
2326
2338
|
end
|
|
2327
2339
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module BaremetalsolutionV2
|
|
18
18
|
# Version of the google-apis-baremetalsolution_v2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.26.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20221201"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -449,6 +449,7 @@ module Google
|
|
|
449
449
|
property :update_time, as: 'updateTime'
|
|
450
450
|
collection :volumes, as: 'volumes', class: Google::Apis::BaremetalsolutionV2::Volume, decorator: Google::Apis::BaremetalsolutionV2::Volume::Representation
|
|
451
451
|
|
|
452
|
+
property :workload_profile, as: 'workloadProfile'
|
|
452
453
|
end
|
|
453
454
|
end
|
|
454
455
|
|
|
@@ -960,6 +961,7 @@ module Google
|
|
|
960
961
|
property :snapshot_schedule_policy, as: 'snapshotSchedulePolicy'
|
|
961
962
|
property :state, as: 'state'
|
|
962
963
|
property :storage_type, as: 'storageType'
|
|
964
|
+
property :workload_profile, as: 'workloadProfile'
|
|
963
965
|
end
|
|
964
966
|
end
|
|
965
967
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-baremetalsolution_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.26.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-12-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-baremetalsolution_v2/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-baremetalsolution_v2/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-baremetalsolution_v2/v0.26.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-baremetalsolution_v2
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|