google-apis-baremetalsolution_v2 0.27.0 → 0.29.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eae2904b497bd4fab5085ffbce2cee0ab70db737864c66af2dcd534bc7a12fc4
4
- data.tar.gz: 9871f4ac2ccdf4f9680ff4359f122f9ae43e20bf33e9f0c55c3ea4c79cae8996
3
+ metadata.gz: 81ae63cb6ad768d022a52d8bdda682977abcd6ff0437d2bd19682af8808ac6e8
4
+ data.tar.gz: 0d0d91d6a273fb4506fa9b504a0bd38ad75aa87c774bc9ee3d36cfe58e42a01d
5
5
  SHA512:
6
- metadata.gz: 257031f7db0516cc34d0f6bffee973da9a63ffe9dfbcee6607c44c3861d3d6361c263d1cd65d444bd1b218838869eecd70537a202da28bf5301ca060db120397
7
- data.tar.gz: 353dcb5540fe0c73d6e8aa7bfb07208f84bb600af5b4afc84c21e8f75aa5805d1e3c3cf5d058f43df97c91561a21da71104a27eea44e4241fa10913b41301fe6
6
+ metadata.gz: 4602c22d57d61f1a6ff79f02033add45b5fb4f1eca3e41f3aef9df4a06628562a6d261132780d466c850f4bea64d98dc4a630e2da6657f4903c6b60a70691b54
7
+ data.tar.gz: 834585d87b65ae4d4189b820b2919959200b870221ae17a549c9cf5b40aaea8426369f7408d3d1309bb08e5aa345c31c260d9cbd5783e7186b0368d0a4a34f5e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-baremetalsolution_v2
2
2
 
3
+ ### v0.29.0 (2023-02-12)
4
+
5
+ * Regenerated from discovery document revision 20230206
6
+
7
+ ### v0.28.0 (2023-01-22)
8
+
9
+ * Regenerated from discovery document revision 20230113
10
+ * Regenerated using generator version 0.11.1
11
+
3
12
  ### v0.27.0 (2022-12-26)
4
13
 
5
14
  * Regenerated from discovery document revision 20221219
@@ -159,6 +159,32 @@ module Google
159
159
  end
160
160
  end
161
161
 
162
+ # Request for skip lun cooloff and delete it.
163
+ class EvictLunRequest
164
+ include Google::Apis::Core::Hashable
165
+
166
+ def initialize(**args)
167
+ update!(**args)
168
+ end
169
+
170
+ # Update properties of this object
171
+ def update!(**args)
172
+ end
173
+ end
174
+
175
+ # Request for skip volume cooloff and delete it.
176
+ class EvictVolumeRequest
177
+ include Google::Apis::Core::Hashable
178
+
179
+ def initialize(**args)
180
+ update!(**args)
181
+ end
182
+
183
+ # Update properties of this object
184
+ def update!(**args)
185
+ end
186
+ end
187
+
162
188
  # Response with all provisioning settings.
163
189
  class FetchInstanceProvisioningSettingsResponse
164
190
  include Google::Apis::Core::Hashable
@@ -934,6 +960,12 @@ module Google
934
960
  attr_accessor :boot_lun
935
961
  alias_method :boot_lun?, :boot_lun
936
962
 
963
+ # Output only. Time after which LUN will be fully deleted. It is filled only for
964
+ # LUNs in COOL_OFF state.
965
+ # Corresponds to the JSON property `expireTime`
966
+ # @return [String]
967
+ attr_accessor :expire_time
968
+
937
969
  # An identifier for the LUN, generated by the backend.
938
970
  # Corresponds to the JSON property `id`
939
971
  # @return [String]
@@ -988,6 +1020,7 @@ module Google
988
1020
  # Update properties of this object
989
1021
  def update!(**args)
990
1022
  @boot_lun = args[:boot_lun] if args.key?(:boot_lun)
