stuartpreston-azure-sdk-for-ruby 0.6.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.travis.yml +10 -0
- data/ChangeLog.txt +40 -0
- data/Gemfile +16 -0
- data/README.md +616 -0
- data/Rakefile +133 -0
- data/azure.gemspec +44 -0
- data/lib/azure.rb +52 -0
- data/lib/azure/base_management/affinity_group.rb +32 -0
- data/lib/azure/base_management/base_management_service.rb +234 -0
- data/lib/azure/base_management/location.rb +27 -0
- data/lib/azure/base_management/management_http_request.rb +172 -0
- data/lib/azure/base_management/serialization.rb +129 -0
- data/lib/azure/base_management/sql_management_http_request.rb +45 -0
- data/lib/azure/blob/blob.rb +32 -0
- data/lib/azure/blob/blob_service.rb +1423 -0
- data/lib/azure/blob/block.rb +31 -0
- data/lib/azure/blob/container.rb +32 -0
- data/lib/azure/blob/serialization.rb +285 -0
- data/lib/azure/cloud_service_management/cloud_service.rb +38 -0
- data/lib/azure/cloud_service_management/cloud_service_management_service.rb +140 -0
- data/lib/azure/cloud_service_management/serialization.rb +117 -0
- data/lib/azure/core.rb +39 -0
- data/lib/azure/core/auth/authorizer.rb +36 -0
- data/lib/azure/core/auth/shared_key.rb +110 -0
- data/lib/azure/core/auth/shared_key_lite.rb +48 -0
- data/lib/azure/core/auth/signer.rb +48 -0
- data/lib/azure/core/configuration.rb +211 -0
- data/lib/azure/core/error.rb +22 -0
- data/lib/azure/core/filtered_service.rb +44 -0
- data/lib/azure/core/http/debug_filter.rb +36 -0
- data/lib/azure/core/http/http_error.rb +88 -0
- data/lib/azure/core/http/http_filter.rb +53 -0
- data/lib/azure/core/http/http_request.rb +157 -0
- data/lib/azure/core/http/http_response.rb +140 -0
- data/lib/azure/core/http/retry_policy.rb +74 -0
- data/lib/azure/core/http/signer_filter.rb +34 -0
- data/lib/azure/core/service.rb +63 -0
- data/lib/azure/core/signed_service.rb +43 -0
- data/lib/azure/core/utility.rb +190 -0
- data/lib/azure/queue/message.rb +30 -0
- data/lib/azure/queue/queue.rb +29 -0
- data/lib/azure/queue/queue_service.rb +568 -0
- data/lib/azure/queue/serialization.rb +106 -0
- data/lib/azure/service/access_policy.rb +26 -0
- data/lib/azure/service/cors.rb +11 -0
- data/lib/azure/service/cors_rule.rb +15 -0
- data/lib/azure/service/enumeration_results.rb +21 -0
- data/lib/azure/service/logging.rb +32 -0
- data/lib/azure/service/metrics.rb +31 -0
- data/lib/azure/service/retention_policy.rb +25 -0
- data/lib/azure/service/serialization.rb +298 -0
- data/lib/azure/service/signed_identifier.rb +30 -0
- data/lib/azure/service/storage_service.rb +83 -0
- data/lib/azure/service/storage_service_properties.rb +37 -0
- data/lib/azure/service_bus/action.rb +21 -0
- data/lib/azure/service_bus/auth/wrap_service.rb +89 -0
- data/lib/azure/service_bus/auth/wrap_signer.rb +69 -0
- data/lib/azure/service_bus/brokered_message.rb +124 -0
- data/lib/azure/service_bus/brokered_message_serializer.rb +159 -0
- data/lib/azure/service_bus/correlation_filter.rb +45 -0
- data/lib/azure/service_bus/empty_rule_action.rb +30 -0
- data/lib/azure/service_bus/false_filter.rb +38 -0
- data/lib/azure/service_bus/filter.rb +21 -0
- data/lib/azure/service_bus/interval.rb +104 -0
- data/lib/azure/service_bus/queue.rb +230 -0
- data/lib/azure/service_bus/relay.rb +88 -0
- data/lib/azure/service_bus/resource.rb +109 -0
- data/lib/azure/service_bus/rule.rb +98 -0
- data/lib/azure/service_bus/rule_aspect.rb +34 -0
- data/lib/azure/service_bus/serialization.rb +161 -0
- data/lib/azure/service_bus/service_bus_service.rb +897 -0
- data/lib/azure/service_bus/sql_filter.rb +50 -0
- data/lib/azure/service_bus/sql_rule_action.rb +50 -0
- data/lib/azure/service_bus/subscription.rb +184 -0
- data/lib/azure/service_bus/topic.rb +187 -0
- data/lib/azure/service_bus/true_filter.rb +38 -0
- data/lib/azure/sql_database_management/serialization.rb +111 -0
- data/lib/azure/sql_database_management/sql_database.rb +31 -0
- data/lib/azure/sql_database_management/sql_database_management_service.rb +200 -0
- data/lib/azure/storage_management/serialization.rb +184 -0
- data/lib/azure/storage_management/storage_account.rb +40 -0
- data/lib/azure/storage_management/storage_management_service.rb +166 -0
- data/lib/azure/table/auth/shared_key.rb +92 -0
- data/lib/azure/table/auth/shared_key_lite.rb +44 -0
- data/lib/azure/table/batch.rb +330 -0
- data/lib/azure/table/batch_response.rb +118 -0
- data/lib/azure/table/edmtype.rb +127 -0
- data/lib/azure/table/entity.rb +31 -0
- data/lib/azure/table/guid.rb +24 -0
- data/lib/azure/table/query.rb +112 -0
- data/lib/azure/table/serialization.rb +108 -0
- data/lib/azure/table/table_service.rb +560 -0
- data/lib/azure/version.rb +31 -0
- data/lib/azure/virtual_machine_image_management/serialization.rb +66 -0
- data/lib/azure/virtual_machine_image_management/virtual_machine_disk.rb +25 -0
- data/lib/azure/virtual_machine_image_management/virtual_machine_image.rb +25 -0
- data/lib/azure/virtual_machine_image_management/virtual_machine_image_management_service.rb +94 -0
- data/lib/azure/virtual_machine_management/serialization.rb +463 -0
- data/lib/azure/virtual_machine_management/virtual_machine.rb +45 -0
- data/lib/azure/virtual_machine_management/virtual_machine_management_service.rb +589 -0
- data/lib/azure/virtual_network_management/serialization.rb +186 -0
- data/lib/azure/virtual_network_management/virtual_network.rb +36 -0
- data/lib/azure/virtual_network_management/virtual_network_management_service.rb +109 -0
- data/test/fixtures/32px-fulls-black.jpg +0 -0
- data/test/fixtures/affinity_group.xml +33 -0
- data/test/fixtures/all_containers.xml +20 -0
- data/test/fixtures/all_tables.xml +22 -0
- data/test/fixtures/certificate.pem +21 -0
- data/test/fixtures/container_acl.xml +11 -0
- data/test/fixtures/create_sql_database_server.xml +2 -0
- data/test/fixtures/create_storage_desc_error.xml +5 -0
- data/test/fixtures/create_storage_extendedprop_error.xml +8 -0
- data/test/fixtures/create_storage_extendedpropname_error.xml +6 -0
- data/test/fixtures/create_storage_full_error.xml +6 -0
- data/test/fixtures/create_storage_label_error.xml +5 -0
- data/test/fixtures/create_storage_location_error.xml +5 -0
- data/test/fixtures/create_storage_name_error.xml +6 -0
- data/test/fixtures/create_table_response_entry.xml +15 -0
- data/test/fixtures/delete_storage_container_error.xml +5 -0
- data/test/fixtures/delete_storage_error.xml +5 -0
- data/test/fixtures/deployment_error.xml +5 -0
- data/test/fixtures/empty_xml_file +0 -0
- data/test/fixtures/get_storage_account_error.xml +5 -0
- data/test/fixtures/get_storage_account_properties.xml +32 -0
- data/test/fixtures/get_storage_account_properties_new.xml +32 -0
- data/test/fixtures/http_error.xml +5 -0
- data/test/fixtures/insert_entity_response_entry.xml +25 -0
- data/test/fixtures/list_affinity_groups.xml +22 -0
- data/test/fixtures/list_blobs.xml +121 -0
- data/test/fixtures/list_block_all_with_none_committed.xml +22 -0
- data/test/fixtures/list_blocks_all.xml +23 -0
- data/test/fixtures/list_blocks_committed.xml +13 -0
- data/test/fixtures/list_cloud_services.xml +39 -0
- data/test/fixtures/list_containers.xml +38 -0
- data/test/fixtures/list_firewall_management_endpoint.xml +27 -0
- data/test/fixtures/list_images.xml +110 -0
- data/test/fixtures/list_locations.xml +62 -0
- data/test/fixtures/list_page_ranges.xml +11 -0
- data/test/fixtures/list_sql_database.xml +36 -0
- data/test/fixtures/list_sql_server_firewall.xml +23 -0
- data/test/fixtures/list_storage_account_single.xml +25 -0
- data/test/fixtures/list_storage_accounts.xml +46 -0
- data/test/fixtures/list_virtual_networks.xml +92 -0
- data/test/fixtures/logging.xml +11 -0
- data/test/fixtures/management_certificate.pem +55 -0
- data/test/fixtures/messages.xml +12 -0
- data/test/fixtures/metrics.xml +10 -0
- data/test/fixtures/privatekey.key +28 -0
- data/test/fixtures/query_entities_empty_response.xml +7 -0
- data/test/fixtures/query_entities_response.xml +45 -0
- data/test/fixtures/queue_service_properties.xml +22 -0
- data/test/fixtures/queue_service_properties_original.xml +19 -0
- data/test/fixtures/queues.xml +16 -0
- data/test/fixtures/retention_policy.xml +5 -0
- data/test/fixtures/sb_default_create_queue_response.xml +23 -0
- data/test/fixtures/sb_default_create_relay_response.xml +15 -0
- data/test/fixtures/sb_default_create_topic_response.xml +18 -0
- data/test/fixtures/sb_get_access_token_response.txt +1 -0
- data/test/fixtures/sb_queues_runtime_peek_message_response_headers.txt +9 -0
- data/test/fixtures/storage_service_properties.xml +54 -0
- data/test/fixtures/update_storage_account.xml +16 -0
- data/test/fixtures/update_storage_error.xml +5 -0
- data/test/fixtures/updated_storage_accounts.xml +53 -0
- data/test/fixtures/virtual_machine.xml +113 -0
- data/test/fixtures/windows_virtual_machine.xml +106 -0
- data/test/integration/affinity_group/Affinity_test.rb +55 -0
- data/test/integration/affinity_group/Create_Affinity_test.rb +63 -0
- data/test/integration/affinity_group/Delete_Affinity_test.rb +56 -0
- data/test/integration/affinity_group/List_Affinity_test.rb +41 -0
- data/test/integration/affinity_group/Update_Affinity_test.rb +82 -0
- data/test/integration/blob/blob_gb18030_test.rb +199 -0
- data/test/integration/blob/blob_metadata_test.rb +75 -0
- data/test/integration/blob/blob_pages_test.rb +119 -0
- data/test/integration/blob/blob_properties_test.rb +77 -0
- data/test/integration/blob/block_blob_test.rb +254 -0
- data/test/integration/blob/container/container_acl_test.rb +69 -0
- data/test/integration/blob/container/container_metadata_test.rb +50 -0
- data/test/integration/blob/container/create_container_test.rb +60 -0
- data/test/integration/blob/container/delete_container_test.rb +39 -0
- data/test/integration/blob/container/get_container_properties_test.rb +48 -0
- data/test/integration/blob/container/list_containers_test.rb +79 -0
- data/test/integration/blob/container/root_container_test.rb +54 -0
- data/test/integration/blob/copy_blob_test.rb +113 -0
- data/test/integration/blob/create_blob_snapshot_test.rb +80 -0
- data/test/integration/blob/create_page_blob_test.rb +83 -0
- data/test/integration/blob/delete_blob_test.rb +159 -0
- data/test/integration/blob/get_blob_test.rb +65 -0
- data/test/integration/blob/informative_errors_test.rb +39 -0
- data/test/integration/blob/lease/acquire_lease_test.rb +36 -0
- data/test/integration/blob/lease/break_lease_test.rb +40 -0
- data/test/integration/blob/lease/release_lease_test.rb +40 -0
- data/test/integration/blob/lease/renew_lease_test.rb +42 -0
- data/test/integration/blob/list_blobs_test.rb +113 -0
- data/test/integration/cloud_service/Cloud_Create_test.rb +44 -0
- data/test/integration/cloud_service/Cloud_Delete_test.rb +44 -0
- data/test/integration/database/create_sql_server_firewall_test.rb +86 -0
- data/test/integration/database/create_sql_server_test.rb +53 -0
- data/test/integration/database/delete_sql_server_firewall_test.rb +70 -0
- data/test/integration/database/delete_sql_server_test.rb +58 -0
- data/test/integration/database/list_sql_server_firewall_test.rb +45 -0
- data/test/integration/database/list_sql_servers_test.rb +44 -0
- data/test/integration/database/reset_password_sql_server_test.rb +55 -0
- data/test/integration/location/Location_List_test.rb +39 -0
- data/test/integration/queue/clear_messages_test.rb +42 -0
- data/test/integration/queue/create_message_test.rb +75 -0
- data/test/integration/queue/create_queue_test.rb +50 -0
- data/test/integration/queue/delete_message_test.rb +67 -0
- data/test/integration/queue/delete_queue_test.rb +45 -0
- data/test/integration/queue/informative_errors_test.rb +42 -0
- data/test/integration/queue/list_messages_encoded_test.rb +79 -0
- data/test/integration/queue/list_messages_test.rb +79 -0
- data/test/integration/queue/list_queues_test.rb +44 -0
- data/test/integration/queue/peek_messages_test.rb +59 -0
- data/test/integration/queue/queue_gb18030_test.rb +131 -0
- data/test/integration/queue/queue_metadata_test.rb +40 -0
- data/test/integration/queue/update_message_test.rb +74 -0
- data/test/integration/service_bus/informative_errors_test.rb +37 -0
- data/test/integration/service_bus/queues_scenario_test.rb +200 -0
- data/test/integration/service_bus/queues_test.rb +266 -0
- data/test/integration/service_bus/relay_test.rb +132 -0
- data/test/integration/service_bus/rules_test.rb +145 -0
- data/test/integration/service_bus/sb_queue_gb18030_test.rb +182 -0
- data/test/integration/service_bus/scenario_test.rb +101 -0
- data/test/integration/service_bus/subscriptions_test.rb +211 -0
- data/test/integration/service_bus/topics_scenario_test.rb +406 -0
- data/test/integration/service_bus/topics_test.rb +129 -0
- data/test/integration/storage_management/storage_management_test.rb +160 -0
- data/test/integration/table/create_table_test.rb +36 -0
- data/test/integration/table/delete_entity_batch_test.rb +107 -0
- data/test/integration/table/delete_entity_test.rb +94 -0
- data/test/integration/table/delete_table_test.rb +40 -0
- data/test/integration/table/get_table_test.rb +37 -0
- data/test/integration/table/informative_errors_test.rb +39 -0
- data/test/integration/table/insert_entity_batch_test.rb +100 -0
- data/test/integration/table/insert_entity_test.rb +88 -0
- data/test/integration/table/insert_or_merge_entity_batch_test.rb +159 -0
- data/test/integration/table/insert_or_merge_entity_test.rb +143 -0
- data/test/integration/table/insert_or_replace_entity_batch_test.rb +152 -0
- data/test/integration/table/insert_or_replace_entity_test.rb +137 -0
- data/test/integration/table/merge_entity_batch_test.rb +128 -0
- data/test/integration/table/merge_entity_test.rb +113 -0
- data/test/integration/table/query_entities_test.rb +195 -0
- data/test/integration/table/query_tables_test.rb +43 -0
- data/test/integration/table/query_test.rb +251 -0
- data/test/integration/table/table_acl_test.rb +52 -0
- data/test/integration/table/table_gb18030_test.rb +355 -0
- data/test/integration/table/update_entity_batch_test.rb +149 -0
- data/test/integration/table/update_entity_test.rb +131 -0
- data/test/integration/test_helper.rb +42 -0
- data/test/integration/vm/VM_Create_test.rb +260 -0
- data/test/integration/vm/VM_Delete_test.rb +55 -0
- data/test/integration/vm/VM_Operations_test.rb +173 -0
- data/test/integration/vm_image/virtual_machine_disk_test.rb +37 -0
- data/test/integration/vm_image/virtual_machine_image_test.rb +37 -0
- data/test/integration/vnet/Virtual_Network_Create_test.rb +122 -0
- data/test/integration/vnet/Virtual_Network_list_test.rb +53 -0
- data/test/support/env.rb +19 -0
- data/test/support/fixtures.rb +36 -0
- data/test/support/name_generator.rb +168 -0
- data/test/support/stubs.rb +42 -0
- data/test/support/virtual_machine_name_generator.rb +102 -0
- data/test/support/virtual_network_helper.rb +73 -0
- data/test/test_helper.rb +54 -0
- data/test/unit/affinity_group/affinity_group_test.rb +192 -0
- data/test/unit/affinity_group/serialization_test.rb +88 -0
- data/test/unit/base_management/location_test.rb +57 -0
- data/test/unit/blob/blob_service_test.rb +1947 -0
- data/test/unit/cloud_service_management/cloud_service_management_service_test.rb +94 -0
- data/test/unit/cloud_service_management/serialization_test.rb +169 -0
- data/test/unit/core/auth/shared_key_lite_test.rb +51 -0
- data/test/unit/core/auth/shared_key_test.rb +58 -0
- data/test/unit/core/auth/signer_test.rb +30 -0
- data/test/unit/core/http/http_error_test.rb +57 -0
- data/test/unit/core/http/http_request_test.rb +66 -0
- data/test/unit/core/http/http_response_test.rb +45 -0
- data/test/unit/core/http/retry_policy_test.rb +23 -0
- data/test/unit/database/serialization_test.rb +97 -0
- data/test/unit/database/sql_database_server_service_test.rb +288 -0
- data/test/unit/service/serialization_test.rb +533 -0
- data/test/unit/service/storage_service_test.rb +293 -0
- data/test/unit/storage_management/serialization_test.rb +232 -0
- data/test/unit/storage_management/storage_management_service_test.rb +261 -0
- data/test/unit/table/edmtype_test.rb +108 -0
- data/test/unit/virtual_machine_image_management/serialization_test.rb +35 -0
- data/test/unit/virtual_machine_image_management/virtual_machine_image_management_service_test.rb +65 -0
- data/test/unit/virtual_machine_management/serialization_test.rb +258 -0
- data/test/unit/virtual_machine_management/virtual_machine_management_service_test.rb +440 -0
- data/test/unit/vnet/serialization_test.rb +187 -0
- data/test/unit/vnet/virtual_network_management_service_test.rb +131 -0
- metadata +476 -0
@@ -0,0 +1,55 @@
|
|
1
|
+
Bag Attributes
|
2
|
+
localKeyID: 01 00 00 00
|
3
|
+
friendlyName: {D4417DE0-CB19-4947-B5B4-DE6D7F72171D}
|
4
|
+
Microsoft CSP Name: Microsoft Software Key Storage Provider
|
5
|
+
Key Attributes: <No Attributes>
|
6
|
+
-----BEGIN PRIVATE KEY-----
|
7
|
+
MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDlVqp43jiBkO2M
|
8
|
+
YOpCqofHsFHaooZCmYSAxyZGyxQLPEc4Zvft0uzIdQy6QnzN+MQkQ8hWrL+BNp2S
|
9
|
+
NYPFIXY9HYz5BZBMomM/lTsZltLgJSQENE6jTomznCgRy4GNg0hkaGkuhSSbWmBC
|
10
|
+
jmlfJXkbZgfGuc5Lz8BZYPWO5hvP23XIRnVIW44oKcQfvkS80qyyzFNa0vdp3rov
|
11
|
+
WdKV3QfScDIgTr0FQDANYTYWBV/r4xnXndjLOxgVwU3Kp0WPUkCz3uloMRGWs974
|
12
|
+
bpWGwnOblJb4j0X7Q46rTZ4f4HGZlKbeRV/MtPcrZJ+V6ovQ9tz1sUbbCbn4ABag
|
13
|
+
m+6NCcqRAgMBAAECggEAHHRMidsOeTrlUke7AQL9/j9o5H7KOCyqdTzgSaPMLJmx
|
14
|
+
v3R9GeeT48osBlcV+4a8MMCtNF3SE+LWGYwkuXptnGcUdNglH3D9befi0Ym2R8Or
|
15
|
+
7I6d3CK0MJH1IcIVZJyviG+w7ynrURAdRdy8A6dXV5go6lXm296co3ZFeVGhDUCR
|
16
|
+
838zthk0Ltf347nLerhJUhJAIOX7Ct21xMOrbT5KfOVThgTxrZKmP29ORMoqnXN8
|
17
|
+
8SdpHsdqdNro8uSEARyG80g4ZZVPVqZqRLr+cX080lJ4p8GPf/nPOWGGrtGCCEgI
|
18
|
+
1FCX8aWH3PGOSLqo3boSiZfrLHT5BhJsXD/OXJZPzQKBgQD9vl+jiZSHPoo63/JO
|
19
|
+
uKS0kGos6ZZc4WvjXx6JBrtnsOdw9YBAPKEY9VYyKi3fnv1v1gIB65e9rfeF+PmI
|
20
|
+
KXKLwLcZWFRbaaB3xs3Bxo0Yn1tRRvANDAKR8Xfl77B06j2kKrPmfdEbmd3hHJqN
|
21
|
+
ZYG4hj+PR1SQ+0jvwSg7cPtwrQKBgQDnYLxxoejm+JrEVGebvKv3AWDshBN+91dX
|
22
|
+
iM4u5zke4qzocp0RYpjIjkUIb6Y/jwxscZmgetu9keDBAFCPU2ReTjFGmHZiip72
|
23
|
+
xxQLF2dxlqgcSzURW9SjbstB0LUyxbTwIYTTOavHBrvnkw9S4rgLVHTVWzzInWag
|
24
|
+
iw4lbfBp9QKBgC7KTS6F7zqlQK4sn6z+hXi6bKnNhSmpc9CguKvB7wrm5zbAPp8Z
|
25
|
+
zwcgLn3fo0fqNIfL6eDaxcd3bf5pc/I02meE6P6meB/HMY0Fe72w1FHnCNrK/vcY
|
26
|
+
8Nxir55Z/asBis5cBYKKTuYNEIozURij0DDrqIrON3zoqYF0l+umIOedAoGAYiTn
|
27
|
+
ai/qkeaMB5Fh7W6HZxvfmBOiDW4vT0MJal3MHey6uVK8iz5OXmvynlR1qWotM+av
|
28
|
+
6qGSigPR2Swf/9u4rEPwpOhQ9xWjvjvNpbLEvyrPnkjMdtOEC9sYPo+f/KxeRqmB
|
29
|
+
JPPGiIKzu9PmYRsoRC4L7OBplRMnEBxL4NaUbu0CgYEA2z7BuOzuE3QmxaNzbP7+
|
30
|
+
PWkRg0JEFksN/8bRo6fuVMaosEs4jZunCyPk0ne//p+dcKE8cInC9/jGJs5XutUi
|
31
|
+
L8KuTu3ljFOLE/y+8FHR/Hxpvzp8k6iDPl7mvvZJ7gt2aO9IZq3XHoRLbgSUPo2X
|
32
|
+
YlXoh+vo+SQVRQtbxpuk1gM=
|
33
|
+
-----END PRIVATE KEY-----
|
34
|
+
Bag Attributes
|
35
|
+
localKeyID: 01 00 00 00
|
36
|
+
friendlyName: Ruby SDK
|
37
|
+
subject=/CN=Windows Azure Tools
|
38
|
+
issuer=/CN=Windows Azure Tools
|
39
|
+
-----BEGIN CERTIFICATE-----
|
40
|
+
MIICxDCCAaygAwIBAgIQQ86pQDjNkolP6pILfxFhITANBgkqhkiG9w0BAQUFADAe
|
41
|
+
MRwwGgYDVQQDExNXaW5kb3dzIEF6dXJlIFRvb2xzMB4XDTEzMDUxNjA0NDgzNloX
|
42
|
+
DTE0MDUxNjA0NDgzNlowHjEcMBoGA1UEAxMTV2luZG93cyBBenVyZSBUb29sczCC
|
43
|
+
ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOVWqnjeOIGQ7Yxg6kKqh8ew
|
44
|
+
UdqihkKZhIDHJkbLFAs8Rzhm9+3S7Mh1DLpCfM34xCRDyFasv4E2nZJ1g8Uhdj0d
|
45
|
+
jPkFkEyiYz+VOxmW0uAlJCQ0TqNOibOcKBHLgY2DSGRoaS6FJJtaYEKOaV8leRtm
|
46
|
+
B8a5zkvPsFlg9Y7mG8/bdchGdUhbjigpxB++RLzSrLLMU1rS92neui9Z0pXdB9Jw
|
47
|
+
MiBOvQVAMA1hNhYFX+vjGded2Ms7GBXBTcqnRY9SQLPe6WgxEZaz3vaulYbCc5uU
|
48
|
+
lviPRftDjqtNnh/gcZmUpt5FX8y09ytkn5Xqi9D23PWxRtsJufgAFqCb7o0JypEC
|
49
|
+
AwEAATANBgkqhkiG9w0BAQUFAAOCAQEAFkhTUWZN3xvh50zvDBRJgvc83kx61Npl
|
50
|
+
J1G6F98aa+mdZmkbXLdNt+dHR+aGg/0RAs97yPoSc9km5uedEpQQD0xDh9X84jSv
|
51
|
+
GnrGTsmjBMJvE8jhT0P/zGfTKfncQOx00cVcNm5F1GdWsni7OcVuOLQ+0se8VHsR
|
52
|
+
JSQBBWQVZOXJp2zYs935jrI47bCCNSNFQ1sAvxFdMeBZKwtmvhp1c6Zl3j/KVbvL
|
53
|
+
S0Izpu1vXvozNDo6HmJPhpONU6qlMfU2iSzUQN21PRt82vMOVx4xyBzbm6vPc50g
|
54
|
+
PR10SWXaXL/UmBlxfJ3nhD1YgqIQtWMdbSQ81j3MzrGrrlIdjPUFOw==
|
55
|
+
-----END CERTIFICATE-----
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<QueueMessagesList>
|
3
|
+
<QueueMessage>
|
4
|
+
<MessageId>5974b586-0df3-4e2d-ad0c-18e3892bfca2</MessageId>
|
5
|
+
<InsertionTime>Fri, 09 Oct 2009 21:04:30 GMT</InsertionTime>
|
6
|
+
<ExpirationTime>Fri, 16 Oct 2009 21:04:30 GMT</ExpirationTime>
|
7
|
+
<PopReceipt>YzQ4Yzg1MDItYTc0Ny00OWNjLTkxYTUtZGM0MDFiZDAwYzEw</PopReceipt>
|
8
|
+
<TimeNextVisible>Fri, 09 Oct 2009 23:29:20 GMT</TimeNextVisible>
|
9
|
+
<DequeueCount>1</DequeueCount>
|
10
|
+
<MessageText>PHRlc3Q+dGhpcyBpcyBhIHRlc3QgbWVzc2FnZTwvdGVzdD4=</MessageText>
|
11
|
+
</QueueMessage>
|
12
|
+
</QueueMessagesList>
|
@@ -0,0 +1,28 @@
|
|
1
|
+
-----BEGIN PRIVATE KEY-----
|
2
|
+
MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQC9vJzU/05UmaW8
|
3
|
+
UscuGggCfSVm0nkGEDljjGNXFN1Ktu98+6GJ83R9kXFbmv96ZbYhL354ySNMHoe4
|
4
|
+
QwdTzXwC3XpNdNIhSIPrONSzlrjMZu46d9leGZKCOpkV+Omg6mrwEnA3KY/JbxuN
|
5
|
+
LOP8UU7F5DWmsgDyWKy1iqbRwoxdivEfMSb2Z82yJA5l1HoAY+AGYG2CLZKAFGjm
|
6
|
+
l6J1Ic5a3UerT0vhvwK9CEK6dIxBpBuNpLg8QSLIADKk1DC2WRsfF9p7ilDiZw2p
|
7
|
+
peKw4hP84VsXeKkElmPQayt1PDlooEJrj6/gyuUekhjQgYSy31W6w1oeyBn18OjY
|
8
|
+
C4cnFhg/AgMBAAECggEAW33B2mup592XL7Jy3WYsCpcyG9zOAwB7y+b8WBd1hfuk
|
9
|
+
jA4CnTTKLWqe0N9y5iB5rJLsV24WGTR3mYCo3d4uOGt3+DWmxenjwt9KobbCMb5I
|
10
|
+
jeUQ6fFG1olPHGtErRWcr1sUxWTDMwziqjbFUPwcEgyzWkhncHUWAwxy2J8JdGkg
|
11
|
+
mVBz6wubaFiO6MHAa1eHV/et1tLKRRpAc2/vrJpc4wcvu23CgM2rC+W7GggufH0z
|
12
|
+
rVKhNTKklTm3K/2tZfgpAyzi7L/3KPVjEUysyCSEwaoY6nXIFC7E16JlPBa0HS9U
|
13
|
+
9yPxDqvE1EAZUdWUtF5FNvaohl2an8M85PgEV6OxIQKBgQDlPvIj4gSnbkv7VLSA
|
14
|
+
5TEdcJBJbTJDsyNWgUUmFZeCo7KtpXc0g2B0fKuBaJi4KiLpfkaNgUVMF5UyOIKO
|
15
|
+
1m0Yv+B+PMkVfUoYgWZ1YSF169nR/CB5sq496a1W+Qx2KxMlyl98MU7Q6rOPJ+KE
|
16
|
+
qXuZLdt38OwS2inYhb3n0daSmQKBgQDT4UZGyjAxK0RCCmVaxrlbTf/rtn1InMld
|
17
|
+
lulxRVNs5q9Rd64U0gfQY7UsxSNi5xS1e36EW8jvbg3fRvevvvziHsBTueEJSty8
|
18
|
+
EuFLq6tSRj6VZjS7SPkSAKuMNM2g5OasK9E1+yvisM7LGNubCXJOGEGH1Mx7hX5Y
|
19
|
+
mEEBytaglwKBgHE//28qoRH1syOeXO2wS+s3SJB9mW9IeBSsF/UQhaDMLeEK9TDE
|
20
|
+
Fkp1rGRpv8h7SHQBJemSCyHkJJiCwjy+QXcQk17JuK0dEBW7F1q1eUpAEYNjAsgc
|
21
|
+
NWfwoOlub3GRJgxtRW6dDUq4J6x5D7Zp491wghNmubk2faWxrHdxeodBAoGAMwDn
|
22
|
+
ieLh9vQTWlJmU5PCytfb40HqprAXSRAq4blue6iMS3Aj1583glJ+KmjKO+Skd4ti
|
23
|
+
yTnPBNPZQwYyWXwAI+6DHaSBJ1t+B0gEM9L/Sq7eIdiYmPzX+B1xLi8H0NNJM+jY
|
24
|
+
U8ZCqi8lmH5DXu7HNUVhgPEYyCM6Ztk/zM6nG8ECgYAV3/3k/9T7TVgdEMV0wPEu
|
25
|
+
+neVz7rdeSGOa56ThFSQRRvxADRSeqzmLkW1HcvSZzkiSa0LAYEnXlbPApzO+FL2
|
26
|
+
uJ+dD7akMYTZx3lo2bLz0jYQkIwsh1L4+bymqJEa7AN0A+Gfqnxo7lgbUOXzExGI
|
27
|
+
mH4F7Y5/CEE9TsYdKYDXAA==
|
28
|
+
-----END PRIVATE KEY-----
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
2
|
+
<feed xml:base="http://myaccount.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
3
|
+
<title type="text">Customers</title>
|
4
|
+
<id>http://myaccount.table.core.windows.net/Customers</id>
|
5
|
+
<updated>2008-10-01T15:26:13Z</updated>
|
6
|
+
<link rel="self" title="Customers" href="Customers" />
|
7
|
+
</feed>
|
@@ -0,0 +1,45 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
2
|
+
<feed xml:base="http://myaccount.table.core.windows.net/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom">
|
3
|
+
<title type="text">Customers</title>
|
4
|
+
<id>http://myaccount.table.core.windows.net/Customers</id>
|
5
|
+
<updated>2008-10-01T15:26:13Z</updated>
|
6
|
+
<link rel="self" title="Customers" href="Customers" />
|
7
|
+
<entry m:etag="W/"datetime'2008-10-01T15%3A26%3A04.6812774Z'"">
|
8
|
+
<id>http://myaccount.table.core.windows.net/Customers(PartitionKey='part1',RowKey='row1')</id>
|
9
|
+
<title type="text"></title>
|
10
|
+
<updated>2008-10-01T15:26:13Z</updated>
|
11
|
+
<author>
|
12
|
+
<name />
|
13
|
+
</author>
|
14
|
+
<link rel="edit" title="Customers" href="Customers(PartitionKey='part1',RowKey='row1')" />
|
15
|
+
<category term="myaccount.Customers" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
|
16
|
+
<content type="application/xml">
|
17
|
+
<m:properties>
|
18
|
+
<d:PartitionKey>part1</d:PartitionKey>
|
19
|
+
<d:RowKey>row1</d:RowKey>
|
20
|
+
<d:Name>John</d:Name>
|
21
|
+
<d:Address m:null="true" />
|
22
|
+
<d:CustomerSince m:type="Edm.DateTime">2008-10-01T15:25:05.2852025Z</d:CustomerSince>
|
23
|
+
</m:properties>
|
24
|
+
</content>
|
25
|
+
</entry>
|
26
|
+
<entry m:etag="W/"datetime'2008-10-01T15%3A26%3A04.6812774Z'"">
|
27
|
+
<id>http://myaccount.table.core.windows.net/Customers(PartitionKey='part1',RowKey='row2')</id>
|
28
|
+
<title type="text"></title>
|
29
|
+
<updated>2008-10-01T15:26:13Z</updated>
|
30
|
+
<author>
|
31
|
+
<name />
|
32
|
+
</author>
|
33
|
+
<link rel="edit" title="Customers" href="Customers(PartitionKey='part1',RowKey='row2')" />
|
34
|
+
<category term="myaccount.Customers" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
|
35
|
+
<content type="application/xml">
|
36
|
+
<m:properties>
|
37
|
+
<d:PartitionKey>part1</d:PartitionKey>
|
38
|
+
<d:RowKey>row2</d:RowKey>
|
39
|
+
<d:Name>Michael</d:Name>
|
40
|
+
<d:Address m:null="true" />
|
41
|
+
<d:CustomerSince m:type="Edm.DateTime">2008-10-01T15:25:05.2852025Z</d:CustomerSince>
|
42
|
+
</m:properties>
|
43
|
+
</content>
|
44
|
+
</entry>
|
45
|
+
</feed>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<StorageServiceProperties>
|
3
|
+
<Logging>
|
4
|
+
<Version>1.0</Version>
|
5
|
+
<Delete>true</Delete>
|
6
|
+
<Read>false</Read>
|
7
|
+
<Write>true</Write>
|
8
|
+
<RetentionPolicy>
|
9
|
+
<Enabled>true</Enabled>
|
10
|
+
<Days>7</Days>
|
11
|
+
</RetentionPolicy>
|
12
|
+
</Logging>
|
13
|
+
<Metrics>
|
14
|
+
<Version>1.0</Version>
|
15
|
+
<Enabled>true</Enabled>
|
16
|
+
<IncludeAPIs>false</IncludeAPIs>
|
17
|
+
<RetentionPolicy>
|
18
|
+
<Enabled>true</Enabled>
|
19
|
+
<Days>3</Days>
|
20
|
+
</RetentionPolicy>
|
21
|
+
</Metrics>
|
22
|
+
</StorageServiceProperties>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<StorageServiceProperties>
|
3
|
+
<Logging>
|
4
|
+
<Version>1.0</Version>
|
5
|
+
<Read>false</Read>
|
6
|
+
<Write>false</Write>
|
7
|
+
<Delete>false</Delete>
|
8
|
+
<RetentionPolicy>
|
9
|
+
<Enabled>false</Enabled>
|
10
|
+
</RetentionPolicy>
|
11
|
+
</Logging>
|
12
|
+
<Metrics>
|
13
|
+
<Version>1.0</Version>
|
14
|
+
<Enabled>false</Enabled>
|
15
|
+
<RetentionPolicy>
|
16
|
+
<Enabled>false</Enabled>
|
17
|
+
</RetentionPolicy>
|
18
|
+
</Metrics>
|
19
|
+
</StorageServiceProperties>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<EnumerationResults AccountName="http://myaccount.queue.core.windows.net">
|
3
|
+
<Prefix>queue-prefix</Prefix>
|
4
|
+
<Marker>the-marker</Marker>
|
5
|
+
<MaxResults>100</MaxResults>
|
6
|
+
<Queues>
|
7
|
+
<Queue>
|
8
|
+
<Name>queue-name</Name>
|
9
|
+
<Url>http://myaccount.queue.core.windows.net/queue-name</Url>
|
10
|
+
<Metadata>
|
11
|
+
<Color>purple</Color>
|
12
|
+
<Shape>square</Shape>
|
13
|
+
</Metadata>
|
14
|
+
</Queue>
|
15
|
+
<NextMarker />
|
16
|
+
</EnumerationResults>
|
@@ -0,0 +1,23 @@
|
|
1
|
+
<entry xmlns="http://www.w3.org/2005/Atom">
|
2
|
+
<id>https://gmonfort.servicebus.windows.net/gfyhfiwdqg</id>
|
3
|
+
<title type="text">gfyhfiwdqg</title>
|
4
|
+
<published>2012-06-06T05:00:06Z</published>
|
5
|
+
<updated>2012-06-06T05:00:06Z</updated>
|
6
|
+
<author><name>gmonfort</name></author>
|
7
|
+
<link rel="self" href="https://gmonfort.servicebus.windows.net/gfyhfiwdqg"/>
|
8
|
+
<content type="application/xml">
|
9
|
+
<QueueDescription xmlns="http://schemas.microsoft.com/netservices/2010/10/servicebus/connect" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
|
10
|
+
<LockDuration>PT1M</LockDuration>
|
11
|
+
<MaxSizeInMegabytes>1024</MaxSizeInMegabytes>
|
12
|
+
<RequiresDuplicateDetection>false</RequiresDuplicateDetection>
|
13
|
+
<RequiresSession>false</RequiresSession>
|
14
|
+
<DefaultMessageTimeToLive>P10675199DT2H48M5.4775807S</DefaultMessageTimeToLive>
|
15
|
+
<DeadLetteringOnMessageExpiration>false</DeadLetteringOnMessageExpiration>
|
16
|
+
<DuplicateDetectionHistoryTimeWindow>PT10M</DuplicateDetectionHistoryTimeWindow>
|
17
|
+
<MaxDeliveryCount>10</MaxDeliveryCount>
|
18
|
+
<EnableBatchedOperations>true</EnableBatchedOperations>
|
19
|
+
<SizeInBytes>0</SizeInBytes>
|
20
|
+
<MessageCount>0</MessageCount>
|
21
|
+
</QueueDescription>
|
22
|
+
</content>
|
23
|
+
</entry>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<entry xmlns="http://www.w3.org/2005/Atom">
|
2
|
+
<id>https://gmonfort.servicebus.windows.net/gfyhfiwdqger</id>
|
3
|
+
<title type="text">gfyhfiwdqger</title>
|
4
|
+
<published>2012-06-06T05:00:06Z</published>
|
5
|
+
<updated>2012-06-06T05:00:06Z</updated>
|
6
|
+
<author><name>gmonfort</name></author>
|
7
|
+
<link rel="self" href="https://gmonfort.servicebus.windows.net/gfyhfiwdqg"/>
|
8
|
+
<content type="application/xml">
|
9
|
+
<RelayDescription xmlns="http://schemas.microsoft.com/netservices/2010/10/servicebus/connect" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
|
10
|
+
<RelayType>Http</RelayType>
|
11
|
+
<RequiresClientAuthorization>true</RequiresClientAuthorization>
|
12
|
+
<RequiresTransportSecurity>true</RequiresTransportSecurity>
|
13
|
+
</RelayDescription>
|
14
|
+
</content>
|
15
|
+
</entry>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<entry xmlns="http://www.w3.org/2005/Atom">
|
2
|
+
<id>https://gmonfort.servicebus.windows.net/htsjvyukon</id>
|
3
|
+
<title type="text">htsjvyukon</title>
|
4
|
+
<published>2012-06-07T19:49:00Z</published>
|
5
|
+
<updated>2012-06-07T19:49:01Z</updated>
|
6
|
+
<author><name>gmonfort</name></author>
|
7
|
+
<link rel="self" href="https://gmonfort.servicebus.windows.net/htsjvyukon"/>
|
8
|
+
<content type="application/xml">
|
9
|
+
<TopicDescription xmlns="http://schemas.microsoft.com/netservices/2010/10/servicebus/connect" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
|
10
|
+
<DefaultMessageTimeToLive>P10675199DT2H48M5.4775807S</DefaultMessageTimeToLive>
|
11
|
+
<MaxSizeInMegabytes>1024</MaxSizeInMegabytes>
|
12
|
+
<RequiresDuplicateDetection>false</RequiresDuplicateDetection>
|
13
|
+
<DuplicateDetectionHistoryTimeWindow>PT10M</DuplicateDetectionHistoryTimeWindow>
|
14
|
+
<EnableBatchedOperations>true</EnableBatchedOperations>
|
15
|
+
<SizeInBytes>0</SizeInBytes>
|
16
|
+
</TopicDescription>
|
17
|
+
</content>
|
18
|
+
</entry>
|
@@ -0,0 +1 @@
|
|
1
|
+
wrap_access_token=net.windows.servicebus.action%3dListen%252cManage%252cSend%26http%253a%252f%252fschemas.microsoft.com%252faccesscontrolservice%252f2010%252f07%252fclaims%252fidentityprovider%3dhttps%253a%252f%252fgmonfort-sb.accesscontrol.windows.net%252f%26Audience%3dhttp%253a%252f%252fgmonfort.servicebus.windows.net%252f%2524Resources%252fQueues%26ExpiresOn%3d1338862002%26Issuer%3dhttps%253a%252f%252fgmonfort-sb.accesscontrol.windows.net%252f%26HMACSHA256%3dCFydD48JENdtcaha7TAcH8X4jXRKgFW6X7sRfbbrWBE%253d&wrap_access_token_expires_in=1199
|
@@ -0,0 +1,9 @@
|
|
1
|
+
{
|
2
|
+
"transfer-encoding" => "chunked",
|
3
|
+
"content-type" => "text/plain",
|
4
|
+
"location" => "https://gmonfort.servicebus.windows.net/fgdutifgta/messages/1/670b782c-7dff-4ac1-9858-fa412a66f9b0",
|
5
|
+
"server" => "Microsoft-HTTPAPI/2.0",
|
6
|
+
"brokerproperties" => '"DeliveryCount":1,"LockToken":"670b782c-7dff-4ac1-9858-fa412a66f9b0","LockedUntilUtc":"Tue, 12 Jun 2012 07:25:45 GMT","MessageId":"383598482f704d87bee3ea26a92b9ac0","SequenceNumber":1,"TimeToLive":922337203685.47754,"To":"yo"}',
|
7
|
+
"date" => "Tue, 12 Jun 2012 07:24:45 GMT",
|
8
|
+
"connection" => "close"
|
9
|
+
}
|
@@ -0,0 +1,54 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<StorageServiceProperties>
|
3
|
+
<Logging>
|
4
|
+
<Version>1.0</Version>
|
5
|
+
<Delete>true</Delete>
|
6
|
+
<Read>false</Read>
|
7
|
+
<Write>true</Write>
|
8
|
+
<RetentionPolicy>
|
9
|
+
<Enabled>true</Enabled>
|
10
|
+
<Days>7</Days>
|
11
|
+
</RetentionPolicy>
|
12
|
+
</Logging>
|
13
|
+
<HourMetrics>
|
14
|
+
<Version>1.0</Version>
|
15
|
+
<Enabled>true</Enabled>
|
16
|
+
<IncludeAPIs>false</IncludeAPIs>
|
17
|
+
<RetentionPolicy>
|
18
|
+
<Enabled>true</Enabled>
|
19
|
+
<Days>7</Days>
|
20
|
+
</RetentionPolicy>
|
21
|
+
</HourMetrics>
|
22
|
+
<MinuteMetrics>
|
23
|
+
<Version>1.0</Version>
|
24
|
+
<Enabled>true</Enabled>
|
25
|
+
<IncludeAPIs>false</IncludeAPIs>
|
26
|
+
<RetentionPolicy>
|
27
|
+
<Enabled>true</Enabled>
|
28
|
+
<Days>7</Days>
|
29
|
+
</RetentionPolicy>
|
30
|
+
</MinuteMetrics>
|
31
|
+
<Cors>
|
32
|
+
<CorsRule>
|
33
|
+
<AllowedOrigins>http://www.contoso.com,http://dummy.uri</AllowedOrigins>
|
34
|
+
<AllowedMethods>PUT,HEAD</AllowedMethods>
|
35
|
+
<MaxAgeInSeconds>5</MaxAgeInSeconds>
|
36
|
+
<ExposedHeaders>x-ms-*</ExposedHeaders>
|
37
|
+
<AllowedHeaders>x-ms-blob-content-type,x-ms-blob-content-disposition</AllowedHeaders>
|
38
|
+
</CorsRule>
|
39
|
+
<CorsRule>
|
40
|
+
<AllowedOrigins>*</AllowedOrigins>
|
41
|
+
<AllowedMethods>PUT,GET</AllowedMethods>
|
42
|
+
<MaxAgeInSeconds>5</MaxAgeInSeconds>
|
43
|
+
<ExposedHeaders>x-ms-*</ExposedHeaders>
|
44
|
+
<AllowedHeaders>x-ms-blob-content-type,x-ms-blob-content-disposition</AllowedHeaders>
|
45
|
+
</CorsRule>
|
46
|
+
<CorsRule>
|
47
|
+
<AllowedOrigins>http://www.contoso.com</AllowedOrigins>
|
48
|
+
<AllowedMethods>GET</AllowedMethods>
|
49
|
+
<MaxAgeInSeconds>5</MaxAgeInSeconds>
|
50
|
+
<ExposedHeaders>x-ms-*</ExposedHeaders>
|
51
|
+
<AllowedHeaders>x-ms-client-request-id</AllowedHeaders>
|
52
|
+
</CorsRule>
|
53
|
+
</Cors>
|
54
|
+
</StorageServiceProperties>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<UpdateStorageServiceInput xmlns="http://schemas.microsoft.com/windowsazure">
|
3
|
+
<Label>VGVzdCBMYWJlbA==
|
4
|
+
</Label>
|
5
|
+
<GeoReplicationEnabled>false</GeoReplicationEnabled>
|
6
|
+
<ExtendedProperties>
|
7
|
+
<ExtendedProperty>
|
8
|
+
<Name>prop_1_name</Name>
|
9
|
+
<Value>prop_1_value</Value>
|
10
|
+
</ExtendedProperty>
|
11
|
+
<ExtendedProperty>
|
12
|
+
<Name>prop_2_name</Name>
|
13
|
+
<Value>prop_2_value</Value>
|
14
|
+
</ExtendedProperty>
|
15
|
+
</ExtendedProperties>
|
16
|
+
</UpdateStorageServiceInput>
|
@@ -0,0 +1,53 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<StorageServices xmlns="http://schemas.microsoft.com/windowsazure" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
|
3
|
+
<StorageService>
|
4
|
+
<Url>https://management.core.windows.net/268a3762-abcd-4cd3-a4ea-80e84bddff87/services/storageservices/storage1</Url>
|
5
|
+
<ServiceName>storage1</ServiceName>
|
6
|
+
<StorageServiceProperties>
|
7
|
+
<Description i:nil="true"/>
|
8
|
+
<Location>West US</Location>
|
9
|
+
<Label>c3VzZQ==</Label>
|
10
|
+
<Status>Created</Status>
|
11
|
+
<Endpoints>
|
12
|
+
<Endpoint>http://storage1.blob.core.windows.net/</Endpoint>
|
13
|
+
<Endpoint>http://storage1.queue.core.windows.net/</Endpoint>
|
14
|
+
<Endpoint>http://storage1.table.core.windows.net/</Endpoint>
|
15
|
+
</Endpoints>
|
16
|
+
<GeoReplicationEnabled>true</GeoReplicationEnabled>
|
17
|
+
<GeoPrimaryRegion>West US</GeoPrimaryRegion>
|
18
|
+
<StatusOfPrimary/>
|
19
|
+
<GeoSecondaryRegion>East US</GeoSecondaryRegion>
|
20
|
+
<StatusOfSecondary/>
|
21
|
+
</StorageServiceProperties>
|
22
|
+
<ExtendedProperties/>
|
23
|
+
</StorageService>
|
24
|
+
<StorageService>
|
25
|
+
<Url>https://management.core.windows.net/268a3762-abcd-4cd3-a4ea-80e84bddff87/services/storageservices/storage2</Url>
|
26
|
+
<ServiceName>storage2</ServiceName>
|
27
|
+
<StorageServiceProperties>
|
28
|
+
<Location>West US</Location>
|
29
|
+
<Label>VGVzdCBMYWJlbA==</Label>
|
30
|
+
<Status>Created</Status>
|
31
|
+
<Endpoints>
|
32
|
+
<Endpoint>http://storage2.blob.core.windows.net/</Endpoint>
|
33
|
+
<Endpoint>http://storage2.queue.core.windows.net/</Endpoint>
|
34
|
+
<Endpoint>http://storage2.table.core.windows.net/</Endpoint>
|
35
|
+
</Endpoints>
|
36
|
+
<GeoReplicationEnabled>false</GeoReplicationEnabled>
|
37
|
+
<GeoPrimaryRegion>West US</GeoPrimaryRegion>
|
38
|
+
<StatusOfPrimary/>
|
39
|
+
<GeoSecondaryRegion>East US</GeoSecondaryRegion>
|
40
|
+
<StatusOfSecondary/>
|
41
|
+
</StorageServiceProperties>
|
42
|
+
<ExtendedProperties>
|
43
|
+
<ExtendedProperty>
|
44
|
+
<Name>prop_1_name</Name>
|
45
|
+
<Value>prop_1_value</Value>
|
46
|
+
</ExtendedProperty>
|
47
|
+
<ExtendedProperty>
|
48
|
+
<Name>prop_2_name</Name>
|
49
|
+
<Value>prop_2_value</Value>
|
50
|
+
</ExtendedProperty>
|
51
|
+
</ExtendedProperties>
|
52
|
+
</StorageService>
|
53
|
+
</StorageServices>
|