google-apis-vmmigration_v1alpha1 0.21.0 → 0.23.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: 469aa806260104d48f8cbd9cc0f485c96d3d5de7550651f4627572ad17b9590b
4
- data.tar.gz: d5f931b251079ca231b4aababf97667a11dc99680988fb7c35e904061d7a9729
3
+ metadata.gz: 8289e548b60fa2f48d2fee14fb98e3ad55d27e6f12d57d7538fd8eea946068ef
4
+ data.tar.gz: cf0c289ea587c9b3653123111a20353bfac2f272beb3e956cc1a2a31942c85e6
5
5
  SHA512:
6
- metadata.gz: 64ccc3f8f503b86770d89e93280cd4323a8721f7ff23dad955b0fe5eadc5d7f05fc6b8615c8fc2ad0da98c271751a745aca6ded3f6c87987796e3b7907bd177d
7
- data.tar.gz: 0c380c421253e77438f4e709825b6d3380196fa0d85fcfd806efa5af3c49d6bc376cbd587a4c6b7cb0807b6316d0c07da0b186811d52b44da4d9e9dda5a98f59
6
+ metadata.gz: 97022711415c5ac520fcbe70bcb6bd26e799f75fd4ec4a4519c1b4540249ec939d586fc8c512f7da3567208af66a9638a6fbd2341c70c6313427b3476fe8d690
7
+ data.tar.gz: 3fa1a34b68f0dc2165ddd3d202d45649212a6cae29323ab6a65b5fa8dfb26bca6a6e900c7935205e7f706cebdf3d458897fde374f50e636b38b83b8b0b630083
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-vmmigration_v1alpha1
2
2
 
3
+ ### v0.23.0 (2022-12-04)
4
+
5
+ * Regenerated from discovery document revision 20221126
6
+
7
+ ### v0.22.0 (2022-11-10)
8
+
9
+ * Regenerated from discovery document revision 20221103
10
+
3
11
  ### v0.21.0 (2022-11-06)
4
12
 
5
13
  * Regenerated from discovery document revision 20221027
@@ -22,6 +22,31 @@ module Google
22
22
  module Apis
23
23
  module VmmigrationV1alpha1
24
24
 
25
+ # Message describing AWS Credentials using access key id and secret.
26
+ class AccessKeyCredentials
27
+ include Google::Apis::Core::Hashable
28
+
29
+ # AWS access key ID.
30
+ # Corresponds to the JSON property `accessKeyId`
31
+ # @return [String]
32
+ attr_accessor :access_key_id
33
+
34
+ # Input only. AWS secret access key.
35
+ # Corresponds to the JSON property `secretAccessKey`
36
+ # @return [String]
37
+ attr_accessor :secret_access_key
38
+
39
+ def initialize(**args)
40
+ update!(**args)
41
+ end
42
+
43
+ # Update properties of this object
44
+ def update!(**args)
45
+ @access_key_id = args[:access_key_id] if args.key?(:access_key_id)
46
+ @secret_access_key = args[:secret_access_key] if args.key?(:secret_access_key)
47
+ end
48
+ end
49
+
25
50
  # AdaptingOSStep contains specific step details.
26
51
  class AdaptingOsStep
27
52
  include Google::Apis::Core::Hashable
@@ -172,6 +197,11 @@ module Google
172
197
  class AwsSourceDetails
173
198
  include Google::Apis::Core::Hashable
174
199
 
200
+ # Message describing AWS Credentials using access key id and secret.
201
+ # Corresponds to the JSON property `accessKeyCreds`
202
+ # @return [Google::Apis::VmmigrationV1alpha1::AccessKeyCredentials]
203
+ attr_accessor :access_key_creds
204
+
175
205
  # AWS access key ID.
176
206
  # Corresponds to the JSON property `accessKeyId`
177
207
  # @return [String]
@@ -198,6 +228,12 @@ module Google
198
228
  attr_accessor :inventory_security_group_names
199
229
 
200
230
  # AWS resource tags to limit the scope of the source inventory.
231
+ # Corresponds to the JSON property `inventoryTagList`
232
+ # @return [Array<Google::Apis::VmmigrationV1alpha1::Tag>]
233
+ attr_accessor :inventory_tag_list
234
+
235
+ # Deprecated: AWS resource tags to limit the scope of the source inventory. Use
236
+ # inventory_tag_list instead.
201
237
  # Corresponds to the JSON property `inventoryTags`
202
238
  # @return [Hash<String,String>]
203
239
  attr_accessor :inventory_tags