1023
+ @expire_time = args[:expire_time] if args.key?(:expire_time)
991
1024
  @id = args[:id] if args.key?(:id)
992
1025
  @multiprotocol_type = args[:multiprotocol_type] if args.key?(:multiprotocol_type)
993
1026
  @name = args[:name] if args.key?(:name)
@@ -1778,6 +1811,31 @@ module Google
1778
1811
  end
1779
1812
  end
1780
1813
 
1814
+ # Message requesting rename of a server.
1815
+ class RenameInstanceRequest
1816
+ include Google::Apis::Core::Hashable
1817
+
1818
+ # A server.
1819
+ # Corresponds to the JSON property `instance`
1820
+ # @return [Google::Apis::BaremetalsolutionV2::Instance]
1821
+ attr_accessor :instance
1822
+
1823
+ # Required. The new `name` of the instance. Format: `instancename`
1824
+ # Corresponds to the JSON property `name`
1825
+ # @return [String]
1826
+ attr_accessor :name
1827
+
1828
+ def initialize(**args)
1829
+ update!(**args)
1830
+ end
1831
+
1832
+ # Update properties of this object
1833
+ def update!(**args)
1834
+ @instance = args[:instance] if args.key?(:instance)
1835
+ @name = args[:name] if args.key?(:name)
1836
+ end
1837
+ end
1838
+
1781
1839
  # Message requesting to reset a server.
1782
1840
  class ResetInstanceRequest
1783
1841
  include Google::Apis::Core::Hashable
@@ -2151,6 +2209,12 @@ module Google
2151
2209
  # @return [Fixnum]
2152
2210
  attr_accessor :emergency_size_gib
2153
2211
 
2212
+ # Output only. Time after which volume will be fully deleted. It is filled only
2213
+ # for volumes in COOLOFF state.
2214
+ # Corresponds to the JSON property `expireTime`
2215
+ # @return [String]
2216
+ attr_accessor :expire_time
2217
+
2154
2218
  # An identifier for the `Volume`, generated by the backend.
2155
2219
  # Corresponds to the JSON property `id`
2156
2220
  # @return [String]
@@ -2237,6 +2301,12 @@ module Google
2237
2301
  # @return [String]
2238
2302
  attr_accessor :state
2239
2303
 
2304
+ # Input only. Name of the storage aggregate pool to allocate the volume in. Can
2305
+ # be used only for VOLUME_PERFORMANCE_TIER_ASSIGNED volumes.
2306
+ # Corresponds to the JSON property `storageAggregatePool`
2307
+ # @return [String]
2308
+ attr_accessor :storage_aggregate_pool
2309
+
2240
2310
  # The storage type for this volume.
2241
2311
  # Corresponds to the JSON property `storageType`
2242
2312
  # @return [String]
@@ -2257,6 +2327,7 @@ module Google
2257
2327
  @boot_volume = args[:boot_volume] if args.key?(:boot_volume)
2258
2328
  @current_size_gib = args[:current_size_gib] if args.key?(:current_size_gib)
2259
2329
  @emergency_size_gib = args[:emergency_size_gib] if args.key?(:emergency_size_gib)
2330
+ @expire_time = args[:expire_time] if args.key?(:expire_time)
2260
2331
  @id = args[:id] if args.key?(:id)
2261
2332
  @labels = args[:labels] if args.key?(:labels)
2262
2333
  @max_size_gib = args[:max_size_gib] if args.key?(:max_size_gib)
@@ -2273,6 +2344,7 @@ module Google
2273
2344
  @snapshot_reservation_detail = args[:snapshot_reservation_detail] if args.key?(:snapshot_reservation_detail)
2274
2345
  @snapshot_schedule_policy = args[:snapshot_schedule_policy] if args.key?(:snapshot_schedule_policy)
2275
2346
  @state = args[:state] if args.key?(:state)
