Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated versions and REST docs for 73 release #12874

Merged
merged 1 commit into from
Jul 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion sdk/storage/azure-storage-blob-batch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Release History

## 12.6.0-beta.1 (Unreleased)
## 12.6.0-beta.1 (2020-07-07)
- Updated azure-storage-common and azure-storage-blob dependencies to add support for the 2019-12-12 service version.

## 12.5.2 (2020-06-12)
- Updated azure-storage-common and azure-core dependencies.
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-blob-batch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ definition, such as text or binary data.
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob-batch</artifactId>
<version>12.5.2</version>
<version>12.6.0-beta.1</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-blob-changefeed/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 12.0.0-beta.1 (Unreleased)
## 12.0.0-beta.1 (2020-07-07)
- Initial release.
- Added support to get changefeed events for an account.

Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-blob-cryptography/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 12.8.0-beta.1 (Unreleased)
## 12.8.0-beta.1 (2020-07-07)
- Added support for setting blob tags on upload.

## 12.7.0 (2020-06-12)
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-blob-cryptography/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ This package supports client side encryption for blob storage.
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob-cryptography</artifactId>
<version>12.7.0</version>
<version>12.8.0-beta.1</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-blob/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 12.8.0-beta.1 (Unreleased)
## 12.8.0-beta.1 (2020-07-07)
- Added support for the 2019-12-12 service version.
- Added support for blob tags. Added get/setTags method to Blob(Async)ClientBase. Added filterTags api to BlobServiceClient. Added ability to specify tags on all methods that create a blob. Tag count returned on getProperties/getBlob. Option to include returning tags on listing.
- Added support to query a blob. Added query and opernQueryInputStream methods to Blob(Async)ClientBase.
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-blob/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ definition, such as text or binary data.
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-blob</artifactId>
<version>12.7.0</version>
<version>12.8.0-beta.1</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -343,11 +343,9 @@ private Mono<ServicesListBlobContainersSegmentResponse> listBlobContainersSegmen
null, null, Context.NONE), timeout);
}


