google-apis-vmmigration_v1 0.47.0 → 0.49.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: 2fb0fdb8744be505d5f18e02f4ccfceec553cee614e4d69eccf38918ed635ff6
|
4
|
+
data.tar.gz: 32135ff792ca4bb5da8e5e087607b964f53781199d3c9411ee3f7cabf88df1e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4ca27bc9ad76760e40c66f2d8de095da01d0f3a98c07ab7e5f13f0878037b7716c7909923cd045eabe3db0f7840ce67157073c86a4456498dcfe87b6ca3b7f1d
|
7
|
+
data.tar.gz: c8a3d32912aea4efbd5fe26470fd973d57eac97bd3c96dcfedc925529480c0d357086808c0559f70f19ee52bedd2bbb31dab6148a9ec424e60a0bc3e9156b178
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-vmmigration_v1
|
2
2
|
|
3
|
+
### v0.49.0 (2024-06-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240613
|
6
|
+
|
7
|
+
### v0.48.0 (2024-06-09)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240530
|
10
|
+
|
3
11
|
### v0.47.0 (2024-05-19)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240411
|
@@ -178,17 +178,17 @@ module Google
|
|
178
178
|
class AwsDiskDetails
|
179
179
|
include Google::Apis::Core::Hashable
|
180
180
|
|
181
|
-
# The ordinal number of the disk.
|
181
|
+
# Output only. The ordinal number of the disk.
|
182
182
|
# Corresponds to the JSON property `diskNumber`
|
183
183
|
# @return [Fixnum]
|
184
184
|
attr_accessor :disk_number
|
185
185
|
|
186
|
-
# Size in GB.
|
186
|
+
# Output only. Size in GB.
|
187
187
|
# Corresponds to the JSON property `sizeGb`
|
188
188
|
# @return [Fixnum]
|
189
189
|
attr_accessor :size_gb
|
190
190
|
|
191
|
-
# AWS volume ID.
|
191
|
+
# Output only. AWS volume ID.
|
192
192
|
# Corresponds to the JSON property `volumeId`
|
193
193
|
# @return [String]
|
194
194
|
attr_accessor :volume_id
|
@@ -272,6 +272,11 @@ module Google
|
|
272
272
|
# @return [Hash<String,String>]
|
273
273
|
attr_accessor :migration_resources_user_tags
|
274
274
|
|
275
|
+
# Information about the network coniguration of the source.
|
276
|
+
# Corresponds to the JSON property `networkInsights`
|
277
|
+
# @return [Google::Apis::VmmigrationV1::NetworkInsights]
|
278
|
+
attr_accessor :network_insights
|
279
|
+
|
275
280
|
# Output only. The source's public IP. All communication initiated by this
|
276
281
|
# source will originate from this IP.
|
277
282
|
# Corresponds to the JSON property `publicIp`
|
@@ -295,6 +300,7 @@ module Google
|
|
295
300
|
@inventory_security_group_names = args[:inventory_security_group_names] if args.key?(:inventory_security_group_names)
|
296
301
|
@inventory_tag_list = args[:inventory_tag_list] if args.key?(:inventory_tag_list)
|
297
302
|
@migration_resources_user_tags = args[:migration_resources_user_tags] if args.key?(:migration_resources_user_tags)
|
303
|
+
@network_insights = args[:network_insights] if args.key?(:network_insights)
|
298
304
|
@public_ip = args[:public_ip] if args.key?(:public_ip)
|
299
305
|
@state = args[:state] if args.key?(:state)
|
300
306
|
end
|
@@ -304,17 +310,17 @@ module Google
|
|
304
310
|
class AwsSourceVmDetails
|
305
311
|
include Google::Apis::Core::Hashable
|
306
312
|
|
307
|
-
# The total size of the disks being migrated in bytes.
|
313
|
+
# Output only. The total size of the disks being migrated in bytes.
|
308
314
|
# Corresponds to the JSON property `committedStorageBytes`
|
309
315
|
# @return [Fixnum]
|
310
316
|
attr_accessor :committed_storage_bytes
|
311
317
|
|
312
|
-
# The disks attached to the source VM.
|
318
|
+
# Output only. The disks attached to the source VM.
|
313
319
|
# Corresponds to the JSON property `disks`
|
314
320
|
# @return [Array<Google::Apis::VmmigrationV1::AwsDiskDetails>]
|
315
321
|
attr_accessor :disks
|
316
322
|
|
317
|
-
# The firmware type of the source VM.
|
323
|
+
# Output only. The firmware type of the source VM.
|
318
324
|
# Corresponds to the JSON property `firmware`
|
319
325
|
# @return [String]
|
320
326
|
attr_accessor :firmware
|
@@ -482,17 +488,17 @@ module Google
|
|
482
488
|
class AzureDiskDetails
|
483
489
|
include Google::Apis::Core::Hashable
|
484
490
|
|
485
|
-
# Azure disk ID.
|
491
|
+
# Output only. Azure disk ID.
|
486
492
|
# Corresponds to the JSON property `diskId`
|
487
493
|
# @return [String]
|
488
494
|
attr_accessor :disk_id
|
489
495
|
|
490
|
-
# The ordinal number of the disk.
|
496
|
+
# Output only. The ordinal number of the disk.
|
491
497
|
# Corresponds to the JSON property `diskNumber`
|
492
498
|
# @return [Fixnum]
|
493
499
|
attr_accessor :disk_number
|
494
500
|
|
495
|
-
# Size in GB.
|
501
|
+
# Output only. Size in GB.
|
496
502
|
# Corresponds to the JSON property `sizeGb`
|
497
503
|
# @return [Fixnum]
|
498
504
|
attr_accessor :size_gb
|
@@ -579,17 +585,17 @@ module Google
|
|
579
585
|
class AzureSourceVmDetails
|
580
586
|
include Google::Apis::Core::Hashable
|
581
587
|
|
582
|
-
# The total size of the disks being migrated in bytes.
|
588
|
+
# Output only. The total size of the disks being migrated in bytes.
|
583
589
|
# Corresponds to the JSON property `committedStorageBytes`
|
584
590
|
# @return [Fixnum]
|
585
591
|
attr_accessor :committed_storage_bytes
|
586
592
|
|
587
|
-
# The disks attached to the source VM.
|
593
|
+
# Output only. The disks attached to the source VM.
|
588
594
|
# Corresponds to the JSON property `disks`
|
589
595
|
# @return [Array<Google::Apis::VmmigrationV1::AzureDiskDetails>]
|
590
596
|
attr_accessor :disks
|
591
597
|
|
592
|
-
# The firmware type of the source VM.
|
598
|
+
# Output only. The firmware type of the source VM.
|
593
599
|
# Corresponds to the JSON property `firmware`
|
594
600
|
# @return [String]
|
595
601
|
attr_accessor :firmware
|
@@ -3127,7 +3133,8 @@ module Google
|
|
3127
3133
|
# @return [String]
|
3128
3134
|
attr_accessor :code
|
3129
3135
|
|
3130
|
-
# URL(s) pointing to additional information on handling the current
|
3136
|
+
# Output only. URL(s) pointing to additional information on handling the current
|
3137
|
+
# warning.
|
3131
3138
|
# Corresponds to the JSON property `helpLinks`
|
3132
3139
|
# @return [Array<Google::Apis::VmmigrationV1::Link>]
|
3133
3140
|
attr_accessor :help_links
|
@@ -3157,17 +3164,44 @@ module Google
|
|
3157
3164
|
end
|
3158
3165
|
end
|
3159
3166
|
|
3167
|
+
# Information about the network coniguration of the source.
|
3168
|
+
class NetworkInsights
|
3169
|
+
include Google::Apis::Core::Hashable
|
3170
|
+
|
3171
|
+
# Output only. The gathered network configuration of the source. Presented in
|
3172
|
+
# json format.
|
3173
|
+
# Corresponds to the JSON property `sourceNetworkConfig`
|
3174
|
+
# @return [String]
|
3175
|
+
attr_accessor :source_network_config
|
3176
|
+
|
3177
|
+
# Output only. The gathered network configuration of the source. Presented in
|
3178
|
+
# terraform format.
|
3179
|
+
# Corresponds to the JSON property `sourceNetworkTerraform`
|
3180
|
+
# @return [String]
|
3181
|
+
attr_accessor :source_network_terraform
|
3182
|
+
|
3183
|
+
def initialize(**args)
|
3184
|
+
update!(**args)
|
3185
|
+
end
|
3186
|
+
|
3187
|
+
# Update properties of this object
|
3188
|
+
def update!(**args)
|
3189
|
+
@source_network_config = args[:source_network_config] if args.key?(:source_network_config)
|
3190
|
+
@source_network_terraform = args[:source_network_terraform] if args.key?(:source_network_terraform)
|
3191
|
+
end
|
3192
|
+
end
|
3193
|
+
|
3160
3194
|
# NetworkInterface represents a NIC of a VM.
|
3161
3195
|
class NetworkInterface
|
3162
3196
|
include Google::Apis::Core::Hashable
|
3163
3197
|
|
3164
|
-
# The external IP to define in the NIC.
|
3198
|
+
# Optional. The external IP to define in the NIC.
|
3165
3199
|
# Corresponds to the JSON property `externalIp`
|
3166
3200
|
# @return [String]
|
3167
3201
|
attr_accessor :external_ip
|
3168
3202
|
|
3169
|
-
# The internal IP to define in the NIC. The formats accepted are: `
|
3170
|
-
# ipv4 address \ a named address resource full path.
|
3203
|
+
# Optional. The internal IP to define in the NIC. The formats accepted are: `
|
3204
|
+
# ephemeral` \ ipv4 address \ a named address resource full path.
|
3171
3205
|
# Corresponds to the JSON property `internalIp`
|
3172
3206
|
# @return [String]
|
3173
3207
|
attr_accessor :internal_ip
|
@@ -3867,12 +3901,12 @@ module Google
|
|
3867
3901
|
class Tag
|
3868
3902
|
include Google::Apis::Core::Hashable
|
3869
3903
|
|
3870
|
-
# Key of tag.
|
3904
|
+
# Required. Key of tag.
|
3871
3905
|
# Corresponds to the JSON property `key`
|
3872
3906
|
# @return [String]
|
3873
3907
|
attr_accessor :key
|
3874
3908
|
|
3875
|
-
# Value of tag.
|
3909
|
+
# Required. Value of tag.
|
3876
3910
|
# Corresponds to the JSON property `value`
|
3877
3911
|
# @return [String]
|
3878
3912
|
attr_accessor :value
|
@@ -4243,17 +4277,17 @@ module Google
|
|
4243
4277
|
class VmwareDiskDetails
|
4244
4278
|
include Google::Apis::Core::Hashable
|
4245
4279
|
|
4246
|
-
# The ordinal number of the disk.
|
4280
|
+
# Output only. The ordinal number of the disk.
|
4247
4281
|
# Corresponds to the JSON property `diskNumber`
|
4248
4282
|
# @return [Fixnum]
|
4249
4283
|
attr_accessor :disk_number
|
4250
4284
|
|
4251
|
-
# The disk label.
|
4285
|
+
# Output only. The disk label.
|
4252
4286
|
# Corresponds to the JSON property `label`
|
4253
4287
|
# @return [String]
|
4254
4288
|
attr_accessor :label
|
4255
4289
|
|
4256
|
-
# Size in GB.
|
4290
|
+
# Output only. Size in GB.
|
4257
4291
|
# Corresponds to the JSON property `sizeGb`
|
4258
4292
|
# @return [Fixnum]
|
4259
4293
|
attr_accessor :size_gb
|
@@ -4319,17 +4353,17 @@ module Google
|
|
4319
4353
|
class VmwareSourceVmDetails
|
4320
4354
|
include Google::Apis::Core::Hashable
|
4321
4355
|
|
4322
|
-
# The total size of the disks being migrated in bytes.
|
4356
|
+
# Output only. The total size of the disks being migrated in bytes.
|
4323
4357
|
# Corresponds to the JSON property `committedStorageBytes`
|
4324
4358
|
# @return [Fixnum]
|
4325
4359
|
attr_accessor :committed_storage_bytes
|
4326
4360
|
|
4327
|
-
# The disks attached to the source VM.
|
4361
|
+
# Output only. The disks attached to the source VM.
|
4328
4362
|
# Corresponds to the JSON property `disks`
|
4329
4363
|
# @return [Array<Google::Apis::VmmigrationV1::VmwareDiskDetails>]
|
4330
4364
|
attr_accessor :disks
|
4331
4365
|
|
4332
|
-
# The firmware type of the source VM.
|
4366
|
+
# Output only. The firmware type of the source VM.
|
4333
4367
|
# Corresponds to the JSON property `firmware`
|
4334
4368
|
# @return [String]
|
4335
4369
|
attr_accessor :firmware
|
@@ -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.49.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240613"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -478,6 +478,12 @@ module Google
|
|
478
478
|
include Google::Apis::Core::JsonObjectSupport
|
479
479
|
end
|
480
480
|
|
481
|
+
class NetworkInsights
|
482
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
483
|
+
|
484
|
+
include Google::Apis::Core::JsonObjectSupport
|
485
|
+
end
|
486
|
+
|
481
487
|
class NetworkInterface
|
482
488
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
483
489
|
|
@@ -767,6 +773,8 @@ module Google
|
|
767
773
|
collection :inventory_tag_list, as: 'inventoryTagList', class: Google::Apis::VmmigrationV1::Tag, decorator: Google::Apis::VmmigrationV1::Tag::Representation
|
768
774
|
|
769
775
|
hash :migration_resources_user_tags, as: 'migrationResourcesUserTags'
|
776
|
+
property :network_insights, as: 'networkInsights', class: Google::Apis::VmmigrationV1::NetworkInsights, decorator: Google::Apis::VmmigrationV1::NetworkInsights::Representation
|
777
|
+
|
770
778
|
property :public_ip, as: 'publicIp'
|
771
779
|
property :state, as: 'state'
|
772
780
|
end
|
@@ -1583,6 +1591,14 @@ module Google
|
|
1583
1591
|
end
|
1584
1592
|
end
|
1585
1593
|
|
1594
|
+
class NetworkInsights
|
1595
|
+
# @private
|
1596
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1597
|
+
property :source_network_config, as: 'sourceNetworkConfig'
|
1598
|
+
property :source_network_terraform, as: 'sourceNetworkTerraform'
|
1599
|
+
end
|
1600
|
+
end
|
1601
|
+
|
1586
1602
|
class NetworkInterface
|
1587
1603
|
# @private
|
1588
1604
|
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.49.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: 2024-
|
11
|
+
date: 2024-06-23 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.49.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: []
|