2347
+ @storage_aggregate_pool = args[:storage_aggregate_pool] if args.key?(:storage_aggregate_pool)
2276
2348
  @storage_type = args[:storage_type] if args.key?(:storage_type)
2277
2349
  @workload_profile = args[:workload_profile] if args.key?(:workload_profile)
2278
2350
  end
@@ -2335,6 +2407,12 @@ module Google
2335
2407
  attr_accessor :snapshots_enabled
2336
2408
  alias_method :snapshots_enabled?, :snapshots_enabled
2337
2409
 
2410
+ # Input only. Name of the storage aggregate pool to allocate the volume in. Can
2411
+ # be used only for VOLUME_PERFORMANCE_TIER_ASSIGNED volumes.
2412
+ # Corresponds to the JSON property `storageAggregatePool`
2413
+ # @return [String]
2414
+ attr_accessor :storage_aggregate_pool
2415
+
2338
2416
  # The type of this Volume.
2339
2417
  # Corresponds to the JSON property `type`
2340
2418
  # @return [String]
@@ -2362,6 +2440,7 @@ module Google
2362
2440
  @protocol = args[:protocol] if args.key?(:protocol)
2363
2441
  @size_gb = args[:size_gb] if args.key?(:size_gb)
2364
2442
  @snapshots_enabled = args[:snapshots_enabled] if args.key?(:snapshots_enabled)
2443
+ @storage_aggregate_pool = args[:storage_aggregate_pool] if args.key?(:storage_aggregate_pool)
2365
2444
  @type = args[:type] if args.key?(:type)
2366
2445
  @user_note = args[:user_note] if args.key?(:user_note)
2367
2446
  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.27.0"
19
+ GEM_VERSION = "0.29.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221219"
25
+ REVISION = "20230206"
26
26
  end
27
27
  end
28
28
  end
@@ -52,6 +52,18 @@ module Google
52
52
  include Google::Apis::Core::JsonObjectSupport
53
53
  end
54
54
 
55
+ class EvictLunRequest
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
61
+ class EvictVolumeRequest
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
55
67
  class FetchInstanceProvisioningSettingsResponse
56
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
69
 
@@ -256,6 +268,12 @@ module Google
256
268
  include Google::Apis::Core::JsonObjectSupport
257
269
  end
258
270
 
271
+ class RenameInstanceRequest
272
+ class Representation < Google::Apis::Core::JsonRepresentation; end
273
+
274
+ include Google::Apis::Core::JsonObjectSupport
275
+ end
276
+
259
277
  class ResetInstanceRequest
260
278
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
279
 
@@ -392,6 +410,18 @@ module Google
392
410
  end
393
411
  end
394
412
 
413
+ class EvictLunRequest
414
+ # @private
415
+ class Representation < Google::Apis::Core::JsonRepresentation
416
+ end
417
+ end
418
+
419
+ class EvictVolumeRequest
420
+ # @private
421
+ class Representation < Google::Apis::Core::JsonRepresentation
422
+ end
423
+ end
424
+
395
425
  class FetchInstanceProvisioningSettingsResponse
396
426
  # @private
397
427
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -608,6 +638,7 @@ module Google
608
638
  # @private
609
639
  class Representation < Google::Apis::Core::JsonRepresentation
610
640
  property :boot_lun, as: 'bootLun'
641
+ property :expire_time, as: 'expireTime'
611
642
  property :id, as: 'id'
612
643
  property :multiprotocol_type, as: 'multiprotocolType'
613
644
  property :name, as: 'name'
@@ -807,6 +838,15 @@ module Google
807
838
  end
808
839
  end
809
840
 
841
+ class RenameInstanceRequest
842
+ # @private
843
+ class Representation < Google::Apis::Core::JsonRepresentation
844
+ property :instance, as: 'instance', class: Google::Apis::BaremetalsolutionV2::Instance, decorator: Google::Apis::BaremetalsolutionV2::Instance::Representation
845
+
846
+ property :name, as: 'name'
847
+ end
848
+ end
849
+
810
850
  class ResetInstanceRequest
