Class: Azure::Network::Mgmt::V2020_07_01::Models::P2SConnectionConfiguration
- Inherits:
-
SubResource
- Object
- SubResource
- Azure::Network::Mgmt::V2020_07_01::Models::P2SConnectionConfiguration
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-07-01/generated/azure_mgmt_network/models/p2sconnection_configuration.rb
Overview
P2SConnectionConfiguration Resource.
Instance Attribute Summary collapse
-
#enable_internet_security ⇒ Boolean
flag is turned on for the P2S Connections or not.
-
#etag ⇒ String
resource is updated.
-
#name ⇒ String
resource group.
-
#provisioning_state ⇒ ProvisioningState
P2SConnectionConfiguration resource.
-
#routing_configuration ⇒ RoutingConfiguration
associated and propagated route tables on this connection.
-
#vpn_client_address_pool ⇒ AddressSpace
which represents Address space for P2S VpnClient.
Attributes inherited from SubResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for P2SConnectionConfiguration class as Ruby Hash.
Instance Attribute Details
#enable_internet_security ⇒ Boolean
flag is turned on for the P2S Connections or not.
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 |
#etag ⇒ String
resource is updated.
38 39 40 |
# File 'lib/2020-07-01/generated/azure_mgmt_network/models/p2sconnection_configuration.rb', line 38 def etag @etag end |
#name ⇒ String
resource group. This name can be used to access the resource.
34 35 36 |
# File 'lib/2020-07-01/generated/azure_mgmt_network/models/p2sconnection_configuration.rb', line 34 def name @name end |
#provisioning_state ⇒ ProvisioningState
P2SConnectionConfiguration resource. Possible values include: ‘Succeeded’, ‘Updating’, ‘Deleting’, ‘Failed’
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_configuration ⇒ RoutingConfiguration
associated and propagated route tables on this connection.
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_pool ⇒ AddressSpace
which represents Address space for P2S VpnClient.
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
.mapper ⇒ Object
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 |