Class: Azure::ARM::Network::Models::ConnectivitySource

Inherits:
Object
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/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



22
23
24
# File 'lib/generated/azure_mgmt_network/models/connectivity_source.rb', line 22

def port
  @port
end

#resource_idString

will be initiated.

Returns:

  • (String)

    The ID of the resource from which a connectivity check



18
19
20
# File 'lib/generated/azure_mgmt_network/models/connectivity_source.rb', line 18

def resource_id
  @resource_id
end

Class Method Details

.mapperObject

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



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
# File 'lib/generated/azure_mgmt_network/models/connectivity_source.rb', line 29

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