811
851
  # @private
812
852
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -924,6 +964,7 @@ module Google
924
964
  property :boot_volume, as: 'bootVolume'
925
965
  property :current_size_gib, :numeric_string => true, as: 'currentSizeGib'
926
966
  property :emergency_size_gib, :numeric_string => true, as: 'emergencySizeGib'
967
+ property :expire_time, as: 'expireTime'
927
968
  property :id, as: 'id'
928
969
  hash :labels, as: 'labels'
929
970
  property :max_size_gib, :numeric_string => true, as: 'maxSizeGib'
@@ -941,6 +982,7 @@ module Google
941
982
 
942
983
  property :snapshot_schedule_policy, as: 'snapshotSchedulePolicy'
943
984
  property :state, as: 'state'
985
+ property :storage_aggregate_pool, as: 'storageAggregatePool'
944
986
  property :storage_type, as: 'storageType'
945
987
  property :workload_profile, as: 'workloadProfile'
946
988
  end
@@ -961,6 +1003,7 @@ module Google
961
1003
  property :protocol, as: 'protocol'
962
1004
  property :size_gb, as: 'sizeGb'
963
1005
  property :snapshots_enabled, as: 'snapshotsEnabled'
1006
+ property :storage_aggregate_pool, as: 'storageAggregatePool'
964
1007
  property :type, as: 'type'
965
1008
  property :user_note, as: 'userNote'
966
1009
  end
@@ -396,6 +396,42 @@ module Google
396
396
  execute_or_queue_command(command, &block)
397
397
  end
398
398
 
