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

Getting PERMISSION_DENIED when running QuickstartSample class #813

Closed
choudharysuchi opened this issue Aug 17, 2017 · 6 comments
Closed

Comments

@choudharysuchi
Copy link

There is a requirement in my project to analyse videos based upon the text provided by the customer. Tried using Google Cloud Video Intelligence API. Referred code from "https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/video/cloud-client"

However, I am getting the below issue while executing the QuickstartSample.java from local by passing the video kept on my system.

Exception in thread "main" java.util.concurrent.ExecutionException: com.google.api.gax.grpc.ApiException: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Google Cloud Video Intelligence API has not been used in project usable-auth-library before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/videointelligence.googleapis.com/overview?project=usable-auth-library then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.
at com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:500)
at com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:479)
at com.google.api.gax.grpc.OperationFuture.get(OperationFuture.java:113)
at com.video.main.QuickstartSample.main(QuickstartSample.java:59)
Caused by: com.google.api.gax.grpc.ApiException: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Google Cloud Video Intelligence API has not been used in project usable-auth-library before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/videointelligence.googleapis.com/overview?project=usable-auth-library then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.
at com.google.api.gax.grpc.ExceptionTransformingCallable$ExceptionTransformingFuture.onFailure(ExceptionTransformingCallable.java:108)
at com.google.api.core.ApiFutures$1.onFailure(ApiFutures.java:53)
at com.google.common.util.concurrent.Futures$4.run(Futures.java:1123)
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:435)
at com.google.common.util.concurrent.AbstractFuture.executeListener(AbstractFuture.java:900)
at com.google.common.util.concurrent.AbstractFuture.complete(AbstractFuture.java:811)
at com.google.common.util.concurrent.AbstractFuture.setException(AbstractFuture.java:675)
at io.grpc.stub.ClientCalls$GrpcFuture.setException(ClientCalls.java:466)
at io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:442)
at io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:426)
at io.grpc.internal.ClientCallImpl.access$100(ClientCallImpl.java:76)
at io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:512)
at io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$700(ClientCallImpl.java:429)
at io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:544)
at io.grpc.internal.ContextRunnable.run(ContextRunnable.java:52)
at io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:117)
at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(Unknown Source)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
Caused by: io.grpc.StatusRuntimeException: PERMISSION_DENIED: Google Cloud Video Intelligence API has not been used in project usable-auth-library before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/videointelligence.googleapis.com/overview?project=usable-auth-library then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.
at io.grpc.Status.asRuntimeException(Status.java:543)
... 15 more

Following are the steps which i followed,

  1. Created a maven project with only QuickstartSample.java file. Able to do maven build with clean install args.
  2. Created account on Google Cloud Platform, created a project with name "VideoFilteration", saved the service account key locally with enabling it and configuring it in environment variables.
  3. Installed Cloud SDK followed by "gcloud init" and "gcloud auth application-default login".

To my surprise, I never created "usable-auth-library" project on google cloud account for which I am getting the said issue.

Please provide your valuable inputs, as I am stuck on this error.

Thanks in Advance.

@lesv
Copy link
Contributor

lesv commented Aug 17, 2017

The Video and DLP api's need GOOGLE_APPLICATION_CREDENTIALS set to a service account for that project.

@choudharysuchi
Copy link
Author

Thanks for the reply.

However I have already configured this in environment variables as GOOGLE_APPLICATION_CREDENTIALS = absolute path of <VideoFilteration-6b6344b603b9.json>.

@jabubake
Copy link
Contributor

It does seem like the environment variable GOOGLE_APPLICATION_CREDENTIALS is somehow not getting picked up. Can you try System.getenv("GOOGLE_APPLICATION_CREDENTIALS") within your code and confirm that it does correctly point to your credentials JSON ? Also can you provide information on your development environment ?

@jabubake
Copy link
Contributor

Closing issue, please re-open if you are still running into issues.

@jaindee
Copy link

jaindee commented Aug 2, 2018

Hi I am running into the same problem, however i am getting the correct path of the json file i provided.

@ejgutierrezvega
Copy link

Hi, I'm following the quick start from Stackdriver and I'm getting the same issue.
https://opencensus.io/quickstart/java/metrics/#1

At the beginning I was having issues reading the system environments, but now I'm able to run the code input some samples and after some time I'm getting the following exception.

I created the system account with only the role of "Monitoring Metric Writer".

