Sha256: 47a13a34300bede11186de4999ce63e1cc3deee3af534f5fdc5af5feaa2738d2
Contents?: true
Size: 602 Bytes
Versions: 47
Compression:
Stored size: 602 Bytes
Contents
module Fog module Network class AzureRM # Vpn Client Root Certificate model class for Network Service class VpnClientRootCertificate < Fog::Model attribute :name attribute :id attribute :public_cert_data attribute :provisioning_state def self.parse(root_cert) hash = {} hash['name'] = root_cert.name hash['id'] = root_cert.id hash['public_cert_data'] = root_cert.public_cert_data hash['provisioning_state'] = root_cert.provisioning_state hash end end end end end
Version data entries
47 entries across 47 versions & 4 rubygems