google-apis-baremetalsolution_v2 0.20.0 → 0.21.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/baremetalsolution_v2/classes.rb +8 -0
- data/lib/google/apis/baremetalsolution_v2/gem_version.rb +2 -2
- data/lib/google/apis/baremetalsolution_v2/representations.rb +1 -0
- data/lib/google/apis/baremetalsolution_v2/service.rb +1 -3
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bdda774e2df0db0b53d093680b310807ce959faac9ced500c731ee91b32f89bf
|
|
4
|
+
data.tar.gz: 565c052888026e00cdc87495ac053f115a68b63cae40246ef64e1afb7b6e84cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bebcf03a015705f6d863f232977706c89b3da80c391d55d8f7cb126617aea1cbac49d2ca354f63c396190ee3c14b78447c5e9bf099e5d49b1ae830bfefc5bef8
|
|
7
|
+
data.tar.gz: 838a074a2593c25a0de39a9f3e66c51a219caba27488020ed93239e315626cc16c952e8cace936101c8a97d75661777b4cdfa5460420c81e1a554c243a356102
|
data/CHANGELOG.md
CHANGED
|
@@ -1950,6 +1950,13 @@ module Google
|
|
|
1950
1950
|
# @return [Fixnum]
|
|
1951
1951
|
attr_accessor :auto_grown_size_gib
|
|
1952
1952
|
|
|
1953
|
+
# Output only. Whether this volume is a boot volume. A boot volume is one which
|
|
1954
|
+
# contains a boot LUN.
|
|
1955
|
+
# Corresponds to the JSON property `bootVolume`
|
|
1956
|
+
# @return [Boolean]
|
|
1957
|
+
attr_accessor :boot_volume
|
|
1958
|
+
alias_method :boot_volume?, :boot_volume
|
|
1959
|
+
|
|
1953
1960
|
# The current size of this storage volume, in GiB, including space reserved for
|
|
1954
1961
|
# snapshots. This size might be different than the requested size if the storage
|
|
1955
1962
|
# volume has been configured with auto grow or auto shrink.
|
|
@@ -2050,6 +2057,7 @@ module Google
|
|
|
2050
2057
|
# Update properties of this object
|
|
2051
2058
|
def update!(**args)
|
|
2052
2059
|
@auto_grown_size_gib = args[:auto_grown_size_gib] if args.key?(:auto_grown_size_gib)
|
|
2060
|
+
@boot_volume = args[:boot_volume] if args.key?(:boot_volume)
|
|
2053
2061
|
@current_size_gib = args[:current_size_gib] if args.key?(:current_size_gib)
|
|
2054
2062
|
@emergency_size_gib = args[:emergency_size_gib] if args.key?(:emergency_size_gib)
|
|
2055
2063
|
@id = args[:id] if args.key?(:id)
|
|
@@ -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.21.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 = "20220731"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -813,6 +813,7 @@ module Google
|
|
|
813
813
|
# @private
|
|
814
814
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
815
815
|
property :auto_grown_size_gib, :numeric_string => true, as: 'autoGrownSizeGib'
|
|
816
|
+
property :boot_volume, as: 'bootVolume'
|
|
816
817
|
property :current_size_gib, :numeric_string => true, as: 'currentSizeGib'
|
|
817
818
|
property :emergency_size_gib, :numeric_string => true, as: 'emergencySizeGib'
|
|
818
819
|
property :id, as: 'id'
|
|
@@ -963,9 +963,7 @@ module Google
|
|
|
963
963
|
# volume``
|
|
964
964
|
# @param [Google::Apis::BaremetalsolutionV2::Volume] volume_object
|
|
965
965
|
# @param [String] update_mask
|
|
966
|
-
# The list of fields to update. The only currently supported fields are:
|
|
967
|
-
# snapshot_auto_delete_behavior` `snapshot_schedule_policy_name` 'labels' '
|
|
968
|
-
# snapshot_enabled' 'snapshot_reservation_detail.reserved_space_percent'
|
|
966
|
+
# The list of fields to update. The only currently supported fields are: 'labels'
|
|
969
967
|
# @param [String] fields
|
|
970
968
|
# Selector specifying which fields to include in a partial response.
|
|
971
969
|
# @param [String] quota_user
|
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.21.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-08-
|
|
11
|
+
date: 2022-08-08 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.21.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: []
|