chore: 添加虚拟环境到仓库

- 添加 backend_service/venv 虚拟环境
- 包含所有Python依赖包
- 注意:虚拟环境约393MB,包含12655个文件
This commit is contained in:
2025-12-03 10:19:25 +08:00
parent a6c2027caa
commit c4f851d387
12655 changed files with 3009376 additions and 0 deletions

View File

@@ -0,0 +1,227 @@
Metadata-Version: 2.4
Name: googleapis-common-protos
Version: 1.72.0
Summary: Common protobufs used in Google APIs
Author-email: Google LLC <googleapis-packages@google.com>
License: Apache 2.0
Project-URL: Repository, https://github.com/googleapis/google-cloud-python/tree/main/packages/googleapis-common-protos
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet
Requires-Python: >=3.7
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: protobuf!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<7.0.0,>=3.20.2
Provides-Extra: grpc
Requires-Dist: grpcio<2.0.0,>=1.44.0; extra == "grpc"
Dynamic: license-file
Python Client for Google APIs Common Protos
===========================================
|stable| |pypi| |versions|
`Google APIs Common Protos`_:
- `Client Library Documentation`_
- `Product Documentation`_
.. |stable| image:: https://img.shields.io/badge/support-stable-gold.svg
:target: https://github.com/googleapis/google-cloud-python/blob/main/README.rst#stability-levels
.. |pypi| image:: https://img.shields.io/pypi/v/googleapis-common-protos.svg
:target: https://pypi.org/project/googleapis-common-protos/
.. |versions| image:: https://img.shields.io/pypi/pyversions/googleapis-common-protos.svg
:target: https://pypi.org/project/googleapis-common-protos/
.. _Google APIs Common Protos: https://github.com/googleapis/googleapis/tree/master/google
.. _Client Library Documentation: https://github.com/googleapis/google-cloud-python/tree/main/packages/googleapis-common-protos/summary_overview
.. _Product Documentation: https://github.com/googleapis/googleapis/tree/master/google
Quick Start
-----------
In order to use this library, you first need to go through the following steps:
1. `Select or create a Cloud Platform project.`_
2. `Enable billing for your project.`_
3. `Enable the Google APIs Common Protos.`_
4. `Set up Authentication.`_
.. _Select or create a Cloud Platform project.: https://console.cloud.google.com/project
.. _Enable billing for your project.: https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project
.. _Enable the Google APIs Common Protos.: https://github.com/googleapis/googleapis/tree/master/google
.. _Set up Authentication.: https://googleapis.dev/python/google-api-core/latest/auth.html
Installation
~~~~~~~~~~~~
Install this library in a virtual environment using `venv`_. `venv`_ is a tool that
creates isolated Python environments. These isolated environments can have separate
versions of Python packages, which allows you to isolate one project's dependencies
from the dependencies of other projects.
With `venv`_, it's possible to install this library without needing system
install permissions, and without clashing with the installed system
dependencies.
.. _`venv`: https://docs.python.org/3/library/venv.html
Code samples and snippets
~~~~~~~~~~~~~~~~~~~~~~~~~
Code samples and snippets live in the `samples/`_ folder.
.. _samples/: https://github.com/googleapis/google-cloud-python/tree/main/packages/googleapis-common-protos/samples
Supported Python Versions
^^^^^^^^^^^^^^^^^^^^^^^^^
Our client libraries are compatible with all current `active`_ and `maintenance`_ versions of
Python.
Python >= 3.7, including 3.14
.. _active: https://devguide.python.org/devcycle/#in-development-main-branch
.. _maintenance: https://devguide.python.org/devcycle/#maintenance-branches
Unsupported Python Versions
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Python <= 3.6
If you are using an `end-of-life`_
version of Python, we recommend that you update as soon as possible to an actively supported version.
.. _end-of-life: https://devguide.python.org/devcycle/#end-of-life-branches
Mac/Linux
^^^^^^^^^
.. code-block:: console
python3 -m venv <your-env>
source <your-env>/bin/activate
pip install googleapis-common-protos
Windows
^^^^^^^
.. code-block:: console
py -m venv <your-env>
.\<your-env>\Scripts\activate
pip install googleapis-common-protos
Next Steps
~~~~~~~~~~
- Read the `Client Library Documentation`_ for Google APIs Common Protos
to see other available methods on the client.
- Read the `Google APIs Common Protos Product documentation`_ to learn
more about the product and see How-to Guides.
- View this `README`_ to see the full list of Cloud
APIs that we cover.
.. _Google APIs Common Protos Product documentation: https://github.com/googleapis/googleapis/tree/master/google
.. _README: https://github.com/googleapis/google-cloud-python/blob/main/README.rst
Logging
-------
This library uses the standard Python :code:`logging` functionality to log some RPC events that could be of interest for debugging and monitoring purposes.
Note the following:
#. Logs may contain sensitive information. Take care to **restrict access to the logs** if they are saved, whether it be on local storage or on Google Cloud Logging.
#. Google may refine the occurrence, level, and content of various log messages in this library without flagging such changes as breaking. **Do not depend on immutability of the logging events**.
#. By default, the logging events from this library are not handled. You must **explicitly configure log handling** using one of the mechanisms below.
Simple, environment-based configuration
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To enable logging for this library without any changes in your code, set the :code:`GOOGLE_SDK_PYTHON_LOGGING_SCOPE` environment variable to a valid Google
logging scope. This configures handling of logging events (at level :code:`logging.DEBUG` or higher) from this library in a default manner, emitting the logged
messages in a structured format. It does not currently allow customizing the logging levels captured nor the handlers, formatters, etc. used for any logging
event.
A logging scope is a period-separated namespace that begins with :code:`google`, identifying the Python module or package to log.
- Valid logging scopes: :code:`google`, :code:`google.cloud.asset.v1`, :code:`google.api`, :code:`google.auth`, etc.
- Invalid logging scopes: :code:`foo`, :code:`123`, etc.
**NOTE**: If the logging scope is invalid, the library does not set up any logging handlers.
Environment-Based Examples
^^^^^^^^^^^^^^^^^^^^^^^^^^
- Enabling the default handler for all Google-based loggers
.. code-block:: console
export GOOGLE_SDK_PYTHON_LOGGING_SCOPE=google
- Enabling the default handler for a specific Google module (for a client library called :code:`library_v1`):
.. code-block:: console
export GOOGLE_SDK_PYTHON_LOGGING_SCOPE=google.cloud.library_v1
Advanced, code-based configuration
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
You can also configure a valid logging scope using Python's standard `logging` mechanism.
Code-Based Examples
^^^^^^^^^^^^^^^^^^^
- Configuring a handler for all Google-based loggers
.. code-block:: python
import logging
from google.cloud import library_v1
base_logger = logging.getLogger("google")
base_logger.addHandler(logging.StreamHandler())
base_logger.setLevel(logging.DEBUG)
- Configuring a handler for a specific Google module (for a client library called :code:`library_v1`):
.. code-block:: python
import logging
from google.cloud import library_v1
base_logger = logging.getLogger("google.cloud.library_v1")
base_logger.addHandler(logging.StreamHandler())
base_logger.setLevel(logging.DEBUG)
Logging details
~~~~~~~~~~~~~~~
#. Regardless of which of the mechanisms above you use to configure logging for this library, by default logging events are not propagated up to the root
logger from the `google`-level logger. If you need the events to be propagated to the root logger, you must explicitly set
:code:`logging.getLogger("google").propagate = True` in your code.
#. You can mix the different logging configurations above for different Google modules. For example, you may want use a code-based logging configuration for
one library, but decide you need to also set up environment-based logging configuration for another library.
#. If you attempt to use both code-based and environment-based configuration for the same module, the environment-based configuration will be ineffectual
if the code -based configuration gets applied first.
#. The Google-specific logging configurations (default handlers for environment-based configuration; not propagating logging events to the root logger) get
executed the first time *any* client library is instantiated in your application, and only if the affected loggers have not been previously configured.
(This is the reason for 2.i. above.)

