class Fog::ApplicationGateway::AzureRM::SslCertificate
SSL Certificate model class for Application Gateway
Service
Public Class Methods
parse(ssl_certificate)
click to toggle source
# File lib/fog/azurerm/models/application_gateway/ssl_certificate.rb, line 12 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