gapinc-fog 1.12.1.2.1 → 1.14.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (292) hide show
  1. data/.gitignore +1 -0
  2. data/.travis.yml +16 -1
  3. data/Gemfile.1.8.7 +10 -0
  4. data/README.md +23 -2
  5. data/Rakefile +2 -2
  6. data/changelog.txt +276 -0
  7. data/fog.gemspec +4 -6
  8. data/lib/fog/atmos/models/storage/file.rb +2 -2
  9. data/lib/fog/aws/elb.rb +3 -0
  10. data/lib/fog/aws/elb/policy_types.rb +441 -430
  11. data/lib/fog/aws/models/auto_scaling/activities.rb +11 -3
  12. data/lib/fog/aws/models/auto_scaling/groups.rb +6 -3
  13. data/lib/fog/aws/models/auto_scaling/policies.rb +7 -3
  14. data/lib/fog/aws/models/compute/volume.rb +1 -1
  15. data/lib/fog/aws/models/elb/backend_server_description.rb +11 -0
  16. data/lib/fog/aws/models/elb/backend_server_descriptions.rb +22 -0
  17. data/lib/fog/aws/models/elb/load_balancer.rb +15 -2
  18. data/lib/fog/aws/models/elb/policies.rb +28 -13
  19. data/lib/fog/aws/models/elb/policy.rb +20 -10
  20. data/lib/fog/aws/models/rds/instance_option.rb +21 -0
  21. data/lib/fog/aws/models/rds/instance_options.rb +30 -0
  22. data/lib/fog/aws/models/rds/log_file.rb +26 -0
  23. data/lib/fog/aws/models/rds/log_files.rb +50 -0
  24. data/lib/fog/aws/models/rds/server.rb +1 -0
  25. data/lib/fog/aws/models/rds/snapshots.rb +20 -13
  26. data/lib/fog/aws/parsers/auto_scaling/describe_policies.rb +5 -5
  27. data/lib/fog/aws/parsers/elb/describe_load_balancers.rb +44 -13
  28. data/lib/fog/aws/parsers/rds/db_parser.rb +28 -6
  29. data/lib/fog/aws/parsers/rds/describe_db_log_files.rb +44 -0
  30. data/lib/fog/aws/parsers/rds/describe_orderable_db_instance_options.rb +47 -0
  31. data/lib/fog/aws/parsers/rds/download_db_logfile_portion.rb +26 -0
  32. data/lib/fog/aws/parsers/storage/complete_multipart_upload.rb +1 -1
  33. data/lib/fog/aws/parsers/sts/assume_role.rb +30 -0
  34. data/lib/fog/aws/rds.rb +13 -0
  35. data/lib/fog/aws/requests/auto_scaling/describe_auto_scaling_groups.rb +9 -1
  36. data/lib/fog/aws/requests/auto_scaling/describe_policies.rb +15 -1
  37. data/lib/fog/aws/requests/elb/create_app_cookie_stickiness_policy.rb +0 -2
  38. data/lib/fog/aws/requests/elb/create_lb_cookie_stickiness_policy.rb +0 -2
  39. data/lib/fog/aws/requests/elb/create_load_balancer.rb +7 -0
  40. data/lib/fog/aws/requests/elb/create_load_balancer_policy.rb +11 -8
  41. data/lib/fog/aws/requests/elb/describe_load_balancers.rb +21 -1
  42. data/lib/fog/aws/requests/elb/set_load_balancer_policies_for_backend_server.rb +67 -0
  43. data/lib/fog/aws/requests/rds/describe_db_log_files.rb +67 -0
  44. data/lib/fog/aws/requests/rds/describe_orderable_db_instance_options.rb +76 -0
  45. data/lib/fog/aws/requests/rds/download_db_logfile_portion.rb +63 -0
  46. data/lib/fog/aws/requests/ses/send_raw_email.rb +1 -1
  47. data/lib/fog/aws/requests/ses/verify_domain_identity.rb +1 -1
  48. data/lib/fog/aws/requests/storage/complete_multipart_upload.rb +6 -2
  49. data/lib/fog/aws/requests/storage/get_object.rb +1 -1
  50. data/lib/fog/aws/requests/sts/assume_role.rb +46 -0
  51. data/lib/fog/aws/ses.rb +25 -9
  52. data/lib/fog/aws/sts.rb +22 -6
  53. data/lib/fog/bin/openstack.rb +5 -0
  54. data/lib/fog/bin/rackspace.rb +4 -0
  55. data/lib/fog/brightbox/models/compute/collaboration.rb +10 -2
  56. data/lib/fog/brightbox/models/compute/collaborations.rb +26 -2
  57. data/lib/fog/brightbox/models/compute/user_collaboration.rb +16 -1
  58. data/lib/fog/brightbox/models/compute/user_collaborations.rb +10 -2
  59. data/lib/fog/cloudstack/models/compute/servers.rb +1 -1
  60. data/lib/fog/compute/models/server.rb +16 -10
  61. data/lib/fog/core.rb +1 -0
  62. data/lib/fog/core/collection.rb +18 -0
  63. data/lib/fog/core/mock.rb +16 -0
  64. data/lib/fog/digitalocean/compute.rb +32 -3
  65. data/lib/fog/digitalocean/models/compute/server.rb +43 -14
  66. data/lib/fog/digitalocean/models/compute/servers.rb +27 -4
  67. data/lib/fog/digitalocean/models/compute/ssh_keys.rb +2 -3
  68. data/lib/fog/digitalocean/requests/compute/create_server.rb +9 -7
  69. data/lib/fog/digitalocean/requests/compute/destroy_server.rb +3 -0
  70. data/lib/fog/digitalocean/requests/compute/list_images.rb +6 -6
  71. data/lib/fog/dnsimple/dns.rb +4 -1
  72. data/lib/fog/dnsimple/models/dns/record.rb +3 -3
  73. data/lib/fog/dnsimple/requests/dns/create_domain.rb +36 -0
  74. data/lib/fog/dnsimple/requests/dns/create_record.rb +27 -0
  75. data/lib/fog/dnsimple/requests/dns/delete_domain.rb +12 -0
  76. data/lib/fog/dnsimple/requests/dns/delete_record.rb +12 -0
  77. data/lib/fog/dnsimple/requests/dns/get_domain.rb +12 -0
  78. data/lib/fog/dnsimple/requests/dns/get_record.rb +24 -0
  79. data/lib/fog/dnsimple/requests/dns/list_domains.rb +12 -0
  80. data/lib/fog/dnsimple/requests/dns/list_records.rb +12 -0
  81. data/lib/fog/dnsimple/requests/dns/update_record.rb +20 -0
  82. data/lib/fog/glesys/models/compute/server.rb +6 -0
  83. data/lib/fog/google/README.md +28 -0
  84. data/lib/fog/google/Rakefile +17 -0
  85. data/lib/fog/google/examples/bootstrap.rb +9 -0
  86. data/lib/fog/google/examples/create.rb +37 -0
  87. data/lib/fog/google/examples/eric-fail.rb +19 -0
  88. data/lib/fog/google/examples/get_list_images.rb +27 -0
  89. data/lib/fog/google/examples/launch_micro_instance.rb +21 -0
  90. data/lib/fog/google/examples/metadata.rb +18 -0
  91. data/lib/fog/google/models/compute/disks.rb +16 -6
  92. data/lib/fog/google/models/compute/flavors.rb +2 -1
  93. data/lib/fog/google/models/compute/image.rb +16 -17
  94. data/lib/fog/google/models/compute/images.rb +38 -5
  95. data/lib/fog/google/models/compute/server.rb +2 -2
  96. data/lib/fog/google/models/compute/servers.rb +8 -5
  97. data/lib/fog/google/models/storage/file.rb +7 -1
  98. data/lib/fog/google/parsers/storage/access_control_list.rb +2 -2
  99. data/lib/fog/google/requests/compute/insert_server.rb +1 -2
  100. data/lib/fog/google/requests/compute/list_images.rb +3 -2
  101. data/lib/fog/google/requests/storage/get_object.rb +1 -1
  102. data/lib/fog/hp/requests/storage/get_object.rb +1 -1
  103. data/lib/fog/ibm/requests/compute/create_instance.rb +20 -15
  104. data/lib/fog/internet_archive/requests/storage/get_object.rb +1 -1
  105. data/lib/fog/metering.rb +25 -0
  106. data/lib/fog/openstack.rb +2 -1
  107. data/lib/fog/openstack/metering.rb +215 -0
  108. data/lib/fog/openstack/models/compute/server.rb +5 -2
  109. data/lib/fog/openstack/models/metering/resource.rb +24 -0
  110. data/lib/fog/openstack/models/metering/resources.rb +25 -0
  111. data/lib/fog/openstack/models/volume/volume.rb +3 -1
  112. data/lib/fog/openstack/models/volume/volumes.rb +2 -1
  113. data/lib/fog/openstack/network.rb +24 -1
  114. data/lib/fog/openstack/requests/compute/create_server.rb +19 -1
  115. data/lib/fog/openstack/requests/compute/get_host_details.rb +2 -1
  116. data/lib/fog/openstack/requests/metering/get_resource.rb +32 -0
  117. data/lib/fog/openstack/requests/metering/get_samples.rb +55 -0
  118. data/lib/fog/openstack/requests/metering/get_statistics.rb +56 -0
  119. data/lib/fog/openstack/requests/metering/list_meters.rb +50 -0
  120. data/lib/fog/openstack/requests/metering/list_resources.rb +32 -0
  121. data/lib/fog/openstack/requests/network/delete_quota.rb +26 -0
  122. data/lib/fog/openstack/requests/network/get_quota.rb +31 -0
  123. data/lib/fog/openstack/requests/network/get_quotas.rb +31 -0
  124. data/lib/fog/openstack/requests/network/update_quota.rb +33 -0
  125. data/lib/fog/openstack/requests/storage/put_object.rb +8 -5
  126. data/lib/fog/openstack/requests/volume/create_volume.rb +4 -2
  127. data/lib/fog/rackspace.rb +24 -4
  128. data/lib/fog/rackspace/block_storage.rb +8 -4
  129. data/lib/fog/rackspace/cdn.rb +21 -4
  130. data/lib/fog/rackspace/compute_v2.rb +15 -4
  131. data/lib/fog/rackspace/errors.rb +12 -5
  132. data/lib/fog/rackspace/mock_data.rb +18 -7
  133. data/lib/fog/rackspace/models/compute_v2/key_pair.rb +56 -0
  134. data/lib/fog/rackspace/models/compute_v2/key_pairs.rb +43 -0
  135. data/lib/fog/rackspace/models/compute_v2/server.rb +7 -2
  136. data/lib/fog/rackspace/models/compute_v2/servers.rb +2 -1
  137. data/lib/fog/rackspace/models/identity/service_catalog.rb +34 -16
  138. data/lib/fog/rackspace/models/monitoring/agent_token.rb +40 -0
  139. data/lib/fog/rackspace/models/monitoring/agent_tokens.rb +28 -0
  140. data/lib/fog/rackspace/models/monitoring/alarm.rb +51 -0
  141. data/lib/fog/rackspace/models/monitoring/alarm_example.rb +26 -0
  142. data/lib/fog/rackspace/models/monitoring/alarm_examples.rb +31 -0
  143. data/lib/fog/rackspace/models/monitoring/alarms.rb +40 -0
  144. data/lib/fog/rackspace/models/monitoring/base.rb +36 -0
  145. data/lib/fog/rackspace/models/monitoring/check.rb +75 -0
  146. data/lib/fog/rackspace/models/monitoring/check_type.rb +15 -0
  147. data/lib/fog/rackspace/models/monitoring/check_types.rb +23 -0
  148. data/lib/fog/rackspace/models/monitoring/checks.rb +40 -0
  149. data/lib/fog/rackspace/models/monitoring/data_point.rb +18 -0
  150. data/lib/fog/rackspace/models/monitoring/data_points.rb +49 -0
  151. data/lib/fog/rackspace/models/monitoring/entities.rb +48 -0
  152. data/lib/fog/rackspace/models/monitoring/entity.rb +64 -0
  153. data/lib/fog/rackspace/models/monitoring/metric.rb +25 -0
  154. data/lib/fog/rackspace/models/monitoring/metrics.rb +27 -0
  155. data/lib/fog/rackspace/monitoring.rb +149 -0
  156. data/lib/fog/rackspace/requests/compute_v2/create_keypair.rb +53 -0
  157. data/lib/fog/rackspace/requests/compute_v2/create_server.rb +10 -8
  158. data/lib/fog/rackspace/requests/compute_v2/delete_keypair.rb +36 -0
  159. data/lib/fog/rackspace/requests/compute_v2/get_keypair.rb +41 -0
  160. data/lib/fog/rackspace/requests/compute_v2/list_keypairs.rb +37 -0
  161. data/lib/fog/rackspace/requests/monitoring/create_agent_token.rb +19 -0
  162. data/lib/fog/rackspace/requests/monitoring/create_alarm.rb +19 -0
  163. data/lib/fog/rackspace/requests/monitoring/create_check.rb +19 -0
  164. data/lib/fog/rackspace/requests/monitoring/create_entity.rb +19 -0
  165. data/lib/fog/rackspace/requests/monitoring/delete_agent_token.rb +17 -0
  166. data/lib/fog/rackspace/requests/monitoring/delete_alarm.rb +18 -0
  167. data/lib/fog/rackspace/requests/monitoring/delete_check.rb +17 -0
  168. data/lib/fog/rackspace/requests/monitoring/delete_entity.rb +17 -0
  169. data/lib/fog/rackspace/requests/monitoring/evaluate_alarm_example.rb +21 -0
  170. data/lib/fog/rackspace/requests/monitoring/get_agent_token.rb +19 -0
  171. data/lib/fog/rackspace/requests/monitoring/get_alarm.rb +19 -0
  172. data/lib/fog/rackspace/requests/monitoring/get_alarm_example.rb +19 -0
  173. data/lib/fog/rackspace/requests/monitoring/get_check.rb +19 -0
  174. data/lib/fog/rackspace/requests/monitoring/get_entity.rb +19 -0
  175. data/lib/fog/rackspace/requests/monitoring/list_agent_tokens.rb +19 -0
  176. data/lib/fog/rackspace/requests/monitoring/list_alarm_examples.rb +18 -0
  177. data/lib/fog/rackspace/requests/monitoring/list_alarms.rb +18 -0
  178. data/lib/fog/rackspace/requests/monitoring/list_check_types.rb +17 -0
  179. data/lib/fog/rackspace/requests/monitoring/list_checks.rb +18 -0
  180. data/lib/fog/rackspace/requests/monitoring/list_data_points.rb +18 -0
  181. data/lib/fog/rackspace/requests/monitoring/list_entities.rb +19 -0
  182. data/lib/fog/rackspace/requests/monitoring/list_metrics.rb +18 -0
  183. data/lib/fog/rackspace/requests/monitoring/list_notification_plans.rb +18 -0
  184. data/lib/fog/rackspace/requests/monitoring/list_overview.rb +19 -0
  185. data/lib/fog/rackspace/requests/monitoring/update_alarm.rb +18 -0
  186. data/lib/fog/rackspace/requests/monitoring/update_check.rb +18 -0
  187. data/lib/fog/rackspace/requests/monitoring/update_entity.rb +18 -0
  188. data/lib/fog/rackspace/requests/storage/delete_multiple_objects.rb +75 -0
  189. data/lib/fog/rackspace/requests/storage/delete_static_large_object.rb +50 -0
  190. data/lib/fog/rackspace/requests/storage/put_dynamic_obj_manifest.rb +44 -0
  191. data/lib/fog/rackspace/requests/storage/put_object.rb +1 -1
  192. data/lib/fog/rackspace/requests/storage/put_object_manifest.rb +3 -30
  193. data/lib/fog/rackspace/requests/storage/put_static_obj_manifest.rb +60 -0
  194. data/lib/fog/rackspace/storage.rb +24 -16
  195. data/lib/fog/riakcs/provisioning.rb +2 -1
  196. data/lib/fog/riakcs/usage.rb +2 -1
  197. data/lib/fog/vcloud/compute.rb +1 -1
  198. data/lib/fog/vcloud/requests/compute/configure_vm.rb +2 -2
  199. data/lib/fog/version.rb +1 -1
  200. data/lib/fog/vsphere/compute.rb +131 -0
  201. data/lib/fog/vsphere/models/compute/server.rb +5 -1
  202. data/lib/fog/vsphere/requests/compute/get_datacenter.rb +3 -1
  203. data/lib/fog/vsphere/requests/compute/get_virtual_machine.rb +20 -38
  204. data/lib/fog/vsphere/requests/compute/list_datacenters.rb +1 -0
  205. data/lib/fog/vsphere/requests/compute/list_virtual_machines.rb +8 -114
  206. data/lib/fog/vsphere/requests/compute/vm_clone.rb +18 -9
  207. data/lib/fog/vsphere/requests/compute/vm_power_off.rb +2 -0
  208. data/lib/fog/xenserver/compute.rb +14 -12
  209. data/lib/fog/xenserver/models/compute/console.rb +27 -0
  210. data/lib/fog/xenserver/models/compute/consoles.rb +25 -0
  211. data/lib/fog/xenserver/models/compute/server.rb +6 -2
  212. data/lib/fog/xenserver/models/compute/servers.rb +5 -0
  213. data/lib/fog/xenserver/requests/compute/create_server.rb +4 -0
  214. data/lib/fog/xml/sax_parser_connection.rb +3 -0
  215. data/lib/tasks/changelog_task.rb +2 -0
  216. data/tests/aws/models/compute/volume_tests.rb +1 -1
  217. data/tests/aws/models/elb/model_tests.rb +28 -1
  218. data/tests/aws/models/rds/instance_option_tests.rb +14 -0
  219. data/tests/aws/parsers/elb/describe_load_balancers.rb +65 -0
  220. data/tests/aws/requests/elb/helper.rb +2 -1
  221. data/tests/aws/requests/elb/listener_tests.rb +1 -1
  222. data/tests/aws/requests/elb/load_balancer_tests.rb +5 -1
  223. data/tests/aws/requests/elb/policy_tests.rb +85 -6
  224. data/tests/aws/requests/iam/helper.rb +4 -1
  225. data/tests/aws/requests/iam/server_certificate_tests.rb +2 -2
  226. data/tests/aws/requests/rds/helper.rb +35 -0
  227. data/tests/aws/requests/rds/instance_option_tests.rb +21 -0
  228. data/tests/aws/requests/rds/log_file_tests.rb +19 -0
  229. data/tests/aws/requests/sts/assume_role_tests.rb +19 -0
  230. data/tests/core/mocking_tests.rb +15 -0
  231. data/tests/digitalocean/helper.rb +23 -16
  232. data/tests/digitalocean/models/compute/flavor_tests.rb +2 -2
  233. data/tests/digitalocean/models/compute/image_tests.rb +2 -2
  234. data/tests/digitalocean/models/compute/region_tests.rb +2 -2
  235. data/tests/digitalocean/models/compute/server_tests.rb +11 -3
  236. data/tests/digitalocean/models/compute/servers_tests.rb +14 -28
  237. data/tests/digitalocean/models/compute/ssh_key_tests.rb +7 -3
  238. data/tests/digitalocean/models/compute/ssh_keys_tests.rb +5 -1
  239. data/tests/digitalocean/requests/compute/create_server_tests.rb +3 -6
  240. data/tests/digitalocean/requests/compute/destroy_server_tests.rb +1 -2
  241. data/tests/digitalocean/requests/compute/get_server_details_tests.rb +1 -1
  242. data/tests/digitalocean/requests/compute/get_ssh_key_tests.rb +4 -1
  243. data/tests/digitalocean/requests/compute/list_ssh_keys_tests.rb +5 -2
  244. data/tests/dnsimple/requests/dns/dns_tests.rb +30 -26
  245. data/tests/helper.rb +2 -2
  246. data/tests/helpers/collection_helper.rb +4 -4
  247. data/tests/helpers/mock_helper.rb +2 -0
  248. data/tests/openstack/requests/metering/meter_tests.rb +52 -0
  249. data/tests/openstack/requests/metering/resource_tests.rb +19 -0
  250. data/tests/openstack/requests/network/quota_tests.rb +65 -0
  251. data/tests/openstack/requests/storage/object_tests.rb +27 -2
  252. data/tests/rackspace/block_storage_tests.rb +2 -1
  253. data/tests/rackspace/cdn_tests.rb +9 -0
  254. data/tests/rackspace/compute_v2_tests.rb +16 -15
  255. data/tests/rackspace/databases_tests.rb +1 -1
  256. data/tests/rackspace/load_balancer_tests.rb +1 -1
  257. data/tests/rackspace/models/compute_v2/keypairs_tests.rb +47 -0
  258. data/tests/rackspace/models/identity/service_catalog_tests.rb +54 -29
  259. data/tests/rackspace/models/monitoring/agent_token_tests.rb +9 -0
  260. data/tests/rackspace/models/monitoring/agent_tokens_tests.rb +9 -0
  261. data/tests/rackspace/models/monitoring/alarm_example_tests.rb +18 -0
  262. data/tests/rackspace/models/monitoring/alarm_examples_tests.rb +19 -0
  263. data/tests/rackspace/models/monitoring/alarm_tests.rb +56 -0
  264. data/tests/rackspace/models/monitoring/alarms_tests.rb +25 -0
  265. data/tests/rackspace/models/monitoring/check_tests.rb +50 -0
  266. data/tests/rackspace/models/monitoring/check_types_tests.rb +14 -0
  267. data/tests/rackspace/models/monitoring/checks_tests.rb +16 -0
  268. data/tests/rackspace/models/monitoring/data_points_tests.rb +19 -0
  269. data/tests/rackspace/models/monitoring/entities_tests.rb +14 -0
  270. data/tests/rackspace/models/monitoring/entity_tests.rb +26 -0
  271. data/tests/rackspace/models/monitoring/metric_tests.rb +19 -0
  272. data/tests/rackspace/models/monitoring/metrics_tests.rb +17 -0
  273. data/tests/rackspace/monitoring_tests.rb +72 -0
  274. data/tests/rackspace/requests/compute_v2/keypair_tests.rb +55 -0
  275. data/tests/rackspace/requests/monitoring/agent_tests.rb +34 -0
  276. data/tests/rackspace/requests/monitoring/alarm_example_tests.rb +30 -0
  277. data/tests/rackspace/requests/monitoring/alarm_tests.rb +56 -0
  278. data/tests/rackspace/requests/monitoring/check_tests.rb +40 -0
  279. data/tests/rackspace/requests/monitoring/entity_tests.rb +37 -0
  280. data/tests/rackspace/requests/monitoring/helper.rb +78 -0
  281. data/tests/rackspace/requests/monitoring/list_tests.rb +60 -0
  282. data/tests/rackspace/requests/storage/large_object_tests.rb +303 -59
  283. data/tests/rackspace/requests/storage/object_tests.rb +73 -18
  284. data/tests/vsphere/models/compute/server_tests.rb +1 -1
  285. data/tests/vsphere/requests/compute/list_virtual_machines_tests.rb +2 -2
  286. data/tests/vsphere/requests/compute/vm_clone_tests.rb +14 -8
  287. data/tests/xenserver/compute_tests.rb +5 -5
  288. data/tests/xenserver/models/compute/console_test.rb +35 -0
  289. data/tests/xenserver/models/compute/consoles_test.rb +19 -0
  290. data/tests/xenserver/models/compute/server_tests.rb +25 -18
  291. data/tests/xenserver/models/compute/servers_tests.rb +1 -0
  292. metadata +177 -14
