These fields were actually always required by the backend, so annotation just documents status quo. I believe this change will not require major version bump for any language.
PiperOrigin-RevId: 429093810
In particular this applies to Java and Python microgenerators.
With this change `java_gapic_*` and `py_gapic_*` rules mean microgenerator versions. The monolith versions of the rules are named as `java_gapic_*_legacy` and `py_gapic_*_legacy` respectively.
Also change Ads BAZEL template to reflect the change in default rule names.
Also change `DO NOT OVERRIDE` comment warnings meaning (to reflect that now by default microgenerator rules are generated and the generated version must be accepted only if the API is being migrated to the microgenerator).
PiperOrigin-RevId: 346227314
Removes uses of external dependency on longrunning/autogen:go_default_library
in favor of the local target //google/lonrunning:longrunning_go_gapic.
PiperOrigin-RevId: 314387187
The nodejs_gapic_library targets were migrated to gapic-generator-typescript
which doesn't use gapic_yaml, rendering that attribute unused. Instead it uses
the proto annotations & grpc_service_config, which this change reflects.
PiperOrigin-RevId: 314206960
This tries to resolve inconsistent timeout/retries in different client
libraries.
Two major changes:
- Update *_grpc_service_config.json and *_gapic.yaml to make sure that they
are consistent.
- Add missing ListDatabases config in spanner_admin_database_gapic.yaml.
PiperOrigin-RevId: 312582296
This makes googleapis forward compatible with Bazel incompatible change https://github.com/bazelbuild/bazel/issues/8922.
This CL was created by adding @rules_proto to the WORKSPACE file and then running:
find . -name BUILD.bazel | \
while read build; do \
buildifier --lint=fix --warnings=load $build; \
done
Since buildifier cannot be told not to reformat the BUILD file, some files are reformatted.
PiperOrigin-RevId: 280356106
Update gapic-generator and protoc-java-resource-name plugin dependencies to the latest versions.
The following clients remain broken because of bugs in gapic-generator and/or corresponding configs
google/cloud/iot/v1
google/cloud/oslogin/v1
google/spanner/admin/instance/v1
google/cloud/oslogin/v1
PiperOrigin-RevId: 279171061