google-apis-vmmigration_v1 0.67.0 → 0.68.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: 0e17b29bbc04f31ad6ff1da3ad10dd258a9773a42521cbad08e000773cb869f6
4
- data.tar.gz: fdcd5541f9114b9c19babec7aaa895d7204a8e9b33444ad45dabb3b178e16c8e
3
+ metadata.gz: 0c35215dd235fcbfb10e320d3c485ef2d82616adb2854d541eb63c43b0ac45cd
4
+ data.tar.gz: bb992087e037ef432faded2c25df2246c2b5b077e6cf56b97de478cd51c735e1
5
5
  SHA512:
6
- metadata.gz: db89364189bb20b32dddfd0d785498f9c7e83807de0f61d0a91c41f6fc11982bb0651f6cec3f3ccff2957e1a0280d2e1fef7a560d05a67d3c75217c97b75e9d2
7
- data.tar.gz: c0c32f4a5bca4546f14e91d4498076cfb8a6dc36d10bf0bb6668d131b60e892ba9a8242b921f858b90fbe80a3d21dbd0a622ca78be5f106d45b98b31f9e2cd2d
6
+ metadata.gz: 41840bde0fe0f8b050a5a65e16f1094005df02db5339bb3754f311e8b1374820ed4bd2d061f3af923f4f0feba3e65863d3c278885332d20e366cadb8637efda6
7
+ data.tar.gz: b4bbefec21f9529ca083e9074d4a05b414e61853d8fc6bc4aa0b3785eb64474d1593b9b127afdeb53da2ea7ddf2cdaacddb044fdeaff8e9f6b639c064bf64c93
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-vmmigration_v1
2
2
 
3
+ ### v0.68.0 (2025-09-21)
4
+
5
+ * Regenerated from discovery document revision 20250911
6
+
3
7
  ### v0.67.0 (2025-09-14)
4
8
 
5
9
  * Regenerated from discovery document revision 20250904
@@ -54,6 +54,33 @@ module Google
54
54
  end
55
55
  end
56
56
 
57
+ # AdaptationModifier a modifier to be used for configuration of the OS
58
+ # adaptation process.
59
+ class AdaptationModifier
60
+ include Google::Apis::Core::Hashable
61
+
62
+ # Optional. The modifier name.
63
+ # Corresponds to the JSON property `modifier`
64
+ # @return [String]
65
+ attr_accessor :modifier
66
+
67
+ # Optional. The value of the modifier. The actual value depends on the modifier
68
+ # and can also be empty.
69
+ # Corresponds to the JSON property `value`
70
+ # @return [String]
71
+ attr_accessor :value
72
+
73
+ def initialize(**args)
74
+ update!(**args)
75
+ end
76
+
77
+ # Update properties of this object
78
+ def update!(**args)
79
+ @modifier = args[:modifier] if args.key?(:modifier)
80
+ @value = args[:value] if args.key?(:value)
81
+ end
82
+ end
83
+
57
84
  # AdaptingOSStep contains specific step details.
58
85
  class AdaptingOsStep
59
86
  include Google::Apis::Core::Hashable
@@ -1180,6 +1207,12 @@ module Google
1180
1207
  class ComputeEngineTargetDefaults
1181
1208
  include Google::Apis::Core::Hashable
1182
1209
 
1210
+ # Optional. AdaptationModifiers are the set of modifiers used during OS
1211
+ # adaptation.
1212
+ # Corresponds to the JSON property `adaptationModifiers`
1213
+ # @return [Array<Google::Apis::VmmigrationV1::AdaptationModifier>]
1214
+ attr_accessor :adaptation_modifiers
1215
+
1183
1216
  # Additional licenses to assign to the VM.
1184
1217
  # Corresponds to the JSON property `additionalLicenses`
1185
1218
  # @return [Array<String>]
@@ -1318,6 +1351,7 @@ module Google
1318
1351
 
1319
1352
  # Update properties of this object
1320
1353
  def update!(**args)
1354
+ @adaptation_modifiers = args[:adaptation_modifiers] if args.key?(:adaptation_modifiers)
1321
1355
  @additional_licenses = args[:additional_licenses] if args.key?(:additional_licenses)
1322
1356
  @applied_license = args[:applied_license] if args.key?(:applied_license)
1323
1357
  @boot_conversion = args[:boot_conversion] if args.key?(:boot_conversion)
@@ -1349,6 +1383,11 @@ module Google
1349
1383
  class ComputeEngineTargetDetails
1350
1384
  include Google::Apis::Core::Hashable
1351
1385
 
1386
+ # Optional. Modifiers to be used as configuration of the OS adaptation process.
1387
+ # Corresponds to the JSON property `adaptationModifiers`
1388
+ # @return [Array<Google::Apis::VmmigrationV1::AdaptationModifier>]
1389
+ attr_accessor :adaptation_modifiers
1390
+
1352
1391
  # Additional licenses to assign to the VM.
1353
1392
  # Corresponds to the JSON property `additionalLicenses`
1354
1393
  # @return [Array<String>]
@@ -1484,6 +1523,7 @@ module Google
1484
1523
 
1485
1524
  # Update properties of this object
1486
1525
  def update!(**args)
