azure-storage-blob 12.21.0__tar.gz → 12.21.0b1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/CHANGELOG.md +0 -8
- {azure-storage-blob-12.21.0/azure_storage_blob.egg-info → azure-storage-blob-12.21.0b1}/PKG-INFO +3 -8
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_blob_client.py +48 -53
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_blob_service_client.py +11 -11
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_container_client.py +20 -22
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_download.py +167 -277
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_lease.py +5 -5
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_models.py +1 -1
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_version.py +1 -1
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/aio/_blob_client_async.py +46 -49
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/aio/_blob_service_client_async.py +10 -10
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/aio/_container_client_async.py +19 -22
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/aio/_download_async.py +209 -317
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/aio/_lease_async.py +5 -5
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1/azure_storage_blob.egg-info}/PKG-INFO +3 -8
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure_storage_blob.egg-info/SOURCES.txt +0 -1
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/setup.py +1 -1
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/settings/settings_fake.py +4 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/settings/testcase.py +4 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_append_blob.py +2 -2
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_append_blob_async.py +2 -2
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_blob_client.py +2 -2
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_blob_client_async.py +2 -3
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_blob_encryption_async.py +0 -2
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_blob_encryption_v2.py +0 -35
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_blob_encryption_v2_async.py +0 -35
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_block_blob.py +2 -2
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_block_blob_async.py +2 -2
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_block_blob_sync_copy.py +1 -1
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_block_blob_sync_copy_async.py +1 -1
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_common_blob.py +20 -20
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_common_blob_async.py +15 -16
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_container.py +2 -2
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_container_async.py +1 -1
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_cpk_n.py +1 -1
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_cpk_n_async.py +1 -1
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_get_blob.py +32 -185
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_get_blob_async.py +34 -205
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_helpers.py +1 -1
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_helpers_async.py +1 -1
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_page_blob.py +2 -2
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_page_blob_async.py +2 -2
- azure-storage-blob-12.21.0/azure/storage/blob/_generated/py.typed +0 -1
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/LICENSE +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/MANIFEST.in +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/README.md +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/__init__.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/__init__.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/__init__.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_deserialize.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_encryption.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/__init__.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/_azure_blob_storage.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/_configuration.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/_patch.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/_serialization.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/_vendor.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/aio/__init__.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/aio/_azure_blob_storage.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/aio/_configuration.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/aio/_patch.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/aio/operations/__init__.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/aio/operations/_append_blob_operations.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/aio/operations/_blob_operations.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/aio/operations/_block_blob_operations.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/aio/operations/_container_operations.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/aio/operations/_page_blob_operations.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/aio/operations/_patch.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/aio/operations/_service_operations.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/models/__init__.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/models/_azure_blob_storage_enums.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/models/_models_py3.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/models/_patch.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/operations/__init__.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/operations/_append_blob_operations.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/operations/_blob_operations.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/operations/_block_blob_operations.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/operations/_container_operations.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/operations/_page_blob_operations.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/operations/_patch.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_generated/operations/_service_operations.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_list_blobs_helper.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_quick_query_helper.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_serialize.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared/__init__.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared/authentication.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared/avro/__init__.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared/avro/avro_io.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared/avro/avro_io_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared/avro/datafile.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared/avro/datafile_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared/avro/schema.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared/base_client.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared/base_client_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared/constants.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared/models.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared/parser.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared/policies.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared/policies_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared/request_handlers.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared/response_handlers.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared/shared_access_signature.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared/uploads.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared/uploads_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_shared_access_signature.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_upload_helpers.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/aio/__init__.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/aio/_encryption_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/aio/_list_blobs_helper.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/aio/_models.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/aio/_upload_helpers.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/py.typed +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure_storage_blob.egg-info/dependency_links.txt +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure_storage_blob.egg-info/not-zip-safe +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure_storage_blob.egg-info/requires.txt +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure_storage_blob.egg-info/top_level.txt +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/migration_guide.md +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/pyproject.toml +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/README.md +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_authentication.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_authentication_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_batch_delete_blobs.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_client_side_encryption.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_client_side_encryption_keyvault.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_common.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_common_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_container_access_policy.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_container_access_policy_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_containers.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_containers_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_copy_blob.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_copy_blob_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_directory_interface.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_directory_interface_mimetype.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_enumerate_blobs.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_enumerate_blobs_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_hello_world.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_hello_world_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_network_activity_logging.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_proxy_configuration.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_query.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_service.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_service_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_walk_blob_hierarchy.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/samples/blob_samples_walk_blob_hierarchy_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/setup.cfg +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/avro/__init__.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/avro/test_avro.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/avro/test_avro_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/conftest.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/encryption_test_helper.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/fake_credentials.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/perfstress_tests/T1_legacy_tests/__init__.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/perfstress_tests/T1_legacy_tests/_test_base_legacy.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/perfstress_tests/T1_legacy_tests/download.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/perfstress_tests/T1_legacy_tests/list_blobs.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/perfstress_tests/T1_legacy_tests/upload.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/perfstress_tests/T1_legacy_tests/upload_block.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/perfstress_tests/T1_legacy_tests/upload_from_file.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/perfstress_tests/__init__.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/perfstress_tests/_test_base.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/perfstress_tests/download.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/perfstress_tests/key_wrapper.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/perfstress_tests/list_blobs.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/perfstress_tests/upload.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/perfstress_tests/upload_block.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/perfstress_tests/upload_from_file.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/settings/__init__.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_blob_access_conditions.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_blob_access_conditions_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_blob_api_version.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_blob_api_version_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_blob_encryption.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_blob_retry.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_blob_retry_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_blob_service_properties.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_blob_service_properties_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_blob_service_stats.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_blob_service_stats_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_blob_storage_account.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_blob_storage_account_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_blob_tags.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_blob_tags_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_cpk.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_cpk_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_dictmixin.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_large_block_blob.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_large_block_blob_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_largest_block_blob.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_largest_block_blob_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_logging.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_logging_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_ors.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_ors_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_quick_query.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_retry.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_retry_async.py +0 -0
- {azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/tests/test_upload_chunking.py +0 -0
@@ -1,13 +1,5 @@
|
|
1
1
|
# Release History
|
2
2
|
|
3
|
-
## 12.21.0 (2024-07-17)
|
4
|
-
|
5
|
-
### Features Added
|
6
|
-
- Stable release of features from 12.21.0b1
|
7
|
-
- Added new `chars` keyword to the `StorageStreamDownloader.read` method to support reading an arbitrary number of
|
8
|
-
characters from the stream rather than bytes. This can only be used when `encoding` is specified on `download_blob`
|
9
|
-
but can help prevent decoding errors in certain scenarios.
|
10
|
-
|
11
3
|
## 12.21.0b1 (2024-06-11)
|
12
4
|
|
13
5
|
### Features Added
|
{azure-storage-blob-12.21.0/azure_storage_blob.egg-info → azure-storage-blob-12.21.0b1}/PKG-INFO
RENAMED
@@ -1,13 +1,13 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: azure-storage-blob
|
3
|
-
Version: 12.21.
|
3
|
+
Version: 12.21.0b1
|
4
4
|
Summary: Microsoft Azure Blob Storage Client Library for Python
|
5
5
|
Home-page: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
6
6
|
Author: Microsoft Corporation
|
7
7
|
Author-email: ascl@microsoft.com
|
8
8
|
License: MIT License
|
9
9
|
Keywords: azure,azure sdk
|
10
|
-
Classifier: Development Status ::
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
11
11
|
Classifier: Programming Language :: Python
|
12
12
|
Classifier: Programming Language :: Python :: 3 :: Only
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
@@ -19,13 +19,8 @@ Classifier: Programming Language :: Python :: 3.12
|
|
19
19
|
Classifier: License :: OSI Approved :: MIT License
|
20
20
|
Requires-Python: >=3.8
|
21
21
|
Description-Content-Type: text/markdown
|
22
|
-
License-File: LICENSE
|
23
|
-
Requires-Dist: azure-core>=1.28.0
|
24
|
-
Requires-Dist: cryptography>=2.1.4
|
25
|
-
Requires-Dist: typing-extensions>=4.6.0
|
26
|
-
Requires-Dist: isodate>=0.6.1
|
27
22
|
Provides-Extra: aio
|
28
|
-
|
23
|
+
License-File: LICENSE
|
29
24
|
|
30
25
|
# Azure Storage Blobs client library for Python
|
31
26
|
Azure Blob storage is Microsoft's object storage solution for the cloud. Blob storage is optimized for storing massive amounts of unstructured data, such as text or binary data.
|
{azure-storage-blob-12.21.0 → azure-storage-blob-12.21.0b1}/azure/storage/blob/_blob_client.py
RENAMED
@@ -91,7 +91,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
91
91
|
|
92
92
|
For more optional configuration, please click
|
93
93
|
`here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
94
|
-
#optional-configuration>`
|
94
|
+
#optional-configuration>`_.
|
95
95
|
|
96
96
|
:param str account_url:
|
97
97
|
The URI to the storage account. In order to create a client given the full URI to the blob,
|
@@ -522,9 +522,9 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
522
522
|
:param str source_url:
|
523
523
|
A URL of up to 2 KB in length that specifies a file or blob.
|
524
524
|
The value should be URL-encoded as it would appear in a request URI.
|
525
|
-
|
526
|
-
|
527
|
-
|
525
|
+
If the source is in another account, the source must either be public
|
526
|
+
or must be authenticated via a shared access signature. If the source
|
527
|
+
is public, no authentication is required.
|
528
528
|
Examples:
|
529
529
|
https://myaccount.blob.core.windows.net/mycontainer/myblob
|
530
530
|
|
@@ -541,7 +541,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
541
541
|
The tag set may contain at most 10 tags. Tag keys must be between 1 and 128 characters,
|
542
542
|
and tag values must be between 0 and 256 characters.
|
543
543
|
Valid tag key and value characters include: lowercase and uppercase letters, digits (0-9),
|
544
|
-
space (
|
544
|
+
space (` `), plus (+), minus (-), period (.), solidus (/), colon (:), equals (=), underscore (_)
|
545
545
|
:paramtype tags: dict(str, str)
|
546
546
|
:keyword bytearray source_content_md5:
|
547
547
|
Specify the md5 that is used to verify the integrity of the source bytes.
|
@@ -589,7 +589,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
589
589
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
590
590
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
591
591
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
592
|
-
#other-client--per-operation-configuration>`
|
592
|
+
#other-client--per-operation-configuration>`_.
|
593
593
|
:keyword ~azure.storage.blob.ContentSettings content_settings:
|
594
594
|
ContentSettings object used to set blob properties. Used to set content type, encoding,
|
595
595
|
language, disposition, md5, and cache control.
|
@@ -645,7 +645,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
645
645
|
The tag set may contain at most 10 tags. Tag keys must be between 1 and 128 characters,
|
646
646
|
and tag values must be between 0 and 256 characters.
|
647
647
|
Valid tag key and value characters include: lowercase and uppercase letters, digits (0-9),
|
648
|
-
space (
|
648
|
+
space (` `), plus (+), minus (-), period (.), solidus (/), colon (:), equals (=), underscore (_)
|
649
649
|
|
650
650
|
.. versionadded:: 12.4.0
|
651
651
|
|
@@ -751,7 +751,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
751
751
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
752
752
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
753
753
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
754
|
-
#other-client--per-operation-configuration>`
|
754
|
+
#other-client--per-operation-configuration>`_. This method may make multiple calls to the service and
|
755
755
|
the timeout will apply to each call individually.
|
756
756
|
:returns: Blob-updated property dict (Etag and last modified)
|
757
757
|
:rtype: dict[str, Any]
|
@@ -870,7 +870,6 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
870
870
|
value that, when present, specifies the version of the blob to download.
|
871
871
|
|
872
872
|
.. versionadded:: 12.4.0
|
873
|
-
|
874
873
|
This keyword argument was introduced in API version '2019-12-12'.
|
875
874
|
|
876
875
|
:keyword bool validate_content:
|
@@ -929,7 +928,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
929
928
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
930
929
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
931
930
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
932
|
-
#other-client--per-operation-configuration>`
|
931
|
+
#other-client--per-operation-configuration>`_. This method may make multiple calls to the service and
|
933
932
|
the timeout will apply to each call individually.
|
934
933
|
multiple calls to the Azure service and the timeout will apply to
|
935
934
|
each call individually.
|
@@ -1085,7 +1084,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1085
1084
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1086
1085
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1087
1086
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1088
|
-
#other-client--per-operation-configuration>`
|
1087
|
+
#other-client--per-operation-configuration>`_.
|
1089
1088
|
:returns: A streaming object (BlobQueryReader)
|
1090
1089
|
:rtype: ~azure.storage.blob.BlobQueryReader
|
1091
1090
|
|
@@ -1168,7 +1167,6 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1168
1167
|
value that, when present, specifies the version of the blob to delete.
|
1169
1168
|
|
1170
1169
|
.. versionadded:: 12.4.0
|
1171
|
-
|
1172
1170
|
This keyword argument was introduced in API version '2019-12-12'.
|
1173
1171
|
|
1174
1172
|
:keyword lease:
|
@@ -1204,7 +1202,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1204
1202
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1205
1203
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1206
1204
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1207
|
-
#other-client--per-operation-configuration>`
|
1205
|
+
#other-client--per-operation-configuration>`_.
|
1208
1206
|
:rtype: None
|
1209
1207
|
|
1210
1208
|
.. admonition:: Example:
|
@@ -1239,7 +1237,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1239
1237
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1240
1238
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1241
1239
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1242
|
-
#other-client--per-operation-configuration>`
|
1240
|
+
#other-client--per-operation-configuration>`_.
|
1243
1241
|
:rtype: None
|
1244
1242
|
|
1245
1243
|
.. admonition:: Example:
|
@@ -1271,7 +1269,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1271
1269
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1272
1270
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1273
1271
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1274
|
-
#other-client--per-operation-configuration>`
|
1272
|
+
#other-client--per-operation-configuration>`_.
|
1275
1273
|
:returns: boolean
|
1276
1274
|
:rtype: bool
|
1277
1275
|
"""
|
@@ -1306,7 +1304,6 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1306
1304
|
value that, when present, specifies the version of the blob to get properties.
|
1307
1305
|
|
1308
1306
|
.. versionadded:: 12.4.0
|
1309
|
-
|
1310
1307
|
This keyword argument was introduced in API version '2019-12-12'.
|
1311
1308
|
|
1312
1309
|
:keyword ~datetime.datetime if_modified_since:
|
@@ -1342,7 +1339,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1342
1339
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1343
1340
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1344
1341
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1345
|
-
#other-client--per-operation-configuration>`
|
1342
|
+
#other-client--per-operation-configuration>`_.
|
1346
1343
|
:returns: BlobProperties
|
1347
1344
|
:rtype: ~azure.storage.blob.BlobProperties
|
1348
1345
|
|
@@ -1452,7 +1449,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1452
1449
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1453
1450
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1454
1451
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1455
|
-
#other-client--per-operation-configuration>`
|
1452
|
+
#other-client--per-operation-configuration>`_.
|
1456
1453
|
:returns: Blob-updated property dict (Etag and last modified)
|
1457
1454
|
:rtype: Dict[str, Any]
|
1458
1455
|
"""
|
@@ -1543,7 +1540,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1543
1540
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1544
1541
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1545
1542
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1546
|
-
#other-client--per-operation-configuration>`
|
1543
|
+
#other-client--per-operation-configuration>`_.
|
1547
1544
|
:returns: Blob-updated property dict (Etag and last modified)
|
1548
1545
|
:rtype: Dict[str, Union[str, datetime]]
|
1549
1546
|
"""
|
@@ -1572,7 +1569,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1572
1569
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1573
1570
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1574
1571
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1575
|
-
#other-client--per-operation-configuration>`
|
1572
|
+
#other-client--per-operation-configuration>`_.
|
1576
1573
|
:returns: Key value pairs of blob tags.
|
1577
1574
|
:rtype: Dict[str, str]
|
1578
1575
|
"""
|
@@ -1594,7 +1591,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1594
1591
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1595
1592
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1596
1593
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1597
|
-
#other-client--per-operation-configuration>`
|
1594
|
+
#other-client--per-operation-configuration>`_.
|
1598
1595
|
:returns: Key value pairs of blob tags.
|
1599
1596
|
:rtype: Dict[str, str]
|
1600
1597
|
"""
|
@@ -1616,7 +1613,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1616
1613
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1617
1614
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1618
1615
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1619
|
-
#other-client--per-operation-configuration>`
|
1616
|
+
#other-client--per-operation-configuration>`_.
|
1620
1617
|
:returns: Key value pairs of blob tags.
|
1621
1618
|
:rtype: Dict[str, Union[str, datetime, bool]]
|
1622
1619
|
"""
|
@@ -1718,7 +1715,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1718
1715
|
The tag set may contain at most 10 tags. Tag keys must be between 1 and 128 characters,
|
1719
1716
|
and tag values must be between 0 and 256 characters.
|
1720
1717
|
Valid tag key and value characters include: lowercase and uppercase letters, digits (0-9),
|
1721
|
-
space (
|
1718
|
+
space (` `), plus (+), minus (-), period (.), solidus (/), colon (:), equals (=), underscore (_)
|
1722
1719
|
|
1723
1720
|
.. versionadded:: 12.4.0
|
1724
1721
|
|
@@ -1778,7 +1775,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1778
1775
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1779
1776
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1780
1777
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1781
|
-
#other-client--per-operation-configuration>`
|
1778
|
+
#other-client--per-operation-configuration>`_.
|
1782
1779
|
:returns: Blob-updated property dict (Etag and last modified).
|
1783
1780
|
:rtype: dict[str, Any]
|
1784
1781
|
"""
|
@@ -1860,7 +1857,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1860
1857
|
The tag set may contain at most 10 tags. Tag keys must be between 1 and 128 characters,
|
1861
1858
|
and tag values must be between 0 and 256 characters.
|
1862
1859
|
Valid tag key and value characters include: lowercase and uppercase letters, digits (0-9),
|
1863
|
-
space (
|
1860
|
+
space (` `), plus (+), minus (-), period (.), solidus (/), colon (:), equals (=), underscore (_)
|
1864
1861
|
|
1865
1862
|
.. versionadded:: 12.4.0
|
1866
1863
|
|
@@ -1916,7 +1913,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
1916
1913
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
1917
1914
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
1918
1915
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
1919
|
-
#other-client--per-operation-configuration>`
|
1916
|
+
#other-client--per-operation-configuration>`_.
|
1920
1917
|
:returns: Blob-updated property dict (Etag and last modified).
|
1921
1918
|
:rtype: dict[str, Any]
|
1922
1919
|
"""
|
@@ -2015,7 +2012,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2015
2012
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
2016
2013
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
2017
2014
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
2018
|
-
#other-client--per-operation-configuration>`
|
2015
|
+
#other-client--per-operation-configuration>`_.
|
2019
2016
|
:returns: Blob-updated property dict (Snapshot ID, Etag, and last modified).
|
2020
2017
|
:rtype: dict[str, Any]
|
2021
2018
|
|
@@ -2174,7 +2171,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2174
2171
|
The tag set may contain at most 10 tags. Tag keys must be between 1 and 128 characters,
|
2175
2172
|
and tag values must be between 0 and 256 characters.
|
2176
2173
|
Valid tag key and value characters include: lowercase and uppercase letters, digits (0-9),
|
2177
|
-
space (
|
2174
|
+
space (` `), plus (+), minus (-), period (.), solidus (/), colon (:), equals (=), underscore (_).
|
2178
2175
|
|
2179
2176
|
The (case-sensitive) literal "COPY" can instead be passed to copy tags from the source blob.
|
2180
2177
|
This option is only available when `incremental_copy=False` and `requires_sync=True`.
|
@@ -2246,7 +2243,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2246
2243
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
2247
2244
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
2248
2245
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
2249
|
-
#other-client--per-operation-configuration>`
|
2246
|
+
#other-client--per-operation-configuration>`_.
|
2250
2247
|
:keyword ~azure.storage.blob.PremiumPageBlobTier premium_page_blob_tier:
|
2251
2248
|
A page blob tier value to set the blob to. The tier correlates to the size of the
|
2252
2249
|
blob and number of allowed IOPS. This is only applicable to page blobs on
|
@@ -2393,7 +2390,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2393
2390
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
2394
2391
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
2395
2392
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
2396
|
-
#other-client--per-operation-configuration>`
|
2393
|
+
#other-client--per-operation-configuration>`_.
|
2397
2394
|
:returns: A BlobLeaseClient object.
|
2398
2395
|
:rtype: ~azure.storage.blob.BlobLeaseClient
|
2399
2396
|
|
@@ -2433,20 +2430,18 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2433
2430
|
value that, when present, specifies the version of the blob to download.
|
2434
2431
|
|
2435
2432
|
.. versionadded:: 12.4.0
|
2436
|
-
|
2437
2433
|
This keyword argument was introduced in API version '2019-12-12'.
|
2438
2434
|
:keyword str if_tags_match_condition:
|
2439
2435
|
Specify a SQL where clause on blob tags to operate only on blob with a matching value.
|
2440
2436
|
eg. ``\"\\\"tagname\\\"='my tag'\"``
|
2441
2437
|
|
2442
2438
|
.. versionadded:: 12.4.0
|
2443
|
-
|
2444
2439
|
:keyword int timeout:
|
2445
2440
|
Sets the server-side timeout for the operation in seconds. For more details see
|
2446
2441
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
2447
2442
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
2448
2443
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
2449
|
-
#other-client--per-operation-configuration>`
|
2444
|
+
#other-client--per-operation-configuration>`_.
|
2450
2445
|
:keyword lease:
|
2451
2446
|
Required if the blob has an active lease. Value can be a BlobLeaseClient object
|
2452
2447
|
or the lease ID as a string.
|
@@ -2566,7 +2561,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2566
2561
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
2567
2562
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
2568
2563
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
2569
|
-
#other-client--per-operation-configuration>`
|
2564
|
+
#other-client--per-operation-configuration>`_.
|
2570
2565
|
:returns: Blob property dict.
|
2571
2566
|
:rtype: dict[str, Any]
|
2572
2567
|
"""
|
@@ -2670,7 +2665,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2670
2665
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
2671
2666
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
2672
2667
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
2673
|
-
#other-client--per-operation-configuration>`
|
2668
|
+
#other-client--per-operation-configuration>`_.
|
2674
2669
|
:keyword str source_authorization:
|
2675
2670
|
Authenticate as a service principal using a client secret to access a source blob. Ensure "bearer " is
|
2676
2671
|
the prefix of the source_authorization string.
|
@@ -2723,7 +2718,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2723
2718
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
2724
2719
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
2725
2720
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
2726
|
-
#other-client--per-operation-configuration>`
|
2721
|
+
#other-client--per-operation-configuration>`_.
|
2727
2722
|
:returns: A tuple of two lists - committed and uncommitted blocks
|
2728
2723
|
:rtype: tuple(list(~azure.storage.blob.BlobBlock), list(~azure.storage.blob.BlobBlock))
|
2729
2724
|
"""
|
@@ -2835,7 +2830,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2835
2830
|
The tag set may contain at most 10 tags. Tag keys must be between 1 and 128 characters,
|
2836
2831
|
and tag values must be between 0 and 256 characters.
|
2837
2832
|
Valid tag key and value characters include: lowercase and uppercase letters, digits (0-9),
|
2838
|
-
space (
|
2833
|
+
space (` `), plus (+), minus (-), period (.), solidus (/), colon (:), equals (=), underscore (_)
|
2839
2834
|
|
2840
2835
|
.. versionadded:: 12.4.0
|
2841
2836
|
|
@@ -2906,7 +2901,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2906
2901
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
2907
2902
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
2908
2903
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
2909
|
-
#other-client--per-operation-configuration>`
|
2904
|
+
#other-client--per-operation-configuration>`_.
|
2910
2905
|
:returns: Blob-updated property dict (Etag and last modified).
|
2911
2906
|
:rtype: dict(str, Any)
|
2912
2907
|
"""
|
@@ -2941,7 +2936,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2941
2936
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
2942
2937
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
2943
2938
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
2944
|
-
#other-client--per-operation-configuration>`
|
2939
|
+
#other-client--per-operation-configuration>`_.
|
2945
2940
|
:keyword lease:
|
2946
2941
|
Required if the blob has an active lease. Value can be a BlobLeaseClient object
|
2947
2942
|
or the lease ID as a string.
|
@@ -2993,7 +2988,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
2993
2988
|
The tag set may contain at most 10 tags. Tag keys must be between 1 and 128 characters,
|
2994
2989
|
and tag values must be between 0 and 256 characters.
|
2995
2990
|
Valid tag key and value characters include: lowercase and uppercase letters, digits (0-9),
|
2996
|
-
space (
|
2991
|
+
space (` `), plus (+), minus (-), period (.), solidus (/), colon (:), equals (=), underscore (_)
|
2997
2992
|
:type tags: dict(str, str)
|
2998
2993
|
:keyword str version_id:
|
2999
2994
|
The version id parameter is an opaque DateTime
|
@@ -3017,7 +3012,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
3017
3012
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
3018
3013
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
3019
3014
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
3020
|
-
#other-client--per-operation-configuration>`
|
3015
|
+
#other-client--per-operation-configuration>`_.
|
3021
3016
|
:returns: Blob-updated property dict (Etag and last modified)
|
3022
3017
|
:rtype: Dict[str, Any]
|
3023
3018
|
"""
|
@@ -3065,7 +3060,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
3065
3060
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
3066
3061
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
3067
3062
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
3068
|
-
#other-client--per-operation-configuration>`
|
3063
|
+
#other-client--per-operation-configuration>`_.
|
3069
3064
|
:returns: Key value pairs of blob tags.
|
3070
3065
|
:rtype: Dict[str, str]
|
3071
3066
|
"""
|
@@ -3170,7 +3165,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
3170
3165
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
3171
3166
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
3172
3167
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
3173
|
-
#other-client--per-operation-configuration>`
|
3168
|
+
#other-client--per-operation-configuration>`_.
|
3174
3169
|
:returns:
|
3175
3170
|
A tuple of two lists of page ranges as dictionaries with 'start' and 'end' keys.
|
3176
3171
|
The first element are filled page ranges, the 2nd element is cleared page ranges.
|
@@ -3262,7 +3257,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
3262
3257
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
3263
3258
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
3264
3259
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
3265
|
-
#other-client--per-operation-configuration>`
|
3260
|
+
#other-client--per-operation-configuration>`_.
|
3266
3261
|
:returns: An iterable (auto-paging) of PageRange.
|
3267
3262
|
:rtype: ~azure.core.paging.ItemPaged[~azure.storage.blob.PageRange]
|
3268
3263
|
"""
|
@@ -3345,7 +3340,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
3345
3340
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
3346
3341
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
3347
3342
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
3348
|
-
#other-client--per-operation-configuration>`
|
3343
|
+
#other-client--per-operation-configuration>`_.
|
3349
3344
|
:returns:
|
3350
3345
|
A tuple of two lists of page ranges as dictionaries with 'start' and 'end' keys.
|
3351
3346
|
The first element are filled page ranges, the 2nd element is cleared page ranges.
|
@@ -3422,7 +3417,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
3422
3417
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
3423
3418
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
3424
3419
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
3425
|
-
#other-client--per-operation-configuration>`
|
3420
|
+
#other-client--per-operation-configuration>`_.
|
3426
3421
|
:returns: Blob-updated property dict (Etag and last modified).
|
3427
3422
|
:rtype: dict(str, Any)
|
3428
3423
|
"""
|
@@ -3504,7 +3499,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
3504
3499
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
3505
3500
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
3506
3501
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
3507
|
-
#other-client--per-operation-configuration>`
|
3502
|
+
#other-client--per-operation-configuration>`_.
|
3508
3503
|
:returns: Blob-updated property dict (Etag and last modified).
|
3509
3504
|
:rtype: dict(str, Any)
|
3510
3505
|
"""
|
@@ -3649,7 +3644,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
3649
3644
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
3650
3645
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
3651
3646
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
3652
|
-
#other-client--per-operation-configuration>`
|
3647
|
+
#other-client--per-operation-configuration>`_.
|
3653
3648
|
:returns: Blob-updated property dict (Etag and last modified).
|
3654
3649
|
:rtype: dict(str, Any)
|
3655
3650
|
"""
|
@@ -3825,7 +3820,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
3825
3820
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
3826
3821
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
3827
3822
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
3828
|
-
#other-client--per-operation-configuration>`
|
3823
|
+
#other-client--per-operation-configuration>`_.
|
3829
3824
|
:keyword str source_authorization:
|
3830
3825
|
Authenticate as a service principal using a client secret to access a source blob. Ensure "bearer " is
|
3831
3826
|
the prefix of the source_authorization string.
|
@@ -3943,7 +3938,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
3943
3938
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
3944
3939
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
3945
3940
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
3946
|
-
#other-client--per-operation-configuration>`
|
3941
|
+
#other-client--per-operation-configuration>`_.
|
3947
3942
|
:returns: Blob-updated property dict (Etag and last modified).
|
3948
3943
|
:rtype: dict(str, Any)
|
3949
3944
|
"""
|
@@ -4087,7 +4082,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
4087
4082
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
4088
4083
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
4089
4084
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
4090
|
-
#other-client--per-operation-configuration>`
|
4085
|
+
#other-client--per-operation-configuration>`_.
|
4091
4086
|
:returns: Blob-updated property dict (Etag, last modified, append offset, committed block count).
|
4092
4087
|
:rtype: dict(str, Any)
|
4093
4088
|
"""
|
@@ -4255,7 +4250,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
4255
4250
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
4256
4251
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
4257
4252
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
4258
|
-
#other-client--per-operation-configuration>`
|
4253
|
+
#other-client--per-operation-configuration>`_.
|
4259
4254
|
:keyword str source_authorization:
|
4260
4255
|
Authenticate as a service principal using a client secret to access a source blob. Ensure "bearer " is
|
4261
4256
|
the prefix of the source_authorization string.
|
@@ -4335,7 +4330,7 @@ class BlobClient(StorageAccountHostsMixin, StorageEncryptionMixin): # pylint: d
|
|
4335
4330
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
4336
4331
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
4337
4332
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
4338
|
-
#other-client--per-operation-configuration>`
|
4333
|
+
#other-client--per-operation-configuration>`_.
|
4339
4334
|
:returns: Blob-updated property dict (Etag, last modified, append offset, committed block count).
|
4340
4335
|
:rtype: dict(str, Any)
|
4341
4336
|
"""
|
@@ -64,7 +64,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
64
64
|
|
65
65
|
For more optional configuration, please click
|
66
66
|
`here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
67
|
-
#optional-configuration>`
|
67
|
+
#optional-configuration>`_.
|
68
68
|
|
69
69
|
:param str account_url:
|
70
70
|
The URL to the blob storage account. Any other entities included
|
@@ -216,7 +216,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
216
216
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
217
217
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
218
218
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
219
|
-
#other-client--per-operation-configuration>`
|
219
|
+
#other-client--per-operation-configuration>`_.
|
220
220
|
:returns: The user delegation key.
|
221
221
|
:rtype: ~azure.storage.blob.UserDelegationKey
|
222
222
|
"""
|
@@ -282,7 +282,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
282
282
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
283
283
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
284
284
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
285
|
-
#other-client--per-operation-configuration>`
|
285
|
+
#other-client--per-operation-configuration>`_.
|
286
286
|
:returns: The blob service stats.
|
287
287
|
:rtype: Dict[str, Any]
|
288
288
|
|
@@ -314,7 +314,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
314
314
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
315
315
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
316
316
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
317
|
-
#other-client--per-operation-configuration>`
|
317
|
+
#other-client--per-operation-configuration>`_.
|
318
318
|
:returns: An object containing blob service properties such as
|
319
319
|
analytics logging, hour/minute metrics, cors rules, etc.
|
320
320
|
:rtype: Dict[str, Any]
|
@@ -385,7 +385,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
385
385
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
386
386
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
387
387
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
388
|
-
#other-client--per-operation-configuration>`
|
388
|
+
#other-client--per-operation-configuration>`_.
|
389
389
|
:rtype: None
|
390
390
|
|
391
391
|
.. admonition:: Example:
|
@@ -450,7 +450,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
450
450
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
451
451
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
452
452
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
453
|
-
#other-client--per-operation-configuration>`
|
453
|
+
#other-client--per-operation-configuration>`_.
|
454
454
|
:returns: An iterable (auto-paging) of ContainerProperties.
|
455
455
|
:rtype: ~azure.core.paging.ItemPaged[~azure.storage.blob.ContainerProperties]
|
456
456
|
|
@@ -505,7 +505,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
505
505
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
506
506
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
507
507
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
508
|
-
#other-client--per-operation-configuration>`
|
508
|
+
#other-client--per-operation-configuration>`_.
|
509
509
|
:returns: An iterable (auto-paging) response of BlobProperties.
|
510
510
|
:rtype: ~azure.core.paging.ItemPaged[~azure.storage.blob.FilteredBlob]
|
511
511
|
"""
|
@@ -555,7 +555,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
555
555
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
556
556
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
557
557
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
558
|
-
#other-client--per-operation-configuration>`
|
558
|
+
#other-client--per-operation-configuration>`_.
|
559
559
|
:returns: A container client to interact with the newly created container.
|
560
560
|
:rtype: ~azure.storage.blob.ContainerClient
|
561
561
|
|
@@ -617,7 +617,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
617
617
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
618
618
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
619
619
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
620
|
-
#other-client--per-operation-configuration>`
|
620
|
+
#other-client--per-operation-configuration>`_.
|
621
621
|
|
622
622
|
.. admonition:: Example:
|
623
623
|
|
@@ -656,7 +656,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
656
656
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
657
657
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
658
658
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
659
|
-
#other-client--per-operation-configuration>`
|
659
|
+
#other-client--per-operation-configuration>`_.
|
660
660
|
:returns: A container client for the renamed container.
|
661
661
|
:rtype: ~azure.storage.blob.ContainerClient
|
662
662
|
"""
|
@@ -692,7 +692,7 @@ class BlobServiceClient(StorageAccountHostsMixin, StorageEncryptionMixin):
|
|
692
692
|
https://learn.microsoft.com/rest/api/storageservices/setting-timeouts-for-blob-service-operations.
|
693
693
|
This value is not tracked or validated on the client. To configure client-side network timesouts
|
694
694
|
see `here <https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-blob
|
695
|
-
#other-client--per-operation-configuration>`
|
695
|
+
#other-client--per-operation-configuration>`_.
|
696
696
|
:returns: The undeleted ContainerClient.
|
697
697
|
:rtype: ~azure.storage.blob.ContainerClient
|
698
698
|
"""
|