Class: Azure::Network::Mgmt::V2020_07_01::Models::IPConfigurationBgpPeeringAddress

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2020-07-01/generated/azure_mgmt_network/models/ipconfiguration_bgp_peering_address.rb

Overview

Properties of IPConfigurationBgpPeeringAddress.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#custom_bgp_ip_addressesArray<String>

belong to IP configuration.

Returns:

  • (Array<String>)

    The list of custom BGP peering addresses which



24
25
26
# File 'lib/2020-07-01/generated/azure_mgmt_network/models/ipconfiguration_bgp_peering_address.rb', line 24

def custom_bgp_ip_addresses
  @custom_bgp_ip_addresses
end

#default_bgp_ip_addressesArray<String>

belong to IP configuration.

Returns:

  • (Array<String>)

    The list of default BGP peering addresses which



20
21
22
# File 'lib/2020-07-01/generated/azure_mgmt_network/models/ipconfiguration_bgp_peering_address.rb', line 20

def default_bgp_ip_addresses
  @default_bgp_ip_addresses
end

#ipconfiguration_idString

Returns The ID of IP configuration which belongs to gateway.

Returns:

  • (String)

    The ID of IP configuration which belongs to gateway.



16
17
18
# File 'lib/2020-07-01/generated/azure_mgmt_network/models/ipconfiguration_bgp_peering_address.rb', line 16

def ipconfiguration_id
  @ipconfiguration_id
end

#tunnel_ip_addressesArray<String>

belong to IP configuration.

Returns:

  • (Array<String>)

    The list of tunnel public IP addresses which



28
29
30
# File 'lib/2020-07-01/generated/azure_mgmt_network/models/ipconfiguration_bgp_peering_address.rb', line 28

def tunnel_ip_addresses
  @tunnel_ip_addresses
end

Class Method Details

.mapperObject

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



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# File 'lib/2020-07-01/generated/azure_mgmt_network/models/ipconfiguration_bgp_peering_address.rb', line 35

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'IPConfigurationBgpPeeringAddress',
    type: {
      name: 'Composite',
      class_name: 'IPConfigurationBgpPeeringAddress',
      model_properties: {
        ipconfiguration_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ipconfigurationId',
          type: {
            name: 'String'
          }
        },
        default_bgp_ip_addresses: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'defaultBgpIpAddresses',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        custom_bgp_ip_addresses: {
          client_side_validation: true,
          required: false,
          serialized_name: 'customBgpIpAddresses',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        tunnel_ip_addresses: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'tunnelIpAddresses',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        }
      }
    }
  }
end