1526
+ @adaptation_modifiers = args[:adaptation_modifiers] if args.key?(:adaptation_modifiers)
1487
1527
  @additional_licenses = args[:additional_licenses] if args.key?(:additional_licenses)
1488
1528
  @applied_license = args[:applied_license] if args.key?(:applied_license)
1489
1529
  @boot_conversion = args[:boot_conversion] if args.key?(:boot_conversion)
@@ -2734,6 +2774,11 @@ module Google
2734
2774
  class ImageImportOsAdaptationParameters
2735
2775
  include Google::Apis::Core::Hashable
2736
2776
 
2777
+ # Optional. Modifiers to be used as configuration of the OS adaptation process.
2778
+ # Corresponds to the JSON property `adaptationModifiers`
2779
+ # @return [Array<Google::Apis::VmmigrationV1::AdaptationModifier>]
2780
+ attr_accessor :adaptation_modifiers
2781
+
2737
2782
  # Optional. By default the image will keep its existing boot option. Setting
2738
2783
  # this property will trigger an internal process which will convert the image
2739
2784
  # from using the existing boot option to another. The size of the boot disk
@@ -2763,6 +2808,7 @@ module Google
2763
2808
 
2764
2809
  # Update properties of this object
2765
2810
  def update!(**args)
2811
+ @adaptation_modifiers = args[:adaptation_modifiers] if args.key?(:adaptation_modifiers)
2766
2812
  @boot_conversion = args[:boot_conversion] if args.key?(:boot_conversion)
2767
2813
  @generalize = args[:generalize] if args.key?(:generalize)
2768
2814
  @license_type = args[:license_type] if args.key?(:license_type)
@@ -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.67.0"
19
+ GEM_VERSION = "0.68.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250904"
25
+ REVISION = "20250911"
26
26
  end
27
27
  end
28
28
  end
@@ -28,6 +28,12 @@ module Google
28
28
  include Google::Apis::Core::JsonObjectSupport
29
29
  end
30
30
 
31
+ class AdaptationModifier
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
31
37
  class AdaptingOsStep
32
38
  class Representation < Google::Apis::Core::JsonRepresentation; end
33
39
 
@@ -817,6 +823,14 @@ module Google
817
823
  end
818
824
  end
819
825
 
826
+ class AdaptationModifier
827
+ # @private
828
+ class Representation < Google::Apis::Core::JsonRepresentation
829
+ property :modifier, as: 'modifier'
830
+ property :value, as: 'value'
831
+ end
832
+ end
833
+
820
834
  class AdaptingOsStep
821
835
  # @private
822
836
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1141,6 +1155,8 @@ module Google
1141
1155
  class ComputeEngineTargetDefaults
1142
1156
  # @private
1143
1157
  class Representation < Google::Apis::Core::JsonRepresentation
1158
+ collection :adaptation_modifiers, as: 'adaptationModifiers', class: Google::Apis::VmmigrationV1::AdaptationModifier, decorator: Google::Apis::VmmigrationV1::AdaptationModifier::Representation
1159
+
1144
1160
  collection :additional_licenses, as: 'additionalLicenses'
1145
1161
  property :applied_license, as: 'appliedLicense', class: Google::Apis::VmmigrationV1::AppliedLicense, decorator: Google::Apis::VmmigrationV1::AppliedLicense::Representation
1146
1162
 
@@ -1174,6 +1190,8 @@ module Google
1174
1190
  class ComputeEngineTargetDetails
1175
1191
  # @private
1176
1192
  class Representation < Google::Apis::Core::JsonRepresentation
1193
+ collection :adaptation_modifiers, as: 'adaptationModifiers', class: Google::Apis::VmmigrationV1::AdaptationModifier, decorator: Google::Apis::VmmigrationV1::AdaptationModifier::Representation
1194
+
1177
1195
  collection :additional_licenses, as: 'additionalLicenses'
1178
1196
  property :applied_license, as: 'appliedLicense', class: Google::Apis::VmmigrationV1::AppliedLicense, decorator: Google::Apis::VmmigrationV1::AppliedLicense::Representation
1179
1197
 
@@ -1558,6 +1576,8 @@ module Google
1558
1576
  class ImageImportOsAdaptationParameters
1559
1577
  # @private
1560
1578
  class Representation < Google::Apis::Core::JsonRepresentation
1579
+ collection :adaptation_modifiers, as: 'adaptationModifiers', class: Google::Apis::VmmigrationV1::AdaptationModifier, decorator: Google::Apis::VmmigrationV1::AdaptationModifier::Representation
1580
+
1561
1581
  property :boot_conversion, as: 'bootConversion'
1562
1582
  property :generalize, as: 'generalize'
1563
1583
  property :license_type, as: 'licenseType'
@@ -582,7 +582,7 @@ module Google
582
582
  execute_or_queue_command(command, &block)
583
583
  end
584
584
 
585
- # Initiates the cancellation of a running clone job.
585
+ # Initiates the cancellation of a running ImageImportJob.
586
586
  # @param [String] name
587
587
  # Required. The image import job id.
588
588
  # @param [Google::Apis::VmmigrationV1::CancelImageImportJobRequest] cancel_image_import_job_request_object
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-vmmigration_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.67.0
4
+ version: 0.68.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmmigration_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.67.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.68.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmmigration_v1
62
62
  rdoc_options: []
63
63
  require_paths: