google-apis-vmmigration_v1 0.9.0 → 0.10.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: e94ebfdfed9686ab5de9785cd89f726576269d8d3d8a0e2ebd283be1ec6df264
4
- data.tar.gz: 4ed12a1a4d923dc4f68196f4a4c5902fc5bf1200c0c2b892c43f7233162f3bd1
3
+ metadata.gz: 4a02227fafd897b871dbaad9f60fe5631b6d09f85155ca0c6fb1e210d3170b8e
4
+ data.tar.gz: 969744b128f40a3e2e080c15b83587da0fab815e9b018bc79d3eac05487d068d
5
5
  SHA512:
6
- metadata.gz: 3f9ffcafe34cb94cb0fd127d1f95da64cd4945c5a7443c4a5ccdbfc71e30131dc74e86937cfc4b6f61b918985185769a113eb5dd4a8b8fe6b5887228b9112f4e
7
- data.tar.gz: 30dc99bf5b93fda591a09d555d08d5b492bc3c7627b40f2be65a20da6d916e2d475e253765e8284424f46dfd18b1803df7c5a13615dbc47dd2bd671b29c0fb8b
6
+ metadata.gz: b8519d82fcf1e2e704a0f02a68216cd96f14aca83a670656534f0c4becdbd4763933df1880af5bde00be897d118abe3c19bdbe2114ae9cb0176a61874149d387
7
+ data.tar.gz: 8ffdc884b909f5a814ec7386530c6b60f226b8040b345f0a214172018a59cb660171e8a676e7d24cb448d374ab9a777aa6fbfe5ad8aa082fad75c25fc47f5e04
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-vmmigration_v1
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
@@ -1220,6 +1239,11 @@ module Google
1220
1239
  class MigratingVm
1221
1240
  include Google::Apis::Core::Hashable
1222
1241
 
1242
+ # Represent the source AWS VM details.
1243
+ # Corresponds to the JSON property `awsSourceVmDetails`
1244
+ # @return [Google::Apis::VmmigrationV1::AwsSourceVmDetails]
1245
+ attr_accessor :aws_source_vm_details
1246
+
1223
1247
  # ComputeEngineTargetDefaults is a collection of details for creating a VM in a
1224
1248
  # target Compute Engine project.
1225
1249
  # Corresponds to the JSON property `computeEngineTargetDefaults`
@@ -1328,6 +1352,7 @@ module Google
1328
1352
 
1329
1353
  # Update properties of this object
1330
1354
  def update!(**args)
1355
+ @aws_source_vm_details = args[:aws_source_vm_details] if args.key?(:aws_source_vm_details)
1331
1356
  @compute_engine_target_defaults = args[:compute_engine_target_defaults] if args.key?(:compute_engine_target_defaults)
1332
1357
  @create_time = args[:create_time] if args.key?(:create_time)
1333
1358
  @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.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
 
@@ -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
@@ -677,6 +690,8 @@ module Google
677
690
  class MigratingVm
678
691
  # @private
679
692
  class Representation < Google::Apis::Core::JsonRepresentation
693
+ property :aws_source_vm_details, as: 'awsSourceVmDetails', class: Google::Apis::VmmigrationV1::AwsSourceVmDetails, decorator: Google::Apis::VmmigrationV1::AwsSourceVmDetails::Representation
694
+
680
695
  property :compute_engine_target_defaults, as: 'computeEngineTargetDefaults', class: Google::Apis::VmmigrationV1::ComputeEngineTargetDefaults, decorator: Google::Apis::VmmigrationV1::ComputeEngineTargetDefaults::Representation
681
696
 
682
697
  property :create_time, as: 'createTime'
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.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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.9.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.10.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: []