fog 1.14.0 → 1.15.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (288) hide show
  1. data/.gitignore +1 -0
  2. data/Rakefile +2 -2
  3. data/changelog.txt +296 -0
  4. data/fog.gemspec +2 -2
  5. data/lib/fog/atmos/models/storage/file.rb +2 -2
  6. data/lib/fog/aws/compute.rb +42 -2
  7. data/lib/fog/aws/elb.rb +3 -0
  8. data/lib/fog/aws/elb/policy_types.rb +441 -430
  9. data/lib/fog/aws/models/auto_scaling/activities.rb +11 -3
  10. data/lib/fog/aws/models/auto_scaling/groups.rb +6 -3
  11. data/lib/fog/aws/models/auto_scaling/policies.rb +7 -3
  12. data/lib/fog/aws/models/compute/flavors.rb +19 -0
  13. data/lib/fog/aws/models/compute/volume.rb +1 -1
  14. data/lib/fog/aws/models/elb/backend_server_description.rb +11 -0
  15. data/lib/fog/aws/models/elb/backend_server_descriptions.rb +22 -0
  16. data/lib/fog/aws/models/elb/load_balancer.rb +15 -2
  17. data/lib/fog/aws/models/elb/policies.rb +28 -13
  18. data/lib/fog/aws/models/elb/policy.rb +20 -10
  19. data/lib/fog/aws/models/rds/instance_option.rb +21 -0
  20. data/lib/fog/aws/models/rds/instance_options.rb +30 -0
  21. data/lib/fog/aws/models/rds/server.rb +1 -0
  22. data/lib/fog/aws/parsers/auto_scaling/describe_policies.rb +5 -5
  23. data/lib/fog/aws/parsers/compute/describe_account_attributes.rb +42 -0
  24. data/lib/fog/aws/parsers/elb/describe_load_balancers.rb +44 -13
  25. data/lib/fog/aws/parsers/rds/db_parser.rb +28 -6
  26. data/lib/fog/aws/parsers/rds/describe_orderable_db_instance_options.rb +47 -0
  27. data/lib/fog/aws/rds.rb +5 -0
  28. data/lib/fog/aws/requests/auto_scaling/describe_auto_scaling_groups.rb +9 -1
  29. data/lib/fog/aws/requests/auto_scaling/describe_policies.rb +15 -1
  30. data/lib/fog/aws/requests/compute/describe_account_attributes.rb +49 -0
  31. data/lib/fog/aws/requests/elb/create_app_cookie_stickiness_policy.rb +0 -2
  32. data/lib/fog/aws/requests/elb/create_lb_cookie_stickiness_policy.rb +0 -2
  33. data/lib/fog/aws/requests/elb/create_load_balancer.rb +30 -9
  34. data/lib/fog/aws/requests/elb/create_load_balancer_policy.rb +11 -8
  35. data/lib/fog/aws/requests/elb/describe_load_balancers.rb +21 -1
  36. data/lib/fog/aws/requests/elb/set_load_balancer_policies_for_backend_server.rb +67 -0
  37. data/lib/fog/aws/requests/iam/upload_server_certificate.rb +1 -1
  38. data/lib/fog/aws/requests/rds/describe_orderable_db_instance_options.rb +76 -0
  39. data/lib/fog/aws/requests/ses/verify_domain_identity.rb +1 -1
  40. data/lib/fog/bin/rackspace.rb +4 -0
  41. data/lib/fog/brightbox/models/compute/collaboration.rb +10 -2
  42. data/lib/fog/brightbox/models/compute/collaborations.rb +26 -2
  43. data/lib/fog/brightbox/models/compute/user_collaboration.rb +16 -1
  44. data/lib/fog/brightbox/models/compute/user_collaborations.rb +10 -2
  45. data/lib/fog/cloudstack/models/compute/server.rb +4 -0
  46. data/lib/fog/cloudstack/models/compute/servers.rb +1 -1
  47. data/lib/fog/compute/models/server.rb +16 -10
  48. data/lib/fog/core.rb +1 -0
  49. data/lib/fog/core/collection.rb +18 -0
  50. data/lib/fog/core/credentials.rb +6 -1
  51. data/lib/fog/core/mock.rb +16 -0
  52. data/lib/fog/digitalocean/compute.rb +32 -3
  53. data/lib/fog/digitalocean/models/compute/server.rb +43 -14
  54. data/lib/fog/digitalocean/models/compute/servers.rb +27 -4
  55. data/lib/fog/digitalocean/models/compute/ssh_keys.rb +2 -3
  56. data/lib/fog/digitalocean/requests/compute/create_server.rb +9 -7
  57. data/lib/fog/digitalocean/requests/compute/destroy_server.rb +3 -0
  58. data/lib/fog/digitalocean/requests/compute/list_images.rb +6 -6
  59. data/lib/fog/dnsimple/dns.rb +4 -1
  60. data/lib/fog/dnsimple/models/dns/record.rb +3 -3
  61. data/lib/fog/dnsimple/requests/dns/create_domain.rb +36 -0
  62. data/lib/fog/dnsimple/requests/dns/create_record.rb +27 -0
  63. data/lib/fog/dnsimple/requests/dns/delete_domain.rb +12 -0
  64. data/lib/fog/dnsimple/requests/dns/delete_record.rb +12 -0
  65. data/lib/fog/dnsimple/requests/dns/get_domain.rb +12 -0
  66. data/lib/fog/dnsimple/requests/dns/get_record.rb +24 -0
  67. data/lib/fog/dnsimple/requests/dns/list_domains.rb +12 -0
  68. data/lib/fog/dnsimple/requests/dns/list_records.rb +12 -0
  69. data/lib/fog/dnsimple/requests/dns/update_record.rb +20 -0
  70. data/lib/fog/glesys/models/compute/server.rb +6 -0
  71. data/lib/fog/google/README.md +28 -0
  72. data/lib/fog/google/Rakefile +17 -0
  73. data/lib/fog/google/compute.rb +5 -0
  74. data/lib/fog/google/examples/bootstrap.rb +9 -0
  75. data/lib/fog/google/examples/create.rb +37 -0
  76. data/lib/fog/google/examples/eric-fail.rb +19 -0
  77. data/lib/fog/google/examples/get_list_images.rb +27 -0
  78. data/lib/fog/google/examples/get_list_snapshots.rb +20 -0
  79. data/lib/fog/google/examples/image_create.rb +18 -0
  80. data/lib/fog/google/examples/launch_micro_instance.rb +26 -0
  81. data/lib/fog/google/examples/metadata.rb +18 -0
  82. data/lib/fog/google/examples/network.rb +21 -0
  83. data/lib/fog/google/models/compute/disk.rb +16 -5
  84. data/lib/fog/google/models/compute/disks.rb +16 -6
  85. data/lib/fog/google/models/compute/flavors.rb +2 -1
  86. data/lib/fog/google/models/compute/image.rb +36 -18
  87. data/lib/fog/google/models/compute/images.rb +38 -5
  88. data/lib/fog/google/models/compute/server.rb +20 -6
  89. data/lib/fog/google/models/compute/servers.rb +8 -5
  90. data/lib/fog/google/models/compute/snapshot.rb +36 -0
  91. data/lib/fog/google/models/compute/snapshots.rb +28 -0
  92. data/lib/fog/google/models/storage/file.rb +7 -1
  93. data/lib/fog/google/parsers/storage/access_control_list.rb +2 -2
  94. data/lib/fog/google/requests/compute/delete_disk.rb +5 -1
  95. data/lib/fog/google/requests/compute/get_disk.rb +2 -1
  96. data/lib/fog/google/requests/compute/get_snapshot.rb +34 -0
  97. data/lib/fog/google/requests/compute/insert_disk.rb +23 -7
  98. data/lib/fog/google/requests/compute/insert_image.rb +16 -9
  99. data/lib/fog/google/requests/compute/insert_server.rb +22 -10
  100. data/lib/fog/google/requests/compute/list_disks.rb +1 -1
  101. data/lib/fog/google/requests/compute/list_images.rb +3 -2
  102. data/lib/fog/google/requests/compute/list_snapshots.rb +30 -0
  103. data/lib/fog/openstack.rb +11 -2
  104. data/lib/fog/openstack/network.rb +23 -0
  105. data/lib/fog/openstack/requests/compute/add_flavor_access.rb +1 -1
  106. data/lib/fog/openstack/requests/compute/create_volume.rb +8 -7
  107. data/lib/fog/openstack/requests/compute/list_tenants_with_flavor_access.rb +1 -1
  108. data/lib/fog/openstack/requests/compute/remove_flavor_access.rb +1 -1
  109. data/lib/fog/openstack/requests/image/create_image.rb +23 -23
  110. data/lib/fog/openstack/requests/image/update_image.rb +31 -33
  111. data/lib/fog/openstack/requests/network/delete_quota.rb +26 -0
  112. data/lib/fog/openstack/requests/network/get_quota.rb +31 -0
  113. data/lib/fog/openstack/requests/network/get_quotas.rb +31 -0
  114. data/lib/fog/openstack/requests/network/update_quota.rb +33 -0
  115. data/lib/fog/openstack/requests/storage/get_object_https_url.rb +3 -3
  116. data/lib/fog/openstack/requests/storage/post_set_meta_temp_url_key.rb +1 -1
  117. data/lib/fog/openstack/requests/storage/put_object.rb +8 -5
  118. data/lib/fog/openstack/storage.rb +10 -9
  119. data/lib/fog/rackspace.rb +15 -5
  120. data/lib/fog/rackspace/block_storage.rb +8 -4
  121. data/lib/fog/rackspace/cdn.rb +21 -4
  122. data/lib/fog/rackspace/compute.rb +4 -4
  123. data/lib/fog/rackspace/compute_v2.rb +15 -4
  124. data/lib/fog/rackspace/databases.rb +4 -4
  125. data/lib/fog/rackspace/dns.rb +6 -6
  126. data/lib/fog/rackspace/errors.rb +12 -5
  127. data/lib/fog/rackspace/load_balancers.rb +4 -4
  128. data/lib/fog/rackspace/mock_data.rb +18 -7
  129. data/lib/fog/rackspace/models/compute_v2/key_pair.rb +56 -0
  130. data/lib/fog/rackspace/models/compute_v2/key_pairs.rb +43 -0
  131. data/lib/fog/rackspace/models/compute_v2/server.rb +7 -2
  132. data/lib/fog/rackspace/models/compute_v2/servers.rb +2 -1
  133. data/lib/fog/rackspace/models/identity/service_catalog.rb +34 -16
  134. data/lib/fog/rackspace/models/monitoring/agent_token.rb +40 -0
  135. data/lib/fog/rackspace/models/monitoring/agent_tokens.rb +28 -0
  136. data/lib/fog/rackspace/models/monitoring/alarm.rb +59 -0
  137. data/lib/fog/rackspace/models/monitoring/alarm_example.rb +26 -0
  138. data/lib/fog/rackspace/models/monitoring/alarm_examples.rb +31 -0
  139. data/lib/fog/rackspace/models/monitoring/alarms.rb +40 -0
  140. data/lib/fog/rackspace/models/monitoring/base.rb +30 -0
  141. data/lib/fog/rackspace/models/monitoring/check.rb +75 -0
  142. data/lib/fog/rackspace/models/monitoring/check_type.rb +15 -0
  143. data/lib/fog/rackspace/models/monitoring/check_types.rb +23 -0
  144. data/lib/fog/rackspace/models/monitoring/checks.rb +40 -0
  145. data/lib/fog/rackspace/models/monitoring/data_point.rb +18 -0
  146. data/lib/fog/rackspace/models/monitoring/data_points.rb +49 -0
  147. data/lib/fog/rackspace/models/monitoring/entities.rb +48 -0
  148. data/lib/fog/rackspace/models/monitoring/entity.rb +64 -0
  149. data/lib/fog/rackspace/models/monitoring/metric.rb +25 -0
  150. data/lib/fog/rackspace/models/monitoring/metrics.rb +27 -0
  151. data/lib/fog/rackspace/monitoring.rb +153 -0
  152. data/lib/fog/rackspace/requests/compute_v2/create_keypair.rb +53 -0
  153. data/lib/fog/rackspace/requests/compute_v2/create_server.rb +10 -8
  154. data/lib/fog/rackspace/requests/compute_v2/delete_keypair.rb +36 -0
  155. data/lib/fog/rackspace/requests/compute_v2/get_keypair.rb +41 -0
  156. data/lib/fog/rackspace/requests/compute_v2/list_keypairs.rb +37 -0
  157. data/lib/fog/rackspace/requests/monitoring/create_agent_token.rb +19 -0
  158. data/lib/fog/rackspace/requests/monitoring/create_alarm.rb +19 -0
  159. data/lib/fog/rackspace/requests/monitoring/create_check.rb +19 -0
  160. data/lib/fog/rackspace/requests/monitoring/create_entity.rb +19 -0
  161. data/lib/fog/rackspace/requests/monitoring/delete_agent_token.rb +17 -0
  162. data/lib/fog/rackspace/requests/monitoring/delete_alarm.rb +18 -0
  163. data/lib/fog/rackspace/requests/monitoring/delete_check.rb +17 -0
  164. data/lib/fog/rackspace/requests/monitoring/delete_entity.rb +17 -0
  165. data/lib/fog/rackspace/requests/monitoring/evaluate_alarm_example.rb +21 -0
  166. data/lib/fog/rackspace/requests/monitoring/get_agent_token.rb +19 -0
  167. data/lib/fog/rackspace/requests/monitoring/get_alarm.rb +19 -0
  168. data/lib/fog/rackspace/requests/monitoring/get_alarm_example.rb +19 -0
  169. data/lib/fog/rackspace/requests/monitoring/get_check.rb +19 -0
  170. data/lib/fog/rackspace/requests/monitoring/get_entity.rb +19 -0
  171. data/lib/fog/rackspace/requests/monitoring/list_agent_tokens.rb +19 -0
  172. data/lib/fog/rackspace/requests/monitoring/list_alarm_examples.rb +18 -0
  173. data/lib/fog/rackspace/requests/monitoring/list_alarms.rb +18 -0
  174. data/lib/fog/rackspace/requests/monitoring/list_check_types.rb +17 -0
  175. data/lib/fog/rackspace/requests/monitoring/list_checks.rb +18 -0
  176. data/lib/fog/rackspace/requests/monitoring/list_data_points.rb +18 -0
  177. data/lib/fog/rackspace/requests/monitoring/list_entities.rb +19 -0
  178. data/lib/fog/rackspace/requests/monitoring/list_metrics.rb +18 -0
  179. data/lib/fog/rackspace/requests/monitoring/list_notification_plans.rb +18 -0
  180. data/lib/fog/rackspace/requests/monitoring/list_overview.rb +19 -0
  181. data/lib/fog/rackspace/requests/monitoring/update_alarm.rb +18 -0
  182. data/lib/fog/rackspace/requests/monitoring/update_check.rb +18 -0
  183. data/lib/fog/rackspace/requests/monitoring/update_entity.rb +18 -0
  184. data/lib/fog/rackspace/requests/storage/put_object.rb +1 -1
  185. data/lib/fog/rackspace/storage.rb +8 -4
  186. data/lib/fog/vcloud/compute.rb +1 -1
  187. data/lib/fog/vcloud/examples/README.md +54 -0
  188. data/lib/fog/vcloud/examples/creating_a_connection.md +20 -0
  189. data/lib/fog/vcloud/examples/creating_a_vapp.md +17 -0
  190. data/lib/fog/vcloud/examples/get_network_information.md +10 -0
  191. data/lib/fog/vcloud/examples/get_vapp_information.md +10 -0
  192. data/lib/fog/vcloud/examples/more_on_vapps.md +23 -0
  193. data/lib/fog/vcloud/requests/compute/configure_vm.rb +2 -2
  194. data/lib/fog/version.rb +1 -1
  195. data/lib/fog/vsphere/compute.rb +131 -0
  196. data/lib/fog/vsphere/models/compute/server.rb +5 -1
  197. data/lib/fog/vsphere/requests/compute/get_datacenter.rb +3 -1
  198. data/lib/fog/vsphere/requests/compute/get_virtual_machine.rb +21 -37
  199. data/lib/fog/vsphere/requests/compute/list_datacenters.rb +1 -0
  200. data/lib/fog/vsphere/requests/compute/list_virtual_machines.rb +8 -114
  201. data/lib/fog/vsphere/requests/compute/vm_clone.rb +18 -9
  202. data/lib/fog/vsphere/requests/compute/vm_power_off.rb +2 -0
  203. data/lib/fog/xenserver/compute.rb +14 -12
  204. data/lib/fog/xenserver/models/compute/console.rb +27 -0
  205. data/lib/fog/xenserver/models/compute/consoles.rb +25 -0
  206. data/lib/fog/xenserver/models/compute/server.rb +6 -2
  207. data/lib/fog/xenserver/models/compute/servers.rb +5 -0
  208. data/lib/fog/xenserver/requests/compute/create_server.rb +4 -0
  209. data/lib/fog/xml/sax_parser_connection.rb +3 -0
  210. data/lib/tasks/changelog_task.rb +1 -0
  211. data/tests/aws/models/compute/volume_tests.rb +1 -1
  212. data/tests/aws/models/elb/model_tests.rb +33 -1
  213. data/tests/aws/models/rds/instance_option_tests.rb +14 -0
  214. data/tests/aws/parsers/elb/describe_load_balancers.rb +65 -0
  215. data/tests/aws/requests/compute/client_tests.rb +25 -0
  216. data/tests/aws/requests/elb/helper.rb +2 -1
  217. data/tests/aws/requests/elb/listener_tests.rb +1 -1
  218. data/tests/aws/requests/elb/load_balancer_tests.rb +5 -1
  219. data/tests/aws/requests/elb/policy_tests.rb +85 -6
  220. data/tests/aws/requests/iam/helper.rb +4 -1
  221. data/tests/aws/requests/iam/server_certificate_tests.rb +2 -2
  222. data/tests/aws/requests/rds/helper.rb +22 -0
  223. data/tests/aws/requests/rds/instance_option_tests.rb +21 -0
  224. data/tests/core/credential_tests.rb +21 -0
  225. data/tests/core/mocking_tests.rb +15 -0
  226. data/tests/core/service_tests.rb +26 -0
  227. data/tests/digitalocean/helper.rb +23 -16
  228. data/tests/digitalocean/models/compute/flavor_tests.rb +2 -2
  229. data/tests/digitalocean/models/compute/image_tests.rb +2 -2
  230. data/tests/digitalocean/models/compute/region_tests.rb +2 -2
  231. data/tests/digitalocean/models/compute/server_tests.rb +11 -3
  232. data/tests/digitalocean/models/compute/servers_tests.rb +14 -28
  233. data/tests/digitalocean/models/compute/ssh_key_tests.rb +7 -3
  234. data/tests/digitalocean/models/compute/ssh_keys_tests.rb +5 -1
  235. data/tests/digitalocean/requests/compute/create_server_tests.rb +3 -6
  236. data/tests/digitalocean/requests/compute/destroy_server_tests.rb +1 -2
  237. data/tests/digitalocean/requests/compute/get_server_details_tests.rb +1 -1
  238. data/tests/digitalocean/requests/compute/get_ssh_key_tests.rb +4 -1
  239. data/tests/digitalocean/requests/compute/list_ssh_keys_tests.rb +5 -2
  240. data/tests/dnsimple/requests/dns/dns_tests.rb +30 -26
  241. data/tests/helper.rb +2 -2
  242. data/tests/helpers/collection_helper.rb +4 -4
  243. data/tests/helpers/mock_helper.rb +2 -0
  244. data/tests/openstack/authenticate_tests.rb +22 -0
  245. data/tests/openstack/requests/compute/flavor_tests.rb +27 -12
  246. data/tests/openstack/requests/compute/volume_tests.rb +10 -12
  247. data/tests/openstack/requests/image/image_tests.rb +30 -15
  248. data/tests/openstack/requests/network/quota_tests.rb +65 -0
  249. data/tests/openstack/requests/storage/object_tests.rb +27 -2
  250. data/tests/rackspace/block_storage_tests.rb +2 -1
  251. data/tests/rackspace/cdn_tests.rb +9 -0
  252. data/tests/rackspace/compute_v2_tests.rb +16 -15
  253. data/tests/rackspace/databases_tests.rb +1 -1
  254. data/tests/rackspace/load_balancer_tests.rb +1 -1
  255. data/tests/rackspace/models/compute_v2/keypairs_tests.rb +47 -0
  256. data/tests/rackspace/models/identity/service_catalog_tests.rb +54 -29
  257. data/tests/rackspace/models/monitoring/agent_token_tests.rb +9 -0
  258. data/tests/rackspace/models/monitoring/agent_tokens_tests.rb +9 -0
  259. data/tests/rackspace/models/monitoring/alarm_example_tests.rb +18 -0
  260. data/tests/rackspace/models/monitoring/alarm_examples_tests.rb +19 -0
  261. data/tests/rackspace/models/monitoring/alarm_tests.rb +56 -0
  262. data/tests/rackspace/models/monitoring/alarms_tests.rb +25 -0
  263. data/tests/rackspace/models/monitoring/check_tests.rb +50 -0
  264. data/tests/rackspace/models/monitoring/check_types_tests.rb +14 -0
  265. data/tests/rackspace/models/monitoring/checks_tests.rb +16 -0
  266. data/tests/rackspace/models/monitoring/data_points_tests.rb +19 -0
  267. data/tests/rackspace/models/monitoring/entities_tests.rb +14 -0
  268. data/tests/rackspace/models/monitoring/entity_tests.rb +26 -0
  269. data/tests/rackspace/models/monitoring/metric_tests.rb +19 -0
  270. data/tests/rackspace/models/monitoring/metrics_tests.rb +17 -0
  271. data/tests/rackspace/monitoring_tests.rb +72 -0
  272. data/tests/rackspace/requests/compute_v2/keypair_tests.rb +55 -0
  273. data/tests/rackspace/requests/monitoring/agent_tests.rb +34 -0
  274. data/tests/rackspace/requests/monitoring/alarm_example_tests.rb +30 -0
  275. data/tests/rackspace/requests/monitoring/alarm_tests.rb +55 -0
  276. data/tests/rackspace/requests/monitoring/check_tests.rb +40 -0
  277. data/tests/rackspace/requests/monitoring/entity_tests.rb +37 -0
  278. data/tests/rackspace/requests/monitoring/helper.rb +78 -0
  279. data/tests/rackspace/requests/monitoring/list_tests.rb +60 -0
  280. data/tests/vsphere/models/compute/server_tests.rb +1 -1
  281. data/tests/vsphere/requests/compute/list_virtual_machines_tests.rb +2 -2
  282. data/tests/vsphere/requests/compute/vm_clone_tests.rb +14 -8
  283. data/tests/xenserver/compute_tests.rb +5 -5
  284. data/tests/xenserver/models/compute/console_test.rb +35 -0
  285. data/tests/xenserver/models/compute/consoles_test.rb +19 -0
  286. data/tests/xenserver/models/compute/server_tests.rb +25 -18
  287. data/tests/xenserver/models/compute/servers_tests.rb +1 -0
  288. metadata +154 -3
