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

Add methods to perform batch gets/deletes/updates of blobs #219

Closed
mziccard opened this issue Oct 7, 2015 · 14 comments
Closed

Add methods to perform batch gets/deletes/updates of blobs #219

mziccard opened this issue Oct 7, 2015 · 14 comments
Assignees
Labels
api: storage Issues related to the Cloud Storage API. type: feature request ‘Nice-to-have’ improvement, new feature or different behavior or design.

Comments

@mziccard
Copy link
Contributor

mziccard commented Oct 7, 2015

To simplify some common use cases of batch requests we could add to Blob class some static methods to do batch gets/deletes/updates:

Blob.get(storage, blobInfo1, blobInfo2, ...)
Blob.update(storage, blobInfo1, blobInfo2, ...)
Blob.delete(storage, blob1Info, blob2Info, ...)

We could also consider putting these methods in a dedicated Blobs class, what do you think?

@mziccard mziccard added type: feature request ‘Nice-to-have’ improvement, new feature or different behavior or design. api: storage Issues related to the Cloud Storage API. labels Oct 7, 2015
@aozarov
Copy link
Contributor

aozarov commented Oct 7, 2015

+1 for static Blob and Bucket operations.

Another option would be to move (or also add) these bulk operations to storage (e.g. storage.get(blobInfo...) which returns Iterable<BlobInfo>).

@mziccard
Copy link
Contributor Author

mziccard commented Oct 7, 2015

I like having them in Blob. Event though they take BlobInfo parameters they can return Iterable<Blob> (or Iterable<Boolean> for delete).

What about adding them both to storage with the signature you propose and to Blob returning Iterable<Blob> instead? (I know you don't like multiple ways of doing the same thing but forgive me:)

@aozarov
Copy link
Contributor

aozarov commented Oct 7, 2015

SGTM.

@mziccard
Copy link
Contributor Author

mziccard commented Oct 8, 2015

I was wondering whether we should return Iterable<BlobInfo> where a null item means failed request (or not found) or Iterable<BatchResponse.Result<BlobInfo>> that contains more information on the error. Thoughts?

If we decide to go with Iterable<BatchResponse.Result<BlobInfo>> we need to figure out what to do with the methods in functional Blob as BatchResponse.Result accepts only Serializable types.

@mziccard
Copy link
Contributor Author

mziccard commented Oct 8, 2015

Let me also add to this that for storage.delete(blobInfo...) we need to return an Iterable<Boolean> where null makes a lot less sense.

Also, naming the method storage.update(blobInfo...) causes ambiguity with storage.update(blobInfo, option...), I suggest we call these methods getAll, updateAll and deleteAll.

@aozarov
Copy link
Contributor

aozarov commented Oct 8, 2015

I don't have a strong opinion about it.

Because this is mostly a syntactic sugar for a simplified use-case of Batch with a single operation and without blob options I would slightly prefer to go with a simple response Iterable<BlobInfo> with null
when an item failed. Because this request does not include options I think the only reason for such
a failure would be HTTP_NOT_FOUND (triggered by NoSuchKey or AccessDenied) and if so that
would be consistent with the single-blob get.

@BrandonY can you confirm that?

Let me also add to this that for storage.delete(blobInfo...) we need to return an Iterable where null makes a lot less sense.

Again, we can simplify here and make this method always return True (deleted) or False (not deleted for what ever reason).

Also, naming the method storage.update(blobInfo...) causes ambiguity with storage.update(blobInfo, option...)

The way we dealt with that before is by using this signature: storage.delete(blobInfo, blobInfo...)

@aozarov
Copy link
Contributor

aozarov commented Oct 8, 2015

Another thing to consider is if we should return an Iterable or Iterator.
The benefit of the latter would be that it could allow use to chunk the input into multiple lazy batch requests.

@mziccard
Copy link
Contributor Author

mziccard commented Oct 8, 2015

I prefer keeping this simple as well!

The way we dealt with that before is by using this signature: storage.delete(blobInfo, blobInfo...)

I thought adding All might have been a more meaningful name but if you used this elsewhere we better stick to the delete, update, get naming.

Is there any reason you to prefer Iterable over List for this specific api?

@aozarov
Copy link
Contributor

aozarov commented Oct 8, 2015

Is there any reason you to prefer Iterable over List for this specific api?

Theoretically we could even make Iterable return a lazy Iterator.

@mziccard
Copy link
Contributor Author

mziccard commented Oct 8, 2015

Yes but for batch requests there's no support for pagination, right? Are we going to use lazy iterators for this?
I'm asking because using List might be friendlier.

@aozarov
Copy link
Contributor

aozarov commented Oct 8, 2015

Yes but for batch requests there's no support for pagination, right? Are we going to use lazy iterators for this?

Right, that is what I was suggesting. lets say a user requests 100 blobs and we define max batch size is 50 than we could get it in 2 sequential batches.

I'm asking because using List might be friendlier.

Yes, I agree. for a return type this would typically be better.
I am fine either way. Your call.

@mziccard
Copy link
Contributor Author

mziccard commented Oct 8, 2015

Just some more thoughts.

Right, that is what I was suggesting. lets say a user requests 100 blobs and we define max batch size is 50 than we could get it in 2 sequential batches.

If we ever want to, I think we could do this using a List as well. We can support get(i) and listIterator by using the input array of BlobInfo as a reference while all operation that modify the list throw UnsupportedOperationException.

@aozarov
Copy link
Contributor

aozarov commented Oct 9, 2015

If we ever want to, I think we could do this using a List as well. We can support get(i) and listIterator by using the input array of BlobInfo as a reference while all operation that modify the list throw UnsupportedOperationException.

Yes, we could document the return type as immutable list where all the operation that tries to
modify it throws UnsupportedOperationException.
I think the problem is that there are more side-effects such as list.size() which is typically a quick
operation can block for a long time.

Regardless, I actually think that it is more important to support a large input (which may exceed the
batch limitation) than dealing with a large result set. Therefore, a list could be just fine and we could
potentially chunk the request to multiple batches and populate the list one by one before we return it.

@mziccard
Copy link
Contributor Author

Closed with #233

github-actions bot pushed a commit to suztomo/google-cloud-java that referenced this issue Jun 29, 2022
)

