google-apis-baremetalsolution_v2 0.22.0 → 0.23.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: 720b5c0dda16e73c4ef1ad5d4a0e821643f7ea2e3a6534e8a7fa0b1a7e93cb62
|
4
|
+
data.tar.gz: 02ae76360d349ebe4bb451062557735ddaa46865f418506661e15ac181d45a8a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 941444d3aff49ae032a1d2c607b6193b4153b6537347388279ca060893511d5c3760b82546fec300ddc8495c7fd7fb805dbcd48e60e466874447625ff6005a40
|
7
|
+
data.tar.gz: 4abf3031fbef635859634f9af452227d599125d537d8d17d485752e28a85a999a2527e923b4cb1236699aa581353c4445975b680c0b6f24f985d912bab2198e5
|
data/CHANGELOG.md
CHANGED
@@ -1978,6 +1978,11 @@ module Google
|
|
1978
1978
|
class VlanAttachment
|
1979
1979
|
include Google::Apis::Core::Hashable
|
1980
1980
|
|
1981
|
+
# Immutable. The identifier of the attachment within vrf.
|
1982
|
+
# Corresponds to the JSON property `id`
|
1983
|
+
# @return [String]
|
1984
|
+
attr_accessor :id
|
1985
|
+
|
1981
1986
|
# Input only. Pairing key.
|
1982
1987
|
# Corresponds to the JSON property `pairingKey`
|
1983
1988
|
# @return [String]
|
@@ -2009,6 +2014,7 @@ module Google
|
|
2009
2014
|
|
2010
2015
|
# Update properties of this object
|
2011
2016
|
def update!(**args)
|
2017
|
+
@id = args[:id] if args.key?(:id)
|
2012
2018
|
@pairing_key = args[:pairing_key] if args.key?(:pairing_key)
|
2013
2019
|
@peer_ip = args[:peer_ip] if args.key?(:peer_ip)
|
2014
2020
|
@peer_vlan_id = args[:peer_vlan_id] if args.key?(:peer_vlan_id)
|
@@ -2070,11 +2076,22 @@ module Google
|
|
2070
2076
|
# @return [String]
|
2071
2077
|
attr_accessor :name
|
2072
2078
|
|
2079
|
+
# Input only. User-specified notes for new Volume. Used to provision Volumes
|
2080
|
+
# that require manual intervention.
|
2081
|
+
# Corresponds to the JSON property `notes`
|
2082
|
+
# @return [String]
|
2083
|
+
attr_accessor :notes
|
2084
|
+
|
2073
2085
|
# Originally requested size, in GiB.
|
2074
2086
|
# Corresponds to the JSON property `originallyRequestedSizeGib`
|
2075
2087
|
# @return [Fixnum]
|
2076
2088
|
attr_accessor :originally_requested_size_gib
|
2077
2089
|
|
2090
|
+
# Immutable. Performance tier of the Volume. Default is SHARED.
|
2091
|
+
# Corresponds to the JSON property `performanceTier`
|
2092
|
+
# @return [String]
|
2093
|
+
attr_accessor :performance_tier
|
2094
|
+
|
2078
2095
|
# Immutable. Pod name.
|
2079
2096
|
# Corresponds to the JSON property `pod`
|
2080
2097
|
# @return [String]
|
@@ -2141,7 +2158,9 @@ module Google
|
|
2141
2158
|
@labels = args[:labels] if args.key?(:labels)
|
2142
2159
|
@max_size_gib = args[:max_size_gib] if args.key?(:max_size_gib)
|
2143
2160
|
@name = args[:name] if args.key?(:name)
|
2161
|
+
@notes = args[:notes] if args.key?(:notes)
|
2144
2162
|
@originally_requested_size_gib = args[:originally_requested_size_gib] if args.key?(:originally_requested_size_gib)
|
2163
|
+
@performance_tier = args[:performance_tier] if args.key?(:performance_tier)
|
2145
2164
|
@pod = args[:pod] if args.key?(:pod)
|
2146
2165
|
@protocol = args[:protocol] if args.key?(:protocol)
|
2147
2166
|
@remaining_space_gib = args[:remaining_space_gib] if args.key?(:remaining_space_gib)
|
@@ -2191,6 +2210,11 @@ module Google
|
|
2191
2210
|
# @return [Array<Google::Apis::BaremetalsolutionV2::NfsExport>]
|
2192
2211
|
attr_accessor :nfs_exports
|
2193
2212
|
|
2213
|
+
# Performance tier of the Volume. Default is SHARED.
|
2214
|
+
# Corresponds to the JSON property `performanceTier`
|
2215
|
+
# @return [String]
|
2216
|
+
attr_accessor :performance_tier
|
2217
|
+
|
2194
2218
|
# Volume protocol.
|
2195
2219
|
# Corresponds to the JSON property `protocol`
|
2196
2220
|
# @return [String]
|
@@ -2230,6 +2254,7 @@ module Google
|
|
2230
2254
|
@machine_ids = args[:machine_ids] if args.key?(:machine_ids)
|
2231
2255
|
@name = args[:name] if args.key?(:name)
|
2232
2256
|
@nfs_exports = args[:nfs_exports] if args.key?(:nfs_exports)
|
2257
|
+
@performance_tier = args[:performance_tier] if args.key?(:performance_tier)
|
2233
2258
|
@protocol = args[:protocol] if args.key?(:protocol)
|
2234
2259
|
@size_gb = args[:size_gb] if args.key?(:size_gb)
|
2235
2260
|
@snapshots_enabled = args[:snapshots_enabled] if args.key?(:snapshots_enabled)
|
@@ -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.23.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 = "20220829"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -824,6 +824,7 @@ module Google
|
|
824
824
|
class VlanAttachment
|
825
825
|
# @private
|
826
826
|
class Representation < Google::Apis::Core::JsonRepresentation
|
827
|
+
property :id, as: 'id'
|
827
828
|
property :pairing_key, as: 'pairingKey'
|
828
829
|
property :peer_ip, as: 'peerIp'
|
829
830
|
property :peer_vlan_id, :numeric_string => true, as: 'peerVlanId'
|
@@ -844,7 +845,9 @@ module Google
|
|
844
845
|
hash :labels, as: 'labels'
|
845
846
|
property :max_size_gib, :numeric_string => true, as: 'maxSizeGib'
|
846
847
|
property :name, as: 'name'
|
848
|
+
property :notes, as: 'notes'
|
847
849
|
property :originally_requested_size_gib, :numeric_string => true, as: 'originallyRequestedSizeGib'
|
850
|
+
property :performance_tier, as: 'performanceTier'
|
848
851
|
property :pod, as: 'pod'
|
849
852
|
property :protocol, as: 'protocol'
|
850
853
|
property :remaining_space_gib, :numeric_string => true, as: 'remainingSpaceGib'
|
@@ -870,6 +873,7 @@ module Google
|
|
870
873
|
property :name, as: 'name'
|
871
874
|
collection :nfs_exports, as: 'nfsExports', class: Google::Apis::BaremetalsolutionV2::NfsExport, decorator: Google::Apis::BaremetalsolutionV2::NfsExport::Representation
|
872
875
|
|
876
|
+
property :performance_tier, as: 'performanceTier'
|
873
877
|
property :protocol, as: 'protocol'
|
874
878
|
property :size_gb, as: 'sizeGb'
|
875
879
|
property :snapshots_enabled, as: 'snapshotsEnabled'
|
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.23.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-09-05 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.23.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: []
|