diff --git a/modules/sync/googleapis/googleapis/state.json b/modules/sync/googleapis/googleapis/state.json index b59ebecc..d5688875 100644 --- a/modules/sync/googleapis/googleapis/state.json +++ b/modules/sync/googleapis/googleapis/state.json @@ -15703,6 +15703,34 @@ { "name": "1a0e353ac4a372cf7016df4ce0a7d7e609f339b3", "digest": "93dbe51c27606999eef918360df509485a4d272e79aaed6d0016940379a9b06d316fc5228b7b50cca94bb310f34c5fc5955ce7474f655f0d0a224c4121dda3c1" + }, + { + "name": "e8ae64d79da2e932cdfc24d50c7408cb8dced72f", + "digest": "93dbe51c27606999eef918360df509485a4d272e79aaed6d0016940379a9b06d316fc5228b7b50cca94bb310f34c5fc5955ce7474f655f0d0a224c4121dda3c1" + }, + { + "name": "a0a60482f9ab94ed705cd006533dd3c085b7ebc3", + "digest": "93dbe51c27606999eef918360df509485a4d272e79aaed6d0016940379a9b06d316fc5228b7b50cca94bb310f34c5fc5955ce7474f655f0d0a224c4121dda3c1" + }, + { + "name": "d196cb2d69e542020101d8a30f1e33497835a4f1", + "digest": "93dbe51c27606999eef918360df509485a4d272e79aaed6d0016940379a9b06d316fc5228b7b50cca94bb310f34c5fc5955ce7474f655f0d0a224c4121dda3c1" + }, + { + "name": "4a6b902f1ec46023528873f5c776a74764cdd9cb", + "digest": "93dbe51c27606999eef918360df509485a4d272e79aaed6d0016940379a9b06d316fc5228b7b50cca94bb310f34c5fc5955ce7474f655f0d0a224c4121dda3c1" + }, + { + "name": "c3120eaacc6b24057ea16eb1b3c0bfe54a6be882", + "digest": "93dbe51c27606999eef918360df509485a4d272e79aaed6d0016940379a9b06d316fc5228b7b50cca94bb310f34c5fc5955ce7474f655f0d0a224c4121dda3c1" + }, + { + "name": "08e6c4ec008d4a7924d4c507565e6f7da7e0c751", + "digest": "93dbe51c27606999eef918360df509485a4d272e79aaed6d0016940379a9b06d316fc5228b7b50cca94bb310f34c5fc5955ce7474f655f0d0a224c4121dda3c1" + }, + { + "name": "8ae42f34e12cb8ab1ca66290322f4c8662c71a0a", + "digest": "93dbe51c27606999eef918360df509485a4d272e79aaed6d0016940379a9b06d316fc5228b7b50cca94bb310f34c5fc5955ce7474f655f0d0a224c4121dda3c1" } ] } \ No newline at end of file diff --git a/modules/sync/grpc/grpc/cas/1e31a08983b081f8601f8bab3a703ee1ee8546bed1ab380dfc1aacb7fa80f4abb37d97c81231029efcd046b68bd39bde39773670c63cdee82bd26b79c7bd6ac9 b/modules/sync/grpc/grpc/cas/1e31a08983b081f8601f8bab3a703ee1ee8546bed1ab380dfc1aacb7fa80f4abb37d97c81231029efcd046b68bd39bde39773670c63cdee82bd26b79c7bd6ac9 new file mode 100644 index 00000000..e3ae2c48 --- /dev/null +++ b/modules/sync/grpc/grpc/cas/1e31a08983b081f8601f8bab3a703ee1ee8546bed1ab380dfc1aacb7fa80f4abb37d97c81231029efcd046b68bd39bde39773670c63cdee82bd26b79c7bd6ac9 @@ -0,0 +1,74 @@ +// Copyright 2015 The gRPC Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// The canonical version of this proto can be found at +// https://github.com/grpc/grpc-proto/blob/master/grpc/health/v1/health.proto + +syntax = "proto3"; + +package grpc.health.v1; + +option csharp_namespace = "Grpc.Health.V1"; +option go_package = "google.golang.org/grpc/health/grpc_health_v1"; +option java_multiple_files = true; +option java_outer_classname = "HealthProto"; +option java_package = "io.grpc.health.v1"; +option objc_class_prefix = "GrpcHealthV1"; + +message HealthCheckRequest { + string service = 1; +} + +message HealthCheckResponse { + enum ServingStatus { + UNKNOWN = 0; + SERVING = 1; + NOT_SERVING = 2; + SERVICE_UNKNOWN = 3; // Used only by the Watch method. + } + ServingStatus status = 1; +} + +// Health is gRPC's mechanism for checking whether a server is able to handle +// RPCs. Its semantics are documented in +// https://github.com/grpc/grpc/blob/master/doc/health-checking.md. +service Health { + // Check gets the health of the specified service. If the requested service + // is unknown, the call will fail with status NOT_FOUND. If the caller does + // not specify a service name, the server should respond with its overall + // health status. + // + // Clients should set a deadline when calling Check, and can declare the + // server unhealthy if they do not receive a timely response. + // + // Check implementations should be idempotent and side effect free. + rpc Check(HealthCheckRequest) returns (HealthCheckResponse); + + // Performs a watch for the serving status of the requested service. + // The server will immediately send back a message indicating the current + // serving status. It will then subsequently send a new message whenever + // the service's serving status changes. + // + // If the requested service is unknown when the call is received, the + // server will send a message setting the serving status to + // SERVICE_UNKNOWN but will *not* terminate the call. If at some + // future point, the serving status of the service becomes known, the + // server will send a new message with the service's serving status. + // + // If the call terminates with status UNIMPLEMENTED, then clients + // should assume this method is not supported and should not retry the + // call. If the call terminates with any other status (including OK), + // clients should retry the call with appropriate exponential backoff. + rpc Watch(HealthCheckRequest) returns (stream HealthCheckResponse); +} diff --git a/modules/sync/grpc/grpc/cas/63aa996f96f415b0c9fc664fa0ff412ab2cae5438eeeb4bdef1781b33b0efb85367232eda5df58eb262a6e8232f3c573f995e736816f4ec91da2ed9dad226de9 b/modules/sync/grpc/grpc/cas/63aa996f96f415b0c9fc664fa0ff412ab2cae5438eeeb4bdef1781b33b0efb85367232eda5df58eb262a6e8232f3c573f995e736816f4ec91da2ed9dad226de9 new file mode 100644 index 00000000..0722380d --- /dev/null +++ b/modules/sync/grpc/grpc/cas/63aa996f96f415b0c9fc664fa0ff412ab2cae5438eeeb4bdef1781b33b0efb85367232eda5df58eb262a6e8232f3c573f995e736816f4ec91da2ed9dad226de9 @@ -0,0 +1,32 @@ +shake256:a9c4ad5b20a2946a25d5efb7f096b32ffaa567e3e9a7d89984870104aab45f08d7f6f10c7c72affdc4aabab0471066958ae97c3bb5925b7cb268f8afde27ebbf LICENSE +shake256:3736ab9625deb2a2e1f50c338c9f43112f275819b3914dba6f1ef48c6fb8bf4df43172eef656ea808a786df5278b9d822378931a8b6c42ebef6d07c2f52732c9 buf.md +shake256:312d88e635d89c5a08988667f3b6cd199e089ceb51b08664649a2f7332e9f19802cff66f366e98f930362060ada40d52db1f5a28626334ae1dff5071c2ca2a5d buf.yaml +shake256:ecdc715885fffb15f278a7c379bde153bb29c6fd3b4c9b38459d710879802ab35f4e306ebe9193d35841f43edfbd3722198507393406daefdd5e4a09dcf28af2 grpc/binlog/v1/binarylog.proto +shake256:5812652254993cb9b622e0bfce96840041b9571b1c969c4ee4fbdf8ffe409965fa1f1dc8f8243e38b5a8e91cdfa92cf7d297ad4b625790ada0a3abb0d0822951 grpc/binlog/v1alpha/binarylog.proto +shake256:42a7c2a427d2445bb41a4d966b579bb409f635a947880527aa5562dc2e6d83b55889d1298c1518b944848a02ff0a06ac12df9e0a6166ecce517b2c40b4038751 grpc/channelz/v1/channelz.proto +shake256:442b079b4db907b7fb13120c1ec0066f976ea6e6042d616a7ce758e6aadca206a37a7c50c6f3f11b620716285f6d3402290f787a7a18060fb4c16a2ffc312ce8 grpc/core/stats.proto +shake256:f49500451f3d9e4f54329a1d2a1b3848b99dce5b08ba503bd7b3ebf2ed92e1484f2b2c6bfe48e1002c3a05a30b9f1042a1bb78a1b19ea41c4b805e743aa81cb7 grpc/examples/helloworld.proto +shake256:c47bc71d74fb093a7169113501cb7d1e1dae5a3b4fcc8a9d2d566fbf4324599273cb3af66c0bd92ce329c6a0cae9327481c7d620231db4bdd97832c2cd3d8fe6 grpc/gcp/altscontext.proto +shake256:116a7223888bf596aad29e8181b4367b530df02f162b85994505844579f8d04aed588bb6e5da3b55bb5300f6a9e25e69ed743a46c6ff3ef79de8160b7144ab3b grpc/gcp/handshaker.proto +shake256:2af3aa69996d1faaf7841e5461bbc8b478d7b609b4dec415452f4f67d984afc24ff0db4534105c2ae8d5101c168365a5eea7e4a0bee20c3dfd44a8f2d5b21cd7 grpc/gcp/s2a/common.proto +shake256:e7e1a66048ac754905e5429a8c1d1024d099cff423d736dce64fe97416259b659144c7999bbc7068dd513fa3a96b39f5e8b83c65ed27ade3f50419f94592c9eb grpc/gcp/s2a/s2a.proto +shake256:8a264e58d9705310638e8c1fa9cdc43e705bd8dd34419cf116587309bcb6dc1683da359ff0992c9b398e774d4df2640810030965735eed1dbf3dacc4d92f52ee grpc/gcp/s2a/s2a_context.proto +shake256:8e9a74198acb2e17281dc8b30f0e637bb8817d745163fe21c2357d1ce2d46e7a97b20977b545ab3709acdd4d3c6414c8a6640ab75686d6298961ad59f32c4a22 grpc/gcp/transport_security_common.proto +shake256:1e31a08983b081f8601f8bab3a703ee1ee8546bed1ab380dfc1aacb7fa80f4abb37d97c81231029efcd046b68bd39bde39773670c63cdee82bd26b79c7bd6ac9 grpc/health/v1/health.proto +shake256:0006491c27a7867ffe1e0626bb32b7ca7b84eea9f101d31ea79c5b70af0c8772ea5f53145e7d9a94d5615a50e11a3e410dd5a14264753885af95ca0e856fc52c grpc/lb/v1/load_balancer.proto +shake256:0b7a296cf1d2f33846bf4c1ed7d03336238fe3681e37a496c0de2287d1b70fafde977048922799dbdd17703f0ff093941acf658366614d5a9683d9c965476349 grpc/lb/v1/load_reporter.proto +shake256:2e55cc9ec27b21924ddcc4569fbeaee3ba22fd58b00cf149c844f5484f2f7ed4eedd9acea4a9fc8be50f8820656a11e1a5676b5bcabf3e62055df26f679c38f4 grpc/lookup/v1/rls.proto +shake256:ee0723a31e8ec07c49dc225e90ca69e259a51f8e99b311724e5cd7f25dcd2a17fe3338995860a6e3ac9cbd0462f802a59922cd9068af90eb62052e8d76da6211 grpc/lookup/v1/rls_config.proto +shake256:4df94db78cd4369d82e4e3488ed9fcc1dcb040c02ddff6086dbf9fdb226633fc14daf7103f1642b8dfe0aa1d2dee11f5c38d463739b6f748161bcc0cbbc1ecc9 grpc/reflection/v1/reflection.proto +shake256:2b6a397191bd277c4ee492fac420d3cecdfd0700feb569e1ceb126c306cbc64a50e4d57a0d384be96fbc221db5c337734f855d493a1a7c2b61ae41323d467bc4 grpc/reflection/v1alpha/reflection.proto +shake256:24f0d54a0a2f5779fc39233a3e1fea444d3b350d9b8d9759ebbfa7834cee2de8a1234aab4c745a0e1c203510b809ff26e6447bea4877c8d2dde34ceab810ef38 grpc/service_config/service_config.proto +shake256:c9dc8e09cb077a50329bbb4e4a322281672936ba2f85ad72fa17031b5a7fa8bf4a93142235585f352b2c82ba2c8dadbd9c607d61255ef7996696a1576c83a485 grpc/testing/benchmark_service.proto +shake256:3f935245fddd73e367eb088cb4d9524eb9604d376fe0acbb583cdcf23d9c1e30a40df297852b6eca399d77044c9e35cc688776934d976faf7f314f9c088c5b8f grpc/testing/control.proto +shake256:1b8599fab9b3467d20a3cae4be8a45f67a22f319b65bd47fa4ce287441d7807c21360a454fde066a6eef4f4c71547fa9197ad92f6dd10e0d1f3c798ceaebdaf5 grpc/testing/empty.proto +shake256:735c1e4b3c2301951daaff28e137109e4f57507d57d4b0f9c0eafc5bd74f89b63a670fbc40534b767713166e0a622888f5b5f20dd1e35fe74353079f114468e3 grpc/testing/messages.proto +shake256:ec2419febc015c92402567f244f7e847b3d26abc803cf10f9efc8407c3df269c24960ad56d2aee2e0f6b219bda12e6ff78490f47864250bef1761a7bc283de44 grpc/testing/payloads.proto +shake256:8bea7c832c7ab266236c9e225e5aec1f398700d97410803f9605b678fcf17964d8bc0a19b8c39eb0443093e1398a822524eb29a4eaebb4d584cfa29e92f81fac grpc/testing/report_qps_scenario_service.proto +shake256:f0ce4a6bb1599e2a86a5a42630981fe8a0ad145d3cc26af73421fadd61f7db57967f1fca0724d3cb85d048b17f00c85be619f2d60b37fa562170a69a2c05597e grpc/testing/stats.proto +shake256:547457b456078a833734eae2919418f50c74a246aeb6ba92a4fc24d430c4b53ffac5977b698de8be6e046d9da4c6b9b796bcb70dbe49b74a5d52441e20ee543e grpc/testing/test.proto +shake256:d6536d37566b2afe49c0a4a1e5b79d83e0a7df5992b767eb43d54d8ec7f591b15f47958fa1c1d08a99d739273478c8b0861a7c3862244b1af0fc3b236a52629e grpc/testing/worker_service.proto +shake256:d980672087a0c46da920d56f175fc0998f23e0623d2938d5dde9d5df1116cf82421bf5eaaefeaef1486f178e8a372dd8fb8a0f26aab9b9e972dcf81f285ff4a0 grpc/testing/xdsconfig/xdsconfig.proto diff --git a/modules/sync/grpc/grpc/state.json b/modules/sync/grpc/grpc/state.json index 102ec8d1..4f789406 100644 --- a/modules/sync/grpc/grpc/state.json +++ b/modules/sync/grpc/grpc/state.json @@ -167,6 +167,10 @@ { "name": "4489ffe132a2991bd17848c92b05f6502532f4a1", "digest": "e7986088d8fb4f0db2f10fe4fcf41145605f4fac59474573f700fb85ee3f2d09c3d807a7c2bed5e0084022b9fe1396af8077abe516ed9722ba8c76cc8ea9ae03" + }, + { + "name": "483f11e91a30de9c11d65d872c09bc529e94e2ee", + "digest": "63aa996f96f415b0c9fc664fa0ff412ab2cae5438eeeb4bdef1781b33b0efb85367232eda5df58eb262a6e8232f3c573f995e736816f4ec91da2ed9dad226de9" } ] } \ No newline at end of file diff --git a/modules/sync/state.json b/modules/sync/state.json index 8a98f321..fe639b89 100644 --- a/modules/sync/state.json +++ b/modules/sync/state.json @@ -42,7 +42,7 @@ }, { "module_name": "googleapis/googleapis", - "latest_reference": "1a0e353ac4a372cf7016df4ce0a7d7e609f339b3" + "latest_reference": "8ae42f34e12cb8ab1ca66290322f4c8662c71a0a" }, { "module_name": "googlechrome/lighthouse", @@ -58,7 +58,7 @@ }, { "module_name": "grpc/grpc", - "latest_reference": "4489ffe132a2991bd17848c92b05f6502532f4a1" + "latest_reference": "483f11e91a30de9c11d65d872c09bc529e94e2ee" }, { "module_name": "opencensus/opencensus",