diff options
author | robot-contrib <[email protected]> | 2023-06-27 09:03:22 +0300 |
---|---|---|
committer | robot-contrib <[email protected]> | 2023-06-27 09:03:22 +0300 |
commit | c18822fbad2eaa4613a4b2613c4e7fdaeded1dee (patch) | |
tree | 20e249274525ffc390eca4d04836ac348655574e | |
parent | 97b1a695d3be4edc08550d3ae7d200f6d9f3d42e (diff) |
Update contrib/libs/googleapis-common-protos to 1.59.1
6 files changed, 54 insertions, 6 deletions
diff --git a/contrib/libs/googleapis-common-protos/CHANGELOG.md b/contrib/libs/googleapis-common-protos/CHANGELOG.md index 1ad7dd0cd84..9c1f985aebd 100644 --- a/contrib/libs/googleapis-common-protos/CHANGELOG.md +++ b/contrib/libs/googleapis-common-protos/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.59.1](https://github.com/googleapis/python-api-common-protos/compare/v1.59.0...v1.59.1) (2023-06-06) + + +### Bug Fixes + +* Invalid `dev` version identifiers in `setup.py` ([#166](https://github.com/googleapis/python-api-common-protos/issues/166)) ([c38e03a](https://github.com/googleapis/python-api-common-protos/commit/c38e03aa06eedf65373c283f16e7bbbd5622f37b)), closes [#165](https://github.com/googleapis/python-api-common-protos/issues/165) + ## [1.59.0](https://github.com/googleapis/python-api-common-protos/compare/v1.58.0...v1.59.0) (2023-03-20) diff --git a/contrib/libs/googleapis-common-protos/google/api/client.proto b/contrib/libs/googleapis-common-protos/google/api/client.proto index ca25db4e40d..6d01954eee8 100644 --- a/contrib/libs/googleapis-common-protos/google/api/client.proto +++ b/contrib/libs/googleapis-common-protos/google/api/client.proto @@ -157,7 +157,7 @@ message Publishing { // long-running operation pattern. repeated MethodSettings method_settings = 2; - // Link to a place that API users can report issues. Example: + // Link to a *public* URI where users can report issues. Example: // https://issuetracker.google.com/issues/new?component=190865&template=1161103 string new_issue_uri = 101; @@ -257,6 +257,36 @@ message NodeSettings { message DotnetSettings { // Some settings. CommonLanguageSettings common = 1; + + // Map from original service names to renamed versions. + // This is used when the default generated types + // would cause a naming conflict. (Neither name is + // fully-qualified.) + // Example: Subscriber to SubscriberServiceApi. + map<string, string> renamed_services = 2; + + // Map from full resource types to the effective short name + // for the resource. This is used when otherwise resource + // named from different services would cause naming collisions. + // Example entry: + // "datalabeling.googleapis.com/Dataset": "DataLabelingDataset" + map<string, string> renamed_resources = 3; + + // List of full resource types to ignore during generation. + // This is typically used for API-specific Location resources, + // which should be handled by the generator as if they were actually + // the common Location resources. + // Example entry: "documentai.googleapis.com/Location" + repeated string ignored_resources = 4; + + // Namespaces which must be aliased in snippets due to + // a known (but non-generator-predictable) naming collision + repeated string forced_namespace_aliases = 5; + + // Method signatures (in the form "service.method(signature)") + // which are provided separately, so shouldn't be generated. + // Snippets *calling* these methods are still generated, however. + repeated string handwritten_signatures = 6; } // Settings for Ruby client libraries. @@ -338,6 +368,15 @@ enum ClientLibraryOrganization { // Street View Org. STREET_VIEW = 4; + + // Shopping Org. + SHOPPING = 5; + + // Geo Org. + GEO = 6; + + // Generative AI - https://developers.generativeai.google + GENERATIVE_AI = 7; } // To where should client libraries be published? diff --git a/contrib/libs/googleapis-common-protos/google/api/distribution.proto b/contrib/libs/googleapis-common-protos/google/api/distribution.proto index 0baf6afd1c2..b0bc4930f79 100644 --- a/contrib/libs/googleapis-common-protos/google/api/distribution.proto +++ b/contrib/libs/googleapis-common-protos/google/api/distribution.proto @@ -73,6 +73,7 @@ message Distribution { // following boundaries: // // Upper bound (0 <= i < N-1): offset + (width * i). + // // Lower bound (1 <= i < N): offset + (width * (i - 1)). message Linear { // Must be greater than 0. @@ -93,6 +94,7 @@ message Distribution { // following boundaries: // // Upper bound (0 <= i < N-1): scale * (growth_factor ^ i). + // // Lower bound (1 <= i < N): scale * (growth_factor ^ (i - 1)). message Exponential { // Must be greater than 0. diff --git a/contrib/libs/googleapis-common-protos/google/logging/type/http_request.proto b/contrib/libs/googleapis-common-protos/google/logging/type/http_request.proto index b878d60dce4..425a09d6e9c 100644 --- a/contrib/libs/googleapis-common-protos/google/logging/type/http_request.proto +++ b/contrib/libs/googleapis-common-protos/google/logging/type/http_request.proto @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2023 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -67,7 +67,7 @@ message HttpRequest { // The referer URL of the request, as defined in // [HTTP/1.1 Header Field - // Definitions](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html). + // Definitions](https://datatracker.ietf.org/doc/html/rfc2616#section-14.36). string referer = 8; // The request processing latency on the server, from the time the request was diff --git a/contrib/libs/googleapis-common-protos/google/logging/type/log_severity.proto b/contrib/libs/googleapis-common-protos/google/logging/type/log_severity.proto index bed71935f94..6740125811b 100644 --- a/contrib/libs/googleapis-common-protos/google/logging/type/log_severity.proto +++ b/contrib/libs/googleapis-common-protos/google/logging/type/log_severity.proto @@ -1,4 +1,4 @@ -// Copyright 2022 Google LLC +// Copyright 2023 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/contrib/libs/googleapis-common-protos/ya.make b/contrib/libs/googleapis-common-protos/ya.make index ebeeb7a7396..b70609f66ff 100644 --- a/contrib/libs/googleapis-common-protos/ya.make +++ b/contrib/libs/googleapis-common-protos/ya.make @@ -6,9 +6,9 @@ LICENSE(Apache-2.0) LICENSE_TEXTS(.yandex_meta/licenses.list.txt) -VERSION(1.59.0) +VERSION(1.59.1) -ORIGINAL_SOURCE(https://github.com/googleapis/python-api-common-protos/archive/v1.59.0.tar.gz) +ORIGINAL_SOURCE(https://github.com/googleapis/python-api-common-protos/archive/v1.59.1.tar.gz) PY_NAMESPACE(.) |