data/.gitignore CHANGED
@@ -21,3 +21,4 @@ pkg
21
21
  spec/credentials.yml
22
22
  vendor/*
23
23
  tags
24
+ tests/digitalocean/fixtures/
@@ -1,5 +1,9 @@
1
1
  language: ruby
2
2
 
3
+ gemfile:
4
+ - Gemfile
5
+ - Gemfile.1.8.7
6
+
3
7
  rvm:
4
8
  - 1.8.7
5
9
  - 1.9.2
@@ -8,9 +12,20 @@ rvm:
8
12
 
9
13
  script: bundle exec rake travis
10
14
 
15
+ matrix:
16
+ exclude:
17
+ - rvm: 1.8.7
18
+ gemfile: Gemfile
19
+ - rvm: 1.9.2
20
+ gemfile: Gemfile.1.8.7
21
+ - rvm: 1.9.3
22
+ gemfile: Gemfile.1.8.7
23
+ - rvm: 2.0.0
24
+ gemfile: Gemfile.1.8.7
25
+
11
26
  notifications:
12
27
  email: false
13
- irc:
28
+ irc:
14
29
  channels:
15
30
  - "irc.freenode.org#ruby-fog"
16
31
  template:
@@ -0,0 +1,10 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem 'nokogiri', '~>1.5.0'
4
+
5
+ group :development, :test do
6
+ # This is here because gemspec doesn't support require: false
7
+ gem 'coveralls', :require => false
8
+ end
9
+
10
+ gemspec
data/README.md CHANGED
@@ -15,7 +15,7 @@ fog is the Ruby cloud services library, top to bottom:
15
15
 
16
16
  sudo gem install fog
17
17
 
18
- Now type `fog` to try stuff, confident that fog will let you know what to do.
18
+ Now type `fog` to try stuff, confident that fog will let you know what to do.
19
19
  Here is an example of wading through server creation for Amazon Elastic Compute Cloud:
20
20
 
21
21
  >> server = Compute[:aws].servers.create
@@ -27,10 +27,31 @@ Here is an example of wading through server creation for Amazon Elastic Compute
27
27
  >> server.destroy # cleanup after yourself or regret it, trust me
28
28
  true
29
29
 
30
+ ## Ruby 1.8.7
31
+
32
+ The maintainers of this project, in concert with the maintainers of Ruby,
33
+ **strongly** recommend using the latest patchlevel of Ruby 1.9.2 or later.
34
+ [As of July 1, 2013, Ruby 1.8.7 is no longer officially maintained.][retired]
35
+ This means fixes will no longer be provided, even for known security
36
+ vulnerabilities.
37
+
38
+ [retired]: http://www.ruby-lang.org/en/news/2013/06/30/we-retire-1-8-7/
39
+
40
+ With this caveat, if you wish to bundle `fog` into your application on Ruby
41
+ 1.8.7, you must add the following line to your `Gemfile`.
42
+
43
+ gem 'nokogiri', '~>1.5.0'
44
+
45
+ Also, ensure that you are using LibXML version 2.8.0, since there is an
46
+ [issue with LibXML version 2.9.0][issue829] ([and 2.9.1][issue904]).
47
+
48
+ [issue829]: https://github.com/sparklemotion/nokogiri/issues/829
49
+ [issue904]: https://github.com/sparklemotion/nokogiri/issues/904
50
+
30
51
  ## Collections
31
52
 
32
53
  A high level interface to each cloud is provided through collections, such as `images` and `servers`.
33
- You can see a list of available collections by calling `collections` on the connection object.
54
+ You can see a list of available collections by calling `collections` on the connection object.
34
55
  You can try it out using the `fog` command:
35
56
 
36
57
  >> Compute[:aws].collections
data/Rakefile CHANGED
@@ -189,8 +189,8 @@ require "tasks/changelog_task"
189
189
  Fog::Rake::ChangelogTask.new
190
190
 
191
191
  task :coveralls_push_workaround do
192
- ENV['COVERAGE'] = 'false' if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('1.9')
193
- unless ENV['COVERAGE'] == 'false'
192
+ use_coveralls = (Gem::Version.new(RUBY_VERSION) > Gem::Version.new('1.9.2'))
193
+ if (ENV['COVERAGE'] != 'false') && use_coveralls
194
194
  require 'coveralls/rake/task'
195
195
  Coveralls::RakeTask.new
196
196
  Rake::Task["coveralls:push"].invoke
@@ -1,3 +1,279 @@
1
+ 1.14.0 07/19/2013 b9f1659ebd45c84db011c71b53cc581a1b7ac7e1
2
+ ==========================================================
3
+
4
+ Stats! { 'collaborators' => 49, 'downloads' => 2713501, 'forks' => 860, 'open_issues' => 155, 'watchers' => 2634 }
5
+
6
+ MVP! Erik Michaels-Ober
7
+
8
+ [misc]
9
+ Create separate Gemfile for Ruby 1.8.7. thanks Erik Michaels-Ober
10
+ Update nokogiri dependency to version ~>1.5. thanks Erik Michaels-Ober
11
+ Add note about installing on Ruby 1.8.7 [ci skip]. thanks Erik Michaels-Ober
12
+ add coveralls to Gemfile.1.8.7. thanks geemus
13
+
14
+
15
+ 1.13.0 07/19/2013 7f5b0b4931d8fe85596f67013ef285fd0b8335e0
16
+ ==========================================================
17
+
18
+ Stats! { 'collaborators' => 49, 'downloads' => 2712905, 'forks' => 860, 'open_issues' => 157, 'watchers' => 2634 }
19
+
20
+ MVP! James Bence
21
+
22
+ [AWS | AutoScaling]
23
+ Do not send Instances for update_auto_scaling_group (Avoids 413 Request Entity Too Large for ASGs with lots of instances). thanks Michael Hale
24
+
25
+ [AWS | Autoscaling]
26
+ whitelist the options for update_auto_scaling_group. thanks Michael Hale
27
+ whitelist the options for create_auto_scaling_group. thanks Michael Hale
28
+ dry up expected options. thanks Michael Hale
29
+ correct whitelist for create_auto_scaling_group. thanks Michael Hale
30
+ ensure tests work in 1.8.7. thanks Michael Hale
31
+
32
+ [Brightbox]
33
+ Updates to add collaborations. thanks Hemant Kumar
34
+ Extract Compute::Shared to own file. thanks Paul Thornthwaite
35
+
36
+ [Openstack|Volumes]
37
+ alias type to volume_type. thanks Grzesiek Kolodziejczyk
38
+
39
+ [Openstack|volume]
40
+ Add #get to volumes collection. thanks Grzesiek Kolodziejczyk
41
+ fix key name for volume_type. thanks Grzesiek Kolodziejczyk
42
+ create volumes from other vol. thanks Grzesiek Kolodziejczyk
43
+
44
+ [aws|storage]
45
+ parse #complete_multipart error. thanks Brian D. Burns
46
+
47
+ [aws|sts]
48
+ Add support for the AssumeRole STS method. Also enable the ability for the STS service to use IAM profiles to grab credentials off the EC2 instance, as is in place for the other AWS services. thanks Caleb Tennis
49
+
50
+ [cli]
51
+ Changes `fog --version` short option to `-v`. thanks Paul Thornthwaite
52
+
53
+ [core]
54
+ Removes unused getting of Constant. thanks Paul Thornthwaite
55
+ Comments why Nokogiri 1.6 is not being used. thanks Paul Thornthwaite
56
+ Move XML/JSON code up out of core. thanks Paul Thornthwaite
57
+ Fog::Connection documentation. thanks Paul Thornthwaite
58
+ Adds initial Fog::Connection tests. thanks Paul Thornthwaite
59
+ Test Core version not deprecated one. thanks Paul Thornthwaite
60
+
61
+ [core/xml]
62
+ Splits SAX parsing from Connection. thanks Paul Thornthwaite
63
+
64
+ [digitalocean]
65
+ Rename do to docean in examples. thanks Ørjan Blom
66
+
67
+ [fix]
68
+ Corrected the service mocks for testing to respond with a 304 to values of If-Modified-Since that match Last-Modified. thanks Bob Lail and Luke Booth
69
+
70
+ [google|compute]
71
+ Change default image to most recent version of wheezy. thanks Nat Welch
72
+ Fix some bugs with using create without bootstrap. thanks Nat Welch
73
+
74
+ [misc]
75
+ Add PubliclyAccessible option to RDS. thanks Adam Tucker
76
+ Extend capability to restore_db_instance_from_db_snapshot. thanks Adam Tucker
77
+ Signature method requires x-amz-security-token header. thanks Adam Tucker
78
+ Infer the 'image' URL correctly when inserting a server. thanks Akshay Moghe
79
+ increased iops limit to 4000. http://aws.typepad.com/aws/2013/05/provision-up-to-4k-iops-per-ebs-volume.html. thanks Angelo Marletta
80
+ Added support for [xenserver] snapshot. thanks Celso Fernandes
81
+ Fixes security group handling for spot requests launching into a VPC on AWS. thanks Dave Myron
82
+ Swapped to SecurityGroupId. thanks Dave Myron
83
+ fix create_tenant Mock response description and name. thanks Doug McInnes
84
+ Update excon dependency to version ~>0.24.0. thanks Erik Michaels-Ober
85
+ Update excon dependency to version ~>0.25.0. thanks Erik Michaels-Ober
86
+ Passing the connection_options parameter to underlying Fog::Storage object. thanks Hector Castro
87
+ Passing the connection_options parameter to underlying Fog::Storage object for Fog::RiakCS::Provisioning. thanks Hector Castro
88
+ Used publicURL as default endpoint type for OpenStack network. thanks Hongbin Lu
89
+ Rename 'each' method to 'each_page'. thanks James Bence
90
+ Loop over Marker header in 'all', remove 'each'. thanks James Bence
91
+ Inspect error.response.body, not error.message. thanks James Bence
92
+ Restore implementation of each/all. thanks James Bence
93
+ Refactor error handling. thanks James Bence
94
+ Remove code from other branch-in-progress. thanks James Bence
95
+ Remove mistaken version update. thanks James Bence
96
+ Construct hash with => (for 1.8.7). thanks James Bence
97
+ Use specific error classes, not generic Fog::Compute::AWS::Error. thanks James Bence
98
+ Add describe_db_log_files request for AWS, version 2013-05-15. thanks James Bence
99
+ Add 'each' that iterates over all log files. thanks James Bence
100
+ Add parser/request for DownloadDBLogFilePortion. thanks James Bence
101
+ Use correct filters on RDS model snapshots 'all' method. thanks James Bence
102
+ Use correct filters in RDS model logfiles 'all' method. thanks James Bence
103
+ More DRY, succinct implementation of tag parsing. thanks James Bence
104
+ Remove extraneous nil. thanks James Bence
105
+ Add db identifier to parser, use it for log_file model. thanks James Bence
106
+ Get partial log content via method call; add to log_file model attributes. thanks James Bence
107
+ adding proper fixed secondary_ip support. thanks John E. Vincent
108
+ remove a debug entry. thanks John E. Vincent
109
+ Allows to set the account meta key by setting hp_account_meta_key, needed to generate temp urls using the HP provider, explicitly, instead of using hp_secret_key. If hp_account_meta_key is not given hp_secret_key is used as hp_account_meta_key. thanks Julian Fischer
110
+ HP uses a different strategy to create the signature that is passed to swift than OpenStack. As the HP provider is broadly used by OpenStack users the OpenStack strategy is applied when the @hp_account_meta_key is given. thanks Julian Fischer
111
+ Adds Fog::Storage::HP::File#url method to enable compatibility with Fog::Storage::AWS::File. thanks Julian Fischer
112
+ Fixed bug undefined local variable or method account_meta_key. thanks Julian Fischer
113
+ Bugfix: @hp_secret_key instead of @hp_account_meta_key required in storage.rb:186. thanks Julian Fischer
114
+ Avoids Digest::HMAC.hexdigest to remain 1.8.7 compatibility. thanks Julian Fischer
115
+ Remove File#url. thanks Julian Fischer
116
+ Renames hp_account_meta_key to os_account_meta_temp_url_key. thanks Julian Fischer
117
+ merging with master. thanks Kyle Rames
118
+ Add nil check on metadata mock. thanks Mike Moore
119
+ Add attachment check to detach_volume mock. thanks Mike Moore
120
+ Add array coalesce. thanks Mike Moore
121
+ Uping version to v1beta15. thanks Nat Welch
122
+ trying to fix sshable? for gce. thanks Nat Welch
123
+ more attempts to get ssh in compute workings. thanks Nat Welch
124
+ temporary debug info. thanks Nat Welch
125
+ Better comments and a logging attempt. thanks Nat Welch
126
+ bug in network interfaces code. thanks Nat Welch
127
+ Trying to be more consistent in code. Removing logging. thanks Nat Welch
128
+ trying to get metadata do one request per access. thanks Nat Welch
129
+ Forgot to delete two lines. thanks Nat Welch
130
+ correct syntax for the metadata craziness. thanks Nat Welch
131
+ I'm an idiot. thanks Nat Welch
132
+ trying again to get metadata working... thanks Nat Welch
133
+ Hashes not Arrays. thanks Nat Welch
134
+ ahh machine api changed as well... gotta figure out what the api is returning now. thanks Nat Welch
135
+ can't be private. thanks Nat Welch
136
+ whoops. thanks Nat Welch
137
+ Nope. thanks Nat Welch
138
+ not that either. thanks Nat Welch
139
+ so many syntax errors. thanks Nat Welch
140
+ in v15, there are all kinds of places images can hide. thanks Nat Welch
141
+ make sure I'm getting valid data back. thanks Nat Welch
142
+ trying to actually handle response error data. thanks Nat Welch
143
+ just the message. thanks Nat Welch
144
+ aha! This could be the issue. thanks Nat Welch
145
+ why isn't image_url getting set?. thanks Nat Welch
146
+ nil, not empty. thanks Nat Welch
147
+ try this... thanks Nat Welch
148
+ never being written. thanks Nat Welch
149
+ trying to use correct code location. thanks Nat Welch
150
+ alright! Insertion!. thanks Nat Welch
151
+ Why is this request failing. thanks Nat Welch
152
+ Send the right zone. thanks Nat Welch
153
+ zone looks to be bad in get_server. thanks Nat Welch
154
+ why!. thanks Nat Welch
155
+ this is probably not stable. thanks Nat Welch
156
+ Different trypes of input. thanks Nat Welch
157
+ modify all of the things. thanks Nat Welch
158
+ passing around teh data. thanks Nat Welch
159
+ better zone name. thanks Nat Welch
160
+ sshable? shouldn't just die. thanks Nat Welch
161
+ inifite loop get. thanks Nat Welch
162
+ more bad status code checks. thanks Nat Welch
163
+ init response. thanks Nat Welch
164
+ trying to figure out what's wrong. thanks Nat Welch
165
+ Patch from a fellow googler. thanks Nat Welch
166
+ Switch running? back to ready?. thanks Nat Welch
167
+ network_interfaces can be nil. thanks Nat Welch
168
+ Default to running user for username. thanks Nat Welch
169
+ A patch from a fellow googler. thanks Nat Welch
170
+ metadata could be nil. thanks Nat Welch
171
+ Throw errors instead of printing them. thanks Nat Welch
172
+ refactor image lookup code. thanks Nat Welch
173
+ Let's wait till sshable. thanks Nat Welch
174
+ whoops. thanks Nat Welch
175
+ small style tweaks for #1946. thanks Nat Welch
176
+ Added option parsing to bin/fog. thanks Postmodern
177
+ Added the -f, --fogrc option for specifying an alternate fogrc file. thanks Postmodern
178
+ Renamed -f,--fogrc to -C,--credentials-path. thanks Postmodern
179
+ Added Fog::AWS::SES.verify_domain_identity. thanks Postmodern
180
+ Fixed description for the #verify_domain_identity tests. thanks Postmodern
181
+ Actually call verify_domain_identity. thanks Postmodern
182
+ Add basic error handling for Fog::AWS::SES. thanks Postmodern
183
+ Convert the raw_message for send_raw_email, just in case. thanks Postmodern
184
+ Raise Fog::AWS::SES::InvalidParameterError for InvalidParameterValue. thanks Postmodern
185
+ Fix autoincrement when creating a flavor if private flavors exist. thanks Thomas Kadauke
186
+ Add RDS API version parameter option. thanks Timur Alperovich
187
+ Initial documentation for using Fog with CloudSigma. thanks Viktor Petersson
188
+ Fixed typos. thanks Viktor Petersson
189
+ add license to gempsec. thanks geemus
190
+ Added Disk and Disks to Google compute. Created new insert server request method that is backward compatible with the old request method, but also allows all insert server options to be used rather than a subset. thanks jordangbull
191
+ cleaned out print statements. Refactored disk(s) to be created the same way as other models. Fixed wait_for on disks to properly work. thanks jordangbull
192
+ Fixed minor import issue. thanks jordangbull
193
+ Rebased and cleaned up google fog. Changed insert_server to allow all options (not backwards compatible, but throws an informative error. thanks jordangbull
194
+ Cleaned code and fixed issue with getting a resource too soon after request for creation. thanks jordangbull
195
+ Added access configs name so public ip can be retrieved. thanks jordangbull
196
+ Fixed bug with bootstrapped servers not being sshable. thanks jordangbull
197
+ small fix in metadata for servers. thanks jordangbull
198
+ Fixed server bootstrap to remove default image if a boot disk is specified. thanks jordangbull
199
+ Google Cloud Compute now raises Errors rather than throwing them. thanks jordangbull
200
+ Added destroy method to disk and zone method. thanks jordangbull
201
+ Add SimpleCov and Coveralls.io dependenices Add rake tasks for travis, which include publishing coverage reports. thanks mlincoln
202
+ Change travis to use a rake task instead of shindont directly. This is partly necessary for https://github.com/lemurheavy/coveralls-ruby/pull/20, though I'm a fan of running just "rake" or "rake travis" for simplicity anyways. thanks mlincoln
203
+ The actual simplecov/coveralls setup. The use of Process.pid is an attempt to avoid confusing SimpleCov when running tests in parallel. Other tests frameworks take a similar approach when they detect parallel_tests. thanks mlincoln
204
+ Some cleanup based on comments on the PR. thanks mlincoln
205
+
206
+ [openstack|compute]
207
+ support block_device_mapping. thanks Grzesiek Kolodziejczyk
208
+
209
+ [openstack|image]
210
+ Fix image reload. thanks Ferran Rodenas
211
+
212
+ [openstack|metering]
213
+ Allow multiple filtering queries. thanks Alvin Garcia
214
+ Fix get_statistics mock. thanks Alvin Garcia
215
+ Added metering service for Ceilometer. thanks Philip Mark M. Deazeta
216
+
217
+ [openstack|volume]
218
+ support imageRef option. thanks Grzesiek Kolodziejczyk
219
+
220
+ [openvz]
221
+ Fixes #1871 test helper callback. thanks Paul Thornthwaite
222
+
223
+ [rackspace]
224
+ fix JSON error parsing. thanks Brian D. Burns
225
+ updated services to re-authenticate when authentication token expires. thanks Kyle Rames
226
+ adding block and parse_json parameters to request parameter calls. thanks Kyle Rames
227
+ fixing broken user tests; adding wait_for_request method to add in testing. thanks Kyle Rames
228
+ setting default fog timeout to 2000 for testing; removing specific hard coded timeouts. thanks Kyle Rames
229
+
230
+ [rackspace|block_storage]
231
+ fixing broken volume type tests. thanks Kyle Rames
232
+
233
+ [rackspace|cdn]
234
+ updating cdn to throw exceptions from storage namespace rather than cdn. This was done for historical reasons. thanks Kyle Rames
235
+
236
+ [rackspace|compute]
237
+ updating mocks. thanks Kyle Rames
238
+ fixing broken address test. thanks Kyle Rames
239
+ fixed metadata tests. thanks Kyle Rames
240
+ fixing broken tests. thanks Kyle Rames
241
+ adding parameter to save method in order to make it more polymorphic. thanks Kyle Rames
242
+
243
+ [rackspace|dns]
244
+ fixing DNS pagination issue #1887. thanks Kyle Rames
245
+ added total_entries attribute to zones. thanks Kyle Rames
246
+ adding :limit => 100 to clarify that all returns a limit of 100 records per page at @rupakg suggestion. thanks Kyle Rames
247
+ fixing broken tests. thanks Kyle Rames
248
+
249
+ [rackspace|identity]
250
+ fixing broken identity tests. thanks Kyle Rames
251
+
252
+ [rackspace|load balancers]
253
+ making failing usage tests cases pending until I can get them fixed. thanks Kyle Rames
254
+
255
+ [rackspace|storage]
256
+ add methods for SLO support. thanks Brian D. Burns
257
+ add #put_dynamic_obj_manifest. thanks Brian D. Burns
258
+ patch #delete_static_large_object for Swift v1.8. thanks Brian D. Burns
259
+ fix tests under ruby-1.8.7. thanks Brian D. Burns
260
+ add #delete_multiple_objects. thanks Brian D. Burns
261
+ patch #delete_multiple_objects for Swift v1.8. thanks Brian D. Burns
262
+ update File model to submit etags if they are specified. thanks Kyle Rames
263
+
264
+ [rackspce|block_storage]
265
+ fixing tests. thanks Kyle Rames
266
+
267
+ [vcloud|compute]
268
+ better defaults for configuring vm content-type. thanks geemus
269
+
270
+ [vsphere]
271
+ fix regex typo. thanks Dominic Cleal
272
+
273
+ [xenserver|compute]
274
+ Small fix for snapshot tests added in #1914. thanks Sergio Rubio
275
+
276
+
1
277
  1.12.1 06/11/2013 8663e9079edb69f1a56ea887379f94e6d5efd0d8
2
278
  ==========================================================
3
279
 
@@ -6,8 +6,8 @@ Gem::Specification.new do |s|
6
6
  ## If your rubyforge_project name is different, then edit it and comment out
7
7
  ## the sub! line in the Rakefile
8
8
  s.name = 'gapinc-fog'
9
- s.version = '1.12.1.2.1'
10
- s.date = '2013-06-10'
9
+ s.version = '1.14.0'
10
+ s.date = '2013-07-19'
11
11
  s.rubyforge_project = 'fog'
12
12
 
13
13
  ## Make sure your summary is short. The description may be as long
@@ -21,6 +21,7 @@ Gem::Specification.new do |s|
21
21
  s.authors = ["geemus (Wesley Beary)"]
22
22
  s.email = 'geemus@gmail.com'
23
23
  s.homepage = 'http://github.com/fog/fog'
24
+ s.license = 'MIT'
24
25
 
25
26
  ## This sections is only necessary if you have C extensions.
26
27
  # s.require_paths << 'ext'
@@ -47,13 +48,10 @@ Gem::Specification.new do |s|
47
48
  s.add_dependency('mime-types')
48
49
  s.add_dependency('net-scp', '~>1.1')
49
50
  s.add_dependency('net-ssh', '>=2.1.3')
51
+ s.add_dependency('nokogiri', '~>1.5')
50
52
  s.add_dependency('gapinc-rbvmomi')
51
53
  s.add_dependency('ruby-hmac')
52
54
 
53
- # Nokogiri >= 1.6 drops support for Ruby 1.8.7 so should not be used
54
- # See https://github.com/fog/fog/issues/1878 for more details
55
- s.add_dependency('nokogiri', '~>1.5.0')
56
-
57
55
  ## List your development dependencies here. Development dependencies are
58
56
  ## those that are only needed during development
59
57
  s.add_development_dependency('jekyll')
@@ -58,8 +58,8 @@ module Fog
58
58
  # By default, expire in 5 years
59
59
  def public_url(expires = (Time.now + 5 * 365 * 24 * 60 * 60))
60
60
  file = directory.files.head(key)
61
- self.objectid = if file.present? then file.attributes['x-emc-meta'].scan(/objectid=(\w+),/).flatten[0] else nil end
62
- if self.objectid.present?
61
+ self.objectid = if file && file.to_s.strip != "" then file.attributes['x-emc-meta'].scan(/objectid=(\w+),/).flatten[0] else nil end
62
+ if self.objectid && self.objectid.to_s.strip != ""
63
63
  uri = URI::HTTP.build(:scheme => service.ssl? ? "http" : "https" , :host => service.host, :port => service.port.to_i, :path => "/rest/objects/#{self.objectid}" )
64
64
 
65
65
  sb = "GET\n"
@@ -41,6 +41,7 @@ module Fog
41
41
  request :attach_load_balancer_to_subnets
42
42
  request :detach_load_balancer_from_subnets
43
43
  request :apply_security_groups_to_load_balancer
44
+ request :set_load_balancer_policies_for_backend_server
44
45
 
45
46
  model_path 'fog/aws/models/elb'
46
47
  model :load_balancer
@@ -49,6 +50,8 @@ module Fog
49
50
  collection :policies
50
51
  model :listener
51
52
  collection :listeners
53
+ model :backend_server_description
54
+ collection :backend_server_descriptions
52
55
 
53
56
  class Mock
54
57
 
@@ -33,434 +33,445 @@ class Fog::AWS::ELB::Mock
33
33
  "PolicyTypeName"=>"PublicKeyPolicyType"
34
34
  },
35
35
  {
36
- "Description" => "Listener policy that defines the ciphers and protocols that will be accepted by the load balancer. This policy can be associated only with HTTPS/SSL listeners.",
37
- "PolicyAttributeTypeDescriptions" => [{
38
- "AttributeName"=>"Protocol-SSLv2",
39
- "AttributeType"=>"Boolean",
40
- "Cardinality"=>"ONE",
41
- "DefaultValue"=>"FALSE",
42
- "Description"=>""
43
- },
44
- {
45
- "AttributeName"=>"EDH-DSS-DES-CBC3-SHA",
46
- "AttributeType"=>"Boolean",
47
- "Cardinality"=>"ONE",
48
- "DefaultValue"=>"FALSE",
49
- "Description"=>""
50
- },
51
- {
52
- "AttributeName"=>"DHE-RSA-CAMELLIA128-SHA",
53
- "AttributeType"=>"Boolean",
54
- "Cardinality"=>"ONE",
55
- "DefaultValue"=>"FALSE",
56
- "Description"=>""
57
- },
58
- {
59
- "AttributeName"=>"DES-CBC-MD5",
60
- "AttributeType"=>"Boolean",
61
- "Cardinality"=>"ONE",
62
- "DefaultValue"=>"FALSE",
63
- "Description"=>""
64
- },
65
- {
66
- "AttributeName"=>"KRB5-RC4-SHA",
67
- "AttributeType"=>"Boolean",
68
- "Cardinality"=>"ONE",
69
- "DefaultValue"=>"FALSE",
70
- "Description"=>""
71
- },
72
- {
73
- "AttributeName"=>"ADH-CAMELLIA128-SHA",
74
- "AttributeType"=>"Boolean",
75
- "Cardinality"=>"ONE",
76
- "DefaultValue"=>"FALSE",
77
- "Description"=>""
78
- },
79
- {
80
- "AttributeName"=>"EXP-KRB5-RC4-MD5",
81
- "AttributeType"=>"Boolean",
82
- "Cardinality"=>"ONE",
83
- "DefaultValue"=>"FALSE",
84
- "Description"=>""
85
- },
86
- {
87
- "AttributeName"=>"ADH-RC4-MD5",
88
- "AttributeType"=>"Boolean",
89
- "Cardinality"=>"ONE",
90
- "DefaultValue"=>"FALSE",
91
- "Description"=>""
92
- },
93
- {
94
- "AttributeName"=>"PSK-RC4-SHA",
95
- "AttributeType"=>"Boolean",
96
- "Cardinality"=>"ONE",
97
- "DefaultValue"=>"FALSE",
98
- "Description"=>""
99
- },
100
- {
101
- "AttributeName"=>"PSK-AES128-CBC-SHA",
102
- "AttributeType"=>"Boolean",
103
- "Cardinality"=>"ONE",
104
- "DefaultValue"=>"FALSE",
105
- "Description"=>""
106
- },
107
- {
108
- "AttributeName"=>"EXP-EDH-RSA-DES-CBC-SHA",
109
- "AttributeType"=>"Boolean",
110
- "Cardinality"=>"ONE",
111
- "DefaultValue"=>"FALSE",
112
- "Description"=>""
113
- },
114
- {
115
- "AttributeName"=>"CAMELLIA128-SHA",
116
- "AttributeType"=>"Boolean",
117
- "Cardinality"=>"ONE",
118
- "DefaultValue"=>"FALSE",
119
- "Description"=>""
120
- },
121
- {
122
- "AttributeName"=>"DHE-DSS-AES128-SHA",
123
- "AttributeType"=>"Boolean",
124
- "Cardinality"=>"ONE",
125
- "DefaultValue"=>"FALSE",
126
- "Description"=>""
127
- },
128
- {
129
- "AttributeName"=>"EDH-RSA-DES-CBC-SHA",
130
- "AttributeType"=>"Boolean",
131
- "Cardinality"=>"ONE",
132
- "DefaultValue"=>"FALSE",
133
- "Description"=>""
134
- },
135
- {
136
- "AttributeName"=>"DHE-RSA-SEED-SHA",
137
- "AttributeType"=>"Boolean",
138
- "Cardinality"=>"ONE",
139
- "DefaultValue"=>"FALSE",
140
- "Description"=>""
141
- },
142
- {
143
- "AttributeName"=>"KRB5-DES-CBC-MD5",
144
- "AttributeType"=>"Boolean",
145
- "Cardinality"=>"ONE",
146
- "DefaultValue"=>"FALSE",
147
- "Description"=>""
148
- },
149
- {
150
- "AttributeName"=>"DHE-RSA-CAMELLIA256-SHA",
151
- "AttributeType"=>"Boolean",
152
- "Cardinality"=>"ONE",
153
- "DefaultValue"=>"FALSE",
154
- "Description"=>""
155
- },
156
- {
157
- "AttributeName"=>"ADH-DES-CBC3-SHA",
158
- "AttributeType"=>"Boolean",
159
- "Cardinality"=>"ONE",
160
- "DefaultValue"=>"FALSE",
161
- "Description"=>""
162
- },
163
- {
164
- "AttributeName"=>"DES-CBC3-MD5",
165
- "AttributeType"=>"Boolean",
166
- "Cardinality"=>"ONE",
167
- "DefaultValue"=>"FALSE",
168
- "Description"=>""
169
- },
170
- {
171
- "AttributeName"=>"EXP-KRB5-RC2-CBC-MD5",
172
- "AttributeType"=>"Boolean",
173
- "Cardinality"=>"ONE",
174
- "DefaultValue"=>"FALSE",
175
- "Description"=>""
176
- },
177
- {
178
- "AttributeName"=>"EDH-DSS-DES-CBC-SHA",
179
- "AttributeType"=>"Boolean",
180
- "Cardinality"=>"ONE",
181
- "DefaultValue"=>"FALSE",
182
- "Description"=>""
183
- },
184
- {
185
- "AttributeName"=>"KRB5-DES-CBC-SHA",
186
- "AttributeType"=>"Boolean",
187
- "Cardinality"=>"ONE",
188
- "DefaultValue"=>"FALSE",
189
- "Description"=>""
190
- },
191
- {
192
- "AttributeName"=>"PSK-AES256-CBC-SHA",
193
- "AttributeType"=>"Boolean",
194
- "Cardinality"=>"ONE",
195
- "DefaultValue"=>"FALSE",
196
- "Description"=>""
197
- },
198
- {
199
- "AttributeName"=>"ADH-AES256-SHA",
200
- "AttributeType"=>"Boolean",
201
- "Cardinality"=>"ONE",
202
- "DefaultValue"=>"FALSE",
203
- "Description"=>""
204
- },
205
- {
206
- "AttributeName"=>"KRB5-DES-CBC3-SHA",
207
- "AttributeType"=>"Boolean",
208
- "Cardinality"=>"ONE",
209
- "DefaultValue"=>"FALSE",
210
- "Description"=>""
211
- },
212
- {
213
- "AttributeName"=>"AES128-SHA",
214
- "AttributeType"=>"Boolean",
215
- "Cardinality"=>"ONE",
216
- "DefaultValue"=>"TRUE",
217
- "Description"=>""
218
- },
219
- {
220
- "AttributeName"=>"DHE-DSS-SEED-SHA",
221
- "AttributeType"=>"Boolean",
222
- "Cardinality"=>"ONE",
223
- "DefaultValue"=>"FALSE",
224
- "Description"=>""
225
- },
226
- {
227
- "AttributeName"=>"ADH-CAMELLIA256-SHA",
228
- "AttributeType"=>"Boolean",
229
- "Cardinality"=>"ONE",
230
- "DefaultValue"=>"FALSE",
231
- "Description"=>""
232
- },
233
- {
234
- "AttributeName"=>"EXP-KRB5-RC4-SHA",
235
- "AttributeType"=>"Boolean",
236
- "Cardinality"=>"ONE",
237
- "DefaultValue"=>"FALSE",
238
- "Description"=>""
239
- },
240
- {
241
- "AttributeName"=>"EDH-RSA-DES-CBC3-SHA",
242
- "AttributeType"=>"Boolean",
243
- "Cardinality"=>"ONE",
244
- "DefaultValue"=>"FALSE",
245
- "Description"=>""
246
- },
247
- {
248
- "AttributeName"=>"EXP-KRB5-DES-CBC-MD5",
249
- "AttributeType"=>"Boolean",
250
- "Cardinality"=>"ONE",
251
- "DefaultValue"=>"FALSE",
252
- "Description"=>""
253
- },
254
- {
255
- "AttributeName"=>"Protocol-TLSv1",
256
- "AttributeType"=>"Boolean",
257
- "Cardinality"=>"ONE",
258
- "DefaultValue"=>"TRUE",
259
- "Description"=>""
260
- },
261
- {
262
- "AttributeName"=>"PSK-3DES-EDE-CBC-SHA",
263
- "AttributeType"=>"Boolean",
264
- "Cardinality"=>"ONE",
265
- "DefaultValue"=>"FALSE",
266
- "Description"=>""
267
- },
268
- {
269
- "AttributeName"=>"SEED-SHA",
270
- "AttributeType"=>"Boolean",
271
- "Cardinality"=>"ONE",
272
- "DefaultValue"=>"FALSE",
273
- "Description"=>""
274
- },
275
- {
276
- "AttributeName"=>"DHE-DSS-CAMELLIA256-SHA",
277
- "AttributeType"=>"Boolean",
278
- "Cardinality"=>"ONE",
279
- "DefaultValue"=>"FALSE",
280
- "Description"=>""
281
- },
282
- {
283
- "AttributeName"=>"IDEA-CBC-SHA",
284
- "AttributeType"=>"Boolean",
285
- "Cardinality"=>"ONE",
286
- "DefaultValue"=>"FALSE",
287
- "Description"=>""
288
- },
289
- {
290
- "AttributeName"=>"RC2-CBC-MD5",
291
- "AttributeType"=>"Boolean",
292
- "Cardinality"=>"ONE",
293
- "DefaultValue"=>"FALSE",
294
- "Description"=>""
295
- },
296
- {
297
- "AttributeName"=>"KRB5-RC4-MD5",
298
- "AttributeType"=>"Boolean",
299
- "Cardinality"=>"ONE",
300
- "DefaultValue"=>"FALSE",
301
- "Description"=>""
302
- },
303
- {
304
- "AttributeName"=>"ADH-AES128-SHA",
305
- "AttributeType"=>"Boolean",
306
- "Cardinality"=>"ONE",
307
- "DefaultValue"=>"FALSE",
308
- "Description"=>""
309
- },
310
- {
311
- "AttributeName"=>"RC4-SHA",
312
- "AttributeType"=>"Boolean",
313
- "Cardinality"=>"ONE",
314
- "DefaultValue"=>"TRUE",
315
- "Description"=>""
316
- },
317
- {
318
- "AttributeName"=>"AES256-SHA",
319
- "AttributeType"=>"Boolean",
320
- "Cardinality"=>"ONE",
321
- "DefaultValue"=>"TRUE",
322
- "Description"=>""
323
- },
324
- {
325
- "AttributeName"=>"Protocol-SSLv3",
326
- "AttributeType"=>"Boolean",
327
- "Cardinality"=>"ONE",
328
- "DefaultValue"=>"TRUE",
329
- "Description"=>""
330
- },
331
- {
332
- "AttributeName"=>"EXP-DES-CBC-SHA",
333
- "AttributeType"=>"Boolean",
334
- "Cardinality"=>"ONE",
335
- "DefaultValue"=>"FALSE",
336
- "Description"=>""
337
- },
338
- {
339
- "AttributeName"=>"DES-CBC3-SHA",
340
- "AttributeType"=>"Boolean",
341
- "Cardinality"=>"ONE",
342
- "DefaultValue"=>"TRUE",
343
- "Description"=>""
344
- },
345
- {
346
- "AttributeName"=>"DHE-RSA-AES128-SHA",
347
- "AttributeType"=>"Boolean",
348
- "Cardinality"=>"ONE",
349
- "DefaultValue"=>"FALSE",
350
- "Description"=>""
351
- },
352
- {
353
- "AttributeName"=>"EXP-EDH-DSS-DES-CBC-SHA",
354
- "AttributeType"=>"Boolean",
355
- "Cardinality"=>"ONE",
356
- "DefaultValue"=>"FALSE",
357
- "Description"=>""
358
- },
359
- {
360
- "AttributeName"=>"EXP-KRB5-RC2-CBC-SHA",
361
- "AttributeType"=>"Boolean",
362
- "Cardinality"=>"ONE",
363
- "DefaultValue"=>"FALSE",
364
- "Description"=>""
365
- },
366
- {
367
- "AttributeName"=>"DHE-RSA-AES256-SHA",
368
- "AttributeType"=>"Boolean",
369
- "Cardinality"=>"ONE",
370
- "DefaultValue"=>"FALSE",
371
- "Description"=>""
372
- },
373
- {
374
- "AttributeName"=>"KRB5-DES-CBC3-MD5",
375
- "AttributeType"=>"Boolean",
376
- "Cardinality"=>"ONE",
377
- "DefaultValue"=>"FALSE",
378
- "Description"=>""
379
- },
380
- {
381
- "AttributeName"=>"RC4-MD5",
382
- "AttributeType"=>"Boolean",
383
- "Cardinality"=>"ONE",
384
- "DefaultValue"=>"TRUE",
385
- "Description"=>""
386
- },
387
- {
388
- "AttributeName"=>"EXP-RC2-CBC-MD5",
389
- "AttributeType"=>"Boolean",
390
- "Cardinality"=>"ONE",
391
- "DefaultValue"=>"FALSE",
392
- "Description"=>""
393
- },
394
- {
395
- "AttributeName"=>"DES-CBC-SHA",
396
- "AttributeType"=>"Boolean",
397
- "Cardinality"=>"ONE",
398
- "DefaultValue"=>"FALSE",
399
- "Description"=>""
400
- },
401
- {
402
- "AttributeName"=>"EXP-ADH-RC4-MD5",
403
- "AttributeType"=>"Boolean",
404
- "Cardinality"=>"ONE",
405
- "DefaultValue"=>"FALSE",
406
- "Description"=>""
407
- },
408
- {
409
- "AttributeName"=>"EXP-RC4-MD5",
410
- "AttributeType"=>"Boolean",
411
- "Cardinality"=>"ONE",
412
- "DefaultValue"=>"FALSE",
413
- "Description"=>""
414
- },
415
- {
416
- "AttributeName"=>"ADH-DES-CBC-SHA",
417
- "AttributeType"=>"Boolean",
418
- "Cardinality"=>"ONE",
419
- "DefaultValue"=>"FALSE",
420
- "Description"=>""
421
- },
422
- {
423
- "AttributeName"=>"CAMELLIA256-SHA",
424
- "AttributeType"=>"Boolean",
425
- "Cardinality"=>"ONE",
426
- "DefaultValue"=>"FALSE",
427
- "Description"=>""
428
- },
429
- {
430
- "AttributeName"=>"DHE-DSS-CAMELLIA128-SHA",
431
- "AttributeType"=>"Boolean",
432
- "Cardinality"=>"ONE",
433
- "DefaultValue"=>"FALSE",
434
- "Description"=>""
435
- },
436
- {
437
- "AttributeName"=>"EXP-KRB5-DES-CBC-SHA",
438
- "AttributeType"=>"Boolean",
439
- "Cardinality"=>"ONE",
440
- "DefaultValue"=>"FALSE",
441
- "Description"=>""
442
- },
443
- {
444
- "AttributeName"=>"EXP-ADH-DES-CBC-SHA",
445
- "AttributeType"=>"Boolean",
446
- "Cardinality"=>"ONE",
447
- "DefaultValue"=>"FALSE",
448
- "Description"=>""
449
- },
450
- {
451
- "AttributeName"=>"DHE-DSS-AES256-SHA",
452
- "AttributeType"=>"Boolean",
453
- "Cardinality"=>"ONE",
454
- "DefaultValue"=>"FALSE",
455
- "Description"=>""
456
- },
457
- {
458
- "AttributeName"=>"ADH-SEED-SHA",
459
- "AttributeType"=>"Boolean",
460
- "Cardinality"=>"ONE",
461
- "DefaultValue"=>"FALSE",
462
- "Description"=>""
463
- }],
464
- "PolicyTypeName"=>"SSLNegotiationPolicyType"
465
- }]
36
+ "Description" => "Listener policy that defines the ciphers and protocols that will be accepted by the load balancer. This policy can be associated only with HTTPS/SSL listeners.",
37
+ "PolicyAttributeTypeDescriptions" => [{
38
+ "AttributeName"=>"Protocol-SSLv2",
39
+ "AttributeType"=>"Boolean",
40
+ "Cardinality"=>"ONE",
41
+ "DefaultValue"=>"FALSE",
42
+ "Description"=>""
43
+ },
44
+ {
45
+ "AttributeName"=>"EDH-DSS-DES-CBC3-SHA",
46
+ "AttributeType"=>"Boolean",
47
+ "Cardinality"=>"ONE",
48
+ "DefaultValue"=>"FALSE",
49
+ "Description"=>""
50
+ },
51
+ {
52
+ "AttributeName"=>"DHE-RSA-CAMELLIA128-SHA",
53
+ "AttributeType"=>"Boolean",
54
+ "Cardinality"=>"ONE",
55
+ "DefaultValue"=>"FALSE",
56
+ "Description"=>""
57
+ },
58
+ {
59
+ "AttributeName"=>"DES-CBC-MD5",
60
+ "AttributeType"=>"Boolean",
61
+ "Cardinality"=>"ONE",
62
+ "DefaultValue"=>"FALSE",
63
+ "Description"=>""
64
+ },
65
+ {
66
+ "AttributeName"=>"KRB5-RC4-SHA",
67
+ "AttributeType"=>"Boolean",
68
+ "Cardinality"=>"ONE",
69
+ "DefaultValue"=>"FALSE",
70
+ "Description"=>""
71
+ },
72
+ {
73
+ "AttributeName"=>"ADH-CAMELLIA128-SHA",
74
+ "AttributeType"=>"Boolean",
75
+ "Cardinality"=>"ONE",
76
+ "DefaultValue"=>"FALSE",
77
+ "Description"=>""
78
+ },
79
+ {
80
+ "AttributeName"=>"EXP-KRB5-RC4-MD5",
81
+ "AttributeType"=>"Boolean",
82
+ "Cardinality"=>"ONE",
83
+ "DefaultValue"=>"FALSE",
84
+ "Description"=>""
85
+ },
86
+ {
87
+ "AttributeName"=>"ADH-RC4-MD5",
88
+ "AttributeType"=>"Boolean",
89
+ "Cardinality"=>"ONE",
90
+ "DefaultValue"=>"FALSE",
91
+ "Description"=>""
92
+ },
93
+ {
94
+ "AttributeName"=>"PSK-RC4-SHA",
95
+ "AttributeType"=>"Boolean",
96
+ "Cardinality"=>"ONE",
97
+ "DefaultValue"=>"FALSE",
98
+ "Description"=>""
99
+ },
100
+ {
101
+ "AttributeName"=>"PSK-AES128-CBC-SHA",
102
+ "AttributeType"=>"Boolean",
103
+ "Cardinality"=>"ONE",
104
+ "DefaultValue"=>"FALSE",
105
+ "Description"=>""
106
+ },
107
+ {
108
+ "AttributeName"=>"EXP-EDH-RSA-DES-CBC-SHA",
109
+ "AttributeType"=>"Boolean",
110
+ "Cardinality"=>"ONE",
111
+ "DefaultValue"=>"FALSE",
112
+ "Description"=>""
113
+ },
114
+ {
115
+ "AttributeName"=>"CAMELLIA128-SHA",
116
+ "AttributeType"=>"Boolean",
117
+ "Cardinality"=>"ONE",
118
+ "DefaultValue"=>"FALSE",
119
+ "Description"=>""
120
+ },
121
+ {
122
+ "AttributeName"=>"DHE-DSS-AES128-SHA",
123
+ "AttributeType"=>"Boolean",
124
+ "Cardinality"=>"ONE",
125
+ "DefaultValue"=>"FALSE",
126
+ "Description"=>""
127
+ },
128
+ {
129
+ "AttributeName"=>"EDH-RSA-DES-CBC-SHA",
130
+ "AttributeType"=>"Boolean",
131
+ "Cardinality"=>"ONE",
132
+ "DefaultValue"=>"FALSE",
133
+ "Description"=>""
134
+ },
135
+ {
136
+ "AttributeName"=>"DHE-RSA-SEED-SHA",
137
+ "AttributeType"=>"Boolean",
138
+ "Cardinality"=>"ONE",
139
+ "DefaultValue"=>"FALSE",
140
+ "Description"=>""
141
+ },
142
+ {
143
+ "AttributeName"=>"KRB5-DES-CBC-MD5",
144
+ "AttributeType"=>"Boolean",
145
+ "Cardinality"=>"ONE",
146
+ "DefaultValue"=>"FALSE",
147
+ "Description"=>""
148
+ },
149
+ {
150
+ "AttributeName"=>"DHE-RSA-CAMELLIA256-SHA",
151
+ "AttributeType"=>"Boolean",
152
+ "Cardinality"=>"ONE",
153
+ "DefaultValue"=>"FALSE",
154
+ "Description"=>""
155
+ },
156
+ {
157
+ "AttributeName"=>"ADH-DES-CBC3-SHA",
158
+ "AttributeType"=>"Boolean",
159
+ "Cardinality"=>"ONE",
160
+ "DefaultValue"=>"FALSE",
161
+ "Description"=>""
162
+ },
163
+ {
164
+ "AttributeName"=>"DES-CBC3-MD5",
165
+ "AttributeType"=>"Boolean",
166
+ "Cardinality"=>"ONE",
167
+ "DefaultValue"=>"FALSE",
168
+ "Description"=>""
169
+ },
170
+ {
171
+ "AttributeName"=>"EXP-KRB5-RC2-CBC-MD5",
172
+ "AttributeType"=>"Boolean",
173
+ "Cardinality"=>"ONE",
174
+ "DefaultValue"=>"FALSE",
175
+ "Description"=>""
176
+ },
177
+ {
178
+ "AttributeName"=>"EDH-DSS-DES-CBC-SHA",
179
+ "AttributeType"=>"Boolean",
180
+ "Cardinality"=>"ONE",
181
+ "DefaultValue"=>"FALSE",
182
+ "Description"=>""
183
+ },
184
+ {
185
+ "AttributeName"=>"KRB5-DES-CBC-SHA",
186
+ "AttributeType"=>"Boolean",
187
+ "Cardinality"=>"ONE",
188
+ "DefaultValue"=>"FALSE",
189
+ "Description"=>""
190
+ },
191
+ {
192
+ "AttributeName"=>"PSK-AES256-CBC-SHA",
193
+ "AttributeType"=>"Boolean",
194
+ "Cardinality"=>"ONE",
195
+ "DefaultValue"=>"FALSE",
196
+ "Description"=>""
197
+ },
198
+ {
199
+ "AttributeName"=>"ADH-AES256-SHA",
200
+ "AttributeType"=>"Boolean",
201
+ "Cardinality"=>"ONE",
202
+ "DefaultValue"=>"FALSE",
203
+ "Description"=>""
204
+ },
205
+ {
206
+ "AttributeName"=>"KRB5-DES-CBC3-SHA",
207
+ "AttributeType"=>"Boolean",
208
+ "Cardinality"=>"ONE",
209
+ "DefaultValue"=>"FALSE",
210
+ "Description"=>""
211
+ },
212
+ {
213
+ "AttributeName"=>"AES128-SHA",
214
+ "AttributeType"=>"Boolean",
215
+ "Cardinality"=>"ONE",
216
+ "DefaultValue"=>"TRUE",
217
+ "Description"=>""
218
+ },
219
+ {
220
+ "AttributeName"=>"DHE-DSS-SEED-SHA",
221
+ "AttributeType"=>"Boolean",
222
+ "Cardinality"=>"ONE",
223
+ "DefaultValue"=>"FALSE",
224
+ "Description"=>""
225
+ },
226
+ {
227
+ "AttributeName"=>"ADH-CAMELLIA256-SHA",
228
+ "AttributeType"=>"Boolean",
229
+ "Cardinality"=>"ONE",
230
+ "DefaultValue"=>"FALSE",
231
+ "Description"=>""
232
+ },
233
+ {
234
+ "AttributeName"=>"EXP-KRB5-RC4-SHA",
235
+ "AttributeType"=>"Boolean",
236
+ "Cardinality"=>"ONE",
237
+ "DefaultValue"=>"FALSE",
238
+ "Description"=>""
239
+ },
240
+ {
241
+ "AttributeName"=>"EDH-RSA-DES-CBC3-SHA",
242
+ "AttributeType"=>"Boolean",
243
+ "Cardinality"=>"ONE",
244
+ "DefaultValue"=>"FALSE",
245
+ "Description"=>""
246
+ },
247
+ {
248
+ "AttributeName"=>"EXP-KRB5-DES-CBC-MD5",
249
+ "AttributeType"=>"Boolean",
250
+ "Cardinality"=>"ONE",
251
+ "DefaultValue"=>"FALSE",
252
+ "Description"=>""
253
+ },
254
+ {
255
+ "AttributeName"=>"Protocol-TLSv1",
256
+ "AttributeType"=>"Boolean",
257
+ "Cardinality"=>"ONE",
258
+ "DefaultValue"=>"TRUE",
259
+ "Description"=>""
260
+ },
261
+ {
262
+ "AttributeName"=>"PSK-3DES-EDE-CBC-SHA",
263
+ "AttributeType"=>"Boolean",
264
+ "Cardinality"=>"ONE",
265
+ "DefaultValue"=>"FALSE",
266
+ "Description"=>""
267
+ },
268
+ {
269
+ "AttributeName"=>"SEED-SHA",
270
+ "AttributeType"=>"Boolean",
271
+ "Cardinality"=>"ONE",
272
+ "DefaultValue"=>"FALSE",
273
+ "Description"=>""
274
+ },
275
+ {
276
+ "AttributeName"=>"DHE-DSS-CAMELLIA256-SHA",
277
+ "AttributeType"=>"Boolean",
278
+ "Cardinality"=>"ONE",
279
+ "DefaultValue"=>"FALSE",
280
+ "Description"=>""
281
+ },
282
+ {
283
+ "AttributeName"=>"IDEA-CBC-SHA",
284
+ "AttributeType"=>"Boolean",
285
+ "Cardinality"=>"ONE",
286
+ "DefaultValue"=>"FALSE",
287
+ "Description"=>""
288
+ },
289
+ {
290
+ "AttributeName"=>"RC2-CBC-MD5",
291
+ "AttributeType"=>"Boolean",
292
+ "Cardinality"=>"ONE",
293
+ "DefaultValue"=>"FALSE",
294
+ "Description"=>""
295
+ },
296
+ {
297
+ "AttributeName"=>"KRB5-RC4-MD5",
298
+ "AttributeType"=>"Boolean",
299
+ "Cardinality"=>"ONE",
300
+ "DefaultValue"=>"FALSE",
301
+ "Description"=>""
302
+ },
303
+ {
304
+ "AttributeName"=>"ADH-AES128-SHA",
305
+ "AttributeType"=>"Boolean",
306
+ "Cardinality"=>"ONE",
307
+ "DefaultValue"=>"FALSE",
308
+ "Description"=>""
309
+ },
310
+ {
311
+ "AttributeName"=>"RC4-SHA",
312
+ "AttributeType"=>"Boolean",
313
+ "Cardinality"=>"ONE",
314
+ "DefaultValue"=>"TRUE",
315
+ "Description"=>""
316
+ },
317
+ {
318
+ "AttributeName"=>"AES256-SHA",
319
+ "AttributeType"=>"Boolean",
320
+ "Cardinality"=>"ONE",
321
+ "DefaultValue"=>"TRUE",
322
+ "Description"=>""
323
+ },
324
+ {
325
+ "AttributeName"=>"Protocol-SSLv3",
326
+ "AttributeType"=>"Boolean",
327
+ "Cardinality"=>"ONE",
328
+ "DefaultValue"=>"TRUE",
329
+ "Description"=>""
330
+ },
331
+ {
332
+ "AttributeName"=>"EXP-DES-CBC-SHA",
333
+ "AttributeType"=>"Boolean",
334
+ "Cardinality"=>"ONE",
335
+ "DefaultValue"=>"FALSE",
336
+ "Description"=>""
337
+ },
338
+ {
339
+ "AttributeName"=>"DES-CBC3-SHA",
340
+ "AttributeType"=>"Boolean",
341
+ "Cardinality"=>"ONE",
342
+ "DefaultValue"=>"TRUE",
343
+ "Description"=>""
344
+ },
345
+ {
346
+ "AttributeName"=>"DHE-RSA-AES128-SHA",
347
+ "AttributeType"=>"Boolean",
348
+ "Cardinality"=>"ONE",
349
+ "DefaultValue"=>"FALSE",
350
+ "Description"=>""
351
+ },
352
+ {
353
+ "AttributeName"=>"EXP-EDH-DSS-DES-CBC-SHA",
354
+ "AttributeType"=>"Boolean",
355
+ "Cardinality"=>"ONE",
356
+ "DefaultValue"=>"FALSE",
357
+ "Description"=>""
358
+ },
359
+ {
360
+ "AttributeName"=>"EXP-KRB5-RC2-CBC-SHA",
361
+ "AttributeType"=>"Boolean",
362
+ "Cardinality"=>"ONE",
363
+ "DefaultValue"=>"FALSE",
364
+ "Description"=>""
365
+ },
366
+ {
367
+ "AttributeName"=>"DHE-RSA-AES256-SHA",
368
+ "AttributeType"=>"Boolean",
369
+ "Cardinality"=>"ONE",
370
+ "DefaultValue"=>"FALSE",
371
+ "Description"=>""
372
+ },
373
+ {
374
+ "AttributeName"=>"KRB5-DES-CBC3-MD5",
375
+ "AttributeType"=>"Boolean",
376
+ "Cardinality"=>"ONE",
377
+ "DefaultValue"=>"FALSE",
378
+ "Description"=>""
379
+ },
380
+ {
381
+ "AttributeName"=>"RC4-MD5",
382
+ "AttributeType"=>"Boolean",
383
+ "Cardinality"=>"ONE",
384
+ "DefaultValue"=>"TRUE",
385
+ "Description"=>""
386
+ },
387
+ {
388
+ "AttributeName"=>"EXP-RC2-CBC-MD5",
389
+ "AttributeType"=>"Boolean",
390
+ "Cardinality"=>"ONE",
391
+ "DefaultValue"=>"FALSE",
392
+ "Description"=>""
393
+ },
394
+ {
395
+ "AttributeName"=>"DES-CBC-SHA",
396
+ "AttributeType"=>"Boolean",
397
+ "Cardinality"=>"ONE",
398
+ "DefaultValue"=>"FALSE",
399
+ "Description"=>""
400
+ },
401
+ {
402
+ "AttributeName"=>"EXP-ADH-RC4-MD5",
403
+ "AttributeType"=>"Boolean",
404
+ "Cardinality"=>"ONE",
405
+ "DefaultValue"=>"FALSE",
406
+ "Description"=>""
407
+ },
408
+ {
409
+ "AttributeName"=>"EXP-RC4-MD5",
410
+ "AttributeType"=>"Boolean",
411
+ "Cardinality"=>"ONE",
412
+ "DefaultValue"=>"FALSE",
413
+ "Description"=>""
414
+ },
415
+ {
416
+ "AttributeName"=>"ADH-DES-CBC-SHA",
417
+ "AttributeType"=>"Boolean",
418
+ "Cardinality"=>"ONE",
419
+ "DefaultValue"=>"FALSE",
420
+ "Description"=>""
421
+ },
422
+ {
423
+ "AttributeName"=>"CAMELLIA256-SHA",
424
+ "AttributeType"=>"Boolean",
425
+ "Cardinality"=>"ONE",
426
+ "DefaultValue"=>"FALSE",
427
+ "Description"=>""
428
+ },
429
+ {
430
+ "AttributeName"=>"DHE-DSS-CAMELLIA128-SHA",
431
+ "AttributeType"=>"Boolean",
432
+ "Cardinality"=>"ONE",
433
+ "DefaultValue"=>"FALSE",
434
+ "Description"=>""
435
+ },
436
+ {
437
+ "AttributeName"=>"EXP-KRB5-DES-CBC-SHA",
438
+ "AttributeType"=>"Boolean",
439
+ "Cardinality"=>"ONE",
440
+ "DefaultValue"=>"FALSE",
441
+ "Description"=>""
442
+ },
443
+ {
444
+ "AttributeName"=>"EXP-ADH-DES-CBC-SHA",
445
+ "AttributeType"=>"Boolean",
446
+ "Cardinality"=>"ONE",
447
+ "DefaultValue"=>"FALSE",
448
+ "Description"=>""
449
+ },
450
+ {
451
+ "AttributeName"=>"DHE-DSS-AES256-SHA",
452
+ "AttributeType"=>"Boolean",
453
+ "Cardinality"=>"ONE",
454
+ "DefaultValue"=>"FALSE",
455
+ "Description"=>""
456
+ },
457
+ {
458
+ "AttributeName"=>"ADH-SEED-SHA",
459
+ "AttributeType"=>"Boolean",
460
+ "Cardinality"=>"ONE",
461
+ "DefaultValue"=>"FALSE",
462
+ "Description"=>""
463
+ }],
464
+ "PolicyTypeName"=>"SSLNegotiationPolicyType"
465
+ },
466
+ {
467
+ "Description"=>"Policy that controls whether to include the IP address and port of the originating request for TCP messages. This policy operates on TCP/SSL listeners only",
468
+ "PolicyAttributeTypeDescriptions"=>[{
469
+ "AttributeName"=>"ProxyProtocol",
470
+ "AttributeType"=>"Boolean",
471
+ "Cardinality"=>"ONE",
472
+ "DefaultValue"=>"",
473
+ "Description"=>""
474
+ }],
475
+ "PolicyTypeName"=>"ProxyProtocolPolicyType"
476
+ }]
466
477
  end