@@ -231,10 +267,12 @@ module Google
231
267
 
232
268
  # Update properties of this object
233
269
  def update!(**args)
270
+ @access_key_creds = args[:access_key_creds] if args.key?(:access_key_creds)
234
271
  @access_key_id = args[:access_key_id] if args.key?(:access_key_id)
235
272
  @aws_region = args[:aws_region] if args.key?(:aws_region)
236
273
  @error = args[:error] if args.key?(:error)
237
274
  @inventory_security_group_names = args[:inventory_security_group_names] if args.key?(:inventory_security_group_names)
275
+ @inventory_tag_list = args[:inventory_tag_list] if args.key?(:inventory_tag_list)
238
276
  @inventory_tags = args[:inventory_tags] if args.key?(:inventory_tags)
239
277
  @migration_resources_user_tags = args[:migration_resources_user_tags] if args.key?(:migration_resources_user_tags)
240
278
  @public_ip = args[:public_ip] if args.key?(:public_ip)
@@ -272,6 +310,11 @@ module Google
272
310
  class AwsVmDetails
273
311
  include Google::Apis::Core::Hashable
274
312
 
313
+ # The CPU architecture.
314
+ # Corresponds to the JSON property `architecture`
315
+ # @return [String]
316
+ attr_accessor :architecture
317
+
275
318
  # The VM Boot Option.
276
319
  # Corresponds to the JSON property `bootOption`
277
320
  # @return [String]
@@ -337,6 +380,11 @@ module Google
337
380
  # @return [Hash<String,String>]
338
381
  attr_accessor :tags
339
382
 
383
+ # The virtualization type.
384
+ # Corresponds to the JSON property `virtualizationType`
385
+ # @return [String]
386
+ attr_accessor :virtualization_type
387
+
340
388
  # The VM ID in AWS.
341
389
  # Corresponds to the JSON property `vmId`
342
390
  # @return [String]
@@ -358,6 +406,7 @@ module Google
358
406
 
359
407
  # Update properties of this object
360
408
  def update!(**args)
409
+ @architecture = args[:architecture] if args.key?(:architecture)
361
410
  @boot_option = args[:boot_option] if args.key?(:boot_option)
362
411
  @committed_storage_mb = args[:committed_storage_mb] if args.key?(:committed_storage_mb)
363
412
  @cpu_count = args[:cpu_count] if args.key?(:cpu_count)
@@ -371,6 +420,7 @@ module Google
371
420
  @source_description = args[:source_description] if args.key?(:source_description)
372
421
  @source_id = args[:source_id] if args.key?(:source_id)
373
422
  @tags = args[:tags] if args.key?(:tags)
423
+ @virtualization_type = args[:virtualization_type] if args.key?(:virtualization_type)
374
424
  @vm_id = args[:vm_id] if args.key?(:vm_id)
375
425
  @vpc_id = args[:vpc_id] if args.key?(:vpc_id)
376
426
  @zone = args[:zone] if args.key?(:zone)
@@ -2251,7 +2301,8 @@ module Google
2251
2301
  # @return [Fixnum]
2252
2302
  attr_accessor :progress
2253
2303
 
2254
- # The current progress in percentage of this cycle.
2304
+ # The current progress in percentage of this cycle. Was replaced by 'steps'
2305
+ # field, which breaks down the cycle progression more accurately.
2255
2306
  # Corresponds to the JSON property `progressPercent`
2256
2307
  # @return [Fixnum]
2257
2308
  attr_accessor :progress_percent
@@ -2261,7 +2312,7 @@ module Google
2261
2312
  # @return [String]
2262
2313
  attr_accessor :start_time
2263
2314
 
2264
- # State of the MigratingVm.
2315
+ # State of the ReplicationCycle.
2265
2316
  # Corresponds to the JSON property `state`
2266
2317
  # @return [String]
2267
2318
  attr_accessor :state
@@ -2522,6 +2573,31 @@ module Google
2522
2573
  end
2523
2574
  end
2524
2575
 
2576
+ # Tag is an AWS tag representation.
2577
+ class Tag
2578
+ include Google::Apis::Core::Hashable
2579
+
2580
+ # Key of tag.
2581
+ # Corresponds to the JSON property `key`
2582
+ # @return [String]
2583
+ attr_accessor :key
2584
+
2585
+ # Value of tag.
2586
+ # Corresponds to the JSON property `value`
2587
+ # @return [String]
2588
+ attr_accessor :value
2589
+
2590
+ def initialize(**args)
2591
+ update!(**args)
2592
+ end
2593
+
2594
+ # Update properties of this object
2595
+ def update!(**args)
2596
+ @key = args[:key] if args.key?(:key)
2597
+ @value = args[:value] if args.key?(:value)
2598
+ end
2599
+ end
2600
+
2525
2601
  # TargetProject message represents a target Compute Engine project for a
