class Azure::Network::Mgmt::V2019_09_01::Models::P2SConnectionConfiguration
Attributes
etag[RW]
@return [String] A unique read-only string that changes whenever the resource is updated.
name[RW]
@return [String] The name of the resource that is unique within a resource group. This name can be used to access the resource.
provisioning_state[RW]
@return [ProvisioningState] The provisioning state of the P2SConnectionConfiguration
resource. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'
vpn_client_address_pool[RW]
@return [AddressSpace] The reference of the address space resource which represents Address space for P2S VpnClient.
Public Class Methods
mapper()
click to toggle source
Mapper for P2SConnectionConfiguration
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-09-01/generated/azure_mgmt_network/models/p2sconnection_configuration.rb, line 37 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' } }, 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