google-apis-vmmigration_v1 0.8.0 → 0.11.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: 97d6824cfdecab684f8b4dd2c971115fb10b00b94199af0cdc906d70c8e7abbd
4
- data.tar.gz: 3089e41822916a1ccccabffcfb95378768c5ff5a5fbc6cc9d842bbfebd237622
3
+ metadata.gz: 2cce275ad3a71ff4e119001480a9793554ac9319e0d58cfcc9d23d526dc64eeb
4
+ data.tar.gz: b7e4fed9a1e718cdbe898b9d0225443fdc9edbee22a23f0e6780845e6e6d1d0a
5
5
  SHA512:
6
- metadata.gz: cb875281b1fda4496a3f4c046591076ebc88d5b6222581b7b59409d58d5672e28d5100b6ae36a323aa48a8781ac2ff2dd669e4e052a46403c59523d791ac746c
7
- data.tar.gz: cbc56b69c6160d8ddc8754c34ba5e85b9b46b536732745a77a9fa4e27b72db8187e3cbd9bdccbbf996077fb4400b89b76a0ec55aabe400cf4466c4596d6d0bf4
6
+ metadata.gz: 01ea2aaf5fff98dd1666652f24aed6ce8de5749a2b23759cb9d4eed665c91165b5d0c301ff4ec0bcad0c6d692093ae58f007956693813387cce6f1bebc1fa27b
7
+ data.tar.gz: 0a298ebc75d52f261497a7e4174d772317f5ac173f743e9c5d0c80eb9742302b6015698b63682d3664f093b43f85519fa35a334f0144cea9366dbaf56a50ad68
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-vmmigration_v1
2
2
 
3
+ ### v0.11.0 (2022-05-12)
4
+
5
+ * Regenerated from discovery document revision 20220428
6
+
7
+ ### v0.10.0 (2022-04-15)
8
+
9
+ * Regenerated from discovery document revision 20220408
10
+
11
+ ### v0.9.0 (2022-04-08)
12
+
13
+ * Regenerated from discovery document revision 20220401
14
+
3
15
  ### v0.8.0 (2022-04-02)
4
16
 
5
17
  * Regenerated from discovery document revision 20220327
@@ -129,6 +129,25 @@ module Google
129
129
  end
130
130
  end
131
131
 
132
+ # Represent the source AWS VM details.
133
+ class AwsSourceVmDetails
134
+ include Google::Apis::Core::Hashable
135
+
136
+ # The firmware type of the source VM.
137
+ # Corresponds to the JSON property `firmware`
138
+ # @return [String]
139
+ attr_accessor :firmware
140
+
141
+ def initialize(**args)
142
+ update!(**args)
143
+ end
144
+
145
+ # Update properties of this object
146
+ def update!(**args)
147
+ @firmware = args[:firmware] if args.key?(:firmware)
148
+ end
149
+ end
150
+
132
151
  # Request message for 'CancelCloneJob' request.
133
152
  class CancelCloneJobRequest
134
153
  include Google::Apis::Core::Hashable
@@ -269,6 +288,11 @@ module Google
269
288
  # @return [String]
270
289
  attr_accessor :disk_type
271
290
 
291
+ # The hostname to assign to the VM.
292
+ # Corresponds to the JSON property `hostname`
293
+ # @return [String]
294
+ attr_accessor :hostname
295
+
272
296
  # A map of labels to associate with the VM.
273
297
  # Corresponds to the JSON property `labels`
274
298
  # @return [Hash<String,String>]
@@ -343,6 +367,7 @@ module Google
343
367
  @boot_option = args[:boot_option] if args.key?(:boot_option)
344
368
  @compute_scheduling = args[:compute_scheduling] if args.key?(:compute_scheduling)
345
369
  @disk_type = args[:disk_type] if args.key?(:disk_type)
370
+ @hostname = args[:hostname] if args.key?(:hostname)
346
371
  @labels = args[:labels] if args.key?(:labels)
347
372
  @license_type = args[:license_type] if args.key?(:license_type)
348
373
  @machine_type = args[:machine_type] if args.key?(:machine_type)
@@ -389,6 +414,11 @@ module Google
389
414
  # @return [String]
390
415
  attr_accessor :disk_type
391
416
 
417
+ # The hostname to assign to the VM.
418
+ # Corresponds to the JSON property `hostname`
419
+ # @return [String]
420
+ attr_accessor :hostname
421
+
392
422
  # A map of labels to associate with the VM.
393
423
  # Corresponds to the JSON property `labels`
394
424
  # @return [Hash<String,String>]
@@ -462,6 +492,7 @@ module Google
462
492
  @boot_option = args[:boot_option] if args.key?(:boot_option)
463
493
  @compute_scheduling = args[:compute_scheduling] if args.key?(:compute_scheduling)
464
494
  @disk_type = args[:disk_type] if args.key?(:disk_type)
495
+ @hostname = args[:hostname] if args.key?(:hostname)
465
496
  @labels = args[:labels] if args.key?(:labels)
466
497
  @license_type = args[:license_type] if args.key?(:license_type)
467
498
  @machine_type = args[:machine_type] if args.key?(:machine_type)
@@ -1220,6 +1251,11 @@ module Google
1220
1251
  class MigratingVm
1221
1252
  include Google::Apis::Core::Hashable
1222
1253
 
1254
+ # Represent the source AWS VM details.
1255
+ # Corresponds to the JSON property `awsSourceVmDetails`
1256
+ # @return [Google::Apis::VmmigrationV1::AwsSourceVmDetails]
1257
+ attr_accessor :aws_source_vm_details
1258
+
1223
1259
  # ComputeEngineTargetDefaults is a collection of details for creating a VM in a
1224
1260
  # target Compute Engine project.
1225
1261
  # Corresponds to the JSON property `computeEngineTargetDefaults`
@@ -1328,6 +1364,7 @@ module Google
1328
1364
 
1329
1365
  # Update properties of this object
1330
1366
  def update!(**args)
1367
+ @aws_source_vm_details = args[:aws_source_vm_details] if args.key?(:aws_source_vm_details)
1331
1368
  @compute_engine_target_defaults = args[:compute_engine_target_defaults] if args.key?(:compute_engine_target_defaults)
1332
1369
  @create_time = args[:create_time] if args.key?(:create_time)
1333
1370
  @current_sync_info = args[:current_sync_info] if args.key?(:current_sync_info)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module VmmigrationV1
18
18
  # Version of the google-apis-vmmigration_v1 gem
19
- GEM_VERSION = "0.8.0"
19
+ GEM_VERSION = "0.11.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220327"
25
+ REVISION = "20220428"
26
26
  end
27
27
  end
28
28
  end
@@ -46,6 +46,12 @@ module Google
46
46
  include Google::Apis::Core::JsonObjectSupport
47
47
  end
48
48
 
49
+ class AwsSourceVmDetails
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
49
55
  class CancelCloneJobRequest
50
56
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
57
 
@@ -381,6 +387,13 @@ module Google
381
387
  end
382
388
  end
383
389
 
390
+ class AwsSourceVmDetails
391
+ # @private
392
+ class Representation < Google::Apis::Core::JsonRepresentation
393
+ property :firmware, as: 'firmware'
394
+ end
395
+ end
396
+
384
397
  class CancelCloneJobRequest
385
398
  # @private
386
399
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -424,6 +437,7 @@ module Google
424
437
  property :compute_scheduling, as: 'computeScheduling', class: Google::Apis::VmmigrationV1::ComputeScheduling, decorator: Google::Apis::VmmigrationV1::ComputeScheduling::Representation
425
438
 
426
439
  property :disk_type, as: 'diskType'
440
+ property :hostname, as: 'hostname'
427
441
  hash :labels, as: 'labels'
428
442
  property :license_type, as: 'licenseType'
429
443
  property :machine_type, as: 'machineType'
@@ -450,6 +464,7 @@ module Google
450
464
  property :compute_scheduling, as: 'computeScheduling', class: Google::Apis::VmmigrationV1::ComputeScheduling, decorator: Google::Apis::VmmigrationV1::ComputeScheduling::Representation
451
465
 
452
466
  property :disk_type, as: 'diskType'
467
+ property :hostname, as: 'hostname'
453
468
  hash :labels, as: 'labels'
454
469
  property :license_type, as: 'licenseType'
455
470
  property :machine_type, as: 'machineType'
@@ -677,6 +692,8 @@ module Google
677
692
  class MigratingVm
678
693
  # @private
679
694
  class Representation < Google::Apis::Core::JsonRepresentation
695
+ property :aws_source_vm_details, as: 'awsSourceVmDetails', class: Google::Apis::VmmigrationV1::AwsSourceVmDetails, decorator: Google::Apis::VmmigrationV1::AwsSourceVmDetails::Representation
696
+
680
697
  property :compute_engine_target_defaults, as: 'computeEngineTargetDefaults', class: Google::Apis::VmmigrationV1::ComputeEngineTargetDefaults, decorator: Google::Apis::VmmigrationV1::ComputeEngineTargetDefaults::Representation
681
698
 
682
699
  property :create_time, as: 'createTime'
@@ -84,8 +84,8 @@ module Google
84
84
  # The resource that owns the locations collection, if applicable.
85
85
  # @param [String] filter
86
86
  # A filter to narrow down results to a preferred subset. The filtering language
87
- # accepts strings like "displayName=tokyo", and is documented in more detail in [
88
- # AIP-160](https://google.aip.dev/160).
87
+ # accepts strings like `"displayName=tokyo"`, and is documented in more detail
88
+ # in [AIP-160](https://google.aip.dev/160).
89
89
  # @param [Fixnum] page_size
90
90
  # The maximum number of results to return. If not set, the service selects a
91
91
  # default.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-vmmigration_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.11.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-04-04 00:00:00.000000000 Z
11
+ date: 2022-05-16 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.8.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.11.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmmigration_v1
63
63
  post_install_message:
64
64
  rdoc_options: []