google-apis-baremetalsolution_v2 0.12.0 → 0.13.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 +14 -0
- data/lib/google/apis/baremetalsolution_v2/gem_version.rb +2 -2
- data/lib/google/apis/baremetalsolution_v2/representations.rb +2 -0
- data/lib/google/apis/baremetalsolution_v2/service.rb +2 -2
- 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: 1a9a04269252fe0ee90b422f2fabba5bfb8940696385ec25458a865733371035
|
|
4
|
+
data.tar.gz: eb462ff8fa2304d0b772fbf7161db5e28182f8521c4503c3751884e9ea4b97ec
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e498f7f5988ca8add479f0457ecff688a5f2f74fd382645d2ddc60adda93dd97c638d0dec3b3bc6a54ce81217d7c67ef8b8ba07a15c89493a7de6f8b92dbf6b
|
|
7
|
+
data.tar.gz: 6f2551998f527325fc2a6fbaaf03f004c3f657365494c2f73b28ef35388d3d9e543d426cb83236509a442fa1fc70b9a172e057a1f424d98cd0dfd425d6ff5873
|
data/CHANGELOG.md
CHANGED
|
@@ -182,6 +182,13 @@ module Google
|
|
|
182
182
|
# @return [String]
|
|
183
183
|
attr_accessor :os_image
|
|
184
184
|
|
|
185
|
+
# Immutable. Pod name. Pod is an independent part of infrastructure. Instance
|
|
186
|
+
# can be connected to the assets (networks, volumes) allocated in the same pod
|
|
187
|
+
# only.
|
|
188
|
+
# Corresponds to the JSON property `pod`
|
|
189
|
+
# @return [String]
|
|
190
|
+
attr_accessor :pod
|
|
191
|
+
|
|
185
192
|
# The state of the server.
|
|
186
193
|
# Corresponds to the JSON property `state`
|
|
187
194
|
# @return [String]
|
|
@@ -208,6 +215,7 @@ module Google
|
|
|
208
215
|
@name = args[:name] if args.key?(:name)
|
|
209
216
|
@networks = args[:networks] if args.key?(:networks)
|
|
210
217
|
@os_image = args[:os_image] if args.key?(:os_image)
|
|
218
|
+
@pod = args[:pod] if args.key?(:pod)
|
|
211
219
|
@state = args[:state] if args.key?(:state)
|
|
212
220
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
213
221
|
end
|
|
@@ -1702,6 +1710,11 @@ module Google
|
|
|
1702
1710
|
# @return [String]
|
|
1703
1711
|
attr_accessor :name
|
|
1704
1712
|
|
|
1713
|
+
# Immutable. Pod name.
|
|
1714
|
+
# Corresponds to the JSON property `pod`
|
|
1715
|
+
# @return [String]
|
|
1716
|
+
attr_accessor :pod
|
|
1717
|
+
|
|
1705
1718
|
# The space remaining in the storage volume for new LUNs, in GiB, excluding
|
|
1706
1719
|
# space reserved for snapshots.
|
|
1707
1720
|
# Corresponds to the JSON property `remainingSpaceGib`
|
|
@@ -1756,6 +1769,7 @@ module Google
|
|
|
1756
1769
|
@id = args[:id] if args.key?(:id)
|
|
1757
1770
|
@labels = args[:labels] if args.key?(:labels)
|
|
1758
1771
|
@name = args[:name] if args.key?(:name)
|
|
1772
|
+
@pod = args[:pod] if args.key?(:pod)
|
|
1759
1773
|
@remaining_space_gib = args[:remaining_space_gib] if args.key?(:remaining_space_gib)
|
|
1760
1774
|
@requested_size_gib = args[:requested_size_gib] if args.key?(:requested_size_gib)
|
|
1761
1775
|
@snapshot_auto_delete_behavior = args[:snapshot_auto_delete_behavior] if args.key?(:snapshot_auto_delete_behavior)
|
|
@@ -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.13.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220506"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -323,6 +323,7 @@ module Google
|
|
|
323
323
|
collection :networks, as: 'networks', class: Google::Apis::BaremetalsolutionV2::Network, decorator: Google::Apis::BaremetalsolutionV2::Network::Representation
|
|
324
324
|
|
|
325
325
|
property :os_image, as: 'osImage'
|
|
326
|
+
property :pod, as: 'pod'
|
|
326
327
|
property :state, as: 'state'
|
|
327
328
|
property :update_time, as: 'updateTime'
|
|
328
329
|
end
|
|
@@ -734,6 +735,7 @@ module Google
|
|
|
734
735
|
property :id, as: 'id'
|
|
735
736
|
hash :labels, as: 'labels'
|
|
736
737
|
property :name, as: 'name'
|
|
738
|
+
property :pod, as: 'pod'
|
|
737
739
|
property :remaining_space_gib, :numeric_string => true, as: 'remainingSpaceGib'
|
|
738
740
|
property :requested_size_gib, :numeric_string => true, as: 'requestedSizeGib'
|
|
739
741
|
property :snapshot_auto_delete_behavior, as: 'snapshotAutoDeleteBehavior'
|
|
@@ -265,8 +265,8 @@ module Google
|
|
|
265
265
|
# instances/`instance``
|
|
266
266
|
# @param [Google::Apis::BaremetalsolutionV2::Instance] instance_object
|
|
267
267
|
# @param [String] update_mask
|
|
268
|
-
# The list of fields to update. The
|
|
269
|
-
#
|
|
268
|
+
# The list of fields to update. The currently supported fields are: `labels` `
|
|
269
|
+
# hyperthreading_enabled` `os_image`
|
|
270
270
|
# @param [String] fields
|
|
271
271
|
# Selector specifying which fields to include in a partial response.
|
|
272
272
|
# @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.13.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-05-
|
|
11
|
+
date: 2022-05-23 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.13.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: []
|