google-apis-vmmigration_v1alpha1 0.62.0 → 0.63.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 +4 -0
- data/lib/google/apis/vmmigration_v1alpha1/classes.rb +46 -0
- data/lib/google/apis/vmmigration_v1alpha1/gem_version.rb +2 -2
- data/lib/google/apis/vmmigration_v1alpha1/representations.rb +20 -0
- data/lib/google/apis/vmmigration_v1alpha1/service.rb +1 -1
- 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: 5583dc373c233d01aba1696aaafb9d9657df1412e5bb9d120e69df2fa078b8f9
|
4
|
+
data.tar.gz: 964c967431918ab7958ce5fc5253d1578847d29ac99ade74bfcfc37336e554a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d9295082b69986a2cec80e7a05d1af7a0ce0e912d09ade0b6d06cb2bac0db2c66d0fb0552280fd56a5c3da072252c7a42d0dfd9d640bb785864ebf439bc8f43b
|
7
|
+
data.tar.gz: 1fc4f829622cf85ff2900168417cb8934fe237eb550836ad478439b46734e0f78393de072fa304dc44feb8c7c227c82a038fa1539cd536f3e2e0cdacdd29b180
|
data/CHANGELOG.md
CHANGED
@@ -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)
|
@@ -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.63.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 = "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
|
|
@@ -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'
|
@@ -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
|
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.63.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.63.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:
|