From 2680dc68dc03e3045791ace2ed565765574b57fc Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Tue, 21 Apr 2020 16:30:08 -0700 Subject: [PATCH] chore: update templates; reformat docstrings (via synth) (#14) --- packages/google-cloud-scheduler/.coveragerc | 16 ++++ packages/google-cloud-scheduler/.flake8 | 16 ++++ .../.github/ISSUE_TEMPLATE/bug_report.md | 3 +- .../google-cloud-scheduler/CONTRIBUTING.rst | 15 +--- packages/google-cloud-scheduler/MANIFEST.in | 16 ++++ .../scheduler_v1/proto/cloudscheduler_pb2.py | 18 ----- .../cloud/scheduler_v1/proto/job_pb2.py | 13 +-- .../cloud/scheduler_v1/proto/target_pb2.py | 81 ++++++++----------- .../proto/cloudscheduler_pb2.py | 18 ----- .../cloud/scheduler_v1beta1/proto/job_pb2.py | 16 ++-- .../scheduler_v1beta1/proto/target_pb2.py | 73 +++++++---------- packages/google-cloud-scheduler/noxfile.py | 4 +- packages/google-cloud-scheduler/setup.cfg | 16 ++++ .../google-cloud-scheduler/synth.metadata | 19 +++-- 14 files changed, 153 insertions(+), 171 deletions(-) diff --git a/packages/google-cloud-scheduler/.coveragerc b/packages/google-cloud-scheduler/.coveragerc index b178b094aa1d..dd39c8546c41 100644 --- a/packages/google-cloud-scheduler/.coveragerc +++ b/packages/google-cloud-scheduler/.coveragerc @@ -1,3 +1,19 @@ +# -*- coding: utf-8 -*- +# +# Copyright 2020 Google LLC +# +# 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 +# +# https://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. + # Generated by synthtool. DO NOT EDIT! [run] branch = True diff --git a/packages/google-cloud-scheduler/.flake8 b/packages/google-cloud-scheduler/.flake8 index 0268ecc9c55c..20fe9bda2ee4 100644 --- a/packages/google-cloud-scheduler/.flake8 +++ b/packages/google-cloud-scheduler/.flake8 @@ -1,3 +1,19 @@ +# -*- coding: utf-8 -*- +# +# Copyright 2020 Google LLC +# +# 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 +# +# https://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. + # Generated by synthtool. DO NOT EDIT! [flake8] ignore = E203, E266, E501, W503 diff --git a/packages/google-cloud-scheduler/.github/ISSUE_TEMPLATE/bug_report.md b/packages/google-cloud-scheduler/.github/ISSUE_TEMPLATE/bug_report.md index a8104e21c032..f276989a6b90 100644 --- a/packages/google-cloud-scheduler/.github/ISSUE_TEMPLATE/bug_report.md +++ b/packages/google-cloud-scheduler/.github/ISSUE_TEMPLATE/bug_report.md @@ -11,8 +11,7 @@ Thanks for stopping by to let us know something could be better! Please run down the following list and make sure you've tried the usual "quick fixes": - Search the issues already opened: https://github.com/googleapis/python-scheduler/issues - - Search the issues on our "catch-all" repository: https://github.com/googleapis/google-cloud-python - - Search StackOverflow: http://stackoverflow.com/questions/tagged/google-cloud-platform+python + - Search StackOverflow: https://stackoverflow.com/questions/tagged/google-cloud-platform+python If you are still having issues, please be sure to include as much information as possible: diff --git a/packages/google-cloud-scheduler/CONTRIBUTING.rst b/packages/google-cloud-scheduler/CONTRIBUTING.rst index 31fe438dbff7..cb7f0aaadc60 100644 --- a/packages/google-cloud-scheduler/CONTRIBUTING.rst +++ b/packages/google-cloud-scheduler/CONTRIBUTING.rst @@ -22,7 +22,7 @@ In order to add a feature: documentation. - The feature must work fully on the following CPython versions: 2.7, - 3.5, 3.6, and 3.7 on both UNIX and Windows. + 3.5, 3.6, 3.7 and 3.8 on both UNIX and Windows. - The feature must not add unnecessary dependencies (where "unnecessary" is of course subjective, but new dependencies should @@ -214,26 +214,18 @@ We support: - `Python 3.5`_ - `Python 3.6`_ - `Python 3.7`_ +- `Python 3.8`_ .. _Python 3.5: https://docs.python.org/3.5/ .. _Python 3.6: https://docs.python.org/3.6/ .. _Python 3.7: https://docs.python.org/3.7/ +.. _Python 3.8: https://docs.python.org/3.8/ Supported versions can be found in our ``noxfile.py`` `config`_. .. _config: https://github.com/googleapis/python-scheduler/blob/master/noxfile.py -We explicitly decided not to support `Python 2.5`_ due to `decreased usage`_ -and lack of continuous integration `support`_. - -.. _Python 2.5: https://docs.python.org/2.5/ -.. _decreased usage: https://caremad.io/2013/10/a-look-at-pypi-downloads/ -.. _support: https://blog.travis-ci.com/2013-11-18-upcoming-build-environment-updates/ - -We have `dropped 2.6`_ as a supported version as well since Python 2.6 is no -longer supported by the core development team. - Python 2.7 support is deprecated. All code changes should maintain Python 2.7 compatibility until January 1, 2020. We also explicitly decided to support Python 3 beginning with version @@ -247,7 +239,6 @@ We also explicitly decided to support Python 3 beginning with version .. _prominent: https://docs.djangoproject.com/en/1.9/faq/install/#what-python-version-can-i-use-with-django .. _projects: http://flask.pocoo.org/docs/0.10/python3/ .. _Unicode literal support: https://www.python.org/dev/peps/pep-0414/ -.. _dropped 2.6: https://github.com/googleapis/google-cloud-python/issues/995 ********** Versioning diff --git a/packages/google-cloud-scheduler/MANIFEST.in b/packages/google-cloud-scheduler/MANIFEST.in index cd011be27a0e..68855abc3f02 100644 --- a/packages/google-cloud-scheduler/MANIFEST.in +++ b/packages/google-cloud-scheduler/MANIFEST.in @@ -1,3 +1,19 @@ +# -*- coding: utf-8 -*- +# +# Copyright 2020 Google LLC +# +# 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 +# +# https://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. + # Generated by synthtool. DO NOT EDIT! include README.rst LICENSE recursive-include google *.json *.proto diff --git a/packages/google-cloud-scheduler/google/cloud/scheduler_v1/proto/cloudscheduler_pb2.py b/packages/google-cloud-scheduler/google/cloud/scheduler_v1/proto/cloudscheduler_pb2.py index 4b7e2078b9bd..b604f9cebfd1 100644 --- a/packages/google-cloud-scheduler/google/cloud/scheduler_v1/proto/cloudscheduler_pb2.py +++ b/packages/google-cloud-scheduler/google/cloud/scheduler_v1/proto/cloudscheduler_pb2.py @@ -533,8 +533,6 @@ __module__="google.cloud.scheduler_v1.proto.cloudscheduler_pb2", __doc__="""Request message for listing jobs using [ListJobs][google.cloud.scheduler.v1.CloudScheduler.ListJobs]. - - Attributes: parent: Required. The location name. For example: @@ -570,8 +568,6 @@ __module__="google.cloud.scheduler_v1.proto.cloudscheduler_pb2", __doc__="""Response message for listing jobs using [ListJobs][google.cloud.scheduler.v1.CloudScheduler.ListJobs]. - - Attributes: jobs: The list of jobs. @@ -597,8 +593,6 @@ __module__="google.cloud.scheduler_v1.proto.cloudscheduler_pb2", __doc__="""Request message for [GetJob][google.cloud.scheduler.v1.CloudScheduler.GetJob]. - - Attributes: name: Required. The job name. For example: @@ -617,8 +611,6 @@ __module__="google.cloud.scheduler_v1.proto.cloudscheduler_pb2", __doc__="""Request message for [CreateJob][google.cloud.scheduler.v1.CloudScheduler.CreateJob]. - - Attributes: parent: Required. The location name. For example: @@ -645,8 +637,6 @@ __module__="google.cloud.scheduler_v1.proto.cloudscheduler_pb2", __doc__="""Request message for [UpdateJob][google.cloud.scheduler.v1.CloudScheduler.UpdateJob]. - - Attributes: job: Required. The new job properties. @@ -670,8 +660,6 @@ __module__="google.cloud.scheduler_v1.proto.cloudscheduler_pb2", __doc__="""Request message for deleting a job using [DeleteJob][google.cloud.scheduler.v1.CloudScheduler.DeleteJob]. - - Attributes: name: Required. The job name. For example: @@ -690,8 +678,6 @@ __module__="google.cloud.scheduler_v1.proto.cloudscheduler_pb2", __doc__="""Request message for [PauseJob][google.cloud.scheduler.v1.CloudScheduler.PauseJob]. - - Attributes: name: Required. The job name. For example: @@ -710,8 +696,6 @@ __module__="google.cloud.scheduler_v1.proto.cloudscheduler_pb2", __doc__="""Request message for [ResumeJob][google.cloud.scheduler.v1.CloudScheduler.ResumeJob]. - - Attributes: name: Required. The job name. For example: @@ -730,8 +714,6 @@ __module__="google.cloud.scheduler_v1.proto.cloudscheduler_pb2", __doc__="""Request message for forcing a job to run now using [RunJob][google.cloud.scheduler.v1.CloudScheduler.RunJob]. - - Attributes: name: Required. The job name. For example: diff --git a/packages/google-cloud-scheduler/google/cloud/scheduler_v1/proto/job_pb2.py b/packages/google-cloud-scheduler/google/cloud/scheduler_v1/proto/job_pb2.py index cfc36eecfcca..55d509c01395 100644 --- a/packages/google-cloud-scheduler/google/cloud/scheduler_v1/proto/job_pb2.py +++ b/packages/google-cloud-scheduler/google/cloud/scheduler_v1/proto/job_pb2.py @@ -534,8 +534,6 @@ DESCRIPTOR=_JOB, __module__="google.cloud.scheduler_v1.proto.job_pb2", __doc__="""Configuration for a job. The maximum allowed size for a job is 100KB. - - Attributes: name: Optionally caller-specified in [CreateJob][google.cloud.schedu @@ -639,14 +637,11 @@ dict( DESCRIPTOR=_RETRYCONFIG, __module__="google.cloud.scheduler_v1.proto.job_pb2", - __doc__="""Settings that determine the retry behavior. - - By default, if a job does not complete successfully (meaning that an - acknowledgement is not received from the handler, then it will be - retried with exponential backoff according to the settings in + __doc__="""Settings that determine the retry behavior. By default, if a job does + not complete successfully (meaning that an acknowledgement is not + received from the handler, then it will be retried with exponential + backoff according to the settings in [RetryConfig][google.cloud.scheduler.v1.RetryConfig]. - - Attributes: retry_count: The number of attempts that the system will make to run a job diff --git a/packages/google-cloud-scheduler/google/cloud/scheduler_v1/proto/target_pb2.py b/packages/google-cloud-scheduler/google/cloud/scheduler_v1/proto/target_pb2.py index c0e16daf3877..3baad34c54d5 100644 --- a/packages/google-cloud-scheduler/google/cloud/scheduler_v1/proto/target_pb2.py +++ b/packages/google-cloud-scheduler/google/cloud/scheduler_v1/proto/target_pb2.py @@ -837,15 +837,13 @@ ), DESCRIPTOR=_HTTPTARGET, __module__="google.cloud.scheduler_v1.proto.target_pb2", - __doc__="""Http target. The job will be pushed to the job handler by - means of an HTTP request via an + __doc__="""Http target. The job will be pushed to the job handler by means of an + HTTP request via an [http\_method][google.cloud.scheduler.v1.HttpTarget.http\_method] such - as HTTP POST, HTTP GET, etc. The job is acknowledged by means of an HTTP - response code in the range [200 - 299]. A failure to receive a response - constitutes a failed execution. For a redirected request, the response - returned by the redirected request is considered. - - + as HTTP POST, HTTP GET, etc. The job is acknowledged by means of an + HTTP response code in the range [200 - 299]. A failure to receive a + response constitutes a failed execution. For a redirected request, the + response returned by the redirected request is considered. Attributes: uri: Required. The full URI path that the request will be sent to. @@ -919,18 +917,15 @@ ), DESCRIPTOR=_APPENGINEHTTPTARGET, __module__="google.cloud.scheduler_v1.proto.target_pb2", - __doc__="""App Engine target. The job will be pushed to a job handler - by means of an HTTP request via an - [http\_method][google.cloud.scheduler.v1.AppEngineHttpTarget.http\_method] - such as HTTP POST, HTTP GET, etc. The job is acknowledged by means of an - HTTP response code in the range [200 - 299]. Error 503 is considered an - App Engine system error instead of an application error. Requests - returning error 503 will be retried regardless of retry configuration - and not counted against retry counts. Any other response code, or a - failure to receive a response before the deadline, constitutes a failed - attempt. - - + __doc__="""App Engine target. The job will be pushed to a job handler by means of + an HTTP request via an [http\_method][google.cloud.scheduler.v1.AppEng + ineHttpTarget.http\_method] such as HTTP POST, HTTP GET, etc. The job + is acknowledged by means of an HTTP response code in the range [200 - + 299]. Error 503 is considered an App Engine system error instead of an + application error. Requests returning error 503 will be retried + regardless of retry configuration and not counted against retry + counts. Any other response code, or a failure to receive a response + before the deadline, constitutes a failed attempt. Attributes: http_method: The HTTP method to use for the request. PATCH and OPTIONS are @@ -995,10 +990,8 @@ ), DESCRIPTOR=_PUBSUBTARGET, __module__="google.cloud.scheduler_v1.proto.target_pb2", - __doc__="""Pub/Sub target. The job will be delivered by publishing a - message to the given Pub/Sub topic. - - + __doc__="""Pub/Sub target. The job will be delivered by publishing a message to + the given Pub/Sub topic. Attributes: topic_name: Required. The name of the Cloud Pub/Sub topic to which @@ -1027,19 +1020,16 @@ dict( DESCRIPTOR=_APPENGINEROUTING, __module__="google.cloud.scheduler_v1.proto.target_pb2", - __doc__="""App Engine Routing. - - For more information about services, versions, and instances see `An - Overview of App - Engine `__, - `Microservices Architecture on Google App - Engine `__, - `App Engine Standard request - routing `__, - and `App Engine Flex request - routing `__. - - + __doc__="""App Engine Routing. For more information about services, versions, + and instances see `An Overview of App Engine + `__, `Microservices Architecture on Google App Engine + `__, `App Engine Standard request routing + `__, and `App Engine Flex request routing + `__. Attributes: service: App service. By default, the job is sent to the service which @@ -1124,12 +1114,10 @@ dict( DESCRIPTOR=_OAUTHTOKEN, __module__="google.cloud.scheduler_v1.proto.target_pb2", - __doc__="""Contains information needed for generating an `OAuth - token `__. This - type of authorization should generally only be used when calling Google - APIs hosted on \*.googleapis.com. - - + __doc__="""Contains information needed for generating an `OAuth token + `__. This + type of authorization should generally only be used when calling + Google APIs hosted on \*.googleapis.com. Attributes: service_account_email: \ `Service account email @@ -1153,14 +1141,11 @@ dict( DESCRIPTOR=_OIDCTOKEN, __module__="google.cloud.scheduler_v1.proto.target_pb2", - __doc__="""Contains information needed for generating an `OpenID - Connect - token `__. + __doc__="""Contains information needed for generating an `OpenID Connect token + `__. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself. - - Attributes: service_account_email: \ `Service account email diff --git a/packages/google-cloud-scheduler/google/cloud/scheduler_v1beta1/proto/cloudscheduler_pb2.py b/packages/google-cloud-scheduler/google/cloud/scheduler_v1beta1/proto/cloudscheduler_pb2.py index 3ce738ced993..20bb4cd0aee1 100644 --- a/packages/google-cloud-scheduler/google/cloud/scheduler_v1beta1/proto/cloudscheduler_pb2.py +++ b/packages/google-cloud-scheduler/google/cloud/scheduler_v1beta1/proto/cloudscheduler_pb2.py @@ -533,8 +533,6 @@ __module__="google.cloud.scheduler_v1beta1.proto.cloudscheduler_pb2", __doc__="""Request message for listing jobs using [ListJobs][google.cloud.scheduler.v1beta1.CloudScheduler.ListJobs]. - - Attributes: parent: Required. The location name. For example: @@ -569,8 +567,6 @@ __module__="google.cloud.scheduler_v1beta1.proto.cloudscheduler_pb2", __doc__="""Response message for listing jobs using [ListJobs][google.cloud.scheduler.v1beta1.CloudScheduler.ListJobs]. - - Attributes: jobs: The list of jobs. @@ -596,8 +592,6 @@ __module__="google.cloud.scheduler_v1beta1.proto.cloudscheduler_pb2", __doc__="""Request message for [GetJob][google.cloud.scheduler.v1beta1.CloudScheduler.GetJob]. - - Attributes: name: Required. The job name. For example: @@ -616,8 +610,6 @@ __module__="google.cloud.scheduler_v1beta1.proto.cloudscheduler_pb2", __doc__="""Request message for [CreateJob][google.cloud.scheduler.v1beta1.CloudScheduler.CreateJob]. - - Attributes: parent: Required. The location name. For example: @@ -645,8 +637,6 @@ __module__="google.cloud.scheduler_v1beta1.proto.cloudscheduler_pb2", __doc__="""Request message for [UpdateJob][google.cloud.scheduler.v1beta1.CloudScheduler.UpdateJob]. - - Attributes: job: Required. The new job properties. @@ -671,8 +661,6 @@ __module__="google.cloud.scheduler_v1beta1.proto.cloudscheduler_pb2", __doc__="""Request message for deleting a job using [DeleteJob][google.cloud.scheduler.v1beta1.CloudScheduler.DeleteJob]. - - Attributes: name: Required. The job name. For example: @@ -691,8 +679,6 @@ __module__="google.cloud.scheduler_v1beta1.proto.cloudscheduler_pb2", __doc__="""Request message for [PauseJob][google.cloud.scheduler.v1beta1.CloudScheduler.PauseJob]. - - Attributes: name: Required. The job name. For example: @@ -711,8 +697,6 @@ __module__="google.cloud.scheduler_v1beta1.proto.cloudscheduler_pb2", __doc__="""Request message for [ResumeJob][google.cloud.scheduler.v1beta1.CloudScheduler.ResumeJob]. - - Attributes: name: Required. The job name. For example: @@ -731,8 +715,6 @@ __module__="google.cloud.scheduler_v1beta1.proto.cloudscheduler_pb2", __doc__="""Request message for forcing a job to run now using [RunJob][google.cloud.scheduler.v1beta1.CloudScheduler.RunJob]. - - Attributes: name: Required. The job name. For example: diff --git a/packages/google-cloud-scheduler/google/cloud/scheduler_v1beta1/proto/job_pb2.py b/packages/google-cloud-scheduler/google/cloud/scheduler_v1beta1/proto/job_pb2.py index 573575026fb6..171aff15831c 100644 --- a/packages/google-cloud-scheduler/google/cloud/scheduler_v1beta1/proto/job_pb2.py +++ b/packages/google-cloud-scheduler/google/cloud/scheduler_v1beta1/proto/job_pb2.py @@ -533,10 +533,7 @@ dict( DESCRIPTOR=_JOB, __module__="google.cloud.scheduler_v1beta1.proto.job_pb2", - __doc__="""Configuration for a job. The maximum allowed size for a - job is 100KB. - - + __doc__="""Configuration for a job. The maximum allowed size for a job is 100KB. Attributes: name: Optionally caller-specified in [CreateJob][google.cloud.schedu @@ -642,14 +639,11 @@ dict( DESCRIPTOR=_RETRYCONFIG, __module__="google.cloud.scheduler_v1beta1.proto.job_pb2", - __doc__="""Settings that determine the retry behavior. - - By default, if a job does not complete successfully (meaning that an - acknowledgement is not received from the handler, then it will be - retried with exponential backoff according to the settings in + __doc__="""Settings that determine the retry behavior. By default, if a job does + not complete successfully (meaning that an acknowledgement is not + received from the handler, then it will be retried with exponential + backoff according to the settings in [RetryConfig][google.cloud.scheduler.v1beta1.RetryConfig]. - - Attributes: retry_count: The number of attempts that the system will make to run a job diff --git a/packages/google-cloud-scheduler/google/cloud/scheduler_v1beta1/proto/target_pb2.py b/packages/google-cloud-scheduler/google/cloud/scheduler_v1beta1/proto/target_pb2.py index 225c14df1ae8..3a7d2507cd5d 100644 --- a/packages/google-cloud-scheduler/google/cloud/scheduler_v1beta1/proto/target_pb2.py +++ b/packages/google-cloud-scheduler/google/cloud/scheduler_v1beta1/proto/target_pb2.py @@ -840,12 +840,10 @@ __doc__="""Http target. The job will be pushed to the job handler by means of an HTTP request via an [http\_method][google.cloud.scheduler.v1beta1.HttpTarget.http\_method] - such as HTTP POST, HTTP GET, etc. The job is acknowledged by means of an - HTTP response code in the range [200 - 299]. A failure to receive a + such as HTTP POST, HTTP GET, etc. The job is acknowledged by means of + an HTTP response code in the range [200 - 299]. A failure to receive a response constitutes a failed execution. For a redirected request, the response returned by the redirected request is considered. - - Attributes: uri: Required. The full URI path that the request will be sent to. @@ -919,18 +917,15 @@ ), DESCRIPTOR=_APPENGINEHTTPTARGET, __module__="google.cloud.scheduler_v1beta1.proto.target_pb2", - __doc__="""App Engine target. The job will be pushed to a job handler - by means of an HTTP request via an - [http\_method][google.cloud.scheduler.v1beta1.AppEngineHttpTarget.http\_method] - such as HTTP POST, HTTP GET, etc. The job is acknowledged by means of an - HTTP response code in the range [200 - 299]. Error 503 is considered an - App Engine system error instead of an application error. Requests - returning error 503 will be retried regardless of retry configuration - and not counted against retry counts. Any other response code, or a - failure to receive a response before the deadline, constitutes a failed - attempt. - - + __doc__="""App Engine target. The job will be pushed to a job handler by means of + an HTTP request via an [http\_method][google.cloud.scheduler.v1beta1.A + ppEngineHttpTarget.http\_method] such as HTTP POST, HTTP GET, etc. The + job is acknowledged by means of an HTTP response code in the range + [200 - 299]. Error 503 is considered an App Engine system error + instead of an application error. Requests returning error 503 will be + retried regardless of retry configuration and not counted against + retry counts. Any other response code, or a failure to receive a + response before the deadline, constitutes a failed attempt. Attributes: http_method: The HTTP method to use for the request. PATCH and OPTIONS are @@ -995,10 +990,8 @@ ), DESCRIPTOR=_PUBSUBTARGET, __module__="google.cloud.scheduler_v1beta1.proto.target_pb2", - __doc__="""Pub/Sub target. The job will be delivered by publishing a - message to the given Pub/Sub topic. - - + __doc__="""Pub/Sub target. The job will be delivered by publishing a message to + the given Pub/Sub topic. Attributes: topic_name: Required. The name of the Cloud Pub/Sub topic to which @@ -1027,19 +1020,16 @@ dict( DESCRIPTOR=_APPENGINEROUTING, __module__="google.cloud.scheduler_v1beta1.proto.target_pb2", - __doc__="""App Engine Routing. - - For more information about services, versions, and instances see `An - Overview of App - Engine `__, - `Microservices Architecture on Google App - Engine `__, - `App Engine Standard request - routing `__, - and `App Engine Flex request - routing `__. - - + __doc__="""App Engine Routing. For more information about services, versions, + and instances see `An Overview of App Engine + `__, `Microservices Architecture on Google App Engine + `__, `App Engine Standard request routing + `__, and `App Engine Flex request routing + `__. Attributes: service: App service. By default, the job is sent to the service which @@ -1121,12 +1111,10 @@ dict( DESCRIPTOR=_OAUTHTOKEN, __module__="google.cloud.scheduler_v1beta1.proto.target_pb2", - __doc__="""Contains information needed for generating an `OAuth - token `__. This - type of authorization should generally only be used when calling Google - APIs hosted on \*.googleapis.com. - - + __doc__="""Contains information needed for generating an `OAuth token + `__. This + type of authorization should generally only be used when calling + Google APIs hosted on \*.googleapis.com. Attributes: service_account_email: \ `Service account email @@ -1150,14 +1138,11 @@ dict( DESCRIPTOR=_OIDCTOKEN, __module__="google.cloud.scheduler_v1beta1.proto.target_pb2", - __doc__="""Contains information needed for generating an `OpenID - Connect - token `__. + __doc__="""Contains information needed for generating an `OpenID Connect token + `__. This type of authorization can be used for many scenarios, including calling Cloud Run, or endpoints where you intend to validate the token yourself. - - Attributes: service_account_email: \ `Service account email diff --git a/packages/google-cloud-scheduler/noxfile.py b/packages/google-cloud-scheduler/noxfile.py index d7d5ff5079ab..aa9f3c77a980 100644 --- a/packages/google-cloud-scheduler/noxfile.py +++ b/packages/google-cloud-scheduler/noxfile.py @@ -111,7 +111,7 @@ def system(session): # Install all test dependencies, then install this package into the # virtualenv's dist-packages. session.install("mock", "pytest") - + session.install("git+https://github.com/googleapis/python-test-utils") session.install("-e", ".") # Run py.test against the system tests. @@ -139,7 +139,7 @@ def docs(session): """Build the docs for this library.""" session.install("-e", ".") - session.install("sphinx", "alabaster", "recommonmark") + session.install("sphinx<3.0.0", "alabaster", "recommonmark") shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True) session.run( diff --git a/packages/google-cloud-scheduler/setup.cfg b/packages/google-cloud-scheduler/setup.cfg index 3bd555500e37..c3a2b39f6528 100644 --- a/packages/google-cloud-scheduler/setup.cfg +++ b/packages/google-cloud-scheduler/setup.cfg @@ -1,3 +1,19 @@ +# -*- coding: utf-8 -*- +# +# Copyright 2020 Google LLC +# +# 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 +# +# https://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. + # Generated by synthtool. DO NOT EDIT! [bdist_wheel] universal = 1 diff --git a/packages/google-cloud-scheduler/synth.metadata b/packages/google-cloud-scheduler/synth.metadata index 7257b3bc122e..b4a0f33488b8 100644 --- a/packages/google-cloud-scheduler/synth.metadata +++ b/packages/google-cloud-scheduler/synth.metadata @@ -1,27 +1,32 @@ { - "updateTime": "2020-03-19T12:19:16.068593Z", "sources": [ { "generator": { "name": "artman", - "version": "1.1.1", - "dockerImage": "googleapis/artman@sha256:5ef340c8d9334719bc5c6981d95f4a5d2737b0a6a24f2b9a0d430e96fff85c5b" + "version": "2.0.0", + "dockerImage": "googleapis/artman@sha256:b3b47805231a305d0f40c4bf069df20f6a2635574e6d4259fac651d3f9f6e098" + } + }, + { + "git": { + "name": ".", + "remote": "https://github.com/googleapis/python-scheduler.git", + "sha": "d17f5ffd8d6030190e3529d6eed5c9899145dd96" } }, { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "275fbcce2c900278d487c33293a3c7e1fbcd3a34", - "internalRef": "301661567", - "log": "275fbcce2c900278d487c33293a3c7e1fbcd3a34\nfeat: pubsub/v1 add an experimental filter field to Subscription\n\nPiperOrigin-RevId: 301661567\n\nf2b18cec51d27c999ad30011dba17f3965677e9c\nFix: UpdateBackupRequest.backup is a resource, not a resource reference - remove annotation.\n\nPiperOrigin-RevId: 301636171\n\n800384063ac93a0cac3a510d41726fa4b2cd4a83\nCloud Billing Budget API v1beta1\nModified api documentation to include warnings about the new filter field.\n\nPiperOrigin-RevId: 301634389\n\n0cc6c146b660db21f04056c3d58a4b752ee445e3\nCloud Billing Budget API v1alpha1\nModified api documentation to include warnings about the new filter field.\n\nPiperOrigin-RevId: 301630018\n\nff2ea00f69065585c3ac0993c8b582af3b6fc215\nFix: Add resource definition for a parent of InspectTemplate which was otherwise missing.\n\nPiperOrigin-RevId: 301623052\n\n55fa441c9daf03173910760191646399338f2b7c\nAdd proto definition for AccessLevel, AccessPolicy, and ServicePerimeter.\n\nPiperOrigin-RevId: 301620844\n\ne7b10591c5408a67cf14ffafa267556f3290e262\nCloud Bigtable Managed Backup service and message proto files.\n\nPiperOrigin-RevId: 301585144\n\nd8e226f702f8ddf92915128c9f4693b63fb8685d\nfeat: Add time-to-live in a queue for builds\n\nPiperOrigin-RevId: 301579876\n\n430375af011f8c7a5174884f0d0e539c6ffa7675\ndocs: add missing closing backtick\n\nPiperOrigin-RevId: 301538851\n\n0e9f1f60ded9ad1c2e725e37719112f5b487ab65\nbazel: Use latest release of gax_java\n\nPiperOrigin-RevId: 301480457\n\n5058c1c96d0ece7f5301a154cf5a07b2ad03a571\nUpdate GAPIC v2 with batching parameters for Logging API\n\nPiperOrigin-RevId: 301443847\n\n64ab9744073de81fec1b3a6a931befc8a90edf90\nFix: Introduce location-based organization/folder/billing-account resources\nChore: Update copyright years\n\nPiperOrigin-RevId: 301373760\n\n23d5f09e670ebb0c1b36214acf78704e2ecfc2ac\nUpdate field_behavior annotations in V1 and V2.\n\nPiperOrigin-RevId: 301337970\n\nb2cf37e7fd62383a811aa4d54d013ecae638851d\nData Catalog V1 API\n\nPiperOrigin-RevId: 301282503\n\n1976b9981e2900c8172b7d34b4220bdb18c5db42\nCloud DLP api update. Adds missing fields to Finding and adds support for hybrid jobs.\n\nPiperOrigin-RevId: 301205325\n\nae78682c05e864d71223ce22532219813b0245ac\nfix: several sample code blocks in comments are now properly indented for markdown\n\nPiperOrigin-RevId: 301185150\n\ndcd171d04bda5b67db13049320f97eca3ace3731\nPublish Media Translation API V1Beta1\n\nPiperOrigin-RevId: 301180096\n\nff1713453b0fbc5a7544a1ef6828c26ad21a370e\nAdd protos and BUILD rules for v1 API.\n\nPiperOrigin-RevId: 301179394\n\n8386761d09819b665b6a6e1e6d6ff884bc8ff781\nfeat: chromeos/modlab publish protos and config for Chrome OS Moblab API.\n\nPiperOrigin-RevId: 300843960\n\nb2e2bc62fab90e6829e62d3d189906d9b79899e4\nUpdates to GCS gRPC API spec:\n\n1. Changed GetIamPolicy and TestBucketIamPermissions to use wrapper messages around google.iam.v1 IAM requests messages, and added CommonRequestParams. This lets us support RequesterPays buckets.\n2. Added a metadata field to GetObjectMediaResponse, to support resuming an object media read safely (by extracting the generation of the object being read, and using it in the resumed read request).\n\nPiperOrigin-RevId: 300817706\n\n7fd916ce12335cc9e784bb9452a8602d00b2516c\nAdd deprecated_collections field for backward-compatiblity in PHP and monolith-generated Python and Ruby clients.\n\nGenerate TopicName class in Java which covers the functionality of both ProjectTopicName and DeletedTopicName. Introduce breaking changes to be fixed by synth.py.\n\nDelete default retry parameters.\n\nRetry codes defs can be deleted once # https://github.com/googleapis/gapic-generator/issues/3137 is fixed.\n\nPiperOrigin-RevId: 300813135\n\n047d3a8ac7f75383855df0166144f891d7af08d9\nfix!: google/rpc refactor ErrorInfo.type to ErrorInfo.reason and comment updates.\n\nPiperOrigin-RevId: 300773211\n\nfae4bb6d5aac52aabe5f0bb4396466c2304ea6f6\nAdding RetryPolicy to pubsub.proto\n\nPiperOrigin-RevId: 300769420\n\n7d569be2928dbd72b4e261bf9e468f23afd2b950\nAdding additional protocol buffer annotations to v3.\n\nPiperOrigin-RevId: 300718800\n\n13942d1a85a337515040a03c5108993087dc0e4f\nAdd logging protos for Recommender v1.\n\nPiperOrigin-RevId: 300689896\n\na1a573c3eecfe2c404892bfa61a32dd0c9fb22b6\nfix: change go package to use cloud.google.com/go/maps\n\nPiperOrigin-RevId: 300661825\n\nc6fbac11afa0c7ab2972d9df181493875c566f77\nfeat: publish documentai/v1beta2 protos\n\nPiperOrigin-RevId: 300656808\n\n5202a9e0d9903f49e900f20fe5c7f4e42dd6588f\nProtos for v1beta1 release of Cloud Security Center Settings API\n\nPiperOrigin-RevId: 300580858\n\n83518e18655d9d4ac044acbda063cc6ecdb63ef8\nAdds gapic.yaml file and BUILD.bazel file.\n\nPiperOrigin-RevId: 300554200\n\n836c196dc8ef8354bbfb5f30696bd3477e8db5e2\nRegenerate recommender v1beta1 gRPC ServiceConfig file for Insights methods.\n\nPiperOrigin-RevId: 300549302\n\n34a5450c591b6be3d6566f25ac31caa5211b2f3f\nIncreases the default timeout from 20s to 30s for MetricService\n\nPiperOrigin-RevId: 300474272\n\n5d8bffe87cd01ba390c32f1714230e5a95d5991d\nfeat: use the latest gapic-generator in WORKSPACE for bazel build.\n\nPiperOrigin-RevId: 300461878\n\nd631c651e3bcfac5d371e8560c27648f7b3e2364\nUpdated the GAPIC configs to include parameters for Backups APIs.\n\nPiperOrigin-RevId: 300443402\n\n678afc7055c1adea9b7b54519f3bdb228013f918\nAdding Game Servers v1beta API.\n\nPiperOrigin-RevId: 300433218\n\n80d2bd2c652a5e213302041b0620aff423132589\nEnable proto annotation and gapic v2 for talent API.\n\nPiperOrigin-RevId: 300393997\n\n85e454be7a353f7fe1bf2b0affb753305785b872\ndocs(google/maps/roads): remove mention of nonexported api\n\nPiperOrigin-RevId: 300367734\n\nbf839ae632e0f263a729569e44be4b38b1c85f9c\nAdding protocol buffer annotations and updated config info for v1 and v2.\n\nPiperOrigin-RevId: 300276913\n\n309b899ca18a4c604bce63882a161d44854da549\nPublish `Backup` APIs and protos.\n\nPiperOrigin-RevId: 300246038\n\neced64c3f122421350b4aca68a28e89121d20db8\nadd PHP client libraries\n\nPiperOrigin-RevId: 300193634\n\n7727af0e39df1ae9ad715895c8576d7b65cf6c6d\nfeat: use the latest gapic-generator and protoc-java-resource-name-plugin in googleapis/WORKSPACE.\n\nPiperOrigin-RevId: 300188410\n\n2a25aa351dd5b5fe14895266aff5824d90ce757b\nBreaking change: remove the ProjectOrTenant resource and its references.\n\nPiperOrigin-RevId: 300182152\n\na499dbb28546379415f51803505cfb6123477e71\nUpdate web risk v1 gapic config and BUILD file.\n\nPiperOrigin-RevId: 300152177\n\n52701da10fec2a5f9796e8d12518c0fe574488fe\nFix: apply appropriate namespace/package options for C#, PHP and Ruby.\n\nPiperOrigin-RevId: 300123508\n\n365c029b8cdb63f7751b92ab490f1976e616105c\nAdd CC targets to the kms protos.\n\nThese are needed by go/tink.\n\nPiperOrigin-RevId: 300038469\n\n4ba9aa8a4a1413b88dca5a8fa931824ee9c284e6\nExpose logo recognition API proto for GA.\n\nPiperOrigin-RevId: 299971671\n\n1c9fc2c9e03dadf15f16b1c4f570955bdcebe00e\nAdding ruby_package option to accessapproval.proto for the Ruby client libraries generation.\n\nPiperOrigin-RevId: 299955924\n\n1cc6f0a7bfb147e6f2ede911d9b01e7a9923b719\nbuild(google/maps/routes): generate api clients\n\nPiperOrigin-RevId: 299955905\n\n29a47c965aac79e3fe8e3314482ca0b5967680f0\nIncrease timeout to 1hr for method `dropRange` in bigtable/admin/v2, which is\nsynced with the timeout setting in gapic_yaml.\n\nPiperOrigin-RevId: 299917154\n\n8f631c4c70a60a9c7da3749511ee4ad432b62898\nbuild(google/maps/roads/v1op): move go to monorepo pattern\n\nPiperOrigin-RevId: 299885195\n\nd66816518844ebbf63504c9e8dfc7133921dd2cd\nbuild(google/maps/roads/v1op): Add bazel build files to generate clients.\n\nPiperOrigin-RevId: 299851148\n\naf7dff701fabe029672168649c62356cf1bb43d0\nAdd LogPlayerReports and LogImpressions to Playable Locations service\n\nPiperOrigin-RevId: 299724050\n\nb6927fca808f38df32a642c560082f5bf6538ced\nUpdate BigQuery Connection API v1beta1 proto: added credential to CloudSqlProperties.\n\nPiperOrigin-RevId: 299503150\n\n91e1fb5ef9829c0c7a64bfa5bde330e6ed594378\nchore: update protobuf (protoc) version to 3.11.2\n\nPiperOrigin-RevId: 299404145\n\n30e36b4bee6749c4799f4fc1a51cc8f058ba167d\nUpdate cloud asset api v1p4beta1.\n\nPiperOrigin-RevId: 299399890\n\nffbb493674099f265693872ae250711b2238090c\nfeat: cloudbuild/v1 add new fields and annotate OUTPUT_OUT fields.\n\nPiperOrigin-RevId: 299397780\n\nbc973a15818e00c19e121959832676e9b7607456\nbazel: Fix broken common dependency\n\nPiperOrigin-RevId: 299397431\n\n71094a343e3b962e744aa49eb9338219537474e4\nchore: bigtable/admin/v2 publish retry config\n\nPiperOrigin-RevId: 299391875\n\n8f488efd7bda33885cb674ddd023b3678c40bd82\nfeat: Migrate logging to GAPIC v2; release new features.\n\nIMPORTANT: This is a breaking change for client libraries\nin all languages.\n\nCommitter: @lukesneeringer, @jskeet\nPiperOrigin-RevId: 299370279\n\n007605bf9ad3a1fd775014ebefbf7f1e6b31ee71\nUpdate API for bigqueryreservation v1beta1.\n- Adds flex capacity commitment plan to CapacityCommitment.\n- Adds methods for getting and updating BiReservations.\n- Adds methods for updating/splitting/merging CapacityCommitments.\n\nPiperOrigin-RevId: 299368059\n\nf0b581b5bdf803e45201ecdb3688b60e381628a8\nfix: recommendationengine/v1beta1 update some comments\n\nPiperOrigin-RevId: 299181282\n\n10e9a0a833dc85ff8f05b2c67ebe5ac785fe04ff\nbuild: add generated BUILD file for Routes Preferred API\n\nPiperOrigin-RevId: 299164808\n\n86738c956a8238d7c77f729be78b0ed887a6c913\npublish v1p1beta1: update with absolute address in comments\n\nPiperOrigin-RevId: 299152383\n\n73d9f2ad4591de45c2e1f352bc99d70cbd2a6d95\npublish v1: update with absolute address in comments\n\nPiperOrigin-RevId: 299147194\n\nd2158f24cb77b0b0ccfe68af784c6a628705e3c6\npublish v1beta2: update with absolute address in comments\n\nPiperOrigin-RevId: 299147086\n\n7fca61292c11b4cd5b352cee1a50bf88819dd63b\npublish v1p2beta1: update with absolute address in comments\n\nPiperOrigin-RevId: 299146903\n\n583b7321624736e2c490e328f4b1957335779295\npublish v1p3beta1: update with absolute address in comments\n\nPiperOrigin-RevId: 299146674\n\n638253bf86d1ce1c314108a089b7351440c2f0bf\nfix: add java_multiple_files option for automl text_sentiment.proto\n\nPiperOrigin-RevId: 298971070\n\n373d655703bf914fb8b0b1cc4071d772bac0e0d1\nUpdate Recs AI Beta public bazel file\n\nPiperOrigin-RevId: 298961623\n\ndcc5d00fc8a8d8b56f16194d7c682027b2c66a3b\nfix: add java_multiple_files option for automl classification.proto\n\nPiperOrigin-RevId: 298953301\n\na3f791827266f3496a6a5201d58adc4bb265c2a3\nchore: automl/v1 publish annotations and retry config\n\nPiperOrigin-RevId: 298942178\n\n01c681586d8d6dbd60155289b587aee678530bd9\nMark return_immediately in PullRequest deprecated.\n\nPiperOrigin-RevId: 298893281\n\nc9f5e9c4bfed54bbd09227e990e7bded5f90f31c\nRemove out of date documentation for predicate support on the Storage API\n\nPiperOrigin-RevId: 298883309\n\nfd5b3b8238d783b04692a113ffe07c0363f5de0f\ngenerate webrisk v1 proto\n\nPiperOrigin-RevId: 298847934\n\n541b1ded4abadcc38e8178680b0677f65594ea6f\nUpdate cloud asset api v1p4beta1.\n\nPiperOrigin-RevId: 298686266\n\nc0d171acecb4f5b0bfd2c4ca34fc54716574e300\n Updated to include the Notification v1 API.\n\nPiperOrigin-RevId: 298652775\n\n2346a9186c0bff2c9cc439f2459d558068637e05\nAdd Service Directory v1beta1 protos and configs\n\nPiperOrigin-RevId: 298625638\n\na78ed801b82a5c6d9c5368e24b1412212e541bb7\nPublishing v3 protos and configs.\n\nPiperOrigin-RevId: 298607357\n\n4a180bfff8a21645b3a935c2756e8d6ab18a74e0\nautoml/v1beta1 publish proto updates\n\nPiperOrigin-RevId: 298484782\n\n6de6e938b7df1cd62396563a067334abeedb9676\nchore: use the latest gapic-generator and protoc-java-resource-name-plugin in Bazel workspace.\n\nPiperOrigin-RevId: 298474513\n\n244ab2b83a82076a1fa7be63b7e0671af73f5c02\nAdds service config definition for bigqueryreservation v1\n\nPiperOrigin-RevId: 298455048\n\n83c6f84035ee0f80eaa44d8b688a010461cc4080\nUpdate google/api/auth.proto to make AuthProvider to have JwtLocation\n\nPiperOrigin-RevId: 297918498\n\ne9e90a787703ec5d388902e2cb796aaed3a385b4\nDialogflow weekly v2/v2beta1 library update:\n - adding get validation result\n - adding field mask override control for output audio config\nImportant updates are also posted at:\nhttps://cloud.google.com/dialogflow/docs/release-notes\n\nPiperOrigin-RevId: 297671458\n\n1a2b05cc3541a5f7714529c665aecc3ea042c646\nAdding .yaml and .json config files.\n\nPiperOrigin-RevId: 297570622\n\ndfe1cf7be44dee31d78f78e485d8c95430981d6e\nPublish `QueryOptions` proto.\n\nIntroduced a `query_options` input in `ExecuteSqlRequest`.\n\nPiperOrigin-RevId: 297497710\n\ndafc905f71e5d46f500b41ed715aad585be062c3\npubsub: revert pull init_rpc_timeout & max_rpc_timeout back to 25 seconds and reset multiplier to 1.0\n\nPiperOrigin-RevId: 297486523\n\nf077632ba7fee588922d9e8717ee272039be126d\nfirestore: add update_transform\n\nPiperOrigin-RevId: 297405063\n\n0aba1900ffef672ec5f0da677cf590ee5686e13b\ncluster: use square brace for cross-reference\n\nPiperOrigin-RevId: 297204568\n\n5dac2da18f6325cbaed54603c43f0667ecd50247\nRestore retry params in gapic config because securitycenter has non-standard default retry params.\nRestore a few retry codes for some idempotent methods.\n\nPiperOrigin-RevId: 297196720\n\n1eb61455530252bba8b2c8d4bc9832960e5a56f6\npubsub: v1 replace IAM HTTP rules\n\nPiperOrigin-RevId: 297188590\n\n80b2d25f8d43d9d47024ff06ead7f7166548a7ba\nDialogflow weekly v2/v2beta1 library update:\n - updates to mega agent api\n - adding field mask override control for output audio config\nImportant updates are also posted at:\nhttps://cloud.google.com/dialogflow/docs/release-notes\n\nPiperOrigin-RevId: 297187629\n\n0b1876b35e98f560f9c9ca9797955f020238a092\nUse an older version of protoc-docs-plugin that is compatible with the specified gapic-generator and protobuf versions.\n\nprotoc-docs-plugin >=0.4.0 (see commit https://github.com/googleapis/protoc-docs-plugin/commit/979f03ede6678c487337f3d7e88bae58df5207af) is incompatible with protobuf 3.9.1.\n\nPiperOrigin-RevId: 296986742\n\n1e47e676cddbbd8d93f19ba0665af15b5532417e\nFix: Restore a method signature for UpdateCluster\n\nPiperOrigin-RevId: 296901854\n\n7f910bcc4fc4704947ccfd3ceed015d16b9e00c2\nUpdate Dataproc v1beta2 client.\n\nPiperOrigin-RevId: 296451205\n\nde287524405a3dce124d301634731584fc0432d7\nFix: Reinstate method signatures that had been missed off some RPCs\nFix: Correct resource types for two fields\n\nPiperOrigin-RevId: 296435091\n\ne5bc9566ae057fb4c92f8b7e047f1c8958235b53\nDeprecate the endpoint_uris field, as it is unused.\n\nPiperOrigin-RevId: 296357191\n\n8c12e2b4dca94e12bff9f538bdac29524ff7ef7a\nUpdate Dataproc v1 client.\n\nPiperOrigin-RevId: 296336662\n\n17567c4a1ef0a9b50faa87024d66f8acbb561089\nRemoving erroneous comment, a la https://github.com/googleapis/java-speech/pull/103\n\nPiperOrigin-RevId: 296332968\n\n3eaaaf8626ce5b0c0bc7eee05e143beffa373b01\nAdd BUILD.bazel for v1 secretmanager.googleapis.com\n\nPiperOrigin-RevId: 296274723\n\ne76149c3d992337f85eeb45643106aacae7ede82\nMove securitycenter v1 to use generate from annotations.\n\nPiperOrigin-RevId: 296266862\n\n203740c78ac69ee07c3bf6be7408048751f618f8\nAdd StackdriverLoggingConfig field to Cloud Tasks v2 API.\n\nPiperOrigin-RevId: 296256388\n\ne4117d5e9ed8bbca28da4a60a94947ca51cb2083\nCreate a Bazel BUILD file for the google.actions.type export.\n\nPiperOrigin-RevId: 296212567\n\na9639a0a9854fd6e1be08bba1ac3897f4f16cb2f\nAdd secretmanager.googleapis.com v1 protos\n\nPiperOrigin-RevId: 295983266\n\nce4f4c21d9dd2bfab18873a80449b9d9851efde8\nasset: v1p1beta1 remove SearchResources and SearchIamPolicies\n\nPiperOrigin-RevId: 295861722\n\ncb61d6c2d070b589980c779b68ffca617f789116\nasset: v1p1beta1 remove SearchResources and SearchIamPolicies\n\nPiperOrigin-RevId: 295855449\n\nab2685d8d3a0e191dc8aef83df36773c07cb3d06\nfix: Dataproc v1 - AutoscalingPolicy annotation\n\nThis adds the second resource name pattern to the\nAutoscalingPolicy resource.\n\nCommitter: @lukesneeringer\nPiperOrigin-RevId: 295738415\n\n8a1020bf6828f6e3c84c3014f2c51cb62b739140\nUpdate cloud asset api v1p4beta1.\n\nPiperOrigin-RevId: 295286165\n\n5cfa105206e77670369e4b2225597386aba32985\nAdd service control related proto build rule.\n\nPiperOrigin-RevId: 295262088\n\nee4dddf805072004ab19ac94df2ce669046eec26\nmonitoring v3: Add prefix \"https://cloud.google.com/\" into the link for global access\ncl 295167522, get ride of synth.py hacks\n\nPiperOrigin-RevId: 295238095\n\nd9835e922ea79eed8497db270d2f9f85099a519c\nUpdate some minor docs changes about user event proto\n\nPiperOrigin-RevId: 295185610\n\n5f311e416e69c170243de722023b22f3df89ec1c\nfix: use correct PHP package name in gapic configuration\n\nPiperOrigin-RevId: 295161330\n\n6cdd74dcdb071694da6a6b5a206e3a320b62dd11\npubsub: v1 add client config annotations and retry config\n\nPiperOrigin-RevId: 295158776\n\n5169f46d9f792e2934d9fa25c36d0515b4fd0024\nAdded cloud asset api v1p4beta1.\n\nPiperOrigin-RevId: 295026522\n\n56b55aa8818cd0a532a7d779f6ef337ba809ccbd\nFix: Resource annotations for CreateTimeSeriesRequest and ListTimeSeriesRequest should refer to valid resources. TimeSeries is not a named resource.\n\nPiperOrigin-RevId: 294931650\n\n0646bc775203077226c2c34d3e4d50cc4ec53660\nRemove unnecessary languages from bigquery-related artman configuration files.\n\nPiperOrigin-RevId: 294809380\n\n8b78aa04382e3d4147112ad6d344666771bb1909\nUpdate backend.proto for schemes and protocol\n\nPiperOrigin-RevId: 294788800\n\n80b8f8b3de2359831295e24e5238641a38d8488f\nAdds artman config files for bigquerystorage endpoints v1beta2, v1alpha2, v1\n\nPiperOrigin-RevId: 294763931\n\n2c17ac33b226194041155bb5340c3f34733f1b3a\nAdd parameter to sample generated for UpdateInstance. Related to https://github.com/googleapis/python-redis/issues/4\n\nPiperOrigin-RevId: 294734008\n\nd5e8a8953f2acdfe96fb15e85eb2f33739623957\nMove bigquery datatransfer to gapic v2.\n\nPiperOrigin-RevId: 294703703\n\nefd36705972cfcd7d00ab4c6dfa1135bafacd4ae\nfix: Add two annotations that we missed.\n\nPiperOrigin-RevId: 294664231\n\n8a36b928873ff9c05b43859b9d4ea14cd205df57\nFix: Define the \"bigquery.googleapis.com/Table\" resource in the BigQuery Storage API (v1beta2).\n\nPiperOrigin-RevId: 294459768\n\nc7a3caa2c40c49f034a3c11079dd90eb24987047\nFix: Define the \"bigquery.googleapis.com/Table\" resource in the BigQuery Storage API (v1).\n\nPiperOrigin-RevId: 294456889\n\n5006247aa157e59118833658084345ee59af7c09\nFix: Make deprecated fields optional\nFix: Deprecate SetLoggingServiceRequest.zone in line with the comments\nFeature: Add resource name method signatures where appropriate\n\nPiperOrigin-RevId: 294383128\n\neabba40dac05c5cbe0fca3a35761b17e372036c4\nFix: C# and PHP package/namespace capitalization for BigQuery Storage v1.\n\nPiperOrigin-RevId: 294382444\n\nf8d9a858a7a55eba8009a23aa3f5cc5fe5e88dde\nfix: artman configuration file for bigtable-admin\n\nPiperOrigin-RevId: 294322616\n\n0f29555d1cfcf96add5c0b16b089235afbe9b1a9\nAPI definition for (not-yet-launched) GCS gRPC.\n\nPiperOrigin-RevId: 294321472\n\nfcc86bee0e84dc11e9abbff8d7c3529c0626f390\nfix: Bigtable Admin v2\n\nChange LRO metadata from PartialUpdateInstanceMetadata\nto UpdateInstanceMetadata. (Otherwise, it will not build.)\n\nPiperOrigin-RevId: 294264582\n\n6d9361eae2ebb3f42d8c7ce5baf4bab966fee7c0\nrefactor: Add annotations to Bigtable Admin v2.\n\nPiperOrigin-RevId: 294243406\n\nad7616f3fc8e123451c8b3a7987bc91cea9e6913\nFix: Resource type in CreateLogMetricRequest should use logging.googleapis.com.\nFix: ListLogEntries should have a method signature for convenience of calling it.\n\nPiperOrigin-RevId: 294222165\n\n63796fcbb08712676069e20a3e455c9f7aa21026\nFix: Remove extraneous resource definition for cloudkms.googleapis.com/CryptoKey.\n\nPiperOrigin-RevId: 294176658\n\ne7d8a694f4559201e6913f6610069cb08b39274e\nDepend on the latest gapic-generator and resource names plugin.\n\nThis fixes the very old an very annoying bug: https://github.com/googleapis/gapic-generator/pull/3087\n\nPiperOrigin-RevId: 293903652\n\n806b2854a966d55374ee26bb0cef4e30eda17b58\nfix: correct capitalization of Ruby namespaces in SecurityCenter V1p1beta1\n\nPiperOrigin-RevId: 293903613\n\n1b83c92462b14d67a7644e2980f723112472e03a\nPublish annotations and grpc service config for Logging API.\n\nPiperOrigin-RevId: 293893514\n\ne46f761cd6ec15a9e3d5ed4ff321a4bcba8e8585\nGenerate the Bazel build file for recommendengine public api\n\nPiperOrigin-RevId: 293710856\n\n68477017c4173c98addac0373950c6aa9d7b375f\nMake `language_code` optional for UpdateIntentRequest and BatchUpdateIntentsRequest.\n\nThe comments and proto annotations describe this parameter as optional.\n\nPiperOrigin-RevId: 293703548\n\n16f823f578bca4e845a19b88bb9bc5870ea71ab2\nAdd BUILD.bazel files for managedidentities API\n\nPiperOrigin-RevId: 293698246\n\n2f53fd8178c9a9de4ad10fae8dd17a7ba36133f2\nAdd v1p1beta1 config file\n\nPiperOrigin-RevId: 293696729\n\n052b274138fce2be80f97b6dcb83ab343c7c8812\nAdd source field for user event and add field behavior annotations\n\nPiperOrigin-RevId: 293693115\n\n1e89732b2d69151b1b3418fff3d4cc0434f0dded\ndatacatalog: v1beta1 add three new RPCs to gapic v1beta1 config\n\nPiperOrigin-RevId: 293692823\n\n9c8bd09bbdc7c4160a44f1fbab279b73cd7a2337\nchange the name of AccessApproval service to AccessApprovalAdmin\n\nPiperOrigin-RevId: 293690934\n\n2e23b8fbc45f5d9e200572ca662fe1271bcd6760\nAdd ListEntryGroups method, add http bindings to support entry group tagging, and update some comments.\n\nPiperOrigin-RevId: 293666452\n\n0275e38a4ca03a13d3f47a9613aac8c8b0d3f1f2\nAdd proto_package field to managedidentities API. It is needed for APIs that still depend on artman generation.\n\nPiperOrigin-RevId: 293643323\n\n4cdfe8278cb6f308106580d70648001c9146e759\nRegenerating public protos for Data Catalog to add new Custom Type Entry feature.\n\nPiperOrigin-RevId: 293614782\n\n45d2a569ab526a1fad3720f95eefb1c7330eaada\nEnable client generation for v1 ManagedIdentities API.\n\nPiperOrigin-RevId: 293515675\n\n2c17086b77e6f3bcf04a1f65758dfb0c3da1568f\nAdd the Actions on Google common types (//google/actions/type/*).\n\nPiperOrigin-RevId: 293478245\n\n781aadb932e64a12fb6ead7cd842698d99588433\nDialogflow weekly v2/v2beta1 library update:\n- Documentation updates\nImportant updates are also posted at\nhttps://cloud.google.com/dialogflow/docs/release-notes\n\nPiperOrigin-RevId: 293443396\n\ne2602608c9138c2fca24162720e67f9307c30b95\nDialogflow weekly v2/v2beta1 library update:\n- Documentation updates\nImportant updates are also posted at\nhttps://cloud.google.com/dialogflow/docs/release-notes\n\nPiperOrigin-RevId: 293442964\n\nc8aef82028d06b7992278fa9294c18570dc86c3d\nAdd cc_proto_library and cc_grpc_library targets for Bigtable protos.\n\nAlso fix indentation of cc_grpc_library targets in Spanner and IAM protos.\n\nPiperOrigin-RevId: 293440538\n\ne2faab04f4cb7f9755072330866689b1943a16e9\ncloudtasks: v2 replace non-standard retry params in gapic config v2\n\nPiperOrigin-RevId: 293424055\n\ndfb4097ea628a8470292c6590a4313aee0c675bd\nerrorreporting: v1beta1 add legacy artman config for php\n\nPiperOrigin-RevId: 293423790\n\nb18aed55b45bfe5b62476292c72759e6c3e573c6\nasset: v1p1beta1 updated comment for `page_size` limit.\n\nPiperOrigin-RevId: 293421386\n\nc9ef36b7956d9859a2fc86ad35fcaa16958ab44f\nbazel: Refactor CI build scripts\n\nPiperOrigin-RevId: 293387911\n\na8ed9d921fdddc61d8467bfd7c1668f0ad90435c\nfix: set Ruby module name for OrgPolicy\n\nPiperOrigin-RevId: 293257997\n\n6c7d28509bd8315de8af0889688ee20099594269\nredis: v1beta1 add UpgradeInstance and connect_mode field to Instance\n\nPiperOrigin-RevId: 293242878\n\nae0abed4fcb4c21f5cb67a82349a049524c4ef68\nredis: v1 add connect_mode field to Instance\n\nPiperOrigin-RevId: 293241914\n\n3f7a0d29b28ee9365771da2b66edf7fa2b4e9c56\nAdds service config definition for bigqueryreservation v1beta1\n\nPiperOrigin-RevId: 293234418\n\n0c88168d5ed6fe353a8cf8cbdc6bf084f6bb66a5\naddition of BUILD & configuration for accessapproval v1\n\nPiperOrigin-RevId: 293219198\n\n39bedc2e30f4778ce81193f6ba1fec56107bcfc4\naccessapproval: v1 publish protos\n\nPiperOrigin-RevId: 293167048\n\n" + "sha": "42ee97c1b93a0e3759bbba3013da309f670a90ab", + "internalRef": "307114445" } }, { "git": { "name": "synthtool", "remote": "https://github.com/googleapis/synthtool.git", - "sha": "bcad3e01b69851ad682a87f8202003a1683ad73a" + "sha": "f5e4c17dc78a966dbf29961dd01f9bbd63e20a04" } } ],