2526
2602
  # migration or a clone.
2527
2603
  class TargetProject
@@ -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.21.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.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221027"
25
+ REVISION = "20221126"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,12 @@ module Google
22
22
  module Apis
23
23
  module VmmigrationV1alpha1
24
24
 
25
+ class AccessKeyCredentials
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
25
31
  class AdaptingOsStep
26
32
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
33
 
@@ -388,6 +394,12 @@ module Google
388
394
  include Google::Apis::Core::JsonObjectSupport
389
395
  end
390
396
 
397
+ class Tag
398
+ class Representation < Google::Apis::Core::JsonRepresentation; end
399
+
400
+ include Google::Apis::Core::JsonObjectSupport
401
+ end
402
+
391
403
  class TargetProject
392
404
  class Representation < Google::Apis::Core::JsonRepresentation; end
393
405
 
@@ -448,6 +460,14 @@ module Google
448
460
  include Google::Apis::Core::JsonObjectSupport
449
461
  end
450
462
 
463
+ class AccessKeyCredentials
464
+ # @private
465
+ class Representation < Google::Apis::Core::JsonRepresentation
466
+ property :access_key_id, as: 'accessKeyId'
467
+ property :secret_access_key, as: 'secretAccessKey'
468
+ end
469
+ end
470
+
451
471
  class AdaptingOsStep
452
472
  # @private
453
473
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -500,11 +520,15 @@ module Google
500
520
  class AwsSourceDetails
501
521
  # @private
502
522
  class Representation < Google::Apis::Core::JsonRepresentation
523
+ property :access_key_creds, as: 'accessKeyCreds', class: Google::Apis::VmmigrationV1alpha1::AccessKeyCredentials, decorator: Google::Apis::VmmigrationV1alpha1::AccessKeyCredentials::Representation
524
+
503
525
  property :access_key_id, as: 'accessKeyId'
504
526
  property :aws_region, as: 'awsRegion'
505
527
  property :error, as: 'error', class: Google::Apis::VmmigrationV1alpha1::Status, decorator: Google::Apis::VmmigrationV1alpha1::Status::Representation
506
528
 
507
529
  collection :inventory_security_group_names, as: 'inventorySecurityGroupNames'
530
+ collection :inventory_tag_list, as: 'inventoryTagList', class: Google::Apis::VmmigrationV1alpha1::Tag, decorator: Google::Apis::VmmigrationV1alpha1::Tag::Representation
531
+
508
532
  hash :inventory_tags, as: 'inventoryTags'
509
533
  hash :migration_resources_user_tags, as: 'migrationResourcesUserTags'
510
534
  property :public_ip, as: 'publicIp'
@@ -524,6 +548,7 @@ module Google
524
548
  class AwsVmDetails
525
549
  # @private
526
550
  class Representation < Google::Apis::Core::JsonRepresentation
551
+ property :architecture, as: 'architecture'
527
552
  property :boot_option, as: 'bootOption'
528
553
  property :committed_storage_mb, :numeric_string => true, as: 'committedStorageMb'
529
554
  property :cpu_count, as: 'cpuCount'
@@ -538,6 +563,7 @@ module Google
538
563
  property :source_description, as: 'sourceDescription'
539
564
  property :source_id, as: 'sourceId'
540
565
  hash :tags, as: 'tags'
566
+ property :virtualization_type, as: 'virtualizationType'
541
567
  property :vm_id, as: 'vmId'
542
568
  property :vpc_id, as: 'vpcId'
543
569
  property :zone, as: 'zone'
@@ -1138,6 +1164,14 @@ module Google
1138
1164
  end
1139
1165
  end
1140
1166
 
1167
+ class Tag
1168
+ # @private
1169
+ class Representation < Google::Apis::Core::JsonRepresentation
1170
+ property :key, as: 'key'
1171
+ property :value, as: 'value'
1172
+ end
1173
+ end
1174
+
1141
1175
  class TargetProject
1142
1176
  # @private
1143
1177
  class Representation < Google::Apis::Core::JsonRepresentation
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.21.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-07 00:00:00.000000000 Z
11
+ date: 2022-12-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-vmmigration_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.21.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.23.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: []