Google APIs
25a1781c09
bazel: migrate all go_gapic_library targets to microgenerator implementation
...
* update rules_go and gazelle bazel dependencies
* update gapic-generator bazel dependency (with build file generator changes)
PiperOrigin-RevId: 302730217
2020-03-24 13:05:53 -07:00
Google APIs
c8aef82028
Add cc_proto_library and cc_grpc_library targets for Bigtable protos.
...
Also fix indentation of cc_grpc_library targets in Spanner and IAM protos.
PiperOrigin-RevId: 293440538
2020-02-05 13:41:27 -08:00
Google APIs
eba3897fff
Add cc_proto_library and cc_grpc_library targets for Spanner and IAM protos.
...
PiperOrigin-RevId: 291988651
2020-01-28 12:21:42 -08:00
Google APIs
0480cf40be
Migrate IAM Admin v1 to GAPIC v2.
...
Committer: @lukesneeringer
PiperOrigin-RevId: 289411084
2020-01-13 03:38:10 -08:00
Google APIs
555e844dbe
chore: publish retry configs for iam admin, cloud asset, and remoteworkers
...
PiperOrigin-RevId: 283801979
2019-12-04 11:49:37 -08:00
Google APIs
06a840781d
Populate BAZEL.build files for around 100 APIs (all APIs we publish) in all 7 langauges.
...
PiperOrigin-RevId: 282449910
2019-11-25 15:50:18 -08:00
Google APIs
bc76ffd873
Use rules_proto bzl files to load proto_library
...
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
2019-11-13 22:28:15 -08:00
Google APIs
a9589347c8
Synchronize new proto/yaml changes.
...
PiperOrigin-RevId: 276110444
2019-10-22 11:43:03 -07:00
Google APIs
95c0959449
Synchronize new proto/yaml changes.
...
PiperOrigin-RevId: 276083452
2019-10-22 09:46:06 -07:00
Google APIs
6a2f0244d6
Synchronize new proto/yaml changes.
...
PiperOrigin-RevId: 249677018
2019-05-23 11:03:47 -07:00
Google APIs
6ea045ad2e
Synchronize new proto/yaml changes.
...
PiperOrigin-RevId: 249345152
2019-05-21 16:07:26 -07:00
Google APIs
f86c9531dc
Synchronize new proto/yaml changes.
...
PiperOrigin-RevId: 247457584
2019-05-09 10:56:46 -07:00
Google APIs
9497e697af
Synchronize new proto/yaml changes.
...
PiperOrigin-RevId: 247122368
2019-05-07 17:34:22 -07:00
Google APIs
fd67be4b51
Synchronize new proto/yaml changes.
...
PiperOrigin-RevId: 241096997
2019-03-29 20:50:32 -07:00
Google APIs
37386f1ebc
Synchronize new proto/yaml changes.
...
PiperOrigin-RevId: 240841842
2019-03-28 13:38:42 -07:00
Google APIs
eae7fe03e6
Synchronize new proto/yaml changes.
...
PiperOrigin-RevId: 236171707
2019-02-28 12:18:56 -08:00
Google APIs
c1e4972ef6
Synchronize new proto/yaml changes.
...
PiperOrigin-RevId: 232765627
2019-02-06 16:01:58 -08:00
Google APIs
d16dcddcb8
Synchronize new proto/yaml changes.
...
PiperOrigin-RevId: 228927812
2019-01-11 12:45:24 -08:00
Google APIs
a77d1b828d
Synchronize new proto/yaml changes.
...
PiperOrigin-RevId: 196298865
2018-05-11 13:16:32 -07:00
Google APIs
6cedede796
Synchronize new proto/yaml changes.
...
PiperOrigin-RevId: 193103335
2018-04-16 14:52:44 -07:00
Google APIs
95496dc69e
Synchronize new proto changes.
2017-10-27 23:07:28 -07:00
Google APIs
a56dc4ee7f
Synchronize new proto changes.
2017-08-31 18:08:59 -07:00
Ernest Landrito
237b593750
Python: Change package paths ( #428 )
2017-08-21 14:10:38 -07:00
Garrett Jones
e8de333d39
Java: Removing .spi from package names ( #374 )
2017-06-09 13:39:40 -07:00
Jon Skeet
e6f2d2b99e
Remove retry for UNAVAILABLE on non-idempotent calls
...
Implemented by executing the following command:
find . -name '*_gapic.yaml' | xargs perl -i -p0e 's/- name: non_idempotent\n retry_codes:\n - UNAVAILABLE */- name: non_idempotent\n retry_codes: \[\]/g'
2017-06-05 09:35:47 +01:00
Jon Skeet
b01f986d34
Allow a status code of UNAVAILABLE to be retried
...
This is applied to the `retry_codes` of every API.
It's only a change for non-idempotent methods; the idempotent
methods already included this in the list.
2017-03-01 20:43:11 +00:00
googleapis-publisher
6ae2d42424
Synchronize new proto changes.
2016-12-08 19:02:27 -08:00
Jun Mukai
16d182803f
Rename packagename pattern for nodejs.
...
See googleapis/toolkit#757 for why it's necessary.
2016-11-17 13:27:12 -08:00
garrettjonesgoogle
a8ce4b8b70
Adding license config to GAPIC config files ( #180 )
2016-10-26 11:57:51 -07:00
Michael Darakananda
4503257439
Go: Properly set method visibility ( #178 )
...
This is a followup to https://github.com/googleapis/googleapis/pull/173
This commit partially reverts it by setting TestIamPermissions back to
public.
It also make {Get,Set}IamPolicy private instead of deleting them,
to make the hand-written version easier.
2016-10-25 09:35:30 +11:00
Michael Darakananda
e31b2c0712
Go: Disable iam admin Get/Set/Test methods ( #173 )
...
This commit disable iam admin's GetIamPolicy, SetIamPolicy,
and TestIamPermissions.
These methods are to be handwritten later.
Update https://github.com/GoogleCloudPlatform/google-cloud-go/issues/340
2016-10-14 23:37:58 +11:00
Ernest Landrito
65eaa0ef19
Open sourcing iam admin api. ( #151 )
...
* Open sourcing iam admin api.
* Hand edits to the gapic yaml
* Fixed name, src path, and updateServiceAccount method.
* Package names and output paths fix.
* Python package name, iam mixin dependency.
2016-09-23 10:45:27 -07:00