io.opencensus.exporter.stats.stackdriver.StackdriverExporterWorker export
WARNING: ApiException thrown when exporting TimeSeries.
com.google.api.gax.rpc.PermissionDeniedException: io.grpc.StatusRuntimeException: PERMISSION_DENIED: The caller does not have permission
at com.google.api.gax.rpc.ApiExceptionFactory.createException(ApiExceptionFactory.java:55)
at com.google.api.gax.grpc.GrpcApiExceptionFactory.create(GrpcApiExceptionFactory.java:72)
at com.google.api.gax.grpc.GrpcApiExceptionFactory.create(GrpcApiExceptionFactory.java:60)
at com.google.api.gax.grpc.GrpcExceptionCallable$ExceptionTransformingFuture.onFailure(GrpcExceptionCallable.java:95)
at com.google.api.core.ApiFutures$1.onFailure(ApiFutures.java:61)
at com.google.common.util.concurrent.Futures$4.run(Futures.java:1123)
at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:435)
at com.google.common.util.concurrent.AbstractFuture.executeListener(AbstractFuture.java:900)
at com.google.common.util.concurrent.AbstractFuture.complete(AbstractFuture.java:811)
at com.google.common.util.concurrent.AbstractFuture.setException(AbstractFuture.java:675)
at io.grpc.stub.ClientCalls$GrpcFuture.setException(ClientCalls.java:492)
at io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:467)
at io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39)
at io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23)
at io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40)
at io.grpc.internal.CensusStatsModule$StatsClientInterceptor$1$1.onClose(CensusStatsModule.java:684)
at io.grpc.PartialForwardingClientCallListener.onClose(PartialForwardingClientCallListener.java:39)
at io.grpc.ForwardingClientCallListener.onClose(ForwardingClientCallListener.java:23)
at io.grpc.ForwardingClientCallListener$SimpleForwardingClientCallListener.onClose(ForwardingClientCallListener.java:40)
at io.grpc.internal.CensusTracingModule$TracingClientInterceptor$1$1.onClose(CensusTracingModule.java:391)
at io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:471)
at io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:63)
at io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.close(ClientCallImpl.java:553)
at io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl.access$600(ClientCallImpl.java:474)
at io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:591)
at io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:123)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)

minherz pushed a commit that referenced this issue Nov 9, 2022
🤖 I have created a release *beep* *boop*
---


### [0.122.17](googleapis/java-errorreporting@v0.122.16...v0.122.17) (2022-03-03)


### Dependencies

