google-apis-vmmigration_v1alpha1 0.19.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 469aa806260104d48f8cbd9cc0f485c96d3d5de7550651f4627572ad17b9590b
|
4
|
+
data.tar.gz: d5f931b251079ca231b4aababf97667a11dc99680988fb7c35e904061d7a9729
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 64ccc3f8f503b86770d89e93280cd4323a8721f7ff23dad955b0fe5eadc5d7f05fc6b8615c8fc2ad0da98c271751a745aca6ded3f6c87987796e3b7907bd177d
|
7
|
+
data.tar.gz: 0c380c421253e77438f4e709825b6d3380196fa0d85fcfd806efa5af3c49d6bc376cbd587a4c6b7cb0807b6316d0c07da0b186811d52b44da4d9e9dda5a98f59
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-vmmigration_v1alpha1
|
2
2
|
|
3
|
+
### v0.21.0 (2022-11-06)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221027
|
6
|
+
|
7
|
+
### v0.20.0 (2022-10-27)
|
8
|
+
|
9
|
+
* Regenerated using generator version 0.11.0
|
10
|
+
|
3
11
|
### v0.19.0 (2022-09-29)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20220922
|
@@ -142,6 +142,260 @@ 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
|
+
# AWS resource tags to limit the scope of the source inventory.
|
201
|
+
# Corresponds to the JSON property `inventoryTags`
|
202
|
+
# @return [Hash<String,String>]
|
203
|
+
attr_accessor :inventory_tags
|
204
|
+
|
205
|
+
# User specified tags to add to every M2VM generated resource in AWS. These tags
|
206
|
+
# will be set in addition to the default tags that are set as part of the
|
207
|
+
# migration process. The tags must not begin with the reserved prefix `m2vm`.
|
208
|
+
# Corresponds to the JSON property `migrationResourcesUserTags`
|
209
|
+
# @return [Hash<String,String>]
|
210
|
+
attr_accessor :migration_resources_user_tags
|
211
|
+
|
212
|
+
# Output only. The source's public IP. All communication initiated by this
|
213
|
+
# source will originate from this IP.
|
214
|
+
# Corresponds to the JSON property `publicIp`
|
215
|
+
# @return [String]
|
216
|
+
attr_accessor :public_ip
|
217
|
+
|
218
|
+
# Input only. AWS secret access key.
|
219
|
+
# Corresponds to the JSON property `secretAccessKey`
|
220
|
+
# @return [String]
|
221
|
+
attr_accessor :secret_access_key
|
222
|
+
|
223
|
+
# Output only. State of the source as determined by the health check.
|
224
|
+
# Corresponds to the JSON property `state`
|
225
|
+
# @return [String]
|
226
|
+
attr_accessor :state
|
227
|
+
|
228
|
+
def initialize(**args)
|
229
|
+
update!(**args)
|
230
|
+
end
|
231
|
+
|
232
|
+
# Update properties of this object
|
233
|
+
def update!(**args)
|
234
|
+
@access_key_id = args[:access_key_id] if args.key?(:access_key_id)
|
235
|
+
@aws_region = args[:aws_region] if args.key?(:aws_region)
|
236
|
+
@error = args[:error] if args.key?(:error)
|
237
|
+
@inventory_security_group_names = args[:inventory_security_group_names] if args.key?(:inventory_security_group_names)
|
238
|
+
@inventory_tags = args[:inventory_tags] if args.key?(:inventory_tags)
|
239
|
+
@migration_resources_user_tags = args[:migration_resources_user_tags] if args.key?(:migration_resources_user_tags)
|
240
|
+
@public_ip = args[:public_ip] if args.key?(:public_ip)
|
241
|
+
@secret_access_key = args[:secret_access_key] if args.key?(:secret_access_key)
|
242
|
+
@state = args[:state] if args.key?(:state)
|
243
|
+
end
|
244
|
+
end
|
245
|
+
|
246
|
+
# Represent the source AWS VM details.
|
247
|
+
class AwsSourceVmDetails
|
248
|
+
include Google::Apis::Core::Hashable
|
249
|
+
|
250
|
+
# The total size of the disks being migrated in bytes.
|
251
|
+
# Corresponds to the JSON property `committedStorageBytes`
|
252
|
+
# @return [Fixnum]
|
253
|
+
attr_accessor :committed_storage_bytes
|
254
|
+
|
255
|
+
# The firmware type of the source VM.
|
256
|
+
# Corresponds to the JSON property `firmware`
|
257
|
+
# @return [String]
|
258
|
+
attr_accessor :firmware
|
259
|
+
|
260
|
+
def initialize(**args)
|
261
|
+
update!(**args)
|
262
|
+
end
|
263
|
+
|
264
|
+
# Update properties of this object
|
265
|
+
def update!(**args)
|
266
|
+
@committed_storage_bytes = args[:committed_storage_bytes] if args.key?(:committed_storage_bytes)
|
267
|
+
@firmware = args[:firmware] if args.key?(:firmware)
|
268
|
+
end
|
269
|
+
end
|
270
|
+
|
271
|
+
# AwsVmDetails describes a VM in AWS.
|
272
|
+
class AwsVmDetails
|
273
|
+
include Google::Apis::Core::Hashable
|
274
|
+
|
275
|
+
# The VM Boot Option.
|
276
|
+
# Corresponds to the JSON property `bootOption`
|
277
|
+
# @return [String]
|
278
|
+
attr_accessor :boot_option
|
279
|
+
|
280
|
+
# The total size of the storage allocated to the VM in MB.
|
281
|
+
# Corresponds to the JSON property `committedStorageMb`
|
282
|
+
# @return [Fixnum]
|
283
|
+
attr_accessor :committed_storage_mb
|
284
|
+
|
285
|
+
# The number of cpus the VM has.
|
286
|
+
# Corresponds to the JSON property `cpuCount`
|
287
|
+
# @return [Fixnum]
|
288
|
+
attr_accessor :cpu_count
|
289
|
+
|
290
|
+
# The number of disks the VM has.
|
291
|
+
# Corresponds to the JSON property `diskCount`
|
292
|
+
# @return [Fixnum]
|
293
|
+
attr_accessor :disk_count
|
294
|
+
|
295
|
+
# The display name of the VM. Note that this value is not necessarily unique.
|
296
|
+
# Corresponds to the JSON property `displayName`
|
297
|
+
# @return [String]
|
298
|
+
attr_accessor :display_name
|
299
|
+
|
300
|
+
# The instance type of the VM.
|
301
|
+
# Corresponds to the JSON property `instanceType`
|
302
|
+
# @return [String]
|
303
|
+
attr_accessor :instance_type
|
304
|
+
|
305
|
+
# The memory size of the VM in MB.
|
306
|
+
# Corresponds to the JSON property `memoryMb`
|
307
|
+
# @return [Fixnum]
|
308
|
+
attr_accessor :memory_mb
|
309
|
+
|
310
|
+
# The VM's OS.
|
311
|
+
# Corresponds to the JSON property `osDescription`
|
312
|
+
# @return [String]
|
313
|
+
attr_accessor :os_description
|
314
|
+
|
315
|
+
# Output only. The power state of the VM at the moment list was taken.
|
316
|
+
# Corresponds to the JSON property `powerState`
|
317
|
+
# @return [String]
|
318
|
+
attr_accessor :power_state
|
319
|
+
|
320
|
+
# The security groups the VM belongs to.
|
321
|
+
# Corresponds to the JSON property `securityGroups`
|
322
|
+
# @return [Array<Google::Apis::VmmigrationV1alpha1::AwsSecurityGroup>]
|
323
|
+
attr_accessor :security_groups
|
324
|
+
|
325
|
+
# The descriptive name of the AWS's source this VM is connected to.
|
326
|
+
# Corresponds to the JSON property `sourceDescription`
|
327
|
+
# @return [String]
|
328
|
+
attr_accessor :source_description
|
329
|
+
|
330
|
+
# The id of the AWS's source this VM is connected to.
|
331
|
+
# Corresponds to the JSON property `sourceId`
|
332
|
+
# @return [String]
|
333
|
+
attr_accessor :source_id
|
334
|
+
|
335
|
+
# The tags of the VM.
|
336
|
+
# Corresponds to the JSON property `tags`
|
337
|
+
# @return [Hash<String,String>]
|
338
|
+
attr_accessor :tags
|
339
|
+
|
340
|
+
# The VM ID in AWS.
|
341
|
+
# Corresponds to the JSON property `vmId`
|
342
|
+
# @return [String]
|
343
|
+
attr_accessor :vm_id
|
344
|
+
|
345
|
+
# The VPC ID the VM belongs to.
|
346
|
+
# Corresponds to the JSON property `vpcId`
|
347
|
+
# @return [String]
|
348
|
+
attr_accessor :vpc_id
|
349
|
+
|
350
|
+
# The AWS zone of the VM.
|
351
|
+
# Corresponds to the JSON property `zone`
|
352
|
+
# @return [String]
|
353
|
+
attr_accessor :zone
|
354
|
+
|
355
|
+
def initialize(**args)
|
356
|
+
update!(**args)
|
357
|
+
end
|
358
|
+
|
359
|
+
# Update properties of this object
|
360
|
+
def update!(**args)
|
361
|
+
@boot_option = args[:boot_option] if args.key?(:boot_option)
|
362
|
+
@committed_storage_mb = args[:committed_storage_mb] if args.key?(:committed_storage_mb)
|
363
|
+
@cpu_count = args[:cpu_count] if args.key?(:cpu_count)
|
364
|
+
@disk_count = args[:disk_count] if args.key?(:disk_count)
|
365
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
366
|
+
@instance_type = args[:instance_type] if args.key?(:instance_type)
|
367
|
+
@memory_mb = args[:memory_mb] if args.key?(:memory_mb)
|
368
|
+
@os_description = args[:os_description] if args.key?(:os_description)
|
369
|
+
@power_state = args[:power_state] if args.key?(:power_state)
|
370
|
+
@security_groups = args[:security_groups] if args.key?(:security_groups)
|
371
|
+
@source_description = args[:source_description] if args.key?(:source_description)
|
372
|
+
@source_id = args[:source_id] if args.key?(:source_id)
|
373
|
+
@tags = args[:tags] if args.key?(:tags)
|
374
|
+
@vm_id = args[:vm_id] if args.key?(:vm_id)
|
375
|
+
@vpc_id = args[:vpc_id] if args.key?(:vpc_id)
|
376
|
+
@zone = args[:zone] if args.key?(:zone)
|
377
|
+
end
|
378
|
+
end
|
379
|
+
|
380
|
+
# AWSVmsDetails describes VMs in AWS.
|
381
|
+
class AwsVmsDetails
|
382
|
+
include Google::Apis::Core::Hashable
|
383
|
+
|
384
|
+
# The details of the AWS VMs.
|
385
|
+
# Corresponds to the JSON property `details`
|
386
|
+
# @return [Array<Google::Apis::VmmigrationV1alpha1::AwsVmDetails>]
|
387
|
+
attr_accessor :details
|
388
|
+
|
389
|
+
def initialize(**args)
|
390
|
+
update!(**args)
|
391
|
+
end
|
392
|
+
|
393
|
+
# Update properties of this object
|
394
|
+
def update!(**args)
|
395
|
+
@details = args[:details] if args.key?(:details)
|
396
|
+
end
|
397
|
+
end
|
398
|
+
|
145
399
|
# Request message for 'CancelCloneJob' request.
|
146
400
|
class CancelCloneJobRequest
|
147
401
|
include Google::Apis::Core::Hashable
|
@@ -952,6 +1206,11 @@ module Google
|
|
952
1206
|
class FetchInventoryResponse
|
953
1207
|
include Google::Apis::Core::Hashable
|
954
1208
|
|
1209
|
+
# AWSVmsDetails describes VMs in AWS.
|
1210
|
+
# Corresponds to the JSON property `awsVms`
|
1211
|
+
# @return [Google::Apis::VmmigrationV1alpha1::AwsVmsDetails]
|
1212
|
+
attr_accessor :aws_vms
|
1213
|
+
|
955
1214
|
# Output only. A token, which can be sent as `page_token` to retrieve the next
|
956
1215
|
# page. If this field is omitted, there are no subsequent pages.
|
957
1216
|
# Corresponds to the JSON property `nextPageToken`
|
@@ -975,6 +1234,7 @@ module Google
|
|
975
1234
|
|
976
1235
|
# Update properties of this object
|
977
1236
|
def update!(**args)
|
1237
|
+
@aws_vms = args[:aws_vms] if args.key?(:aws_vms)
|
978
1238
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
979
1239
|
@update_time = args[:update_time] if args.key?(:update_time)
|
980
1240
|
@vmware_vms = args[:vmware_vms] if args.key?(:vmware_vms)
|
@@ -1506,6 +1766,11 @@ module Google
|
|
1506
1766
|
class MigratingVm
|
1507
1767
|
include Google::Apis::Core::Hashable
|
1508
1768
|
|
1769
|
+
# Represent the source AWS VM details.
|
1770
|
+
# Corresponds to the JSON property `awsSourceVmDetails`
|
1771
|
+
# @return [Google::Apis::VmmigrationV1alpha1::AwsSourceVmDetails]
|
1772
|
+
attr_accessor :aws_source_vm_details
|
1773
|
+
|
1509
1774
|
# ComputeEngineTargetDefaults is a collection of details for creating a VM in a
|
1510
1775
|
# target Compute Engine project.
|
1511
1776
|
# Corresponds to the JSON property `computeEngineTargetDefaults`
|
@@ -1626,6 +1891,7 @@ module Google
|
|
1626
1891
|
|
1627
1892
|
# Update properties of this object
|
1628
1893
|
def update!(**args)
|
1894
|
+
@aws_source_vm_details = args[:aws_source_vm_details] if args.key?(:aws_source_vm_details)
|
1629
1895
|
@compute_engine_target_defaults = args[:compute_engine_target_defaults] if args.key?(:compute_engine_target_defaults)
|
1630
1896
|
@compute_engine_vm_defaults = args[:compute_engine_vm_defaults] if args.key?(:compute_engine_vm_defaults)
|
1631
1897
|
@create_time = args[:create_time] if args.key?(:create_time)
|
@@ -2140,6 +2406,12 @@ module Google
|
|
2140
2406
|
class Source
|
2141
2407
|
include Google::Apis::Core::Hashable
|
2142
2408
|
|
2409
|
+
# AwsSourceDetails message describes a specific source details for the AWS
|
2410
|
+
# source type.
|
2411
|
+
# Corresponds to the JSON property `aws`
|
2412
|
+
# @return [Google::Apis::VmmigrationV1alpha1::AwsSourceDetails]
|
2413
|
+
attr_accessor :aws
|
2414
|
+
|
2143
2415
|
# Output only. The create time timestamp.
|
2144
2416
|
# Corresponds to the JSON property `createTime`
|
2145
2417
|
# @return [String]
|
@@ -2187,6 +2459,7 @@ module Google
|
|
2187
2459
|
|
2188
2460
|
# Update properties of this object
|
2189
2461
|
def update!(**args)
|
2462
|
+
@aws = args[:aws] if args.key?(:aws)
|
2190
2463
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2191
2464
|
@description = args[:description] if args.key?(:description)
|
2192
2465
|
@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.21.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221027"
|
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,69 @@ 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 :boot_option, as: 'bootOption'
|
528
|
+
property :committed_storage_mb, :numeric_string => true, as: 'committedStorageMb'
|
529
|
+
property :cpu_count, as: 'cpuCount'
|
530
|
+
property :disk_count, as: 'diskCount'
|
531
|
+
property :display_name, as: 'displayName'
|
532
|
+
property :instance_type, as: 'instanceType'
|
533
|
+
property :memory_mb, as: 'memoryMb'
|
534
|
+
property :os_description, as: 'osDescription'
|
535
|
+
property :power_state, as: 'powerState'
|
536
|
+
collection :security_groups, as: 'securityGroups', class: Google::Apis::VmmigrationV1alpha1::AwsSecurityGroup, decorator: Google::Apis::VmmigrationV1alpha1::AwsSecurityGroup::Representation
|
537
|
+
|
538
|
+
property :source_description, as: 'sourceDescription'
|
539
|
+
property :source_id, as: 'sourceId'
|
540
|
+
hash :tags, as: 'tags'
|
541
|
+
property :vm_id, as: 'vmId'
|
542
|
+
property :vpc_id, as: 'vpcId'
|
543
|
+
property :zone, as: 'zone'
|
544
|
+
end
|
545
|
+
end
|
546
|
+
|
547
|
+
class AwsVmsDetails
|
548
|
+
# @private
|
549
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
550
|
+
collection :details, as: 'details', class: Google::Apis::VmmigrationV1alpha1::AwsVmDetails, decorator: Google::Apis::VmmigrationV1alpha1::AwsVmDetails::Representation
|
551
|
+
|
552
|
+
end
|
553
|
+
end
|
554
|
+
|
462
555
|
class CancelCloneJobRequest
|
463
556
|
# @private
|
464
557
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -666,6 +759,8 @@ module Google
|
|
666
759
|
class FetchInventoryResponse
|
667
760
|
# @private
|
668
761
|
class Representation < Google::Apis::Core::JsonRepresentation
|
762
|
+
property :aws_vms, as: 'awsVms', class: Google::Apis::VmmigrationV1alpha1::AwsVmsDetails, decorator: Google::Apis::VmmigrationV1alpha1::AwsVmsDetails::Representation
|
763
|
+
|
669
764
|
property :next_page_token, as: 'nextPageToken'
|
670
765
|
property :update_time, as: 'updateTime'
|
671
766
|
property :vmware_vms, as: 'vmwareVms', class: Google::Apis::VmmigrationV1alpha1::VmwareVmsDetails, decorator: Google::Apis::VmmigrationV1alpha1::VmwareVmsDetails::Representation
|
@@ -840,6 +935,8 @@ module Google
|
|
840
935
|
class MigratingVm
|
841
936
|
# @private
|
842
937
|
class Representation < Google::Apis::Core::JsonRepresentation
|
938
|
+
property :aws_source_vm_details, as: 'awsSourceVmDetails', class: Google::Apis::VmmigrationV1alpha1::AwsSourceVmDetails, decorator: Google::Apis::VmmigrationV1alpha1::AwsSourceVmDetails::Representation
|
939
|
+
|
843
940
|
property :compute_engine_target_defaults, as: 'computeEngineTargetDefaults', class: Google::Apis::VmmigrationV1alpha1::ComputeEngineTargetDefaults, decorator: Google::Apis::VmmigrationV1alpha1::ComputeEngineTargetDefaults::Representation
|
844
941
|
|
845
942
|
property :compute_engine_vm_defaults, as: 'computeEngineVmDefaults', class: Google::Apis::VmmigrationV1alpha1::TargetVmDetails, decorator: Google::Apis::VmmigrationV1alpha1::TargetVmDetails::Representation
|
@@ -1012,6 +1109,8 @@ module Google
|
|
1012
1109
|
class Source
|
1013
1110
|
# @private
|
1014
1111
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1112
|
+
property :aws, as: 'aws', class: Google::Apis::VmmigrationV1alpha1::AwsSourceDetails, decorator: Google::Apis::VmmigrationV1alpha1::AwsSourceDetails::Representation
|
1113
|
+
|
1015
1114
|
property :create_time, as: 'createTime'
|
1016
1115
|
property :description, as: 'description'
|
1017
1116
|
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.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-
|
11
|
+
date: 2022-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.9.
|
19
|
+
version: 0.9.1
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.9.
|
29
|
+
version: 0.9.1
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.21.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: []
|