data/.gitignore CHANGED
@@ -21,3 +21,4 @@ pkg
21
21
  spec/credentials.yml
22
22
  vendor/*
23
23
  tags
24
+ tests/digitalocean/fixtures/
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,299 @@
1
+ 1.15.0 08/16/2013 73c5497a16a5374b6bec2f533da872aee682a73a
2
+ ==========================================================
3
+
4
+ Stats! { 'collaborators' => 50, 'downloads' => 2932167, 'forks' => 891, 'open_issues' => 165, 'watchers' => 2679 }
5
+
6
+ MVP! Daniel Reichert
7
+
8
+ [AWS]
9
+ print out raw response string when DEBUG_RESPONSE env var is set. thanks Michael Hale
10
+
11
+ [AWS|ASG]
12
+ filtering for ASG Scaling Policies. thanks Blake Gentry
13
+ filtering for ASG Scaling Activities. thanks Blake Gentry
14
+ parse ScalingPolicy MinAdjustmentStep. thanks Blake Gentry
15
+ filtering for ASGs. thanks Blake Gentry
16
+ filter mocked results for describe_auto_scaling_groups. thanks Blake Gentry
17
+ filter mocked results for describe_auto_scaling_policies. thanks Blake Gentry
18
+
19
+ [AWS|ELB]
20
+ add ProxyProtocolPolicyType (and formatting). thanks Michael Hale
21
+ add set_load_balancer_policies_for_backend_server request. thanks Michael Hale
22
+ add support for seeing backend server descriptions. thanks Michael Hale
23
+ add support for OtherPolicies. thanks Michael Hale
24
+ fix InstancePort parsing in describe_load_balancers. thanks Michael Hale
25
+ load_balancer_tests cleanup cert from potentially failed previous test run. thanks Michael Hale
26
+ test describe_load_balancers parser directly. thanks Michael Hale
27
+ emulate AWS behavior: no BackendServerDescriptions by default. thanks Michael Hale
28
+ fix set_load_balancer_polices_for_backend mock to track set BackgroundServerDescriptions. thanks Michael Hale
29
+ update helper to include BackendServerDescriptions and OtherPolicies. thanks Michael Hale
30
+ fix backend server descriptions model test. Reload the elb to pickup the latest descriptions. thanks Michael Hale
31
+ mocks emulate AWS behavior when setting a policy for the backend server a subsequent describe is required to update the local state with the current BackendServerDescriptions. thanks Michael Hale
32
+ fix PolicyTypeNotFound error in create_load_balancer_policy mock. thanks Michael Hale
33
+ policy model and collection support creating and showing OtherPolicies. thanks Michael Hale
34
+ fetch policy descriptions for elb.policies model call. thanks Michael Hale
35
+ actually check PublicKey. thanks Michael Hale
36
+ use ['Policies']['Proper'] as the canonical mock policy store. thanks Michael Hale
37
+ remove unused bits. thanks Michael Hale
38
+ check the result of describe_load_balancer_polices for each policy by name. thanks Michael Hale
39
+ test that describe_load_balancers mocks properly formats policy results. thanks Michael Hale
40
+ restore policy.cookie and policy.expiration methods. thanks Michael Hale
41
+
42
+ [Brightbox]
43
+ Fixes service deprecations. thanks Paul Thornthwaite
44
+ Updates to collaboration models. thanks Paul Thornthwaite
45
+
46
+ [Cloudstack|Compute]
47
+ Add support for keypair and userdata when creating cloudstack vms. thanks Christophe Roux
48
+
49
+ [Vcloud]
50
+ Adding case insensitivity for set-cookie header. thanks Garima Singh
51
+
52
+ [aws|elb]
53
+ add new style default security group. thanks Eugene Howe
54
+
55
+ [aws|iam]
56
+ Make mock EntityAlreadyExists message match reality. thanks Dan Peterson
57
+
58
+ [core]
59
+ excluded :headers hash from symbolize_credentials in order to properly pass headers onto Excon. thanks Kyle Rames
60
+ exclude :headers from symbolization for real this time; added better tests; Thanks @burns!. thanks Kyle Rames
61
+
62
+ [glesys]
63
+ added options to resuse ip and/or ipv6 and description. thanks Andreas Josephson
64
+
65
+ [google]
66
+ Add support for network and external_ip. thanks Romain Vrignaud
67
+ client.images doesn't list google public images. thanks Romain Vrignaud
68
+ Add support for network and external_ip. thanks Romain Vrignaud
69
+
70
+ [google-compute-engine]
71
+ Add private_ip_address method for server. thanks Romain Vrignaud
72
+
73
+ [google|compute]
74
+ Fix insert disk to deal with changes to insert image. thanks Nat Welch
75
+ servers.get don't catch errors. thanks Romain Vrignaud
76
+ disks.all shouldn't return nil. thanks Romain Vrignaud
77
+ fix typo on disk example. thanks Romain Vrignaud
78
+ zone in disks.get is now optional. thanks Romain Vrignaud
79
+ better check on server.public_ip_address. thanks Romain Vrignaud
80
+
81
+ [misc]
82
+ Accept public_key and public_key_path when creating GCE server. thanks Akshay Moghe
83
+ Query global projects when get/list'ing compute images. thanks Akshay Moghe
84
+ Allow users to create images in GCE. thanks Akshay Moghe
85
+ Add 'status' attribute to GCE images. thanks Akshay Moghe
86
+ When 'insert'ing a disk, don't try to create an image. thanks Akshay Moghe
87
+ Add ability to get/list snapshots in GCE. thanks Akshay Moghe
88
+ Align the disk interface more closely with the API. thanks Akshay Moghe
89
+ Fix up the 'disk' api. thanks Akshay Moghe
90
+ Rackspace: add keypair support. thanks Bart Vercammen
91
+ AWS: remove logging. thanks Bart Vercammen
92
+ rackspace keypairs: add some Mocks. thanks Bart Vercammen
93
+ rename function 'get_key' => 'get_keypair'. thanks Bart Vercammen
94
+ Rackspace: add keypair support. thanks Bart Vercammen
95
+ rackspace keypairs: add some Mocks. thanks Bart Vercammen
96
+ rename function 'get_key' => 'get_keypair'. thanks Bart Vercammen
97
+ rackspace: create_server - API change: options[:keypair] takes String i.s.o. Hash (-> the keypair name). thanks Bart Vercammen
98
+ rackspace: keypairs - add unit tests. thanks Bart Vercammen
99
+ rackspace:keypairs - add 'model' unit tests. thanks Bart Vercammen
100
+ rackspace:kaypair - small corrections during unit test. thanks Bart Vercammen
101
+ rackspace: keypairs - throw Fog::Compute::RackspaceV2::NotFound when HTTP:404 received. thanks Bart Vercammen
102
+ rackspace: keypairs - additional unittests + correct keypairs.destroy behaviour. thanks Bart Vercammen
103
+ rackspace - keypairs : redo exception/no-exception logic for ::destroy and ::get functions. thanks Bart Vercammen
104
+ rackspace: keypairs - add documentation. thanks Bart Vercammen
105
+ Protect against missing fields in rackspace endpoint documents. thanks Brendan Fosberry
106
+ Added rackspace monitoring with correct namespace. thanks Daniel Reichert
107
+ Fixed file path to adhere to fog mainline. thanks Daniel Reichert
108
+ Fixing namespace transition issue. thanks Daniel Reichert
109
+ Adding monitoring tests and their required changes. thanks Daniel Reichert
110
+ Now catching errors correctly, all tests succeed. thanks Daniel Reichert
111
+ Catching errors correctly, all tests succeed. thanks Daniel Reichert
112
+ Adding progress on check tests. thanks Daniel Reichert
113
+ Cleaned up tests, removed ternary operators. thanks Daniel Reichert
114
+ Check tests now working, dns info required to run. thanks Daniel Reichert
115
+ Switched check from dns to http remote request. thanks Daniel Reichert
116
+ Added list tests, helper formats. Cleaned check_tests. thanks Daniel Reichert
117
+ Consolidated list tests, added alarm tests. thanks Daniel Reichert
118
+ Added alarm list and alarm get tests. thanks Daniel Reichert
119
+ Removed unneeded testing group. thanks Daniel Reichert
120
+ Adding alarm example list, get, and evaluate tests. thanks Daniel Reichert
121
+ Adding agent tests. thanks Daniel Reichert
122
+ Adding list data points tests. thanks Daniel Reichert
123
+ Removed redundant test from comments. thanks Daniel Reichert
124
+ Added rackspace monitoring with correct namespace. thanks Daniel Reichert
125
+ Fixed file path to adhere to fog mainline. thanks Daniel Reichert
126
+ Fixing namespace transition issue. thanks Daniel Reichert
127
+ Adding monitoring tests and their required changes. thanks Daniel Reichert
128
+ Now catching errors correctly, all tests succeed. thanks Daniel Reichert
129
+ Catching errors correctly, all tests succeed. thanks Daniel Reichert
130
+ Adding progress on check tests. thanks Daniel Reichert
131
+ Cleaned up tests, removed ternary operators. thanks Daniel Reichert
132
+ Check tests now working, dns info required to run. thanks Daniel Reichert
133
+ Switched check from dns to http remote request. thanks Daniel Reichert
134
+ Added list tests, helper formats. Cleaned check_tests. thanks Daniel Reichert
135
+ Consolidated list tests, added alarm tests. thanks Daniel Reichert
136
+ Added alarm list and alarm get tests. thanks Daniel Reichert
137
+ Removed unneeded testing group. thanks Daniel Reichert
138
+ Adding alarm example list, get, and evaluate tests. thanks Daniel Reichert
139
+ Adding delete agent token coverage of api. thanks Daniel Reichert
140
+ Adding test coverage of deleting agent tokens. thanks Daniel Reichert
141
+ Re-adding tests from rebase. thanks Daniel Reichert
142
+ Adding alarm delete coverage of API. thanks Daniel Reichert
143
+ Adding alarm delete test coverage. thanks Daniel Reichert
144
+ Forgot to add underscore for test groups. thanks Daniel Reichert
145
+ Removing bad Failure test. thanks Daniel Reichert
146
+ WIP: Adding get tests for checks. thanks Daniel Reichert
147
+ Completed: get_check tests now working. thanks Daniel Reichert
148
+ Completed: get_entity tests implemented and passing. thanks Daniel Reichert
149
+ Removing list_entites failure test. thanks Daniel Reichert
150
+ forgot to return test group to original value. thanks Daniel Reichert
151
+ Removing test group. thanks Daniel Reichert
152
+ add support for openstack network quota endpoints. thanks Evan Petrie
153
+ fixes #1434 : How to use vcloud fog services. thanks Garima Singh
154
+ Fixed an uninitialized constant error. thanks Hongbin Lu
155
+ Add request/parser for DescribeOperableDBInstanceOptions. thanks James Bence
156
+ Return boolean, not index of match. thanks James Bence
157
+ Add model, collection for instance_options. thanks James Bence
158
+ Use correct filters in RDS model instance_options 'all' method. thanks James Bence
159
+ Set up tests (and make them pass) for orderable_db_instance_options. thanks James Bence
160
+ Adjust number of items returned for test. thanks James Bence
161
+ Remove failure test; non-existent engine sometimes has options. thanks James Bence
162
+ add(rackspace monitoring): list notification plans. thanks Jay Faulkner
163
+ test(rackspace_monitoring): Add specific test group. thanks Jay Faulkner
164
+ tests(list_notification_plans): Added basic tests. thanks Jay Faulkner
165
+ fix(tests): ArgumentError + NoMethodError are const. thanks Jay Faulkner
166
+ migrate(auth -> v2): Authenticate via 2.0 API. thanks Jay Faulkner
167
+ fix(alarm_tests): Use npTechnicalContactsEmail. thanks Jay Faulkner
168
+ add(rackspace monitoring): list notification plans. thanks Jay Faulkner
169
+ test(rackspace_monitoring): Add specific test group. thanks Jay Faulkner
170
+ tests(list_notification_plans): Added basic tests. thanks Jay Faulkner
171
+ fix(tests): ArgumentError + NoMethodError are const. thanks Jay Faulkner
172
+ migrate(auth -> v2): Authenticate via 2.0 API. thanks Jay Faulkner
173
+ add(notice): Direct future developers to old repo. thanks Jay Faulkner
174
+ fix for token timeout on cdn. thanks Jon Holt
175
+ Tests for reauthentication in CDN. thanks Jon Holt
176
+ Allow to configure server#scp and server#ssh on the instance level. thanks Jonas Pfenniger
177
+ Fixes issue where Net::SSH would only use the "password" authentication method. thanks Jonas Pfenniger
178
+ add support for m3.xlarge and m3.2xlarge instance flavors. thanks Kevin McFadden
179
+ removing coveralls support for Ruby 1.9.2 in hopes of fixing #1921. thanks Kyle Rames
180
+ removing coveralls support for Ruby 1.9.2 in hopes of fixing #1921 take two. thanks Kyle Rames
181
+ try 3 in removing coveralls for ruby 1.9.2. thanks Kyle Rames
182
+ trying to disable coveralls. thanks Kyle Rames
183
+ rebasing with master. thanks Kyle Rames
184
+ updating monitoring service to recognize rackspace_region. thanks Kyle Rames
185
+ trying one more times to disable coveralls on 1.9.2. thanks Kyle Rames
186
+ Adds light documentation for GCE and GCS. thanks Nat Welch
187
+ A set of smoke tests for GCE. thanks Nat Welch
188
+ fix some small bugs in the gce smoke tests. thanks Nat Welch
189
+ some more small bugs in the GCE examples. thanks Nat Welch
190
+ Be alittle more specific in the footer of Google Readme. thanks Nat Welch
191
+ Make public_url function easier to read and change acl request to deal with nokogiri changes. thanks Nat Welch
192
+ Examples tweak. thanks Nat Welch
193
+ remove networks. thanks Nat Welch
194
+ Fix some issues with GCE examples and disk requests. thanks Nat Welch
195
+ Fix comments in Google snapshot example. thanks Nat Welch
196
+ Renamed Fog::AWS::SES::Real#verify_domain to #verify_domain_identity. thanks Postmodern
197
+ Fix all in Fog::Compute::Servers. thanks Romain Vrignaud
198
+ Fix Fog::Compute::Google::Flavor all method. thanks Romain Vrignaud
199
+ Add a parameter to servers.all for rackspace v2 to make it the same as other providers. thanks Sam Kottler
200
+ Remove whitespace from the Rackspace V2 test. thanks Sam Kottler
201
+ Fix #server so that it returns the right server instead of all servers. thanks Shay Bergmann
202
+ Changing the non-ascii dash in the url. thanks Steve Frank
203
+ use params instead of prep. thanks Thomas Cate
204
+ Add VPC security groups to the RDS instances. thanks Timur Alperovich
205
+ [aws|rds]: PubliclyAccessible is boolean. thanks Timur Alperovich
206
+ remove dependency on active_support's present? method. thanks Toby Hede
207
+ Cleanup and refactor digitalocean integration. thanks Trae Robrock
208
+ Whitespace. thanks Trae Robrock
209
+ Whitespace, fix tests for running in non mock mode, and clean up in non mock mode. thanks Trae Robrock
210
+ digitalocean supports bootstrap. thanks Trae Robrock
211
+ Fix digitalocean server test. thanks Trae Robrock
212
+ Add digitalocean mock key to run these tests on travis. thanks Trae Robrock
213
+ Add ip_address to the mock. thanks Trae Robrock
214
+ Remove mock server from servers list on destroy. thanks Trae Robrock
215
+ Adding exception from net-ssh 2.6 that occurs during bootstrap as sshd is just starting up. thanks Trae Robrock
216
+ Add mock for dnsimple and fix tests for non mock mode. thanks Trae Robrock
217
+ Add mock and test for get_record. thanks Trae Robrock
218
+ Correct record creation response. thanks Trae Robrock
219
+ Return a 404 if the domain does no exist. thanks Trae Robrock
220
+ Add proper error message to 404. thanks Trae Robrock
221
+ handle zone with no records. thanks Trae Robrock
222
+ Handle missing record case. thanks Trae Robrock
223
+ Use the zone id for record creation. thanks Trae Robrock
224
+ Fix mock for creation by id. thanks Trae Robrock
225
+ Use the id for deletion also. thanks Trae Robrock
226
+ Use id for record update. thanks Trae Robrock
227
+ Add ip_address method back, but deprecate it. thanks Trae Robrock
228
+ Allow v1 auth for OpenStack. thanks Yauheni Kryudziuk
229
+ fix inner/outer variable shadowing. thanks geemus
230
+ random ip address support. thanks mlincoln
231
+ lib/fog/cloudstack/models/compute/servers.rb must check for nil before checking for empty. thanks torake.fransson
232
+
233
+ [openstack|compute]
234
+ update volume tests. thanks Brian D. Burns
235
+ update flavor tests. thanks Brian D. Burns
236
+
237
+ [openstack|image]
238
+ strip unused headers in #update_image. thanks Brian D. Burns
239
+
240
+ [openstack|storage]
241
+ put_object with request_block can not be idempotent. thanks Brian D. Burns
242
+ added the ability to upload files using blocks in the same manner as the Rackspace provider. thanks Kyle Rames
243
+ updating object tests to support ruby 1.8.7. thanks Kyle Rames
244
+ Added temporary signed URL support. thanks Yauheni Kryudziuk
245
+
246
+ [rackspace]
247
+ refined authentication endpoint tests. thanks Kyle Rames
248
+ updated exceptions to include the service transaction id if available. thanks Kyle Rames
249
+ added transaction id to monitoring exceptions; passing service into slurp for compute, databases, dns and load balancers. thanks Kyle Rames
250
+ fixing broken tests. thanks Kyle Rames
251
+
252
+ [rackspace|compute_v2]
253
+ renaming keypairs to key_pairs to match other compute implementations. thanks Kyle Rames
254
+
255
+ [rackspace|identity]
256
+ added error handling to make service catalog more robust. thanks Kyle Rames
257
+ fixing broken service catalog test. thanks Kyle Rames
258
+
259
+ [rackspace|monitoring]
260
+ WIP initial commit of alarm example tests. thanks Daniel Reichert
261
+ Adding alarm examples tests. thanks Daniel Reichert
262
+ Adding alarm example tests. thanks Daniel Reichert
263
+ WIP Initial commit of alarm tests. thanks Daniel Reichert
264
+ Adding alarm example(s) tests. thanks Daniel Reichert
265
+ Adding working alarm tests. thanks Daniel Reichert
266
+ Adding support required for tests to pass. thanks Daniel Reichert
267
+ Correcting entity destroy logic. thanks Daniel Reichert
268
+ Fixing entity destroy logic. thanks Daniel Reichert
269
+ Addding Alarms and Check-Types tests. thanks Daniel Reichert
270
+ Adding mocks pending indication. thanks Daniel Reichert
271
+ Update Alarm bug fixed, uncommenting test. thanks Daniel Reichert
272
+ updating to re-authenticate token on expiration; adding monitoring authentication tests. thanks Kyle Rames
273
+ updating to use fog conventions. thanks Kyle Rames
274
+ adding model tests for agent_token, check, and entity; added destroy method to agent_token and check models; updated models to retrieve identity from header value 'X-Object-ID'; updated check model to take an entity object or id. thanks Kyle Rames
275
+ removing bad test per @irdan. thanks Kyle Rames
276
+ adding model tests for metrics and data points. thanks Kyle Rames
277
+ updated monitoring tests to skip sleeping if we are running in mocked mode. thanks Kyle Rames
278
+ fixing broken monitoring test. thanks Kyle Rames
279
+ replaced entity_id and check_id attributes with entity and check attributes; removed entity_id from base module. thanks Kyle Rames
280
+
281
+ [rackspace|storage]
282
+ put_object with request_block can not be idempotent. thanks Brian D. Burns
283
+
284
+ [vsphere]
285
+ Raise NotFound exception when Datacenter or Template is not found. thanks Carlos Sanchez
286
+ Make mock data consistent across operations. thanks Carlos Sanchez
287
+ searchIndex.FindByUuid datacenter parameter must be a RbVmomi::VIM::Datacenter. thanks Carlos Sanchez
288
+ Need to turn off vm and wait until off before destroying. thanks Carlos Sanchez
289
+ Fix NoMethodError: undefined method in list_virtual_machines. thanks Carlos Sanchez
290
+
291
+ [xenserver]
292
+ Added support to get VM by uuid. thanks Celso Fernandes
293
+ Console model created. thanks Gustavo Villalta
294
+ Consoles collection created. thanks Gustavo Villalta
295
+
296
+
1
297
  1.14.0 07/19/2013 b9f1659ebd45c84db011c71b53cc581a1b7ac7e1
2
298
  ==========================================================
3
299
 
@@ -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 = 'fog'
9
- s.version = '1.14.0'
10
- s.date = '2013-07-19'
9
+ s.version = '1.15.0'
10
+ s.date = '2013-08-16'
11
11
  s.rubyforge_project = 'fog'
12
12
 
13
13
  ## Make sure your summary is short. The description may be as long
@@ -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"
@@ -80,6 +80,7 @@ module Fog
80
80
  request :delete_volume
81
81
  request :delete_vpc
82
82
  request :deregister_image
83
+ request :describe_account_attributes
83
84
  request :describe_addresses
84
85
  request :describe_availability_zones
85
86
  request :describe_dhcp_options
@@ -192,7 +193,15 @@ module Fog
192
193
  }
193
194
  ],
194
195
  'ownerId' => owner_id
195
- }
196
+ },
197
+ 'amazon-elb-sg' => {
198
+ 'groupDescription' => 'amazon-elb-sg',
199
+ 'groupName' => 'amazon-elb-sg',
200
+ 'groupId' => 'amazon-elb',
201
+ 'ownerId' => 'amazon-elb',
202
+ 'ipPermissionsEgree' => [],
203
+ 'ipPermissions' => [],
204
+ },
196
205
  },
197
206
  :network_interfaces => {},
198
207
  :snapshots => {},
@@ -205,7 +214,33 @@ module Fog
205
214
  :subnets => [],
206
215
  :vpcs => [],
207
216
  :dhcp_options => [],
208
- :internet_gateways => []
217
+ :internet_gateways => [],
218
+ :account_attributes => [
219
+ {
220
+ "values" => ["5"],
221
+ "attributeName" => "vpc-max-security-groups-per-interface"
222
+ },
223
+ {
224
+ "values" => ["20"],
225
+ "attributeName" => "max-instances"
226
+ },
227
+ {
228
+ "values" => ["EC2", "VPC"],
229
+ "attributeName" => "supported-platforms"
230
+ },
231
+ {
232
+ "values" => ["none"],
233
+ "attributeName" => "default-vpc"
234
+ },
235
+ {
236
+ "values" => ["5"],
237
+ "attributeName" => "max-elastic-ips"
238
+ },
239
+ {
240
+ "values" => ["5"],
241
+ "attributeName" => "vpc-max-elastic-ips"
242
+ }
243
+ ]
209
244
  }
210
245
  end
211
246
  end
@@ -256,6 +291,11 @@ module Fog
256
291
  images
257
292
  end
258
293
 
294
+ def ec2_compatibility_mode(enabled=true)
295
+ values = enabled ? ["EC2", "VPC"] : ["VPC"]
296
+ self.data[:account_attributes].detect { |h| h["attributeName"] == "supported-platforms" }["values"] = values
297
+ end
298
+
259
299
  def apply_tag_filters(resources, filters, resource_id_key)
260
300
  tag_set_fetcher = lambda {|resource| self.data[:tag_sets][resource[resource_id_key]] }
261
301
 
@@ -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