class Azure::Network::Mgmt::V2020_06_01::Models::VpnServerConfigRadiusClientRootCertificate

Properties of the Radius client root certificate of VpnServerConfiguration.

Attributes

name[RW]

@return [String] The certificate name.

thumbprint[RW]

@return [String] The Radius client root certificate thumbprint.

Public Class Methods

mapper() click to toggle source

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

# File lib/2020-06-01/generated/azure_mgmt_network/models/vpn_server_config_radius_client_root_certificate.rb, line 28
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'VpnServerConfigRadiusClientRootCertificate',
    type: {
      name: 'Composite',
      class_name: 'VpnServerConfigRadiusClientRootCertificate',
      model_properties: {
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        thumbprint: {
          client_side_validation: true,
          required: false,
          serialized_name: 'thumbprint',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end