google-apis-vmmigration_v1 0.48.0 → 0.49.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:
|
|
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
|
@@ -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
|
|
@@ -3158,6 +3164,33 @@ module Google
|
|
|
3158
3164
|
end
|
|
3159
3165
|
end
|
|
3160
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
|
+
|
|
3161
3194
|
# NetworkInterface represents a NIC of a VM.
|
|
3162
3195
|
class NetworkInterface
|
|
3163
3196
|
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.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-06-
|
|
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: []
|