google-apis-baremetalsolution_v2 0.26.0 → 0.28.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: d1494cec88c274d328a48e2c2feac9b9926c2b2b9342dfec8fcc000a16f4254f
|
|
4
|
+
data.tar.gz: 467e87bb807e27d14050e0e8b457e6e5d2905293b125d9d01bbc344b716a97c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b6835549142b1a08da6a6bf8ac6539d214df011aee865386ee243861f25b6b8fb7e38e051796e73e40d363689eb565350d5ccc6657e7b11f76a57c40a7b914ab
|
|
7
|
+
data.tar.gz: 9051c678b384b14f52e8e71e9ca217312355af323f781ecdd819139659aaa80856e40753c3af4c50d43562f1740cea3b30e9f7d9354730bcb199fe7bea7567fd
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-baremetalsolution_v2
|
|
2
2
|
|
|
3
|
+
### v0.28.0 (2023-01-22)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20230113
|
|
6
|
+
* Regenerated using generator version 0.11.1
|
|
7
|
+
|
|
8
|
+
### v0.27.0 (2022-12-26)
|
|
9
|
+
|
|
10
|
+
* Regenerated from discovery document revision 20221219
|
|
11
|
+
|
|
3
12
|
### v0.26.0 (2022-12-07)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20221201
|
|
@@ -1590,65 +1590,6 @@ module Google
|
|
|
1590
1590
|
end
|
|
1591
1591
|
end
|
|
1592
1592
|
|
|
1593
|
-
# Represents the metadata from a long-running operation.
|
|
1594
|
-
class OperationMetadata
|
|
1595
|
-
include Google::Apis::Core::Hashable
|
|
1596
|
-
|
|
1597
|
-
# Output only. API version used with the operation.
|
|
1598
|
-
# Corresponds to the JSON property `apiVersion`
|
|
1599
|
-
# @return [String]
|
|
1600
|
-
attr_accessor :api_version
|
|
1601
|
-
|
|
1602
|
-
# Output only. The time the operation was created.
|
|
1603
|
-
# Corresponds to the JSON property `createTime`
|
|
1604
|
-
# @return [String]
|
|
1605
|
-
attr_accessor :create_time
|
|
1606
|
-
|
|
1607
|
-
# Output only. The time the operation finished running.
|
|
1608
|
-
# Corresponds to the JSON property `endTime`
|
|
1609
|
-
# @return [String]
|
|
1610
|
-
attr_accessor :end_time
|
|
1611
|
-
|
|
1612
|
-
# Output only. Identifies whether the user requested the cancellation of the
|
|
1613
|
-
# operation. Operations that have been successfully cancelled have Operation.
|
|
1614
|
-
# error value with a google.rpc.Status.code of 1, corresponding to `Code.
|
|
1615
|
-
# CANCELLED`.
|
|
1616
|
-
# Corresponds to the JSON property `requestedCancellation`
|
|
1617
|
-
# @return [Boolean]
|
|
1618
|
-
attr_accessor :requested_cancellation
|
|
1619
|
-
alias_method :requested_cancellation?, :requested_cancellation
|
|
1620
|
-
|
|
1621
|
-
# Output only. Human-readable status of the operation, if any.
|
|
1622
|
-
# Corresponds to the JSON property `statusMessage`
|
|
1623
|
-
# @return [String]
|
|
1624
|
-
attr_accessor :status_message
|
|
1625
|
-
|
|
1626
|
-
# Output only. Server-defined resource path for the target of the operation.
|
|
1627
|
-
# Corresponds to the JSON property `target`
|
|
1628
|
-
# @return [String]
|
|
1629
|
-
attr_accessor :target
|
|
1630
|
-
|
|
1631
|
-
# Output only. Name of the action executed by the operation.
|
|
1632
|
-
# Corresponds to the JSON property `verb`
|
|
1633
|
-
# @return [String]
|
|
1634
|
-
attr_accessor :verb
|
|
1635
|
-
|
|
1636
|
-
def initialize(**args)
|
|
1637
|
-
update!(**args)
|
|
1638
|
-
end
|
|
1639
|
-
|
|
1640
|
-
# Update properties of this object
|
|
1641
|
-
def update!(**args)
|
|
1642
|
-
@api_version = args[:api_version] if args.key?(:api_version)
|
|
1643
|
-
@create_time = args[:create_time] if args.key?(:create_time)
|
|
1644
|
-
@end_time = args[:end_time] if args.key?(:end_time)
|
|
1645
|
-
@requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
|
|
1646
|
-
@status_message = args[:status_message] if args.key?(:status_message)
|
|
1647
|
-
@target = args[:target] if args.key?(:target)
|
|
1648
|
-
@verb = args[:verb] if args.key?(:verb)
|
|
1649
|
-
end
|
|
1650
|
-
end
|
|
1651
|
-
|
|
1652
1593
|
# A provisioning configuration.
|
|
1653
1594
|
class ProvisioningConfig
|
|
1654
1595
|
include Google::Apis::Core::Hashable
|
|
@@ -2296,6 +2237,12 @@ module Google
|
|
|
2296
2237
|
# @return [String]
|
|
2297
2238
|
attr_accessor :state
|
|
2298
2239
|
|
|
2240
|
+
# Input only. Name of the storage aggregate pool to allocate the volume in. Can
|
|
2241
|
+
# be used only for VOLUME_PERFORMANCE_TIER_ASSIGNED volumes.
|
|
2242
|
+
# Corresponds to the JSON property `storageAggregatePool`
|
|
2243
|
+
# @return [String]
|
|
2244
|
+
attr_accessor :storage_aggregate_pool
|
|
2245
|
+
|
|
2299
2246
|
# The storage type for this volume.
|
|
2300
2247
|
# Corresponds to the JSON property `storageType`
|
|
2301
2248
|
# @return [String]
|
|
@@ -2332,6 +2279,7 @@ module Google
|
|
|
2332
2279
|
@snapshot_reservation_detail = args[:snapshot_reservation_detail] if args.key?(:snapshot_reservation_detail)
|
|
2333
2280
|
@snapshot_schedule_policy = args[:snapshot_schedule_policy] if args.key?(:snapshot_schedule_policy)
|
|
2334
2281
|
@state = args[:state] if args.key?(:state)
|
|
2282
|
+
@storage_aggregate_pool = args[:storage_aggregate_pool] if args.key?(:storage_aggregate_pool)
|
|
2335
2283
|
@storage_type = args[:storage_type] if args.key?(:storage_type)
|
|
2336
2284
|
@workload_profile = args[:workload_profile] if args.key?(:workload_profile)
|
|
2337
2285
|
end
|
|
@@ -2394,6 +2342,12 @@ module Google
|
|
|
2394
2342
|
attr_accessor :snapshots_enabled
|
|
2395
2343
|
alias_method :snapshots_enabled?, :snapshots_enabled
|
|
2396
2344
|
|
|
2345
|
+
# Input only. Name of the storage aggregate pool to allocate the volume in. Can
|
|
2346
|
+
# be used only for VOLUME_PERFORMANCE_TIER_ASSIGNED volumes.
|
|
2347
|
+
# Corresponds to the JSON property `storageAggregatePool`
|
|
2348
|
+
# @return [String]
|
|
2349
|
+
attr_accessor :storage_aggregate_pool
|
|
2350
|
+
|
|
2397
2351
|
# The type of this Volume.
|
|
2398
2352
|
# Corresponds to the JSON property `type`
|
|
2399
2353
|
# @return [String]
|
|
@@ -2421,6 +2375,7 @@ module Google
|
|
|
2421
2375
|
@protocol = args[:protocol] if args.key?(:protocol)
|
|
2422
2376
|
@size_gb = args[:size_gb] if args.key?(:size_gb)
|
|
2423
2377
|
@snapshots_enabled = args[:snapshots_enabled] if args.key?(:snapshots_enabled)
|
|
2378
|
+
@storage_aggregate_pool = args[:storage_aggregate_pool] if args.key?(:storage_aggregate_pool)
|
|
2424
2379
|
@type = args[:type] if args.key?(:type)
|
|
2425
2380
|
@user_note = args[:user_note] if args.key?(:user_note)
|
|
2426
2381
|
end
|
|
@@ -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.28.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.11.
|
|
22
|
+
GENERATOR_VERSION = "0.11.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230113"
|
|
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
|
|
|
@@ -767,19 +761,6 @@ module Google
|
|
|
767
761
|
end
|
|
768
762
|
end
|
|
769
763
|
|
|
770
|
-
class OperationMetadata
|
|
771
|
-
# @private
|
|
772
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
|
773
|
-
property :api_version, as: 'apiVersion'
|
|
774
|
-
property :create_time, as: 'createTime'
|
|
775
|
-
property :end_time, as: 'endTime'
|
|
776
|
-
property :requested_cancellation, as: 'requestedCancellation'
|
|
777
|
-
property :status_message, as: 'statusMessage'
|
|
778
|
-
property :target, as: 'target'
|
|
779
|
-
property :verb, as: 'verb'
|
|
780
|
-
end
|
|
781
|
-
end
|
|
782
|
-
|
|
783
764
|
class ProvisioningConfig
|
|
784
765
|
# @private
|
|
785
766
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -960,6 +941,7 @@ module Google
|
|
|
960
941
|
|
|
961
942
|
property :snapshot_schedule_policy, as: 'snapshotSchedulePolicy'
|
|
962
943
|
property :state, as: 'state'
|
|
944
|
+
property :storage_aggregate_pool, as: 'storageAggregatePool'
|
|
963
945
|
property :storage_type, as: 'storageType'
|
|
964
946
|
property :workload_profile, as: 'workloadProfile'
|
|
965
947
|
end
|
|
@@ -980,6 +962,7 @@ module Google
|
|
|
980
962
|
property :protocol, as: 'protocol'
|
|
981
963
|
property :size_gb, as: 'sizeGb'
|
|
982
964
|
property :snapshots_enabled, as: 'snapshotsEnabled'
|
|
965
|
+
property :storage_aggregate_pool, as: 'storageAggregatePool'
|
|
983
966
|
property :type, as: 'type'
|
|
984
967
|
property :user_note, as: 'userNote'
|
|
985
968
|
end
|
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.28.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-22 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.28.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: []
|
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
76
|
version: '0'
|
|
77
77
|
requirements: []
|
|
78
|
-
rubygems_version: 3.
|
|
78
|
+
rubygems_version: 3.4.2
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for Bare Metal Solution API V2
|