Class: Google::Apis::VmmigrationV1::NetworkInsights
- Inherits:
-
Object
- Object
- Google::Apis::VmmigrationV1::NetworkInsights
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vmmigration_v1/classes.rb,
lib/google/apis/vmmigration_v1/representations.rb,
lib/google/apis/vmmigration_v1/representations.rb
Overview
Information about the network coniguration of the source.
Instance Attribute Summary collapse
-
#source_network_config ⇒ String
Output only.
-
#source_network_terraform ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NetworkInsights
constructor
A new instance of NetworkInsights.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NetworkInsights
Returns a new instance of NetworkInsights.
3183 3184 3185 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3183 def initialize(**args) update!(**args) end |
Instance Attribute Details
#source_network_config ⇒ String
Output only. The gathered network configuration of the source. Presented in
json format.
Corresponds to the JSON property sourceNetworkConfig
3175 3176 3177 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3175 def source_network_config @source_network_config end |
#source_network_terraform ⇒ String
Output only. The gathered network configuration of the source. Presented in
terraform format.
Corresponds to the JSON property sourceNetworkTerraform
3181 3182 3183 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3181 def source_network_terraform @source_network_terraform end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3188 3189 3190 3191 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3188 def update!(**args) @source_network_config = args[:source_network_config] if args.key?(:source_network_config) @source_network_terraform = args[:source_network_terraform] if args.key?(:source_network_terraform) end |