| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Also makes id a read-only string instead of BigInteger. Includes rewriting testsfor Zone.
| /** | ||
| * Deletes the zone. The method first attempts to delete the zone by ID. If the zone is not found | ||
| * or id is not set, it attempts to delete by name. | ||
| * Deletes the zone. The method first deletes the zone by name which must always be initialized. |
| * the zone by ID and if not found then by name. Returns a {@link ChangeRequest} with | ||
| * server-assigned ID or {@code null} if the zone was not found. | ||
| * Submits {@link ChangeRequest} to the service for it to applied to this zone. The method | ||
| * searches for zone by name which must always be initialized. |
|
Looks good. @mderka feel free to merge after fixing the javadoc. |
Sorry, something went wrong.
|
Fixed. Merging. |
Sorry, something went wrong.
Source-Link: googleapis/synthtool@18d4e9b Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:f8374176dc59291f05dd3fec927a9da2cda687a9ef4de32e77f699a2be12ab45
) * chore(java): add a note in README for migrated split repos Disable renovate bot and flaky bot for split repositories that have moved to the Java monorepo. The Java monorepo will pass the "monorepo=True" parameter to java.common_templates method in its owlbot.py files so that the migration note will not appear in the README in the monorepo. Co-authored-by: Jeff Ching <chingor@google.com> Source-Link: googleapis/synthtool@d4b2916 Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-java:latest@sha256:edae91ccdd2dded2f572ec341a768ad180305a3e8fbfd93064b28e237d35920a Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Jeff Ching <chingor@google.com>
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
🤖 I have created a release \*beep\* \*boop\* --- ## [3.1.0](https://www.github.com/googleapis/java-logging/compare/v3.0.1...v3.1.0) (2021-08-24) ### Features * implement listLogs API and provide sample snippet ([#602](https://www.github.com/googleapis/java-logging/issues/602)) ([9359569](https://www.github.com/googleapis/java-logging/commit/935956944200d978738d86ae4adff6107532531c)) ### Dependencies * update dependency com.google.cloud:google-cloud-shared-dependencies to v2.1.0 ([#636](https://www.github.com/googleapis/java-logging/issues/636)) ([fb9ac95](https://www.github.com/googleapis/java-logging/commit/fb9ac954293f5a281024e122d06e8487cb3a62c1)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
🤖 I have created a release \*beep\* \*boop\* --- ## [3.1.0](https://www.github.com/googleapis/java-logging/compare/v3.0.1...v3.1.0) (2021-08-24) ### Features * implement listLogs API and provide sample snippet ([googleapis#602](https://www.github.com/googleapis/java-logging/issues/602)) ([cda1d7c](https://www.github.com/googleapis/java-logging/commit/cda1d7cb6565588aa7416a7180905d972d0ce330)) ### Dependencies * update dependency com.google.cloud:google-cloud-shared-dependencies to v2.1.0 ([googleapis#636](https://www.github.com/googleapis/java-logging/issues/636)) ([47ce863](https://www.github.com/googleapis/java-logging/commit/47ce8632f23adf355fc32b53bc6a3d5d54775bad)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please).
* feat: dynamic flow control part 1 (googleapis#620) * feat: dynamic flow control p1, add settings * update documents * move flow controller instantiation to stub.create * fix test * add some tests * split out settings to BatchCallSettings * add getters for target rpc latency * fix doc * more changes in doc * update document and checks on parameters * add more docs on flow control configs * fix test * split up enable/disable settings * feat: Dynamic flow control p2 (googleapis#670) * feat: dynamic flow control for bulk mutation batcher * improve documents * add integration test * clean up tests and formatting * add more comments * moved FlowControlEventStats into FlowController * updates based on review p1 * updates based on review p2 * updates on review * update constant * fix tests * make row key prefix random * updates based on review
| Back | FazBrowse Home | New Git URL |
Removes all the methods that identify zones by id. Also switches zone id attribute from BigInteger to String. Makes id read only attribute settable by package scope builder method only, and forces name to be set.
Adds options for zone create method.
Addressed all comments of #610. Fixes #610.