google-apis-vmmigration_v1alpha1 0.20.0 → 0.22.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f2007356da10814c160dd21c968517a92b03e27c642a69cb175df613f50852f5
|
4
|
+
data.tar.gz: e2b175c03fe6e9f9a9384bec6e91901158ac1112364b4a7f5e3736690a498d77
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c7b2545e2831c9b93a058e4f82fa7ce19d40307c1eb71f6c6d1a064aa8f69aeef63ef6972fbfc695c30b5e3141799c6525a3559122a4379bef380faa64235a4
|
7
|
+
data.tar.gz: 884d0c1214a1e3f3e540f95b47f954df19170db2c1852602c9fa46cfafff1339227a7360eb9571ca175150a59e3b203787153c8078ad8bc6ebabfbbb144d25d7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-vmmigration_v1alpha1
|
2
2
|
|
3
|
+
### v0.22.0 (2022-11-10)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221103
|
6
|
+
|
7
|
+
### v0.21.0 (2022-11-06)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20221027
|
10
|
+
|
3
11
|
### v0.20.0 (2022-10-27)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.11.0
|
@@ -142,6 +142,273 @@ module Google
|
|
142
142
|
end
|
143
143
|
end
|
144
144
|
|
145
|
+
# AwsSecurityGroup describes a security group of an AWS VM.
|
146
|
+
class AwsSecurityGroup
|
147
|
+
include Google::Apis::Core::Hashable
|
148
|
+
|
149
|
+
# The AWS security group id.
|
150
|
+
# Corresponds to the JSON property `id`
|
151
|
+
# @return [String]
|
152
|
+
attr_accessor :id
|
153
|
+
|
154
|
+
# The AWS security group name.
|
155
|
+
# Corresponds to the JSON property `name`
|
156
|
+
# @return [String]
|
157
|
+
attr_accessor :name
|
158
|
+
|
159
|
+
def initialize(**args)
|
160
|
+
update!(**args)
|
161
|
+
end
|
162
|
+
|
163
|
+
# Update properties of this object
|
164
|
+
def update!(**args)
|
165
|
+
@id = args[:id] if args.key?(:id)
|
166
|
+
@name = args[:name] if args.key?(:name)
|
167
|
+
end
|
168
|
+
end
|
169
|
+
|
170
|
+
# AwsSourceDetails message describes a specific source details for the AWS
|
171
|
+
# source type.
|
172
|
+
class AwsSourceDetails
|
173
|
+
include Google::Apis::Core::Hashable
|
174
|
+
|
175
|
+
# AWS access key ID.
|
176
|
+
# Corresponds to the JSON property `accessKeyId`
|
177
|
+
# @return [String]
|
178
|
+
attr_accessor :access_key_id
|
179
|
+
|
180
|
+
# Immutable. The AWS region that the source VMs will be migrated from.
|
181
|
+
# Corresponds to the JSON property `awsRegion`
|
182
|
+
# @return [String]
|
183
|
+
attr_accessor :aws_region
|
184
|
+
|
185
|
+
# The `Status` type defines a logical error model that is suitable for different
|
186
|
+
# programming environments, including REST APIs and RPC APIs. It is used by [
|
187
|
+
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
188
|
+
# data: error code, error message, and error details. You can find out more
|
189
|
+
# about this error model and how to work with it in the [API Design Guide](https:
|
190
|
+
# //cloud.google.com/apis/design/errors).
|
191
|
+
# Corresponds to the JSON property `error`
|
192
|
+
# @return [Google::Apis::VmmigrationV1alpha1::Status]
|
193
|
+
attr_accessor :error
|
194
|
+
|
195
|
+
# AWS security group names to limit the scope of the source inventory.
|
196
|
+
# Corresponds to the JSON property `inventorySecurityGroupNames`
|
197
|
+
# @return [Array<String>]
|
198
|
+
attr_accessor :inventory_security_group_names
|
199
|
+
|
200
|
+
# Deprecated: AWS resource tags to limit the scope of the source inventory. Use
|
201
|
+
# inventory_tag_list instead.
|
202
|
+
# Corresponds to the JSON property `inventoryTags`
|
203
|
+
# @return [Hash<String,String>]
|
204
|
+
attr_accessor :inventory_tags
|
205
|
+
|
206
|
+
# User specified tags to add to every M2VM generated resource in AWS. These tags
|
207
|
+
# will be set in addition to the default tags that are set as part of the
|
208
|
+
# migration process. The tags must not begin with the reserved prefix `m2vm`.
|
209
|
+
# Corresponds to the JSON property `migrationResourcesUserTags`
|
210
|
+
# @return [Hash<String,String>]
|
211
|
+
attr_accessor :migration_resources_user_tags
|
212
|
+
|
213
|
+
# Output only. The source's public IP. All communication initiated by this
|
214
|
+
# source will originate from this IP.
|
215
|
+
# Corresponds to the JSON property `publicIp`
|
216
|
+
# @return [String]
|
217
|
+
attr_accessor :public_ip
|
218
|
+
|
219
|
+
# Input only. AWS secret access key.
|
220
|
+
# Corresponds to the JSON property `secretAccessKey`
|
221
|
+
# @return [String]
|
222
|
+
attr_accessor :secret_access_key
|
223
|
+
|
224
|
+
# Output only. State of the source as determined by the health check.
|
225
|
+
# Corresponds to the JSON property `state`
|
226
|
+
# @return [String]
|
227
|
+
attr_accessor :state
|
228
|
+
|
229
|
+
def initialize(**args)
|
230
|
+
update!(**args)
|
231
|
+
end
|
232
|
+
|
233
|
+
# Update properties of this object
|
234
|
+
def update!(**args)
|
235
|
+
@access_key_id = args[:access_key_id] if args.key?(:access_key_id)
|
236
|
+
@aws_region = args[:aws_region] if args.key?(:aws_region)
|
237
|
+
@error = args[:error] if args.key?(:error)
|
238
|
+
@inventory_security_group_names = args[:inventory_security_group_names] if args.key?(:inventory_security_group_names)
|
239
|
+
@inventory_tags = args[:inventory_tags] if args.key?(:inventory_tags)
|
240
|
+
@migration_resources_user_tags = args[:migration_resources_user_tags] if args.key?(:migration_resources_user_tags)
|
241
|
+
@public_ip = args[:public_ip] if args.key?(:public_ip)
|
242
|
+
@secret_access_key = args[:secret_access_key] if args.key?(:secret_access_key)
|
243
|
+
@state = args[:state] if args.key?(:state)
|
244
|
+
end
|
245
|
+
end
|
246
|
+
|
247
|
+
# Represent the source AWS VM details.
|
248
|
+
class AwsSourceVmDetails
|
249
|
+
include Google::Apis::Core::Hashable
|
250
|
+
|
251
|
+
# The total size of the disks being migrated in bytes.
|
252
|
+
# Corresponds to the JSON property `committedStorageBytes`
|
253
|
+
# @return [Fixnum]
|
254
|
+
attr_accessor :committed_storage_bytes
|
255
|
+
|
256
|
+
# The firmware type of the source VM.
|
257
|
+
# Corresponds to the JSON property `firmware`
|
258
|
+
# @return [String]
|
259
|
+
attr_accessor :firmware
|
260
|
+
|
261
|
+
def initialize(**args)
|
262
|
+
update!(**args)
|
263
|
+
end
|
264
|
+
|
265
|
+
# Update properties of this object
|
266
|
+
def update!(**args)
|
267
|
+
@committed_storage_bytes = args[:committed_storage_bytes] if args.key?(:committed_storage_bytes)
|
268
|
+
@firmware = args[:firmware] if args.key?(:firmware)
|
269
|
+
end
|
270
|
+
end
|
271
|
+
|
272
|
+
# AwsVmDetails describes a VM in AWS.
|
273
|
+
class AwsVmDetails
|
274
|
+
include Google::Apis::Core::Hashable
|
275
|
+
|
276
|
+
# The CPU architecture.
|
277
|
+
# Corresponds to the JSON property `architecture`
|
278
|
+
# @return [String]
|
279
|
+
attr_accessor :architecture
|
280
|
+
|
281
|
+
# The VM Boot Option.
|
282
|
+
# Corresponds to the JSON property `bootOption`
|
283
|
+
# @return [String]
|
284
|
+
attr_accessor :boot_option
|
285
|
+
|
286
|
+
# The total size of the storage allocated to the VM in MB.
|
287
|
+
# Corresponds to the JSON property `committedStorageMb`
|
288
|
+
# @return [Fixnum]
|
289
|
+
attr_accessor :committed_storage_mb
|
290
|
+
|
291
|
+
# The number of cpus the VM has.
|
292
|
+
# Corresponds to the JSON property `cpuCount`
|
293
|
+
# @return [Fixnum]
|
294
|
+
attr_accessor :cpu_count
|
295
|
+
|
296
|
+
# The number of disks the VM has.
|
297
|
+
# Corresponds to the JSON property `diskCount`
|
298
|
+
# @return [Fixnum]
|
299
|
+
attr_accessor :disk_count
|
300
|
+
|
301
|
+
# The display name of the VM. Note that this value is not necessarily unique.
|
302
|
+
# Corresponds to the JSON property `displayName`
|
303
|
+
# @return [String]
|
304
|
+
attr_accessor :display_name
|
305
|
+
|
306
|
+
# The instance type of the VM.
|
307
|
+
# Corresponds to the JSON property `instanceType`
|
308
|
+
# @return [String]
|
309
|
+
attr_accessor :instance_type
|
310
|
+
|
311
|
+
# The memory size of the VM in MB.
|
312
|
+
# Corresponds to the JSON property `memoryMb`
|
313
|
+
# @return [Fixnum]
|
314
|
+
attr_accessor :memory_mb
|
315
|
+
|
316
|
+
# The VM's OS.
|
317
|
+
# Corresponds to the JSON property `osDescription`
|
318
|
+
# @return [String]
|
319
|
+
attr_accessor :os_description
|
320
|
+
|
321
|
+
# Output only. The power state of the VM at the moment list was taken.
|
322
|
+
# Corresponds to the JSON property `powerState`
|
323
|
+
# @return [String]
|
324
|
+
attr_accessor :power_state
|
325
|
+
|
326
|
+
# The security groups the VM belongs to.
|
327
|
+
# Corresponds to the JSON property `securityGroups`
|
328
|
+
# @return [Array<Google::Apis::VmmigrationV1alpha1::AwsSecurityGroup>]
|
329
|
+
attr_accessor :security_groups
|
330
|
+
|
331
|
+
# The descriptive name of the AWS's source this VM is connected to.
|
332
|
+
# Corresponds to the JSON property `sourceDescription`
|
333
|
+
# @return [String]
|
334
|
+
attr_accessor :source_description
|
335
|
+
|
336
|
+
# The id of the AWS's source this VM is connected to.
|
337
|
+
# Corresponds to the JSON property `sourceId`
|
338
|
+
# @return [String]
|
339
|
+
attr_accessor :source_id
|
340
|
+
|
341
|
+
# The tags of the VM.
|
342
|
+
# Corresponds to the JSON property `tags`
|
343
|
+
# @return [Hash<String,String>]
|
344
|
+
attr_accessor :tags
|
345
|
+
|
346
|
+
# The virtualization type.
|
347
|
+
# Corresponds to the JSON property `virtualizationType`
|
348
|
+
# @return [String]
|
349
|
+
attr_accessor :virtualization_type
|
350
|
+
|
351
|
+
# The VM ID in AWS.
|
352
|
+
# Corresponds to the JSON property `vmId`
|
353
|
+
# @return [String]
|
354
|
+
attr_accessor :vm_id
|
355
|
+
|
356
|
+
# The VPC ID the VM belongs to.
|
357
|
+
# Corresponds to the JSON property `vpcId`
|
358
|
+
# @return [String]
|
359
|
+
attr_accessor :vpc_id
|
360
|
+
|
361
|
+
# The AWS zone of the VM.
|
362
|
+
# Corresponds to the JSON property `zone`
|
363
|
+
# @return [String]
|
364
|
+
attr_accessor :zone
|
365
|
+
|
366
|
+
def initialize(**args)
|
367
|
+
update!(**args)
|
368
|
+
end
|
369
|
+
|
370
|
+
# Update properties of this object
|
371
|
+
def update!(**args)
|
372
|
+
@architecture = args[:architecture] if args.key?(:architecture)
|
373
|
+
@boot_option = args[:boot_option] if args.key?(:boot_option)
|
374
|
+
@committed_storage_mb = args[:committed_storage_mb] if args.key?(:committed_storage_mb)
|
375
|
+
@cpu_count = args[:cpu_count] if args.key?(:cpu_count)
|
376
|
+
@disk_count = args[:disk_count] if args.key?(:disk_count)
|
377
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
378
|
+
@instance_type = args[:instance_type] if args.key?(:instance_type)
|
379
|
+
@memory_mb = args[:memory_mb] if args.key?(:memory_mb)
|
380
|
+
@os_description = args[:os_description] if args.key?(:os_description)
|
381
|
+
@power_state = args[:power_state] if args.key?(:power_state)
|
382
|
+
@security_groups = args[:security_groups] if args.key?(:security_groups)
|
383
|
+
@source_description = args[:source_description] if args.key?(:source_description)
|
384
|
+
@source_id = args[:source_id] if args.key?(:source_id)
|
385
|
+
@tags = args[:tags] if args.key?(:tags)
|
386
|
+
@virtualization_type = args[:virtualization_type] if args.key?(:virtualization_type)
|
387
|
+
@vm_id = args[:vm_id] if args.key?(:vm_id)
|
388
|
+
@vpc_id = args[:vpc_id] if args.key?(:vpc_id)
|
389
|
+
@zone = args[:zone] if args.key?(:zone)
|
390
|
+
end
|
391
|
+
end
|
392
|
+
|
393
|
+
# AWSVmsDetails describes VMs in AWS.
|
394
|
+
class AwsVmsDetails
|
395
|
+
include Google::Apis::Core::Hashable
|
396
|
+
|
397
|
+
# The details of the AWS VMs.
|
398
|
+
# Corresponds to the JSON property `details`
|
399
|
+
# @return [Array<Google::Apis::VmmigrationV1alpha1::AwsVmDetails>]
|
400
|
+
attr_accessor :details
|
401
|
+
|
402
|
+
def initialize(**args)
|
403
|
+
update!(**args)
|
404
|
+
end
|
405
|
+
|
406
|
+
# Update properties of this object
|
407
|
+
def update!(**args)
|
408
|
+
@details = args[:details] if args.key?(:details)
|
409
|
+
end
|
410
|
+
end
|
411
|
+
|
145
412
|
# Request message for 'CancelCloneJob' request.
|
146
413
|
class CancelCloneJobRequest
|
147
414
|
include Google::Apis::Core::Hashable
|
@@ -952,6 +1219,11 @@ module Google
|
|
952
1219
|
class FetchInventoryResponse
|
953
1220
|
include Google::Apis::Core::Hashable
|
954
1221
|
|
1222
|
+
# AWSVmsDetails describes VMs in AWS.
|
1223
|
+
# Corresponds to the JSON property `awsVms`
|
1224
|
+
# @return [Google::Apis::VmmigrationV1alpha1::AwsVmsDetails]
|
1225
|
+
attr_accessor :aws_vms
|
1226
|
+
|
955
1227
|
# Output only. A token, which can be sent as `page_token` to retrieve the next
|
956
1228
|
# page. If this field is omitted, there are no subsequent pages.
|
957
1229
|
# Corresponds to the JSON property `nextPageToken`
|
@@ -975,6 +1247,7 @@ module Google
|
|
975
1247
|
|
976
1248
|
# Update properties of this object
|
977
1249
|
def update!(**args)
|
1250
|
+
@aws_vms = args[:aws_vms] if args.key?(:aws_vms)
|
978
1251
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
979
1252
|
@update_time = args[:update_time] if args.key?(:update_time)
|
980
1253
|
@vmware_vms = args[:vmware_vms] if args.key?(:vmware_vms)
|
@@ -1506,6 +1779,11 @@ module Google
|
|
1506
1779
|
class MigratingVm
|
1507
1780
|
include Google::Apis::Core::Hashable
|
1508
1781
|
|
1782
|
+
# Represent the source AWS VM details.
|
1783
|
+
# Corresponds to the JSON property `awsSourceVmDetails`
|
1784
|
+
# @return [Google::Apis::VmmigrationV1alpha1::AwsSourceVmDetails]
|
1785
|
+
attr_accessor :aws_source_vm_details
|
1786
|
+
|
1509
1787
|
# ComputeEngineTargetDefaults is a collection of details for creating a VM in a
|
1510
1788
|
# target Compute Engine project.
|
1511
1789
|
# Corresponds to the JSON property `computeEngineTargetDefaults`
|
@@ -1626,6 +1904,7 @@ module Google
|
|
1626
1904
|
|
1627
1905
|
# Update properties of this object
|
1628
1906
|
def update!(**args)
|
1907
|
+
@aws_source_vm_details = args[:aws_source_vm_details] if args.key?(:aws_source_vm_details)
|
1629
1908
|
@compute_engine_target_defaults = args[:compute_engine_target_defaults] if args.key?(:compute_engine_target_defaults)
|
1630
1909
|
@compute_engine_vm_defaults = args[:compute_engine_vm_defaults] if args.key?(:compute_engine_vm_defaults)
|
1631
1910
|
@create_time = args[:create_time] if args.key?(:create_time)
|
@@ -1985,7 +2264,8 @@ module Google
|
|
1985
2264
|
# @return [Fixnum]
|
1986
2265
|
attr_accessor :progress
|
1987
2266
|
|
1988
|
-
# The current progress in percentage of this cycle.
|
2267
|
+
# The current progress in percentage of this cycle. Was replaced by 'steps'
|
2268
|
+
# field, which breaks down the cycle progression more accurately.
|
1989
2269
|
# Corresponds to the JSON property `progressPercent`
|
1990
2270
|
# @return [Fixnum]
|
1991
2271
|
attr_accessor :progress_percent
|
@@ -1995,7 +2275,7 @@ module Google
|
|
1995
2275
|
# @return [String]
|
1996
2276
|
attr_accessor :start_time
|
1997
2277
|
|
1998
|
-
# State of the
|
2278
|
+
# State of the ReplicationCycle.
|
1999
2279
|
# Corresponds to the JSON property `state`
|
2000
2280
|
# @return [String]
|
2001
2281
|
attr_accessor :state
|
@@ -2140,6 +2420,12 @@ module Google
|
|
2140
2420
|
class Source
|
2141
2421
|
include Google::Apis::Core::Hashable
|
2142
2422
|
|
2423
|
+
# AwsSourceDetails message describes a specific source details for the AWS
|
2424
|
+
# source type.
|
2425
|
+
# Corresponds to the JSON property `aws`
|
2426
|
+
# @return [Google::Apis::VmmigrationV1alpha1::AwsSourceDetails]
|
2427
|
+
attr_accessor :aws
|
2428
|
+
|
2143
2429
|
# Output only. The create time timestamp.
|
2144
2430
|
# Corresponds to the JSON property `createTime`
|
2145
2431
|
# @return [String]
|
@@ -2187,6 +2473,7 @@ module Google
|
|
2187
2473
|
|
2188
2474
|
# Update properties of this object
|
2189
2475
|
def update!(**args)
|
2476
|
+
@aws = args[:aws] if args.key?(:aws)
|
2190
2477
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2191
2478
|
@description = args[:description] if args.key?(:description)
|
2192
2479
|
@error = args[:error] if args.key?(:error)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module VmmigrationV1alpha1
|
18
18
|
# Version of the google-apis-vmmigration_v1alpha1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.22.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221103"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -52,6 +52,36 @@ module Google
|
|
52
52
|
include Google::Apis::Core::JsonObjectSupport
|
53
53
|
end
|
54
54
|
|
55
|
+
class AwsSecurityGroup
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
61
|
+
class AwsSourceDetails
|
62
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
|
+
|
64
|
+
include Google::Apis::Core::JsonObjectSupport
|
65
|
+
end
|
66
|
+
|
67
|
+
class AwsSourceVmDetails
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
73
|
+
class AwsVmDetails
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
79
|
+
class AwsVmsDetails
|
80
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
81
|
+
|
82
|
+
include Google::Apis::Core::JsonObjectSupport
|
83
|
+
end
|
84
|
+
|
55
85
|
class CancelCloneJobRequest
|
56
86
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
87
|
|
@@ -459,6 +489,71 @@ module Google
|
|
459
489
|
end
|
460
490
|
end
|
461
491
|
|
492
|
+
class AwsSecurityGroup
|
493
|
+
# @private
|
494
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
495
|
+
property :id, as: 'id'
|
496
|
+
property :name, as: 'name'
|
497
|
+
end
|
498
|
+
end
|
499
|
+
|
500
|
+
class AwsSourceDetails
|
501
|
+
# @private
|
502
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
503
|
+
property :access_key_id, as: 'accessKeyId'
|
504
|
+
property :aws_region, as: 'awsRegion'
|
505
|
+
property :error, as: 'error', class: Google::Apis::VmmigrationV1alpha1::Status, decorator: Google::Apis::VmmigrationV1alpha1::Status::Representation
|
506
|
+
|
507
|
+
collection :inventory_security_group_names, as: 'inventorySecurityGroupNames'
|
508
|
+
hash :inventory_tags, as: 'inventoryTags'
|
509
|
+
hash :migration_resources_user_tags, as: 'migrationResourcesUserTags'
|
510
|
+
property :public_ip, as: 'publicIp'
|
511
|
+
property :secret_access_key, as: 'secretAccessKey'
|
512
|
+
property :state, as: 'state'
|
513
|
+
end
|
514
|
+
end
|
515
|
+
|
516
|
+
class AwsSourceVmDetails
|
517
|
+
# @private
|
518
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
519
|
+
property :committed_storage_bytes, :numeric_string => true, as: 'committedStorageBytes'
|
520
|
+
property :firmware, as: 'firmware'
|
521
|
+
end
|
522
|
+
end
|
523
|
+
|
524
|
+
class AwsVmDetails
|
525
|
+
# @private
|
526
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
527
|
+
property :architecture, as: 'architecture'
|
528
|
+
property :boot_option, as: 'bootOption'
|
529
|
+
property :committed_storage_mb, :numeric_string => true, as: 'committedStorageMb'
|
530
|
+
property :cpu_count, as: 'cpuCount'
|
531
|
+
property :disk_count, as: 'diskCount'
|
532
|
+
property :display_name, as: 'displayName'
|
533
|
+
property :instance_type, as: 'instanceType'
|
534
|
+
property :memory_mb, as: 'memoryMb'
|
535
|
+
property :os_description, as: 'osDescription'
|
536
|
+
property :power_state, as: 'powerState'
|
537
|
+
collection :security_groups, as: 'securityGroups', class: Google::Apis::VmmigrationV1alpha1::AwsSecurityGroup, decorator: Google::Apis::VmmigrationV1alpha1::AwsSecurityGroup::Representation
|
538
|
+
|
539
|
+
property :source_description, as: 'sourceDescription'
|
540
|
+
property :source_id, as: 'sourceId'
|
541
|
+
hash :tags, as: 'tags'
|
542
|
+
property :virtualization_type, as: 'virtualizationType'
|
543
|
+
property :vm_id, as: 'vmId'
|
544
|
+
property :vpc_id, as: 'vpcId'
|
545
|
+
property :zone, as: 'zone'
|
546
|
+
end
|
547
|
+
end
|
548
|
+
|
549
|
+
class AwsVmsDetails
|
550
|
+
# @private
|
551
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
552
|
+
collection :details, as: 'details', class: Google::Apis::VmmigrationV1alpha1::AwsVmDetails, decorator: Google::Apis::VmmigrationV1alpha1::AwsVmDetails::Representation
|
553
|
+
|
554
|
+
end
|
555
|
+
end
|
556
|
+
|
462
557
|
class CancelCloneJobRequest
|
463
558
|
# @private
|
464
559
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -666,6 +761,8 @@ module Google
|
|
666
761
|
class FetchInventoryResponse
|
667
762
|
# @private
|
668
763
|
class Representation < Google::Apis::Core::JsonRepresentation
|
764
|
+
property :aws_vms, as: 'awsVms', class: Google::Apis::VmmigrationV1alpha1::AwsVmsDetails, decorator: Google::Apis::VmmigrationV1alpha1::AwsVmsDetails::Representation
|
765
|
+
|
669
766
|
property :next_page_token, as: 'nextPageToken'
|
670
767
|
property :update_time, as: 'updateTime'
|
671
768
|
property :vmware_vms, as: 'vmwareVms', class: Google::Apis::VmmigrationV1alpha1::VmwareVmsDetails, decorator: Google::Apis::VmmigrationV1alpha1::VmwareVmsDetails::Representation
|
@@ -840,6 +937,8 @@ module Google
|
|
840
937
|
class MigratingVm
|
841
938
|
# @private
|
842
939
|
class Representation < Google::Apis::Core::JsonRepresentation
|
940
|
+
property :aws_source_vm_details, as: 'awsSourceVmDetails', class: Google::Apis::VmmigrationV1alpha1::AwsSourceVmDetails, decorator: Google::Apis::VmmigrationV1alpha1::AwsSourceVmDetails::Representation
|
941
|
+
|
843
942
|
property :compute_engine_target_defaults, as: 'computeEngineTargetDefaults', class: Google::Apis::VmmigrationV1alpha1::ComputeEngineTargetDefaults, decorator: Google::Apis::VmmigrationV1alpha1::ComputeEngineTargetDefaults::Representation
|
844
943
|
|
845
944
|
property :compute_engine_vm_defaults, as: 'computeEngineVmDefaults', class: Google::Apis::VmmigrationV1alpha1::TargetVmDetails, decorator: Google::Apis::VmmigrationV1alpha1::TargetVmDetails::Representation
|
@@ -1012,6 +1111,8 @@ module Google
|
|
1012
1111
|
class Source
|
1013
1112
|
# @private
|
1014
1113
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1114
|
+
property :aws, as: 'aws', class: Google::Apis::VmmigrationV1alpha1::AwsSourceDetails, decorator: Google::Apis::VmmigrationV1alpha1::AwsSourceDetails::Representation
|
1115
|
+
|
1015
1116
|
property :create_time, as: 'createTime'
|
1016
1117
|
property :description, as: 'description'
|
1017
1118
|
property :error, as: 'error', class: Google::Apis::VmmigrationV1alpha1::Status, decorator: Google::Apis::VmmigrationV1alpha1::Status::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-vmmigration_v1alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.22.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-11-14 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-vmmigration_v1alpha1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.22.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmmigration_v1alpha1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|