├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── AZSClient.podspec ├── BlobSample ├── BlobSample.xcodeproj │ └── project.pbxproj ├── BlobSample │ ├── AddBlobViewController.swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Default Photo.imageset │ │ │ ├── Contents.json │ │ │ └── NoPhotoSelected.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── BlobListTableViewController.swift │ ├── BlobListViewCell.swift │ ├── BlobSample-Bridging-Header.h │ ├── GetBlobViewController.swift │ └── Info.plist └── README.md ├── LICENSE.txt ├── Lib └── Azure Storage Client Library │ ├── AZSClient.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── Azure Storage Client Library.xcscheme │ │ └── Framework.xcscheme │ ├── Azure Storage Client Library │ ├── AZSAccessCondition.h │ ├── AZSAccessCondition.m │ ├── AZSAuthenticationHandler.h │ ├── AZSBlobContainerProperties.h │ ├── AZSBlobContainerProperties.m │ ├── AZSBlobOutputStream.h │ ├── AZSBlobOutputStream.m │ ├── AZSBlobProperties.h │ ├── AZSBlobProperties.m │ ├── AZSBlobRequestFactory.h │ ├── AZSBlobRequestFactory.m │ ├── AZSBlobRequestOptions.h │ ├── AZSBlobRequestOptions.m │ ├── AZSBlobRequestXML.h │ ├── AZSBlobRequestXML.m │ ├── AZSBlobResponseParser.h │ ├── AZSBlobResponseParser.m │ ├── AZSBlobUploadHelper.h │ ├── AZSBlobUploadHelper.m │ ├── AZSBlockListItem.h │ ├── AZSBlockListItem.m │ ├── AZSClient-Prefix.pch │ ├── AZSClient.h │ ├── AZSClient.m │ ├── AZSCloudAppendBlob.h │ ├── AZSCloudAppendBlob.m │ ├── AZSCloudBlob.h │ ├── AZSCloudBlob.m │ ├── AZSCloudBlobClient.h │ ├── AZSCloudBlobClient.m │ ├── AZSCloudBlobContainer.h │ ├── AZSCloudBlobContainer.m │ ├── AZSCloudBlobDirectory.h │ ├── AZSCloudBlobDirectory.m │ ├── AZSCloudBlockBlob.h │ ├── AZSCloudBlockBlob.m │ ├── AZSCloudClient.h │ ├── AZSCloudClient.m │ ├── AZSCloudPageBlob.h │ ├── AZSCloudPageBlob.m │ ├── AZSCloudStorageAccount.h │ ├── AZSCloudStorageAccount.m │ ├── AZSConstants.h │ ├── AZSConstants.m │ ├── AZSContinuationToken.h │ ├── AZSContinuationToken.m │ ├── AZSCopyState.h │ ├── AZSCopyState.m │ ├── AZSCorsRule.h │ ├── AZSCorsRule.m │ ├── AZSEnums.h │ ├── AZSErrors.h │ ├── AZSErrors.m │ ├── AZSExecutor.h │ ├── AZSExecutor.m │ ├── AZSIPRange.h │ ├── AZSIPRange.m │ ├── AZSLoggingProperties.h │ ├── AZSLoggingProperties.m │ ├── AZSMacros.h │ ├── AZSMetricsProperties.h │ ├── AZSMetricsProperties.m │ ├── AZSNavigationUtil.h │ ├── AZSNavigationUtil.m │ ├── AZSNoOpAuthenticationHandler.h │ ├── AZSNoOpAuthenticationHandler.m │ ├── AZSOperationContext.h │ ├── AZSOperationContext.m │ ├── AZSRequestFactory.h │ ├── AZSRequestFactory.m │ ├── AZSRequestOptions.h │ ├── AZSRequestOptions.m │ ├── AZSRequestResult.h │ ├── AZSRequestResult.m │ ├── AZSResponseParser.h │ ├── AZSResponseParser.m │ ├── AZSResultSegment.h │ ├── AZSResultSegment.m │ ├── AZSRetryContext.h │ ├── AZSRetryContext.m │ ├── AZSRetryInfo.h │ ├── AZSRetryInfo.m │ ├── AZSRetryPolicy.h │ ├── AZSRetryPolicy.m │ ├── AZSServiceProperties.h │ ├── AZSServiceProperties.m │ ├── AZSSharedAccessAccountParameters.h │ ├── AZSSharedAccessAccountParameters.m │ ├── AZSSharedAccessBlobParameters.h │ ├── AZSSharedAccessBlobParameters.m │ ├── AZSSharedAccessHeaders.h │ ├── AZSSharedAccessHeaders.m │ ├── AZSSharedAccessPolicy.h │ ├── AZSSharedAccessPolicy.m │ ├── AZSSharedAccessSignatureHelper.h │ ├── AZSSharedAccessSignatureHelper.m │ ├── AZSSharedKeyBlobAuthenticationHandler.h │ ├── AZSSharedKeyBlobAuthenticationHandler.m │ ├── AZSStorageCommand.h │ ├── AZSStorageCommand.m │ ├── AZSStorageCredentials.h │ ├── AZSStorageCredentials.m │ ├── AZSStorageUri.h │ ├── AZSStorageUri.m │ ├── AZSULLRange.h │ ├── AZSUriQueryBuilder.h │ ├── AZSUriQueryBuilder.m │ ├── AZSUtil.h │ └── AZSUtil.m │ ├── Azure Storage Client LibraryTests │ ├── AZSAccountSasTests.m │ ├── AZSBlobOutputStreamTests.m │ ├── AZSBlobSasTests.m │ ├── AZSBlobTestBase.h │ ├── AZSBlobTestBase.m │ ├── AZSClientTests-Info.plist │ ├── AZSCloudAppendBlobTests.m │ ├── AZSCloudBlobClientTests.m │ ├── AZSCloudBlobContainerTests.m │ ├── AZSCloudBlobDirectoryTests.m │ ├── AZSCloudBlockBlobTests.m │ ├── AZSCloudPageBlobTests.m │ ├── AZSCloudStorageAccountTests.m │ ├── AZSLeaseTests.m │ ├── AZSReadFromSecondaryTest.m │ ├── AZSServicePropertiesTests.m │ ├── AZSTestBase.h │ ├── AZSTestBase.m │ ├── AZSTestHelpers.h │ ├── AZSTestHelpers.m │ ├── AZSTestRetry.m │ ├── AZSTestSemaphore.h │ ├── AZSTestSemaphore.m │ ├── AZSULLRangeTests.m │ ├── TestResources │ │ └── test_configurations.json │ └── en.lproj │ │ └── InfoPlist.strings │ ├── BreakingChanges.txt │ └── changelog.txt ├── README.md └── SECURITY.md /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /AZSClient.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/AZSClient.podspec -------------------------------------------------------------------------------- /BlobSample/BlobSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/BlobSample/BlobSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /BlobSample/BlobSample/AddBlobViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/BlobSample/BlobSample/AddBlobViewController.swift -------------------------------------------------------------------------------- /BlobSample/BlobSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/BlobSample/BlobSample/AppDelegate.swift -------------------------------------------------------------------------------- /BlobSample/BlobSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/BlobSample/BlobSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /BlobSample/BlobSample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/BlobSample/BlobSample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /BlobSample/BlobSample/Assets.xcassets/Default Photo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/BlobSample/BlobSample/Assets.xcassets/Default Photo.imageset/Contents.json -------------------------------------------------------------------------------- /BlobSample/BlobSample/Assets.xcassets/Default Photo.imageset/NoPhotoSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/BlobSample/BlobSample/Assets.xcassets/Default Photo.imageset/NoPhotoSelected.png -------------------------------------------------------------------------------- /BlobSample/BlobSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/BlobSample/BlobSample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /BlobSample/BlobSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/BlobSample/BlobSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /BlobSample/BlobSample/BlobListTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/BlobSample/BlobSample/BlobListTableViewController.swift -------------------------------------------------------------------------------- /BlobSample/BlobSample/BlobListViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/BlobSample/BlobSample/BlobListViewCell.swift -------------------------------------------------------------------------------- /BlobSample/BlobSample/BlobSample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/BlobSample/BlobSample/BlobSample-Bridging-Header.h -------------------------------------------------------------------------------- /BlobSample/BlobSample/GetBlobViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/BlobSample/BlobSample/GetBlobViewController.swift -------------------------------------------------------------------------------- /BlobSample/BlobSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/BlobSample/BlobSample/Info.plist -------------------------------------------------------------------------------- /BlobSample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/BlobSample/README.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/AZSClient.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/AZSClient.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/AZSClient.xcodeproj/xcshareddata/xcschemes/Azure Storage Client Library.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/AZSClient.xcodeproj/xcshareddata/xcschemes/Azure Storage Client Library.xcscheme -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/AZSClient.xcodeproj/xcshareddata/xcschemes/Framework.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/AZSClient.xcodeproj/xcshareddata/xcschemes/Framework.xcscheme -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSAccessCondition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSAccessCondition.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSAccessCondition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSAccessCondition.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSAuthenticationHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSAuthenticationHandler.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobContainerProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobContainerProperties.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobContainerProperties.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobContainerProperties.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobOutputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobOutputStream.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobOutputStream.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobOutputStream.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobProperties.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobProperties.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobProperties.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobRequestFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobRequestFactory.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobRequestFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobRequestFactory.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobRequestOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobRequestOptions.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobRequestOptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobRequestOptions.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobRequestXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobRequestXML.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobRequestXML.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobRequestXML.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobResponseParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobResponseParser.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobResponseParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobResponseParser.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobUploadHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobUploadHelper.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobUploadHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlobUploadHelper.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlockListItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlockListItem.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlockListItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSBlockListItem.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSClient-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSClient-Prefix.pch -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSClient.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSClient.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudAppendBlob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudAppendBlob.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudAppendBlob.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudAppendBlob.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudBlob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudBlob.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudBlob.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudBlob.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudBlobClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudBlobClient.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudBlobClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudBlobClient.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudBlobContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudBlobContainer.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudBlobContainer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudBlobContainer.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudBlobDirectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudBlobDirectory.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudBlobDirectory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudBlobDirectory.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudBlockBlob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudBlockBlob.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudBlockBlob.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudBlockBlob.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudClient.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudClient.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudPageBlob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudPageBlob.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudPageBlob.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudPageBlob.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudStorageAccount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudStorageAccount.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudStorageAccount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCloudStorageAccount.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSConstants.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSConstants.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSContinuationToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSContinuationToken.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSContinuationToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSContinuationToken.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCopyState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCopyState.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCopyState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCopyState.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCorsRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCorsRule.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCorsRule.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSCorsRule.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSEnums.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSErrors.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSErrors.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSExecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSExecutor.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSExecutor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSExecutor.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSIPRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSIPRange.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSIPRange.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSIPRange.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSLoggingProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSLoggingProperties.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSLoggingProperties.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSLoggingProperties.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSMacros.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSMetricsProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSMetricsProperties.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSMetricsProperties.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSMetricsProperties.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSNavigationUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSNavigationUtil.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSNavigationUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSNavigationUtil.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSNoOpAuthenticationHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSNoOpAuthenticationHandler.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSNoOpAuthenticationHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSNoOpAuthenticationHandler.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSOperationContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSOperationContext.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSOperationContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSOperationContext.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRequestFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRequestFactory.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRequestFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRequestFactory.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRequestOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRequestOptions.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRequestOptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRequestOptions.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRequestResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRequestResult.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRequestResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRequestResult.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSResponseParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSResponseParser.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSResponseParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSResponseParser.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSResultSegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSResultSegment.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSResultSegment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSResultSegment.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRetryContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRetryContext.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRetryContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRetryContext.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRetryInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRetryInfo.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRetryInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRetryInfo.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRetryPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRetryPolicy.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRetryPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSRetryPolicy.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSServiceProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSServiceProperties.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSServiceProperties.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSServiceProperties.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedAccessAccountParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedAccessAccountParameters.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedAccessAccountParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedAccessAccountParameters.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedAccessBlobParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedAccessBlobParameters.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedAccessBlobParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedAccessBlobParameters.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedAccessHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedAccessHeaders.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedAccessHeaders.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedAccessHeaders.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedAccessPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedAccessPolicy.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedAccessPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedAccessPolicy.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedAccessSignatureHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedAccessSignatureHelper.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedAccessSignatureHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedAccessSignatureHelper.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedKeyBlobAuthenticationHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedKeyBlobAuthenticationHandler.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedKeyBlobAuthenticationHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSSharedKeyBlobAuthenticationHandler.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSStorageCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSStorageCommand.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSStorageCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSStorageCommand.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSStorageCredentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSStorageCredentials.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSStorageCredentials.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSStorageCredentials.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSStorageUri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSStorageUri.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSStorageUri.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSStorageUri.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSULLRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSULLRange.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSUriQueryBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSUriQueryBuilder.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSUriQueryBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSUriQueryBuilder.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSUtil.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client Library/AZSUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client Library/AZSUtil.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSAccountSasTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSAccountSasTests.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSBlobOutputStreamTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSBlobOutputStreamTests.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSBlobSasTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSBlobSasTests.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSBlobTestBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSBlobTestBase.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSBlobTestBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSBlobTestBase.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSClientTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSClientTests-Info.plist -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSCloudAppendBlobTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSCloudAppendBlobTests.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSCloudBlobClientTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSCloudBlobClientTests.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSCloudBlobContainerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSCloudBlobContainerTests.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSCloudBlobDirectoryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSCloudBlobDirectoryTests.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSCloudBlockBlobTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSCloudBlockBlobTests.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSCloudPageBlobTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSCloudPageBlobTests.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSCloudStorageAccountTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSCloudStorageAccountTests.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSLeaseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSLeaseTests.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSReadFromSecondaryTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSReadFromSecondaryTest.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSServicePropertiesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSServicePropertiesTests.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSTestBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSTestBase.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSTestBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSTestBase.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSTestHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSTestHelpers.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSTestHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSTestHelpers.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSTestRetry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSTestRetry.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSTestSemaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSTestSemaphore.h -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSTestSemaphore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSTestSemaphore.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSULLRangeTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/AZSULLRangeTests.m -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/TestResources/test_configurations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/TestResources/test_configurations.json -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/Azure Storage Client LibraryTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/BreakingChanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/BreakingChanges.txt -------------------------------------------------------------------------------- /Lib/Azure Storage Client Library/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/Lib/Azure Storage Client Library/changelog.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-storage-ios/HEAD/SECURITY.md --------------------------------------------------------------------------------