View File

@@ -0,0 +1,268 @@
google/api/__pycache__/annotations_pb2.cpython-313.pyc,,
google/api/__pycache__/auth_pb2.cpython-313.pyc,,
google/api/__pycache__/backend_pb2.cpython-313.pyc,,
google/api/__pycache__/billing_pb2.cpython-313.pyc,,
google/api/__pycache__/client_pb2.cpython-313.pyc,,
google/api/__pycache__/config_change_pb2.cpython-313.pyc,,
google/api/__pycache__/consumer_pb2.cpython-313.pyc,,
google/api/__pycache__/context_pb2.cpython-313.pyc,,
google/api/__pycache__/control_pb2.cpython-313.pyc,,
google/api/__pycache__/distribution_pb2.cpython-313.pyc,,
google/api/__pycache__/documentation_pb2.cpython-313.pyc,,
google/api/__pycache__/endpoint_pb2.cpython-313.pyc,,
google/api/__pycache__/error_reason_pb2.cpython-313.pyc,,
google/api/__pycache__/field_behavior_pb2.cpython-313.pyc,,
google/api/__pycache__/field_info_pb2.cpython-313.pyc,,
google/api/__pycache__/http_pb2.cpython-313.pyc,,
google/api/__pycache__/httpbody_pb2.cpython-313.pyc,,
google/api/__pycache__/label_pb2.cpython-313.pyc,,
google/api/__pycache__/launch_stage_pb2.cpython-313.pyc,,
google/api/__pycache__/log_pb2.cpython-313.pyc,,
google/api/__pycache__/logging_pb2.cpython-313.pyc,,
google/api/__pycache__/metric_pb2.cpython-313.pyc,,
google/api/__pycache__/monitored_resource_pb2.cpython-313.pyc,,
google/api/__pycache__/monitoring_pb2.cpython-313.pyc,,
google/api/__pycache__/policy_pb2.cpython-313.pyc,,
google/api/__pycache__/quota_pb2.cpython-313.pyc,,
google/api/__pycache__/resource_pb2.cpython-313.pyc,,
google/api/__pycache__/routing_pb2.cpython-313.pyc,,
google/api/__pycache__/service_pb2.cpython-313.pyc,,
google/api/__pycache__/source_info_pb2.cpython-313.pyc,,
google/api/__pycache__/system_parameter_pb2.cpython-313.pyc,,
google/api/__pycache__/usage_pb2.cpython-313.pyc,,
google/api/__pycache__/visibility_pb2.cpython-313.pyc,,
google/api/annotations.proto,sha256=556nQctgWmXnjKMiF0dkpK-f3hliwWMeErhMSTS6mmw,1045
google/api/annotations_pb2.py,sha256=hKJKqU5EXJvIJDkdt-sahXARdHWcObUVkKSDhuzOlXE,2181
google/api/annotations_pb2.pyi,sha256=BBwy-1uEGm4YsQpoZ44v8I03Is92Z-_4JShGlCph-6A,886
google/api/auth.proto,sha256=2e4DOCXOD0k3KkUtyn4P86IpT3W46lDCRYH3Ree9LTk,9257
google/api/auth_pb2.py,sha256=0M9Gb8InDi8Q07RSMmUtvVyTkaijVkhyj8Vga2XjsOQ,3601
google/api/auth_pb2.pyi,sha256=jvybOkHuFGQQufvANL2hqhmsAnKrQk5L8AFUkWO-fgQ,4324
google/api/backend.proto,sha256=PxHGHR5ufQfbBSITPV5ad_lI0g1SHDQ9UODhYTFtYtE,7014
google/api/backend_pb2.py,sha256=pxhfZZJJM9NOtv1aLVYbtYAqrMzgUkD4GCMopWmOh9M,3774
google/api/backend_pb2.pyi,sha256=4dYVn1pGUVmg6PqcA-jYvISKmrJlzvRsTTVc_hSgG-U,3855
google/api/billing.proto,sha256=OFKr2YTZXYV8_eGnirw25raNlklSe74ZxuuJOhuOWaw,3062
google/api/billing_pb2.py,sha256=tzPooX7-Uo7D6NnBLRI5k3pg86xFJEHNfBpXePsbgVU,2314
google/api/billing_pb2.pyi,sha256=F3m-KV8Eb3fZTzJViZSGelMUEWt0b9EoiHzbadm1isk,1871
google/api/client.proto,sha256=paE-qFP8tYCVxkVQba3BdPwgAYWXOygEr2ecMOz3OZ0,17312
google/api/client_pb2.py,sha256=E1h67fiDNwAtqQiWflaplMiRYgU03me-4QMTp15ZWJw,11032
google/api/client_pb2.pyi,sha256=h109rscHZYvnUTaO8sxGWcuZLhZYKZqa67ZWkpUjSDU,16045
google/api/config_change.proto,sha256=I8eQ9Y5nmdiKb0hfbNvFl7Ifpq7gcCrsfSvql9cdcgM,3166
google/api/config_change_pb2.py,sha256=1IQ5en3nLlKUlfvI81EF4aVc_laFGwEj8dS9uxPdSZQ,2693
google/api/config_change_pb2.pyi,sha256=ww6_F3S0QX06FRdhEJXEZ23vM_YNO5TGqCSP_jpzWIg,2384
google/api/consumer.proto,sha256=mZrLMRYo2cKUHQz9qr3xgEe-LuBh3aLZVD15qm3v7IQ,2717
google/api/consumer_pb2.py,sha256=du9G8qgDNzm4x6QFoyUVhdrmG1IWayveHe74b-mexKQ,2574
google/api/consumer_pb2.pyi,sha256=2deC66k-qml4DPxRbaOpPJRMRa8wg1WSKnE3qtxn0JY,2349
google/api/context.proto,sha256=ZV_qmbzU2AUPw7QjzsD1hcKmGrpuwODocKvhvYaDkdc,3229
google/api/context_pb2.py,sha256=7OE8Ys1Ul4SkyHZeGSqopTOVri8B61hHxhDgQTGax2M,2376
google/api/context_pb2.pyi,sha256=nsrPLW7YXomSXEQ7M0raTPX4xHXukgrjgZn8P9rUzzg,2339
google/api/control.proto,sha256=P85ehiAbvPKKxgNwfh8xG-qbNXiJgoJw_tpXyxefUaE,1436
google/api/control_pb2.py,sha256=esG8pu59PUpemOz7NrCWr6fKCLCV1nvOR3TQ703JvhM,2177
google/api/control_pb2.pyi,sha256=_9g8Sgqr6zMvJzrgcpbB64cCycTWhpPGodnNlFAe-2Y,1545
google/api/distribution.proto,sha256=bsFR7S8Az7v2ujJBEWhHrVxubtTlk_ZqIeMmbqn2Ocg,8660
google/api/distribution_pb2.py,sha256=dWgYxYk83LXLvnvUhHAzYidESJL8r8OInV_EW9MDA3c,4484
google/api/distribution_pb2.pyi,sha256=AMsYyPqZbwMf1MUa1PayiPA0F47NZtFO9bxudHoTWMw,5768
google/api/documentation.proto,sha256=7lFnpByFg9Tt9zrbDjS9MjK5enoT7lrDmUH2vQVjHXs,6925
google/api/documentation_pb2.py,sha256=TqGyUrqvxRP0lrWweAZjD3mq9uJMV0aSjUhgloj4TBc,2843
google/api/documentation_pb2.pyi,sha256=SeGxZ44uoF0owOlV2x7902jwd_Qa_QoMebkntxme588,3062
google/api/endpoint.proto,sha256=4rtmT7wVRtqaoSKRuFETHeLbvP3OHv5EXfXZreXG4Ec,2891
google/api/endpoint_pb2.py,sha256=vz1NV3ZhzpkDwwT_PfOq4YinvXl61OFC8Jl1fBigGbw,2108
google/api/endpoint_pb2.pyi,sha256=O6_2RdBfzfiS1Hx0-_XCDmEPiI7XNZ2177Q11SbCnYA,1479
google/api/error_reason.proto,sha256=exczRSdpYN70oXhtg9FykGjh4roga_RKUMPuz4xh2vI,23628
google/api/error_reason_pb2.py,sha256=pPEcOh8xvuP0D3Kh8FPV1-H0wjmu6yt0tQO0MBQDnsQ,3509
google/api/error_reason_pb2.pyi,sha256=F79LjP9wnfclzQ0F2WBaC6cgbKGMsn4ZsqUr5mN7Ego,3784
google/api/field_behavior.proto,sha256=BEun_AW90WGCvik0h5S6FVkZw7d9b-SS7GO57q6aLFw,4306
google/api/field_behavior_pb2.py,sha256=8L_u76wGMf6yTsB2vWoidY6Nj55fwqtiZNtCbWVYZPc,2680
google/api/field_behavior_pb2.pyi,sha256=HKVTIpHfvh2KJaaJnyqqzVBgmN_8oyputJVIcil5nSA,1680
google/api/field_info.proto,sha256=srMQ8mSl_qTLnLtgc8e-9wI6B6oWrA4-Bqvqp1w8uJM,4456
google/api/field_info_pb2.py,sha256=ZuUWp8UjJ6U54z-oM5jgZEUduS0UOEgagXZzTgbTH7E,2817
google/api/field_info_pb2.pyi,sha256=7AFgq0JXzhlYZySWXj8UAs3dQp3IE0YNxJuVOb_cnkg,2368
google/api/http.proto,sha256=Sk2b5qXH8Zick8JccbSP8bQBZFeQuLl4rTTVeeKcSio,15059
google/api/http_pb2.py,sha256=qR_cOrhHFJmuGU7Keziemltih5T1iAtfilIZG56bTSU,2869
google/api/http_pb2.pyi,sha256=ZatZQGFKlxDoLD56bgoFlzyxwKicySxa7gHqefPh6aA,3147
google/api/httpbody.proto,sha256=O8hGOGWVMdO9YVTkqGfudjtBxq0V0dcH4KrPQd-PGQE,2661
google/api/httpbody_pb2.py,sha256=l3lkNH_Klr1Lk3CJGpw6q5xbdyiaXmzawoR8vrgRBF4,2190
google/api/httpbody_pb2.pyi,sha256=pu0vnjKqz3IYCvnBGtKAPmoBOWtHoFh3c5hTMTiyKbI,1569
google/api/label.proto,sha256=PKepBECO1OlPifcmm0snQ3UKZoFUl-NDZNPB9jNhjis,1357
google/api/label_pb2.py,sha256=r8q69IjSEhRAvwj70sBrMG_4RTWKCxfekgjfCRNV76E,2326
google/api/label_pb2.pyi,sha256=vP8MIgmP7J05nYL4O_RzoLJUZvgQQdY3qdXuAZ4XMTk,1778
google/api/launch_stage.proto,sha256=b_2A1p-UQwtHBLQPypoznhCIfzFe-masnDx9VYfWq6U,3083
google/api/launch_stage_pb2.py,sha256=tccfkF9-iyEL7juvbyydjqOU-fCA7G1QbkG2AOv_uZI,2211
google/api/launch_stage_pb2.pyi,sha256=EtU16uO1pQYSj4cm1CJAzgA-NTBFLnd2q2YC1otGpfc,1381
google/api/log.proto,sha256=3IWk8lUNqBhbp7hc7ZLAoDJJmLKqy9CwBpHoXWR01T4,2043
google/api/log_pb2.py,sha256=UPFyG1wPzDnJ6s0zKtRrAe5EOSdj289JM1t6dWA59Ic,2237
google/api/log_pb2.pyi,sha256=KF3RUNIo_39fka1Wcc-qTTL9t2Z0cwQdphewuevDovA,1727
google/api/logging.proto,sha256=sVIekQJhPtOpZpK8wtLnOl4Iy--1ZDpGtxrM4w99wzs,3174
google/api/logging_pb2.py,sha256=Cu8Zr9svy7FFVVEv7BSXD4vRP32x92hl6tUbbCutgIQ,2395
google/api/logging_pb2.pyi,sha256=0_UHF0exyA0Pi_S5PX_K8tmUxfLWwCa9HMXxKZrcXjw,2178
google/api/metric.proto,sha256=iHOuTKsgogijIOrL94_ubiVAAmH6EmUAc2MYl5gBX5U,11166
google/api/metric_pb2.py,sha256=6VmPP9pf28cufO5RZriaggC6sMgT6CXj9GHQ0FAp5Wg,5466
google/api/metric_pb2.pyi,sha256=hKvwgUX47lnX4Le4bg_CRjVXvpc1ppq4t3XECuSV1jQ,7728
google/api/monitored_resource.proto,sha256=it3XqOY2YavpGJ_ENkF0dNkaBRcCmCRDbfXpQftq-y8,5888
google/api/monitored_resource_pb2.py,sha256=5c98AgtPvFhPMsvmK7wVoDaVGgvn1sgqcx4__DsVQ7w,4145
google/api/monitored_resource_pb2.pyi,sha256=UdU9K7Iziz7PmfPUK7x0101gT8FALME1ojOnMaczibc,3643
google/api/monitoring.proto,sha256=RSMvm0HLEKVfFSiC4IBZ65jeS-v7OvCM2pZXPpysRCY,4457
google/api/monitoring_pb2.py,sha256=MbTpq9Cq2eP8zDVZRzFYcXG5hQXFdlFyFV0QhJRTzcI,2450
google/api/monitoring_pb2.pyi,sha256=JOuU9dKJSTjev_zSU_cYl3naZqYJRiIw8joJP1Y9T_w,2220
google/api/policy.proto,sha256=fQtYLa7_ejkzILClsGPyDJ8AP14-4c1X-P8O3MeB7zA,3110
google/api/policy_pb2.py,sha256=phc-a2WEKc9ScjFQJ5Vn7eLl6AUrVIkEtpHm7UWHBfY,2685
google/api/policy_pb2.pyi,sha256=N9FSJUBlyqQrSVFubEtnJxxT2LMPeXp-jVJtVKPaO2M,2169
google/api/quota.proto,sha256=Rb3vETT8RHuWBwWq3i2MpKuvSaI7qDWzs9Xvfcu02bg,7180
google/api/quota_pb2.py,sha256=4dlPOea85uY2LHTgMPM3sAEzAdq_laGkc29G7wmXm80,3612
google/api/quota_pb2.pyi,sha256=ZFCjQUYm39fQG5O0bWJpThAU-EY2YVNBFHSsdg4gdqc,3876
google/api/resource.proto,sha256=xmt3Wu8slcx7bwc_uI0U-HQW36d7H6dq2udMCko5No0,8994
google/api/resource_pb2.py,sha256=o_VDQ6dFD2vDkWFVoATqd3kQn2lqbBrL2czsC0bFDt8,3534
google/api/resource_pb2.pyi,sha256=qP5Y1250smP5TlO6oMvy2i5iEFQTjZqqXlxUPIh482g,3588
google/api/routing.proto,sha256=2rJ-NJBhrzLGXR_wIZ6xl-dg8IweU9W0STxOf5DtIgM,14918
google/api/routing_pb2.py,sha256=TeiGe55yzpa2nTKFb5vR8MkafVvz12glRydXlnyiZAY,2488
google/api/routing_pb2.pyi,sha256=z7nFx78IfmaruAPgltVWo21QSa6g75rAVoAA4T89mIE,1821
google/api/service.proto,sha256=Kz2yc9tG9g1C4OOU47AsFU5nOubTOqlpvfuThHg_1Ts,6762
google/api/service_pb2.py,sha256=zZkXlOjv6Soc3cee2Uypk4m3yAB7myfil7HoV4U-Lgs,5856
google/api/service_pb2.pyi,sha256=jHslK-OLYE4GWHPb7acoCEqkKtZTF3E39myGvigkWmU,7163
google/api/source_info.proto,sha256=_eMTPgmMDJL5iFz8eSDRrfHYEbgqsVq6u4Eyj6Q1Seg,1091
google/api/source_info_pb2.py,sha256=6JMwSfeho5eTK42fRpFj4PRa5zlxP9sFRUrI-__Y53M,2154
google/api/source_info_pb2.pyi,sha256=65e7q_WYVA6Db1a1srDBkMTxErD6gp_Vq-oOIfGoJzc,1343
google/api/system_parameter.proto,sha256=5cbh24sY6LbeS-vq3CRF-LJrRy_m-vBmQf6owbzYXZ4,3475
google/api/system_parameter_pb2.py,sha256=bdWsFRs9C-JgUjA1cmg3ziN6HiuVYG7-gyv_ZbObcvk,2610
google/api/system_parameter_pb2.pyi,sha256=_kZoYlhbvOzWBha-Xok9Yb4kQu-BOSXF7G5GW8tW-PY,2217
google/api/usage.proto,sha256=ULlxQFu8N83Oe2OFFgJxjT9EZXkEs8t7vsvzxVTDpIQ,3787
google/api/usage_pb2.py,sha256=VkRdoxqbm62zZ9-i3ba5RCXKVWFp1poSce84WlGOXB4,2353
google/api/usage_pb2.pyi,sha256=pe0wm3i9Zyg0E1Xr9h_MhRXVS8gtkfjW4KTG_UH5iik,2175
google/api/visibility.proto,sha256=78T35teJphbPXtEBmZy5lG76Lppb1lb-AWQaIeq-_EA,3767
google/api/visibility_pb2.py,sha256=6rmDppleUZ9WEtnLyXGJhhkOeYOLl1sC5BmZ2g1tfV4,3113
google/api/visibility_pb2.pyi,sha256=A_h87gi4Z60MvmeZfO7KWO3e7ijb2D5iRigIWIncMHI,2213
google/cloud/__pycache__/common_resources_pb2.cpython-313.pyc,,
google/cloud/__pycache__/extended_operations_pb2.cpython-313.pyc,,
google/cloud/common_resources.proto,sha256=rTSsmDKoThiospOtRHLZX27W7cBPCEJS5rpVK1bP9Y0,1578
google/cloud/common_resources_pb2.py,sha256=iTEwXfD1pDV4XKhxo1O20LTiZVvTr28MyaJiBKd_x6A,2593
google/cloud/common_resources_pb2.pyi,sha256=YSmf0tvyvNd9ngDzfRliS-2RZSqrQKI5y2dEJ-VUERs,764
google/cloud/extended_operations.proto,sha256=gI4lL58QZw4JOL01_j5Rirk5A00f6MG0P0m5eX9ytSM,6307
google/cloud/extended_operations_pb2.py,sha256=QJR2kjmka8_-DuAw39vNK48YJr7cj3QONqtNOyqxPCc,2815
google/cloud/extended_operations_pb2.pyi,sha256=7OLGIjrs7vyd0YZRbbF1bml4JF9hSdolMCEnR3XSE90,1889
google/cloud/location/__pycache__/locations_pb2.cpython-313.pyc,,
google/cloud/location/locations.proto,sha256=QPoDwHP-htlXfOl9mtm2XzWOmXMHzbxX1fYIvfAeAs4,3604
google/cloud/location/locations_pb2.py,sha256=OQlQJfxoo31twRpddERP2aJ2cM-mQ0XG-OlTAx5oli8,5075
google/cloud/location/locations_pb2.pyi,sha256=UqZOK60nKuHvbwPbjbUQXjCAkcFtQb4F4DIxMKkKqm4,3391
google/gapic/metadata/__pycache__/gapic_metadata_pb2.cpython-313.pyc,,
google/gapic/metadata/gapic_metadata.proto,sha256=_VxjjqKXoL4XYFOBBQCwIbIQ724gD6SOR-AJBTwPk4Y,3805
google/gapic/metadata/gapic_metadata_pb2.py,sha256=Hug-27abgso8GxjG1LdASMOyCuGjmxBBl3oLi_93Vvc,4835
google/gapic/metadata/gapic_metadata_pb2.pyi,sha256=HMsiIgMhewY6OfSJ1Q-kcDqrMO1c0ZdUq48gYOtePJk,4498
google/logging/type/__pycache__/http_request_pb2.cpython-313.pyc,,
google/logging/type/__pycache__/log_severity_pb2.cpython-313.pyc,,
google/logging/type/http_request.proto,sha256=zxYFInPIcyFDrWQYwN4FmqSaOy9AL2Lmp8Y0kUNsxGU,3601
google/logging/type/http_request_pb2.py,sha256=piQn43w_HdIZks6P0hY0fvCb1JlOL5ppbEUaLHThnqU,3022
google/logging/type/http_request_pb2.pyi,sha256=Ar76mTRYKUJwcp22VO6BqwRBQ_AtejqK6kP2dpMwdVg,3102
google/logging/type/log_severity.proto,sha256=zqnBXSkSV3PGG0sBjdvJs9fwiKL3N9anTjjxtgfdpR4,2555
google/logging/type/log_severity_pb2.py,sha256=upDt6IutB1_pQv7EmY8JA0E62GNJWY0gwahQQxiWTVo,2567
google/logging/type/log_severity_pb2.pyi,sha256=47i081SvX-t7hqlZzmzy8NZj7OK3myeoNeupVCHWi_0,1378
google/longrunning/__pycache__/operations_grpc.cpython-313.pyc,,
google/longrunning/__pycache__/operations_grpc_pb2.cpython-313.pyc,,
google/longrunning/__pycache__/operations_pb2.cpython-313.pyc,,
google/longrunning/__pycache__/operations_pb2_grpc.cpython-313.pyc,,
google/longrunning/__pycache__/operations_proto.cpython-313.pyc,,
google/longrunning/__pycache__/operations_proto_pb2.cpython-313.pyc,,
google/longrunning/operations_grpc.py,sha256=ZtTe_7HJsDWG4OZol8Qi0qoV7HkK4BAxt8Vh0Vh_-xs,818
google/longrunning/operations_grpc_pb2.py,sha256=iglg37RTLIXqkyQofLiC4yJrzywRhXlPE0apvd0jTKM,531
google/longrunning/operations_pb2.py,sha256=IREpzTVW90oSeGiWq0sRogtXgiBzEL8kMuwL8XC0Cqc,1569
google/longrunning/operations_pb2_grpc.py,sha256=0rt8GEvXMFW2udHEZGIaeoAhdVSrs-KaC6LsecHp97k,14462
google/longrunning/operations_proto.proto,sha256=_PVg87i50b3agoAwJqyMqmFrDuGdD1VOjrnvey8gH8I,10041
google/longrunning/operations_proto.py,sha256=vIe7RoVZfjsS7MSZB487GGMIB_5_7--sT_cyt8coGCk,243
google/longrunning/operations_proto_pb2.py,sha256=BDz01MPg_OQX68YK4ir-7f99QJniaqXQvaKjgQmmaz0,7230
google/longrunning/operations_proto_pb2.pyi,sha256=U4krW2Ese8qqlXTh05r7whzAwXR4YBgPNClllNwpZjQ,4489
google/rpc/__pycache__/code_pb2.cpython-313.pyc,,
google/rpc/__pycache__/error_details_pb2.cpython-313.pyc,,
google/rpc/__pycache__/http_pb2.cpython-313.pyc,,
google/rpc/__pycache__/status_pb2.cpython-313.pyc,,
google/rpc/code.proto,sha256=mZO-ZeBQwwztJGlRZZ2-ChNmO3fPV7yqTA7UJISA-4A,7138
google/rpc/code_pb2.py,sha256=Eq_wIEwpez471XG98qRFzh9HfH9WqJO34nNqVq2pfqU,2479
google/rpc/code_pb2.pyi,sha256=S0tVsFZr7_QXpLUhRkRCqDj3EoaNAO0Rn5FV7SXIaqs,1771
google/rpc/context/__pycache__/attribute_context_pb2.cpython-313.pyc,,
google/rpc/context/__pycache__/audit_context_pb2.cpython-313.pyc,,
google/rpc/context/attribute_context.proto,sha256=N1ep-oYDKN17blsZ0Tm94EBQjNCF6RTDn-1ISCvZf2M,14888
google/rpc/context/attribute_context_pb2.py,sha256=AK4KzxntV3Cv1G6yqfAJaUBx4oed0zAdO5SYyDxS2wQ,8476
google/rpc/context/attribute_context_pb2.pyi,sha256=BSNNTFwtxVhGYcIDUFIFEHnT7oTDZQ-TVfuFbgGm6mk,11467
google/rpc/context/audit_context.proto,sha256=VtSqp3dOiyq8vcBeqt3hmrf2lTLjL0zWy_hHzFDY-dI,1829
google/rpc/context/audit_context_pb2.py,sha256=ExXBm8u9WtIAyNbwcEqfbOOR0kr-ujZNnXCol2JrimE,2416
google/rpc/context/audit_context_pb2.pyi,sha256=G3mCF1BRTuDkWmskAJlS2mtNWvkwgCbkI5MAlF4winA,1922
google/rpc/error_details.proto,sha256=2j9awTBKv9arL5WbSsPmywdYtS_KOIwia_O5KvleB-0,14599
google/rpc/error_details_pb2.py,sha256=YHYw73kEHgtFY1Fj2H9uVlXKXUymlRvfWp-NRVCxJFI,6457
google/rpc/error_details_pb2.pyi,sha256=nKJmFDweBR5hB6RrBPtQphwGaArve0jSUUn58F9icKg,8436
google/rpc/http.proto,sha256=Y_VGMfkjQQsZcEJGvGg1WZyRli_4pQKMjigGdtmnpKM,1940
google/rpc/http_pb2.py,sha256=EP1gtpeBAkkepAogsKjN-01PTxZmF9_D_Rf0B3Xxxb4,2568
google/rpc/http_pb2.pyi,sha256=XakmiDuqsd36SU1F1F-83EPLYVrjTdBeYX0-iNXhfdc,2467
google/rpc/status.proto,sha256=O1xxJFVXCsQ0LdPFIcTBEBFlKumg-8p1uiL8xFxuGZE,1934
google/rpc/status_pb2.py,sha256=COt5Svr-fTOgVdaQn2ad_NJnerEG8LF64_HQxSQPCx4,2186
google/rpc/status_pb2.pyi,sha256=t6HXKXT0R6KoNoDacgCv1JNZqT6U2XCvr4J3QejgZsU,1531
google/type/__pycache__/calendar_period_pb2.cpython-313.pyc,,
google/type/__pycache__/color_pb2.cpython-313.pyc,,
google/type/__pycache__/date_pb2.cpython-313.pyc,,
google/type/__pycache__/datetime_pb2.cpython-313.pyc,,
google/type/__pycache__/dayofweek_pb2.cpython-313.pyc,,
google/type/__pycache__/decimal_pb2.cpython-313.pyc,,
google/type/__pycache__/expr_pb2.cpython-313.pyc,,
google/type/__pycache__/fraction_pb2.cpython-313.pyc,,
google/type/__pycache__/interval_pb2.cpython-313.pyc,,
google/type/__pycache__/latlng_pb2.cpython-313.pyc,,
google/type/__pycache__/localized_text_pb2.cpython-313.pyc,,
google/type/__pycache__/money_pb2.cpython-313.pyc,,
google/type/__pycache__/month_pb2.cpython-313.pyc,,
google/type/__pycache__/phone_number_pb2.cpython-313.pyc,,
google/type/__pycache__/postal_address_pb2.cpython-313.pyc,,
google/type/__pycache__/quaternion_pb2.cpython-313.pyc,,
google/type/__pycache__/timeofday_pb2.cpython-313.pyc,,
google/type/calendar_period.proto,sha256=OAXB5eqDicGI9pm801iKPoNzo46TAsiLbgrk8Ni4ZMQ,1762
google/type/calendar_period_pb2.py,sha256=pW8k2WCxY7w9i9NEnxsF4o4SUhIfZ-Eh8lZBrF3zeiM,2285
google/type/calendar_period_pb2.pyi,sha256=sVo812wLSg28VeC_oZHNSNbvxWgbbw-FWyWDA1IK_xg,1400
google/type/color.proto,sha256=XIdgtG2bqDiYUYO6EViIDMSxBNX_Bc_HFKd2gI4olCs,6376
google/type/color_pb2.py,sha256=BHazOofpTJ7g3qIqnGJ3vj7XrnUU8GelAQA4LbIRipw,2233
google/type/color_pb2.pyi,sha256=40iw29SFgBeB0OlAnvTkr9c_2ODa73BAiokAmzpGZOo,1492
google/type/date.proto,sha256=69oyw_O0XTnkItK4sf8BKPl5JZo5JtDjD5yqnxLDaXY,1955
google/type/date_pb2.py,sha256=x22mullNBqVTf4KLYb5Ya81HG4_PC0QW3FDyHr_8xf4,2036
google/type/date_pb2.pyi,sha256=bhco_u3qTskpSxPthxrNYoafvupno3P7D0PDOfiw8KU,1187
google/type/datetime.proto,sha256=jOmz3PTZV8Sw6XgxJrNsNmaqDyP2b3Du6jGdpg0b2Yc,3905
google/type/datetime_pb2.py,sha256=eBRCOl4yxxKLUMS14danF4Y5qRbFImphC0wjwCyWRzY,2712
google/type/datetime_pb2.pyi,sha256=lpcUmSY0MQjnrj8f3wrjBdvrVNUXoAy6nilNaas6Msk,2420
google/type/dayofweek.proto,sha256=cC8e6Jea90WL2Inoqr0kaa_WtVV9Pk9u6jyVoadvsFI,1204
google/type/dayofweek_pb2.py,sha256=_5TI05lKJi-hcsjpwW1BIMvgkFdyEOJ2IYTLUe3s0Sk,2224
google/type/dayofweek_pb2.pyi,sha256=RbF1ibri8xloSPPHR25zNuzBTzpwbzn6u_FGsT_P4iE,1335
google/type/decimal.proto,sha256=Cj28BcCpaIs6DYJF7sIwwh95CUNfg3b-eOapyhjzPyM,4213
google/type/decimal_pb2.py,sha256=ewihkKVH_IK8g_z6_euwCRkytv0PSsNa2TJamGSNGy8,2009
google/type/decimal_pb2.pyi,sha256=ETMNgbDSMkwbwVzF1dy1iYv5F1vfSZVrZTacBiqw4MQ,980
google/type/expr.proto,sha256=JWLcgHPkx4-pj9FqTG7_DLZ0lc1eg91rqdhq8bMRPtg,2730
google/type/expr_pb2.py,sha256=1DGnypBaqJ-Bh1u49FbUHYzgVp6ecbMT8oGhHElO5qw,2051
google/type/expr_pb2.pyi,sha256=8pRxBNy6-l60abONgar3wsRFxhNO17AXXXbZkv1-aHc,1355
google/type/fraction.proto,sha256=-ptSvXZFwJxewNAE50EbgsmL6dzINhbsxWFlLkRQfNo,1156
google/type/fraction_pb2.py,sha256=IdO2Pnaxpp8EvMOpGevxem76pW9l0iSnrwcQwuevWaY,2042
google/type/fraction_pb2.pyi,sha256=xxowlWmKi9jiqpTxJPJVuUW4-OqpmT_7Jp-D1liGaSY,1126
google/type/interval.proto,sha256=5oGq4zYaofvPJEYEX3u9LN_ELGv7IBhmbUnjex3wwmM,1667
google/type/interval_pb2.py,sha256=3Cg2YoKtn7IjCksaFizONvt-dQJwVKclS8p-ttQ1sv8,2239
google/type/interval_pb2.pyi,sha256=madlH1_IMGBMoFfLY5RWpIyFVVzKuofwxngaHcEzOf4,1389
google/type/latlng.proto,sha256=yjtnGUXCu7uCmBLi2HtR0-9HyJg-f7jLG3jzCQu6CTU,1447
google/type/latlng_pb2.py,sha256=XKy0WRgnCBFCvAOYzFyYomZloEjroYtsg1igsfNILs8,2028
google/type/latlng_pb2.pyi,sha256=H1_dd3GUfw-M3Cro2VoyUQTN44XDXKTWaYrp_Kt_nek,1120
google/type/localized_text.proto,sha256=n-jVp6nFv3cUP-EBvx8k0ByhwSxKieTR50V4Tvfd4P4,1303
google/type/localized_text_pb2.py,sha256=YjdRGfXKqAU-pJzbNfd0kK42ONOtPXj3nB-hgiRRM28,2111
google/type/localized_text_pb2.pyi,sha256=lHUdsojwSWDYMNBDzSy4_9OKyflCBdA91wZ0TAR5d-A,1119
google/type/money.proto,sha256=G25nFBn5nzFqwt2oubvWY0C2o0ALVzyzKmbl-jlRQ4Q,1603
google/type/money_pb2.py,sha256=Pd_jpuEU2bh50bsqMMcqkISAQmn4Kn7dFvTUj9oJxdM,2042
google/type/money_pb2.pyi,sha256=dTUleurCYBGl3UsFgEL-AIGerrPd6-HUAX02kLmXZ4Y,1232
google/type/month.proto,sha256=eV-_zptOPtecuZKAeEBh1v6pR-TCk1El6O51ib3BPSY,1479
google/type/month_pb2.py,sha256=9mxuKSZkDEjZCNVoUWLqAt4zsj8XCiPQJy_8dfnERlQ,2304
google/type/month_pb2.pyi,sha256=CP_EBA3rCkhfHRqOQDQMKl8sv3gvQjpW69kQ7T5Mdss,1458
google/type/phone_number.proto,sha256=iU54bBbuZE6rr8MkeYGk_a4vMZlmum0iKH5lNeDswWo,4744
google/type/phone_number_pb2.py,sha256=EsKshTlAFZvGvp5P96tJkQ8gAETMjto9UgluJBCpsJc,2440
google/type/phone_number_pb2.pyi,sha256=9WRpktB1Izwhudosa_Vn9dAuTRXLfZ1gcFfyL5kDn6o,1745
google/type/postal_address.proto,sha256=Qq00XgJS4be_TQvjEPPMp6Mh3Nxb5UgZcNivhZqu_N8,6235
google/type/postal_address_pb2.py,sha256=vJaDXgkvp_gWwHyCCBon6sfbfh0vgN0DcsQTQ9VgWic,2495
google/type/postal_address_pb2.pyi,sha256=STB5j1C7kWT4arbDBmhG2gEA0fdOKcRol-QAd3JMv6U,2605
google/type/quaternion.proto,sha256=XWOdCa1H4PVZtnODi3u8xP3yhXJXbaOpjdPMYdteWdg,3791
google/type/quaternion_pb2.py,sha256=67r5JEckZ7IxdLysefpDVqujQWNEC27vZUAa4gZaMqo,2123
google/type/quaternion_pb2.pyi,sha256=78kj_z0GXrulbyoCcbon2tzlWsYHwwoTPVnWOWl1aOk,1257
google/type/timeofday.proto,sha256=PDCWTz-sDVulKoUYE-gZqB50T6hGG8kNWFkxovpSo0I,1667
google/type/timeofday_pb2.py,sha256=6F_QiHtrRB7kpb_2osC73OfVi2O6fy8Ed7RKDEjgUt8,2135
google/type/timeofday_pb2.pyi,sha256=B9mzMCS_LEgqUGrvb_0fNDY0AnKcduAuN5mJe7xjn1s,1320
googleapis_common_protos-1.72.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
googleapis_common_protos-1.72.0.dist-info/METADATA,sha256=aM-BZWmJoAPUFKKcd7zRkM5ft2s09eOd0bPLsbj0pG0,9358
googleapis_common_protos-1.72.0.dist-info/RECORD,,
googleapis_common_protos-1.72.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
googleapis_common_protos-1.72.0.dist-info/licenses/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
googleapis_common_protos-1.72.0.dist-info/top_level.txt,sha256=_1QvSJIhFAGfxb79D6DhB7SUw2X6T4rwnz_LLrbcD3c,7

View File

@@ -0,0 +1,5 @@
Wheel-Version: 1.0
Generator: setuptools (80.9.0)
Root-Is-Purelib: true
Tag: py3-none-any

View File

@@ -0,0 +1,202 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
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.