Browse Source

Update contrib/libs/googleapis-common-protos to 1.59.1

robot-contrib 1 year ago
parent
commit
c18822fbad

+ 7 - 0
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)
 
 

+ 40 - 1
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?

+ 2 - 0
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.

+ 2 - 2
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

+ 1 - 1
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.

+ 2 - 2
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(.)