Module: Azure::CloudServiceManagement::Serialization
Class Method Summary
collapse
enable_winrm?, export_der, export_fingerprint, get_certificate, initialize_external_logger, locate_file, random_string, xml_content
Class Method Details
.add_certificate_to_xml(data) ⇒ Object
106
107
108
109
110
111
112
113
114
115
|
# File 'lib/azure/cloud_service_management/serialization.rb', line 106
def self.add_certificate_to_xml(data)
builder = Nokogiri::XML::Builder.new do |xml|
xml.CertificateFile('xmlns' => 'http://schemas.microsoft.com/windowsazure') do
xml.Data data
xml.CertificateFormat 'pfx'
xml.Password nil
end
end
builder.doc.to_xml
end
|
.cloud_services_from_xml(cloud_xml) ⇒ Object
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
# File 'lib/azure/cloud_service_management/serialization.rb', line 56
def self.cloud_services_from_xml(cloud_xml)
clouds = []
cloud_services_xml = cloud_xml.css('HostedServices HostedService')
cloud_services_xml = cloud_xml.css('HostedService') if \
cloud_services_xml.length == 0
cloud_services_xml.each do |cloud_service_xml|
cloud = CloudService.new
cloud.url = xml_content(cloud_service_xml, 'Url')
cloud.name = xml_content(cloud_service_xml, 'ServiceName')
props_xml = cloud_service_xml.css('HostedServiceProperties')
cloud.label = Base64.decode64(xml_content(props_xml, 'Label'))
cloud.description = xml_content(props_xml, 'Description')
location = xml_content(props_xml, 'Location')
cloud.location = location unless location.empty?
affinity_group = xml_content(props_xml, 'AffinityGroup')
cloud.affinity_group = affinity_group unless affinity_group
cloud.status = xml_content(props_xml, 'Status')
cloud.date_created = xml_content(props_xml, 'DateCreated')
cloud.date_modified = xml_content(props_xml, 'DateLastModified')
cloud.extended_properties = {}
props_xml.css('ExtendedProperties ExtendedProperty').map do |prop|
p_name = xml_content(prop, 'Name')
p_value = xml_content(prop, 'Value')
cloud.extended_properties[p_name] = p_value
end
cloud.default_winrm_certificate_thumbprint = xml_content(
cloud_service_xml, 'DefaultWinRMCertificateThumbprint'
)
deployment_xml = cloud_services_xml.css('Deployments Deployment')
cloud.deployment_name = xml_content(deployment_xml, 'Name')
vms_in_deployment = {}
cloud_service_xml.css('Deployments').each do |deployxml|
deployment_name = xml_content(deployxml, 'Deployment Name')
vms = Azure::VirtualMachineManagement::Serialization.virtual_machines_from_xml(
deployxml, cloud.name
)
vms_in_deployment[deployment_name.to_sym] = vms if vms
end
cloud.virtual_machines = vms_in_deployment
clouds << cloud
end
clouds.compact
end
|
.cloud_services_to_xml(name, options = {}) ⇒ Object
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# File 'lib/azure/cloud_service_management/serialization.rb', line 23
def self.cloud_services_to_xml(name, options = {})
options[:label] = options[:label] || name
builder = Nokogiri::XML::Builder.new do |xml|
xml.CreateHostedService(
'xmlns' => 'http://schemas.microsoft.com/windowsazure'
) do
xml.ServiceName(name)
xml.Label(Base64.encode64(options[:label]))
xml.Description(options[:description]) unless\
options[:description].nil? || options[:description].empty?
unless options[:affinity_group_name].nil?
xml.AffinityGroup(options[:affinity_group_name])
else
xml.Location(options[:location])
end
xml.ExtendedProperties do
options[:extended_properties].each do |prop_name, prop_value|
xml.ExtendedProperty do
xml.Name(prop_name)
xml.Value(prop_value)
end unless (prop_name.nil? || prop_name.empty?)\
|| (prop_value.nil? || prop_value.empty?)
end
end unless options[:extended_properties].nil?\
|| options[:extended_properties].empty?
end
end
builder.doc.to_xml
end
|