google-apis-vmmigration_v1 0.32.0 → 0.34.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ad126cf60441bd1b6b9a4979d92b4fca11b99cb9f39379a088101cc576335b0c
|
4
|
+
data.tar.gz: fc9c8f8bc34ba42adcbb06f03f51aef4d3b9b335c0f12bf539b91443aeab2cdc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2592f2bdbec5044abb0f62ba71538ca115084bbea723b987b483d3b59fefc62459810e271fad367c1996b19b5371b964e292d6ddb51dfae9182c368b3fc5e631
|
7
|
+
data.tar.gz: 4ce63d0c696cf9ebc242559267762674f05c8d103f2f7e014aa05e8b87068b607d878a41dd75c74be7ce3c3639ab11e3fd055db9c57e55ed4fd3109585984321
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-vmmigration_v1
|
2
2
|
|
3
|
+
### v0.34.0 (2023-08-06)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230727
|
6
|
+
|
7
|
+
### v0.33.0 (2023-07-23)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230713
|
10
|
+
|
3
11
|
### v0.32.0 (2023-05-21)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230515
|
@@ -522,6 +522,12 @@ module Google
|
|
522
522
|
class CloneJob
|
523
523
|
include Google::Apis::Core::Hashable
|
524
524
|
|
525
|
+
# ComputeEngineDisksTargetDetails is a collection of created Persistent Disks
|
526
|
+
# details.
|
527
|
+
# Corresponds to the JSON property `computeEngineDisksTargetDetails`
|
528
|
+
# @return [Google::Apis::VmmigrationV1::ComputeEngineDisksTargetDetails]
|
529
|
+
attr_accessor :compute_engine_disks_target_details
|
530
|
+
|
525
531
|
# ComputeEngineTargetDetails is a collection of details for creating a VM in a
|
526
532
|
# target Compute Engine project.
|
527
533
|
# Corresponds to the JSON property `computeEngineTargetDetails`
|
@@ -575,6 +581,7 @@ module Google
|
|
575
581
|
|
576
582
|
# Update properties of this object
|
577
583
|
def update!(**args)
|
584
|
+
@compute_engine_disks_target_details = args[:compute_engine_disks_target_details] if args.key?(:compute_engine_disks_target_details)
|
578
585
|
@compute_engine_target_details = args[:compute_engine_target_details] if args.key?(:compute_engine_target_details)
|
579
586
|
@create_time = args[:create_time] if args.key?(:create_time)
|
580
587
|
@end_time = args[:end_time] if args.key?(:end_time)
|
@@ -629,6 +636,59 @@ module Google
|
|
629
636
|
end
|
630
637
|
end
|
631
638
|
|
639
|
+
# ComputeEngineDisksTargetDefaults is a collection of details for creating
|
640
|
+
# Persistent Disks in a target Compute Engine project.
|
641
|
+
class ComputeEngineDisksTargetDefaults
|
642
|
+
include Google::Apis::Core::Hashable
|
643
|
+
|
644
|
+
# The details of each Persistent Disk to create.
|
645
|
+
# Corresponds to the JSON property `disks`
|
646
|
+
# @return [Array<Google::Apis::VmmigrationV1::PersistentDiskDefaults>]
|
647
|
+
attr_accessor :disks
|
648
|
+
|
649
|
+
# The full path of the resource of type TargetProject which represents the
|
650
|
+
# Compute Engine project in which to create the Persistent Disks.
|
651
|
+
# Corresponds to the JSON property `targetProject`
|
652
|
+
# @return [String]
|
653
|
+
attr_accessor :target_project
|
654
|
+
|
655
|
+
# The zone in which to create the Persistent Disks.
|
656
|
+
# Corresponds to the JSON property `zone`
|
657
|
+
# @return [String]
|
658
|
+
attr_accessor :zone
|
659
|
+
|
660
|
+
def initialize(**args)
|
661
|
+
update!(**args)
|
662
|
+
end
|
663
|
+
|
664
|
+
# Update properties of this object
|
665
|
+
def update!(**args)
|
666
|
+
@disks = args[:disks] if args.key?(:disks)
|
667
|
+
@target_project = args[:target_project] if args.key?(:target_project)
|
668
|
+
@zone = args[:zone] if args.key?(:zone)
|
669
|
+
end
|
670
|
+
end
|
671
|
+
|
672
|
+
# ComputeEngineDisksTargetDetails is a collection of created Persistent Disks
|
673
|
+
# details.
|
674
|
+
class ComputeEngineDisksTargetDetails
|
675
|
+
include Google::Apis::Core::Hashable
|
676
|
+
|
677
|
+
# The details of each created Persistent Disk.
|
678
|
+
# Corresponds to the JSON property `disks`
|
679
|
+
# @return [Array<Google::Apis::VmmigrationV1::PersistentDisk>]
|
680
|
+
attr_accessor :disks
|
681
|
+
|
682
|
+
def initialize(**args)
|
683
|
+
update!(**args)
|
684
|
+
end
|
685
|
+
|
686
|
+
# Update properties of this object
|
687
|
+
def update!(**args)
|
688
|
+
@disks = args[:disks] if args.key?(:disks)
|
689
|
+
end
|
690
|
+
end
|
691
|
+
|
632
692
|
# ComputeEngineTargetDefaults is a collection of details for creating a VM in a
|
633
693
|
# target Compute Engine project.
|
634
694
|
class ComputeEngineTargetDefaults
|
@@ -644,7 +704,7 @@ module Google
|
|
644
704
|
# @return [Google::Apis::VmmigrationV1::AppliedLicense]
|
645
705
|
attr_accessor :applied_license
|
646
706
|
|
647
|
-
# Output only. The VM Boot Option, as set in the source
|
707
|
+
# Output only. The VM Boot Option, as set in the source VM.
|
648
708
|
# Corresponds to the JSON property `bootOption`
|
649
709
|
# @return [String]
|
650
710
|
attr_accessor :boot_option
|
@@ -695,13 +755,13 @@ module Google
|
|
695
755
|
# @return [Array<Google::Apis::VmmigrationV1::NetworkInterface>]
|
696
756
|
attr_accessor :network_interfaces
|
697
757
|
|
698
|
-
# A
|
758
|
+
# A list of network tags to associate with the VM.
|
699
759
|
# Corresponds to the JSON property `networkTags`
|
700
760
|
# @return [Array<String>]
|
701
761
|
attr_accessor :network_tags
|
702
762
|
|
703
763
|
# Defines whether the instance has Secure Boot enabled. This can be set to true
|
704
|
-
# only if the
|
764
|
+
# only if the VM boot option is EFI.
|
705
765
|
# Corresponds to the JSON property `secureBoot`
|
706
766
|
# @return [Boolean]
|
707
767
|
attr_accessor :secure_boot
|
@@ -770,7 +830,7 @@ module Google
|
|
770
830
|
# @return [Google::Apis::VmmigrationV1::AppliedLicense]
|
771
831
|
attr_accessor :applied_license
|
772
832
|
|
773
|
-
# The VM Boot Option, as set in the source
|
833
|
+
# The VM Boot Option, as set in the source VM.
|
774
834
|
# Corresponds to the JSON property `bootOption`
|
775
835
|
# @return [String]
|
776
836
|
attr_accessor :boot_option
|
@@ -821,7 +881,7 @@ module Google
|
|
821
881
|
# @return [Array<Google::Apis::VmmigrationV1::NetworkInterface>]
|
822
882
|
attr_accessor :network_interfaces
|
823
883
|
|
824
|
-
# A
|
884
|
+
# A list of network tags to associate with the VM.
|
825
885
|
# Corresponds to the JSON property `networkTags`
|
826
886
|
# @return [Array<String>]
|
827
887
|
attr_accessor :network_tags
|
@@ -832,7 +892,7 @@ module Google
|
|
832
892
|
attr_accessor :project
|
833
893
|
|
834
894
|
# Defines whether the instance has Secure Boot enabled. This can be set to true
|
835
|
-
# only if the
|
895
|
+
# only if the VM boot option is EFI.
|
836
896
|
# Corresponds to the JSON property `secureBoot`
|
837
897
|
# @return [Boolean]
|
838
898
|
attr_accessor :secure_boot
|
@@ -949,6 +1009,12 @@ module Google
|
|
949
1009
|
class CutoverJob
|
950
1010
|
include Google::Apis::Core::Hashable
|
951
1011
|
|
1012
|
+
# ComputeEngineDisksTargetDetails is a collection of created Persistent Disks
|
1013
|
+
# details.
|
1014
|
+
# Corresponds to the JSON property `computeEngineDisksTargetDetails`
|
1015
|
+
# @return [Google::Apis::VmmigrationV1::ComputeEngineDisksTargetDetails]
|
1016
|
+
attr_accessor :compute_engine_disks_target_details
|
1017
|
+
|
952
1018
|
# ComputeEngineTargetDetails is a collection of details for creating a VM in a
|
953
1019
|
# target Compute Engine project.
|
954
1020
|
# Corresponds to the JSON property `computeEngineTargetDetails`
|
@@ -1013,6 +1079,7 @@ module Google
|
|
1013
1079
|
|
1014
1080
|
# Update properties of this object
|
1015
1081
|
def update!(**args)
|
1082
|
+
@compute_engine_disks_target_details = args[:compute_engine_disks_target_details] if args.key?(:compute_engine_disks_target_details)
|
1016
1083
|
@compute_engine_target_details = args[:compute_engine_target_details] if args.key?(:compute_engine_target_details)
|
1017
1084
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1018
1085
|
@end_time = args[:end_time] if args.key?(:end_time)
|
@@ -1328,6 +1395,11 @@ module Google
|
|
1328
1395
|
# @return [String]
|
1329
1396
|
attr_accessor :display_name
|
1330
1397
|
|
1398
|
+
# Immutable. The target type of this group.
|
1399
|
+
# Corresponds to the JSON property `migrationTargetType`
|
1400
|
+
# @return [String]
|
1401
|
+
attr_accessor :migration_target_type
|
1402
|
+
|
1331
1403
|
# Output only. The Group name.
|
1332
1404
|
# Corresponds to the JSON property `name`
|
1333
1405
|
# @return [String]
|
@@ -1347,6 +1419,7 @@ module Google
|
|
1347
1419
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1348
1420
|
@description = args[:description] if args.key?(:description)
|
1349
1421
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1422
|
+
@migration_target_type = args[:migration_target_type] if args.key?(:migration_target_type)
|
1350
1423
|
@name = args[:name] if args.key?(:name)
|
1351
1424
|
@update_time = args[:update_time] if args.key?(:update_time)
|
1352
1425
|
end
|
@@ -1825,6 +1898,12 @@ module Google
|
|
1825
1898
|
# @return [Google::Apis::VmmigrationV1::AwsSourceVmDetails]
|
1826
1899
|
attr_accessor :aws_source_vm_details
|
1827
1900
|
|
1901
|
+
# ComputeEngineDisksTargetDefaults is a collection of details for creating
|
1902
|
+
# Persistent Disks in a target Compute Engine project.
|
1903
|
+
# Corresponds to the JSON property `computeEngineDisksTargetDefaults`
|
1904
|
+
# @return [Google::Apis::VmmigrationV1::ComputeEngineDisksTargetDefaults]
|
1905
|
+
attr_accessor :compute_engine_disks_target_defaults
|
1906
|
+
|
1828
1907
|
# ComputeEngineTargetDefaults is a collection of details for creating a VM in a
|
1829
1908
|
# target Compute Engine project.
|
1830
1909
|
# Corresponds to the JSON property `computeEngineTargetDefaults`
|
@@ -1945,6 +2024,7 @@ module Google
|
|
1945
2024
|
# Update properties of this object
|
1946
2025
|
def update!(**args)
|
1947
2026
|
@aws_source_vm_details = args[:aws_source_vm_details] if args.key?(:aws_source_vm_details)
|
2027
|
+
@compute_engine_disks_target_defaults = args[:compute_engine_disks_target_defaults] if args.key?(:compute_engine_disks_target_defaults)
|
1948
2028
|
@compute_engine_target_defaults = args[:compute_engine_target_defaults] if args.key?(:compute_engine_target_defaults)
|
1949
2029
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1950
2030
|
@current_sync_info = args[:current_sync_info] if args.key?(:current_sync_info)
|
@@ -2234,6 +2314,68 @@ module Google
|
|
2234
2314
|
end
|
2235
2315
|
end
|
2236
2316
|
|
2317
|
+
# Details of a created Persistent Disk.
|
2318
|
+
class PersistentDisk
|
2319
|
+
include Google::Apis::Core::Hashable
|
2320
|
+
|
2321
|
+
# The URI of the Persistent Disk.
|
2322
|
+
# Corresponds to the JSON property `diskUri`
|
2323
|
+
# @return [String]
|
2324
|
+
attr_accessor :disk_uri
|
2325
|
+
|
2326
|
+
# The ordinal number of the source VM disk.
|
2327
|
+
# Corresponds to the JSON property `sourceDiskNumber`
|
2328
|
+
# @return [Fixnum]
|
2329
|
+
attr_accessor :source_disk_number
|
2330
|
+
|
2331
|
+
def initialize(**args)
|
2332
|
+
update!(**args)
|
2333
|
+
end
|
2334
|
+
|
2335
|
+
# Update properties of this object
|
2336
|
+
def update!(**args)
|
2337
|
+
@disk_uri = args[:disk_uri] if args.key?(:disk_uri)
|
2338
|
+
@source_disk_number = args[:source_disk_number] if args.key?(:source_disk_number)
|
2339
|
+
end
|
2340
|
+
end
|
2341
|
+
|
2342
|
+
# Details for creation of a Persistent Disk.
|
2343
|
+
class PersistentDiskDefaults
|
2344
|
+
include Google::Apis::Core::Hashable
|
2345
|
+
|
2346
|
+
# A map of labels to associate with the Persistent Disk.
|
2347
|
+
# Corresponds to the JSON property `additionalLabels`
|
2348
|
+
# @return [Hash<String,String>]
|
2349
|
+
attr_accessor :additional_labels
|
2350
|
+
|
2351
|
+
# Optional. The name of the Persistent Disk to create.
|
2352
|
+
# Corresponds to the JSON property `diskName`
|
2353
|
+
# @return [String]
|
2354
|
+
attr_accessor :disk_name
|
2355
|
+
|
2356
|
+
# The disk type to use.
|
2357
|
+
# Corresponds to the JSON property `diskType`
|
2358
|
+
# @return [String]
|
2359
|
+
attr_accessor :disk_type
|
2360
|
+
|
2361
|
+
# Required. The ordinal number of the source VM disk.
|
2362
|
+
# Corresponds to the JSON property `sourceDiskNumber`
|
2363
|
+
# @return [Fixnum]
|
2364
|
+
attr_accessor :source_disk_number
|
2365
|
+
|
2366
|
+
def initialize(**args)
|
2367
|
+
update!(**args)
|
2368
|
+
end
|
2369
|
+
|
2370
|
+
# Update properties of this object
|
2371
|
+
def update!(**args)
|
2372
|
+
@additional_labels = args[:additional_labels] if args.key?(:additional_labels)
|
2373
|
+
@disk_name = args[:disk_name] if args.key?(:disk_name)
|
2374
|
+
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
2375
|
+
@source_disk_number = args[:source_disk_number] if args.key?(:source_disk_number)
|
2376
|
+
end
|
2377
|
+
end
|
2378
|
+
|
2237
2379
|
# PostProcessingStep contains specific step details.
|
2238
2380
|
class PostProcessingStep
|
2239
2381
|
include Google::Apis::Core::Hashable
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.34.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230727"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -124,6 +124,18 @@ module Google
|
|
124
124
|
include Google::Apis::Core::JsonObjectSupport
|
125
125
|
end
|
126
126
|
|
127
|
+
class ComputeEngineDisksTargetDefaults
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
|
+
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
131
|
+
end
|
132
|
+
|
133
|
+
class ComputeEngineDisksTargetDetails
|
134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
|
+
|
136
|
+
include Google::Apis::Core::JsonObjectSupport
|
137
|
+
end
|
138
|
+
|
127
139
|
class ComputeEngineTargetDefaults
|
128
140
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
141
|
|
@@ -334,6 +346,18 @@ module Google
|
|
334
346
|
include Google::Apis::Core::JsonObjectSupport
|
335
347
|
end
|
336
348
|
|
349
|
+
class PersistentDisk
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
|
+
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
353
|
+
end
|
354
|
+
|
355
|
+
class PersistentDiskDefaults
|
356
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
357
|
+
|
358
|
+
include Google::Apis::Core::JsonObjectSupport
|
359
|
+
end
|
360
|
+
|
337
361
|
class PostProcessingStep
|
338
362
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
339
363
|
|
@@ -620,6 +644,8 @@ module Google
|
|
620
644
|
class CloneJob
|
621
645
|
# @private
|
622
646
|
class Representation < Google::Apis::Core::JsonRepresentation
|
647
|
+
property :compute_engine_disks_target_details, as: 'computeEngineDisksTargetDetails', class: Google::Apis::VmmigrationV1::ComputeEngineDisksTargetDetails, decorator: Google::Apis::VmmigrationV1::ComputeEngineDisksTargetDetails::Representation
|
648
|
+
|
623
649
|
property :compute_engine_target_details, as: 'computeEngineTargetDetails', class: Google::Apis::VmmigrationV1::ComputeEngineTargetDetails, decorator: Google::Apis::VmmigrationV1::ComputeEngineTargetDetails::Representation
|
624
650
|
|
625
651
|
property :create_time, as: 'createTime'
|
@@ -648,6 +674,24 @@ module Google
|
|
648
674
|
end
|
649
675
|
end
|
650
676
|
|
677
|
+
class ComputeEngineDisksTargetDefaults
|
678
|
+
# @private
|
679
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
680
|
+
collection :disks, as: 'disks', class: Google::Apis::VmmigrationV1::PersistentDiskDefaults, decorator: Google::Apis::VmmigrationV1::PersistentDiskDefaults::Representation
|
681
|
+
|
682
|
+
property :target_project, as: 'targetProject'
|
683
|
+
property :zone, as: 'zone'
|
684
|
+
end
|
685
|
+
end
|
686
|
+
|
687
|
+
class ComputeEngineDisksTargetDetails
|
688
|
+
# @private
|
689
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
690
|
+
collection :disks, as: 'disks', class: Google::Apis::VmmigrationV1::PersistentDisk, decorator: Google::Apis::VmmigrationV1::PersistentDisk::Representation
|
691
|
+
|
692
|
+
end
|
693
|
+
end
|
694
|
+
|
651
695
|
class ComputeEngineTargetDefaults
|
652
696
|
# @private
|
653
697
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -723,6 +767,8 @@ module Google
|
|
723
767
|
class CutoverJob
|
724
768
|
# @private
|
725
769
|
class Representation < Google::Apis::Core::JsonRepresentation
|
770
|
+
property :compute_engine_disks_target_details, as: 'computeEngineDisksTargetDetails', class: Google::Apis::VmmigrationV1::ComputeEngineDisksTargetDetails, decorator: Google::Apis::VmmigrationV1::ComputeEngineDisksTargetDetails::Representation
|
771
|
+
|
726
772
|
property :compute_engine_target_details, as: 'computeEngineTargetDetails', class: Google::Apis::VmmigrationV1::ComputeEngineTargetDetails, decorator: Google::Apis::VmmigrationV1::ComputeEngineTargetDetails::Representation
|
727
773
|
|
728
774
|
property :create_time, as: 'createTime'
|
@@ -824,6 +870,7 @@ module Google
|
|
824
870
|
property :create_time, as: 'createTime'
|
825
871
|
property :description, as: 'description'
|
826
872
|
property :display_name, as: 'displayName'
|
873
|
+
property :migration_target_type, as: 'migrationTargetType'
|
827
874
|
property :name, as: 'name'
|
828
875
|
property :update_time, as: 'updateTime'
|
829
876
|
end
|
@@ -981,6 +1028,8 @@ module Google
|
|
981
1028
|
class Representation < Google::Apis::Core::JsonRepresentation
|
982
1029
|
property :aws_source_vm_details, as: 'awsSourceVmDetails', class: Google::Apis::VmmigrationV1::AwsSourceVmDetails, decorator: Google::Apis::VmmigrationV1::AwsSourceVmDetails::Representation
|
983
1030
|
|
1031
|
+
property :compute_engine_disks_target_defaults, as: 'computeEngineDisksTargetDefaults', class: Google::Apis::VmmigrationV1::ComputeEngineDisksTargetDefaults, decorator: Google::Apis::VmmigrationV1::ComputeEngineDisksTargetDefaults::Representation
|
1032
|
+
|
984
1033
|
property :compute_engine_target_defaults, as: 'computeEngineTargetDefaults', class: Google::Apis::VmmigrationV1::ComputeEngineTargetDefaults, decorator: Google::Apis::VmmigrationV1::ComputeEngineTargetDefaults::Representation
|
985
1034
|
|
986
1035
|
property :create_time, as: 'createTime'
|
@@ -1081,6 +1130,24 @@ module Google
|
|
1081
1130
|
end
|
1082
1131
|
end
|
1083
1132
|
|
1133
|
+
class PersistentDisk
|
1134
|
+
# @private
|
1135
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1136
|
+
property :disk_uri, as: 'diskUri'
|
1137
|
+
property :source_disk_number, as: 'sourceDiskNumber'
|
1138
|
+
end
|
1139
|
+
end
|
1140
|
+
|
1141
|
+
class PersistentDiskDefaults
|
1142
|
+
# @private
|
1143
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1144
|
+
hash :additional_labels, as: 'additionalLabels'
|
1145
|
+
property :disk_name, as: 'diskName'
|
1146
|
+
property :disk_type, as: 'diskType'
|
1147
|
+
property :source_disk_number, as: 'sourceDiskNumber'
|
1148
|
+
end
|
1149
|
+
end
|
1150
|
+
|
1084
1151
|
class PostProcessingStep
|
1085
1152
|
# @private
|
1086
1153
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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
|
+
version: 0.34.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: 2023-
|
11
|
+
date: 2023-08-06 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vmmigration_v1/v0.34.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: []
|