Class: Google::Apis::VmmigrationV1::NetworkInsights

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NetworkInsights

Returns a new instance of NetworkInsights.



3343
3344
3345
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3343

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#source_network_configString

Output only. The gathered network configuration of the source. Presented in json format. Corresponds to the JSON property sourceNetworkConfig

Returns:

  • (String)


3335
3336
3337
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3335

def source_network_config
  @source_network_config
end

#source_network_terraformString

Output only. The gathered network configuration of the source. Presented in terraform format. Corresponds to the JSON property sourceNetworkTerraform

Returns:

  • (String)


3341
3342
3343
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3341

def source_network_terraform
  @source_network_terraform
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3348
3349
3350
3351
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3348

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