Sha256: 7c1cc7505aa98034107d8d194eee23c5dc647ef23eeb84da9c2c085a7f3cc37e
Contents?: true
Size: 605 Bytes
Versions: 47
Compression:
Stored size: 605 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
47 entries across 47 versions & 4 rubygems