google-apis-vmmigration_v1alpha1 0.9.0 → 0.10.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: 9f6a9bbfe4bcf1e87d7181d27d9ce75f058de342cb1afb2b8c50d9b276cbc9d2
4
- data.tar.gz: bb7ebce51ecb6d60b0323b1de3030856f23d0c7b5ca3abce3a3551cf137fb644
3
+ metadata.gz: 8adbbbb908d3c1f6195995882f03deb4f54844c054640f126d91875cfc73dcf9
4
+ data.tar.gz: a49c95d176ebfef9a26b1b4168e40ba709b555c24fa328862aa339a7208d26f7
5
5
  SHA512:
6
- metadata.gz: 31e8b52f1222b1b641ff58a3ef2c87589dc4f3ca460e174cabacc3ba60ae45210ea79c38152b86051e837db1fe1efe1e17c37c446a8488f71a59d955aa3d7547
7
- data.tar.gz: a9e022a081f9e9fc23c13990997236c77f79d79de62cfec94e21b1d0da264e2dcc715077386ff54acb541a8fb71b9a715996cc47571cc96c36fc073d796e533f
6
+ metadata.gz: dfd42cf08d5e5646d09a9005a6453563e782ca9474135cb9b269f449b9ef544bcbff5f9879ad73c84bfa1cf574732c18a3e567e50ce4532b049fd4cd294aabe7
7
+ data.tar.gz: 43ab37410891213cc9d4d3560337c6ff77c8da85c9c84519a2d90efb0b03a5824eb522fead8d1ab8f4fc734a9d275131105f25c40ea46e369e1a2893a1fdf9b0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-vmmigration_v1alpha1
2
2
 
3
+ ### v0.10.0 (2022-04-15)
4
+
5
+ * Regenerated from discovery document revision 20220408
6
+
3
7
  ### v0.9.0 (2022-04-08)
4
8
 
5
9
  * Regenerated from discovery document revision 20220401
@@ -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
@@ -1305,6 +1324,11 @@ module Google
1305
1324
  class MigratingVm
1306
1325
  include Google::Apis::Core::Hashable
1307
1326
 
1327
+ # Represent the source AWS VM details.
1328
+ # Corresponds to the JSON property `awsSourceVmDetails`
1329
+ # @return [Google::Apis::VmmigrationV1alpha1::AwsSourceVmDetails]
1330
+ attr_accessor :aws_source_vm_details
1331
+
1308
1332
  # ComputeEngineTargetDefaults is a collection of details for creating a VM in a
1309
1333
  # target Compute Engine project.
1310
1334
  # Corresponds to the JSON property `computeEngineTargetDefaults`
@@ -1425,6 +1449,7 @@ module Google
1425
1449
 
1426
1450
  # Update properties of this object
1427
1451
  def update!(**args)
1452
+ @aws_source_vm_details = args[:aws_source_vm_details] if args.key?(:aws_source_vm_details)
1428
1453
  @compute_engine_target_defaults = args[:compute_engine_target_defaults] if args.key?(:compute_engine_target_defaults)
1429
1454
  @compute_engine_vm_defaults = args[:compute_engine_vm_defaults] if args.key?(:compute_engine_vm_defaults)
1430
1455
  @create_time = args[:create_time] if args.key?(:create_time)
@@ -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.9.0"
19
+ GEM_VERSION = "0.10.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 = "20220401"
25
+ REVISION = "20220408"
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
 
@@ -411,6 +417,13 @@ module Google
411
417
  end
412
418
  end
413
419
 
420
+ class AwsSourceVmDetails
421
+ # @private
422
+ class Representation < Google::Apis::Core::JsonRepresentation
423
+ property :firmware, as: 'firmware'
424
+ end
425
+ end
426
+
414
427
  class CancelCloneJobRequest
415
428
  # @private
416
429
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -735,6 +748,8 @@ module Google
735
748
  class MigratingVm
736
749
  # @private
737
750
  class Representation < Google::Apis::Core::JsonRepresentation
751
+ property :aws_source_vm_details, as: 'awsSourceVmDetails', class: Google::Apis::VmmigrationV1alpha1::AwsSourceVmDetails, decorator: Google::Apis::VmmigrationV1alpha1::AwsSourceVmDetails::Representation
752
+
738
753
  property :compute_engine_target_defaults, as: 'computeEngineTargetDefaults', class: Google::Apis::VmmigrationV1alpha1::ComputeEngineTargetDefaults, decorator: Google::Apis::VmmigrationV1alpha1::ComputeEngineTargetDefaults::Representation
739
754
 
740
755
  property :compute_engine_vm_defaults, as: 'computeEngineVmDefaults', class: Google::Apis::VmmigrationV1alpha1::TargetVmDetails, decorator: Google::Apis::VmmigrationV1alpha1::TargetVmDetails::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.9.0
4
+ version: 0.10.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-11 00:00:00.000000000 Z
11
+ date: 2022-04-18 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.9.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.10.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: []