# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::Network::Mgmt::V2018_08_01 module Models # # Radius Server root certificate of P2SVpnServerConfiguration. # class P2SVpnServerConfigRadiusServerRootCertificate < SubResource include MsRestAzure # @return [String] The certificate public data. attr_accessor :public_cert_data # @return [String] The provisioning state of the # P2SVpnServerConfiguration Radius Server root certificate resource. # Possible values are: 'Updating', 'Deleting', and 'Failed'. attr_accessor :provisioning_state # @return [String] The name of the resource that is unique within a # resource group. This name can be used to access the resource. attr_accessor :name # @return [String] A unique read-only string that changes whenever the # resource is updated. attr_accessor :etag # # Mapper for P2SVpnServerConfigRadiusServerRootCertificate class as Ruby # Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'P2SVpnServerConfigRadiusServerRootCertificate', type: { name: 'Composite', class_name: 'P2SVpnServerConfigRadiusServerRootCertificate', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, public_cert_data: { client_side_validation: true, required: true, serialized_name: 'properties.publicCertData', type: { name: 'String' } }, 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, serialized_name: 'etag', type: { name: 'String' } } } } } end end end end