399
+ # RenameInstance sets a new name for an instance.
400
+ # @param [String] name
401
+ # Immutable. The resource name of this `Instance`. Resource names are schemeless
402
+ # URIs that follow the conventions in https://cloud.google.com/apis/design/
403
+ # resource_names. Format: `projects/`project`/locations/`location`/instances/`
404
+ # instance``
405
+ # @param [Google::Apis::BaremetalsolutionV2::RenameInstanceRequest] rename_instance_request_object
406
+ # @param [String] fields
407
+ # Selector specifying which fields to include in a partial response.
408
+ # @param [String] quota_user
409
+ # Available to use for quota purposes for server-side applications. Can be any
410
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
411
+ # @param [Google::Apis::RequestOptions] options
412
+ # Request-specific options
413
+ #
414
+ # @yield [result, err] Result & error if block supplied
415
+ # @yieldparam result [Google::Apis::BaremetalsolutionV2::Operation] parsed result object
416
+ # @yieldparam err [StandardError] error object if request failed
417
+ #
418
+ # @return [Google::Apis::BaremetalsolutionV2::Operation]
419
+ #
420
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
421
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
422
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
423
+ def rename_instance(name, rename_instance_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
424
+ command = make_simple_command(:post, 'v2/{+name}:rename', options)
425
+ command.request_representation = Google::Apis::BaremetalsolutionV2::RenameInstanceRequest::Representation
426
+ command.request_object = rename_instance_request_object
427
+ command.response_representation = Google::Apis::BaremetalsolutionV2::Operation::Representation
428
+ command.response_class = Google::Apis::BaremetalsolutionV2::Operation
429
+ command.params['name'] = name unless name.nil?
430
+ command.query['fields'] = fields unless fields.nil?
431
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
432
+ execute_or_queue_command(command, &block)
433
+ end
434
+
399
435
  # Perform an ungraceful, hard reset on a server. Equivalent to shutting the
400
436
  # power off and then turning it back on.
401
437
  # @param [String] name
@@ -1124,6 +1160,39 @@ module Google
1124
1160
  execute_or_queue_command(command, &block)
1125
1161
  end
1126
1162
 
1163
+ # Skips volume's cooloff and deletes it now. Volume must be in cooloff state.
1164
+ # @param [String] name
1165
+ # Required. The name of the Volume.
1166
+ # @param [Google::Apis::BaremetalsolutionV2::EvictVolumeRequest] evict_volume_request_object
1167
+ # @param [String] fields
1168
+ # Selector specifying which fields to include in a partial response.
1169
+ # @param [String] quota_user
1170
+ # Available to use for quota purposes for server-side applications. Can be any
1171
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1172
+ # @param [Google::Apis::RequestOptions] options
1173
+ # Request-specific options
1174
+ #
1175
+ # @yield [result, err] Result & error if block supplied
1176
+ # @yieldparam result [Google::Apis::BaremetalsolutionV2::Operation] parsed result object
1177
+ # @yieldparam err [StandardError] error object if request failed
1178
+ #
1179
+ # @return [Google::Apis::BaremetalsolutionV2::Operation]
1180
+ #
1181
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1182
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1183
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1184
+ def evict_volume(name, evict_volume_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1185
+ command = make_simple_command(:post, 'v2/{+name}:evict', options)
1186
+ command.request_representation = Google::Apis::BaremetalsolutionV2::EvictVolumeRequest::Representation
1187
+ command.request_object = evict_volume_request_object
1188
+ command.response_representation = Google::Apis::BaremetalsolutionV2::Operation::Representation
1189
+ command.response_class = Google::Apis::BaremetalsolutionV2::Operation
1190
+ command.params['name'] = name unless name.nil?
1191
+ command.query['fields'] = fields unless fields.nil?
1192
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1193
+ execute_or_queue_command(command, &block)
1194
+ end
1195
+
1127
1196
  # Get details of a single storage volume.
1128
1197
  # @param [String] name
1129
1198
  # Required. Name of the resource.
@@ -1266,6 +1335,39 @@ module Google
1266
1335
  execute_or_queue_command(command, &block)
1267
1336
  end
1268
1337
 
1338
+ # Skips lun's cooloff and deletes it now. Lun must be in cooloff state.
1339
+ # @param [String] name
1340
+ # Required. The name of the lun.
1341
+ # @param [Google::Apis::BaremetalsolutionV2::EvictLunRequest] evict_lun_request_object
1342
+ # @param [String] fields
1343
+ # Selector specifying which fields to include in a partial response.
1344
+ # @param [String] quota_user
1345
+ # Available to use for quota purposes for server-side applications. Can be any
1346
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1347
+ # @param [Google::Apis::RequestOptions] options
1348
+ # Request-specific options
1349
+ #
1350
+ # @yield [result, err] Result & error if block supplied
1351
+ # @yieldparam result [Google::Apis::BaremetalsolutionV2::Operation] parsed result object
1352
+ # @yieldparam err [StandardError] error object if request failed
1353
+ #
1354
+ # @return [Google::Apis::BaremetalsolutionV2::Operation]
1355
+ #
1356
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1357
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1358
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1359
+ def evict_lun(name, evict_lun_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1360
+ command = make_simple_command(:post, 'v2/{+name}:evict', options)
1361
+ command.request_representation = Google::Apis::BaremetalsolutionV2::EvictLunRequest::Representation
1362
+ command.request_object = evict_lun_request_object
1363
+ command.response_representation = Google::Apis::BaremetalsolutionV2::Operation::Representation
1364
+ command.response_class = Google::Apis::BaremetalsolutionV2::Operation
1365
+ command.params['name'] = name unless name.nil?
1366
+ command.query['fields'] = fields unless fields.nil?
1367
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1368
+ execute_or_queue_command(command, &block)
1369
+ end
1370
+
1269
1371
  # Get details of a single storage logical unit number(LUN).
1270
1372
  # @param [String] name
1271
1373
  # Required. Name of the resource.
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.27.0
4
+ version: 0.29.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: 2023-01-04 00:00:00.000000000 Z
11
+ date: 2023-02-12 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.27.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-baremetalsolution_v2/v0.29.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.3.14
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