azure 0.0.0 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +3 -0
- data/Gemfile.lock +36 -0
- data/README.md +3 -0
- data/Rakefile +81 -0
- data/azure.gemspec +20 -9
- data/lib/azure.rb +4 -0
- data/lib/azure/atom.rb +170 -0
- data/lib/azure/auth.rb +29 -0
- data/lib/azure/blobs.rb +620 -0
- data/lib/azure/blobs/blob.rb +360 -0
- data/lib/azure/blobs/container.rb +209 -0
- data/lib/azure/blobs/service.rb +396 -0
- data/lib/azure/blobs/shared_access_signature.rb +84 -0
- data/lib/azure/blobs/uri.rb +60 -0
- data/lib/azure/configuration.rb +121 -0
- data/lib/azure/core/auth/shared_key.rb +95 -0
- data/lib/azure/core/auth/shared_key_lite.rb +34 -0
- data/lib/azure/core/collection.rb +118 -0
- data/lib/azure/core/service.rb +43 -0
- data/lib/azure/core/signer.rb +32 -0
- data/lib/azure/core/utils/interval.rb +97 -0
- data/lib/azure/core/utils/queryable.rb +74 -0
- data/lib/azure/core/utils/storage_service_properties.rb +83 -0
- data/lib/azure/core/utils/string.rb +59 -0
- data/lib/azure/error.rb +72 -0
- data/lib/azure/queues.rb +272 -0
- data/lib/azure/queues/message.rb +174 -0
- data/lib/azure/queues/queue.rb +187 -0
- data/lib/azure/queues/service.rb +263 -0
- data/lib/azure/queues/service_properties.rb +152 -0
- data/lib/azure/queues/uri.rb +78 -0
- data/lib/azure/request.rb +102 -0
- data/lib/azure/response.rb +93 -0
- data/lib/azure/service_bus.rb +4 -0
- data/lib/azure/service_bus/auth/authorizer.rb +22 -0
- data/lib/azure/service_bus/auth/uri.rb +52 -0
- data/lib/azure/service_bus/auth/wrap.rb +37 -0
- data/lib/azure/service_bus/auth/wrap_service.rb +76 -0
- data/lib/azure/service_bus/auth/wrap_token.rb +45 -0
- data/lib/azure/service_bus/auth/wrap_token_manager.rb +46 -0
- data/lib/azure/service_bus/brokered_message.rb +139 -0
- data/lib/azure/service_bus/brokered_message_serializer.rb +113 -0
- data/lib/azure/service_bus/queues.rb +194 -0
- data/lib/azure/service_bus/queues/queue.rb +100 -0
- data/lib/azure/service_bus/queues/queue_serializer.rb +51 -0
- data/lib/azure/service_bus/queues/service.rb +154 -0
- data/lib/azure/service_bus/queues/uri.rb +80 -0
- data/lib/azure/service_bus/rules.rb +110 -0
- data/lib/azure/service_bus/rules/rule.rb +97 -0
- data/lib/azure/service_bus/rules/service.rb +122 -0
- data/lib/azure/service_bus/rules/uri.rb +39 -0
- data/lib/azure/service_bus/service_bus_service.rb +22 -0
- data/lib/azure/service_bus/subscriptions.rb +170 -0
- data/lib/azure/service_bus/subscriptions/service.rb +133 -0
- data/lib/azure/service_bus/subscriptions/subscription.rb +164 -0
- data/lib/azure/service_bus/subscriptions/subscription_serializer.rb +74 -0
- data/lib/azure/service_bus/subscriptions/uri.rb +71 -0
- data/lib/azure/service_bus/topics.rb +120 -0
- data/lib/azure/service_bus/topics/service.rb +98 -0
- data/lib/azure/service_bus/topics/topic.rb +122 -0
- data/lib/azure/service_bus/topics/topic_serializer.rb +44 -0
- data/lib/azure/service_bus/topics/uri.rb +58 -0
- data/lib/azure/service_runtime/client/goal_state_pipe_monitor.rb +21 -0
- data/lib/azure/service_runtime/client/goal_state_protocol.rb +18 -0
- data/lib/azure/service_runtime/client/runtime_client.rb +135 -0
- data/lib/azure/service_runtime/deployment.rb +24 -0
- data/lib/azure/service_runtime/local_resource.rb +15 -0
- data/lib/azure/service_runtime/role.rb +17 -0
- data/lib/azure/service_runtime/role_environment.rb +206 -0
- data/lib/azure/service_runtime/role_environment_change.rb +32 -0
- data/lib/azure/service_runtime/role_instance.rb +35 -0
- data/lib/azure/service_runtime/role_instance_endpoint.rb +14 -0
- data/lib/azure/tables.rb +215 -0
- data/lib/azure/tables/auth/shared_key.rb +71 -0
- data/lib/azure/tables/auth/shared_key_lite.rb +30 -0
- data/lib/azure/tables/entities_collection.rb +66 -0
- data/lib/azure/tables/entity.rb +127 -0
- data/lib/azure/tables/service.rb +211 -0
- data/lib/azure/tables/table.rb +129 -0
- data/lib/azure/tables/tables_collection.rb +62 -0
- data/lib/azure/tables/types.rb +65 -0
- data/lib/azure/tables/uri.rb +62 -0
- data/test/fixtures/32px-fulls-black.jpg +0 -0
- data/test/fixtures/all_containers.xml +20 -0
- data/test/fixtures/all_tables.xml +22 -0
- data/test/fixtures/create_table_response_entry.xml +15 -0
- data/test/fixtures/error.xml +5 -0
- data/test/fixtures/insert_entity_response_entry.xml +25 -0
- data/test/fixtures/messages.xml +12 -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/sb_default_create_queue_response.xml +23 -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/integration/blobs/auth_test.rb +19 -0
- data/test/integration/blobs/blob_test.rb +61 -0
- data/test/integration/blobs/clear_page_range_test.rb +19 -0
- data/test/integration/blobs/copy_test.rb +33 -0
- data/test/integration/blobs/create_blobs_test.rb +51 -0
- data/test/integration/blobs/create_container_test.rb +13 -0
- data/test/integration/blobs/create_snapshot_test.rb +17 -0
- data/test/integration/blobs/delete_blob_snapshots_test.rb +19 -0
- data/test/integration/blobs/delete_blobs_test.rb +25 -0
- data/test/integration/blobs/delete_container_test.rb +24 -0
- data/test/integration/blobs/delete_snapshot_test.rb +17 -0
- data/test/integration/blobs/get_blob_snapshot_test.rb +18 -0
- data/test/integration/blobs/get_blobs_test.rb +31 -0
- data/test/integration/blobs/get_page_range_test.rb +19 -0
- data/test/integration/blobs/list_blobs_test.rb +39 -0
- data/test/integration/blobs/list_containers_test.rb +28 -0
- data/test/integration/blobs/manage_blob_leases_test.rb +45 -0
- data/test/integration/blobs/manage_blob_metadata_test.rb +51 -0
- data/test/integration/blobs/manage_blob_properties_test.rb +25 -0
- data/test/integration/blobs/manage_blob_service_properties_test.rb +38 -0
- data/test/integration/blobs/manage_container_metadata_test.rb +46 -0
- data/test/integration/blobs/manage_container_permissions_test.rb +17 -0
- data/test/integration/blobs/update_page_range_test.rb +20 -0
- data/test/integration/queues/clear_messages_test.rb +22 -0
- data/test/integration/queues/create_queue_test.rb +13 -0
- data/test/integration/queues/delete_message_test.rb +42 -0
- data/test/integration/queues/delete_queue_test.rb +24 -0
- data/test/integration/queues/get_messages_test.rb +39 -0
- data/test/integration/queues/list_queues_test.rb +43 -0
- data/test/integration/queues/manage_queue_metadata_test.rb +45 -0
- data/test/integration/queues/manage_queue_service_properties_test.rb +27 -0
- data/test/integration/queues/peek_messages_test.rb +55 -0
- data/test/integration/queues/put_message_test.rb +31 -0
- data/test/integration/queues/update_message_test.rb +46 -0
- data/test/integration/service_bus/auth_test.rb +18 -0
- data/test/integration/service_bus/queues/create_queue_test.rb +25 -0
- data/test/integration/service_bus/queues/delete_message_from_queue_test.rb +29 -0
- data/test/integration/service_bus/queues/delete_queue_test.rb +25 -0
- data/test/integration/service_bus/queues/get_queue_test.rb +23 -0
- data/test/integration/service_bus/queues/list_queues_test.rb +39 -0
- data/test/integration/service_bus/queues/peek_message_from_queue_test.rb +34 -0
- data/test/integration/service_bus/queues/read_and_delete_message_from_queue_test.rb +31 -0
- data/test/integration/service_bus/queues/send_message_to_queue_test.rb +22 -0
- data/test/integration/service_bus/queues/unlock_message_from_queue_test.rb +36 -0
- data/test/integration/service_bus/rules/create_rule_test.rb +19 -0
- data/test/integration/service_bus/rules/delete_rule_test.rb +17 -0
- data/test/integration/service_bus/rules/get_rule_test.rb +21 -0
- data/test/integration/service_bus/rules/list_rules_test.rb +24 -0
- data/test/integration/service_bus/rules/rule_test.rb +16 -0
- data/test/integration/service_bus/subscriptions/create_subscription_test.rb +25 -0
- data/test/integration/service_bus/subscriptions/delete_message_from_subscription_test.rb +31 -0
- data/test/integration/service_bus/subscriptions/delete_subscription_test.rb +30 -0
- data/test/integration/service_bus/subscriptions/fetch_subscription_test.rb +28 -0
- data/test/integration/service_bus/subscriptions/list_subscriptions_test.rb +23 -0
- data/test/integration/service_bus/subscriptions/peek_lock_message_from_subscription_test.rb +42 -0
- data/test/integration/service_bus/subscriptions/read_delete_message_from_subscription_test.rb +36 -0
- data/test/integration/service_bus/subscriptions/subscription_test.rb +31 -0
- data/test/integration/service_bus/subscriptions/unlock_message_from_subscription_test.rb +43 -0
- data/test/integration/service_bus/topics/create_topic_test.rb +25 -0
- data/test/integration/service_bus/topics/delete_topic_test.rb +25 -0
- data/test/integration/service_bus/topics/get_topic_test.rb +23 -0
- data/test/integration/service_bus/topics/list_topics_test.rb +39 -0
- data/test/integration/service_bus/topics/send_message_to_topic_test.rb +23 -0
- data/test/integration/tables/auth_test.rb +29 -0
- data/test/integration/tables/creating_tables_test.rb +16 -0
- data/test/integration/tables/delete_entity_test.rb +39 -0
- data/test/integration/tables/deleting_table_test.rb +22 -0
- data/test/integration/tables/insert_entity_test.rb +23 -0
- data/test/integration/tables/merge_entity_test.rb +28 -0
- data/test/integration/tables/query_entities_test.rb +131 -0
- data/test/integration/tables/query_tables_test.rb +63 -0
- data/test/integration/tables/update_entity_test.rb +54 -0
- data/test/integration/test_helper.rb +14 -0
- data/test/support/blobs.rb +12 -0
- data/test/support/env.rb +5 -0
- data/test/support/fixtures.rb +22 -0
- data/test/support/stubs.rb +28 -0
- data/test/support/table_names.rb +44 -0
- data/test/test_helper.rb +10 -0
- data/test/unit/atom_test.rb +58 -0
- data/test/unit/auth_test.rb +24 -0
- data/test/unit/blobs/blob_test.rb +5 -0
- data/test/unit/blobs/container_test.rb +67 -0
- data/test/unit/blobs/service_test.rb +17 -0
- data/test/unit/blobs/shared_access_signature_test.rb +66 -0
- data/test/unit/blobs_test.rb +156 -0
- data/test/unit/core/service_test.rb +57 -0
- data/test/unit/core/utils/interval_test.rb +70 -0
- data/test/unit/core/utils/queryable_test.rb +69 -0
- data/test/unit/core/utils/storage_service_properties_test.rb +66 -0
- data/test/unit/error_test.rb +39 -0
- data/test/unit/queues/message_test.rb +40 -0
- data/test/unit/queues/queue_test.rb +64 -0
- data/test/unit/queues/service_properties.rb +35 -0
- data/test/unit/request_test.rb +38 -0
- data/test/unit/response_test.rb +43 -0
- data/test/unit/service_bus/auth/authorizer_test.rb +27 -0
- data/test/unit/service_bus/auth/wrap_token_test.rb +28 -0
- data/test/unit/service_bus/queues/queue_test.rb +38 -0
- data/test/unit/service_bus/topics/topic_test.rb +33 -0
- data/test/unit/service_runtime/data/goalstate.xml +9 -0
- data/test/unit/service_runtime/data/roleenvironmentdata.xml +29 -0
- data/test/unit/service_runtime/data/runtime.xml +6 -0
- data/test/unit/service_runtime/role_environment_test.rb +144 -0
- data/test/unit/tables/auth/shared_key_lite_test.rb +39 -0
- data/test/unit/tables/auth/shared_key_test.rb +45 -0
- data/test/unit/tables/entities_collection_test.rb +39 -0
- data/test/unit/tables/entity_test.rb +72 -0
- data/test/unit/tables/table_test.rb +57 -0
- data/test/unit/tables_test.rb +302 -0
- data/test/unit/types_test.rb +67 -0
- metadata +310 -47
- data/LICENSE +0 -0
- data/README +0 -0
@@ -0,0 +1,62 @@
|
|
1
|
+
require "azure/tables"
|
2
|
+
|
3
|
+
module Azure
|
4
|
+
module Tables
|
5
|
+
|
6
|
+
class TablesCollection < Array
|
7
|
+
|
8
|
+
# Public: Create an Azure::Tables::TablesCollection instance.
|
9
|
+
#
|
10
|
+
# query - A Hash with the query options passed to the server to get the tables.
|
11
|
+
#
|
12
|
+
# Returns the instance.
|
13
|
+
def initialize(query = {}, service = Azure::Tables)
|
14
|
+
@query = query
|
15
|
+
@service = service
|
16
|
+
end
|
17
|
+
|
18
|
+
# Public: Creates an Azure::Tables::TablesCollection from entries feed.
|
19
|
+
#
|
20
|
+
# entries - An array of xml entries.
|
21
|
+
# query - A Hash with the query options passed to the server to get the tables.
|
22
|
+
#
|
23
|
+
# Returns an instance of Azure::Tables::EntitiesCollection.
|
24
|
+
def self.from_entries(entries, query = {}, service = Azure::Tables)
|
25
|
+
collection = self.new(query, service)
|
26
|
+
|
27
|
+
entries.each do |entry|
|
28
|
+
collection << Table.from_entry(entry)
|
29
|
+
end
|
30
|
+
|
31
|
+
collection
|
32
|
+
end
|
33
|
+
|
34
|
+
# Public: Set continuation tokens for this collection
|
35
|
+
def continuation_token(next_table_name)
|
36
|
+
@next_table_name = next_table_name
|
37
|
+
end
|
38
|
+
|
39
|
+
# Public: Indicates if the collection is a paginated result.
|
40
|
+
# http://msdn.microsoft.com/en-us/library/windowsazure/dd135718
|
41
|
+
#
|
42
|
+
# Returs boolean.
|
43
|
+
def paginated?
|
44
|
+
@next_table_name ? true : false
|
45
|
+
end
|
46
|
+
|
47
|
+
# Public: Returns continuation results if exists.
|
48
|
+
#
|
49
|
+
# Returns an instance of Azure::Tables::TablesCollection
|
50
|
+
def next
|
51
|
+
return nil if !paginated?
|
52
|
+
|
53
|
+
query = @query.merge({
|
54
|
+
"NextTableName" => @next_table_name
|
55
|
+
})
|
56
|
+
|
57
|
+
@service.all(query)
|
58
|
+
end
|
59
|
+
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
@@ -0,0 +1,65 @@
|
|
1
|
+
require "time"
|
2
|
+
require "date"
|
3
|
+
require "delegate"
|
4
|
+
|
5
|
+
module Azure
|
6
|
+
module Tables
|
7
|
+
module Types
|
8
|
+
# Public: Get the type of an object.
|
9
|
+
#
|
10
|
+
# value - An Object.
|
11
|
+
#
|
12
|
+
# Returns a String.
|
13
|
+
def self.type_of(value)
|
14
|
+
case value
|
15
|
+
when Float
|
16
|
+
"Edm.Double"
|
17
|
+
when Date, Time, DateTime
|
18
|
+
"Edm.DateTime"
|
19
|
+
when Integer
|
20
|
+
value.abs < 2**31 ? "Edm.Int32" : "Edm.Int64"
|
21
|
+
when TrueClass, FalseClass
|
22
|
+
"Edm.Boolean"
|
23
|
+
when GUID
|
24
|
+
"Edm.Guid"
|
25
|
+
else
|
26
|
+
"Edm.String"
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
# Public: Convert a raw value (as a String) into an object of the proper
|
31
|
+
# type.
|
32
|
+
#
|
33
|
+
# value - A String serialization of an object.
|
34
|
+
# type - A String with the Edm datatype.
|
35
|
+
#
|
36
|
+
# Returns an Object.
|
37
|
+
def self.cast(serialized, type)
|
38
|
+
case type
|
39
|
+
when "Edm.Double"
|
40
|
+
Float(serialized)
|
41
|
+
when "Edm.DateTime"
|
42
|
+
Time.parse(serialized)
|
43
|
+
when "Edm.Int32", "Edm.Int64"
|
44
|
+
Integer(serialized)
|
45
|
+
when "Edm.Boolean"
|
46
|
+
/true/i === serialized
|
47
|
+
else
|
48
|
+
serialized.to_s
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
# Public: Wrapper around strings to represent GUIDs in the Azure Platform.
|
54
|
+
#
|
55
|
+
# Example
|
56
|
+
#
|
57
|
+
# entity = Azure::Tables::Entity.new(
|
58
|
+
# "PartitionKey" => "part1",
|
59
|
+
# "RowKey" => "row1",
|
60
|
+
# "Id" => Azure::Tables::GUID.new("123456-123123123-123123")
|
61
|
+
# )
|
62
|
+
class GUID < SimpleDelegator
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
@@ -0,0 +1,62 @@
|
|
1
|
+
require "azure/configuration"
|
2
|
+
require "uri"
|
3
|
+
|
4
|
+
module Azure
|
5
|
+
module Tables
|
6
|
+
module URI
|
7
|
+
# Public: generate the URI for the collection of tables.
|
8
|
+
#
|
9
|
+
# host - The host of the API.
|
10
|
+
#
|
11
|
+
# Returns a URI.
|
12
|
+
def self.collection(host=Azure.config.table_host)
|
13
|
+
generate(host, "Tables")
|
14
|
+
end
|
15
|
+
|
16
|
+
# Public: generate the URI for a specific table.
|
17
|
+
#
|
18
|
+
# name - The table name. If this is a URI, we just return this.
|
19
|
+
# host - The host of the API.
|
20
|
+
#
|
21
|
+
# Returns a URI.
|
22
|
+
def self.table(name, host=Azure.config.table_host)
|
23
|
+
return name if name.kind_of? ::URI
|
24
|
+
generate(host, "Tables('#{name}')")
|
25
|
+
end
|
26
|
+
|
27
|
+
# Public: generate the URI for an entity or group of entities in a table.
|
28
|
+
# If both the `partition_key` and `row_key` are specified, then the URI
|
29
|
+
# will match the entity under those specific keys.
|
30
|
+
#
|
31
|
+
# table_name - The table name.
|
32
|
+
# partition_key - The desired partition key (optional).
|
33
|
+
# row_key - The desired row key (optional).
|
34
|
+
# host - The host of the API.
|
35
|
+
#
|
36
|
+
# Returns a URI.
|
37
|
+
def self.entities(table_name, partition_key=nil, row_key=nil, host=Azure.config.table_host)
|
38
|
+
return table_name if table_name.kind_of? ::URI
|
39
|
+
|
40
|
+
path = if partition_key && row_key
|
41
|
+
"%s(PartitionKey='%s',RowKey='%s')" % [
|
42
|
+
table_name, partition_key, row_key
|
43
|
+
]
|
44
|
+
else
|
45
|
+
"%s()" % table_name
|
46
|
+
end
|
47
|
+
|
48
|
+
generate(host, path)
|
49
|
+
end
|
50
|
+
|
51
|
+
# Utility method to generate the URI.
|
52
|
+
#
|
53
|
+
# host - A String with the URI's host.
|
54
|
+
# path - A String with the URI's path.
|
55
|
+
#
|
56
|
+
# Returns a URI.
|
57
|
+
def self.generate(host, path)
|
58
|
+
::URI.parse(File.join(host, path))
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
Binary file
|
@@ -0,0 +1,20 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<EnumerationResults AccountName="http://myaccount.blob.core.windows.net">
|
3
|
+
<Prefix>string-value</Prefix>
|
4
|
+
<Marker>string-value</Marker>
|
5
|
+
<MaxResults>int-value</MaxResults>
|
6
|
+
<Containers>
|
7
|
+
<Container>
|
8
|
+
<Name>container-name</Name>
|
9
|
+
<Url>http://myaccount.blob.core.windows.net/container-name</Url>
|
10
|
+
<Properties>
|
11
|
+
<Last-Modified>date/time-value</Last-Modified>
|
12
|
+
<Etag>etag</Etag>
|
13
|
+
</Properties>
|
14
|
+
<Metadata>
|
15
|
+
<metadata-name>value</metadata-name>
|
16
|
+
</Metadata>
|
17
|
+
</Container>
|
18
|
+
</Containers>
|
19
|
+
<NextMarker>marker-value</NextMarker>
|
20
|
+
</EnumerationResults>
|
@@ -0,0 +1,22 @@
|
|
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">Tables</title>
|
4
|
+
<id>http://myaccount.table.core.windows.net/Tables</id>
|
5
|
+
<updated>2009-01-04T17:18:54.7062347Z</updated>
|
6
|
+
<link rel="self" title="Tables" href="Tables" />
|
7
|
+
<entry>
|
8
|
+
<id>http://myaccount.table.core.windows.net/Tables('mytable')</id>
|
9
|
+
<title type="text"></title>
|
10
|
+
<updated>2009-01-04T17:18:54.7062347Z</updated>
|
11
|
+
<author>
|
12
|
+
<name />
|
13
|
+
</author>
|
14
|
+
<link rel="edit" title="Tables" href="Tables('mytable')" />
|
15
|
+
<category term="myaccount.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
|
16
|
+
<content type="application/xml">
|
17
|
+
<m:properties>
|
18
|
+
<d:TableName>mytable</d:TableName>
|
19
|
+
</m:properties>
|
20
|
+
</content>
|
21
|
+
</entry>
|
22
|
+
</feed>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
2
|
+
<entry 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"> <id>http://myaccount.table.core.windows.net/Tables('mytable')</id>
|
3
|
+
<title type="text"></title>
|
4
|
+
<updated>2009-01-04T17:18:54.7062347Z</updated>
|
5
|
+
<author>
|
6
|
+
<name />
|
7
|
+
</author>
|
8
|
+
<link rel="edit" title="Tables" href="Tables('mytable')" />
|
9
|
+
<category term="myaccount.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
|
10
|
+
<content type="application/xml">
|
11
|
+
<m:properties>
|
12
|
+
<d:TableName>mytable</d:TableName>
|
13
|
+
</m:properties>
|
14
|
+
</content>
|
15
|
+
</entry>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
2
|
+
<entry 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" m:etag="W/"datetime'2008-09-18T23%3A46%3A19.4277424Z'"" xmlns="http://www.w3.org/2005/Atom">
|
3
|
+
<id>http://myaccount.table.core.windows.net/mytable(PartitionKey='mypartitionkey',RowKey='myrowkey1')</id>
|
4
|
+
<title type="text"></title>
|
5
|
+
<updated>2008-09-18T23:46:19.3857256Z</updated>
|
6
|
+
<author>
|
7
|
+
<name />
|
8
|
+
</author>
|
9
|
+
<link rel="edit" title="mytable" href="mytable(PartitionKey='mypartitionkey',RowKey='myrowkey1')" />
|
10
|
+
<category term="myaccount.Tables" scheme="http://schemas.microsoft.com/ado/2007/08/dataservices/scheme" />
|
11
|
+
<content type="application/xml">
|
12
|
+
<m:properties>
|
13
|
+
<d:PartitionKey>mypartitionkey</d:PartitionKey>
|
14
|
+
<d:RowKey>myrowkey1</d:RowKey>
|
15
|
+
<d:Timestamp m:type="Edm.DateTime">2008-09-18T23:46:19.4277424Z</d:Timestamp>
|
16
|
+
<d:Address>Mountain View</d:Address>
|
17
|
+
<d:Age m:type="Edm.Int32">23</d:Age>
|
18
|
+
<d:AmountDue m:type="Edm.Double">200.23</d:AmountDue>
|
19
|
+
<d:CustomerCode m:type="Edm.Guid">c9da6455-213d-42c9-9a79-3e9149a57833</d:CustomerCode>
|
20
|
+
<d:CustomerSince m:type="Edm.DateTime">2008-07-10T00:00:00</d:CustomerSince>
|
21
|
+
<d:IsActive m:type="Edm.Boolean">true</d:IsActive>
|
22
|
+
<d:NumOfOrders m:type="Edm.Int64">255</d:NumOfOrders>
|
23
|
+
</m:properties>
|
24
|
+
</content>
|
25
|
+
</entry>
|
@@ -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,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>red</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,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>
|