-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Bach client regen and add Redis client #3237
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
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,118 @@ | ||
| Google Cloud Java Client for Redis | ||
| ================================== | ||
|
|
||
| Java idiomatic client for [Google Cloud Redis][cloud-redis]. | ||
|
|
||
| [](https://circleci.com/gh/GoogleCloudPlatform/google-cloud-java/tree/master) | ||
| [](https://coveralls.io/r/GoogleCloudPlatform/google-cloud-java?branch=master) | ||
| []( https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-redis.svg) | ||
| [](https://www.codacy.com/app/mziccard/google-cloud-java) | ||
| [](https://www.versioneye.com/user/projects/58fe4c8d6ac171426c414772) | ||
|
|
||
| - [Product Documentation][redis-product-docs] | ||
| - [Client Library Documentation][redis-client-lib-docs] | ||
|
|
||
| > Note: This client is a work-in-progress, and may occasionally | ||
| > make backwards-incompatible changes. | ||
| Quickstart | ||
| ---------- | ||
|
|
||
| [//]: # ({x-version-update-start:google-cloud-redis:released}) | ||
| Add this to your pom.xml file | ||
| ```xml | ||
| <dependency> | ||
| <groupId>com.google.cloud</groupId> | ||
| <artifactId>google-cloud-redis</artifactId> | ||
| <version>0.46.0-beta</version> | ||
| </dependency> | ||
| ``` | ||
| If you are using Gradle, add this to your dependencies | ||
| ```Groovy | ||
| compile 'com.google.cloud:google-cloud-redis:0.46.0-beta' | ||
| ``` | ||
| If you are using SBT, add this to your dependencies | ||
| ```Scala | ||
| libraryDependencies += "com.google.cloud" % "google-cloud-redis" % "0.46.0-beta" | ||
| ``` | ||
| [//]: # ({x-version-update-end}) | ||
|
|
||
| Authentication | ||
| -------------- | ||
|
|
||
| See the [Authentication](https://github.com/GoogleCloudPlatform/google-cloud-java#authentication) section in the base directory's README. | ||
|
|
||
| About Google Cloud Redis | ||
| -------------------------- | ||
|
|
||
| [Google Cloud Redis API][cloud-redis] transfers data from partner | ||
| SaaS applications to Google BigQuery on a scheduled, managed basis. | ||
|
|
||
| See the [Redis client library docs][redis-client-lib-docs] to learn how to interact with the | ||
| Cloud Redis using this Client Library. | ||
|
|
||
| Getting Started | ||
| --------------- | ||
| #### Prerequisites | ||
| For this tutorial, you will need a | ||
| [Google Developers Console](https://console.developers.google.com/) project with the Redis API | ||
| enabled. You will need to [enable billing](https://support.google.com/cloud/answer/6158867?hl=en) to | ||
| use Google Cloud Redis. | ||
| [Follow these instructions](https://cloud.google.com/docs/authentication#preparation) to get your | ||
| project set up. You will also need to set up the local development environment by [installing the | ||
| Google Cloud SDK](https://cloud.google.com/sdk/) and running the following commands in command line: | ||
| `gcloud auth login` and `gcloud config set project [YOUR PROJECT ID]`. | ||
|
|
||
| #### Installation and setup | ||
| You'll need to obtain the `google-cloud-redis` library. See the [Quickstart](#quickstart) section | ||
| to add `google-cloud-redis` as a dependency in your code. | ||
|
|
||
| Transport | ||
| --------- | ||
| Redis uses gRPC for the transport layer. | ||
|
|
||
| Java Versions | ||
| ------------- | ||
|
|
||
| Java 7 or above is required for using this client. | ||
|
|
||
| Testing | ||
| ------- | ||
|
|
||
| This library has tools to help make tests for code using Cloud Redis. | ||
|
|
||
| See [TESTING] to read more about testing. | ||
|
|
||
| Versioning | ||
| ---------- | ||
|
|
||
| This library follows [Semantic Versioning](http://semver.org/). | ||
|
|
||
| It is currently in major version zero (``0.y.z``), which means that anything | ||
| may change at any time and the public API should not be considered | ||
| stable. | ||
|
|
||
| Contributing | ||
| ------------ | ||
|
|
||
| Contributions to this library are always welcome and highly encouraged. | ||
|
|
||
| See `google-cloud`'s [CONTRIBUTING] documentation and the [shared documentation](https://github.com/GoogleCloudPlatform/gcloud-common/blob/master/contributing/readme.md#how-to-contribute-to-gcloud) for more information on how to get started. | ||
|
|
||
| Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms. See [Code of Conduct][code-of-conduct] for more information. | ||
|
|
||
| License | ||
| ------- | ||
|
|
||
| Apache 2.0 - See [LICENSE] for more information. | ||
|
|
||
|
|
||
| [CONTRIBUTING]:https://github.com/GoogleCloudPlatform/google-cloud-java/blob/master/CONTRIBUTING.md | ||
| [code-of-conduct]:https://github.com/GoogleCloudPlatform/google-cloud-java/blob/master/CODE_OF_CONDUCT.md#contributor-code-of-conduct | ||
| [LICENSE]: https://github.com/GoogleCloudPlatform/google-cloud-java/blob/master/LICENSE | ||
| [TESTING]: https://github.com/GoogleCloudPlatform/google-cloud-java/blob/master/TESTING.md#testing-code-that-uses-redis | ||
|
|
||
| <!-- TODO: Update links when doc becomes available. --> | ||
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong. |
||
| [cloud-redis]: https://cloud.google.com/ | ||
| [redis-product-docs]: https://cloud.google.com/ | ||
| [redis-client-lib-docs]: https://googlecloudplatform.github.io/google-cloud-java/latest/apidocs/index.html?com/google/cloud/redis/v1/package-summary.html | ||
This file contains hidden or 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,92 @@ | ||
| <?xml version="1.0"?> | ||
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| <modelVersion>4.0.0</modelVersion> | ||
| <artifactId>google-cloud-redis</artifactId> | ||
| <version>0.46.1-alpha-SNAPSHOT</version><!-- {x-version-update:google-cloud-redis:current} --> | ||
| <packaging>jar</packaging> | ||
| <name>Google Cloud Redis</name> | ||
| <url>https://github.com/GoogleCloudPlatform/google-cloud-java/tree/master/google-cloud-redis</url> | ||
| <description> | ||
| Java idiomatic client for Google Cloud Redis. | ||
| </description> | ||
| <parent> | ||
| <groupId>com.google.cloud</groupId> | ||
| <artifactId>google-cloud-pom</artifactId> | ||
| <version>0.46.1-alpha-SNAPSHOT</version><!-- {x-version-update:google-cloud-pom:current} --> | ||
| </parent> | ||
| <properties> | ||
| <site.installationModule>google-cloud-redis</site.installationModule> | ||
| </properties> | ||
| <dependencies> | ||
| <dependency> | ||
| <groupId>${project.groupId}</groupId> | ||
| <artifactId>google-cloud-core</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>${project.groupId}</groupId> | ||
| <artifactId>google-cloud-core-grpc</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.google.api.grpc</groupId> | ||
| <artifactId>proto-google-cloud-redis-v1beta1</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.google.api.grpc</groupId> | ||
| <artifactId>grpc-google-cloud-redis-v1beta1</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>io.grpc</groupId> | ||
| <artifactId>grpc-netty-shaded</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>io.grpc</groupId> | ||
| <artifactId>grpc-stub</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>io.grpc</groupId> | ||
| <artifactId>grpc-auth</artifactId> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.google.auto.value</groupId> | ||
| <artifactId>auto-value</artifactId> | ||
| <scope>compile</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>${project.groupId}</groupId> | ||
| <artifactId>google-cloud-core</artifactId> | ||
| <type>test-jar</type> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>junit</groupId> | ||
| <artifactId>junit</artifactId> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.easymock</groupId> | ||
| <artifactId>easymock</artifactId> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.objenesis</groupId> | ||
| <artifactId>objenesis</artifactId> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.google.truth</groupId> | ||
| <artifactId>truth</artifactId> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.google.api.grpc</groupId> | ||
| <artifactId>grpc-google-iam-v1</artifactId> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.google.api</groupId> | ||
| <artifactId>gax-grpc</artifactId> | ||
| <classifier>testlib</classifier> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| </dependencies> | ||
| </project> |
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.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.