// TODO: (rickle-msft) doc links
/**
* Returns a reactive Publisher emitting the blobs in this account whose tags match the query expression. For more
* information, including information on the query syntax, see the <a href="https://docs.microsoft.com/en-us/rest/api">Azure Docs</a>.
* information, including information on the query syntax, see the <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/find-blobs-by-tags">Azure Docs</a>.
*
* <p><strong>Code Samples</strong></p>
*
Expand All @@ -362,7 +360,7 @@ public PagedFlux<FilterBlobItem> findBlobsByTags(String query) {

/**
* Returns a reactive Publisher emitting the blobs in this account whose tags match the query expression. For more
* information, including information on the query syntax, see the <a href="https://docs.microsoft.com/en-us/rest/api">Azure Docs</a>.
* information, including information on the query syntax, see the <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/find-blobs-by-tags">Azure Docs</a>.
*
* <p><strong>Code Samples</strong></p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,11 +195,10 @@ public PagedIterable<BlobContainerItem> listBlobContainers(ListBlobContainersOpt
return new PagedIterable<>(blobServiceAsyncClient.listBlobContainersWithOptionalTimeout(options, timeout));
}

// TODO: (rickle-msft) doc links
/**
* Returns a lazy loaded list of blobs in this account whose tags match the query expression. The returned
* {@link PagedIterable} can be consumed while new items are automatically retrieved as needed. For more
* information, including information on the query syntax, see the <a href="https://docs.microsoft.com/en-us/rest/api">Azure Docs</a>.
* information, including information on the query syntax, see the <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/find-blobs-by-tags">Azure Docs</a>.
*
* <p><strong>Code Samples</strong></p>
*
Expand All @@ -215,7 +214,7 @@ public PagedIterable<FilterBlobItem> findBlobsByTags(String query) {
/**
* Returns a lazy loaded list of blobs in this account whose tags match the query expression. The returned
* {@link PagedIterable} can be consumed while new items are automatically retrieved as needed. For more
* information, including information on the query syntax, see the <a href="https://docs.microsoft.com/en-us/rest/api">Azure Docs</a>.
* information, including information on the query syntax, see the <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/find-blobs-by-tags">Azure Docs</a>.
*
* <p><strong>Code Samples</strong></p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1338,7 +1338,6 @@ Mono<Response<Void>> setMetadataWithResponse(Map<String, String> metadata, BlobR
.map(response -> new SimpleResponse<>(response, null));
}

// TODO: (rickle-msft) docs link
/**
* Returns the blob's tags.
*
Expand All @@ -1347,7 +1346,7 @@ Mono<Response<Void>> setMetadataWithResponse(Map<String, String> metadata, BlobR
* {@codesnippet com.azure.storage.blob.specialized.BlobAsyncClientBase.getTags}
*
* <p>For more information, see the
* <a href="https://docs.microsoft.com/en-us/rest/api">Azure Docs</a></p>
* <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/get-blob-tags">Azure Docs</a></p>
*
* @return A reactive response containing the blob's tags.
*/
Expand All @@ -1363,7 +1362,7 @@ public Mono<Map<String, String>> getTags() {
* {@codesnippet com.azure.storage.blob.specialized.BlobAsyncClientBase.getTagsWithResponse}
*
* <p>For more information, see the
* <a href="https://docs.microsoft.com/en-us/rest/api">Azure Docs</a></p>
* <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/get-blob-tags">Azure Docs</a></p>
*
* @return A reactive response containing the blob's tags.
*/
Expand Down Expand Up @@ -1396,7 +1395,7 @@ Mono<Response<Map<String, String>>> getTagsWithResponse(Context context) {
* {@codesnippet com.azure.storage.blob.specialized.BlobAsyncClientBase.setTags#Map}
*
* <p>For more information, see the
* <a href="https://docs.microsoft.com/en-us/rest/api">Azure Docs</a></p>
* <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/set-blob-tags">Azure Docs</a></p>
*
* @param tags Tags to associate with the blob.
* @return A reactive response signaling completion.
Expand All @@ -1414,7 +1413,7 @@ public Mono<Void> setTags(Map<String, String> tags) {
* {@codesnippet com.azure.storage.blob.specialized.BlobAsyncClientBase.setTagsWithResponse#Map}
*
* <p>For more information, see the
* <a href="https://docs.microsoft.com/en-us/rest/api">Azure Docs</a></p>
* <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/set-blob-tags">Azure Docs</a></p>
*
* @param tags Tags to associate with the blob.
* @return A reactive response signaling completion.
Expand Down Expand Up @@ -1694,12 +1693,11 @@ public String generateSas(BlobServiceSasSignatureValues blobServiceSasSignatureV
.generateSas(SasImplUtils.extractSharedKeyCredential(getHttpPipeline()));
}

/* TODO (gapra): Quick Query service docs. */
/**
* Queries the entire blob.
*
* <p>For more information, see the
* <a href="https://docs.microsoft.com/en-us/rest/api/">Azure Docs</a></p>
* <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/query-blob-contents">Azure Docs</a></p>
*
* <p><strong>Code Samples</strong></p>
*
Expand All @@ -1717,7 +1715,7 @@ public Flux<ByteBuffer> query(String expression) {
* Queries the entire blob.
*
* <p>For more information, see the
* <a href="https://docs.microsoft.com/en-us/rest/api/">Azure Docs</a></p>
* <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/query-blob-contents">Azure Docs</a></p>
*
* <p><strong>Code Samples</strong></p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,6 @@ public Response<Void> setMetadataWithResponse(Map<String, String> metadata, Blob
return blockWithOptionalTimeout(response, timeout);
}

// TODO: (rickle-msft) docs link
/**
* Returns the blob's tags.
*
Expand All @@ -794,7 +793,7 @@ public Response<Void> setMetadataWithResponse(Map<String, String> metadata, Blob
* {@codesnippet com.azure.storage.blob.specialized.BlobClientBase.getTags}
*
* <p>For more information, see the
* <a href="https://docs.microsoft.com/en-us/rest/api">Azure Docs</a></p>
* <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/get-blob-tags">Azure Docs</a></p>
*
* @return The blob's tags.
*/
Expand All @@ -810,7 +809,7 @@ public Map<String, String> getTags() {
* {@codesnippet com.azure.storage.blob.specialized.BlobClientBase.getTagsWithResponse#Duration-Context}
*
* <p>For more information, see the
* <a href="https://docs.microsoft.com/en-us/rest/api">Azure Docs</a></p>
* <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/get-blob-tags">Azure Docs</a></p>
*
* @param timeout An optional timeout value beyond which a {@link RuntimeException} will be raised.
* @param context Additional context that is passed through the Http pipeline during the service call.
Expand All @@ -831,7 +830,7 @@ public Response<Map<String, String>> getTagsWithResponse(Duration timeout, Conte
* {@codesnippet com.azure.storage.blob.specialized.BlobClientBase.setTags#Map}
*
* <p>For more information, see the
* <a href="https://docs.microsoft.com/en-us/rest/api">Azure Docs</a></p>
* <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/set-blob-tags">Azure Docs</a></p>
*
* @param tags Tags to associate with the blob.
*/
Expand All @@ -848,7 +847,7 @@ public void setTags(Map<String, String> tags) {
* {@codesnippet com.azure.storage.blob.specialized.BlobClientBase.setTagsWithResponse#Map-Duration-Context}
*
* <p>For more information, see the
* <a href="https://docs.microsoft.com/en-us/rest/api">Azure Docs</a></p>
* <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/set-blob-tags">Azure Docs</a></p>
*
* @param tags Tags to associate with the blob.
* @param timeout An optional timeout value beyond which a {@link RuntimeException} will be raised.
Expand Down Expand Up @@ -1055,12 +1054,11 @@ public String generateSas(BlobServiceSasSignatureValues blobServiceSasSignatureV
return this.client.generateSas(blobServiceSasSignatureValues);
}

/* TODO (gapra): Populate Rest Api docs for quick query. */
/**
* Opens a blob input stream to query the blob.
*
* <p>For more information, see the
* <a href="https://docs.microsoft.com/en-us/rest/api/">Azure Docs</a></p>
* <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/query-blob-contents">Azure Docs</a></p>
*
* <p><strong>Code Samples</strong></p>
*
Expand All @@ -1077,7 +1075,7 @@ public InputStream openQueryInputStream(String expression) {
* Opens a blob input stream to query the blob.
*
* <p>For more information, see the
* <a href="https://docs.microsoft.com/en-us/rest/api/">Azure Docs</a></p>
* <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/query-blob-contents">Azure Docs</a></p>
*
* <p><strong>Code Samples</strong></p>
*
Expand All @@ -1102,7 +1100,7 @@ public InputStream openQueryInputStream(BlobQueryOptions queryOptions) {
* Queries an entire blob into an output stream.
*
* <p>For more information, see the
* <a href="https://docs.microsoft.com/en-us/rest/api/">Azure Docs</a></p>
* <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/query-blob-contents">Azure Docs</a></p>
*
* <p><strong>Code Samples</strong></p>
*
Expand All @@ -1121,7 +1119,7 @@ public void query(OutputStream stream, String expression) {
* Queries an entire blob into an output stream.
*
* <p>For more information, see the
* <a href="https://docs.microsoft.com/en-us/rest/api/">Azure Docs</a></p>
* <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/query-blob-contents">Azure Docs</a></p>
*
* <p><strong>Code Samples</strong></p>
*
Expand Down
4 changes: 3 additions & 1 deletion sdk/storage/azure-storage-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Release History

## 12.8.0-beta.1 (Unreleased)
## 12.8.0-beta.1 (2020-07-07)
- Added support for the 2019-12-12 service version.
- Buffered UploadUtils now supports uploading data of long sized length.

## 12.7.0 (2020-06-12)
- Updated azure-core dependency.
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-common/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Azure Storage Common is a library that has common dependencies for all Azure Sto
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-common</artifactId>
<version>12.7.0</version>
<version>12.8.0-beta.1</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
4 changes: 3 additions & 1 deletion sdk/storage/azure-storage-file-datalake/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Release History

## 12.2.0-beta.1 (Unreleased)
## 12.2.0-beta.1 (2019-07-07)
- Added support for the 2019-12-12 service version.
- Added support to query a file.
- Added support to increase the maximum size of data that can be sent via an append.

## 12.1.2 (2020-06-12)
- Updated azure-storage-common and azure-core dependencies.
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-file-datalake/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Add a dependency on Azure Storage File Datalake
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-file-datalake</artifactId>
<version>12.1.2</version>
<version>12.2.0-beta.1</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -885,12 +885,11 @@ public Mono<Response<DataLakeFileAsyncClient>> renameWithResponse(String destina
}
}

/* TODO (gapra): Service docs*/
/**
* Queries the entire file.
*
* <p>For more information, see the
* <a href="https://docs.microsoft.com/en-us/rest/api/">Azure Docs</a></p>
* <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/query-blob-contents">Azure Docs</a></p>
*
* <p><strong>Code Samples</strong></p>
*
Expand All @@ -908,7 +907,7 @@ public Flux<ByteBuffer> query(String expression) {
* Queries the entire file.
*
* <p>For more information, see the
* <a href="https://docs.microsoft.com/en-us/rest/api/">Azure Docs</a></p>
* <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/query-blob-contents">Azure Docs</a></p>
*
* <p><strong>Code Samples</strong></p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -554,12 +554,11 @@ public Response<DataLakeFileClient> renameWithResponse(String destinationFileSys
return new SimpleResponse<>(resp, new DataLakeFileClient(resp.getValue()));
}

/* TODO (gapra): Populate Rest Api docs for quick query. */
/**
* Opens an input stream to query the file.
*
* <p>For more information, see the
* <a href="https://docs.microsoft.com/en-us/rest/api/">Azure Docs</a></p>
* <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/query-blob-contents">Azure Docs</a></p>
*
* <p><strong>Code Samples</strong></p>
*
Expand All @@ -576,7 +575,7 @@ public InputStream openQueryInputStream(String expression) {
* Opens an input stream to query the file.
*
* <p>For more information, see the
* <a href="https://docs.microsoft.com/en-us/rest/api/">Azure Docs</a></p>
* <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/query-blob-contents">Azure Docs</a></p>
*
* <p><strong>Code Samples</strong></p>
*
Expand All @@ -602,7 +601,7 @@ public InputStream openQueryInputStream(FileQueryOptions queryOptions) {
* Queries an entire file into an output stream.
*
* <p>For more information, see the
* <a href="https://docs.microsoft.com/en-us/rest/api/">Azure Docs</a></p>
* <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/query-blob-contents">Azure Docs</a></p>
*
* <p><strong>Code Samples</strong></p>
*
Expand All @@ -621,7 +620,7 @@ public void query(OutputStream stream, String expression) {
* Queries an entire file into an output stream.
*
* <p>For more information, see the
* <a href="https://docs.microsoft.com/en-us/rest/api/">Azure Docs</a></p>
* <a href="https://docs.microsoft.com/en-us/rest/api/storageservices/query-blob-contents">Azure Docs</a></p>
*
* <p><strong>Code Samples</strong></p>
*
Expand Down
3 changes: 2 additions & 1 deletion sdk/storage/azure-storage-file-share/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Release History

## 12.6.0-beta.1 (Unreleased)
## 12.6.0-beta.1 (2019-07-07)
- Added support for the 2019-12-12 service version.
- Added support for restoring file share.

## 12.5.0 (2020-06-12)
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-file-share/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Shares provide a way to organize sets of files and also can be mounted as an SMB
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-storage-file-share</artifactId>
<version>12.5.0</version>
<version>12.6.0-beta.1</version>
</dependency>
```
[//]: # ({x-version-update-end})
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-internal-avro/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 12.0.0-beta.1 (Unreleased)
## 12.0.0-beta.1 (2019-07-07)
- Initial release.

### Features included in `azure-storage-internal-avro`
Expand Down
3 changes: 2 additions & 1 deletion sdk/storage/azure-storage-queue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Release History

## 12.6.0-beta.1 (Unreleased)
## 12.6.0-beta.1 (2019-07-07)
- Added support for the 2019-12-12 service version.

## 12.5.2 (2020-06-12)
- Updated azure-storage-common and azure-core dependencies.
Expand Down
Loading