Class: Azure::Network::Mgmt::V2020_07_01::Models::P2SConnectionConfiguration

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

Overview

P2SConnectionConfiguration Resource.

Instance Attribute Summary collapse

Attributes inherited from SubResource

#id

Class Method Summary collapse

Instance Attribute Details

#enable_internet_securityBoolean

flag is turned on for the P2S Connections or not.

Returns:

  • (Boolean)

    Flag indicating whether the enable internet security



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

def enable_internet_security
  @enable_internet_security
end

#etagString

resource is updated.

Returns:

  • (String)

    A unique read-only string that changes whenever the



38
39
40
# File 'lib/2020-07-01/generated/azure_mgmt_network/models/p2sconnection_configuration.rb', line 38

def etag
  @etag
end

#nameString

resource group. This name can be used to access the resource.

Returns:

  • (String)

    The name of the resource that is unique within a



34
35
36
# File 'lib/2020-07-01/generated/azure_mgmt_network/models/p2sconnection_configuration.rb', line 34

def name
  @name
end

#provisioning_stateProvisioningState

P2SConnectionConfiguration resource. Possible values include: ‘Succeeded’, ‘Updating’, ‘Deleting’, ‘Failed’

Returns:



30
31
32
# File 'lib/2020-07-01/generated/azure_mgmt_network/models/p2sconnection_configuration.rb', line 30

def provisioning_state
  @provisioning_state
end

#routing_configurationRoutingConfiguration

associated and propagated route tables on this connection.

Returns:



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

def routing_configuration
  @routing_configuration
end

#vpn_client_address_poolAddressSpace

which represents Address space for P2S VpnClient.

Returns:

  • (AddressSpace)

    The reference to the address space resource



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

def vpn_client_address_pool
  @vpn_client_address_pool
end

Class Method Details

.mapperObject

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



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
106
107
108
109
110
111
112
113
114
115
116
117
# File 'lib/2020-07-01/generated/azure_mgmt_network/models/p2sconnection_configuration.rb', line 45

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'P2SConnectionConfiguration',
    type: {
      name: 'Composite',
      class_name: 'P2SConnectionConfiguration',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        vpn_client_address_pool: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.vpnClientAddressPool',
          type: {
            name: 'Composite',
            class_name: 'AddressSpace'
          }
        },
        routing_configuration: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.routingConfiguration',
          type: {
            name: 'Composite',
            class_name: 'RoutingConfiguration'
          }
        },
        enable_internet_security: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.enableInternetSecurity',
          type: {
            name: 'Boolean'
          }
        },
        provisioning_state: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.provisioningState',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        etag: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end