Class: Azure::Network::Mgmt::V2018_11_01::Models::ConnectivitySource

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-11-01/generated/azure_mgmt_network/models/connectivity_source.rb

Overview

Parameters that define the source of the connection.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#portInteger

be performed.

Returns:

  • (Integer)

    The source port from which a connectivity check will



21
22
23
# File 'lib/2018-11-01/generated/azure_mgmt_network/models/connectivity_source.rb', line 21

def port
  @port
end

#resource_idString

will be initiated.

Returns:

  • (String)

    The ID of the resource from which a connectivity check



17
18
19
# File 'lib/2018-11-01/generated/azure_mgmt_network/models/connectivity_source.rb', line 17

def resource_id
  @resource_id
end

Class Method Details

.mapperObject

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



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/2018-11-01/generated/azure_mgmt_network/models/connectivity_source.rb', line 28

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ConnectivitySource',
    type: {
      name: 'Composite',
      class_name: 'ConnectivitySource',
      model_properties: {
        resource_id: {
          client_side_validation: true,
          required: true,
          serialized_name: 'resourceId',
          type: {
            name: 'String'
          }
        },
        port: {
          client_side_validation: true,
          required: false,
          serialized_name: 'port',
          type: {
            name: 'Number'
          }
        }
      }
    }
  }
end