google-apis-vmmigration_v1 0.67.0 → 0.69.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: aa800f512c816dc2ce0aca960c839c08b68d91debe15d2c7ddcb0637b1b112d9
4
+ data.tar.gz: 8c265f80bb3528064b172a853e1bdf65a1fb39af988c5ceb8f4373ad7715e0ae
5
5
  SHA512:
6
- metadata.gz: db89364189bb20b32dddfd0d785498f9c7e83807de0f61d0a91c41f6fc11982bb0651f6cec3f3ccff2957e1a0280d2e1fef7a560d05a67d3c75217c97b75e9d2
7
- data.tar.gz: c0c32f4a5bca4546f14e91d4498076cfb8a6dc36d10bf0bb6668d131b60e892ba9a8242b921f858b90fbe80a3d21dbd0a622ca78be5f106d45b98b31f9e2cd2d
6
+ metadata.gz: ab8039b7bbbe7552ed375e00e009e9127f09ef4c9fbfb41ed6d6619a93082457616d201730c7d29b452bd77f520b21d0489eb471dcbb7f4128b17c398a769785
7
+ data.tar.gz: f475148b63bb47d85fb3cb51aed458ecb9678a4495dcc1184c7a182246932373ce89d0c94221f70759845e053ab9d329967fb5ade117c0f1e1b0b27387ca7409
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-vmmigration_v1
2
2
 
3
+ ### v0.69.0 (2025-10-12)
4
+
5
+ * Regenerated from discovery document revision 20251002
6
+
7
+ ### v0.68.0 (2025-09-21)
8
+
9
+ * Regenerated from discovery document revision 20250911
10
+
3
11
  ### v0.67.0 (2025-09-14)
4
12
 
5
13
  * 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)
@@ -3177,6 +3223,13 @@ module Google
3177
3223
  # @return [Array<Google::Apis::VmmigrationV1::Operation>]
3178
3224
  attr_accessor :operations
3179
3225
 
3226
+ # Unordered list. Unreachable resources. Populated when the request sets `
3227
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
3228
+ # when attempting to list all resources across all supported locations.
3229
+ # Corresponds to the JSON property `unreachable`
3230
+ # @return [Array<String>]
3231
+ attr_accessor :unreachable
3232
+
3180
3233
  def initialize(**args)
3181
3234
  update!(**args)
3182
3235
  end
@@ -3185,6 +3238,7 @@ module Google
3185
3238
  def update!(**args)
3186
3239
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3187
3240
  @operations = args[:operations] if args.key?(:operations)
3241
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
3188
3242
  end
3189
3243
  end
3190
3244
 
@@ -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.69.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 = "20251002"
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'
@@ -1701,6 +1721,7 @@ module Google
1701
1721
  property :next_page_token, as: 'nextPageToken'
1702
1722
  collection :operations, as: 'operations', class: Google::Apis::VmmigrationV1::Operation, decorator: Google::Apis::VmmigrationV1::Operation::Representation
1703
1723
 
1724
+ collection :unreachable, as: 'unreachable'
1704
1725
  end
1705
1726
  end
1706
1727
 
@@ -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
@@ -807,6 +807,13 @@ module Google
807
807
  # The standard list page size.
808
808
  # @param [String] page_token
809
809
  # The standard list page token.
810
+ # @param [Boolean] return_partial_success
811
+ # When set to `true`, operations that are reachable are returned as normal, and
812
+ # those that are unreachable are returned in the [ListOperationsResponse.
813
+ # unreachable] field. This can only be `true` when reading across collections e.
814
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
815
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
816
+ # explicitly documented otherwise in service or product specific documentation.
810
817
  # @param [String] fields
811
818
  # Selector specifying which fields to include in a partial response.
812
819
  # @param [String] quota_user
@@ -824,7 +831,7 @@ module Google
824
831
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
825
832
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
826
833
  # @raise [Google::Apis::AuthorizationError] Authorization is required
827
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
834
+ def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
828
835
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
829
836
  command.response_representation = Google::Apis::VmmigrationV1::ListOperationsResponse::Representation
830
837
  command.response_class = Google::Apis::VmmigrationV1::ListOperationsResponse
@@ -832,6 +839,7 @@ module Google
832
839
  command.query['filter'] = filter unless filter.nil?
833
840
  command.query['pageSize'] = page_size unless page_size.nil?
834
841
  command.query['pageToken'] = page_token unless page_token.nil?
842
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
835
843
  command.query['fields'] = fields unless fields.nil?
836
844
  command.query['quotaUser'] = quota_user unless quota_user.nil?
837
845
  execute_or_queue_command(command, &block)
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.69.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.69.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: