-
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
Move Azure Tables into sdk/tables/azure-data-tables #11682
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
afd4aab
Move files into sdk/tables.
conniey 31a8e1e
Update version_client.txt
conniey eebd134
Alphabetise dependencies.
conniey 8533742
Add ci.yml
conniey 5b31fb3
Change eng/docsettings.yml
conniey a2f65b4
Fix readme
conniey ab736e2
Fix generated code
conniey 0bbe226
Fix pom.xml
conniey bc4417c
Removing tables. Adding pom.xml
conniey File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# Azure Tables client library for Java | ||
Azure Storage Tables client library is a service that stores structured NoSQL data in the cloud, providing a | ||
key/attribute store with a schemaless design. Tables storage gives developers flexibility and scalability with all the | ||
best parts of Azure cloud. | ||
|
||
[Source code][source_code] | [Package (Maven)][package] | [API reference documentation][api_documentation] | ||
| [Product documentation][azconfig_docs] | [Samples][samples] | ||
|
||
## Getting started | ||
|
||
### Prerequisites | ||
|
||
- Java Development Kit (JDK) with version 8 or above | ||
- [Azure Subscription][azure_subscription] | ||
|
||
### Include the Package | ||
|
||
[//]: # ({x-version-update-start;com.azure:tables:azure-data-tables;current}) | ||
```xml | ||
<dependency> | ||
<groupId>com.azure</groupId> | ||
<artifactId>azure-data-tables</artifactId> | ||
<version>1.0.0-beta.1</version> | ||
</dependency> | ||
``` | ||
[//]: # ({x-version-update-end}) | ||
|
||
## Key concepts | ||
|
||
## Examples | ||
Use the client library for Tables to: | ||
- manages tables | ||
- edit and access table contents | ||
|
||
## Troubleshooting | ||
|
||
## Next steps | ||
|
||
## Contributing | ||
|
||
This project welcomes contributions and suggestions. Most contributions require you to agree to a [Contributor License Agreement (CLA)][cla] declaring that you have the right to, and actually do, grant us the rights to use your contribution. | ||
|
||
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA. | ||
|
||
This project has adopted the [Microsoft Open Source Code of Conduct][coc]. For more information see the [Code of Conduct FAQ][coc_faq] or contact [[email protected]][coc_contact] with any additional questions or comments. | ||
|
||
<!-- Links --> | ||
[api_documentation]: https://aka.ms/java-docs | ||
[azure_subscription]: https://azure.microsoft.com/free | ||
[cla]: https://cla.microsoft.com | ||
[coc_contact]: mailto:[email protected] | ||
[coc_faq]: https://opensource.microsoft.com/codeofconduct/faq/ | ||
[coc]: https://opensource.microsoft.com/codeofconduct/ | ||
[package]: https://search.maven.org/artifact/com.azure/azure-data-tables | ||
[samples_readme]: src/samples/README.md | ||
[samples]: src/samples/java/com/azure/data/tables | ||
[source_code]: src | ||
|
||
 |
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
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.
Most of these are alphabetise changes where I cut and paste the dependencies into the right alphabetical order. The one that matters is line 116 - 117.
I know I should do cosmetic changes in another PR.. but I can't unsee it. :(
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.
This is great! Thank you!