google-apis-baremetalsolution_v2 0.25.0 → 0.27.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: eae2904b497bd4fab5085ffbce2cee0ab70db737864c66af2dcd534bc7a12fc4
|
|
4
|
+
data.tar.gz: 9871f4ac2ccdf4f9680ff4359f122f9ae43e20bf33e9f0c55c3ea4c79cae8996
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 257031f7db0516cc34d0f6bffee973da9a63ffe9dfbcee6607c44c3861d3d6361c263d1cd65d444bd1b218838869eecd70537a202da28bf5301ca060db120397
|
|
7
|
+
data.tar.gz: 353dcb5540fe0c73d6e8aa7bfb07208f84bb600af5b4afc84c21e8f75aa5805d1e3c3cf5d058f43df97c91561a21da71104a27eea44e4241fa10913b41301fe6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-baremetalsolution_v2
|
|
2
2
|
|
|
3
|
+
### v0.27.0 (2022-12-26)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20221219
|
|
6
|
+
|
|
7
|
+
### v0.26.0 (2022-12-07)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20221201
|
|
10
|
+
|
|
3
11
|
### v0.25.0 (2022-10-28)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20221017
|
|
@@ -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
|
|
|
@@ -1584,65 +1590,6 @@ module Google
|
|
|
1584
1590
|
end
|
|
1585
1591
|
end
|
|
1586
1592
|
|
|
1587
|
-
# Represents the metadata from a long-running operation.
|
|
1588
|
-
class OperationMetadata
|
|
1589
|
-
include Google::Apis::Core::Hashable
|
|
1590
|
-
|
|
1591
|
-
# Output only. API version used with the operation.
|
|
1592
|
-
# Corresponds to the JSON property `apiVersion`
|
|
1593
|
-
# @return [String]
|
|
1594
|
-
attr_accessor :api_version
|
|
1595
|
-
|
|
1596
|
-
# Output only. The time the operation was created.
|
|
1597
|
-
# Corresponds to the JSON property `createTime`
|
|
1598
|
-
# @return [String]
|
|
1599
|
-
attr_accessor :create_time
|
|
1600
|
-
|
|
1601
|
-
# Output only. The time the operation finished running.
|
|
1602
|
-
# Corresponds to the JSON property `endTime`
|
|
1603
|
-
# @return [String]
|
|
1604
|
-
attr_accessor :end_time
|
|
1605
|
-
|
|
1606
|
-
# Output only. Identifies whether the user requested the cancellation of the
|
|
1607
|
-
# operation. Operations that have been successfully cancelled have Operation.
|
|
1608
|
-
# error value with a google.rpc.Status.code of 1, corresponding to `Code.
|
|
1609
|
-
# CANCELLED`.
|
|
1610
|
-
# Corresponds to the JSON property `requestedCancellation`
|
|
1611
|
-
# @return [Boolean]
|
|
1612
|
-
attr_accessor :requested_cancellation
|
|
1613
|
-
alias_method :requested_cancellation?, :requested_cancellation
|
|
1614
|
-
|
|
1615
|
-
# Output only. Human-readable status of the operation, if any.
|
|
1616
|
-
# Corresponds to the JSON property `statusMessage`
|
|
1617
|
-
# @return [String]
|
|
1618
|
-
attr_accessor :status_message
|
|
1619
|
-
|
|
1620
|
-
# Output only. Server-defined resource path for the target of the operation.
|
|
1621
|
-
# Corresponds to the JSON property `target`
|
|
1622
|
-
# @return [String]
|
|
1623
|
-
attr_accessor :target
|
|
1624
|
-
|
|
1625
|
-
# Output only. Name of the action executed by the operation.
|
|
1626
|
-
# Corresponds to the JSON property `verb`
|
|
1627
|
-
# @return [String]
|
|
1628
|
-
attr_accessor :verb
|
|
1629
|
-
|
|
1630
|
-
def initialize(**args)
|
|
1631
|
-
update!(**args)
|
|
1632
|
-
end
|
|
1633
|
-
|
|
1634
|
-
# Update properties of this object
|
|
1635
|
-
def update!(**args)
|
|
1636
|
-
@api_version = args[:api_version] if args.key?(:api_version)
|
|
1637
|
-
@create_time = args[:create_time] if args.key?(:create_time)
|
|
1638
|
-
@end_time = args[:end_time] if args.key?(:end_time)
|
|
1639
|
-
@requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
|
|
1640
|
-
@status_message = args[:status_message] if args.key?(:status_message)
|
|
1641
|
-
@target = args[:target] if args.key?(:target)
|
|
1642
|
-
@verb = args[:verb] if args.key?(:verb)
|
|
1643
|
-
end
|
|
1644
|
-
end
|
|
1645
|
-
|
|
1646
1593
|
# A provisioning configuration.
|
|
1647
1594
|
class ProvisioningConfig
|
|
1648
1595
|
include Google::Apis::Core::Hashable
|
|
@@ -2295,6 +2242,11 @@ module Google
|
|
|
2295
2242
|
# @return [String]
|
|
2296
2243
|
attr_accessor :storage_type
|
|
2297
2244
|
|
|
2245
|
+
# The workload profile for the volume.
|
|
2246
|
+
# Corresponds to the JSON property `workloadProfile`
|
|
2247
|
+
# @return [String]
|
|
2248
|
+
attr_accessor :workload_profile
|
|
2249
|
+
|
|
2298
2250
|
def initialize(**args)
|
|
2299
2251
|
update!(**args)
|
|
2300
2252
|
end
|
|
@@ -2322,6 +2274,7 @@ module Google
|
|
|
2322
2274
|
@snapshot_schedule_policy = args[:snapshot_schedule_policy] if args.key?(:snapshot_schedule_policy)
|
|
2323
2275
|
@state = args[:state] if args.key?(:state)
|
|
2324
2276
|
@storage_type = args[:storage_type] if args.key?(:storage_type)
|
|
2277
|
+
@workload_profile = args[:workload_profile] if args.key?(:workload_profile)
|
|
2325
2278
|
end
|
|
2326
2279
|
end
|
|
2327
2280
|
|
|
@@ -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.27.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 = "20221219"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -238,12 +238,6 @@ module Google
|
|
|
238
238
|
include Google::Apis::Core::JsonObjectSupport
|
|
239
239
|
end
|
|
240
240
|
|
|
241
|
-
class OperationMetadata
|
|
242
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
243
|
-
|
|
244
|
-
include Google::Apis::Core::JsonObjectSupport
|
|
245
|
-
end
|
|
246
|
-
|
|
247
241
|
class ProvisioningConfig
|
|
248
242
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
249
243
|
|
|
@@ -449,6 +443,7 @@ module Google
|
|
|
449
443
|
property :update_time, as: 'updateTime'
|
|
450
444
|
collection :volumes, as: 'volumes', class: Google::Apis::BaremetalsolutionV2::Volume, decorator: Google::Apis::BaremetalsolutionV2::Volume::Representation
|
|
451
445
|
|
|
446
|
+
property :workload_profile, as: 'workloadProfile'
|
|
452
447
|
end
|
|
453
448
|
end
|
|
454
449
|
|
|
@@ -766,19 +761,6 @@ module Google
|
|
|
766
761
|
end
|
|
767
762
|
end
|
|
768
763
|
|
|
769
|
-
class OperationMetadata
|
|
770
|
-
# @private
|
|
771
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
772
|
-
property :api_version, as: 'apiVersion'
|
|
773
|
-
property :create_time, as: 'createTime'
|
|
774
|
-
property :end_time, as: 'endTime'
|
|
775
|
-
property :requested_cancellation, as: 'requestedCancellation'
|
|
776
|
-
property :status_message, as: 'statusMessage'
|
|
777
|
-
property :target, as: 'target'
|
|
778
|
-
property :verb, as: 'verb'
|
|
779
|
-
end
|
|
780
|
-
end
|
|
781
|
-
|
|
782
764
|
class ProvisioningConfig
|
|
783
765
|
# @private
|
|
784
766
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -960,6 +942,7 @@ module Google
|
|
|
960
942
|
property :snapshot_schedule_policy, as: 'snapshotSchedulePolicy'
|
|
961
943
|
property :state, as: 'state'
|
|
962
944
|
property :storage_type, as: 'storageType'
|
|
945
|
+
property :workload_profile, as: 'workloadProfile'
|
|
963
946
|
end
|
|
964
947
|
end
|
|
965
948
|
|
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.27.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:
|
|
11
|
+
date: 2023-01-04 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.27.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: []
|