class Azure::Network::Mgmt::V2018_06_01::Models::TopologyParameters

Parameters that define the representation of topology.

Attributes

target_resource_group_name[RW]

@return [String] The name of the target resource group to perform topology on.

target_subnet[RW]

@return [SubResource] The reference of the Subnet resource.

target_virtual_network[RW]

@return [SubResource] The reference of the Virtual Network resource.

Public Class Methods

mapper() click to toggle source

Mapper for TopologyParameters class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2018-06-01/generated/azure_mgmt_network/models/topology_parameters.rb, line 30
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'TopologyParameters',
    type: {
      name: 'Composite',
      class_name: 'TopologyParameters',
      model_properties: {
        target_resource_group_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'targetResourceGroupName',
          type: {
            name: 'String'
          }
        },
        target_virtual_network: {
          client_side_validation: true,
          required: false,
          serialized_name: 'targetVirtualNetwork',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        target_subnet: {
          client_side_validation: true,
          required: false,
          serialized_name: 'targetSubnet',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        }
      }
    }
  }
end