├── .azure-pipelines └── client.yml ├── .coveragerc ├── .github ├── CONTRIBUTING.md └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── BreakingChanges.md ├── ChangeLog.md ├── LICENSE.txt ├── NOTICE.md ├── README.rst ├── SECURITY.md ├── azure-storage-blob ├── BreakingChanges.md ├── ChangeLog.md ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── azure │ ├── __init__.py │ └── storage │ │ ├── __init__.py │ │ └── blob │ │ ├── __init__.py │ │ ├── _constants.py │ │ ├── _deserialization.py │ │ ├── _download_chunking.py │ │ ├── _encryption.py │ │ ├── _error.py │ │ ├── _serialization.py │ │ ├── _upload_chunking.py │ │ ├── appendblobservice.py │ │ ├── baseblobservice.py │ │ ├── blockblobservice.py │ │ ├── models.py │ │ ├── pageblobservice.py │ │ └── sharedaccesssignature.py ├── setup.cfg └── setup.py ├── azure-storage-common ├── BreakingChanges.md ├── ChangeLog.md ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── azure │ ├── __init__.py │ └── storage │ │ ├── __init__.py │ │ └── common │ │ ├── __init__.py │ │ ├── _auth.py │ │ ├── _common_conversion.py │ │ ├── _connection.py │ │ ├── _constants.py │ │ ├── _deserialization.py │ │ ├── _encryption.py │ │ ├── _error.py │ │ ├── _http │ │ ├── __init__.py │ │ └── httpclient.py │ │ ├── _serialization.py │ │ ├── cloudstorageaccount.py │ │ ├── models.py │ │ ├── retry.py │ │ ├── sharedaccesssignature.py │ │ ├── storageclient.py │ │ └── tokencredential.py ├── setup.cfg └── setup.py ├── azure-storage-file ├── BreakingChanges.md ├── ChangeLog.md ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── azure │ ├── __init__.py │ └── storage │ │ ├── __init__.py │ │ └── file │ │ ├── __init__.py │ │ ├── _constants.py │ │ ├── _deserialization.py │ │ ├── _download_chunking.py │ │ ├── _serialization.py │ │ ├── _upload_chunking.py │ │ ├── fileservice.py │ │ ├── models.py │ │ └── sharedaccesssignature.py ├── setup.cfg └── setup.py ├── azure-storage-nspkg ├── MANIFEST.in ├── README.rst ├── azure │ ├── __init__.py │ └── storage │ │ └── __init__.py ├── setup.cfg └── setup.py ├── azure-storage-queue ├── BreakingChanges.md ├── ChangeLog.md ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── azure │ ├── __init__.py │ └── storage │ │ ├── __init__.py │ │ └── queue │ │ ├── __init__.py │ │ ├── _constants.py │ │ ├── _deserialization.py │ │ ├── _encryption.py │ │ ├── _error.py │ │ ├── _serialization.py │ │ ├── models.py │ │ ├── queueservice.py │ │ └── sharedaccesssignature.py ├── setup.cfg └── setup.py ├── doc ├── BuildDocs.bat ├── InstallDocDependencies.bat ├── Makefile ├── __init__.py ├── conf.py ├── index.rst ├── make.bat ├── ref │ ├── azure.storage.blob.appendblobservice.rst │ ├── azure.storage.blob.baseblobservice.rst │ ├── azure.storage.blob.blockblobservice.rst │ ├── azure.storage.blob.models.rst │ ├── azure.storage.blob.pageblobservice.rst │ ├── azure.storage.blob.rst │ ├── azure.storage.blob.sharedaccesssignature.rst │ ├── azure.storage.common.cloudstorageaccount.rst │ ├── azure.storage.common.models.rst │ ├── azure.storage.common.rst │ ├── azure.storage.common.sharedaccesssignature.rst │ ├── azure.storage.common.storageclient.rst │ ├── azure.storage.file.fileservice.rst │ ├── azure.storage.file.models.rst │ ├── azure.storage.file.rst │ ├── azure.storage.file.sharedaccesssignature.rst │ ├── azure.storage.queue.models.rst │ ├── azure.storage.queue.queueservice.rst │ ├── azure.storage.queue.rst │ ├── azure.storage.queue.sharedaccesssignature.rst │ └── modules.rst ├── requirements.txt └── upgrade.rst ├── package_service_mapping.json ├── requirements.txt ├── samples ├── __init__.py ├── advanced │ ├── __init__.py │ ├── authentication.py │ ├── client.py │ └── oauth.py ├── blob │ ├── __init__.py │ ├── append_blob_usage.py │ ├── block_blob_usage.py │ ├── container_usage.py │ ├── encryption_usage.py │ ├── page_blob_usage.py │ └── sas_usage.py ├── config.py ├── file │ ├── __init__.py │ ├── directory_usage.py │ ├── file_usage.py │ ├── sas_usage.py │ └── share_usage.py ├── queue │ ├── __init__.py │ ├── encryption_usage.py │ ├── queue_usage.py │ └── sas_usage.py └── test_sample.py ├── tests ├── __init__.py ├── blob │ ├── __init__.py │ ├── blob_performance.py │ ├── test_append_blob.py │ ├── test_blob_access_conditions.py │ ├── test_blob_encryption.py │ ├── test_blob_sas.py │ ├── test_blob_storage_account.py │ ├── test_block_blob.py │ ├── test_block_blob_sync_copy.py │ ├── test_common_blob.py │ ├── test_container.py │ ├── test_cpk.py │ ├── test_get_blob.py │ ├── test_large_block_blob.py │ ├── test_page_blob.py │ ├── test_retry.py │ └── test_upload_chunking.py ├── common │ ├── __init__.py │ ├── test_account.py │ ├── test_client.py │ ├── test_logging.py │ ├── test_retry.py │ ├── test_service_properties.py │ └── test_service_stats.py ├── encryption_test_helper.py ├── file │ ├── __init__.py │ ├── test_directory.py │ ├── test_file.py │ ├── test_get_file.py │ ├── test_handle.py │ └── test_share.py ├── queues │ ├── __init__.py │ ├── test_queue.py │ ├── test_queue_encodings.py │ └── test_queue_encryption.py ├── recordings │ ├── test_append_blob.test_append_blob_from_0_bytes.yaml │ ├── test_append_blob.test_append_blob_from_bytes.yaml │ ├── test_append_blob.test_append_blob_from_bytes_chunked_upload.yaml │ ├── test_append_blob.test_append_blob_from_bytes_chunked_upload_with_index_and_count.yaml │ ├── test_append_blob.test_append_blob_from_bytes_with_index.yaml │ ├── test_append_blob.test_append_blob_from_bytes_with_index_and_count.yaml │ ├── test_append_blob.test_append_blob_from_bytes_with_progress.yaml │ ├── test_append_blob.test_append_blob_from_bytes_with_progress_chunked_upload.yaml │ ├── test_append_blob.test_append_blob_from_path_chunked_upload.yaml │ ├── test_append_blob.test_append_blob_from_path_with_progress_chunked_upload.yaml │ ├── test_append_blob.test_append_blob_from_stream_chunked_upload.yaml │ ├── test_append_blob.test_append_blob_from_stream_chunked_upload_with_count.yaml │ ├── test_append_blob.test_append_blob_from_stream_non_seekable_chunked_upload_known_size.yaml │ ├── test_append_blob.test_append_blob_from_stream_non_seekable_chunked_upload_unknown_size.yaml │ ├── test_append_blob.test_append_blob_from_stream_with_multiple_appends.yaml │ ├── test_append_blob.test_append_blob_from_text.yaml │ ├── test_append_blob.test_append_blob_from_text_chunked_upload.yaml │ ├── test_append_blob.test_append_blob_from_text_with_encoding.yaml │ ├── test_append_blob.test_append_blob_from_text_with_encoding_and_progress.yaml │ ├── test_append_blob.test_append_blob_with_md5.yaml │ ├── test_append_blob.test_append_block.yaml │ ├── test_append_blob.test_append_block_from_url.yaml │ ├── test_append_blob.test_append_block_from_url_and_validate_content_md5.yaml │ ├── test_append_blob.test_append_block_from_url_with_appendpos_condition.yaml │ ├── test_append_blob.test_append_block_from_url_with_if_match.yaml │ ├── test_append_blob.test_append_block_from_url_with_if_modified.yaml │ ├── test_append_blob.test_append_block_from_url_with_if_none_match.yaml │ ├── test_append_blob.test_append_block_from_url_with_if_unmodified.yaml │ ├── test_append_blob.test_append_block_from_url_with_maxsize_condition.yaml │ ├── test_append_blob.test_append_block_from_url_with_source_if_match.yaml │ ├── test_append_blob.test_append_block_from_url_with_source_if_modified.yaml │ ├── test_append_blob.test_append_block_from_url_with_source_if_none_match.yaml │ ├── test_append_blob.test_append_block_from_url_with_source_if_unmodified.yaml │ ├── test_append_blob.test_append_block_unicode.yaml │ ├── test_append_blob.test_append_block_with_md5.yaml │ ├── test_append_blob.test_create_blob.yaml │ ├── test_append_blob.test_create_blob_with_lease_id.yaml │ ├── test_append_blob.test_create_blob_with_metadata.yaml │ ├── test_blob_access_conditions.test_append_blob_from_bytes_with_if_match.yaml │ ├── test_blob_access_conditions.test_append_blob_from_bytes_with_if_match_fail.yaml │ ├── test_blob_access_conditions.test_append_blob_from_bytes_with_if_modified.yaml │ ├── test_blob_access_conditions.test_append_blob_from_bytes_with_if_modified_fail.yaml │ ├── test_blob_access_conditions.test_append_blob_from_bytes_with_if_none_match.yaml │ ├── test_blob_access_conditions.test_append_blob_from_bytes_with_if_none_match_fail.yaml │ ├── test_blob_access_conditions.test_append_blob_from_bytes_with_if_unmodified.yaml │ ├── test_blob_access_conditions.test_append_blob_from_bytes_with_if_unmodified_fail.yaml │ ├── test_blob_access_conditions.test_append_block_with_if_match.yaml │ ├── test_blob_access_conditions.test_append_block_with_if_match_fail.yaml │ ├── test_blob_access_conditions.test_append_block_with_if_modified.yaml │ ├── test_blob_access_conditions.test_append_block_with_if_modified_fail.yaml │ ├── test_blob_access_conditions.test_append_block_with_if_none_match.yaml │ ├── test_blob_access_conditions.test_append_block_with_if_none_match_fail.yaml │ ├── test_blob_access_conditions.test_append_block_with_if_unmodified.yaml │ ├── test_blob_access_conditions.test_append_block_with_if_unmodified_fail.yaml │ ├── test_blob_access_conditions.test_delete_blob_with_if_match.yaml │ ├── test_blob_access_conditions.test_delete_blob_with_if_match_fail.yaml │ ├── test_blob_access_conditions.test_delete_blob_with_if_modified.yaml │ ├── test_blob_access_conditions.test_delete_blob_with_if_modified_fail.yaml │ ├── test_blob_access_conditions.test_delete_blob_with_if_none_match.yaml │ ├── test_blob_access_conditions.test_delete_blob_with_if_none_match_fail.yaml │ ├── test_blob_access_conditions.test_delete_blob_with_if_unmodified.yaml │ ├── test_blob_access_conditions.test_delete_blob_with_if_unmodified_fail.yaml │ ├── test_blob_access_conditions.test_delete_container_with_if_modified.yaml │ ├── test_blob_access_conditions.test_delete_container_with_if_modified_fail.yaml │ ├── test_blob_access_conditions.test_delete_container_with_if_unmodified.yaml │ ├── test_blob_access_conditions.test_delete_container_with_if_unmodified_fail.yaml │ ├── test_blob_access_conditions.test_get_blob_metadata_with_if_match.yaml │ ├── test_blob_access_conditions.test_get_blob_metadata_with_if_match_fail.yaml │ ├── test_blob_access_conditions.test_get_blob_metadata_with_if_modified.yaml │ ├── test_blob_access_conditions.test_get_blob_metadata_with_if_modified_fail.yaml │ ├── test_blob_access_conditions.test_get_blob_metadata_with_if_none_match.yaml │ ├── test_blob_access_conditions.test_get_blob_metadata_with_if_none_match_fail.yaml │ ├── test_blob_access_conditions.test_get_blob_metadata_with_if_unmodified.yaml │ ├── test_blob_access_conditions.test_get_blob_metadata_with_if_unmodified_fail.yaml │ ├── test_blob_access_conditions.test_get_blob_properties_with_if_match.yaml │ ├── test_blob_access_conditions.test_get_blob_properties_with_if_match_fail.yaml │ ├── test_blob_access_conditions.test_get_blob_properties_with_if_modified.yaml │ ├── test_blob_access_conditions.test_get_blob_properties_with_if_modified_fail.yaml │ ├── test_blob_access_conditions.test_get_blob_properties_with_if_none_match.yaml │ ├── test_blob_access_conditions.test_get_blob_properties_with_if_none_match_fail.yaml │ ├── test_blob_access_conditions.test_get_blob_properties_with_if_unmodified.yaml │ ├── test_blob_access_conditions.test_get_blob_properties_with_if_unmodified_fail.yaml │ ├── test_blob_access_conditions.test_get_blob_with_if_match.yaml │ ├── test_blob_access_conditions.test_get_blob_with_if_match_fail.yaml │ ├── test_blob_access_conditions.test_get_blob_with_if_modified.yaml │ ├── test_blob_access_conditions.test_get_blob_with_if_modified_fail.yaml │ ├── test_blob_access_conditions.test_get_blob_with_if_none_match.yaml │ ├── test_blob_access_conditions.test_get_blob_with_if_none_match_fail.yaml │ ├── test_blob_access_conditions.test_get_blob_with_if_unmodified.yaml │ ├── test_blob_access_conditions.test_get_blob_with_if_unmodified_fail.yaml │ ├── test_blob_access_conditions.test_get_page_ranges_iter_with_if_match.yaml │ ├── test_blob_access_conditions.test_get_page_ranges_iter_with_if_match_fail.yaml │ ├── test_blob_access_conditions.test_get_page_ranges_iter_with_if_modified.yaml │ ├── test_blob_access_conditions.test_get_page_ranges_iter_with_if_modified_fail.yaml │ ├── test_blob_access_conditions.test_get_page_ranges_iter_with_if_none_match.yaml │ ├── test_blob_access_conditions.test_get_page_ranges_iter_with_if_none_match_fail.yaml │ ├── test_blob_access_conditions.test_get_page_ranges_iter_with_if_unmodified.yaml │ ├── test_blob_access_conditions.test_get_page_ranges_iter_with_if_unmodified_fail.yaml │ ├── test_blob_access_conditions.test_lease_blob_with_if_match.yaml │ ├── test_blob_access_conditions.test_lease_blob_with_if_match_fail.yaml │ ├── test_blob_access_conditions.test_lease_blob_with_if_modified.yaml │ ├── test_blob_access_conditions.test_lease_blob_with_if_modified_fail.yaml │ ├── test_blob_access_conditions.test_lease_blob_with_if_none_match.yaml │ ├── test_blob_access_conditions.test_lease_blob_with_if_none_match_fail.yaml │ ├── test_blob_access_conditions.test_lease_blob_with_if_unmodified.yaml │ ├── test_blob_access_conditions.test_lease_blob_with_if_unmodified_fail.yaml │ ├── test_blob_access_conditions.test_lease_container_acquire_with_if_modified.yaml │ ├── test_blob_access_conditions.test_lease_container_acquire_with_if_modified_fail.yaml │ ├── test_blob_access_conditions.test_lease_container_acquire_with_if_unmodified.yaml │ ├── test_blob_access_conditions.test_lease_container_acquire_with_if_unmodified_fail.yaml │ ├── test_blob_access_conditions.test_put_blob_with_if_match.yaml │ ├── test_blob_access_conditions.test_put_blob_with_if_match_fail.yaml │ ├── test_blob_access_conditions.test_put_blob_with_if_modified.yaml │ ├── test_blob_access_conditions.test_put_blob_with_if_modified_fail.yaml │ ├── test_blob_access_conditions.test_put_blob_with_if_none_match.yaml │ ├── test_blob_access_conditions.test_put_blob_with_if_none_match_fail.yaml │ ├── test_blob_access_conditions.test_put_blob_with_if_unmodified.yaml │ ├── test_blob_access_conditions.test_put_blob_with_if_unmodified_fail.yaml │ ├── test_blob_access_conditions.test_put_block_list_with_if_match.yaml │ ├── test_blob_access_conditions.test_put_block_list_with_if_match_fail.yaml │ ├── test_blob_access_conditions.test_put_block_list_with_if_modified.yaml │ ├── test_blob_access_conditions.test_put_block_list_with_if_modified_fail.yaml │ ├── test_blob_access_conditions.test_put_block_list_with_if_none_match.yaml │ ├── test_blob_access_conditions.test_put_block_list_with_if_none_match_fail.yaml │ ├── test_blob_access_conditions.test_put_block_list_with_if_unmodified.yaml │ ├── test_blob_access_conditions.test_put_block_list_with_if_unmodified_fail.yaml │ ├── test_blob_access_conditions.test_set_blob_metadata_with_if_match.yaml │ ├── test_blob_access_conditions.test_set_blob_metadata_with_if_match_fail.yaml │ ├── test_blob_access_conditions.test_set_blob_metadata_with_if_modified.yaml │ ├── test_blob_access_conditions.test_set_blob_metadata_with_if_modified_fail.yaml │ ├── test_blob_access_conditions.test_set_blob_metadata_with_if_none_match.yaml │ ├── test_blob_access_conditions.test_set_blob_metadata_with_if_none_match_fail.yaml │ ├── test_blob_access_conditions.test_set_blob_metadata_with_if_unmodified.yaml │ ├── test_blob_access_conditions.test_set_blob_metadata_with_if_unmodified_fail.yaml │ ├── test_blob_access_conditions.test_set_blob_properties_with_if_match.yaml │ ├── test_blob_access_conditions.test_set_blob_properties_with_if_match_fail.yaml │ ├── test_blob_access_conditions.test_set_blob_properties_with_if_modified.yaml │ ├── test_blob_access_conditions.test_set_blob_properties_with_if_modified_fail.yaml │ ├── test_blob_access_conditions.test_set_blob_properties_with_if_none_match.yaml │ ├── test_blob_access_conditions.test_set_blob_properties_with_if_none_match_fail.yaml │ ├── test_blob_access_conditions.test_set_blob_properties_with_if_unmodified.yaml │ ├── test_blob_access_conditions.test_set_blob_properties_with_if_unmodified_fail.yaml │ ├── test_blob_access_conditions.test_set_container_acl_with_if_modified.yaml │ ├── test_blob_access_conditions.test_set_container_acl_with_if_modified_fail.yaml │ ├── test_blob_access_conditions.test_set_container_acl_with_if_unmodified.yaml │ ├── test_blob_access_conditions.test_set_container_acl_with_if_unmodified_fail.yaml │ ├── test_blob_access_conditions.test_set_container_metadata_with_if_modified.yaml │ ├── test_blob_access_conditions.test_set_container_metadata_with_if_modified_fail.yaml │ ├── test_blob_access_conditions.test_snapshot_blob_with_if_match.yaml │ ├── test_blob_access_conditions.test_snapshot_blob_with_if_match_fail.yaml │ ├── test_blob_access_conditions.test_snapshot_blob_with_if_modified.yaml │ ├── test_blob_access_conditions.test_snapshot_blob_with_if_modified_fail.yaml │ ├── test_blob_access_conditions.test_snapshot_blob_with_if_none_match.yaml │ ├── test_blob_access_conditions.test_snapshot_blob_with_if_none_match_fail.yaml │ ├── test_blob_access_conditions.test_snapshot_blob_with_if_unmodified.yaml │ ├── test_blob_access_conditions.test_snapshot_blob_with_if_unmodified_fail.yaml │ ├── test_blob_access_conditions.test_update_page_with_if_match.yaml │ ├── test_blob_access_conditions.test_update_page_with_if_match_fail.yaml │ ├── test_blob_access_conditions.test_update_page_with_if_modified.yaml │ ├── test_blob_access_conditions.test_update_page_with_if_modified_fail.yaml │ ├── test_blob_access_conditions.test_update_page_with_if_none_match.yaml │ ├── test_blob_access_conditions.test_update_page_with_if_none_match_fail.yaml │ ├── test_blob_access_conditions.test_update_page_with_if_unmodified.yaml │ ├── test_blob_access_conditions.test_update_page_with_if_unmodified_fail.yaml │ ├── test_blob_encryption.test_create_block_blob_from_star.yaml │ ├── test_blob_encryption.test_create_page_blob_from_star.yaml │ ├── test_blob_encryption.test_get_blob_kek.yaml │ ├── test_blob_encryption.test_get_blob_nonmatching_kid.yaml │ ├── test_blob_encryption.test_get_blob_range_aligns_on_16_byte_block.yaml │ ├── test_blob_encryption.test_get_blob_range_beginning_to_middle.yaml │ ├── test_blob_encryption.test_get_blob_range_expanded_to_beginning_block_align.yaml │ ├── test_blob_encryption.test_get_blob_range_expanded_to_beginning_iv.yaml │ ├── test_blob_encryption.test_get_blob_range_middle_to_end.yaml │ ├── test_blob_encryption.test_get_blob_range_middle_to_middle.yaml │ ├── test_blob_encryption.test_get_blob_resolver.yaml │ ├── test_blob_encryption.test_get_blob_strict_mode_no_policy.yaml │ ├── test_blob_encryption.test_get_blob_strict_mode_unencrypted_blob.yaml │ ├── test_blob_encryption.test_get_blob_to_star.yaml │ ├── test_blob_encryption.test_invalid_value_kek_unwrap.yaml │ ├── test_blob_encryption.test_missing_attribute_kek_unwrap.yaml │ ├── test_blob_encryption.test_put_blob_empty.yaml │ ├── test_blob_encryption.test_put_blob_range.yaml │ ├── test_blob_encryption.test_put_blob_serial_upload_chunking.yaml │ ├── test_blob_encryption.test_put_block_blob_single_shot.yaml │ ├── test_blob_encryption.test_validate_encryption.yaml │ ├── test_blob_sas.test_get_user_delegation_key.yaml │ ├── test_blob_storage_account.test_batch_set_nine_standard_blob_tier.yaml │ ├── test_blob_storage_account.test_batch_set_non_existing_blob_tier.yaml │ ├── test_blob_storage_account.test_batch_set_standard_blob_tier_api.yaml │ ├── test_blob_storage_account.test_batch_set_standard_blob_tier_api_with_non_askii_blob_name.yaml │ ├── test_blob_storage_account.test_batch_set_standard_blob_tier_for_one_blob.yaml │ ├── test_blob_storage_account.test_batch_set_three_blob_tier.yaml │ ├── test_blob_storage_account.test_rehydration_status.yaml │ ├── test_blob_storage_account.test_set_standard_blob_tier_with_rehydrate_priority.yaml │ ├── test_blob_storage_account.test_standard_blob_tier_set_tier_api.yaml │ ├── test_block_blob.test_createBlobFromStream_when_short_read_designated_size_of_stream.yaml │ ├── test_block_blob.test_createBlobFromStream_when_short_read_the_whole_stream.yaml │ ├── test_block_blob.test_create_blob_from_0_bytes.yaml │ ├── test_block_blob.test_create_blob_from_bytes_non_parallel.yaml │ ├── test_block_blob.test_create_blob_from_bytes_single_put.yaml │ ├── test_block_blob.test_create_blob_from_bytes_with_blob_tier_specified.yaml │ ├── test_block_blob.test_create_blob_from_bytes_with_index_and_count.yaml │ ├── test_block_blob.test_create_blob_from_bytes_with_index_and_count_and_properties.yaml │ ├── test_block_blob.test_create_blob_from_path_non_parallel.yaml │ ├── test_block_blob.test_create_blob_from_path_non_parallel_with_blob_tier_specified.yaml │ ├── test_block_blob.test_create_blob_from_stream_for_small_blob_with_blob_tier_specified.yaml │ ├── test_block_blob.test_create_blob_from_text.yaml │ ├── test_block_blob.test_create_blob_from_text_with_blob_tier_specified.yaml │ ├── test_block_blob.test_create_blob_from_text_with_encoding.yaml │ ├── test_block_blob.test_create_blob_from_text_with_encoding_and_progress.yaml │ ├── test_block_blob.test_create_blob_with_md5.yaml │ ├── test_block_blob.test_get_block_list_committed_blocks.yaml │ ├── test_block_blob.test_get_block_list_no_blocks.yaml │ ├── test_block_blob.test_get_block_list_uncommitted_blocks.yaml │ ├── test_block_blob.test_put_block.yaml │ ├── test_block_blob.test_put_block_list.yaml │ ├── test_block_blob.test_put_block_list_invalid_block_id.yaml │ ├── test_block_blob.test_put_block_list_with_blob_tier_specified.yaml │ ├── test_block_blob.test_put_block_list_with_md5.yaml │ ├── test_block_blob.test_put_block_unicode.yaml │ ├── test_block_blob.test_put_block_with_md5.yaml │ ├── test_block_blob_sync_copy.test_copy_blob_sync.yaml │ ├── test_block_blob_sync_copy.test_put_block_from_url_and_commit.yaml │ ├── test_block_blob_sync_copy.test_put_block_from_url_and_validate_content_md5.yaml │ ├── test_client.test_client_request_id_echo.yaml │ ├── test_client.test_request_callback_signed_header.yaml │ ├── test_client.test_response_callback.yaml │ ├── test_common_blob.test_abort_copy_blob.yaml │ ├── test_common_blob.test_abort_copy_blob_with_synchronous_copy_fails.yaml │ ├── test_common_blob.test_batch_delete_one_existing_blob.yaml │ ├── test_common_blob.test_batch_delete_one_existing_blob_with_non_askii_name.yaml │ ├── test_common_blob.test_batch_delete_ten_existing_blob_and_their_snapshot.yaml │ ├── test_common_blob.test_batch_delete_two_existing_blob_and_their_snapshot.yaml │ ├── test_common_blob.test_batch_delete_two_non_existing_blobs.yaml │ ├── test_common_blob.test_blob_container_not_exists.yaml │ ├── test_common_blob.test_blob_exists.yaml │ ├── test_common_blob.test_blob_not_exists.yaml │ ├── test_common_blob.test_blob_snapshot_exists.yaml │ ├── test_common_blob.test_blob_snapshot_not_exists.yaml │ ├── test_common_blob.test_copy_blob_async_private_blob.yaml │ ├── test_common_blob.test_copy_blob_async_private_blob_with_sas.yaml │ ├── test_common_blob.test_copy_blob_with_blob_tier_specified.yaml │ ├── test_common_blob.test_copy_blob_with_existing_blob.yaml │ ├── test_common_blob.test_copy_blob_with_rehydrate_priority.yaml │ ├── test_common_blob.test_create_blob_blob_unicode_data.yaml │ ├── test_common_blob.test_create_blob_with_lease_id.yaml │ ├── test_common_blob.test_create_blob_with_metadata.yaml │ ├── test_common_blob.test_create_blob_with_question_mark.yaml │ ├── test_common_blob.test_create_blob_with_special_chars.yaml │ ├── test_common_blob.test_delete_blob_snapshot.yaml │ ├── test_common_blob.test_delete_blob_snapshots.yaml │ ├── test_common_blob.test_delete_blob_with_existing_blob.yaml │ ├── test_common_blob.test_delete_blob_with_non_existing_blob.yaml │ ├── test_common_blob.test_delete_blob_with_snapshots.yaml │ ├── test_common_blob.test_get_account_information.yaml │ ├── test_common_blob.test_get_account_information_with_blob_name.yaml │ ├── test_common_blob.test_get_account_information_with_container_name.yaml │ ├── test_common_blob.test_get_blob_metadata.yaml │ ├── test_common_blob.test_get_blob_metadata_fail.yaml │ ├── test_common_blob.test_get_blob_properties.yaml │ ├── test_common_blob.test_get_blob_properties_fail.yaml │ ├── test_common_blob.test_get_blob_properties_server_encryption.yaml │ ├── test_common_blob.test_get_blob_properties_with_leased_blob.yaml │ ├── test_common_blob.test_get_blob_properties_with_snapshot.yaml │ ├── test_common_blob.test_get_blob_server_encryption.yaml │ ├── test_common_blob.test_get_blob_with_existing_blob.yaml │ ├── test_common_blob.test_get_blob_with_lease.yaml │ ├── test_common_blob.test_get_blob_with_non_existing_blob.yaml │ ├── test_common_blob.test_get_blob_with_range.yaml │ ├── test_common_blob.test_get_blob_with_snapshot.yaml │ ├── test_common_blob.test_get_blob_with_snapshot_previous.yaml │ ├── test_common_blob.test_lease_blob_acquire_and_release.yaml │ ├── test_common_blob.test_lease_blob_acquire_and_renew.yaml │ ├── test_common_blob.test_lease_blob_acquire_twice_fails.yaml │ ├── test_common_blob.test_lease_blob_break_period.yaml │ ├── test_common_blob.test_lease_blob_change_lease_id.yaml │ ├── test_common_blob.test_lease_blob_with_duration.yaml │ ├── test_common_blob.test_lease_blob_with_proposed_lease_id.yaml │ ├── test_common_blob.test_list_blobs_server_encryption.yaml │ ├── test_common_blob.test_no_sas_private_blob.yaml │ ├── test_common_blob.test_no_sas_public_blob.yaml │ ├── test_common_blob.test_no_server_encryption.yaml │ ├── test_common_blob.test_public_access_blob.yaml │ ├── test_common_blob.test_set_blob_metadata_with_upper_case.yaml │ ├── test_common_blob.test_set_blob_properties_with_blob_settings_param.yaml │ ├── test_common_blob.test_set_blob_properties_with_existing_blob.yaml │ ├── test_common_blob.test_snapshot_blob.yaml │ ├── test_common_blob.test_soft_delete_blob_including_all_snapshots.yaml │ ├── test_common_blob.test_soft_delete_blob_without_snapshots.yaml │ ├── test_common_blob.test_soft_delete_only_snapshots_of_blob.yaml │ ├── test_common_blob.test_soft_delete_single_blob_snapshot.yaml │ ├── test_common_blob.test_soft_delete_with_leased_blob.yaml │ ├── test_common_blob.test_token_credential.yaml │ ├── test_common_blob.test_unicode_get_blob_unicode_name.yaml │ ├── test_container.test_container_exists.yaml │ ├── test_container.test_container_exists_with_lease.yaml │ ├── test_container.test_container_not_exists.yaml │ ├── test_container.test_create_container.yaml │ ├── test_container.test_create_container_fail_on_exist.yaml │ ├── test_container.test_create_container_with_already_existing_container.yaml │ ├── test_container.test_create_container_with_already_existing_container_fail_on_exist.yaml │ ├── test_container.test_create_container_with_metadata.yaml │ ├── test_container.test_create_container_with_public_access_blob.yaml │ ├── test_container.test_create_container_with_public_access_container.yaml │ ├── test_container.test_delete_container_with_existing_container.yaml │ ├── test_container.test_delete_container_with_existing_container_fail_not_exist.yaml │ ├── test_container.test_delete_container_with_lease_id.yaml │ ├── test_container.test_delete_container_with_non_existing_container.yaml │ ├── test_container.test_delete_container_with_non_existing_container_fail_not_exist.yaml │ ├── test_container.test_get_container_acl.yaml │ ├── test_container.test_get_container_acl_with_lease_id.yaml │ ├── test_container.test_get_container_metadata.yaml │ ├── test_container.test_get_container_metadata_with_lease_id.yaml │ ├── test_container.test_get_container_properties.yaml │ ├── test_container.test_get_container_properties_with_lease_id.yaml │ ├── test_container.test_lease_container_acquire_and_release.yaml │ ├── test_container.test_lease_container_break_period.yaml │ ├── test_container.test_lease_container_break_released_lease_fails.yaml │ ├── test_container.test_lease_container_change_lease_id.yaml │ ├── test_container.test_lease_container_renew.yaml │ ├── test_container.test_lease_container_with_duration.yaml │ ├── test_container.test_lease_container_with_proposed_lease_id.yaml │ ├── test_container.test_list_blobs.yaml │ ├── test_container.test_list_blobs_leased_blob.yaml │ ├── test_container.test_list_blobs_with_delimiter.yaml │ ├── test_container.test_list_blobs_with_include_copy.yaml │ ├── test_container.test_list_blobs_with_include_metadata.yaml │ ├── test_container.test_list_blobs_with_include_multiple.yaml │ ├── test_container.test_list_blobs_with_include_snapshots.yaml │ ├── test_container.test_list_blobs_with_include_uncommittedblobs.yaml │ ├── test_container.test_list_blobs_with_num_results.yaml │ ├── test_container.test_list_blobs_with_prefix.yaml │ ├── test_container.test_list_containers.yaml │ ├── test_container.test_list_containers_with_include_metadata.yaml │ ├── test_container.test_list_containers_with_num_results_and_marker.yaml │ ├── test_container.test_list_containers_with_prefix.yaml │ ├── test_container.test_list_containers_with_public_access.yaml │ ├── test_container.test_list_names.yaml │ ├── test_container.test_set_container_acl.yaml │ ├── test_container.test_set_container_acl_too_many_ids.yaml │ ├── test_container.test_set_container_acl_with_empty_signed_identifier.yaml │ ├── test_container.test_set_container_acl_with_empty_signed_identifiers.yaml │ ├── test_container.test_set_container_acl_with_lease_id.yaml │ ├── test_container.test_set_container_acl_with_public_access.yaml │ ├── test_container.test_set_container_acl_with_signed_identifiers.yaml │ ├── test_container.test_set_container_metadata.yaml │ ├── test_container.test_set_container_metadata_with_lease_id.yaml │ ├── test_container.test_set_container_metadata_with_non_existing_container.yaml │ ├── test_container.test_unicode_create_container_unicode_name.yaml │ ├── test_container.test_web_container_normal_operations_working.yaml │ ├── test_cpk.test_append_block.yaml │ ├── test_cpk.test_append_block_from_url.yaml │ ├── test_cpk.test_create_append_blob_with_chunks.yaml │ ├── test_cpk.test_create_block_blob_with_chunks.yaml │ ├── test_cpk.test_create_block_blob_with_single_chunk.yaml │ ├── test_cpk.test_create_page_blob_with_chunks.yaml │ ├── test_cpk.test_get_set_blob_metadata.yaml │ ├── test_cpk.test_get_set_blob_properties.yaml │ ├── test_cpk.test_put_block_and_put_block_list.yaml │ ├── test_cpk.test_put_block_from_url_and_commit.yaml │ ├── test_cpk.test_snapshot_blob.yaml │ ├── test_cpk.test_update_page.yaml │ ├── test_cpk.test_update_page_from_url.yaml │ ├── test_directory.test_create_directories.yaml │ ├── test_directory.test_create_directories_fail_on_exist.yaml │ ├── test_directory.test_create_directories_with_metadata.yaml │ ├── test_directory.test_create_directory_with_already_existing_directory.yaml │ ├── test_directory.test_delete_directory_with_existing_directory_fail_not_exist.yaml │ ├── test_directory.test_delete_directory_with_existing_share.yaml │ ├── test_directory.test_delete_directory_with_non_existing_directory.yaml │ ├── test_directory.test_delete_directory_with_non_existing_directory_fail_not_exist.yaml │ ├── test_directory.test_directory_exists.yaml │ ├── test_directory.test_directory_exists_with_snapshot.yaml │ ├── test_directory.test_directory_not_exists.yaml │ ├── test_directory.test_directory_not_exists_with_snapshot.yaml │ ├── test_directory.test_directory_parent_not_exists.yaml │ ├── test_directory.test_get_directory_metadata_with_snapshot.yaml │ ├── test_directory.test_get_directory_properties.yaml │ ├── test_directory.test_get_directory_properties_server_encryption.yaml │ ├── test_directory.test_get_directory_properties_with_non_existing_directory.yaml │ ├── test_directory.test_get_directory_properties_with_snapshot.yaml │ ├── test_directory.test_get_set_directory_metadata.yaml │ ├── test_directory.test_set_directory_properties_with_empty_smb_properties.yaml │ ├── test_directory.test_set_directory_properties_with_file_permission_key.yaml │ ├── test_file.test_abort_copy_file.yaml │ ├── test_file.test_abort_copy_file_with_synchronous_copy_fails.yaml │ ├── test_file.test_clear_range.yaml │ ├── test_file.test_copy_file_async_private_file.yaml │ ├── test_file.test_copy_file_async_private_file_with_sas.yaml │ ├── test_file.test_copy_file_with_existing_file.yaml │ ├── test_file.test_create_file.yaml │ ├── test_file.test_create_file_from_text.yaml │ ├── test_file.test_create_file_from_text_with_encoding.yaml │ ├── test_file.test_create_file_will_set_all_smb_properties.yaml │ ├── test_file.test_create_file_with_invalid_file_permission.yaml │ ├── test_file.test_create_file_with_md5_small.yaml │ ├── test_file.test_create_file_with_metadata.yaml │ ├── test_file.test_delete_file_with_existing_file.yaml │ ├── test_file.test_delete_file_with_non_existing_file.yaml │ ├── test_file.test_file_exists.yaml │ ├── test_file.test_file_exists_with_snapshot.yaml │ ├── test_file.test_file_not_exists.yaml │ ├── test_file.test_file_not_exists_with_snapshot.yaml │ ├── test_file.test_file_unicode_data.yaml │ ├── test_file.test_get_file_metadata.yaml │ ├── test_file.test_get_file_metadata_with_snapshot.yaml │ ├── test_file.test_get_file_properties.yaml │ ├── test_file.test_get_file_properties_with_non_existing_file.yaml │ ├── test_file.test_get_file_properties_with_snapshot.yaml │ ├── test_file.test_list_ranges_2.yaml │ ├── test_file.test_list_ranges_2_from_snapshot.yaml │ ├── test_file.test_list_ranges_none.yaml │ ├── test_file.test_list_ranges_none_from_snapshot.yaml │ ├── test_file.test_resize_file.yaml │ ├── test_file.test_set_file_metadata_with_upper_case.yaml │ ├── test_file.test_set_file_properties.yaml │ ├── test_file.test_set_file_properties_with_file_permission.yaml │ ├── test_file.test_unicode_get_file_binary_data.yaml │ ├── test_file.test_unicode_get_file_unicode_name.yaml │ ├── test_file.test_update_big_range_from_file_url.yaml │ ├── test_file.test_update_file_unicode.yaml │ ├── test_file.test_update_range.yaml │ ├── test_file.test_update_range_from_file_url.yaml │ ├── test_file.test_update_range_from_file_url_when_source_file_does_not_have_enough_bytes.yaml │ ├── test_file.test_update_range_with_md5.yaml │ ├── test_get_blob.test_get_blob_exact_get_size.yaml │ ├── test_get_blob.test_get_blob_no_content.yaml │ ├── test_get_blob.test_get_blob_non_seekable.yaml │ ├── test_get_blob.test_get_blob_to_bytes_non_parallel.yaml │ ├── test_get_blob.test_get_blob_to_bytes_small.yaml │ ├── test_get_blob.test_get_blob_to_path_non_parallel.yaml │ ├── test_get_blob.test_get_blob_to_path_small.yaml │ ├── test_get_blob.test_get_blob_to_stream_non_parallel.yaml │ ├── test_get_blob.test_get_blob_to_stream_small.yaml │ ├── test_get_blob.test_get_blob_to_text_non_parallel.yaml │ ├── test_get_blob.test_get_blob_to_text_small.yaml │ ├── test_get_blob.test_get_blob_to_text_with_encoding.yaml │ ├── test_get_blob.test_get_blob_to_text_with_encoding_and_progress.yaml │ ├── test_get_blob.test_ranged_get_blob_to_bytes_with_zero_byte.yaml │ ├── test_get_blob.test_ranged_get_blob_to_path_non_parallel.yaml │ ├── test_get_blob.test_ranged_get_blob_to_path_small.yaml │ ├── test_get_blob.test_ranged_get_blob_with_missing_start_range.yaml │ ├── test_get_blob.test_unicode_get_blob_binary_data.yaml │ ├── test_get_blob.test_unicode_get_blob_unicode_data.yaml │ ├── test_get_file.test_get_file_exact_get_size.yaml │ ├── test_get_file.test_get_file_no_content.yaml │ ├── test_get_file.test_get_file_non_seekable.yaml │ ├── test_get_file.test_get_file_non_seekable_from_snapshot.yaml │ ├── test_get_file.test_get_file_properties_server_encryption.yaml │ ├── test_get_file.test_get_file_server_encryption.yaml │ ├── test_get_file.test_get_file_to_bytes_non_parallel.yaml │ ├── test_get_file.test_get_file_to_bytes_small.yaml │ ├── test_get_file.test_get_file_to_path_non_parallel.yaml │ ├── test_get_file.test_get_file_to_path_small.yaml │ ├── test_get_file.test_get_file_to_stream_non_parallel.yaml │ ├── test_get_file.test_get_file_to_stream_non_parallel_from_snapshot.yaml │ ├── test_get_file.test_get_file_to_stream_small.yaml │ ├── test_get_file.test_get_file_to_stream_small_from_snapshot.yaml │ ├── test_get_file.test_get_file_to_text_non_parallel.yaml │ ├── test_get_file.test_get_file_to_text_small.yaml │ ├── test_get_file.test_get_file_to_text_with_encoding.yaml │ ├── test_get_file.test_get_file_to_text_with_encoding_and_progress.yaml │ ├── test_get_file.test_ranged_get_file_to_bytes_with_zero_byte.yaml │ ├── test_get_file.test_ranged_get_file_to_path_non_parallel.yaml │ ├── test_get_file.test_ranged_get_file_to_path_small.yaml │ ├── test_get_file.test_unicode_get_file_binary_data.yaml │ ├── test_get_file.test_unicode_get_file_unicode_data.yaml │ ├── test_handle.test_close_all_handle.yaml │ ├── test_handle.test_close_single_handle.yaml │ ├── test_handle.test_list_handles_on_directory.yaml │ ├── test_handle.test_list_handles_on_file.yaml │ ├── test_handle.test_list_handles_on_share.yaml │ ├── test_handle.test_list_handles_on_share_snapshot.yaml │ ├── test_handle.test_list_handles_with_marker.yaml │ ├── test_logging.test_authorization_is_scrubbed_off.yaml │ ├── test_page_blob.test_blob_tier_copy_blob.yaml │ ├── test_page_blob.test_blob_tier_on_create.yaml │ ├── test_page_blob.test_blob_tier_set_tier_api.yaml │ ├── test_page_blob.test_clear_page.yaml │ ├── test_page_blob.test_create_8tb_blob.yaml │ ├── test_page_blob.test_create_blob.yaml │ ├── test_page_blob.test_create_blob_from_bytes_with_index_and_count.yaml │ ├── test_page_blob.test_create_blob_with_md5_small.yaml │ ├── test_page_blob.test_create_blob_with_metadata.yaml │ ├── test_page_blob.test_create_larger_than_8tb_blob_fail.yaml │ ├── test_page_blob.test_get_page_ranges_2_pages.yaml │ ├── test_page_blob.test_get_page_ranges_diff.yaml │ ├── test_page_blob.test_get_page_ranges_no_pages.yaml │ ├── test_page_blob.test_put_page_if_sequence_number_lt_success.yaml │ ├── test_page_blob.test_put_page_with_lease_id.yaml │ ├── test_page_blob.test_resize_blob.yaml │ ├── test_page_blob.test_set_sequence_number_blob.yaml │ ├── test_page_blob.test_update_8tb_blob_page.yaml │ ├── test_page_blob.test_update_page.yaml │ ├── test_page_blob.test_update_page_fail.yaml │ ├── test_page_blob.test_update_page_from_url.yaml │ ├── test_page_blob.test_update_page_from_url_and_validate_content_md5.yaml │ ├── test_page_blob.test_update_page_from_url_with_if_match.yaml │ ├── test_page_blob.test_update_page_from_url_with_if_modified.yaml │ ├── test_page_blob.test_update_page_from_url_with_if_none_match.yaml │ ├── test_page_blob.test_update_page_from_url_with_if_unmodified.yaml │ ├── test_page_blob.test_update_page_from_url_with_sequence_number_eq.yaml │ ├── test_page_blob.test_update_page_from_url_with_sequence_number_lt.yaml │ ├── test_page_blob.test_update_page_from_url_with_sequence_number_lte.yaml │ ├── test_page_blob.test_update_page_from_url_with_source_if_match.yaml │ ├── test_page_blob.test_update_page_from_url_with_source_if_modified.yaml │ ├── test_page_blob.test_update_page_from_url_with_source_if_none_match.yaml │ ├── test_page_blob.test_update_page_from_url_with_source_if_unmodified.yaml │ ├── test_page_blob.test_update_page_if_sequence_number_eq_failure.yaml │ ├── test_page_blob.test_update_page_if_sequence_number_eq_success.yaml │ ├── test_page_blob.test_update_page_if_sequence_number_lt_failure.yaml │ ├── test_page_blob.test_update_page_if_sequence_number_lte_failure.yaml │ ├── test_page_blob.test_update_page_if_sequence_number_lte_success.yaml │ ├── test_page_blob.test_update_page_unicode.yaml │ ├── test_page_blob.test_update_page_with_md5.yaml │ ├── test_queue.test_clear_messages.yaml │ ├── test_queue.test_create_queue.yaml │ ├── test_queue.test_create_queue_already_exist.yaml │ ├── test_queue.test_create_queue_already_exist_different_metadata.yaml │ ├── test_queue.test_create_queue_fail_on_exist.yaml │ ├── test_queue.test_create_queue_fail_on_exist_different_metadata.yaml │ ├── test_queue.test_create_queue_with_options.yaml │ ├── test_queue.test_delete_existing_queue_fail_not_exist.yaml │ ├── test_queue.test_delete_message.yaml │ ├── test_queue.test_delete_non_existing_queue.yaml │ ├── test_queue.test_delete_non_existing_queue_fail_not_exist.yaml │ ├── test_queue.test_get_messages.yaml │ ├── test_queue.test_get_messages_with_options.yaml │ ├── test_queue.test_get_queue_acl.yaml │ ├── test_queue.test_get_queue_acl_iter.yaml │ ├── test_queue.test_get_queue_acl_with_non_existing_queue.yaml │ ├── test_queue.test_get_queue_metadata_message_count.yaml │ ├── test_queue.test_list_queues.yaml │ ├── test_queue.test_list_queues_with_metadata.yaml │ ├── test_queue.test_list_queues_with_options.yaml │ ├── test_queue.test_peek_messages.yaml │ ├── test_queue.test_peek_messages_with_options.yaml │ ├── test_queue.test_put_message.yaml │ ├── test_queue.test_put_message_infinite_time_to_live.yaml │ ├── test_queue.test_put_message_large_time_to_live.yaml │ ├── test_queue.test_queue_exists.yaml │ ├── test_queue.test_queue_not_exists.yaml │ ├── test_queue.test_set_queue_acl.yaml │ ├── test_queue.test_set_queue_acl_too_many_ids.yaml │ ├── test_queue.test_set_queue_acl_with_empty_signed_identifier.yaml │ ├── test_queue.test_set_queue_acl_with_empty_signed_identifiers.yaml │ ├── test_queue.test_set_queue_acl_with_non_existing_queue.yaml │ ├── test_queue.test_set_queue_acl_with_signed_identifiers.yaml │ ├── test_queue.test_set_queue_metadata.yaml │ ├── test_queue.test_token_credential.yaml │ ├── test_queue.test_unicode_create_queue_unicode_name.yaml │ ├── test_queue.test_unicode_get_messages_unicode_data.yaml │ ├── test_queue.test_unicode_update_message_unicode_data.yaml │ ├── test_queue.test_update_message.yaml │ ├── test_queue.test_update_message_content.yaml │ ├── test_queue_encodings.test_message_base64_decode_fails.yaml │ ├── test_queue_encodings.test_message_bytes_base64.yaml │ ├── test_queue_encodings.test_message_text_base64.yaml │ ├── test_queue_encodings.test_message_text_xml.yaml │ ├── test_queue_encodings.test_message_text_xml_invalid_chars.yaml │ ├── test_queue_encodings.test_message_text_xml_whitespace.yaml │ ├── test_queue_encryption.test_encryption_add_encrypted_64k_message.yaml │ ├── test_queue_encryption.test_encryption_nonmatching_kid.yaml │ ├── test_queue_encryption.test_get_messages_encrypted_kek.yaml │ ├── test_queue_encryption.test_get_messages_encrypted_resolver.yaml │ ├── test_queue_encryption.test_get_with_strict_mode.yaml │ ├── test_queue_encryption.test_invalid_value_kek_unwrap.yaml │ ├── test_queue_encryption.test_invalid_value_kek_wrap.yaml │ ├── test_queue_encryption.test_missing_attribute_kek_unrwap.yaml │ ├── test_queue_encryption.test_missing_attribute_kek_wrap.yaml │ ├── test_queue_encryption.test_peek_messages_encrypted_kek.yaml │ ├── test_queue_encryption.test_peek_messages_encrypted_resolver.yaml │ ├── test_queue_encryption.test_put_with_strict_mode.yaml │ ├── test_queue_encryption.test_update_encrypted_binary_message.yaml │ ├── test_queue_encryption.test_update_encrypted_json_message.yaml │ ├── test_queue_encryption.test_update_encrypted_message.yaml │ ├── test_queue_encryption.test_update_encrypted_raw_text_message.yaml │ ├── test_queue_encryption.test_validate_encryption.yaml │ ├── test_retry.test_exponential_retry.yaml │ ├── test_retry.test_invalid_retry.yaml │ ├── test_retry.test_linear_retry.yaml │ ├── test_retry.test_location_lock.yaml │ ├── test_retry.test_no_retry.yaml │ ├── test_retry.test_retry_callback_and_retry_context.yaml │ ├── test_retry.test_retry_on_server_error.yaml │ ├── test_retry.test_retry_on_socket_timeout.yaml │ ├── test_retry.test_retry_on_timeout.yaml │ ├── test_retry.test_retry_to_secondary_with_get.yaml │ ├── test_retry.test_retry_to_secondary_with_put.yaml │ ├── test_retry.test_retry_with_deserialization.yaml │ ├── test_retry.test_secondary_location_mode.yaml │ ├── test_service_properties.test_blob_service_properties.yaml │ ├── test_service_properties.test_disabled_static_website_properties.yaml │ ├── test_service_properties.test_file_service_properties.yaml │ ├── test_service_properties.test_queue_service_properties.yaml │ ├── test_service_properties.test_retention_too_long.yaml │ ├── test_service_properties.test_set_cors.yaml │ ├── test_service_properties.test_set_default_service_version.yaml │ ├── test_service_properties.test_set_delete_retention_policy.yaml │ ├── test_service_properties.test_set_delete_retention_policy_edge_cases.yaml │ ├── test_service_properties.test_set_disabled_delete_retention_policy.yaml │ ├── test_service_properties.test_set_hour_metrics.yaml │ ├── test_service_properties.test_set_logging.yaml │ ├── test_service_properties.test_set_minute_metrics.yaml │ ├── test_service_properties.test_set_static_website_properties.yaml │ ├── test_service_properties.test_set_static_website_properties_does_not_impact_other_properties.yaml │ ├── test_service_properties.test_set_static_website_properties_missing_field.yaml │ ├── test_service_properties.test_too_many_cors_rules.yaml │ ├── test_service_stats.test_blob_service_stats.yaml │ ├── test_service_stats.test_blob_service_stats_when_unavailable.yaml │ ├── test_service_stats.test_queue_service_stats.yaml │ ├── test_service_stats.test_queue_service_stats_when_unavailable.yaml │ ├── test_share.test_create_permission_for_share.yaml │ ├── test_share.test_create_share.yaml │ ├── test_share.test_create_share_fail_on_exist.yaml │ ├── test_share.test_create_share_snapshot.yaml │ ├── test_share.test_create_share_with_already_existing_share.yaml │ ├── test_share.test_create_share_with_already_existing_share_fail_on_exist.yaml │ ├── test_share.test_create_share_with_metadata.yaml │ ├── test_share.test_create_share_with_quota.yaml │ ├── test_share.test_create_snapshot_with_metadata.yaml │ ├── test_share.test_delete_share_with_existing_share.yaml │ ├── test_share.test_delete_share_with_existing_share_fail_not_exist.yaml │ ├── test_share.test_delete_share_with_non_existing_share.yaml │ ├── test_share.test_delete_share_with_non_existing_share_fail_not_exist.yaml │ ├── test_share.test_delete_share_with_snapshots.yaml │ ├── test_share.test_delete_snapshot.yaml │ ├── test_share.test_get_share_metadata.yaml │ ├── test_share.test_get_share_metadata_with_snapshot.yaml │ ├── test_share.test_get_share_properties.yaml │ ├── test_share.test_get_share_properties_with_snapshot.yaml │ ├── test_share.test_get_share_stats.yaml │ ├── test_share.test_list_directories_and_files.yaml │ ├── test_share.test_list_directories_and_files_with_num_results.yaml │ ├── test_share.test_list_directories_and_files_with_num_results_and_marker.yaml │ ├── test_share.test_list_directories_and_files_with_prefix.yaml │ ├── test_share.test_list_directories_and_files_with_snapshot.yaml │ ├── test_share.test_list_shares_no_options.yaml │ ├── test_share.test_list_shares_with_include_metadata.yaml │ ├── test_share.test_list_shares_with_num_results_and_marker.yaml │ ├── test_share.test_list_shares_with_prefix.yaml │ ├── test_share.test_list_shares_with_snapshot.yaml │ ├── test_share.test_set_share_acl.yaml │ ├── test_share.test_set_share_acl_too_many_ids.yaml │ ├── test_share.test_set_share_acl_with_empty_signed_identifier.yaml │ ├── test_share.test_set_share_acl_with_empty_signed_identifiers.yaml │ ├── test_share.test_set_share_acl_with_signed_identifiers.yaml │ ├── test_share.test_set_share_metadata.yaml │ ├── test_share.test_set_share_properties.yaml │ ├── test_share.test_share_exists.yaml │ ├── test_share.test_share_not_exists.yaml │ ├── test_share.test_share_snapshot_exists.yaml │ ├── test_share.test_share_snapshot_not_exists.yaml │ └── test_share.test_unicode_create_share_unicode_name.yaml ├── recordings_backup │ ├── test_handle.test_close_all_handle.yaml │ ├── test_handle.test_close_single_handle.yaml │ ├── test_handle.test_list_handles_on_directory.yaml │ ├── test_handle.test_list_handles_on_file.yaml │ ├── test_handle.test_list_handles_on_share.yaml │ ├── test_handle.test_list_handles_on_share_snapshot.yaml │ └── test_handle.test_list_handles_with_marker.yaml ├── run-storage.bat ├── settings_fake.py └── testcase.py ├── tool_build_packages.py ├── tool_clean_build_files.sh ├── tool_reset_account.py └── tool_validate_packages.py /.azure-pipelines/client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/.azure-pipelines/client.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /BreakingChanges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/BreakingChanges.md -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/SECURITY.md -------------------------------------------------------------------------------- /azure-storage-blob/BreakingChanges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/BreakingChanges.md -------------------------------------------------------------------------------- /azure-storage-blob/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/ChangeLog.md -------------------------------------------------------------------------------- /azure-storage-blob/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/LICENSE.txt -------------------------------------------------------------------------------- /azure-storage-blob/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/MANIFEST.in -------------------------------------------------------------------------------- /azure-storage-blob/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/README.rst -------------------------------------------------------------------------------- /azure-storage-blob/azure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/azure/__init__.py -------------------------------------------------------------------------------- /azure-storage-blob/azure/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/azure/storage/__init__.py -------------------------------------------------------------------------------- /azure-storage-blob/azure/storage/blob/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/azure/storage/blob/__init__.py -------------------------------------------------------------------------------- /azure-storage-blob/azure/storage/blob/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/azure/storage/blob/_constants.py -------------------------------------------------------------------------------- /azure-storage-blob/azure/storage/blob/_deserialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/azure/storage/blob/_deserialization.py -------------------------------------------------------------------------------- /azure-storage-blob/azure/storage/blob/_download_chunking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/azure/storage/blob/_download_chunking.py -------------------------------------------------------------------------------- /azure-storage-blob/azure/storage/blob/_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/azure/storage/blob/_encryption.py -------------------------------------------------------------------------------- /azure-storage-blob/azure/storage/blob/_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/azure/storage/blob/_error.py -------------------------------------------------------------------------------- /azure-storage-blob/azure/storage/blob/_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/azure/storage/blob/_serialization.py -------------------------------------------------------------------------------- /azure-storage-blob/azure/storage/blob/_upload_chunking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/azure/storage/blob/_upload_chunking.py -------------------------------------------------------------------------------- /azure-storage-blob/azure/storage/blob/appendblobservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/azure/storage/blob/appendblobservice.py -------------------------------------------------------------------------------- /azure-storage-blob/azure/storage/blob/baseblobservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/azure/storage/blob/baseblobservice.py -------------------------------------------------------------------------------- /azure-storage-blob/azure/storage/blob/blockblobservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/azure/storage/blob/blockblobservice.py -------------------------------------------------------------------------------- /azure-storage-blob/azure/storage/blob/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/azure/storage/blob/models.py -------------------------------------------------------------------------------- /azure-storage-blob/azure/storage/blob/pageblobservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/azure/storage/blob/pageblobservice.py -------------------------------------------------------------------------------- /azure-storage-blob/azure/storage/blob/sharedaccesssignature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/azure/storage/blob/sharedaccesssignature.py -------------------------------------------------------------------------------- /azure-storage-blob/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /azure-storage-blob/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-blob/setup.py -------------------------------------------------------------------------------- /azure-storage-common/BreakingChanges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/BreakingChanges.md -------------------------------------------------------------------------------- /azure-storage-common/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/ChangeLog.md -------------------------------------------------------------------------------- /azure-storage-common/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/LICENSE.txt -------------------------------------------------------------------------------- /azure-storage-common/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/MANIFEST.in -------------------------------------------------------------------------------- /azure-storage-common/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/README.rst -------------------------------------------------------------------------------- /azure-storage-common/azure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/azure/__init__.py -------------------------------------------------------------------------------- /azure-storage-common/azure/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/azure/storage/__init__.py -------------------------------------------------------------------------------- /azure-storage-common/azure/storage/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/azure/storage/common/__init__.py -------------------------------------------------------------------------------- /azure-storage-common/azure/storage/common/_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/azure/storage/common/_auth.py -------------------------------------------------------------------------------- /azure-storage-common/azure/storage/common/_common_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/azure/storage/common/_common_conversion.py -------------------------------------------------------------------------------- /azure-storage-common/azure/storage/common/_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/azure/storage/common/_connection.py -------------------------------------------------------------------------------- /azure-storage-common/azure/storage/common/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/azure/storage/common/_constants.py -------------------------------------------------------------------------------- /azure-storage-common/azure/storage/common/_deserialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/azure/storage/common/_deserialization.py -------------------------------------------------------------------------------- /azure-storage-common/azure/storage/common/_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/azure/storage/common/_encryption.py -------------------------------------------------------------------------------- /azure-storage-common/azure/storage/common/_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/azure/storage/common/_error.py -------------------------------------------------------------------------------- /azure-storage-common/azure/storage/common/_http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/azure/storage/common/_http/__init__.py -------------------------------------------------------------------------------- /azure-storage-common/azure/storage/common/_http/httpclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/azure/storage/common/_http/httpclient.py -------------------------------------------------------------------------------- /azure-storage-common/azure/storage/common/_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/azure/storage/common/_serialization.py -------------------------------------------------------------------------------- /azure-storage-common/azure/storage/common/cloudstorageaccount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/azure/storage/common/cloudstorageaccount.py -------------------------------------------------------------------------------- /azure-storage-common/azure/storage/common/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/azure/storage/common/models.py -------------------------------------------------------------------------------- /azure-storage-common/azure/storage/common/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/azure/storage/common/retry.py -------------------------------------------------------------------------------- /azure-storage-common/azure/storage/common/sharedaccesssignature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/azure/storage/common/sharedaccesssignature.py -------------------------------------------------------------------------------- /azure-storage-common/azure/storage/common/storageclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/azure/storage/common/storageclient.py -------------------------------------------------------------------------------- /azure-storage-common/azure/storage/common/tokencredential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/azure/storage/common/tokencredential.py -------------------------------------------------------------------------------- /azure-storage-common/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /azure-storage-common/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-common/setup.py -------------------------------------------------------------------------------- /azure-storage-file/BreakingChanges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-file/BreakingChanges.md -------------------------------------------------------------------------------- /azure-storage-file/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-file/ChangeLog.md -------------------------------------------------------------------------------- /azure-storage-file/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-file/LICENSE.txt -------------------------------------------------------------------------------- /azure-storage-file/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-file/MANIFEST.in -------------------------------------------------------------------------------- /azure-storage-file/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-file/README.rst -------------------------------------------------------------------------------- /azure-storage-file/azure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-file/azure/__init__.py -------------------------------------------------------------------------------- /azure-storage-file/azure/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-file/azure/storage/__init__.py -------------------------------------------------------------------------------- /azure-storage-file/azure/storage/file/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-file/azure/storage/file/__init__.py -------------------------------------------------------------------------------- /azure-storage-file/azure/storage/file/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-file/azure/storage/file/_constants.py -------------------------------------------------------------------------------- /azure-storage-file/azure/storage/file/_deserialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-file/azure/storage/file/_deserialization.py -------------------------------------------------------------------------------- /azure-storage-file/azure/storage/file/_download_chunking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-file/azure/storage/file/_download_chunking.py -------------------------------------------------------------------------------- /azure-storage-file/azure/storage/file/_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-file/azure/storage/file/_serialization.py -------------------------------------------------------------------------------- /azure-storage-file/azure/storage/file/_upload_chunking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-file/azure/storage/file/_upload_chunking.py -------------------------------------------------------------------------------- /azure-storage-file/azure/storage/file/fileservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-file/azure/storage/file/fileservice.py -------------------------------------------------------------------------------- /azure-storage-file/azure/storage/file/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-file/azure/storage/file/models.py -------------------------------------------------------------------------------- /azure-storage-file/azure/storage/file/sharedaccesssignature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-file/azure/storage/file/sharedaccesssignature.py -------------------------------------------------------------------------------- /azure-storage-file/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /azure-storage-file/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-file/setup.py -------------------------------------------------------------------------------- /azure-storage-nspkg/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-nspkg/MANIFEST.in -------------------------------------------------------------------------------- /azure-storage-nspkg/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-nspkg/README.rst -------------------------------------------------------------------------------- /azure-storage-nspkg/azure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-nspkg/azure/__init__.py -------------------------------------------------------------------------------- /azure-storage-nspkg/azure/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-nspkg/azure/storage/__init__.py -------------------------------------------------------------------------------- /azure-storage-nspkg/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /azure-storage-nspkg/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-nspkg/setup.py -------------------------------------------------------------------------------- /azure-storage-queue/BreakingChanges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-queue/BreakingChanges.md -------------------------------------------------------------------------------- /azure-storage-queue/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-queue/ChangeLog.md -------------------------------------------------------------------------------- /azure-storage-queue/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-queue/LICENSE.txt -------------------------------------------------------------------------------- /azure-storage-queue/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-queue/MANIFEST.in -------------------------------------------------------------------------------- /azure-storage-queue/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-queue/README.rst -------------------------------------------------------------------------------- /azure-storage-queue/azure/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-queue/azure/__init__.py -------------------------------------------------------------------------------- /azure-storage-queue/azure/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-queue/azure/storage/__init__.py -------------------------------------------------------------------------------- /azure-storage-queue/azure/storage/queue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-queue/azure/storage/queue/__init__.py -------------------------------------------------------------------------------- /azure-storage-queue/azure/storage/queue/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-queue/azure/storage/queue/_constants.py -------------------------------------------------------------------------------- /azure-storage-queue/azure/storage/queue/_deserialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-queue/azure/storage/queue/_deserialization.py -------------------------------------------------------------------------------- /azure-storage-queue/azure/storage/queue/_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-queue/azure/storage/queue/_encryption.py -------------------------------------------------------------------------------- /azure-storage-queue/azure/storage/queue/_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-queue/azure/storage/queue/_error.py -------------------------------------------------------------------------------- /azure-storage-queue/azure/storage/queue/_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-queue/azure/storage/queue/_serialization.py -------------------------------------------------------------------------------- /azure-storage-queue/azure/storage/queue/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-queue/azure/storage/queue/models.py -------------------------------------------------------------------------------- /azure-storage-queue/azure/storage/queue/queueservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-queue/azure/storage/queue/queueservice.py -------------------------------------------------------------------------------- /azure-storage-queue/azure/storage/queue/sharedaccesssignature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-queue/azure/storage/queue/sharedaccesssignature.py -------------------------------------------------------------------------------- /azure-storage-queue/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 3 | -------------------------------------------------------------------------------- /azure-storage-queue/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/azure-storage-queue/setup.py -------------------------------------------------------------------------------- /doc/BuildDocs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/BuildDocs.bat -------------------------------------------------------------------------------- /doc/InstallDocDependencies.bat: -------------------------------------------------------------------------------- 1 | pip install -r requirements.txt -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/ref/azure.storage.blob.appendblobservice.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/azure.storage.blob.appendblobservice.rst -------------------------------------------------------------------------------- /doc/ref/azure.storage.blob.baseblobservice.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/azure.storage.blob.baseblobservice.rst -------------------------------------------------------------------------------- /doc/ref/azure.storage.blob.blockblobservice.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/azure.storage.blob.blockblobservice.rst -------------------------------------------------------------------------------- /doc/ref/azure.storage.blob.models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/azure.storage.blob.models.rst -------------------------------------------------------------------------------- /doc/ref/azure.storage.blob.pageblobservice.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/azure.storage.blob.pageblobservice.rst -------------------------------------------------------------------------------- /doc/ref/azure.storage.blob.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/azure.storage.blob.rst -------------------------------------------------------------------------------- /doc/ref/azure.storage.blob.sharedaccesssignature.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/azure.storage.blob.sharedaccesssignature.rst -------------------------------------------------------------------------------- /doc/ref/azure.storage.common.cloudstorageaccount.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/azure.storage.common.cloudstorageaccount.rst -------------------------------------------------------------------------------- /doc/ref/azure.storage.common.models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/azure.storage.common.models.rst -------------------------------------------------------------------------------- /doc/ref/azure.storage.common.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/azure.storage.common.rst -------------------------------------------------------------------------------- /doc/ref/azure.storage.common.sharedaccesssignature.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/azure.storage.common.sharedaccesssignature.rst -------------------------------------------------------------------------------- /doc/ref/azure.storage.common.storageclient.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/azure.storage.common.storageclient.rst -------------------------------------------------------------------------------- /doc/ref/azure.storage.file.fileservice.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/azure.storage.file.fileservice.rst -------------------------------------------------------------------------------- /doc/ref/azure.storage.file.models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/azure.storage.file.models.rst -------------------------------------------------------------------------------- /doc/ref/azure.storage.file.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/azure.storage.file.rst -------------------------------------------------------------------------------- /doc/ref/azure.storage.file.sharedaccesssignature.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/azure.storage.file.sharedaccesssignature.rst -------------------------------------------------------------------------------- /doc/ref/azure.storage.queue.models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/azure.storage.queue.models.rst -------------------------------------------------------------------------------- /doc/ref/azure.storage.queue.queueservice.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/azure.storage.queue.queueservice.rst -------------------------------------------------------------------------------- /doc/ref/azure.storage.queue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/azure.storage.queue.rst -------------------------------------------------------------------------------- /doc/ref/azure.storage.queue.sharedaccesssignature.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/azure.storage.queue.sharedaccesssignature.rst -------------------------------------------------------------------------------- /doc/ref/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/ref/modules.rst -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/upgrade.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/doc/upgrade.rst -------------------------------------------------------------------------------- /package_service_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/package_service_mapping.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /samples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/advanced/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/advanced/__init__.py -------------------------------------------------------------------------------- /samples/advanced/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/advanced/authentication.py -------------------------------------------------------------------------------- /samples/advanced/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/advanced/client.py -------------------------------------------------------------------------------- /samples/advanced/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/advanced/oauth.py -------------------------------------------------------------------------------- /samples/blob/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/blob/__init__.py -------------------------------------------------------------------------------- /samples/blob/append_blob_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/blob/append_blob_usage.py -------------------------------------------------------------------------------- /samples/blob/block_blob_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/blob/block_blob_usage.py -------------------------------------------------------------------------------- /samples/blob/container_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/blob/container_usage.py -------------------------------------------------------------------------------- /samples/blob/encryption_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/blob/encryption_usage.py -------------------------------------------------------------------------------- /samples/blob/page_blob_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/blob/page_blob_usage.py -------------------------------------------------------------------------------- /samples/blob/sas_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/blob/sas_usage.py -------------------------------------------------------------------------------- /samples/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/config.py -------------------------------------------------------------------------------- /samples/file/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/file/__init__.py -------------------------------------------------------------------------------- /samples/file/directory_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/file/directory_usage.py -------------------------------------------------------------------------------- /samples/file/file_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/file/file_usage.py -------------------------------------------------------------------------------- /samples/file/sas_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/file/sas_usage.py -------------------------------------------------------------------------------- /samples/file/share_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/file/share_usage.py -------------------------------------------------------------------------------- /samples/queue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/queue/__init__.py -------------------------------------------------------------------------------- /samples/queue/encryption_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/queue/encryption_usage.py -------------------------------------------------------------------------------- /samples/queue/queue_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/queue/queue_usage.py -------------------------------------------------------------------------------- /samples/queue/sas_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/queue/sas_usage.py -------------------------------------------------------------------------------- /samples/test_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/samples/test_sample.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/blob/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/blob/blob_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/blob/blob_performance.py -------------------------------------------------------------------------------- /tests/blob/test_append_blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/blob/test_append_blob.py -------------------------------------------------------------------------------- /tests/blob/test_blob_access_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/blob/test_blob_access_conditions.py -------------------------------------------------------------------------------- /tests/blob/test_blob_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/blob/test_blob_encryption.py -------------------------------------------------------------------------------- /tests/blob/test_blob_sas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/blob/test_blob_sas.py -------------------------------------------------------------------------------- /tests/blob/test_blob_storage_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/blob/test_blob_storage_account.py -------------------------------------------------------------------------------- /tests/blob/test_block_blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/blob/test_block_blob.py -------------------------------------------------------------------------------- /tests/blob/test_block_blob_sync_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/blob/test_block_blob_sync_copy.py -------------------------------------------------------------------------------- /tests/blob/test_common_blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/blob/test_common_blob.py -------------------------------------------------------------------------------- /tests/blob/test_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/blob/test_container.py -------------------------------------------------------------------------------- /tests/blob/test_cpk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/blob/test_cpk.py -------------------------------------------------------------------------------- /tests/blob/test_get_blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/blob/test_get_blob.py -------------------------------------------------------------------------------- /tests/blob/test_large_block_blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/blob/test_large_block_blob.py -------------------------------------------------------------------------------- /tests/blob/test_page_blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/blob/test_page_blob.py -------------------------------------------------------------------------------- /tests/blob/test_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/blob/test_retry.py -------------------------------------------------------------------------------- /tests/blob/test_upload_chunking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/blob/test_upload_chunking.py -------------------------------------------------------------------------------- /tests/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/common/test_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/common/test_account.py -------------------------------------------------------------------------------- /tests/common/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/common/test_client.py -------------------------------------------------------------------------------- /tests/common/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/common/test_logging.py -------------------------------------------------------------------------------- /tests/common/test_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/common/test_retry.py -------------------------------------------------------------------------------- /tests/common/test_service_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/common/test_service_properties.py -------------------------------------------------------------------------------- /tests/common/test_service_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/common/test_service_stats.py -------------------------------------------------------------------------------- /tests/encryption_test_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/encryption_test_helper.py -------------------------------------------------------------------------------- /tests/file/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/file/test_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/file/test_directory.py -------------------------------------------------------------------------------- /tests/file/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/file/test_file.py -------------------------------------------------------------------------------- /tests/file/test_get_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/file/test_get_file.py -------------------------------------------------------------------------------- /tests/file/test_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/file/test_handle.py -------------------------------------------------------------------------------- /tests/file/test_share.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/file/test_share.py -------------------------------------------------------------------------------- /tests/queues/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/queues/test_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/queues/test_queue.py -------------------------------------------------------------------------------- /tests/queues/test_queue_encodings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/queues/test_queue_encodings.py -------------------------------------------------------------------------------- /tests/queues/test_queue_encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/queues/test_queue_encryption.py -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_blob_from_0_bytes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_blob_from_0_bytes.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_blob_from_bytes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_blob_from_bytes.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_blob_from_bytes_chunked_upload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_blob_from_bytes_chunked_upload.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_blob_from_bytes_with_index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_blob_from_bytes_with_index.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_blob_from_bytes_with_index_and_count.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_blob_from_bytes_with_index_and_count.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_blob_from_bytes_with_progress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_blob_from_bytes_with_progress.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_blob_from_path_chunked_upload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_blob_from_path_chunked_upload.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_blob_from_stream_chunked_upload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_blob_from_stream_chunked_upload.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_blob_from_text.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_blob_from_text.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_blob_from_text_chunked_upload.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_blob_from_text_chunked_upload.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_blob_from_text_with_encoding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_blob_from_text_with_encoding.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_blob_with_md5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_blob_with_md5.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_block.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_block.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_block_from_url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_block_from_url.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_block_from_url_with_if_match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_block_from_url_with_if_match.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_block_from_url_with_if_modified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_block_from_url_with_if_modified.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_block_from_url_with_if_none_match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_block_from_url_with_if_none_match.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_block_from_url_with_if_unmodified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_block_from_url_with_if_unmodified.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_block_from_url_with_maxsize_condition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_block_from_url_with_maxsize_condition.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_block_from_url_with_source_if_match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_block_from_url_with_source_if_match.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_block_unicode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_block_unicode.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_append_block_with_md5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_append_block_with_md5.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_create_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_create_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_create_blob_with_lease_id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_create_blob_with_lease_id.yaml -------------------------------------------------------------------------------- /tests/recordings/test_append_blob.test_create_blob_with_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_append_blob.test_create_blob_with_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_append_block_with_if_match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_append_block_with_if_match.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_append_block_with_if_match_fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_append_block_with_if_match_fail.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_append_block_with_if_modified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_append_block_with_if_modified.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_append_block_with_if_none_match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_append_block_with_if_none_match.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_append_block_with_if_unmodified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_append_block_with_if_unmodified.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_match.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_match_fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_match_fail.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_modified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_modified.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_modified_fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_modified_fail.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_none_match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_none_match.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_unmodified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_delete_blob_with_if_unmodified.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_delete_container_with_if_modified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_delete_container_with_if_modified.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_get_blob_with_if_match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_match.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_get_blob_with_if_match_fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_match_fail.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_get_blob_with_if_modified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_modified.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_get_blob_with_if_modified_fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_modified_fail.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_get_blob_with_if_none_match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_none_match.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_get_blob_with_if_unmodified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_get_blob_with_if_unmodified.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_match.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_match_fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_match_fail.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_modified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_modified.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_none_match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_none_match.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_unmodified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_lease_blob_with_if_unmodified.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_put_blob_with_if_match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_match.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_put_blob_with_if_match_fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_match_fail.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_put_blob_with_if_modified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_modified.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_put_blob_with_if_modified_fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_modified_fail.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_put_blob_with_if_none_match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_none_match.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_put_blob_with_if_unmodified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_put_blob_with_if_unmodified.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_put_block_list_with_if_match.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_match.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_modified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_snapshot_blob_with_if_modified.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_update_page_with_if_match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_update_page_with_if_match.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_update_page_with_if_match_fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_update_page_with_if_match_fail.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_update_page_with_if_modified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_update_page_with_if_modified.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_update_page_with_if_none_match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_update_page_with_if_none_match.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_access_conditions.test_update_page_with_if_unmodified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_access_conditions.test_update_page_with_if_unmodified.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_encryption.test_create_block_blob_from_star.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_encryption.test_create_block_blob_from_star.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_encryption.test_create_page_blob_from_star.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_encryption.test_create_page_blob_from_star.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_encryption.test_get_blob_kek.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_encryption.test_get_blob_kek.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_encryption.test_get_blob_nonmatching_kid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_encryption.test_get_blob_nonmatching_kid.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_encryption.test_get_blob_range_beginning_to_middle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_encryption.test_get_blob_range_beginning_to_middle.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_encryption.test_get_blob_range_middle_to_end.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_encryption.test_get_blob_range_middle_to_end.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_encryption.test_get_blob_range_middle_to_middle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_encryption.test_get_blob_range_middle_to_middle.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_encryption.test_get_blob_resolver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_encryption.test_get_blob_resolver.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_encryption.test_get_blob_strict_mode_no_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_encryption.test_get_blob_strict_mode_no_policy.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_encryption.test_get_blob_strict_mode_unencrypted_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_encryption.test_get_blob_strict_mode_unencrypted_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_encryption.test_get_blob_to_star.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_encryption.test_get_blob_to_star.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_encryption.test_invalid_value_kek_unwrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_encryption.test_invalid_value_kek_unwrap.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_encryption.test_missing_attribute_kek_unwrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_encryption.test_missing_attribute_kek_unwrap.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_encryption.test_put_blob_empty.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_encryption.test_put_blob_empty.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_encryption.test_put_blob_range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_encryption.test_put_blob_range.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_encryption.test_put_blob_serial_upload_chunking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_encryption.test_put_blob_serial_upload_chunking.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_encryption.test_put_block_blob_single_shot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_encryption.test_put_block_blob_single_shot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_encryption.test_validate_encryption.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_encryption.test_validate_encryption.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_sas.test_get_user_delegation_key.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_sas.test_get_user_delegation_key.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_storage_account.test_batch_set_non_existing_blob_tier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_storage_account.test_batch_set_non_existing_blob_tier.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_storage_account.test_batch_set_standard_blob_tier_api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_storage_account.test_batch_set_standard_blob_tier_api.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_storage_account.test_batch_set_three_blob_tier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_storage_account.test_batch_set_three_blob_tier.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_storage_account.test_rehydration_status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_storage_account.test_rehydration_status.yaml -------------------------------------------------------------------------------- /tests/recordings/test_blob_storage_account.test_standard_blob_tier_set_tier_api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_blob_storage_account.test_standard_blob_tier_set_tier_api.yaml -------------------------------------------------------------------------------- /tests/recordings/test_block_blob.test_create_blob_from_0_bytes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_block_blob.test_create_blob_from_0_bytes.yaml -------------------------------------------------------------------------------- /tests/recordings/test_block_blob.test_create_blob_from_bytes_non_parallel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_block_blob.test_create_blob_from_bytes_non_parallel.yaml -------------------------------------------------------------------------------- /tests/recordings/test_block_blob.test_create_blob_from_bytes_single_put.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_block_blob.test_create_blob_from_bytes_single_put.yaml -------------------------------------------------------------------------------- /tests/recordings/test_block_blob.test_create_blob_from_path_non_parallel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_block_blob.test_create_blob_from_path_non_parallel.yaml -------------------------------------------------------------------------------- /tests/recordings/test_block_blob.test_create_blob_from_text.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_block_blob.test_create_blob_from_text.yaml -------------------------------------------------------------------------------- /tests/recordings/test_block_blob.test_create_blob_from_text_with_encoding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_block_blob.test_create_blob_from_text_with_encoding.yaml -------------------------------------------------------------------------------- /tests/recordings/test_block_blob.test_create_blob_with_md5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_block_blob.test_create_blob_with_md5.yaml -------------------------------------------------------------------------------- /tests/recordings/test_block_blob.test_get_block_list_committed_blocks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_block_blob.test_get_block_list_committed_blocks.yaml -------------------------------------------------------------------------------- /tests/recordings/test_block_blob.test_get_block_list_no_blocks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_block_blob.test_get_block_list_no_blocks.yaml -------------------------------------------------------------------------------- /tests/recordings/test_block_blob.test_get_block_list_uncommitted_blocks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_block_blob.test_get_block_list_uncommitted_blocks.yaml -------------------------------------------------------------------------------- /tests/recordings/test_block_blob.test_put_block.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_block_blob.test_put_block.yaml -------------------------------------------------------------------------------- /tests/recordings/test_block_blob.test_put_block_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_block_blob.test_put_block_list.yaml -------------------------------------------------------------------------------- /tests/recordings/test_block_blob.test_put_block_list_invalid_block_id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_block_blob.test_put_block_list_invalid_block_id.yaml -------------------------------------------------------------------------------- /tests/recordings/test_block_blob.test_put_block_list_with_blob_tier_specified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_block_blob.test_put_block_list_with_blob_tier_specified.yaml -------------------------------------------------------------------------------- /tests/recordings/test_block_blob.test_put_block_list_with_md5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_block_blob.test_put_block_list_with_md5.yaml -------------------------------------------------------------------------------- /tests/recordings/test_block_blob.test_put_block_unicode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_block_blob.test_put_block_unicode.yaml -------------------------------------------------------------------------------- /tests/recordings/test_block_blob.test_put_block_with_md5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_block_blob.test_put_block_with_md5.yaml -------------------------------------------------------------------------------- /tests/recordings/test_block_blob_sync_copy.test_copy_blob_sync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_block_blob_sync_copy.test_copy_blob_sync.yaml -------------------------------------------------------------------------------- /tests/recordings/test_block_blob_sync_copy.test_put_block_from_url_and_commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_block_blob_sync_copy.test_put_block_from_url_and_commit.yaml -------------------------------------------------------------------------------- /tests/recordings/test_client.test_client_request_id_echo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_client.test_client_request_id_echo.yaml -------------------------------------------------------------------------------- /tests/recordings/test_client.test_request_callback_signed_header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_client.test_request_callback_signed_header.yaml -------------------------------------------------------------------------------- /tests/recordings/test_client.test_response_callback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_client.test_response_callback.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_abort_copy_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_abort_copy_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_batch_delete_one_existing_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_batch_delete_one_existing_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_batch_delete_two_non_existing_blobs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_batch_delete_two_non_existing_blobs.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_blob_container_not_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_blob_container_not_exists.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_blob_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_blob_exists.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_blob_not_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_blob_not_exists.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_blob_snapshot_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_blob_snapshot_exists.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_blob_snapshot_not_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_blob_snapshot_not_exists.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_copy_blob_async_private_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_copy_blob_async_private_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_copy_blob_async_private_blob_with_sas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_copy_blob_async_private_blob_with_sas.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_copy_blob_with_blob_tier_specified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_copy_blob_with_blob_tier_specified.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_copy_blob_with_existing_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_copy_blob_with_existing_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_copy_blob_with_rehydrate_priority.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_copy_blob_with_rehydrate_priority.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_create_blob_blob_unicode_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_create_blob_blob_unicode_data.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_create_blob_with_lease_id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_create_blob_with_lease_id.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_create_blob_with_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_create_blob_with_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_create_blob_with_question_mark.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_create_blob_with_question_mark.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_create_blob_with_special_chars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_create_blob_with_special_chars.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_delete_blob_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_delete_blob_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_delete_blob_snapshots.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_delete_blob_snapshots.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_delete_blob_with_existing_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_delete_blob_with_existing_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_delete_blob_with_non_existing_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_delete_blob_with_non_existing_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_delete_blob_with_snapshots.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_delete_blob_with_snapshots.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_get_account_information.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_get_account_information.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_get_account_information_with_blob_name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_get_account_information_with_blob_name.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_get_blob_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_get_blob_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_get_blob_metadata_fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_get_blob_metadata_fail.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_get_blob_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_get_blob_properties.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_get_blob_properties_fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_get_blob_properties_fail.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_get_blob_properties_server_encryption.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_get_blob_properties_server_encryption.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_get_blob_properties_with_leased_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_get_blob_properties_with_leased_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_get_blob_properties_with_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_get_blob_properties_with_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_get_blob_server_encryption.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_get_blob_server_encryption.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_get_blob_with_existing_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_get_blob_with_existing_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_get_blob_with_lease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_get_blob_with_lease.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_get_blob_with_non_existing_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_get_blob_with_non_existing_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_get_blob_with_range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_get_blob_with_range.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_get_blob_with_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_get_blob_with_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_get_blob_with_snapshot_previous.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_get_blob_with_snapshot_previous.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_lease_blob_acquire_and_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_lease_blob_acquire_and_release.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_lease_blob_acquire_and_renew.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_lease_blob_acquire_and_renew.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_lease_blob_acquire_twice_fails.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_lease_blob_acquire_twice_fails.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_lease_blob_break_period.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_lease_blob_break_period.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_lease_blob_change_lease_id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_lease_blob_change_lease_id.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_lease_blob_with_duration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_lease_blob_with_duration.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_lease_blob_with_proposed_lease_id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_lease_blob_with_proposed_lease_id.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_list_blobs_server_encryption.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_list_blobs_server_encryption.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_no_sas_private_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_no_sas_private_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_no_sas_public_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_no_sas_public_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_no_server_encryption.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_no_server_encryption.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_public_access_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_public_access_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_set_blob_metadata_with_upper_case.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_set_blob_metadata_with_upper_case.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_set_blob_properties_with_existing_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_set_blob_properties_with_existing_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_snapshot_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_snapshot_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_soft_delete_blob_including_all_snapshots.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_soft_delete_blob_including_all_snapshots.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_soft_delete_blob_without_snapshots.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_soft_delete_blob_without_snapshots.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_soft_delete_only_snapshots_of_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_soft_delete_only_snapshots_of_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_soft_delete_single_blob_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_soft_delete_single_blob_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_soft_delete_with_leased_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_soft_delete_with_leased_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_token_credential.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_token_credential.yaml -------------------------------------------------------------------------------- /tests/recordings/test_common_blob.test_unicode_get_blob_unicode_name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_common_blob.test_unicode_get_blob_unicode_name.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_container_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_container_exists.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_container_exists_with_lease.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_container_exists_with_lease.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_container_not_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_container_not_exists.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_create_container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_create_container.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_create_container_fail_on_exist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_create_container_fail_on_exist.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_create_container_with_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_create_container_with_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_create_container_with_public_access_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_create_container_with_public_access_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_delete_container_with_existing_container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_delete_container_with_existing_container.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_delete_container_with_lease_id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_delete_container_with_lease_id.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_get_container_acl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_get_container_acl.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_get_container_acl_with_lease_id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_get_container_acl_with_lease_id.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_get_container_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_get_container_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_get_container_metadata_with_lease_id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_get_container_metadata_with_lease_id.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_get_container_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_get_container_properties.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_get_container_properties_with_lease_id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_get_container_properties_with_lease_id.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_lease_container_acquire_and_release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_lease_container_acquire_and_release.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_lease_container_break_period.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_lease_container_break_period.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_lease_container_break_released_lease_fails.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_lease_container_break_released_lease_fails.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_lease_container_change_lease_id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_lease_container_change_lease_id.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_lease_container_renew.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_lease_container_renew.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_lease_container_with_duration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_lease_container_with_duration.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_lease_container_with_proposed_lease_id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_lease_container_with_proposed_lease_id.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_list_blobs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_list_blobs.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_list_blobs_leased_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_list_blobs_leased_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_list_blobs_with_delimiter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_list_blobs_with_delimiter.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_list_blobs_with_include_copy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_list_blobs_with_include_copy.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_list_blobs_with_include_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_list_blobs_with_include_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_list_blobs_with_include_multiple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_list_blobs_with_include_multiple.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_list_blobs_with_include_snapshots.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_list_blobs_with_include_snapshots.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_list_blobs_with_include_uncommittedblobs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_list_blobs_with_include_uncommittedblobs.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_list_blobs_with_num_results.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_list_blobs_with_num_results.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_list_blobs_with_prefix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_list_blobs_with_prefix.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_list_containers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_list_containers.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_list_containers_with_include_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_list_containers_with_include_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_list_containers_with_num_results_and_marker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_list_containers_with_num_results_and_marker.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_list_containers_with_prefix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_list_containers_with_prefix.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_list_containers_with_public_access.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_list_containers_with_public_access.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_list_names.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_list_names.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_set_container_acl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_set_container_acl.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_set_container_acl_too_many_ids.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_set_container_acl_too_many_ids.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_set_container_acl_with_lease_id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_set_container_acl_with_lease_id.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_set_container_acl_with_public_access.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_set_container_acl_with_public_access.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_set_container_acl_with_signed_identifiers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_set_container_acl_with_signed_identifiers.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_set_container_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_set_container_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_set_container_metadata_with_lease_id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_set_container_metadata_with_lease_id.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_unicode_create_container_unicode_name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_unicode_create_container_unicode_name.yaml -------------------------------------------------------------------------------- /tests/recordings/test_container.test_web_container_normal_operations_working.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_container.test_web_container_normal_operations_working.yaml -------------------------------------------------------------------------------- /tests/recordings/test_cpk.test_append_block.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_cpk.test_append_block.yaml -------------------------------------------------------------------------------- /tests/recordings/test_cpk.test_append_block_from_url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_cpk.test_append_block_from_url.yaml -------------------------------------------------------------------------------- /tests/recordings/test_cpk.test_create_append_blob_with_chunks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_cpk.test_create_append_blob_with_chunks.yaml -------------------------------------------------------------------------------- /tests/recordings/test_cpk.test_create_block_blob_with_chunks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_cpk.test_create_block_blob_with_chunks.yaml -------------------------------------------------------------------------------- /tests/recordings/test_cpk.test_create_block_blob_with_single_chunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_cpk.test_create_block_blob_with_single_chunk.yaml -------------------------------------------------------------------------------- /tests/recordings/test_cpk.test_create_page_blob_with_chunks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_cpk.test_create_page_blob_with_chunks.yaml -------------------------------------------------------------------------------- /tests/recordings/test_cpk.test_get_set_blob_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_cpk.test_get_set_blob_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_cpk.test_get_set_blob_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_cpk.test_get_set_blob_properties.yaml -------------------------------------------------------------------------------- /tests/recordings/test_cpk.test_put_block_and_put_block_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_cpk.test_put_block_and_put_block_list.yaml -------------------------------------------------------------------------------- /tests/recordings/test_cpk.test_put_block_from_url_and_commit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_cpk.test_put_block_from_url_and_commit.yaml -------------------------------------------------------------------------------- /tests/recordings/test_cpk.test_snapshot_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_cpk.test_snapshot_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_cpk.test_update_page.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_cpk.test_update_page.yaml -------------------------------------------------------------------------------- /tests/recordings/test_cpk.test_update_page_from_url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_cpk.test_update_page_from_url.yaml -------------------------------------------------------------------------------- /tests/recordings/test_directory.test_create_directories.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_directory.test_create_directories.yaml -------------------------------------------------------------------------------- /tests/recordings/test_directory.test_create_directories_fail_on_exist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_directory.test_create_directories_fail_on_exist.yaml -------------------------------------------------------------------------------- /tests/recordings/test_directory.test_create_directories_with_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_directory.test_create_directories_with_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_directory.test_delete_directory_with_existing_share.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_directory.test_delete_directory_with_existing_share.yaml -------------------------------------------------------------------------------- /tests/recordings/test_directory.test_directory_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_directory.test_directory_exists.yaml -------------------------------------------------------------------------------- /tests/recordings/test_directory.test_directory_exists_with_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_directory.test_directory_exists_with_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_directory.test_directory_not_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_directory.test_directory_not_exists.yaml -------------------------------------------------------------------------------- /tests/recordings/test_directory.test_directory_not_exists_with_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_directory.test_directory_not_exists_with_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_directory.test_directory_parent_not_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_directory.test_directory_parent_not_exists.yaml -------------------------------------------------------------------------------- /tests/recordings/test_directory.test_get_directory_metadata_with_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_directory.test_get_directory_metadata_with_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_directory.test_get_directory_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_directory.test_get_directory_properties.yaml -------------------------------------------------------------------------------- /tests/recordings/test_directory.test_get_directory_properties_server_encryption.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_directory.test_get_directory_properties_server_encryption.yaml -------------------------------------------------------------------------------- /tests/recordings/test_directory.test_get_directory_properties_with_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_directory.test_get_directory_properties_with_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_directory.test_get_set_directory_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_directory.test_get_set_directory_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_abort_copy_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_abort_copy_file.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_abort_copy_file_with_synchronous_copy_fails.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_abort_copy_file_with_synchronous_copy_fails.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_clear_range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_clear_range.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_copy_file_async_private_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_copy_file_async_private_file.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_copy_file_async_private_file_with_sas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_copy_file_async_private_file_with_sas.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_copy_file_with_existing_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_copy_file_with_existing_file.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_create_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_create_file.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_create_file_from_text.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_create_file_from_text.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_create_file_from_text_with_encoding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_create_file_from_text_with_encoding.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_create_file_will_set_all_smb_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_create_file_will_set_all_smb_properties.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_create_file_with_invalid_file_permission.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_create_file_with_invalid_file_permission.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_create_file_with_md5_small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_create_file_with_md5_small.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_create_file_with_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_create_file_with_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_delete_file_with_existing_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_delete_file_with_existing_file.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_delete_file_with_non_existing_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_delete_file_with_non_existing_file.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_file_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_file_exists.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_file_exists_with_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_file_exists_with_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_file_not_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_file_not_exists.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_file_not_exists_with_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_file_not_exists_with_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_file_unicode_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_file_unicode_data.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_get_file_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_get_file_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_get_file_metadata_with_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_get_file_metadata_with_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_get_file_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_get_file_properties.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_get_file_properties_with_non_existing_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_get_file_properties_with_non_existing_file.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_get_file_properties_with_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_get_file_properties_with_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_list_ranges_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_list_ranges_2.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_list_ranges_2_from_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_list_ranges_2_from_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_list_ranges_none.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_list_ranges_none.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_list_ranges_none_from_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_list_ranges_none_from_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_resize_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_resize_file.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_set_file_metadata_with_upper_case.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_set_file_metadata_with_upper_case.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_set_file_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_set_file_properties.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_set_file_properties_with_file_permission.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_set_file_properties_with_file_permission.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_unicode_get_file_binary_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_unicode_get_file_binary_data.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_unicode_get_file_unicode_name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_unicode_get_file_unicode_name.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_update_big_range_from_file_url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_update_big_range_from_file_url.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_update_file_unicode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_update_file_unicode.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_update_range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_update_range.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_update_range_from_file_url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_update_range_from_file_url.yaml -------------------------------------------------------------------------------- /tests/recordings/test_file.test_update_range_with_md5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_file.test_update_range_with_md5.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_blob.test_get_blob_exact_get_size.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_blob.test_get_blob_exact_get_size.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_blob.test_get_blob_no_content.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_blob.test_get_blob_no_content.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_blob.test_get_blob_non_seekable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_blob.test_get_blob_non_seekable.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_blob.test_get_blob_to_bytes_non_parallel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_blob.test_get_blob_to_bytes_non_parallel.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_blob.test_get_blob_to_bytes_small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_blob.test_get_blob_to_bytes_small.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_blob.test_get_blob_to_path_non_parallel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_blob.test_get_blob_to_path_non_parallel.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_blob.test_get_blob_to_path_small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_blob.test_get_blob_to_path_small.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_blob.test_get_blob_to_stream_non_parallel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_blob.test_get_blob_to_stream_non_parallel.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_blob.test_get_blob_to_stream_small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_blob.test_get_blob_to_stream_small.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_blob.test_get_blob_to_text_non_parallel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_blob.test_get_blob_to_text_non_parallel.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_blob.test_get_blob_to_text_small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_blob.test_get_blob_to_text_small.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_blob.test_get_blob_to_text_with_encoding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_blob.test_get_blob_to_text_with_encoding.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_blob.test_get_blob_to_text_with_encoding_and_progress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_blob.test_get_blob_to_text_with_encoding_and_progress.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_blob.test_ranged_get_blob_to_bytes_with_zero_byte.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_blob.test_ranged_get_blob_to_bytes_with_zero_byte.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_blob.test_ranged_get_blob_to_path_non_parallel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_blob.test_ranged_get_blob_to_path_non_parallel.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_blob.test_ranged_get_blob_to_path_small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_blob.test_ranged_get_blob_to_path_small.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_blob.test_ranged_get_blob_with_missing_start_range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_blob.test_ranged_get_blob_with_missing_start_range.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_blob.test_unicode_get_blob_binary_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_blob.test_unicode_get_blob_binary_data.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_blob.test_unicode_get_blob_unicode_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_blob.test_unicode_get_blob_unicode_data.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_get_file_exact_get_size.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_get_file_exact_get_size.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_get_file_no_content.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_get_file_no_content.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_get_file_non_seekable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_get_file_non_seekable.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_get_file_non_seekable_from_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_get_file_non_seekable_from_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_get_file_properties_server_encryption.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_get_file_properties_server_encryption.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_get_file_server_encryption.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_get_file_server_encryption.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_get_file_to_bytes_non_parallel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_get_file_to_bytes_non_parallel.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_get_file_to_bytes_small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_get_file_to_bytes_small.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_get_file_to_path_non_parallel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_get_file_to_path_non_parallel.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_get_file_to_path_small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_get_file_to_path_small.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_get_file_to_stream_non_parallel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_get_file_to_stream_non_parallel.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_get_file_to_stream_small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_get_file_to_stream_small.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_get_file_to_stream_small_from_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_get_file_to_stream_small_from_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_get_file_to_text_non_parallel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_get_file_to_text_non_parallel.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_get_file_to_text_small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_get_file_to_text_small.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_get_file_to_text_with_encoding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_get_file_to_text_with_encoding.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_get_file_to_text_with_encoding_and_progress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_get_file_to_text_with_encoding_and_progress.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_ranged_get_file_to_bytes_with_zero_byte.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_ranged_get_file_to_bytes_with_zero_byte.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_ranged_get_file_to_path_non_parallel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_ranged_get_file_to_path_non_parallel.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_ranged_get_file_to_path_small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_ranged_get_file_to_path_small.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_unicode_get_file_binary_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_unicode_get_file_binary_data.yaml -------------------------------------------------------------------------------- /tests/recordings/test_get_file.test_unicode_get_file_unicode_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_get_file.test_unicode_get_file_unicode_data.yaml -------------------------------------------------------------------------------- /tests/recordings/test_handle.test_close_all_handle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_handle.test_close_all_handle.yaml -------------------------------------------------------------------------------- /tests/recordings/test_handle.test_close_single_handle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_handle.test_close_single_handle.yaml -------------------------------------------------------------------------------- /tests/recordings/test_handle.test_list_handles_on_directory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_handle.test_list_handles_on_directory.yaml -------------------------------------------------------------------------------- /tests/recordings/test_handle.test_list_handles_on_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_handle.test_list_handles_on_file.yaml -------------------------------------------------------------------------------- /tests/recordings/test_handle.test_list_handles_on_share.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_handle.test_list_handles_on_share.yaml -------------------------------------------------------------------------------- /tests/recordings/test_handle.test_list_handles_on_share_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_handle.test_list_handles_on_share_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_handle.test_list_handles_with_marker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_handle.test_list_handles_with_marker.yaml -------------------------------------------------------------------------------- /tests/recordings/test_logging.test_authorization_is_scrubbed_off.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_logging.test_authorization_is_scrubbed_off.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_blob_tier_copy_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_blob_tier_copy_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_blob_tier_on_create.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_blob_tier_on_create.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_blob_tier_set_tier_api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_blob_tier_set_tier_api.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_clear_page.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_clear_page.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_create_8tb_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_create_8tb_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_create_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_create_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_create_blob_from_bytes_with_index_and_count.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_create_blob_from_bytes_with_index_and_count.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_create_blob_with_md5_small.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_create_blob_with_md5_small.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_create_blob_with_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_create_blob_with_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_create_larger_than_8tb_blob_fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_create_larger_than_8tb_blob_fail.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_get_page_ranges_2_pages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_get_page_ranges_2_pages.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_get_page_ranges_diff.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_get_page_ranges_diff.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_get_page_ranges_no_pages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_get_page_ranges_no_pages.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_put_page_if_sequence_number_lt_success.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_put_page_if_sequence_number_lt_success.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_put_page_with_lease_id.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_put_page_with_lease_id.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_resize_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_resize_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_set_sequence_number_blob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_set_sequence_number_blob.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_update_8tb_blob_page.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_update_8tb_blob_page.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_update_page.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_update_page.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_update_page_fail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_update_page_fail.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_update_page_from_url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_update_page_from_url.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_update_page_from_url_with_if_match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_update_page_from_url_with_if_match.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_update_page_from_url_with_if_modified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_update_page_from_url_with_if_modified.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_update_page_from_url_with_if_none_match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_update_page_from_url_with_if_none_match.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_update_page_from_url_with_if_unmodified.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_update_page_from_url_with_if_unmodified.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_update_page_from_url_with_source_if_match.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_update_page_from_url_with_source_if_match.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_update_page_if_sequence_number_eq_failure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_update_page_if_sequence_number_eq_failure.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_update_page_if_sequence_number_eq_success.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_update_page_if_sequence_number_eq_success.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_update_page_if_sequence_number_lt_failure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_update_page_if_sequence_number_lt_failure.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_update_page_if_sequence_number_lte_failure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_update_page_if_sequence_number_lte_failure.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_update_page_if_sequence_number_lte_success.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_update_page_if_sequence_number_lte_success.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_update_page_unicode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_update_page_unicode.yaml -------------------------------------------------------------------------------- /tests/recordings/test_page_blob.test_update_page_with_md5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_page_blob.test_update_page_with_md5.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_clear_messages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_clear_messages.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_create_queue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_create_queue.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_create_queue_already_exist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_create_queue_already_exist.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_create_queue_already_exist_different_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_create_queue_already_exist_different_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_create_queue_fail_on_exist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_create_queue_fail_on_exist.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_create_queue_fail_on_exist_different_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_create_queue_fail_on_exist_different_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_create_queue_with_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_create_queue_with_options.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_delete_existing_queue_fail_not_exist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_delete_existing_queue_fail_not_exist.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_delete_message.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_delete_message.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_delete_non_existing_queue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_delete_non_existing_queue.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_delete_non_existing_queue_fail_not_exist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_delete_non_existing_queue_fail_not_exist.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_get_messages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_get_messages.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_get_messages_with_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_get_messages_with_options.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_get_queue_acl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_get_queue_acl.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_get_queue_acl_iter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_get_queue_acl_iter.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_get_queue_acl_with_non_existing_queue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_get_queue_acl_with_non_existing_queue.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_get_queue_metadata_message_count.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_get_queue_metadata_message_count.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_list_queues.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_list_queues.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_list_queues_with_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_list_queues_with_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_list_queues_with_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_list_queues_with_options.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_peek_messages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_peek_messages.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_peek_messages_with_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_peek_messages_with_options.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_put_message.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_put_message.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_put_message_infinite_time_to_live.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_put_message_infinite_time_to_live.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_put_message_large_time_to_live.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_put_message_large_time_to_live.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_queue_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_queue_exists.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_queue_not_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_queue_not_exists.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_set_queue_acl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_set_queue_acl.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_set_queue_acl_too_many_ids.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_set_queue_acl_too_many_ids.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_set_queue_acl_with_empty_signed_identifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_set_queue_acl_with_empty_signed_identifier.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_set_queue_acl_with_empty_signed_identifiers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_set_queue_acl_with_empty_signed_identifiers.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_set_queue_acl_with_non_existing_queue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_set_queue_acl_with_non_existing_queue.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_set_queue_acl_with_signed_identifiers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_set_queue_acl_with_signed_identifiers.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_set_queue_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_set_queue_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_token_credential.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_token_credential.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_unicode_create_queue_unicode_name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_unicode_create_queue_unicode_name.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_unicode_get_messages_unicode_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_unicode_get_messages_unicode_data.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_unicode_update_message_unicode_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_unicode_update_message_unicode_data.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_update_message.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_update_message.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue.test_update_message_content.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue.test_update_message_content.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encodings.test_message_base64_decode_fails.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encodings.test_message_base64_decode_fails.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encodings.test_message_bytes_base64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encodings.test_message_bytes_base64.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encodings.test_message_text_base64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encodings.test_message_text_base64.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encodings.test_message_text_xml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encodings.test_message_text_xml.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encodings.test_message_text_xml_invalid_chars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encodings.test_message_text_xml_invalid_chars.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encodings.test_message_text_xml_whitespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encodings.test_message_text_xml_whitespace.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encryption.test_encryption_add_encrypted_64k_message.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encryption.test_encryption_add_encrypted_64k_message.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encryption.test_encryption_nonmatching_kid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encryption.test_encryption_nonmatching_kid.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encryption.test_get_messages_encrypted_kek.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encryption.test_get_messages_encrypted_kek.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encryption.test_get_messages_encrypted_resolver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encryption.test_get_messages_encrypted_resolver.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encryption.test_get_with_strict_mode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encryption.test_get_with_strict_mode.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encryption.test_invalid_value_kek_unwrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encryption.test_invalid_value_kek_unwrap.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encryption.test_invalid_value_kek_wrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encryption.test_invalid_value_kek_wrap.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encryption.test_missing_attribute_kek_unrwap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encryption.test_missing_attribute_kek_unrwap.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encryption.test_missing_attribute_kek_wrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encryption.test_missing_attribute_kek_wrap.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encryption.test_peek_messages_encrypted_kek.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encryption.test_peek_messages_encrypted_kek.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encryption.test_peek_messages_encrypted_resolver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encryption.test_peek_messages_encrypted_resolver.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encryption.test_put_with_strict_mode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encryption.test_put_with_strict_mode.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encryption.test_update_encrypted_binary_message.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encryption.test_update_encrypted_binary_message.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encryption.test_update_encrypted_json_message.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encryption.test_update_encrypted_json_message.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encryption.test_update_encrypted_message.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encryption.test_update_encrypted_message.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encryption.test_update_encrypted_raw_text_message.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encryption.test_update_encrypted_raw_text_message.yaml -------------------------------------------------------------------------------- /tests/recordings/test_queue_encryption.test_validate_encryption.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_queue_encryption.test_validate_encryption.yaml -------------------------------------------------------------------------------- /tests/recordings/test_retry.test_exponential_retry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_retry.test_exponential_retry.yaml -------------------------------------------------------------------------------- /tests/recordings/test_retry.test_invalid_retry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_retry.test_invalid_retry.yaml -------------------------------------------------------------------------------- /tests/recordings/test_retry.test_linear_retry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_retry.test_linear_retry.yaml -------------------------------------------------------------------------------- /tests/recordings/test_retry.test_location_lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_retry.test_location_lock.yaml -------------------------------------------------------------------------------- /tests/recordings/test_retry.test_no_retry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_retry.test_no_retry.yaml -------------------------------------------------------------------------------- /tests/recordings/test_retry.test_retry_callback_and_retry_context.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_retry.test_retry_callback_and_retry_context.yaml -------------------------------------------------------------------------------- /tests/recordings/test_retry.test_retry_on_server_error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_retry.test_retry_on_server_error.yaml -------------------------------------------------------------------------------- /tests/recordings/test_retry.test_retry_on_socket_timeout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_retry.test_retry_on_socket_timeout.yaml -------------------------------------------------------------------------------- /tests/recordings/test_retry.test_retry_on_timeout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_retry.test_retry_on_timeout.yaml -------------------------------------------------------------------------------- /tests/recordings/test_retry.test_retry_to_secondary_with_get.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_retry.test_retry_to_secondary_with_get.yaml -------------------------------------------------------------------------------- /tests/recordings/test_retry.test_retry_to_secondary_with_put.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_retry.test_retry_to_secondary_with_put.yaml -------------------------------------------------------------------------------- /tests/recordings/test_retry.test_retry_with_deserialization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_retry.test_retry_with_deserialization.yaml -------------------------------------------------------------------------------- /tests/recordings/test_retry.test_secondary_location_mode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_retry.test_secondary_location_mode.yaml -------------------------------------------------------------------------------- /tests/recordings/test_service_properties.test_blob_service_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_service_properties.test_blob_service_properties.yaml -------------------------------------------------------------------------------- /tests/recordings/test_service_properties.test_disabled_static_website_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_service_properties.test_disabled_static_website_properties.yaml -------------------------------------------------------------------------------- /tests/recordings/test_service_properties.test_file_service_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_service_properties.test_file_service_properties.yaml -------------------------------------------------------------------------------- /tests/recordings/test_service_properties.test_queue_service_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_service_properties.test_queue_service_properties.yaml -------------------------------------------------------------------------------- /tests/recordings/test_service_properties.test_retention_too_long.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_service_properties.test_retention_too_long.yaml -------------------------------------------------------------------------------- /tests/recordings/test_service_properties.test_set_cors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_service_properties.test_set_cors.yaml -------------------------------------------------------------------------------- /tests/recordings/test_service_properties.test_set_default_service_version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_service_properties.test_set_default_service_version.yaml -------------------------------------------------------------------------------- /tests/recordings/test_service_properties.test_set_delete_retention_policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_service_properties.test_set_delete_retention_policy.yaml -------------------------------------------------------------------------------- /tests/recordings/test_service_properties.test_set_hour_metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_service_properties.test_set_hour_metrics.yaml -------------------------------------------------------------------------------- /tests/recordings/test_service_properties.test_set_logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_service_properties.test_set_logging.yaml -------------------------------------------------------------------------------- /tests/recordings/test_service_properties.test_set_minute_metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_service_properties.test_set_minute_metrics.yaml -------------------------------------------------------------------------------- /tests/recordings/test_service_properties.test_set_static_website_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_service_properties.test_set_static_website_properties.yaml -------------------------------------------------------------------------------- /tests/recordings/test_service_properties.test_too_many_cors_rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_service_properties.test_too_many_cors_rules.yaml -------------------------------------------------------------------------------- /tests/recordings/test_service_stats.test_blob_service_stats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_service_stats.test_blob_service_stats.yaml -------------------------------------------------------------------------------- /tests/recordings/test_service_stats.test_blob_service_stats_when_unavailable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_service_stats.test_blob_service_stats_when_unavailable.yaml -------------------------------------------------------------------------------- /tests/recordings/test_service_stats.test_queue_service_stats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_service_stats.test_queue_service_stats.yaml -------------------------------------------------------------------------------- /tests/recordings/test_service_stats.test_queue_service_stats_when_unavailable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_service_stats.test_queue_service_stats_when_unavailable.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_create_permission_for_share.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_create_permission_for_share.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_create_share.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_create_share.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_create_share_fail_on_exist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_create_share_fail_on_exist.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_create_share_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_create_share_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_create_share_with_already_existing_share.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_create_share_with_already_existing_share.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_create_share_with_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_create_share_with_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_create_share_with_quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_create_share_with_quota.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_create_snapshot_with_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_create_snapshot_with_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_delete_share_with_existing_share.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_delete_share_with_existing_share.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_delete_share_with_existing_share_fail_not_exist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_delete_share_with_existing_share_fail_not_exist.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_delete_share_with_non_existing_share.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_delete_share_with_non_existing_share.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_delete_share_with_snapshots.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_delete_share_with_snapshots.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_delete_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_delete_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_get_share_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_get_share_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_get_share_metadata_with_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_get_share_metadata_with_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_get_share_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_get_share_properties.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_get_share_properties_with_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_get_share_properties_with_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_get_share_stats.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_get_share_stats.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_list_directories_and_files.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_list_directories_and_files.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_list_directories_and_files_with_num_results.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_list_directories_and_files_with_num_results.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_list_directories_and_files_with_prefix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_list_directories_and_files_with_prefix.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_list_directories_and_files_with_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_list_directories_and_files_with_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_list_shares_no_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_list_shares_no_options.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_list_shares_with_include_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_list_shares_with_include_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_list_shares_with_num_results_and_marker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_list_shares_with_num_results_and_marker.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_list_shares_with_prefix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_list_shares_with_prefix.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_list_shares_with_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_list_shares_with_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_set_share_acl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_set_share_acl.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_set_share_acl_too_many_ids.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_set_share_acl_too_many_ids.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_set_share_acl_with_empty_signed_identifier.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_set_share_acl_with_empty_signed_identifier.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_set_share_acl_with_empty_signed_identifiers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_set_share_acl_with_empty_signed_identifiers.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_set_share_acl_with_signed_identifiers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_set_share_acl_with_signed_identifiers.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_set_share_metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_set_share_metadata.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_set_share_properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_set_share_properties.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_share_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_share_exists.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_share_not_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_share_not_exists.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_share_snapshot_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_share_snapshot_exists.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_share_snapshot_not_exists.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_share_snapshot_not_exists.yaml -------------------------------------------------------------------------------- /tests/recordings/test_share.test_unicode_create_share_unicode_name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings/test_share.test_unicode_create_share_unicode_name.yaml -------------------------------------------------------------------------------- /tests/recordings_backup/test_handle.test_close_all_handle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings_backup/test_handle.test_close_all_handle.yaml -------------------------------------------------------------------------------- /tests/recordings_backup/test_handle.test_close_single_handle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings_backup/test_handle.test_close_single_handle.yaml -------------------------------------------------------------------------------- /tests/recordings_backup/test_handle.test_list_handles_on_directory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings_backup/test_handle.test_list_handles_on_directory.yaml -------------------------------------------------------------------------------- /tests/recordings_backup/test_handle.test_list_handles_on_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings_backup/test_handle.test_list_handles_on_file.yaml -------------------------------------------------------------------------------- /tests/recordings_backup/test_handle.test_list_handles_on_share.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings_backup/test_handle.test_list_handles_on_share.yaml -------------------------------------------------------------------------------- /tests/recordings_backup/test_handle.test_list_handles_on_share_snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings_backup/test_handle.test_list_handles_on_share_snapshot.yaml -------------------------------------------------------------------------------- /tests/recordings_backup/test_handle.test_list_handles_with_marker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/recordings_backup/test_handle.test_list_handles_with_marker.yaml -------------------------------------------------------------------------------- /tests/run-storage.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/run-storage.bat -------------------------------------------------------------------------------- /tests/settings_fake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/settings_fake.py -------------------------------------------------------------------------------- /tests/testcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tests/testcase.py -------------------------------------------------------------------------------- /tool_build_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tool_build_packages.py -------------------------------------------------------------------------------- /tool_clean_build_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tool_clean_build_files.sh -------------------------------------------------------------------------------- /tool_reset_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tool_reset_account.py -------------------------------------------------------------------------------- /tool_validate_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-python/HEAD/tool_validate_packages.py --------------------------------------------------------------------------------