google-apis-vmmigration_v1alpha1 0.62.0 → 0.64.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/vmmigration_v1alpha1/classes.rb +54 -0
- data/lib/google/apis/vmmigration_v1alpha1/gem_version.rb +2 -2
- data/lib/google/apis/vmmigration_v1alpha1/representations.rb +21 -0
- data/lib/google/apis/vmmigration_v1alpha1/service.rb +10 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a7a86905c2187936e98c800a5fc8ec47bdf47b9b5e42f67de368a9dfb22d9ee5
|
|
4
|
+
data.tar.gz: 42cabcfadd7a0979fb5b692179fce00a3354f06df60af1cdde274cf2fff5edf7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f7992b6c3bbe94f572353b6c2fa5f5417bf4cd3c013af0540d798421741f2eac79088d644aaf973d4e468b5a4a240a0bfd76f997e7d2c126ca39c174f33a423e
|
|
7
|
+
data.tar.gz: 751dc588dad6a311f337d92a3999538a1225c1ae9bbd5d342399c1ecc9317f02aa571ec8c60036a80d859a89bb212529b1cbfc83fff543077f2b77d250cf5f67
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-vmmigration_v1alpha1
|
|
2
2
|
|
|
3
|
+
### v0.64.0 (2025-10-12)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251002
|
|
6
|
+
|
|
7
|
+
### v0.63.0 (2025-09-21)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250911
|
|
10
|
+
|
|
3
11
|
### v0.62.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
|
|
@@ -1194,6 +1221,12 @@ module Google
|
|
|
1194
1221
|
class ComputeEngineTargetDefaults
|
|
1195
1222
|
include Google::Apis::Core::Hashable
|
|
1196
1223
|
|
|
1224
|
+
# Optional. AdaptationModifiers are the set of modifiers used during OS
|
|
1225
|
+
# adaptation.
|
|
1226
|
+
# Corresponds to the JSON property `adaptationModifiers`
|
|
1227
|
+
# @return [Array<Google::Apis::VmmigrationV1alpha1::AdaptationModifier>]
|
|
1228
|
+
attr_accessor :adaptation_modifiers
|
|
1229
|
+
|
|
1197
1230
|
# Additional licenses to assign to the VM.
|
|
1198
1231
|
# Corresponds to the JSON property `additionalLicenses`
|
|
1199
1232
|
# @return [Array<String>]
|
|
@@ -1332,6 +1365,7 @@ module Google
|
|
|
1332
1365
|
|
|
1333
1366
|
# Update properties of this object
|
|
1334
1367
|
def update!(**args)
|
|
1368
|
+
@adaptation_modifiers = args[:adaptation_modifiers] if args.key?(:adaptation_modifiers)
|
|
1335
1369
|
@additional_licenses = args[:additional_licenses] if args.key?(:additional_licenses)
|
|
1336
1370
|
@applied_license = args[:applied_license] if args.key?(:applied_license)
|
|
1337
1371
|
@boot_conversion = args[:boot_conversion] if args.key?(:boot_conversion)
|
|
@@ -1363,6 +1397,11 @@ module Google
|
|
|
1363
1397
|
class ComputeEngineTargetDetails
|
|
1364
1398
|
include Google::Apis::Core::Hashable
|
|
1365
1399
|
|
|
1400
|
+
# Optional. Modifiers to be used as configuration of the OS adaptation process.
|
|
1401
|
+
# Corresponds to the JSON property `adaptationModifiers`
|
|
1402
|
+
# @return [Array<Google::Apis::VmmigrationV1alpha1::AdaptationModifier>]
|
|
1403
|
+
attr_accessor :adaptation_modifiers
|
|
1404
|
+
|
|
1366
1405
|
# Additional licenses to assign to the VM.
|
|
1367
1406
|
# Corresponds to the JSON property `additionalLicenses`
|
|
1368
1407
|
# @return [Array<String>]
|
|
@@ -1498,6 +1537,7 @@ module Google
|
|
|
1498
1537
|
|
|
1499
1538
|
# Update properties of this object
|
|
1500
1539
|
def update!(**args)
|
|
1540
|
+
@adaptation_modifiers = args[:adaptation_modifiers] if args.key?(:adaptation_modifiers)
|
|
1501
1541
|
@additional_licenses = args[:additional_licenses] if args.key?(:additional_licenses)
|
|
1502
1542
|
@applied_license = args[:applied_license] if args.key?(:applied_license)
|
|
1503
1543
|
@boot_conversion = args[:boot_conversion] if args.key?(:boot_conversion)
|
|
@@ -2775,6 +2815,11 @@ module Google
|
|
|
2775
2815
|
class ImageImportOsAdaptationParameters
|
|
2776
2816
|
include Google::Apis::Core::Hashable
|
|
2777
2817
|
|
|
2818
|
+
# Optional. Modifiers to be used as configuration of the OS adaptation process.
|
|
2819
|
+
# Corresponds to the JSON property `adaptationModifiers`
|
|
2820
|
+
# @return [Array<Google::Apis::VmmigrationV1alpha1::AdaptationModifier>]
|
|
2821
|
+
attr_accessor :adaptation_modifiers
|
|
2822
|
+
|
|
2778
2823
|
# Optional. By default the image will keep its existing boot option. Setting
|
|
2779
2824
|
# this property will trigger an internal process which will convert the image
|
|
2780
2825
|
# from using the existing boot option to another. The size of the boot disk
|
|
@@ -2804,6 +2849,7 @@ module Google
|
|
|
2804
2849
|
|
|
2805
2850
|
# Update properties of this object
|
|
2806
2851
|
def update!(**args)
|
|
2852
|
+
@adaptation_modifiers = args[:adaptation_modifiers] if args.key?(:adaptation_modifiers)
|
|
2807
2853
|
@boot_conversion = args[:boot_conversion] if args.key?(:boot_conversion)
|
|
2808
2854
|
@generalize = args[:generalize] if args.key?(:generalize)
|
|
2809
2855
|
@license_type = args[:license_type] if args.key?(:license_type)
|
|
@@ -3218,6 +3264,13 @@ module Google
|
|
|
3218
3264
|
# @return [Array<Google::Apis::VmmigrationV1alpha1::Operation>]
|
|
3219
3265
|
attr_accessor :operations
|
|
3220
3266
|
|
|
3267
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
3268
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
|
3269
|
+
# when attempting to list all resources across all supported locations.
|
|
3270
|
+
# Corresponds to the JSON property `unreachable`
|
|
3271
|
+
# @return [Array<String>]
|
|
3272
|
+
attr_accessor :unreachable
|
|
3273
|
+
|
|
3221
3274
|
def initialize(**args)
|
|
3222
3275
|
update!(**args)
|
|
3223
3276
|
end
|
|
@@ -3226,6 +3279,7 @@ module Google
|
|
|
3226
3279
|
def update!(**args)
|
|
3227
3280
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
3228
3281
|
@operations = args[:operations] if args.key?(:operations)
|
|
3282
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
3229
3283
|
end
|
|
3230
3284
|
end
|
|
3231
3285
|
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.64.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 = "
|
|
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
|
|
|
@@ -823,6 +829,14 @@ module Google
|
|
|
823
829
|
end
|
|
824
830
|
end
|
|
825
831
|
|
|
832
|
+
class AdaptationModifier
|
|
833
|
+
# @private
|
|
834
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
835
|
+
property :modifier, as: 'modifier'
|
|
836
|
+
property :value, as: 'value'
|
|
837
|
+
end
|
|
838
|
+
end
|
|
839
|
+
|
|
826
840
|
class AdaptingOsStep
|
|
827
841
|
# @private
|
|
828
842
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1151,6 +1165,8 @@ module Google
|
|
|
1151
1165
|
class ComputeEngineTargetDefaults
|
|
1152
1166
|
# @private
|
|
1153
1167
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1168
|
+
collection :adaptation_modifiers, as: 'adaptationModifiers', class: Google::Apis::VmmigrationV1alpha1::AdaptationModifier, decorator: Google::Apis::VmmigrationV1alpha1::AdaptationModifier::Representation
|
|
1169
|
+
|
|
1154
1170
|
collection :additional_licenses, as: 'additionalLicenses'
|
|
1155
1171
|
property :applied_license, as: 'appliedLicense', class: Google::Apis::VmmigrationV1alpha1::AppliedLicense, decorator: Google::Apis::VmmigrationV1alpha1::AppliedLicense::Representation
|
|
1156
1172
|
|
|
@@ -1184,6 +1200,8 @@ module Google
|
|
|
1184
1200
|
class ComputeEngineTargetDetails
|
|
1185
1201
|
# @private
|
|
1186
1202
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1203
|
+
collection :adaptation_modifiers, as: 'adaptationModifiers', class: Google::Apis::VmmigrationV1alpha1::AdaptationModifier, decorator: Google::Apis::VmmigrationV1alpha1::AdaptationModifier::Representation
|
|
1204
|
+
|
|
1187
1205
|
collection :additional_licenses, as: 'additionalLicenses'
|
|
1188
1206
|
property :applied_license, as: 'appliedLicense', class: Google::Apis::VmmigrationV1alpha1::AppliedLicense, decorator: Google::Apis::VmmigrationV1alpha1::AppliedLicense::Representation
|
|
1189
1207
|
|
|
@@ -1574,6 +1592,8 @@ module Google
|
|
|
1574
1592
|
class ImageImportOsAdaptationParameters
|
|
1575
1593
|
# @private
|
|
1576
1594
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1595
|
+
collection :adaptation_modifiers, as: 'adaptationModifiers', class: Google::Apis::VmmigrationV1alpha1::AdaptationModifier, decorator: Google::Apis::VmmigrationV1alpha1::AdaptationModifier::Representation
|
|
1596
|
+
|
|
1577
1597
|
property :boot_conversion, as: 'bootConversion'
|
|
1578
1598
|
property :generalize, as: 'generalize'
|
|
1579
1599
|
property :license_type, as: 'licenseType'
|
|
@@ -1717,6 +1737,7 @@ module Google
|
|
|
1717
1737
|
property :next_page_token, as: 'nextPageToken'
|
|
1718
1738
|
collection :operations, as: 'operations', class: Google::Apis::VmmigrationV1alpha1::Operation, decorator: Google::Apis::VmmigrationV1alpha1::Operation::Representation
|
|
1719
1739
|
|
|
1740
|
+
collection :unreachable, as: 'unreachable'
|
|
1720
1741
|
end
|
|
1721
1742
|
end
|
|
1722
1743
|
|
|
@@ -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
|
|
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::VmmigrationV1alpha1::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, 'v1alpha1/{+name}/operations', options)
|
|
829
836
|
command.response_representation = Google::Apis::VmmigrationV1alpha1::ListOperationsResponse::Representation
|
|
830
837
|
command.response_class = Google::Apis::VmmigrationV1alpha1::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_v1alpha1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.64.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_v1alpha1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1alpha1/v0.64.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmmigration_v1alpha1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|