Sha256: 6baa0ee708da0db19d475e1ea170669d28962441752de8c29730c63f8bd4bc92
Contents?: true
Size: 627 Bytes
Versions: 6
Compression:
Stored size: 627 Bytes
Contents
module Fog module Network class AzureRM # Vpn Client Revoked Certificate model class for Network Service class VpnClientRevokedCertificate < Fog::Model attribute :name attribute :id attribute :thumbprint attribute :provisioning_state def self.parse(revoked_cert) hash = {} hash['name'] = revoked_cert.name hash['id'] = revoked_cert.id hash['thumbprint'] = revoked_cert.thumbprint hash['provisioning_state'] = revoked_cert.provisioning_state hash end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems