Sha256: adefa13e2e7757b79171a5611a09f5fab6e3b5477d9769979bc9569b918eb9b2
Contents?: true
Size: 672 Bytes
Versions: 46
Compression:
Stored size: 672 Bytes
Contents
module Fog module ApplicationGateway class AzureRM # SSL Certificate model class for Application Gateway Service class SslCertificate < Fog::Model identity :name attribute :id attribute :data attribute :password attribute :public_cert_data def self.parse(ssl_certificate) hash = {} hash['id'] = ssl_certificate.id hash['name'] = ssl_certificate.name hash['data'] = ssl_certificate.data hash['password'] = ssl_certificate.password hash['public_cert_data'] = ssl_certificate.public_cert_data hash end end end end end
Version data entries
46 entries across 46 versions & 4 rubygems