* update dependency com.google.cloud:google-cloud-core to v2.5.6 ([#812](googleapis/java-errorreporting#812)) ([5f04ac9](googleapis/java-errorreporting@5f04ac9))
* update dependency com.google.cloud:google-cloud-shared-dependencies to v2.8.0 ([#813](googleapis/java-errorreporting#813)) ([971e639](googleapis/java-errorreporting@971e639))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
minherz pushed a commit that referenced this issue Nov 10, 2022
🤖 I have created a release *beep* *boop*
---


### [0.122.17](googleapis/java-errorreporting@v0.122.16...v0.122.17) (2022-03-03)


### Dependencies

* update dependency com.google.cloud:google-cloud-core to v2.5.6 ([#812](googleapis/java-errorreporting#812)) ([5f04ac9](googleapis/java-errorreporting@5f04ac9))
* update dependency com.google.cloud:google-cloud-shared-dependencies to v2.8.0 ([#813](googleapis/java-errorreporting#813)) ([971e639](googleapis/java-errorreporting@971e639))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
minherz pushed a commit that referenced this issue Nov 10, 2022
🤖 I have created a release *beep* *boop*
---


### [0.122.17](googleapis/java-errorreporting@v0.122.16...v0.122.17) (2022-03-03)


### Dependencies

* update dependency com.google.cloud:google-cloud-core to v2.5.6 ([#812](googleapis/java-errorreporting#812)) ([5f04ac9](googleapis/java-errorreporting@5f04ac9))
* update dependency com.google.cloud:google-cloud-shared-dependencies to v2.8.0 ([#813](googleapis/java-errorreporting#813)) ([971e639](googleapis/java-errorreporting@971e639))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
Shabirmean pushed a commit that referenced this issue Nov 11, 2022
…1.2 (#813)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:libraries-bom](https://cloud.google.com/java/docs/bom) ([source](https://togithub.com/googleapis/java-cloud-bom)) | `26.1.1` -> `26.1.2` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.2/compatibility-slim/26.1.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:libraries-bom/26.1.2/confidence-slim/26.1.1)](https://docs.renovatebot.com/merge-confidence/) |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. ⚠ **Warning**: custom changes will be lost.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-recommender).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xOTguMSIsInVwZGF0ZWRJblZlciI6IjMyLjE5OC4xIn0=-->
Sita04 pushed a commit that referenced this issue Nov 11, 2022
…r to v4.2.2 (#813)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.seleniumhq.selenium:selenium-chrome-driver](https://selenium.dev/) ([source](https://togithub.com/SeleniumHQ/selenium)) | `4.2.1` -> `4.2.2` | [![age](https://badges.renovateapi.com/packages/maven/org.seleniumhq.selenium:selenium-chrome-driver/4.2.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.seleniumhq.selenium:selenium-chrome-driver/4.2.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.seleniumhq.selenium:selenium-chrome-driver/4.2.2/compatibility-slim/4.2.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.seleniumhq.selenium:selenium-chrome-driver/4.2.2/confidence-slim/4.2.1)](https://docs.renovatebot.com/merge-confidence/) |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-recaptchaenterprise).
Sita04 pushed a commit that referenced this issue Nov 15, 2022
…r to v4.2.2 (#813)

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [org.seleniumhq.selenium:selenium-chrome-driver](https://selenium.dev/) ([source](https://togithub.com/SeleniumHQ/selenium)) | `4.2.1` -> `4.2.2` | [![age](https://badges.renovateapi.com/packages/maven/org.seleniumhq.selenium:selenium-chrome-driver/4.2.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.seleniumhq.selenium:selenium-chrome-driver/4.2.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.seleniumhq.selenium:selenium-chrome-driver/4.2.2/compatibility-slim/4.2.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.seleniumhq.selenium:selenium-chrome-driver/4.2.2/confidence-slim/4.2.1)](https://docs.renovatebot.com/merge-confidence/) |

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-recaptchaenterprise).
Shabirmean pushed a commit that referenced this issue Nov 18, 2022
…rm to v2.7.1 (#813)

[![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [com.google.cloud:google-cloud-aiplatform](https://togithub.com/googleapis/java-) | `2.7.0` -> `2.7.1` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-aiplatform/2.7.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-aiplatform/2.7.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-aiplatform/2.7.1/compatibility-slim/2.7.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-aiplatform/2.7.1/confidence-slim/2.7.0)](https://docs.renovatebot.com/merge-confidence/) |

---

### Configuration

📅 **Schedule**: At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Renovate will not automatically rebase this PR, because other commits have been found.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox.

---

This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-aiplatform).
gcf-merge-on-green bot pushed a commit that referenced this issue Dec 20, 2022
### Migrating samples from [googleapis/java-aiplatform](https://togithub.com/googleapis/java-aiplatform/tree/main/samples) into [java-docs-samples/aiplatform](https://togithub.com/GoogleCloudPlatform/java-docs-samples)
---

- feat: initial code generation
- chore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.0.18 (#2)
- chore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.0.19 (#11)
- samples: update pom.xml (s) in the samples dir (#24)
- chore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.0.21 (#14)
- test(deps): update dependency junit:junit to v4.13.1
- test(deps): update dependency com.google.truth:truth to v1.1 (#33)
- deps: update dependency com.google.cloud:google-cloud-storage to v1.113.2 (#38)
- samples: ucaip samples batch 3 of 6 (#18)
- samples: ucaip batch samples 4 of 6 (#19)
- samples: ucaip batch samples 5 of 6 (#20)
- samples: ucaip samples batch 6 of  6 (#17)
- samples: ucaip sample batch 2 of 6 (#15)
- chore: delete ununsed format script (#48)
- samples: initial commit  and it is missing env vars for testing (#7)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v0.1.0 (#59)
- samples(deps): update dependency com.google.cloud:google-cloud-storage to v1.113.3 (#55)
- samples(deps): update dependency com.google.protobuf:protobuf-java-util to v4.0.0-rc-2 (#27)
- samples: adds custom model, action recognition samples and tests (#111)
- feat: adds ValueConverter utility and demo samples (#108)
- samples(deps): update dependency com.google.cloud:google-cloud-storage to v1.113.8 (#72)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v0.2.0 (#133)
- test(deps): update dependency com.google.truth:truth to v1.1.2 (#138)
- samples: adds enhanced library samples (#134)
- test(deps): update dependency junit:junit to v4.13.2 (#161)
- deps: update dependency com.google.cloud:google-cloud-storage to v1.113.9 (#132)
- fix: reduces image object detection test resource file size (#154)
- deps: update dependency com.google.cloud:google-cloud-storage to v1.113.10 (#164)
- feat: updates library for v1 service (#157)
- deps: update dependency com.google.cloud:google-cloud-storage to v1.113.11 (#175)
- docs: updates prediction to new hostname (#173)
- chore: replaced hard-coded values with env vars (#185)
- deps: update dependency com.google.cloud:google-cloud-storage to v1.113.12 (#186)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v0.3.0 (#188)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.3.0 (#189)
- deps: update dependency com.google.cloud:google-cloud-storage to v1.113.14 (#202)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v0.4.0 (#209)
- chore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.0.22 (#223)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.4.0 (#210)
- deps: update dependency com.google.cloud:google-cloud-storage to v1.113.15 (#232)
- samples: updates samples to v1 (1 of 8) (#206)
- samples: updates samples to v1 (2 of 8) (#212)
- test(teardown): refactored teardown section of test (#254)
- test(env var): added missing requireEnv val (#255)
- samples:  updates samples to v1 (3 of 8) (#215)
- samples: updates samples to v1 (5 of 10) (#235)
- samples: updates samples to v1 (4 of 10) (#233)
- deps: update dependency com.google.cloud:google-cloud-storage to v1.113.16 (#334)
- chore: Increasing timeout createdataset (#337)
- samples: updates samples to v1 (7 of 10) (#238)
- samples: updates samples to v1 (6 of 10) (#236)
- samples: updates samples to v1 (8 of 8) (#239)
- deps: update dependency com.google.cloud:google-cloud-storage to v1.114.0 (#349)
- deps: update dependency com.google.code.gson:gson to v2.8.7 (#382)
- test(deps): update dependency com.google.truth:truth to v1.1.3 (#383)
- chore: changes product name to 'Vertex AI' (#373)
- chore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.0.23 (#399)
- deps: update dependency com.google.cloud:google-cloud-storage to v1.115.0 (#396)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v1 (#406)
- chore: disabling ITs to reduce cost & resolve quota issue (#421)
- deps: update dependency com.google.cloud:google-cloud-storage to v1.117.1 (#422)
- test: Refactor teardown (#424)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.5.1 (#428)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v1.0.2 (#427)
- deps: update dependency com.google.cloud:google-cloud-storage to v1.118.0 (#440)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.5.2 (#434)
- deps: update dependency com.google.cloud:google-cloud-storage to v2 (#610)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2 (#609)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.0.1 (#612)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.6.0 (#608)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.0.1 (#616)
- deps: update dependency com.google.code.gson:gson to v2.8.8 (#622)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.0.2 (#621)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.6.1 (#617)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.1.0 (#630)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.6.2 (#629)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.0.2 (#628)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.1.0 (#640)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.1.1 (#644)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.2.0 (#650)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.8.0 (#641)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.2.1 (#660)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.1.2 (#662)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.8.1 (#661)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.8.2 (#666)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.1.3 (#667)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.1.4 (#669)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.1.5 (#673)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.2.2 (#665)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.8.3 (#678)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.2.3 (#677)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.2.4 (#681)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.1.6 (#683)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.8.4 (#682)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.1.7 (#689)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.1.8 (#696)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.1.9 (#698)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.3.0 (#702)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.9.0 (#703)
- deps: update dependency com.google.code.gson:gson to v2.8.9 (#707)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.2.0 (#710)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.2.1 (#722)
- docs: Added evalId comment to samples (#727)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.10.0 (#733)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.4.0 (#732)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.11.0 (#740)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.5.0 (#739)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.2.2 (#747)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.11.2 (#744)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.5.2 (#748)
- chore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.0.24 (#734)
- chore(deps): update dependency com.google.cloud.samples:shared-configuration to v1.2.0 (#749)
- test: Add null check in teardown (#752)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.2.3 (#764)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.3.0 (#773)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.11.3 (#762)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.5.3 (#761)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.6.0 (#784)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.12.0 (#782)
- deps: update dependency com.google.code.gson:gson to v2.9.0 (#792)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.4.0 (#783)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.4.4 (#801)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.7.0 (#807)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.13.0 (#808)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.7.1 (#813)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.13.1 (#812)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.7.2 (#819)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.13.2 (#817)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.4.5 (#818)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.7.3 (#822)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.13.3 (#823)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.7.4 (#828)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.13.4 (#829)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.5.0 (#834)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.5.1 (#835)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.8.0 (#838)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.6.0 (#840)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.14.0 (#839)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.8.1 (#846)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.14.1 (#847)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.14.2 (#852)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.8.2 (#851)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.8.3 (#855)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.14.3 (#856)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.14.4 (#860)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.8.4 (#859)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.6.1 (#863)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.8.5 (#868)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.14.5 (#869)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.14.6 (#875)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.8.6 (#874)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.8.7 (#878)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.14.7 (#879)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.8.8 (#882)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.14.8 (#883)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.14.9 (#890)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.8.9 (#889)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.15.0 (#915)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.7.0 (#916)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.9.0 (#914)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.9.1 (#919)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.15.1 (#920)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.15.2 (#924)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.9.2 (#923)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.9.3 (#927)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.15.3 (#928)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.15.4 (#932)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.9.4 (#931)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.15.5 (#936)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.9.5 (#935)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.9.6 (#941)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.15.6 (#942)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v2.9.7 (#953)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.15.7 (#954)
- feat(samples): add create-featurestore sample (#948)
- feat(samples): added all entity type samples (#976)
- feat(samples): add remaining featurestore api samples (#974)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v3 (#986)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.17.0 (#1003)
- deps: update dependency com.google.code.gson:gson to v2.9.1 (#1001)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.10.0 (#1004)
- feat(samples): add all feature samples (#980)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.11.0 (#1005)
- feat(samples): add all feature values samples (#981)
- deps: update dependency com.google.cloud:google-cloud-bigquery to v2.14.1 (#1006)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.11.1 (#1008)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.11.2 (#1010)
- deps: update dependency com.google.cloud:google-cloud-bigquery to v2.14.3 (#1009)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v3.2.0 (#1020)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.18.0 (#1021)
- deps: update dependency com.google.cloud:google-cloud-bigquery to v2.14.5 (#1016)
- deps: update dependency com.google.cloud:google-cloud-bigquery to v2.14.6 (#1026)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.11.3 (#1015)
- deps: update dependency com.google.cloud:google-cloud-bigquery to v2.14.7 (#1031)
- deps: update dependency com.google.cloud:google-cloud-bigquery to v2.15.0 (#1040)
- deps: update dependency com.google.cloud:google-cloud-bigquery to v2.16.0 (#1044)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.19.0 (#1051)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v3.3.0 (#1050)
- deps: update dependency com.google.cloud:google-cloud-bigquery to v2.16.1 (#1046)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.12.0 (#1047)
- feat(sample): featurestore node updates (#1028)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v3.4.0 (#1085)
- deps: update dependency com.google.cloud:google-cloud-bigquery to v2.17.0 (#1082)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.20.0 (#1086)
- deps: update dependency com.google.cloud:google-cloud-storage to v2.13.0 (#1087)
- deps: update dependency com.google.cloud:google-cloud-bigquery to v2.17.1 (#1092)
- chore(deps): update dependency com.google.cloud:google-cloud-aiplatform to v3.4.1 (#1090)
- deps: update dependency com.google.api.grpc:proto-google-cloud-aiplatform-v1beta1 to v0.20.1 (#1091)
- deps: update dependency com.google.cloud:google-cloud-bigquery to v2.18.0 (#1113)

Fixes #issue

> It's a good idea to open an issue first for discussion.

- [ ] I have followed [Sample Format Guide](https://togithub.com/GoogleCloudPlatform/java-docs-samples/blob/main/SAMPLE_FORMAT.md)
- [ ] `pom.xml` parent set to latest `shared-configuration`
- [ ] Appropriate changes to README are included in PR
- [ ] API's need to be enabled to test (tell us)
- [ ] Environment Variables need to be set (ask us to set them)
- [ ] **Tests** pass:   `mvn clean verify` **required**
- [ ] **Lint**  passes: `mvn -P lint checkstyle:check` **required**
- [ ] **Static Analysis**:  `mvn -P lint clean compile pmd:cpd-check spotbugs:check` **advisory only**
- [ ] Please **merge** this PR for me once it is approved.
Sita04 pushed a commit that referenced this issue Feb 7, 2023
…5.2 (#813)

* deps: update dependency com.google.cloud:google-cloud-pubsub to v1.115.2

* 🦉 Updates from OwlBot

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Sita04 pushed a commit that referenced this issue Feb 7, 2023
🤖 I have created a release *beep* *boop*
---


### [3.1.3](googleapis/java-dlp@v3.1.2...v3.1.3) (2022-03-01)


### Dependencies

* update actions/github-script action to v6 ([#821](googleapis/java-dlp#821)) ([f3c0dff](googleapis/java-dlp@f3c0dff))
* update actions/setup-java action to v3 ([#827](googleapis/java-dlp#827)) ([4e3e43e](googleapis/java-dlp@4e3e43e))
* update dependency com.google.cloud:google-cloud-pubsub to v1.115.2 ([#813](googleapis/java-dlp#813)) ([898f8f8](googleapis/java-dlp@898f8f8))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants