-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Implemented features for STG 74 #15428
Merged
Merged
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
3b1439e
Updated all service versions to STG74 (#14079)
gapra-msft 39e8f81
Merge branch 'master' into feature/storage/stg74
gapra-msft 0936492
Added code for get file range diff (#14140)
gapra-msft 2b22fe4
Merge branch 'master' into feature/storage/stg74
gapra-msft 6df5d14
Added code for smb multi channel (#14180)
gapra-msft b9707fc
Merge branch 'master' into feature/storage/stg74
gapra-msft c96fefb
Added code to allow scheduling file expiry (#14319)
gapra-msft 3193068
Added support for arrow output serialization (#14431)
gapra-msft f3a97bd
Merge branch 'master' into feature/storage/stg74
gapra-msft c442299
Merge branch 'master' into feature/storage/stg74
gapra-msft 022b7ca
Merge branch 'master' into feature/storage/stg74
gapra-msft 75d62ae
Added support to read last access time (#14342)
gapra-msft f503977
Merge branch 'master' into feature/storage/stg74
gapra-msft e065ebc
Added support to lease shares (#14287)
gapra-msft ac212de
Merge branch 'master' into feature/storage/stg74
gapra-msft 01bc318
Updated file ranges to getFileRangesDiff (#14839)
gapra-msft b91c930
Added support for directory and delegation SAS (#14531)
gapra-msft 41af3e8
Merge branch 'master' into feature/storage/stg74
gapra-msft 988e69b
Recursive acl (#14669)
rickle-msft 8703aed
Added missing error code (#14986)
gapra-msft 14c4696
Merge branch 'master' into feature/storage/stg74
gapra-msft 6964085
Added tests to ensure support for 4TB file (#15179)
gapra-msft e700c2b
Storage/file share error code (#15007)
gapra-msft 70bd409
Merge branch 'master' into feature/storage/stg74
gapra-msft 652424c
Fixed simple renames and doc issues from 74 (#15297)
gapra-msft 118f69e
Added back support for container undelete. (#15344)
gapra-msft 60d2675
Regenerated code to address APIView comments (#15341)
gapra-msft fe4b5e8
Merge branch 'master' into feature/storage/stg74
gapra-msft d600512
Minor changelog formatting issues
gapra-msft c6d93e2
Formatting - new lines and unused imports
gapra-msft 95ab50a
Merge branch 'master' into feature/storage/stg74
gapra-msft 2c3b254
Fixed public API for file get range diff (#15562)
gapra-msft 43b7347
Merge branch 'master' into feature/storage/stg74
gapra-msft 22b315b
Modified recursive acl tests to be able to play in live mode (#15815)
gapra-msft 7abc8fa
Added support for live tests in the STG 74 branch (#15724)
gapra-msft 7d576de
Merge branch 'master' into feature/storage/stg74
gapra-msft 44743b1
Added code to return batch failures in results for recursive ACL (#15…
gapra-msft e266b8c
Wrapped continuation token with Exception when recursive acl call is …
gapra-msft File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
...e-blob/src/main/java/com/azure/storage/blob/implementation/models/ArrowConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
|
||
package com.azure.storage.blob.implementation.models; | ||
|
||
import com.azure.core.annotation.Fluent; | ||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; | ||
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
/** | ||
* arrow configuration. | ||
*/ | ||
@JacksonXmlRootElement(localName = "ArrowConfiguration") | ||
@Fluent | ||
public final class ArrowConfiguration { | ||
private static final class SchemaWrapper { | ||
@JacksonXmlProperty(localName = "Field") | ||
private final List<ArrowField> items; | ||
|
||
@JsonCreator | ||
private SchemaWrapper(@JacksonXmlProperty(localName = "Field") List<ArrowField> items) { | ||
this.items = items; | ||
} | ||
} | ||
|
||
/* | ||
* The schema property. | ||
*/ | ||
@JsonProperty(value = "Schema", required = true) | ||
private SchemaWrapper schema; | ||
|
||
/** | ||
* Get the schema property: The schema property. | ||
* | ||
* @return the schema value. | ||
*/ | ||
public List<ArrowField> getSchema() { | ||
if (this.schema == null) { | ||
this.schema = new SchemaWrapper(new ArrayList<ArrowField>()); | ||
} | ||
return this.schema.items; | ||
} | ||
|
||
/** | ||
* Set the schema property: The schema property. | ||
* | ||
* @param schema the schema value to set. | ||
* @return the ArrowConfiguration object itself. | ||
*/ | ||
public ArrowConfiguration setSchema(List<ArrowField> schema) { | ||
this.schema = new SchemaWrapper(schema); | ||
return this; | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add REST Docs