google-apis-vmmigration_v1 0.4.0 → 0.5.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: b17590144a41ded8ad3f94cf11ba873925ef18f5ba63f590544e1cc62da376df
4
- data.tar.gz: e00bf808348d52bbb8a0ad955ce02072052672c87fd0ec874ee53c47de2e3d1c
3
+ metadata.gz: 6093eecfc0b52e25a660c0272f2d39f66d67ab8b47b4ca88df175a8b298fbcf6
4
+ data.tar.gz: '09ef6543415fff50e3e3a0b593b3e97b48e195a002f5bda74819327b82afb706'
5
5
  SHA512:
6
- metadata.gz: c3fb69b03a7e43affb1efa1194559cba16021fae9926cb2bdd3e1247b174502ea3a43f6b52c1c952e4cfe99a34c1797be96e6942e2ae97998d261bf7c1346204
7
- data.tar.gz: 71ab5e58e0293984418251b66f04fff14fd8e02f5bb82513d925066910733a3ba7776abbce55ad1e695180cbaf8523a13169bf93444d67a9ec18f1111b2c4f93
6
+ metadata.gz: 318b6ecd8fdfeeed7cfb8d0964d6abfd36a989f72db461677bc781c7780821dc7c3510a8cedf3feae9d31a672cdb7d00ab7e81d7dc8dc9da6fc56f333fe839d1
7
+ data.tar.gz: d058450a990ad0033b4c678192d7739b09392219a76d44e3380b83df912ed38c21b9b84c35b71cae10a8d57fd8c94f54c09e213d2a25c532b71661f9b0df42cd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-vmmigration_v1
2
2
 
3
+ ### v0.5.0 (2021-12-14)
4
+
5
+ * Regenerated from discovery document revision 20211207
6
+
3
7
  ### v0.4.0 (2021-12-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20211130
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/vmmigration_v1"
51
51
  client = Google::Apis::VmmigrationV1::VMMigrationServiceService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -213,6 +213,11 @@ module Google
213
213
  class ComputeEngineTargetDefaults
214
214
  include Google::Apis::Core::Hashable
215
215
 
216
+ # Additional licenses to assign to the VM.
217
+ # Corresponds to the JSON property `additionalLicenses`
218
+ # @return [Array<String>]
219
+ attr_accessor :additional_licenses
220
+
216
221
  # AppliedLicense holds the license data returned by adaptation module report.
217
222
  # Corresponds to the JSON property `appliedLicense`
218
223
  # @return [Google::Apis::VmmigrationV1::AppliedLicense]
@@ -303,6 +308,7 @@ module Google
303
308
 
304
309
  # Update properties of this object
305
310
  def update!(**args)
311
+ @additional_licenses = args[:additional_licenses] if args.key?(:additional_licenses)
306
312
  @applied_license = args[:applied_license] if args.key?(:applied_license)
307
313
  @boot_option = args[:boot_option] if args.key?(:boot_option)
308
314
  @compute_scheduling = args[:compute_scheduling] if args.key?(:compute_scheduling)
@@ -327,6 +333,11 @@ module Google
327
333
  class ComputeEngineTargetDetails
328
334
  include Google::Apis::Core::Hashable
329
335
 
336
+ # Additional licenses to assign to the VM.
337
+ # Corresponds to the JSON property `additionalLicenses`
338
+ # @return [Array<String>]
339
+ attr_accessor :additional_licenses
340
+
330
341
  # AppliedLicense holds the license data returned by adaptation module report.
331
342
  # Corresponds to the JSON property `appliedLicense`
332
343
  # @return [Google::Apis::VmmigrationV1::AppliedLicense]
@@ -416,6 +427,7 @@ module Google
416
427
 
417
428
  # Update properties of this object
418
429
  def update!(**args)
430
+ @additional_licenses = args[:additional_licenses] if args.key?(:additional_licenses)
419
431
  @applied_license = args[:applied_license] if args.key?(:applied_license)
420
432
  @boot_option = args[:boot_option] if args.key?(:boot_option)
421
433
  @compute_scheduling = args[:compute_scheduling] if args.key?(:compute_scheduling)
@@ -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.4.0"
19
+ GEM_VERSION = "0.5.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211130"
25
+ REVISION = "20211207"
26
26
  end
27
27
  end
28
28
  end
@@ -438,6 +438,7 @@ module Google
438
438
  class ComputeEngineTargetDefaults
439
439
  # @private
440
440
  class Representation < Google::Apis::Core::JsonRepresentation
441
+ collection :additional_licenses, as: 'additionalLicenses'
441
442
  property :applied_license, as: 'appliedLicense', class: Google::Apis::VmmigrationV1::AppliedLicense, decorator: Google::Apis::VmmigrationV1::AppliedLicense::Representation
442
443
 
443
444
  property :boot_option, as: 'bootOption'
@@ -463,6 +464,7 @@ module Google
463
464
  class ComputeEngineTargetDetails
464
465
  # @private
465
466
  class Representation < Google::Apis::Core::JsonRepresentation
467
+ collection :additional_licenses, as: 'additionalLicenses'
466
468
  property :applied_license, as: 'appliedLicense', class: Google::Apis::VmmigrationV1::AppliedLicense, decorator: Google::Apis::VmmigrationV1::AppliedLicense::Representation
467
469
 
468
470
  property :boot_option, as: 'bootOption'
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.4.0
4
+ version: 0.5.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: 2021-12-06 00:00:00.000000000 Z
11
+ date: 2022-01-10 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.4.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.5.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.2.17
78
+ rubygems_version: 3.3.4
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for VM Migration API V1