* chore: update dependencies for regapic

* add more dependencies and trigger comment

* update goldens

* fix indentation

* remove duplicate gax-httpjson dependency

* remove duplicated dependencies
Source-Link: googleapis/synthtool@fa54eb2
Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:1ec28a46062b19135b11178ceee60231e5f5a92dab454e23ae0aab72cd875906
github-actions bot pushed a commit that referenced this issue Jul 1, 2022
This PR was generated using Autosynth. 🌈

Synth log will be available here:
https://source.cloud.google.com/results/invocations/81128f7c-8919-49e3-ad04-4808a30efef8/targets

- [ ] To automatically regenerate this PR, check this box. (May take up to 24 hours.)

Source-Link: googleapis/synthtool@572ef8f
github-actions bot pushed a commit that referenced this issue Jul 14, 2022
🤖 I have created a release *beep* *boop*
---


## [2.3.1](googleapis/java-vpcaccess@v2.3.0...v2.3.1) (2022-07-13)


### Bug Fixes

* enable longpaths support for windows test ([#1485](https://github.com/googleapis/java-vpcaccess/issues/1485)) ([#218](googleapis/java-vpcaccess#218)) ([a4f9f73](googleapis/java-vpcaccess@a4f9f73))

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this issue Aug 9, 2022
…onfig to v1.5.3 (#219)

[![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:google-cloud-shared-config](https://togithub.com/googleapis/java-shared-config) | `1.5.1` -> `1.5.3` | [![age](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-config/1.5.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-config/1.5.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-config/1.5.3/compatibility-slim/1.5.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/com.google.cloud:google-cloud-shared-config/1.5.3/confidence-slim/1.5.1)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>googleapis/java-shared-config</summary>

### [`v1.5.3`](https://togithub.com/googleapis/java-shared-config/blob/HEAD/CHANGELOG.md#&#8203;153-httpsgithubcomgoogleapisjava-shared-configcomparev152v153-2022-07-27)

[Compare Source](https://togithub.com/googleapis/java-shared-config/compare/v1.5.2...v1.5.3)

##### Dependencies

-   update dependency org.junit.vintage:junit-vintage-engine to v5.9.0 ([#&#8203;497](https://togithub.com/googleapis/java-shared-config/issues/497)) ([1fc6ab4](https://togithub.com/googleapis/java-shared-config/commit/1fc6ab445624cd4f9c8b161d109f346a9e5ed09a))
-   Update doclet to latest version 1.6.0 ([38fb7c3](https://togithub.com/googleapis/java-shared-config/commit/38fb7c3957fb6c9b2da10f9e463cc93a8b80a3a4))

### [`v1.5.2`](https://togithub.com/googleapis/java-shared-config/blob/HEAD/CHANGELOG.md#&#8203;152-httpsgithubcomgoogleapisjava-shared-configcomparev151v152-2022-07-25)

[Compare Source](https://togithub.com/googleapis/java-shared-config/compare/v1.5.1...v1.5.2)

##### Dependencies

-   update dependency com.puppycrawl.tools:checkstyle to v10 ([#&#8203;435](https://togithub.com/googleapis/java-shared-config/issues/435)) ([bfc8ce1](https://togithub.com/googleapis/java-shared-config/commit/bfc8ce1deca6292147d002d3afe22a09840aa5d6))
-   update dependency org.graalvm.buildtools:junit-platform-native to v0.9.13 ([#&#8203;488](https://togithub.com/googleapis/java-shared-config/issues/488)) ([39b91ee](https://togithub.com/googleapis/java-shared-config/commit/39b91ee1283f0a5fbbe63e8bfd1ec97ab4ab377e))
-   update dependency org.graalvm.buildtools:native-maven-plugin to v0.9.13 ([#&#8203;489](https://togithub.com/googleapis/java-shared-config/issues/489)) ([cc3bcfa](https://togithub.com/googleapis/java-shared-config/commit/cc3bcfa2d6717441a8d5b5048fa78c2cf7aabf2b))

</details>

---

### 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-orchestration-airflow).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xMzUuMSIsInVwZGF0ZWRJblZlciI6IjMyLjEzNS4xIn0=-->
github-actions bot pushed a commit that referenced this issue Aug 9, 2022
🤖 I have created a release *beep* *boop*
---


### Updating meta-information for bleeding-edge SNAPSHOT release.

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


### Updating meta-information for bleeding-edge SNAPSHOT release.

---
This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this issue Aug 16, 2022
…-info-reports-plugin to v3.4.1 (#219)

[![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.apache.maven.plugins:maven-project-info-reports-plugin](https://maven.apache.org/plugins/) | `3.4.0` -> `3.4.1` | [![age](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.1/compatibility-slim/3.4.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-project-info-reports-plugin/3.4.1/confidence-slim/3.4.0)](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-filestore).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xNjAuMSIsInVwZGF0ZWRJblZlciI6IjMyLjE2MC4xIn0=-->
github-actions bot pushed a commit that referenced this issue Aug 16, 2022
…-plugin to v3.4.1 (#219)

[![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.apache.maven.plugins:maven-javadoc-plugin](https://maven.apache.org/plugins/) | `3.4.0` -> `3.4.1` | [![age](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-javadoc-plugin/3.4.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-javadoc-plugin/3.4.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-javadoc-plugin/3.4.1/compatibility-slim/3.4.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/maven/org.apache.maven.plugins:maven-javadoc-plugin/3.4.1/confidence-slim/3.4.0)](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-debugger-client).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xNjEuMCIsInVwZGF0ZWRJblZlciI6IjMyLjE2MS4wIn0=-->
github-actions bot pushed a commit that referenced this issue Sep 15, 2022
…1575) (#219)

Source-Link: googleapis/synthtool@2e9ac19
Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:8175681a918181d306d9c370d3262f16b4c724cc73d74111b7d42fc985ca7f93
github-actions bot pushed a commit that referenced this issue Sep 30, 2022
🤖 I have created a release *beep* *boop*
---


## [2.3.5](https://togithub.com/googleapis/java-apigee-connect/compare/v2.3.4...v2.3.5) (2022-09-30)


### Dependencies

* Update dependency cachetools to v5 ([#240](https://togithub.com/googleapis/java-apigee-connect/issues/240)) ([4040c93](https://togithub.com/googleapis/java-apigee-connect/commit/4040c932c62445bfe9181053b570dbc670d95287))
* Update dependency certifi to v2022.9.24 ([#219](https://togithub.com/googleapis/java-apigee-connect/issues/219)) ([f6387b2](https://togithub.com/googleapis/java-apigee-connect/commit/f6387b211a8dfd9ad7ea664172a02f2bf7c2e818))
* Update dependency charset-normalizer to v2.1.1 ([#223](https://togithub.com/googleapis/java-apigee-connect/issues/223)) ([7345efa](https://togithub.com/googleapis/java-apigee-connect/commit/7345efacb481e4574306f5f570a6f43bbc7bb074))
* Update dependency click to v8.1.3 ([#224](https://togithub.com/googleapis/java-apigee-connect/issues/224)) ([496c0c6](https://togithub.com/googleapis/java-apigee-connect/commit/496c0c68bfad0b7698143081323a27ca7477daf3))
* Update dependency gcp-releasetool to v1.8.8 ([#220](https://togithub.com/googleapis/java-apigee-connect/issues/220)) ([3216f52](https://togithub.com/googleapis/java-apigee-connect/commit/3216f52d6a36f20f1031b311c736f96afb44c1e7))
* Update dependency google-api-core to v2.10.1 ([#225](https://togithub.com/googleapis/java-apigee-connect/issues/225)) ([a447369](https://togithub.com/googleapis/java-apigee-connect/commit/a447369c153fb043f66c41aa6effc0957685339e))
* Update dependency google-auth to v2.12.0 ([#226](https://togithub.com/googleapis/java-apigee-connect/issues/226)) ([9d6c516](https://togithub.com/googleapis/java-apigee-connect/commit/9d6c516ebce443cd11166978c0f169b62bc3955a))
* Update dependency google-cloud-core to v2.3.2 ([#221](https://togithub.com/googleapis/java-apigee-connect/issues/221)) ([bfe098b](https://togithub.com/googleapis/java-apigee-connect/commit/bfe098b954bad9fc179c0d18c06e98efcedafd1c))
* Update dependency google-cloud-storage to v2.5.0 ([#227](https://togithub.com/googleapis/java-apigee-connect/issues/227)) ([f7c97bd](https://togithub.com/googleapis/java-apigee-connect/commit/f7c97bd75ee39a0cc0e84612aee8436ef18e1d0e))
* Update dependency google-crc32c to v1.5.0 ([#228](https://togithub.com/googleapis/java-apigee-connect/issues/228)) ([1b43ed0](https://togithub.com/googleapis/java-apigee-connect/commit/1b43ed0176daae1b8829ed865e04bb23d4ef258a))
* Update dependency googleapis-common-protos to v1.56.4 ([#222](https://togithub.com/googleapis/java-apigee-connect/issues/222)) ([9fe79aa](https://togithub.com/googleapis/java-apigee-connect/commit/9fe79aa480350c3f4e1f14c0dc423596d357fcec))
* Update dependency importlib-metadata to v4.12.0 ([#229](https://togithub.com/googleapis/java-apigee-connect/issues/229)) ([f25d875](https://togithub.com/googleapis/java-apigee-connect/commit/f25d875c2a57b1b29be115256aa3d2cb212a5a58))
* Update dependency jeepney to v0.8.0 ([#230](https://togithub.com/googleapis/java-apigee-connect/issues/230)) ([705ee89](https://togithub.com/googleapis/java-apigee-connect/commit/705ee89bc496de6518761a51482815636ea15af6))
* Update dependency jinja2 to v3.1.2 ([#231](https://togithub.com/googleapis/java-apigee-connect/issues/231)) ([90b60ee](https://togithub.com/googleapis/java-apigee-connect/commit/90b60ee0f3bae40e1f5fb86f18200e13f04e2d71))
* Update dependency keyring to v23.9.3 ([#232](https://togithub.com/googleapis/java-apigee-connect/issues/232)) ([a668e69](https://togithub.com/googleapis/java-apigee-connect/commit/a668e697f77bbb290885ee3f1c2512361681f690))
* Update dependency markupsafe to v2.1.1 ([#233](https://togithub.com/googleapis/java-apigee-connect/issues/233)) ([1b1ae6d](https://togithub.com/googleapis/java-apigee-connect/commit/1b1ae6db1f59681ade98a9a21a353c9a26d40464))
* Update dependency protobuf to v3.20.2 ([#234](https://togithub.com/googleapis/java-apigee-connect/issues/234)) ([8d4c3a7](https://togithub.com/googleapis/java-apigee-connect/commit/8d4c3a7cd1e3473b8c149c60c63cfe84e82a7030))
* Update dependency protobuf to v4 ([#241](https://togithub.com/googleapis/java-apigee-connect/issues/241)) ([51cd12a](https://togithub.com/googleapis/java-apigee-connect/commit/51cd12a79728a31957cea780a6f25f089d347a6f))
* Update dependency pyjwt to v2.5.0 ([#235](https://togithub.com/googleapis/java-apigee-connect/issues/235)) ([f2f36ae](https://togithub.com/googleapis/java-apigee-connect/commit/f2f36ae0d98b7d79c5a88ecd9a965b836f6419ca))
* Update dependency requests to v2.28.1 ([#237](https://togithub.com/googleapis/java-apigee-connect/issues/237)) ([09fb5d9](https://togithub.com/googleapis/java-apigee-connect/commit/09fb5d9babfa9dd6a419deb6c51986e9dc26dd6f))
* Update dependency typing-extensions to v4.3.0 ([#238](https://togithub.com/googleapis/java-apigee-connect/issues/238)) ([48289e7](https://togithub.com/googleapis/java-apigee-connect/commit/48289e7932ff8c5725b35c71f8ebd56542e110a5))
* Update dependency zipp to v3.8.1 ([#239](https://togithub.com/googleapis/java-apigee-connect/issues/239)) ([e078449](https://togithub.com/googleapis/java-apigee-connect/commit/e07844948c41091f97040cf81a8f25d05fd9bb8c))

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


## [0.6.3](https://togithub.com/googleapis/java-network-security/compare/v0.6.2...v0.6.3) (2022-10-03)


### Dependencies

* Update dependency certifi to v2022.9.24 ([#207](https://togithub.com/googleapis/java-network-security/issues/207)) ([029e72d](https://togithub.com/googleapis/java-network-security/commit/029e72d297156998a329702a833d804e029ccb7b))
* Update dependency charset-normalizer to v2.1.1 ([#211](https://togithub.com/googleapis/java-network-security/issues/211)) ([e0a6193](https://togithub.com/googleapis/java-network-security/commit/e0a6193d8f90f38dd5295ff565782279615d1ae1))
* Update dependency click to v8.1.3 ([#212](https://togithub.com/googleapis/java-network-security/issues/212)) ([9930985](https://togithub.com/googleapis/java-network-security/commit/99309859d1a48f071bd3d8ac22ef2b7fa49302c2))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#232](https://togithub.com/googleapis/java-network-security/issues/232)) ([8b476b6](https://togithub.com/googleapis/java-network-security/commit/8b476b6e1eb9af0d03789e8d6e1a9085d75fe44e))
* Update dependency gcp-releasetool to v1.8.8 ([#208](https://togithub.com/googleapis/java-network-security/issues/208)) ([d735a5e](https://togithub.com/googleapis/java-network-security/commit/d735a5eeccd4733b741c28bd6a856d1c64f7893e))
* Update dependency google-auth to v2.12.0 ([#214](https://togithub.com/googleapis/java-network-security/issues/214)) ([a755a2c](https://togithub.com/googleapis/java-network-security/commit/a755a2c7a5e16141feecea9c1bcab3179add8747))
* Update dependency google-cloud-core to v2.3.2 ([#209](https://togithub.com/googleapis/java-network-security/issues/209)) ([6d383ee](https://togithub.com/googleapis/java-network-security/commit/6d383eebd10b12db9b4a384dcbc0366583b1ff77))
* Update dependency google-cloud-storage to v2.5.0 ([#215](https://togithub.com/googleapis/java-network-security/issues/215)) ([afb2d3f](https://togithub.com/googleapis/java-network-security/commit/afb2d3fea0206b184ff5b32fdbbdc26da09136ea))
* Update dependency google-crc32c to v1.5.0 ([#216](https://togithub.com/googleapis/java-network-security/issues/216)) ([c08d726](https://togithub.com/googleapis/java-network-security/commit/c08d726b14a6760db9912b22e969038b5be43c43))
* Update dependency googleapis-common-protos to v1.56.4 ([#210](https://togithub.com/googleapis/java-network-security/issues/210)) ([ad50258](https://togithub.com/googleapis/java-network-security/commit/ad50258922000e0cc395f332063d23935034e0d4))
* Update dependency importlib-metadata to v4.12.0 ([#217](https://togithub.com/googleapis/java-network-security/issues/217)) ([d219a01](https://togithub.com/googleapis/java-network-security/commit/d219a0141f8327f443e67bbe82022d48b419dbff))
* Update dependency jeepney to v0.8.0 ([#218](https://togithub.com/googleapis/java-network-security/issues/218)) ([b3f23df](https://togithub.com/googleapis/java-network-security/commit/b3f23dfc8df6c5903a0c9164205d1fab691cc4fc))
* Update dependency jinja2 to v3.1.2 ([#219](https://togithub.com/googleapis/java-network-security/issues/219)) ([e15aa1c](https://togithub.com/googleapis/java-network-security/commit/e15aa1c1da41bd4de442c98ed6423d9c95835707))
* Update dependency keyring to v23.9.3 ([#220](https://togithub.com/googleapis/java-network-security/issues/220)) ([b9d7944](https://togithub.com/googleapis/java-network-security/commit/b9d794459a09bc4b92163da024cd55075c1843bd))
* Update dependency protobuf to v3.20.2 ([#222](https://togithub.com/googleapis/java-network-security/issues/222)) ([43cd2ec](https://togithub.com/googleapis/java-network-security/commit/43cd2ec1604e6c4c7c89a1560a283ccad307793c))
* Update dependency protobuf to v4 ([#228](https://togithub.com/googleapis/java-network-security/issues/228)) ([13df18e](https://togithub.com/googleapis/java-network-security/commit/13df18e136adfcc43554f105cd530094e9c0822f))
* Update dependency pyjwt to v2.5.0 ([#223](https://togithub.com/googleapis/java-network-security/issues/223)) ([1ed858a](https://togithub.com/googleapis/java-network-security/commit/1ed858a4f640f7448c06c43d3a863473b9b29cca))
* Update dependency requests to v2.28.1 ([#224](https://togithub.com/googleapis/java-network-security/issues/224)) ([8a0cdd4](https://togithub.com/googleapis/java-network-security/commit/8a0cdd43ad47b806cd645fa6bcb025a7aac5472e))

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


## [1.3.4](https://togithub.com/googleapis/java-data-fusion/compare/v1.3.3...v1.3.4) (2022-10-03)


### Dependencies

* Update dependency certifi to v2022.9.24 ([#214](https://togithub.com/googleapis/java-data-fusion/issues/214)) ([3ac2b6a](https://togithub.com/googleapis/java-data-fusion/commit/3ac2b6a8004222b6c471fd3cb6e793f4120f5eaa))
* Update dependency charset-normalizer to v2.1.1 ([#218](https://togithub.com/googleapis/java-data-fusion/issues/218)) ([ecb78d9](https://togithub.com/googleapis/java-data-fusion/commit/ecb78d94ff2a3176669f36c4ebfbf33e0d63100d))
* Update dependency click to v8.1.3 ([#219](https://togithub.com/googleapis/java-data-fusion/issues/219)) ([55da366](https://togithub.com/googleapis/java-data-fusion/commit/55da366fc6f6ffe9e84d35cd3ab5e9185d966f51))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#239](https://togithub.com/googleapis/java-data-fusion/issues/239)) ([6a8d58e](https://togithub.com/googleapis/java-data-fusion/commit/6a8d58e3a6fcca398cbf422f102e88b228006af2))
* Update dependency gcp-releasetool to v1.8.8 ([#215](https://togithub.com/googleapis/java-data-fusion/issues/215)) ([8960212](https://togithub.com/googleapis/java-data-fusion/commit/8960212db7e396a8fb6fa207e18b684b1290606d))
* Update dependency google-api-core to v2.10.1 ([#220](https://togithub.com/googleapis/java-data-fusion/issues/220)) ([8fc6032](https://togithub.com/googleapis/java-data-fusion/commit/8fc6032d92efc52ea97541016a5123f845e2d4e1))
* Update dependency google-auth to v2.12.0 ([#221](https://togithub.com/googleapis/java-data-fusion/issues/221)) ([9bf5b47](https://togithub.com/googleapis/java-data-fusion/commit/9bf5b47d66a217aef100119b9bf51cb1d4db71f9))
* Update dependency google-cloud-core to v2.3.2 ([#216](https://togithub.com/googleapis/java-data-fusion/issues/216)) ([5a58540](https://togithub.com/googleapis/java-data-fusion/commit/5a58540c82a619a5874b0010d14bed7249fb1a64))
* Update dependency google-cloud-storage to v2.5.0 ([#222](https://togithub.com/googleapis/java-data-fusion/issues/222)) ([a80e034](https://togithub.com/googleapis/java-data-fusion/commit/a80e03487815a464c91bb7dbd49052c877e47934))
* Update dependency google-crc32c to v1.5.0 ([#223](https://togithub.com/googleapis/java-data-fusion/issues/223)) ([baf7b4e](https://togithub.com/googleapis/java-data-fusion/commit/baf7b4e360917b34cdbb1261525a296b865e22f2))
* Update dependency googleapis-common-protos to v1.56.4 ([#217](https://togithub.com/googleapis/java-data-fusion/issues/217)) ([e1b167b](https://togithub.com/googleapis/java-data-fusion/commit/e1b167be2d12bb0d761e9dbe4c860ab845342ff9))
* Update dependency importlib-metadata to v4.12.0 ([#232](https://togithub.com/googleapis/java-data-fusion/issues/232)) ([8d6dffe](https://togithub.com/googleapis/java-data-fusion/commit/8d6dffee83ebeb9cb8b7d7a625469e7b032ed556))
* Update dependency jeepney to v0.8.0 ([#233](https://togithub.com/googleapis/java-data-fusion/issues/233)) ([1652c6a](https://togithub.com/googleapis/java-data-fusion/commit/1652c6a4c023fd3b78200e33e7f2b60861bc8545))
* Update dependency jinja2 to v3.1.2 ([#234](https://togithub.com/googleapis/java-data-fusion/issues/234)) ([9b2740d](https://togithub.com/googleapis/java-data-fusion/commit/9b2740d823ff15287ccdf8eee291eb5251285fa5))
* Update dependency keyring to v23.9.3 ([#235](https://togithub.com/googleapis/java-data-fusion/issues/235)) ([c285f06](https://togithub.com/googleapis/java-data-fusion/commit/c285f06ef8f35f4911c216d3cd5118b59d13a046))
* Update dependency markupsafe to v2.1.1 ([#224](https://togithub.com/googleapis/java-data-fusion/issues/224)) ([3f68198](https://togithub.com/googleapis/java-data-fusion/commit/3f681989ac8b93c369e83550d1bc2189399fd59e))
* Update dependency protobuf to v3.20.2 ([#225](https://togithub.com/googleapis/java-data-fusion/issues/225)) ([9081b6e](https://togithub.com/googleapis/java-data-fusion/commit/9081b6e4cd82fe1fda99333747385a7fe414a3c3))
* Update dependency requests to v2.28.1 ([#227](https://togithub.com/googleapis/java-data-fusion/issues/227)) ([a5433f7](https://togithub.com/googleapis/java-data-fusion/commit/a5433f743d8be8aa5543ed4a3e82232bdd4cf6f3))
* Update dependency typing-extensions to v4.3.0 ([#228](https://togithub.com/googleapis/java-data-fusion/issues/228)) ([62a71c3](https://togithub.com/googleapis/java-data-fusion/commit/62a71c3e9811dca4fe7587ce49d6beda1b57c778))

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


## [1.2.1](https://togithub.com/googleapis/java-datastream/compare/v1.2.0...v1.2.1) (2022-10-03)


### Dependencies

* Update dependency certifi to v2022.9.24 ([#208](https://togithub.com/googleapis/java-datastream/issues/208)) ([706b28f](https://togithub.com/googleapis/java-datastream/commit/706b28f6a75a99b1ecfa9a42a6fafd7b0a7be082))
* Update dependency charset-normalizer to v2.1.1 ([#213](https://togithub.com/googleapis/java-datastream/issues/213)) ([f69342c](https://togithub.com/googleapis/java-datastream/commit/f69342c4a1cdbea9dc5c9af5e6a211e947418c94))
* Update dependency click to v8.1.3 ([#214](https://togithub.com/googleapis/java-datastream/issues/214)) ([f3e4b82](https://togithub.com/googleapis/java-datastream/commit/f3e4b8266df4aeb0730b7cd01bc78b6fbac6bc85))
* Update dependency com.google.cloud:google-cloud-shared-dependencies to v3.0.4 ([#229](https://togithub.com/googleapis/java-datastream/issues/229)) ([9222b21](https://togithub.com/googleapis/java-datastream/commit/9222b21216e0a9495e150975c27e33caefbe79a7))
* Update dependency gcp-releasetool to v1.8.8 ([#209](https://togithub.com/googleapis/java-datastream/issues/209)) ([e4e0263](https://togithub.com/googleapis/java-datastream/commit/e4e026352db0352b964bbf558646d8a6836f2179))
* Update dependency google-api-core to v2.10.1 ([#216](https://togithub.com/googleapis/java-datastream/issues/216)) ([1400a42](https://togithub.com/googleapis/java-datastream/commit/1400a4276bb83693ea913644d5d46e17aff7c65e))
* Update dependency google-auth to v2.11.1 ([#210](https://togithub.com/googleapis/java-datastream/issues/210)) ([a26ae6b](https://togithub.com/googleapis/java-datastream/commit/a26ae6bce25655a94285f938fb18b00a6381ccc7))
* Update dependency google-cloud-core to v2.3.2 ([#211](https://togithub.com/googleapis/java-datastream/issues/211)) ([3e4c2ea](https://togithub.com/googleapis/java-datastream/commit/3e4c2ea3237787dcee9cfdb904f297b84003c014))
* Update dependency google-cloud-storage to v2.5.0 ([#215](https://togithub.com/googleapis/java-datastream/issues/215)) ([143936d](https://togithub.com/googleapis/java-datastream/commit/143936d3f44c9c6d6eda8876dfd8720e44825375))
* Update dependency google-crc32c to v1.5.0 ([#217](https://togithub.com/googleapis/java-datastream/issues/217)) ([7586620](https://togithub.com/googleapis/java-datastream/commit/7586620d0de34d7a1aa4711a5fe9686c583339f1))
* Update dependency googleapis-common-protos to v1.56.4 ([#212](https://togithub.com/googleapis/java-datastream/issues/212)) ([b280bbd](https://togithub.com/googleapis/java-datastream/commit/b280bbdf38b24404835265ea8cbaed5d62d1a6d6))
* Update dependency importlib-metadata to v4.12.0 ([#218](https://togithub.com/googleapis/java-datastream/issues/218)) ([9eb3d08](https://togithub.com/googleapis/java-datastream/commit/9eb3d08d1eb5dc9fc6b463e81687b194ba4a4514))
* Update dependency jeepney to v0.8.0 ([#219](https://togithub.com/googleapis/java-datastream/issues/219)) ([ce4b583](https://togithub.com/googleapis/java-datastream/commit/ce4b5834e859e78d20fb344539ba9d75e503097c))
* Update dependency jinja2 to v3.1.2 ([#220](https://togithub.com/googleapis/java-datastream/issues/220)) ([ff6a152](https://togithub.com/googleapis/java-datastream/commit/ff6a152f174f28cd3d84f92150d8b0f9bb4a2e89))
* Update dependency keyring to v23.9.3 ([#221](https://togithub.com/googleapis/java-datastream/issues/221)) ([0c80201](https://togithub.com/googleapis/java-datastream/commit/0c802014c9c5820ee3fc7e2154e17ab8772f5861))
* Update dependency markupsafe to v2.1.1 ([#222](https://togithub.com/googleapis/java-datastream/issues/222)) ([1524422](https://togithub.com/googleapis/java-datastream/commit/1524422274abbe79270bbbbcb07b27b8dac49206))
* Update dependency protobuf to v3.20.2 ([#223](https://togithub.com/googleapis/java-datastream/issues/223)) ([9d11085](https://togithub.com/googleapis/java-datastream/commit/9d11085091075a864e7f7628baa9c068d7cdb8f8))

---
This PR was generated with [Release Please](https://togithub.com/googleapis/release-please). See [documentation](https://togithub.com/googleapis/release-please#release-please).
github-actions bot pushed a commit that referenced this issue Oct 4, 2022
- [ ] Regenerate this pull request now.

PiperOrigin-RevId: 477955264

Source-Link: https://togithub.com/googleapis/googleapis/commit/a724450af76d0001f23602684c49cd6a4b3a5654

Source-Link: https://togithub.com/googleapis/googleapis-gen/commit/4abcbcaec855e74a0b22a4988cf9e0eb61a83094
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNGFiY2JjYWVjODU1ZTc0YTBiMjJhNDk4OGNmOWUwZWI2MWE4MzA5NCJ9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api: storage Issues related to the Cloud Storage API. type: feature request ‘Nice-to-have’ improvement, new feature or different behavior or design.
Projects
None yet
Development

No branches or pull requests

2 participants