├── .gitignore ├── .travis.yml ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── README.md ├── SECURITY.md ├── azqueue ├── parsing_urls.go ├── sas_service.go ├── service_codes_queue.go ├── url_messageid.go ├── url_messages.go ├── url_queue.go ├── url_service.go ├── version.go ├── zc_credential_anonymous.go ├── zc_credential_shared_key.go ├── zc_credential_token.go ├── zc_pipeline.go ├── zc_policy_request_log.go ├── zc_policy_retry.go ├── zc_policy_telemetry.go ├── zc_policy_unique_request_id.go ├── zc_sas_account.go ├── zc_sas_query_params.go ├── zc_service_codes_common.go ├── zc_storage_error.go ├── zc_uuid.go ├── zt_doc.go ├── zt_examples_test.go ├── zt_policy_retry_test.go ├── zt_test.go ├── zt_url_messages_test.go ├── zt_url_queue_test.go ├── zt_url_service_test.goX ├── zz_generated_client.go ├── zz_generated_message_id.go ├── zz_generated_messages.go ├── zz_generated_models.go ├── zz_generated_queue.go ├── zz_generated_responder_policy.go ├── zz_generated_response_error.go ├── zz_generated_service.go ├── zz_generated_validation.go └── zz_generated_version.go ├── go.mod └── go.sum /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azqueue/parsing_urls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/parsing_urls.go -------------------------------------------------------------------------------- /azqueue/sas_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/sas_service.go -------------------------------------------------------------------------------- /azqueue/service_codes_queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/service_codes_queue.go -------------------------------------------------------------------------------- /azqueue/url_messageid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/url_messageid.go -------------------------------------------------------------------------------- /azqueue/url_messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/url_messages.go -------------------------------------------------------------------------------- /azqueue/url_queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/url_queue.go -------------------------------------------------------------------------------- /azqueue/url_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/url_service.go -------------------------------------------------------------------------------- /azqueue/version.go: -------------------------------------------------------------------------------- 1 | package azqueue 2 | 3 | const serviceLibVersion = "0.3" 4 | 5 | -------------------------------------------------------------------------------- /azqueue/zc_credential_anonymous.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zc_credential_anonymous.go -------------------------------------------------------------------------------- /azqueue/zc_credential_shared_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zc_credential_shared_key.go -------------------------------------------------------------------------------- /azqueue/zc_credential_token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zc_credential_token.go -------------------------------------------------------------------------------- /azqueue/zc_pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zc_pipeline.go -------------------------------------------------------------------------------- /azqueue/zc_policy_request_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zc_policy_request_log.go -------------------------------------------------------------------------------- /azqueue/zc_policy_retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zc_policy_retry.go -------------------------------------------------------------------------------- /azqueue/zc_policy_telemetry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zc_policy_telemetry.go -------------------------------------------------------------------------------- /azqueue/zc_policy_unique_request_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zc_policy_unique_request_id.go -------------------------------------------------------------------------------- /azqueue/zc_sas_account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zc_sas_account.go -------------------------------------------------------------------------------- /azqueue/zc_sas_query_params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zc_sas_query_params.go -------------------------------------------------------------------------------- /azqueue/zc_service_codes_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zc_service_codes_common.go -------------------------------------------------------------------------------- /azqueue/zc_storage_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zc_storage_error.go -------------------------------------------------------------------------------- /azqueue/zc_uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zc_uuid.go -------------------------------------------------------------------------------- /azqueue/zt_doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zt_doc.go -------------------------------------------------------------------------------- /azqueue/zt_examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zt_examples_test.go -------------------------------------------------------------------------------- /azqueue/zt_policy_retry_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zt_policy_retry_test.go -------------------------------------------------------------------------------- /azqueue/zt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zt_test.go -------------------------------------------------------------------------------- /azqueue/zt_url_messages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zt_url_messages_test.go -------------------------------------------------------------------------------- /azqueue/zt_url_queue_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zt_url_queue_test.go -------------------------------------------------------------------------------- /azqueue/zt_url_service_test.goX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zt_url_service_test.goX -------------------------------------------------------------------------------- /azqueue/zz_generated_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zz_generated_client.go -------------------------------------------------------------------------------- /azqueue/zz_generated_message_id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zz_generated_message_id.go -------------------------------------------------------------------------------- /azqueue/zz_generated_messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zz_generated_messages.go -------------------------------------------------------------------------------- /azqueue/zz_generated_models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zz_generated_models.go -------------------------------------------------------------------------------- /azqueue/zz_generated_queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zz_generated_queue.go -------------------------------------------------------------------------------- /azqueue/zz_generated_responder_policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zz_generated_responder_policy.go -------------------------------------------------------------------------------- /azqueue/zz_generated_response_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zz_generated_response_error.go -------------------------------------------------------------------------------- /azqueue/zz_generated_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zz_generated_service.go -------------------------------------------------------------------------------- /azqueue/zz_generated_validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zz_generated_validation.go -------------------------------------------------------------------------------- /azqueue/zz_generated_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/azqueue/zz_generated_version.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-queue-go/HEAD/go.sum --------------------------------------------------------------------------------