├── core ├── tests │ ├── __init__.py │ └── unit │ │ └── __init__.py ├── setup.cfg ├── MANIFEST.in ├── .flake8 └── .coveragerc ├── dns ├── tests │ ├── __init__.py │ └── unit │ │ └── __init__.py ├── setup.cfg ├── MANIFEST.in ├── .flake8 └── .coveragerc ├── docs ├── dlp ├── redis ├── oslogin ├── container ├── dataproc ├── monitoring ├── bigquery │ ├── .gitignore │ ├── changelog.md │ └── dbapi.rst ├── texttospeech ├── dns │ ├── changelog.md │ ├── changes.rst │ ├── client.rst │ ├── zone.rst │ └── resource-record-set.rst ├── trace │ ├── changelog.md │ └── apis.rst ├── bigtable │ ├── changelog.md │ ├── table.rst │ ├── client.rst │ ├── cluster.rst │ ├── instance.rst │ ├── row-data.rst │ └── row.rst ├── core │ ├── core_changelog.md │ ├── api_core_changelog.md │ ├── retry.rst │ ├── client.rst │ ├── timeout.rst │ ├── exceptions.rst │ ├── page_iterator.rst │ ├── path_template.rst │ ├── iam.rst │ ├── operation.rst │ ├── operations_client.rst │ ├── helpers.rst │ └── index.rst ├── language │ ├── changelog.md │ └── gapic │ │ ├── v1 │ │ ├── types.rst │ │ └── api.rst │ │ └── v1beta2 │ │ ├── types.rst │ │ └── api.rst ├── logging │ ├── changelog.md │ ├── sink.rst │ ├── entries.rst │ ├── logger.rst │ ├── metric.rst │ ├── client.rst │ ├── handlers.rst │ ├── handlers-app-engine.rst │ ├── transports-base.rst │ ├── transports-sync.rst │ ├── handlers-container-engine.rst │ └── transports-thread.rst ├── pubsub │ ├── changelog.md │ ├── types.rst │ ├── subscriber │ │ └── api │ │ │ ├── futures.rst │ │ │ ├── scheduler.rst │ │ │ ├── client.rst │ │ │ └── message.rst │ └── publisher │ │ └── api │ │ ├── client.rst │ │ └── batch.rst ├── spanner │ ├── changelog.md │ ├── batch-api.rst │ ├── client-api.rst │ ├── gapic │ │ └── v1 │ │ │ ├── api.rst │ │ │ ├── types.rst │ │ │ ├── admin_database_types.rst │ │ │ ├── admin_instance_types.rst │ │ │ ├── admin_database_api.rst │ │ │ └── admin_instance_api.rst │ ├── keyset-api.rst │ ├── database-api.rst │ ├── instance-api.rst │ ├── snapshot-api.rst │ ├── transaction-api.rst │ ├── streamed-api.rst │ └── session-api.rst ├── speech │ ├── changelog.md │ └── gapic │ │ ├── v1 │ │ ├── types.rst │ │ └── api.rst │ │ └── v1p1beta1 │ │ ├── types.rst │ │ └── api.rst ├── storage │ ├── changelog.md │ ├── acl.rst │ ├── batch.rst │ ├── buckets.rst │ ├── blobs.rst │ └── client.rst ├── vision │ ├── changelog.md │ └── gapic │ │ ├── v1 │ │ ├── types.rst │ │ └── api.rst │ │ └── v1p2beta1 │ │ ├── types.rst │ │ └── api.rst ├── bigquery_datatransfer ├── datastore │ ├── changelog.md │ ├── keys.rst │ ├── batches.rst │ ├── helpers.rst │ ├── queries.rst │ ├── entities.rst │ ├── client.rst │ ├── transactions.rst │ └── usage.rst ├── firestore │ ├── changelog.md │ ├── batch.rst │ ├── client.rst │ ├── query.rst │ ├── constants.rst │ ├── document.rst │ ├── collection.rst │ ├── types.rst │ ├── transaction.rst │ └── index.rst ├── translate │ ├── changelog.md │ └── client.rst ├── runtimeconfig │ ├── changelog.md │ ├── variable.rst │ ├── config.rst │ ├── client.rst │ └── usage.rst ├── error-reporting │ ├── changelog.md │ ├── client.rst │ └── util.rst ├── resource-manager │ ├── changelog.md │ ├── project.rst │ └── client.rst ├── videointelligence │ ├── changelog.md │ └── gapic │ │ ├── v1beta2 │ │ ├── types.rst │ │ └── api.rst │ │ ├── v1beta1 │ │ ├── types.rst │ │ └── api.rst │ │ ├── v1 │ │ ├── types.rst │ │ └── api.rst │ │ └── v1p1beta1 │ │ ├── types.rst │ │ └── api.rst ├── _static │ ├── images │ │ └── favicon.ico │ └── custom.css ├── _templates │ └── autosummary │ │ ├── class.rst │ │ └── module.rst └── requirements.txt ├── api_core ├── tests │ ├── __init__.py │ └── unit │ │ ├── __init__.py │ │ ├── future │ │ └── __init__.py │ │ └── operations_v1 │ │ └── __init__.py ├── setup.cfg ├── MANIFEST.in ├── .flake8 ├── .coveragerc └── README.rst ├── bigquery ├── tests │ ├── __init__.py │ ├── data │ │ ├── people.csv │ │ └── colors.avro │ └── unit │ │ └── __init__.py ├── setup.cfg ├── MANIFEST.in ├── .flake8 ├── benchmark │ └── README.md └── .coveragerc ├── bigtable ├── tests │ ├── __init__.py │ └── unit │ │ └── __init__.py ├── releases.md ├── google │ └── cloud │ │ ├── bigtable_v2 │ │ ├── gapic │ │ │ └── __init__.py │ │ └── proto │ │ │ ├── __init__.py │ │ │ └── data_pb2_grpc.py │ │ ├── bigtable_admin_v2 │ │ ├── gapic │ │ │ └── __init__.py │ │ └── proto │ │ │ ├── __init__.py │ │ │ ├── table_pb2_grpc.py │ │ │ ├── common_pb2_grpc.py │ │ │ └── instance_pb2_grpc.py │ │ └── __init__.py ├── setup.cfg ├── MANIFEST.in ├── docs │ └── gapic │ │ └── v2 │ │ ├── types.rst │ │ └── api.rst ├── .flake8 └── .coveragerc ├── datastore ├── tests │ ├── __init__.py │ ├── system │ │ ├── __init__.py │ │ └── utils │ │ │ └── __init__.py │ └── unit │ │ └── __init__.py ├── google │ └── cloud │ │ └── datastore_v1 │ │ ├── gapic │ │ └── __init__.py │ │ └── proto │ │ ├── __init__.py │ │ ├── entity_pb2_grpc.py │ │ └── query_pb2_grpc.py ├── setup.cfg ├── MANIFEST.in ├── docs │ └── gapic │ │ └── v1 │ │ ├── types.rst │ │ └── api.rst ├── .flake8 └── .coveragerc ├── language ├── tests │ ├── __init__.py │ └── unit │ │ └── __init__.py ├── google │ └── cloud │ │ ├── language_v1 │ │ ├── gapic │ │ │ └── __init__.py │ │ └── proto │ │ │ └── __init__.py │ │ └── language_v1beta2 │ │ ├── gapic │ │ └── __init__.py │ │ └── proto │ │ └── __init__.py ├── setup.cfg ├── MANIFEST.in ├── .flake8 └── .coveragerc ├── logging ├── tests │ ├── __init__.py │ └── unit │ │ ├── __init__.py │ │ └── handlers │ │ ├── __init__.py │ │ └── transports │ │ └── __init__.py ├── google │ └── cloud │ │ └── logging_v2 │ │ ├── gapic │ │ └── __init__.py │ │ └── proto │ │ ├── __init__.py │ │ └── log_entry_pb2_grpc.py ├── setup.cfg ├── MANIFEST.in ├── docs │ └── gapic │ │ └── v2 │ │ ├── types.rst │ │ └── api.rst ├── .flake8 └── .coveragerc ├── monitoring ├── tests │ └── __init__.py ├── google │ └── cloud │ │ └── monitoring_v3 │ │ ├── gapic │ │ └── __init__.py │ │ └── proto │ │ ├── __init__.py │ │ ├── alert_pb2_grpc.py │ │ ├── common_pb2_grpc.py │ │ ├── group_pb2_grpc.py │ │ ├── metric_pb2_grpc.py │ │ ├── uptime_pb2_grpc.py │ │ ├── notification_pb2_grpc.py │ │ └── mutation_record_pb2_grpc.py ├── setup.cfg ├── MANIFEST.in ├── docs │ ├── query.rst │ └── gapic │ │ └── v3 │ │ ├── types.rst │ │ └── api.rst ├── .flake8 └── .coveragerc ├── spanner ├── tests │ ├── __init__.py │ ├── system │ │ ├── __init__.py │ │ └── utils │ │ │ └── __init__.py │ └── unit │ │ └── __init__.py ├── google │ ├── cloud │ │ ├── spanner_v1 │ │ │ ├── gapic │ │ │ │ └── __init__.py │ │ │ └── proto │ │ │ │ ├── __init__.py │ │ │ │ ├── keys_pb2_grpc.py │ │ │ │ ├── mutation_pb2_grpc.py │ │ │ │ ├── type_pb2_grpc.py │ │ │ │ ├── query_plan_pb2_grpc.py │ │ │ │ ├── result_set_pb2_grpc.py │ │ │ │ └── transaction_pb2_grpc.py │ │ ├── spanner_admin_database_v1 │ │ │ ├── gapic │ │ │ │ └── __init__.py │ │ │ └── proto │ │ │ │ └── __init__.py │ │ ├── spanner_admin_instance_v1 │ │ │ ├── gapic │ │ │ │ └── __init__.py │ │ │ └── proto │ │ │ │ └── __init__.py │ │ └── __init__.py │ └── __init__.py ├── setup.cfg ├── MANIFEST.in ├── .flake8 └── .coveragerc ├── storage ├── tests │ ├── __init__.py │ ├── data │ │ ├── simple.txt │ │ ├── five-point-one-mb-file.zip │ │ └── CloudPlatform_128px_Retina.png │ └── unit │ │ └── __init__.py ├── setup.cfg ├── MANIFEST.in ├── .flake8 └── .coveragerc ├── translate ├── tests │ ├── __init__.py │ └── unit │ │ └── __init__.py ├── setup.cfg ├── MANIFEST.in ├── .flake8 └── .coveragerc ├── vision ├── tests │ ├── __init__.py │ ├── unit │ │ └── __init__.py │ └── data │ │ ├── car.jpg │ │ ├── logo.png │ │ ├── text.jpg │ │ ├── faces.jpg │ │ ├── full-text.jpg │ │ └── landmark.jpg ├── google │ └── cloud │ │ ├── vision_v1 │ │ ├── gapic │ │ │ └── __init__.py │ │ └── proto │ │ │ ├── __init__.py │ │ │ ├── geometry_pb2_grpc.py │ │ │ ├── text_annotation_pb2_grpc.py │ │ │ └── web_detection_pb2_grpc.py │ │ ├── vision_v1p1beta1 │ │ ├── gapic │ │ │ └── __init__.py │ │ └── proto │ │ │ ├── __init__.py │ │ │ ├── geometry_pb2_grpc.py │ │ │ ├── web_detection_pb2_grpc.py │ │ │ └── text_annotation_pb2_grpc.py │ │ └── vision_v1p2beta1 │ │ ├── gapic │ │ └── __init__.py │ │ └── proto │ │ ├── __init__.py │ │ ├── geometry_pb2_grpc.py │ │ ├── web_detection_pb2_grpc.py │ │ └── text_annotation_pb2_grpc.py ├── setup.cfg ├── MANIFEST.in ├── .flake8 └── .coveragerc ├── error_reporting ├── tests │ ├── __init__.py │ └── unit │ │ └── __init__.py ├── setup.cfg ├── google │ └── cloud │ │ └── errorreporting_v1beta1 │ │ ├── gapic │ │ └── __init__.py │ │ └── proto │ │ ├── __init__.py │ │ └── common_pb2_grpc.py ├── MANIFEST.in ├── docs │ └── gapic │ │ └── v1beta1 │ │ ├── types.rst │ │ └── api.rst ├── .flake8 └── .coveragerc ├── pubsub ├── tests │ └── unit │ │ └── __init__.py ├── google │ └── cloud │ │ └── pubsub_v1 │ │ ├── gapic │ │ └── __init__.py │ │ ├── proto │ │ └── __init__.py │ │ ├── publisher │ │ └── batch │ │ │ └── __init__.py │ │ └── subscriber │ │ └── _protocol │ │ └── __init__.py ├── setup.cfg ├── MANIFEST.in ├── .flake8 └── .coveragerc ├── test_utils └── test_utils │ └── __init__.py ├── resource_manager ├── tests │ ├── __init__.py │ └── unit │ │ └── __init__.py ├── setup.cfg ├── MANIFEST.in ├── .flake8 └── .coveragerc ├── dlp ├── docs │ ├── changelog.md │ └── gapic │ │ └── v2 │ │ ├── types.rst │ │ └── api.rst ├── google │ ├── cloud │ │ ├── dlp_v2 │ │ │ ├── gapic │ │ │ │ └── __init__.py │ │ │ └── proto │ │ │ │ ├── __init__.py │ │ │ │ └── storage_pb2_grpc.py │ │ └── __init__.py │ └── __init__.py ├── setup.cfg ├── MANIFEST.in ├── .flake8 └── .coveragerc ├── iot ├── google │ └── cloud │ │ └── iot_v1 │ │ ├── gapic │ │ └── __init__.py │ │ └── proto │ │ ├── __init__.py │ │ └── resources_pb2_grpc.py ├── setup.cfg ├── docs │ └── gapic │ │ └── v1 │ │ ├── types.rst │ │ └── api.rst ├── MANIFEST.in └── CHANGELOG.md ├── speech ├── google │ └── cloud │ │ ├── speech_v1 │ │ ├── gapic │ │ │ └── __init__.py │ │ └── proto │ │ │ └── __init__.py │ │ └── speech_v1p1beta1 │ │ ├── gapic │ │ └── __init__.py │ │ └── proto │ │ └── __init__.py ├── setup.cfg ├── MANIFEST.in ├── .flake8 └── .coveragerc ├── trace ├── google │ ├── cloud │ │ ├── trace_v1 │ │ │ ├── gapic │ │ │ │ └── __init__.py │ │ │ └── proto │ │ │ │ └── __init__.py │ │ ├── trace_v2 │ │ │ ├── gapic │ │ │ │ └── __init__.py │ │ │ └── proto │ │ │ │ ├── __init__.py │ │ │ │ └── trace_pb2_grpc.py │ │ └── __init__.py │ └── __init__.py ├── setup.cfg ├── docs │ └── gapic │ │ ├── v1 │ │ ├── types.rst │ │ └── api.rst │ │ └── v2 │ │ ├── types.rst │ │ └── api.rst ├── MANIFEST.in ├── .flake8 ├── .coveragerc └── tests │ └── __init__.py ├── container ├── google │ ├── cloud │ │ ├── container_v1 │ │ │ ├── gapic │ │ │ │ └── __init__.py │ │ │ └── proto │ │ │ │ └── __init__.py │ │ └── __init__.py │ └── __init__.py ├── docs │ ├── changelog.md │ └── gapic │ │ └── v1 │ │ ├── types.rst │ │ └── api.rst ├── setup.cfg └── MANIFEST.in ├── dataproc ├── docs │ ├── changelog.md │ └── gapic │ │ └── v1 │ │ ├── types.rst │ │ └── api.rst ├── google │ ├── cloud │ │ ├── dataproc_v1 │ │ │ ├── gapic │ │ │ │ └── __init__.py │ │ │ └── proto │ │ │ │ ├── __init__.py │ │ │ │ └── operations_pb2_grpc.py │ │ └── __init__.py │ └── __init__.py ├── setup.cfg ├── MANIFEST.in └── CHANGELOG.md ├── oslogin ├── docs │ ├── changelog.md │ └── gapic │ │ └── v1 │ │ ├── types.rst │ │ └── api.rst ├── google │ └── cloud │ │ └── oslogin_v1 │ │ ├── gapic │ │ └── __init__.py │ │ └── proto │ │ ├── __init__.py │ │ └── common_pb2_grpc.py ├── setup.cfg ├── MANIFEST.in └── CHANGELOG.md ├── redis ├── google │ └── cloud │ │ └── redis_v1beta1 │ │ ├── gapic │ │ └── __init__.py │ │ └── proto │ │ └── __init__.py ├── setup.cfg ├── MANIFEST.in ├── docs │ └── gapic │ │ └── v1beta1 │ │ ├── types.rst │ │ └── api.rst ├── .flake8 ├── CHANGELOG.md └── .coveragerc ├── tasks ├── google │ └── cloud │ │ └── tasks_v2beta2 │ │ ├── gapic │ │ └── __init__.py │ │ └── proto │ │ ├── __init__.py │ │ ├── queue_pb2_grpc.py │ │ ├── target_pb2_grpc.py │ │ └── task_pb2_grpc.py ├── setup.cfg ├── MANIFEST.in ├── docs │ └── gapic │ │ └── v2beta2 │ │ ├── types.rst │ │ └── api.rst └── CHANGELOG.md ├── firestore ├── google │ └── cloud │ │ └── firestore_v1beta1 │ │ ├── gapic │ │ └── __init__.py │ │ └── proto │ │ ├── __init__.py │ │ ├── admin │ │ ├── __init__.py │ │ └── index_pb2_grpc.py │ │ ├── common_pb2_grpc.py │ │ ├── document_pb2_grpc.py │ │ ├── query_pb2_grpc.py │ │ ├── write_pb2_grpc.py │ │ └── event_flow_document_change_pb2_grpc.py ├── setup.cfg ├── tests │ ├── unit │ │ ├── testdata │ │ │ ├── tests.binprotos │ │ │ ├── test-suite.binproto │ │ │ ├── set-3.textproto │ │ │ ├── create-3.textproto.failed │ │ │ ├── update-paths-7.textproto │ │ │ ├── update-7.textproto.failed │ │ │ ├── update-8.textproto.failed │ │ │ ├── get-1.textproto │ │ │ ├── update-10.textproto │ │ │ ├── update-9.textproto │ │ │ ├── update-paths-24.textproto │ │ │ ├── update-paths-3.textproto │ │ │ ├── update-11.textproto │ │ │ ├── set-6.textproto │ │ │ ├── create-6.textproto │ │ │ ├── update-paths-8.textproto │ │ │ ├── update-paths-no-paths.textproto │ │ │ ├── update-no-paths.textproto │ │ │ ├── update-fp-empty-component.textproto │ │ │ ├── get-basic.textproto │ │ │ ├── update-paths-11.textproto │ │ │ ├── update-12.textproto.failed │ │ │ ├── update-25.textproto.failed │ │ │ ├── update-prefix-1.textproto │ │ │ ├── update-prefix-2.textproto │ │ │ ├── set-11.textproto │ │ │ ├── update-paths-fp-empty.textproto │ │ │ ├── create-11.textproto │ │ │ ├── update-17.textproto │ │ │ ├── update-del-nested.textproto │ │ │ ├── delete-1.textproto │ │ │ ├── set-nodel.textproto │ │ │ ├── create-nodel.textproto │ │ │ ├── update-paths-12.textproto │ │ │ ├── update-paths-10.textproto │ │ │ ├── update-paths-9.textproto │ │ │ ├── update-paths-fp-empty-component.textproto │ │ │ ├── update-prefix-3.textproto │ │ │ ├── update-badchar.textproto │ │ │ ├── set-13.textproto │ │ │ ├── update-exists-precond.textproto │ │ │ ├── create-13.textproto │ │ │ ├── update-19.textproto │ │ │ ├── update-paths-17.textproto │ │ │ ├── update-paths-del-nested.textproto │ │ │ ├── set-12.textproto │ │ │ ├── create-12.textproto │ │ │ ├── query-invalid-path-select.textproto │ │ │ ├── update-18.textproto │ │ │ ├── set-14.textproto │ │ │ ├── set-st-noarray.textproto │ │ │ ├── create-14.textproto │ │ │ ├── set-25.textproto │ │ │ ├── update-20.textproto │ │ │ ├── create-st-noarray.textproto │ │ │ ├── update-paths-25.textproto │ │ │ ├── update-st-noarray.textproto │ │ │ ├── delete-no-precond.textproto │ │ │ ├── query-del-where.textproto │ │ │ ├── query-invalid-operator.textproto │ │ │ ├── query-invalid-path-order.textproto │ │ │ ├── query-bad-NaN.textproto │ │ │ ├── query-bad-null.textproto │ │ │ ├── query-st-where.textproto │ │ │ ├── set-del-wo-merge.textproto │ │ │ ├── set-empty.textproto │ │ │ ├── query-cursor-no-order.textproto │ │ │ ├── query-invalid-path-where.textproto │ │ │ ├── set-26.textproto │ │ │ ├── update-paths-exists-precond.textproto │ │ │ ├── update-paths-19.textproto │ │ │ ├── update-paths-18.textproto │ │ │ ├── update-paths-prefix-1.textproto │ │ │ ├── update-paths-prefix-2.textproto │ │ │ ├── query-offset-limit.textproto │ │ │ ├── set-del-noarray.textproto │ │ │ ├── update-paths-20.textproto │ │ │ ├── create-del-noarray.textproto │ │ │ ├── update-del-noarray.textproto │ │ │ ├── update-paths-st-noarray.textproto │ │ │ ├── delete-3.textproto │ │ │ ├── query-select-empty.textproto │ │ │ ├── set-st-noarray-nested.textproto │ │ │ ├── create-st-noarray-nested.textproto │ │ │ ├── listen-empty.textproto │ │ │ ├── update-st-noarray-nested.textproto │ │ │ ├── set-del-noarray-nested.textproto │ │ │ ├── create-del-noarray-nested.textproto │ │ │ ├── query-del-cursor.textproto │ │ │ ├── set-merge-present.textproto │ │ │ ├── update-del-noarray-nested.textproto │ │ │ ├── update-paths-fp-dup.textproto │ │ │ ├── create-empty.textproto │ │ │ ├── query-st-cursor.textproto │ │ │ ├── update-paths-prefix-3.textproto │ │ │ ├── set-del-nomerge.textproto │ │ │ ├── set-merge-prefix.textproto │ │ │ ├── set-1.textproto │ │ │ ├── update-paths-del-noarray.textproto │ │ │ ├── update-paths-st-noarray-nested.textproto │ │ │ └── delete-exists-precond.textproto │ │ └── __init__.py │ └── __init__.py ├── MANIFEST.in ├── docs │ └── gapic │ │ └── v1beta1 │ │ ├── types.rst │ │ └── api.rst ├── .flake8 └── .coveragerc ├── texttospeech ├── setup.cfg ├── docs │ ├── changelog.md │ └── gapic │ │ └── v1beta1 │ │ ├── types.rst │ │ └── api.rst ├── google │ └── cloud │ │ └── texttospeech_v1beta1 │ │ ├── gapic │ │ └── __init__.py │ │ └── proto │ │ └── __init__.py ├── MANIFEST.in └── CHANGELOG.md ├── runtimeconfig ├── setup.cfg ├── MANIFEST.in ├── .flake8 ├── .coveragerc └── tests │ └── unit │ └── __init__.py ├── videointelligence ├── setup.cfg ├── google │ └── cloud │ │ ├── videointelligence_v1 │ │ ├── gapic │ │ │ └── __init__.py │ │ └── proto │ │ │ └── __init__.py │ │ ├── videointelligence_v1beta1 │ │ ├── gapic │ │ │ └── __init__.py │ │ └── proto │ │ │ └── __init__.py │ │ ├── videointelligence_v1beta2 │ │ ├── gapic │ │ │ └── __init__.py │ │ └── proto │ │ │ └── __init__.py │ │ └── videointelligence_v1p1beta1 │ │ ├── gapic │ │ └── __init__.py │ │ └── proto │ │ └── __init__.py └── MANIFEST.in ├── bigquery_datatransfer ├── setup.cfg ├── google │ ├── cloud │ │ ├── bigquery_datatransfer_v1 │ │ │ ├── gapic │ │ │ │ └── __init__.py │ │ │ └── proto │ │ │ │ ├── __init__.py │ │ │ │ └── transfer_pb2_grpc.py │ │ └── __init__.py │ └── __init__.py ├── docs │ ├── changelog.md │ └── gapic │ │ └── v1 │ │ ├── types.rst │ │ └── api.rst └── MANIFEST.in ├── websecurityscanner ├── setup.cfg ├── google │ └── cloud │ │ └── websecurityscanner_v1alpha │ │ ├── gapic │ │ └── __init__.py │ │ └── proto │ │ ├── __init__.py │ │ ├── crawled_url_pb2_grpc.py │ │ ├── finding_pb2_grpc.py │ │ ├── scan_config_pb2_grpc.py │ │ ├── scan_run_pb2_grpc.py │ │ ├── finding_addon_pb2_grpc.py │ │ └── finding_type_stats_pb2_grpc.py ├── MANIFEST.in ├── docs │ └── gapic │ │ └── v1alpha │ │ ├── types.rst │ │ └── api.rst ├── .flake8 ├── CHANGELOG.md └── .coveragerc ├── legacy └── google-cloud │ ├── MANIFEST.in │ └── setup.cfg ├── .readthedocs.yml ├── third_party └── sphinx │ └── README.md ├── appveyor └── requirements.txt └── .coveragerc /core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dns/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/dlp: -------------------------------------------------------------------------------- 1 | ../dlp/docs/ -------------------------------------------------------------------------------- /docs/redis: -------------------------------------------------------------------------------- 1 | ../redis/docs -------------------------------------------------------------------------------- /api_core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bigquery/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bigtable/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datastore/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/oslogin: -------------------------------------------------------------------------------- 1 | ../oslogin/docs/ -------------------------------------------------------------------------------- /language/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logging/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /monitoring/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spanner/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /translate/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vision/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api_core/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/container: -------------------------------------------------------------------------------- 1 | ../container/docs/ -------------------------------------------------------------------------------- /docs/dataproc: -------------------------------------------------------------------------------- 1 | ../dataproc/docs/ -------------------------------------------------------------------------------- /docs/monitoring: -------------------------------------------------------------------------------- 1 | ../monitoring/docs -------------------------------------------------------------------------------- /error_reporting/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pubsub/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spanner/tests/system/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_utils/test_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vision/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api_core/tests/unit/future/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datastore/tests/system/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/bigquery/.gitignore: -------------------------------------------------------------------------------- 1 | generated/ -------------------------------------------------------------------------------- /docs/texttospeech: -------------------------------------------------------------------------------- 1 | ../texttospeech/docs/ -------------------------------------------------------------------------------- /resource_manager/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spanner/tests/system/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datastore/tests/system/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dlp/docs/changelog.md: -------------------------------------------------------------------------------- 1 | ../../dlp/CHANGELOG.md -------------------------------------------------------------------------------- /dlp/google/cloud/dlp_v2/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dlp/google/cloud/dlp_v2/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/dns/changelog.md: -------------------------------------------------------------------------------- 1 | ../../dns/CHANGELOG.md -------------------------------------------------------------------------------- /iot/google/cloud/iot_v1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iot/google/cloud/iot_v1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api_core/tests/unit/operations_v1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bigtable/releases.md: -------------------------------------------------------------------------------- 1 | ../../bigtable/CHANGELOG.md -------------------------------------------------------------------------------- /docs/trace/changelog.md: -------------------------------------------------------------------------------- 1 | ../../trace/CHANGELOG.md -------------------------------------------------------------------------------- /pubsub/google/cloud/pubsub_v1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pubsub/google/cloud/pubsub_v1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /speech/google/cloud/speech_v1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /speech/google/cloud/speech_v1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trace/google/cloud/trace_v1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trace/google/cloud/trace_v1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trace/google/cloud/trace_v2/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trace/google/cloud/trace_v2/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vision/google/cloud/vision_v1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vision/google/cloud/vision_v1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bigtable/google/cloud/bigtable_v2/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bigtable/google/cloud/bigtable_v2/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /container/google/cloud/container_v1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /container/google/cloud/container_v1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /dataproc/docs/changelog.md: -------------------------------------------------------------------------------- 1 | ../../dataproc/CHANGELOG.md -------------------------------------------------------------------------------- /dataproc/google/cloud/dataproc_v1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataproc/google/cloud/dataproc_v1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datastore/google/cloud/datastore_v1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datastore/google/cloud/datastore_v1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dlp/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /dns/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /docs/bigquery/changelog.md: -------------------------------------------------------------------------------- 1 | ../../bigquery/CHANGELOG.md -------------------------------------------------------------------------------- /docs/bigtable/changelog.md: -------------------------------------------------------------------------------- 1 | ../../bigtable/CHANGELOG.md -------------------------------------------------------------------------------- /docs/core/core_changelog.md: -------------------------------------------------------------------------------- 1 | ../../core/CHANGELOG.md -------------------------------------------------------------------------------- /docs/language/changelog.md: -------------------------------------------------------------------------------- 1 | ../../language/CHANGELOG.md -------------------------------------------------------------------------------- /docs/logging/changelog.md: -------------------------------------------------------------------------------- 1 | ../../logging/CHANGELOG.md -------------------------------------------------------------------------------- /docs/pubsub/changelog.md: -------------------------------------------------------------------------------- 1 | ../../pubsub/CHANGELOG.md -------------------------------------------------------------------------------- /docs/spanner/changelog.md: -------------------------------------------------------------------------------- 1 | ../../spanner/CHANGELOG.md -------------------------------------------------------------------------------- /docs/speech/changelog.md: -------------------------------------------------------------------------------- 1 | ../../speech/CHANGELOG.md -------------------------------------------------------------------------------- /docs/storage/changelog.md: -------------------------------------------------------------------------------- 1 | ../../storage/CHANGELOG.md -------------------------------------------------------------------------------- /docs/vision/changelog.md: -------------------------------------------------------------------------------- 1 | ../../vision/CHANGELOG.md -------------------------------------------------------------------------------- /iot/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /language/google/cloud/language_v1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/google/cloud/language_v1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logging/google/cloud/logging_v2/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logging/google/cloud/logging_v2/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logging/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /oslogin/docs/changelog.md: -------------------------------------------------------------------------------- 1 | ../../oslogin/CHANGELOG.md -------------------------------------------------------------------------------- /oslogin/google/cloud/oslogin_v1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oslogin/google/cloud/oslogin_v1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oslogin/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /pubsub/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /redis/google/cloud/redis_v1beta1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redis/google/cloud/redis_v1beta1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redis/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /spanner/google/cloud/spanner_v1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spanner/google/cloud/spanner_v1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spanner/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /speech/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /storage/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /tasks/google/cloud/tasks_v2beta2/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks/google/cloud/tasks_v2beta2/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tasks/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /trace/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /vision/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /api_core/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /bigquery/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /bigtable/google/cloud/bigtable_admin_v2/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bigtable/google/cloud/bigtable_admin_v2/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bigtable/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /container/docs/changelog.md: -------------------------------------------------------------------------------- 1 | ../../container/CHANGELOG.md -------------------------------------------------------------------------------- /container/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /dataproc/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /datastore/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /docs/bigquery_datatransfer: -------------------------------------------------------------------------------- 1 | ../bigquery_datatransfer/docs/ -------------------------------------------------------------------------------- /docs/core/api_core_changelog.md: -------------------------------------------------------------------------------- 1 | ../../api_core/CHANGELOG.md -------------------------------------------------------------------------------- /docs/datastore/changelog.md: -------------------------------------------------------------------------------- 1 | ../../datastore/CHANGELOG.md -------------------------------------------------------------------------------- /docs/firestore/changelog.md: -------------------------------------------------------------------------------- 1 | ../../firestore/CHANGELOG.md -------------------------------------------------------------------------------- /docs/translate/changelog.md: -------------------------------------------------------------------------------- 1 | ../../translate/CHANGELOG.md -------------------------------------------------------------------------------- /firestore/google/cloud/firestore_v1beta1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firestore/google/cloud/firestore_v1beta1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /firestore/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /language/google/cloud/language_v1beta2/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/google/cloud/language_v1beta2/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /language/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /monitoring/google/cloud/monitoring_v3/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /monitoring/google/cloud/monitoring_v3/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /monitoring/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /pubsub/google/cloud/pubsub_v1/publisher/batch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /speech/google/cloud/speech_v1p1beta1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /speech/google/cloud/speech_v1p1beta1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /texttospeech/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /translate/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /vision/google/cloud/vision_v1p1beta1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vision/google/cloud/vision_v1p1beta1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vision/google/cloud/vision_v1p2beta1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vision/google/cloud/vision_v1p2beta1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/runtimeconfig/changelog.md: -------------------------------------------------------------------------------- 1 | ../../runtimeconfig/CHANGELOG.md -------------------------------------------------------------------------------- /error_reporting/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /pubsub/google/cloud/pubsub_v1/subscriber/_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resource_manager/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /runtimeconfig/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /storage/tests/data/simple.txt: -------------------------------------------------------------------------------- 1 | This is a simple text file. 2 | -------------------------------------------------------------------------------- /texttospeech/docs/changelog.md: -------------------------------------------------------------------------------- 1 | ../../texttospeech/CHANGELOG.md -------------------------------------------------------------------------------- /videointelligence/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /bigquery_datatransfer/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /docs/error-reporting/changelog.md: -------------------------------------------------------------------------------- 1 | ../../error_reporting/CHANGELOG.md -------------------------------------------------------------------------------- /firestore/google/cloud/firestore_v1beta1/proto/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spanner/google/cloud/spanner_admin_database_v1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spanner/google/cloud/spanner_admin_database_v1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spanner/google/cloud/spanner_admin_instance_v1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spanner/google/cloud/spanner_admin_instance_v1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /texttospeech/google/cloud/texttospeech_v1beta1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /texttospeech/google/cloud/texttospeech_v1beta1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /websecurityscanner/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /docs/resource-manager/changelog.md: -------------------------------------------------------------------------------- 1 | ../../resource_manager/CHANGELOG.md -------------------------------------------------------------------------------- /docs/videointelligence/changelog.md: -------------------------------------------------------------------------------- 1 | ../../videointelligence/CHANGELOG.md -------------------------------------------------------------------------------- /error_reporting/google/cloud/errorreporting_v1beta1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /error_reporting/google/cloud/errorreporting_v1beta1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /videointelligence/google/cloud/videointelligence_v1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /videointelligence/google/cloud/videointelligence_v1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bigquery_datatransfer/google/cloud/bigquery_datatransfer_v1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bigquery_datatransfer/google/cloud/bigquery_datatransfer_v1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /videointelligence/google/cloud/videointelligence_v1beta1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /videointelligence/google/cloud/videointelligence_v1beta1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /videointelligence/google/cloud/videointelligence_v1beta2/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /videointelligence/google/cloud/videointelligence_v1beta2/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /videointelligence/google/cloud/videointelligence_v1p1beta1/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /videointelligence/google/cloud/videointelligence_v1p1beta1/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /websecurityscanner/google/cloud/websecurityscanner_v1alpha/gapic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /websecurityscanner/google/cloud/websecurityscanner_v1alpha/proto/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bigquery_datatransfer/docs/changelog.md: -------------------------------------------------------------------------------- 1 | ../../bigquery_datatransfer/CHANGELOG.md -------------------------------------------------------------------------------- /legacy/google-cloud/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include setup-README.rst 2 | global-exclude *.pyc 3 | -------------------------------------------------------------------------------- /trace/google/__init__.py: -------------------------------------------------------------------------------- 1 | __import__('pkg_resources').declare_namespace(__name__) 2 | -------------------------------------------------------------------------------- /bigquery/tests/data/people.csv: -------------------------------------------------------------------------------- 1 | full_name,age 2 | Phred Phlyntstone,32 3 | Wylma Phlyntstone,29 -------------------------------------------------------------------------------- /trace/google/cloud/__init__.py: -------------------------------------------------------------------------------- 1 | __import__('pkg_resources').declare_namespace(__name__) 2 | -------------------------------------------------------------------------------- /vision/tests/data/car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hc/google-cloud-python/master/vision/tests/data/car.jpg -------------------------------------------------------------------------------- /vision/tests/data/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hc/google-cloud-python/master/vision/tests/data/logo.png -------------------------------------------------------------------------------- /vision/tests/data/text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hc/google-cloud-python/master/vision/tests/data/text.jpg -------------------------------------------------------------------------------- /api_core/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include tests * 3 | global-exclude *.pyc __pycache__ 4 | -------------------------------------------------------------------------------- /bigquery/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include tests * 3 | global-exclude *.pyc __pycache__ 4 | -------------------------------------------------------------------------------- /core/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include tests * 3 | global-exclude *.pyc __pycache__ 4 | -------------------------------------------------------------------------------- /legacy/google-cloud/setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | 4 | [tool:pytest] 5 | addopts = --tb=native 6 | -------------------------------------------------------------------------------- /vision/tests/data/faces.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hc/google-cloud-python/master/vision/tests/data/faces.jpg -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- 1 | requirements_file: docs/requirements.txt 2 | build: 3 | image: latest 4 | python: 5 | version: 3.6 6 | -------------------------------------------------------------------------------- /bigquery/tests/data/colors.avro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hc/google-cloud-python/master/bigquery/tests/data/colors.avro -------------------------------------------------------------------------------- /docs/_static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hc/google-cloud-python/master/docs/_static/images/favicon.ico -------------------------------------------------------------------------------- /docs/_templates/autosummary/class.rst: -------------------------------------------------------------------------------- 1 | ../../../third_party/sphinx/sphinx/ext/autosummary/templates/autosummary/class.rst -------------------------------------------------------------------------------- /docs/_templates/autosummary/module.rst: -------------------------------------------------------------------------------- 1 | ../../../third_party/sphinx/sphinx/ext/autosummary/templates/autosummary/module.rst -------------------------------------------------------------------------------- /vision/tests/data/full-text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hc/google-cloud-python/master/vision/tests/data/full-text.jpg -------------------------------------------------------------------------------- /vision/tests/data/landmark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hc/google-cloud-python/master/vision/tests/data/landmark.jpg -------------------------------------------------------------------------------- /docs/core/retry.rst: -------------------------------------------------------------------------------- 1 | Retry 2 | ===== 3 | 4 | .. automodule:: google.api_core.retry 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/storage/acl.rst: -------------------------------------------------------------------------------- 1 | ACL 2 | ~~~ 3 | 4 | .. automodule:: google.cloud.storage.acl 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /third_party/sphinx/README.md: -------------------------------------------------------------------------------- 1 | Subset of [Sphinx](https://github.com/sphinx-doc/sphinx) to override built-in 2 | templates. 3 | -------------------------------------------------------------------------------- /docs/logging/sink.rst: -------------------------------------------------------------------------------- 1 | Sinks 2 | ===== 3 | 4 | .. automodule:: google.cloud.logging.sink 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/bigtable/table.rst: -------------------------------------------------------------------------------- 1 | Table 2 | ~~~~~ 3 | 4 | .. automodule:: google.cloud.bigtable.table 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/core/client.rst: -------------------------------------------------------------------------------- 1 | Base Client 2 | =========== 3 | 4 | .. automodule:: google.cloud.client 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/core/timeout.rst: -------------------------------------------------------------------------------- 1 | Timeout 2 | ======= 3 | 4 | .. automodule:: google.api_core.timeout 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/datastore/keys.rst: -------------------------------------------------------------------------------- 1 | Keys 2 | ~~~~ 3 | 4 | .. automodule:: google.cloud.datastore.key 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/bigtable/client.rst: -------------------------------------------------------------------------------- 1 | Client 2 | ~~~~~~ 3 | 4 | .. automodule:: google.cloud.bigtable.client 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/dns/changes.rst: -------------------------------------------------------------------------------- 1 | Change Sets 2 | ~~~~~~~~~~~ 3 | 4 | .. automodule:: google.cloud.dns.changes 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/dns/client.rst: -------------------------------------------------------------------------------- 1 | DNS Client 2 | ========== 3 | 4 | .. automodule:: google.cloud.dns.client 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/dns/zone.rst: -------------------------------------------------------------------------------- 1 | Managed Zones 2 | ~~~~~~~~~~~~~ 3 | 4 | .. automodule:: google.cloud.dns.zone 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/logging/entries.rst: -------------------------------------------------------------------------------- 1 | Entries 2 | ======= 3 | 4 | .. automodule:: google.cloud.logging.entries 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/logging/logger.rst: -------------------------------------------------------------------------------- 1 | Logger 2 | ====== 3 | 4 | .. automodule:: google.cloud.logging.logger 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/logging/metric.rst: -------------------------------------------------------------------------------- 1 | Metrics 2 | ======= 3 | 4 | .. automodule:: google.cloud.logging.metric 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/pubsub/types.rst: -------------------------------------------------------------------------------- 1 | Pub/Sub Client Types 2 | ==================== 3 | 4 | .. automodule:: google.cloud.pubsub_v1.types 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/storage/batch.rst: -------------------------------------------------------------------------------- 1 | Batches 2 | ~~~~~~~ 3 | 4 | .. automodule:: google.cloud.storage.batch 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /dlp/google/cloud/dlp_v2/proto/storage_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /docs/bigtable/cluster.rst: -------------------------------------------------------------------------------- 1 | Cluster 2 | ~~~~~~~ 3 | 4 | .. automodule:: google.cloud.bigtable.cluster 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/core/exceptions.rst: -------------------------------------------------------------------------------- 1 | Exceptions 2 | ========== 3 | 4 | .. automodule:: google.api_core.exceptions 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/datastore/batches.rst: -------------------------------------------------------------------------------- 1 | Batches 2 | ~~~~~~~ 3 | 4 | .. automodule:: google.cloud.datastore.batch 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/datastore/helpers.rst: -------------------------------------------------------------------------------- 1 | Helpers 2 | ~~~~~~~ 3 | 4 | .. automodule:: google.cloud.datastore.helpers 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/datastore/queries.rst: -------------------------------------------------------------------------------- 1 | Queries 2 | ~~~~~~~ 3 | 4 | .. automodule:: google.cloud.datastore.query 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/speech/gapic/v1/types.rst: -------------------------------------------------------------------------------- 1 | Speech Client Types 2 | =================== 3 | 4 | .. automodule:: google.cloud.speech_v1.types 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/vision/gapic/v1/types.rst: -------------------------------------------------------------------------------- 1 | Vision Client Types 2 | =================== 3 | 4 | .. automodule:: google.cloud.vision_v1.types 5 | :members: 6 | -------------------------------------------------------------------------------- /iot/google/cloud/iot_v1/proto/resources_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /trace/google/cloud/trace_v2/proto/trace_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /bigtable/google/cloud/bigtable_v2/proto/data_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /dlp/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | global-exclude *.py[co] 4 | global-exclude __pycache__ 5 | -------------------------------------------------------------------------------- /docs/bigtable/instance.rst: -------------------------------------------------------------------------------- 1 | Instance 2 | ~~~~~~~~ 3 | 4 | .. automodule:: google.cloud.bigtable.instance 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/bigtable/row-data.rst: -------------------------------------------------------------------------------- 1 | Row Data 2 | ~~~~~~~~ 3 | 4 | .. automodule:: google.cloud.bigtable.row_data 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/datastore/entities.rst: -------------------------------------------------------------------------------- 1 | Entities 2 | ~~~~~~~~ 3 | 4 | .. automodule:: google.cloud.datastore.entity 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/firestore/batch.rst: -------------------------------------------------------------------------------- 1 | Batches 2 | ~~~~~~~ 3 | 4 | .. automodule:: google.cloud.firestore_v1beta1.batch 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/firestore/client.rst: -------------------------------------------------------------------------------- 1 | Client 2 | ~~~~~~ 3 | 4 | .. automodule:: google.cloud.firestore_v1beta1.client 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/firestore/query.rst: -------------------------------------------------------------------------------- 1 | Queries 2 | ~~~~~~~ 3 | 4 | .. automodule:: google.cloud.firestore_v1beta1.query 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/spanner/batch-api.rst: -------------------------------------------------------------------------------- 1 | Batch API 2 | ========= 3 | 4 | .. automodule:: google.cloud.spanner_v1.batch 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/tests.binprotos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hc/google-cloud-python/master/firestore/tests/unit/testdata/tests.binprotos -------------------------------------------------------------------------------- /oslogin/google/cloud/oslogin_v1/proto/common_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /spanner/google/cloud/spanner_v1/proto/keys_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /spanner/google/cloud/spanner_v1/proto/mutation_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /spanner/google/cloud/spanner_v1/proto/type_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /storage/tests/data/five-point-one-mb-file.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hc/google-cloud-python/master/storage/tests/data/five-point-one-mb-file.zip -------------------------------------------------------------------------------- /tasks/google/cloud/tasks_v2beta2/proto/queue_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /tasks/google/cloud/tasks_v2beta2/proto/target_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /tasks/google/cloud/tasks_v2beta2/proto/task_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /vision/google/cloud/vision_v1/proto/geometry_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /bigtable/google/cloud/bigtable_admin_v2/proto/table_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /dataproc/google/cloud/dataproc_v1/proto/operations_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /datastore/google/cloud/datastore_v1/proto/entity_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /datastore/google/cloud/datastore_v1/proto/query_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /dns/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.pyc __pycache__ 5 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/test-suite.binproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hc/google-cloud-python/master/firestore/tests/unit/testdata/test-suite.binproto -------------------------------------------------------------------------------- /logging/google/cloud/logging_v2/proto/log_entry_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /monitoring/google/cloud/monitoring_v3/proto/alert_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /monitoring/google/cloud/monitoring_v3/proto/common_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /monitoring/google/cloud/monitoring_v3/proto/group_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /monitoring/google/cloud/monitoring_v3/proto/metric_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /monitoring/google/cloud/monitoring_v3/proto/uptime_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /spanner/google/cloud/spanner_v1/proto/query_plan_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /spanner/google/cloud/spanner_v1/proto/result_set_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /spanner/google/cloud/spanner_v1/proto/transaction_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /storage/tests/data/CloudPlatform_128px_Retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hc/google-cloud-python/master/storage/tests/data/CloudPlatform_128px_Retina.png -------------------------------------------------------------------------------- /vision/google/cloud/vision_v1/proto/text_annotation_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /vision/google/cloud/vision_v1/proto/web_detection_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /vision/google/cloud/vision_v1p1beta1/proto/geometry_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /vision/google/cloud/vision_v1p2beta1/proto/geometry_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /bigtable/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.pyc __pycache__ 5 | -------------------------------------------------------------------------------- /bigtable/google/cloud/bigtable_admin_v2/proto/common_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /bigtable/google/cloud/bigtable_admin_v2/proto/instance_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /datastore/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.pyc __pycache__ 5 | -------------------------------------------------------------------------------- /docs/bigquery/dbapi.rst: -------------------------------------------------------------------------------- 1 | DB-API Reference 2 | ~~~~~~~~~~~~~~~~ 3 | 4 | .. automodule:: google.cloud.bigquery.dbapi 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/core/page_iterator.rst: -------------------------------------------------------------------------------- 1 | Page Iterators 2 | ============== 3 | 4 | .. automodule:: google.api_core.page_iterator 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/core/path_template.rst: -------------------------------------------------------------------------------- 1 | Path Templates 2 | ============== 3 | 4 | .. automodule:: google.api_core.path_template 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/datastore/client.rst: -------------------------------------------------------------------------------- 1 | Datastore Client 2 | ================ 3 | 4 | .. automodule:: google.cloud.datastore.client 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/firestore/constants.rst: -------------------------------------------------------------------------------- 1 | Constants 2 | ~~~~~~~~~ 3 | 4 | .. automodule:: google.cloud.firestore_v1beta1.constants 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/firestore/document.rst: -------------------------------------------------------------------------------- 1 | Documents 2 | ~~~~~~~~~ 3 | 4 | .. automodule:: google.cloud.firestore_v1beta1.document 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/resource-manager/project.rst: -------------------------------------------------------------------------------- 1 | Projects 2 | ~~~~~~~~ 3 | 4 | .. automodule:: google.cloud.resource_manager.project 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/runtimeconfig/variable.rst: -------------------------------------------------------------------------------- 1 | Variables 2 | ~~~~~~~~~ 3 | 4 | .. automodule:: google.cloud.runtimeconfig.variable 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/speech/gapic/v1/api.rst: -------------------------------------------------------------------------------- 1 | Speech Client API 2 | ================= 3 | 4 | .. automodule:: google.cloud.speech_v1 5 | :members: 6 | :inherited-members: 7 | -------------------------------------------------------------------------------- /docs/vision/gapic/v1/api.rst: -------------------------------------------------------------------------------- 1 | Vision Client API 2 | ================= 3 | 4 | .. automodule:: google.cloud.vision_v1 5 | :members: 6 | :inherited-members: 7 | -------------------------------------------------------------------------------- /firestore/google/cloud/firestore_v1beta1/proto/common_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /firestore/google/cloud/firestore_v1beta1/proto/document_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /firestore/google/cloud/firestore_v1beta1/proto/query_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /firestore/google/cloud/firestore_v1beta1/proto/write_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /iot/docs/gapic/v1/types.rst: -------------------------------------------------------------------------------- 1 | Types for Cloud IoT API Client 2 | ============================== 3 | 4 | .. automodule:: google.cloud.iot_v1.types 5 | :members: -------------------------------------------------------------------------------- /language/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.pyc __pycache__ 5 | -------------------------------------------------------------------------------- /logging/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.pyc __pycache__ 5 | -------------------------------------------------------------------------------- /monitoring/google/cloud/monitoring_v3/proto/notification_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /pubsub/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.pyc __pycache__ 5 | -------------------------------------------------------------------------------- /spanner/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.pyc __pycache__ 5 | -------------------------------------------------------------------------------- /storage/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.pyc __pycache__ 5 | -------------------------------------------------------------------------------- /translate/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.pyc __pycache__ 5 | -------------------------------------------------------------------------------- /vision/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.pyc __pycache__ 5 | -------------------------------------------------------------------------------- /vision/google/cloud/vision_v1p1beta1/proto/web_detection_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /vision/google/cloud/vision_v1p2beta1/proto/web_detection_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /docs/runtimeconfig/config.rst: -------------------------------------------------------------------------------- 1 | Configuration 2 | ~~~~~~~~~~~~~ 3 | 4 | .. automodule:: google.cloud.runtimeconfig.config 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/spanner/client-api.rst: -------------------------------------------------------------------------------- 1 | Spanner Client 2 | ============== 3 | 4 | .. automodule:: google.cloud.spanner_v1.client 5 | :members: 6 | :show-inheritance: 7 | 8 | -------------------------------------------------------------------------------- /docs/spanner/gapic/v1/api.rst: -------------------------------------------------------------------------------- 1 | Spanner Client API 2 | ================== 3 | 4 | .. automodule:: google.cloud.spanner_v1 5 | :members: 6 | :inherited-members: 7 | -------------------------------------------------------------------------------- /docs/spanner/gapic/v1/types.rst: -------------------------------------------------------------------------------- 1 | Spanner Client Types 2 | =================================== 3 | 4 | .. automodule:: google.cloud.spanner_v1.types 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/spanner/keyset-api.rst: -------------------------------------------------------------------------------- 1 | Keyset API 2 | ========== 3 | 4 | .. automodule:: google.cloud.spanner_v1.keyset 5 | :members: 6 | :show-inheritance: 7 | 8 | 9 | -------------------------------------------------------------------------------- /docs/storage/buckets.rst: -------------------------------------------------------------------------------- 1 | Buckets 2 | ~~~~~~~ 3 | 4 | .. automodule:: google.cloud.storage.bucket 5 | :members: 6 | :inherited-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /firestore/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include unit_tests * 4 | global-exclude *.pyc __pycache__ 5 | -------------------------------------------------------------------------------- /firestore/google/cloud/firestore_v1beta1/proto/admin/index_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /monitoring/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.pyc __pycache__ 5 | -------------------------------------------------------------------------------- /monitoring/docs/query.rst: -------------------------------------------------------------------------------- 1 | Time Series Query 2 | ================= 3 | 4 | .. automodule:: google.cloud.monitoring_v3.query 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /monitoring/google/cloud/monitoring_v3/proto/mutation_record_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /runtimeconfig/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.pyc __pycache__ 5 | -------------------------------------------------------------------------------- /vision/google/cloud/vision_v1p1beta1/proto/text_annotation_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /vision/google/cloud/vision_v1p2beta1/proto/text_annotation_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /docs/bigtable/row.rst: -------------------------------------------------------------------------------- 1 | Bigtable Row 2 | ============ 3 | 4 | .. automodule:: google.cloud.bigtable.row 5 | :members: 6 | :show-inheritance: 7 | :inherited-members: 8 | -------------------------------------------------------------------------------- /docs/core/iam.rst: -------------------------------------------------------------------------------- 1 | Identity and Access Management 2 | ============================== 3 | 4 | .. automodule:: google.cloud.iam 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/core/operation.rst: -------------------------------------------------------------------------------- 1 | Long-Running Operations 2 | ======================= 3 | 4 | .. automodule:: google.api_core.operation 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/firestore/collection.rst: -------------------------------------------------------------------------------- 1 | Collections 2 | ~~~~~~~~~~~ 3 | 4 | .. automodule:: google.cloud.firestore_v1beta1.collection 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/language/gapic/v1/types.rst: -------------------------------------------------------------------------------- 1 | Natural Language Client Types 2 | ============================= 3 | 4 | .. automodule:: google.cloud.language_v1.types 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/pubsub/subscriber/api/futures.rst: -------------------------------------------------------------------------------- 1 | Futures 2 | ======= 3 | 4 | .. automodule:: google.cloud.pubsub_v1.subscriber.futures 5 | :members: 6 | :inherited-members: 7 | -------------------------------------------------------------------------------- /docs/spanner/database-api.rst: -------------------------------------------------------------------------------- 1 | Database API 2 | ============ 3 | 4 | .. automodule:: google.cloud.spanner_v1.database 5 | :members: 6 | :show-inheritance: 7 | 8 | 9 | -------------------------------------------------------------------------------- /docs/spanner/instance-api.rst: -------------------------------------------------------------------------------- 1 | Instance API 2 | ============ 3 | 4 | .. automodule:: google.cloud.spanner_v1.instance 5 | :members: 6 | :show-inheritance: 7 | 8 | 9 | -------------------------------------------------------------------------------- /docs/spanner/snapshot-api.rst: -------------------------------------------------------------------------------- 1 | Snapshot API 2 | ============ 3 | 4 | .. automodule:: google.cloud.spanner_v1.snapshot 5 | :members: 6 | :show-inheritance: 7 | 8 | 9 | -------------------------------------------------------------------------------- /error_reporting/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.pyc __pycache__ 5 | -------------------------------------------------------------------------------- /error_reporting/google/cloud/errorreporting_v1beta1/proto/common_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /iot/docs/gapic/v1/api.rst: -------------------------------------------------------------------------------- 1 | Client for Cloud IoT API 2 | ======================== 3 | 4 | .. automodule:: google.cloud.iot_v1 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /resource_manager/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.pyc __pycache__ 5 | -------------------------------------------------------------------------------- /bigquery_datatransfer/google/cloud/bigquery_datatransfer_v1/proto/transfer_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /bigtable/docs/gapic/v2/types.rst: -------------------------------------------------------------------------------- 1 | Types for Cloud Bigtable API Client 2 | =================================== 3 | 4 | .. automodule:: google.cloud.bigtable_v2.types 5 | :members: -------------------------------------------------------------------------------- /docs/logging/client.rst: -------------------------------------------------------------------------------- 1 | Stackdriver Logging Client 2 | ========================== 3 | 4 | .. automodule:: google.cloud.logging.client 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/pubsub/subscriber/api/scheduler.rst: -------------------------------------------------------------------------------- 1 | Scheduler 2 | ========= 3 | 4 | .. automodule:: google.cloud.pubsub_v1.subscriber.scheduler 5 | :members: 6 | :inherited-members: 7 | -------------------------------------------------------------------------------- /docs/storage/blobs.rst: -------------------------------------------------------------------------------- 1 | Blobs / Objects 2 | ~~~~~~~~~~~~~~~ 3 | 4 | .. automodule:: google.cloud.storage.blob 5 | :members: 6 | :inherited-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /firestore/google/cloud/firestore_v1beta1/proto/event_flow_document_change_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /iot/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.py[co] 5 | global-exclude __pycache__ 6 | -------------------------------------------------------------------------------- /oslogin/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.py[co] 5 | global-exclude __pycache__ 6 | -------------------------------------------------------------------------------- /redis/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.py[co] 5 | global-exclude __pycache__ 6 | -------------------------------------------------------------------------------- /speech/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.py[co] 5 | global-exclude __pycache__ 6 | -------------------------------------------------------------------------------- /tasks/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.py[co] 5 | global-exclude __pycache__ 6 | -------------------------------------------------------------------------------- /tasks/docs/gapic/v2beta2/types.rst: -------------------------------------------------------------------------------- 1 | Types for Cloud Tasks API Client 2 | ================================ 3 | 4 | .. automodule:: google.cloud.tasks_v2beta2.types 5 | :members: -------------------------------------------------------------------------------- /trace/docs/gapic/v1/types.rst: -------------------------------------------------------------------------------- 1 | Types for Stackdriver Trace API Client 2 | ====================================== 3 | 4 | .. automodule:: google.cloud.trace_v1.types 5 | :members: -------------------------------------------------------------------------------- /trace/docs/gapic/v2/types.rst: -------------------------------------------------------------------------------- 1 | Types for Stackdriver Trace API Client 2 | ====================================== 3 | 4 | .. automodule:: google.cloud.trace_v2.types 5 | :members: -------------------------------------------------------------------------------- /websecurityscanner/google/cloud/websecurityscanner_v1alpha/proto/crawled_url_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /websecurityscanner/google/cloud/websecurityscanner_v1alpha/proto/finding_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /websecurityscanner/google/cloud/websecurityscanner_v1alpha/proto/scan_config_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /websecurityscanner/google/cloud/websecurityscanner_v1alpha/proto/scan_run_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /container/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.py[co] 5 | global-exclude __pycache__ 6 | -------------------------------------------------------------------------------- /dataproc/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.py[co] 5 | global-exclude __pycache__ 6 | -------------------------------------------------------------------------------- /docs/dns/resource-record-set.rst: -------------------------------------------------------------------------------- 1 | Resource Record Sets 2 | ~~~~~~~~~~~~~~~~~~~~ 3 | 4 | .. automodule:: google.cloud.dns.resource_record_set 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/error-reporting/client.rst: -------------------------------------------------------------------------------- 1 | Error Reporting Client 2 | ======================= 3 | 4 | .. automodule:: google.cloud.error_reporting.client 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/firestore/types.rst: -------------------------------------------------------------------------------- 1 | Firestore Protobuf Types 2 | ~~~~~~~~~~~~~~~~~~~~~~~~ 3 | 4 | .. automodule:: google.cloud.firestore_v1beta1.types 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/language/gapic/v1/api.rst: -------------------------------------------------------------------------------- 1 | Natural Language Client API 2 | =========================== 3 | 4 | .. automodule:: google.cloud.language_v1 5 | :members: 6 | :inherited-members: 7 | -------------------------------------------------------------------------------- /docs/spanner/transaction-api.rst: -------------------------------------------------------------------------------- 1 | Transaction API 2 | =============== 3 | 4 | .. automodule:: google.cloud.spanner_v1.transaction 5 | :members: 6 | :show-inheritance: 7 | 8 | 9 | -------------------------------------------------------------------------------- /docs/speech/gapic/v1p1beta1/types.rst: -------------------------------------------------------------------------------- 1 | Types for Cloud Speech API Client 2 | ================================= 3 | 4 | .. automodule:: google.cloud.speech_v1p1beta1.types 5 | :members: -------------------------------------------------------------------------------- /tasks/docs/gapic/v2beta2/api.rst: -------------------------------------------------------------------------------- 1 | Client for Cloud Tasks API 2 | ========================== 3 | 4 | .. automodule:: google.cloud.tasks_v2beta2 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /texttospeech/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.py[co] 5 | global-exclude __pycache__ 6 | -------------------------------------------------------------------------------- /videointelligence/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE requirements.txt 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.pyc __pycache__ 5 | -------------------------------------------------------------------------------- /websecurityscanner/google/cloud/websecurityscanner_v1alpha/proto/finding_addon_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /bigtable/docs/gapic/v2/api.rst: -------------------------------------------------------------------------------- 1 | Client for Cloud Bigtable API 2 | ============================= 3 | 4 | .. automodule:: google.cloud.bigtable_v2 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /docs/datastore/transactions.rst: -------------------------------------------------------------------------------- 1 | Transactions 2 | ~~~~~~~~~~~~ 3 | 4 | .. automodule:: google.cloud.datastore.transaction 5 | :members: 6 | :show-inheritance: 7 | :inherited-members: 8 | -------------------------------------------------------------------------------- /docs/error-reporting/util.rst: -------------------------------------------------------------------------------- 1 | Error Reporting Utilities 2 | ========================= 3 | 4 | .. automodule:: google.cloud.error_reporting.util 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/language/gapic/v1beta2/types.rst: -------------------------------------------------------------------------------- 1 | Natural Language Beta Client Types 2 | ================================== 3 | 4 | .. automodule:: google.cloud.language_v1beta2.types 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/pubsub/publisher/api/client.rst: -------------------------------------------------------------------------------- 1 | Publisher Client API 2 | ==================== 3 | 4 | .. automodule:: google.cloud.pubsub_v1.publisher.client 5 | :members: 6 | :inherited-members: 7 | -------------------------------------------------------------------------------- /docs/spanner/streamed-api.rst: -------------------------------------------------------------------------------- 1 | StreamedResultSet API 2 | ===================== 3 | 4 | .. automodule:: google.cloud.spanner_v1.streamed 5 | :members: 6 | :show-inheritance: 7 | 8 | 9 | -------------------------------------------------------------------------------- /docs/translate/client.rst: -------------------------------------------------------------------------------- 1 | Translation Client 2 | ================== 3 | 4 | .. automodule:: google.cloud.translate_v2.client 5 | :members: 6 | :undoc-members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /logging/docs/gapic/v2/types.rst: -------------------------------------------------------------------------------- 1 | Types for Stackdriver Logging API Client 2 | ======================================== 3 | 4 | .. automodule:: google.cloud.logging_v2.types 5 | :members: -------------------------------------------------------------------------------- /oslogin/docs/gapic/v1/types.rst: -------------------------------------------------------------------------------- 1 | Types for Google Cloud OS Login API Client 2 | ========================================== 3 | 4 | .. automodule:: google.cloud.oslogin_v1.types 5 | :members: -------------------------------------------------------------------------------- /trace/docs/gapic/v1/api.rst: -------------------------------------------------------------------------------- 1 | Client for Stackdriver Trace API 2 | ================================ 3 | 4 | .. automodule:: google.cloud.trace_v1 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /trace/docs/gapic/v2/api.rst: -------------------------------------------------------------------------------- 1 | Client for Stackdriver Trace API 2 | ================================ 3 | 4 | .. automodule:: google.cloud.trace_v2 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /websecurityscanner/google/cloud/websecurityscanner_v1alpha/proto/finding_type_stats_pb2_grpc.py: -------------------------------------------------------------------------------- 1 | # Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! 2 | import grpc 3 | 4 | -------------------------------------------------------------------------------- /bigquery_datatransfer/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.py[co] 5 | global-exclude __pycache__ 6 | -------------------------------------------------------------------------------- /dataproc/docs/gapic/v1/types.rst: -------------------------------------------------------------------------------- 1 | Types for Google Cloud Dataproc API Client 2 | ========================================== 3 | 4 | .. automodule:: google.cloud.dataproc_v1.types 5 | :members: -------------------------------------------------------------------------------- /docs/core/operations_client.rst: -------------------------------------------------------------------------------- 1 | Long-Running Operations Client 2 | ============================== 3 | 4 | .. automodule:: google.api_core.operations_v1 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/pubsub/publisher/api/batch.rst: -------------------------------------------------------------------------------- 1 | :orphan: 2 | 3 | Batch API 4 | ========= 5 | 6 | .. automodule:: google.cloud.pubsub_v1.publisher.batch.thread 7 | :members: 8 | :inherited-members: 9 | -------------------------------------------------------------------------------- /docs/pubsub/subscriber/api/client.rst: -------------------------------------------------------------------------------- 1 | Subscriber Client API 2 | ===================== 3 | 4 | .. automodule:: google.cloud.pubsub_v1.subscriber.client 5 | :members: 6 | :inherited-members: 7 | -------------------------------------------------------------------------------- /docs/pubsub/subscriber/api/message.rst: -------------------------------------------------------------------------------- 1 | Messages 2 | ======== 3 | 4 | .. autoclass:: google.cloud.pubsub_v1.subscriber.message.Message 5 | :members: ack, attributes, data, nack, publish_time 6 | -------------------------------------------------------------------------------- /docs/runtimeconfig/client.rst: -------------------------------------------------------------------------------- 1 | Runtime Configuration Client 2 | ============================ 3 | 4 | .. automodule:: google.cloud.runtimeconfig.client 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/speech/gapic/v1p1beta1/api.rst: -------------------------------------------------------------------------------- 1 | Client for Cloud Speech API 2 | =========================== 3 | 4 | .. automodule:: google.cloud.speech_v1p1beta1 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /logging/docs/gapic/v2/api.rst: -------------------------------------------------------------------------------- 1 | Client for Stackdriver Logging API 2 | ================================== 3 | 4 | .. automodule:: google.cloud.logging_v2 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /websecurityscanner/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include google *.json *.proto 3 | recursive-include tests * 4 | global-exclude *.py[co] 5 | global-exclude __pycache__ 6 | -------------------------------------------------------------------------------- /container/docs/gapic/v1/types.rst: -------------------------------------------------------------------------------- 1 | Types for Google Container Engine API Client 2 | ============================================ 3 | 4 | .. automodule:: google.cloud.container_v1.types 5 | :members: -------------------------------------------------------------------------------- /dataproc/docs/gapic/v1/api.rst: -------------------------------------------------------------------------------- 1 | Client for Google Cloud Dataproc API 2 | ==================================== 3 | 4 | .. automodule:: google.cloud.dataproc_v1 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /datastore/docs/gapic/v1/types.rst: -------------------------------------------------------------------------------- 1 | Types for Google Cloud Datastore API Client 2 | =========================================== 3 | 4 | .. automodule:: google.cloud.datastore_v1.types 5 | :members: -------------------------------------------------------------------------------- /docs/firestore/transaction.rst: -------------------------------------------------------------------------------- 1 | Transactions 2 | ~~~~~~~~~~~~ 3 | 4 | .. automodule:: google.cloud.firestore_v1beta1.transaction 5 | :inherited-members: 6 | :members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /docs/logging/handlers.rst: -------------------------------------------------------------------------------- 1 | Python Logging Module Handler 2 | ============================== 3 | 4 | .. automodule:: google.cloud.logging.handlers.handlers 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/vision/gapic/v1p2beta1/types.rst: -------------------------------------------------------------------------------- 1 | Types for Google Cloud Vision API Client 2 | ======================================== 3 | 4 | .. automodule:: google.cloud.vision_v1p2beta1.types 5 | :members: -------------------------------------------------------------------------------- /monitoring/docs/gapic/v3/types.rst: -------------------------------------------------------------------------------- 1 | Types for Stackdriver Monitoring API Client 2 | =========================================== 3 | 4 | .. automodule:: google.cloud.monitoring_v3.types 5 | :members: -------------------------------------------------------------------------------- /oslogin/docs/gapic/v1/api.rst: -------------------------------------------------------------------------------- 1 | Client for Google Cloud OS Login API 2 | ==================================== 3 | 4 | .. automodule:: google.cloud.oslogin_v1 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /datastore/docs/gapic/v1/api.rst: -------------------------------------------------------------------------------- 1 | Client for Google Cloud Datastore API 2 | ===================================== 3 | 4 | .. automodule:: google.cloud.datastore_v1 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /dlp/docs/gapic/v2/types.rst: -------------------------------------------------------------------------------- 1 | Types for Cloud Data Loss Prevention (DLP) API Client 2 | ===================================================== 3 | 4 | .. automodule:: google.cloud.dlp_v2.types 5 | :members: -------------------------------------------------------------------------------- /docs/language/gapic/v1beta2/api.rst: -------------------------------------------------------------------------------- 1 | Natural Language Beta Client API 2 | ================================ 3 | 4 | .. automodule:: google.cloud.language_v1beta2 5 | :members: 6 | :inherited-members: 7 | -------------------------------------------------------------------------------- /docs/videointelligence/gapic/v1beta2/types.rst: -------------------------------------------------------------------------------- 1 | Video Intelligence Client Types 2 | =============================== 3 | 4 | .. automodule:: google.cloud.videointelligence_v1beta2.types 5 | :members: 6 | -------------------------------------------------------------------------------- /container/docs/gapic/v1/api.rst: -------------------------------------------------------------------------------- 1 | Client for Google Container Engine API 2 | ====================================== 3 | 4 | .. automodule:: google.cloud.container_v1 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /docs/spanner/gapic/v1/admin_database_types.rst: -------------------------------------------------------------------------------- 1 | Spanner Admin Database Client Types 2 | =================================== 3 | 4 | .. automodule:: google.cloud.spanner_admin_database_v1.types 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/spanner/gapic/v1/admin_instance_types.rst: -------------------------------------------------------------------------------- 1 | Spanner Admin Instance Client Types 2 | =================================== 3 | 4 | .. automodule:: google.cloud.spanner_admin_instance_v1.types 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/vision/gapic/v1p2beta1/api.rst: -------------------------------------------------------------------------------- 1 | Client for Google Cloud Vision API 2 | ================================== 3 | 4 | .. automodule:: google.cloud.vision_v1p2beta1 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /firestore/docs/gapic/v1beta1/types.rst: -------------------------------------------------------------------------------- 1 | Types for Google Cloud Firestore API Client 2 | =========================================== 3 | 4 | .. automodule:: google.cloud.firestore_v1beta1.types 5 | :members: -------------------------------------------------------------------------------- /monitoring/docs/gapic/v3/api.rst: -------------------------------------------------------------------------------- 1 | Client for Stackdriver Monitoring API 2 | ===================================== 3 | 4 | .. automodule:: google.cloud.monitoring_v3 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /texttospeech/docs/gapic/v1beta1/types.rst: -------------------------------------------------------------------------------- 1 | Types for Cloud Text-to-Speech API Client 2 | ========================================= 3 | 4 | .. automodule:: google.cloud.texttospeech_v1beta1.types 5 | :members: -------------------------------------------------------------------------------- /trace/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst LICENSE 2 | recursive-include tests * 3 | global-include google *.json *.proto 4 | graft google 5 | global-exclude *.py[co] 6 | global-exclude __pycache__ 7 | prune .tox 8 | -------------------------------------------------------------------------------- /container/google/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | import pkg_resources 3 | pkg_resources.declare_namespace(__name__) 4 | except ImportError: 5 | import pkgutil 6 | __path__ = pkgutil.extend_path(__path__, __name__) -------------------------------------------------------------------------------- /dataproc/google/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | import pkg_resources 3 | pkg_resources.declare_namespace(__name__) 4 | except ImportError: 5 | import pkgutil 6 | __path__ = pkgutil.extend_path(__path__, __name__) -------------------------------------------------------------------------------- /dlp/docs/gapic/v2/api.rst: -------------------------------------------------------------------------------- 1 | Client for Cloud Data Loss Prevention (DLP) API 2 | =============================================== 3 | 4 | .. automodule:: google.cloud.dlp_v2 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /dlp/google/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | import pkg_resources 3 | pkg_resources.declare_namespace(__name__) 4 | except ImportError: 5 | import pkgutil 6 | __path__ = pkgutil.extend_path(__path__, __name__) 7 | -------------------------------------------------------------------------------- /docs/videointelligence/gapic/v1beta1/types.rst: -------------------------------------------------------------------------------- 1 | Video Intelligence Beta 1 Client Types 2 | ====================================== 3 | 4 | .. automodule:: google.cloud.videointelligence_v1beta1.types 5 | :members: 6 | -------------------------------------------------------------------------------- /docs/videointelligence/gapic/v1beta2/api.rst: -------------------------------------------------------------------------------- 1 | Video Intelligence Client API 2 | ============================= 3 | 4 | .. automodule:: google.cloud.videointelligence_v1beta2 5 | :members: 6 | :inherited-members: 7 | -------------------------------------------------------------------------------- /firestore/docs/gapic/v1beta1/api.rst: -------------------------------------------------------------------------------- 1 | Client for Google Cloud Firestore API 2 | ===================================== 3 | 4 | .. automodule:: google.cloud.firestore_v1beta1 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /bigquery_datatransfer/docs/gapic/v1/types.rst: -------------------------------------------------------------------------------- 1 | Types for BigQuery Data Transfer API Client 2 | =========================================== 3 | 4 | .. automodule:: google.cloud.bigquery_datatransfer_v1.types 5 | :members: -------------------------------------------------------------------------------- /dataproc/google/cloud/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | import pkg_resources 3 | pkg_resources.declare_namespace(__name__) 4 | except ImportError: 5 | import pkgutil 6 | __path__ = pkgutil.extend_path(__path__, __name__) -------------------------------------------------------------------------------- /dlp/google/cloud/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | import pkg_resources 3 | pkg_resources.declare_namespace(__name__) 4 | except ImportError: 5 | import pkgutil 6 | __path__ = pkgutil.extend_path(__path__, __name__) 7 | -------------------------------------------------------------------------------- /docs/videointelligence/gapic/v1/types.rst: -------------------------------------------------------------------------------- 1 | Types for Cloud Video Intelligence API Client 2 | ============================================= 3 | 4 | .. automodule:: google.cloud.videointelligence_v1.types 5 | :members: -------------------------------------------------------------------------------- /iot/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | [PyPI History][1] 4 | 5 | [1]: https://pypi.org/project/google-cloud-iot/#history 6 | 7 | ## 0.1.0 8 | 9 | ### New Features 10 | - Add v1 Endpoint for IoT (#5355) 11 | 12 | -------------------------------------------------------------------------------- /spanner/google/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | import pkg_resources 3 | pkg_resources.declare_namespace(__name__) 4 | except ImportError: 5 | import pkgutil 6 | __path__ = pkgutil.extend_path(__path__, __name__) 7 | -------------------------------------------------------------------------------- /texttospeech/docs/gapic/v1beta1/api.rst: -------------------------------------------------------------------------------- 1 | Client for Cloud Text-to-Speech API 2 | =================================== 3 | 4 | .. automodule:: google.cloud.texttospeech_v1beta1 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /websecurityscanner/docs/gapic/v1alpha/types.rst: -------------------------------------------------------------------------------- 1 | Types for Web Security Scanner API Client 2 | ========================================= 3 | 4 | .. automodule:: google.cloud.websecurityscanner_v1alpha.types 5 | :members: -------------------------------------------------------------------------------- /bigtable/google/cloud/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | import pkg_resources 3 | pkg_resources.declare_namespace(__name__) 4 | except ImportError: 5 | import pkgutil 6 | __path__ = pkgutil.extend_path(__path__, __name__) 7 | -------------------------------------------------------------------------------- /container/google/cloud/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | import pkg_resources 3 | pkg_resources.declare_namespace(__name__) 4 | except ImportError: 5 | import pkgutil 6 | __path__ = pkgutil.extend_path(__path__, __name__) 7 | -------------------------------------------------------------------------------- /docs/resource-manager/client.rst: -------------------------------------------------------------------------------- 1 | .. toctree:: 2 | :maxdepth: 0 3 | :hidden: 4 | 5 | Client 6 | ------ 7 | 8 | .. automodule:: google.cloud.resource_manager.client 9 | :members: 10 | :show-inheritance: 11 | -------------------------------------------------------------------------------- /docs/spanner/gapic/v1/admin_database_api.rst: -------------------------------------------------------------------------------- 1 | Spanner Admin Database Client API 2 | ================================= 3 | 4 | .. automodule:: google.cloud.spanner_admin_database_v1 5 | :members: 6 | :inherited-members: 7 | -------------------------------------------------------------------------------- /docs/spanner/gapic/v1/admin_instance_api.rst: -------------------------------------------------------------------------------- 1 | Spanner Admin Instance Client API 2 | ================================= 3 | 4 | .. automodule:: google.cloud.spanner_admin_instance_v1 5 | :members: 6 | :inherited-members: 7 | -------------------------------------------------------------------------------- /docs/videointelligence/gapic/v1/api.rst: -------------------------------------------------------------------------------- 1 | Client for Cloud Video Intelligence API 2 | ======================================= 3 | 4 | .. automodule:: google.cloud.videointelligence_v1 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /redis/docs/gapic/v1beta1/types.rst: -------------------------------------------------------------------------------- 1 | Types for Google Cloud Memorystore for Redis API Client 2 | ======================================================= 3 | 4 | .. automodule:: google.cloud.redis_v1beta1.types 5 | :members: -------------------------------------------------------------------------------- /spanner/google/cloud/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | import pkg_resources 3 | pkg_resources.declare_namespace(__name__) 4 | except ImportError: 5 | import pkgutil 6 | __path__ = pkgutil.extend_path(__path__, __name__) 7 | -------------------------------------------------------------------------------- /tasks/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | [PyPI History][1] 4 | 5 | [1]: https://pypi.org/project/google-cloud-tasks/#history 6 | 7 | ## 0.1.0 8 | 9 | ### New Features 10 | - Add v2beta2 endpoint for Tasks 11 | 12 | -------------------------------------------------------------------------------- /bigquery_datatransfer/docs/gapic/v1/api.rst: -------------------------------------------------------------------------------- 1 | Client for BigQuery Data Transfer API 2 | ===================================== 3 | 4 | .. automodule:: google.cloud.bigquery_datatransfer_v1 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /bigquery_datatransfer/google/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | import pkg_resources 3 | pkg_resources.declare_namespace(__name__) 4 | except ImportError: 5 | import pkgutil 6 | __path__ = pkgutil.extend_path(__path__, __name__) -------------------------------------------------------------------------------- /docs/logging/handlers-app-engine.rst: -------------------------------------------------------------------------------- 1 | Google App Engine flexible Log Handler 2 | ====================================== 3 | 4 | .. automodule:: google.cloud.logging.handlers.app_engine 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/logging/transports-base.rst: -------------------------------------------------------------------------------- 1 | Python Logging Handler Sync Transport 2 | ====================================== 3 | 4 | .. automodule:: google.cloud.logging.handlers.transports.base 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/logging/transports-sync.rst: -------------------------------------------------------------------------------- 1 | Python Logging Handler Sync Transport 2 | ====================================== 3 | 4 | .. automodule:: google.cloud.logging.handlers.transports.sync 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /docs/videointelligence/gapic/v1beta1/api.rst: -------------------------------------------------------------------------------- 1 | Video Intelligence Beta 1 Client API 2 | ==================================== 3 | 4 | .. automodule:: google.cloud.videointelligence_v1beta1 5 | :members: 6 | :inherited-members: 7 | -------------------------------------------------------------------------------- /docs/videointelligence/gapic/v1p1beta1/types.rst: -------------------------------------------------------------------------------- 1 | Types for Cloud Video Intelligence API Client 2 | ============================================= 3 | 4 | .. automodule:: google.cloud.videointelligence_v1p1beta1.types 5 | :members: -------------------------------------------------------------------------------- /error_reporting/docs/gapic/v1beta1/types.rst: -------------------------------------------------------------------------------- 1 | Types for Stackdriver Error Reporting API Client 2 | ================================================ 3 | 4 | .. automodule:: google.cloud.errorreporting_v1beta1.types 5 | :members: -------------------------------------------------------------------------------- /redis/docs/gapic/v1beta1/api.rst: -------------------------------------------------------------------------------- 1 | Client for Google Cloud Memorystore for Redis API 2 | ================================================= 3 | 4 | .. automodule:: google.cloud.redis_v1beta1 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /websecurityscanner/docs/gapic/v1alpha/api.rst: -------------------------------------------------------------------------------- 1 | Client for Web Security Scanner API 2 | =================================== 3 | 4 | .. automodule:: google.cloud.websecurityscanner_v1alpha 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /dlp/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /dns/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /docs/logging/handlers-container-engine.rst: -------------------------------------------------------------------------------- 1 | Google Container Engine Log Handler 2 | =================================== 3 | 4 | .. automodule:: google.cloud.logging.handlers.container_engine 5 | :members: 6 | :show-inheritance: 7 | -------------------------------------------------------------------------------- /error_reporting/docs/gapic/v1beta1/api.rst: -------------------------------------------------------------------------------- 1 | Client for Stackdriver Error Reporting API 2 | ========================================== 3 | 4 | .. automodule:: google.cloud.errorreporting_v1beta1 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /logging/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /pubsub/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /redis/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /spanner/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /speech/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /storage/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /trace/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /vision/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /bigquery/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /bigquery_datatransfer/google/cloud/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | import pkg_resources 3 | pkg_resources.declare_namespace(__name__) 4 | except ImportError: 5 | import pkgutil 6 | __path__ = pkgutil.extend_path(__path__, __name__) 7 | -------------------------------------------------------------------------------- /bigtable/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /datastore/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /docs/videointelligence/gapic/v1p1beta1/api.rst: -------------------------------------------------------------------------------- 1 | Client for Cloud Video Intelligence API 2 | ======================================= 3 | 4 | .. automodule:: google.cloud.videointelligence_v1p1beta1 5 | :members: 6 | :inherited-members: -------------------------------------------------------------------------------- /firestore/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /language/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /monitoring/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /redis/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | [PyPI History][1] 4 | 5 | [1]: https://pypi.org/project/google-cloud-redis/#history 6 | 7 | ## 0.1.0 8 | 9 | ### New Features 10 | Initial version of Redis client library v1beta1. 11 | 12 | -------------------------------------------------------------------------------- /translate/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /error_reporting/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /resource_manager/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /runtimeconfig/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /websecurityscanner/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude = 3 | # Exclude generated code. 4 | **/proto/** 5 | **/gapic/** 6 | *_pb2.py 7 | 8 | # Standard linting exemptions. 9 | __pycache__, 10 | .git, 11 | *.pyc, 12 | conf.py 13 | -------------------------------------------------------------------------------- /websecurityscanner/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | [PyPI History][1] 4 | 5 | [1]: https://pypi.org/project/google-cloud-websecurityscanner/#history 6 | 7 | ## 0.1.0 8 | 9 | ### New Features 10 | - Add v1alpha1 websecurityscanner endpoint -------------------------------------------------------------------------------- /dns/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | fail_under = 100 6 | show_missing = True 7 | exclude_lines = 8 | # Re-enable the standard pragma 9 | pragma: NO COVER 10 | # Ignore debug-only repr 11 | def __repr__ 12 | -------------------------------------------------------------------------------- /docs/logging/transports-thread.rst: -------------------------------------------------------------------------------- 1 | Python Logging Handler Threaded Transport 2 | ========================================= 3 | 4 | 5 | .. automodule:: google.cloud.logging.handlers.transports.background_thread 6 | :members: 7 | :show-inheritance: 8 | -------------------------------------------------------------------------------- /logging/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | fail_under = 100 6 | show_missing = True 7 | exclude_lines = 8 | # Re-enable the standard pragma 9 | pragma: NO COVER 10 | # Ignore debug-only repr 11 | def __repr__ 12 | -------------------------------------------------------------------------------- /storage/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | fail_under = 100 6 | show_missing = True 7 | exclude_lines = 8 | # Re-enable the standard pragma 9 | pragma: NO COVER 10 | # Ignore debug-only repr 11 | def __repr__ 12 | -------------------------------------------------------------------------------- /texttospeech/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | [PyPI History][1] 4 | 5 | [1]: https://pypi.org/project/google-cloud-texttospeech/#history 6 | 7 | ## 0.1.0 8 | 9 | ### Interface additions 10 | 11 | - Added text-to-speech v1beta1. (#5049) 12 | 13 | -------------------------------------------------------------------------------- /trace/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | fail_under = 100 6 | show_missing = True 7 | exclude_lines = 8 | # Re-enable the standard pragma 9 | pragma: NO COVER 10 | # Ignore debug-only repr 11 | def __repr__ 12 | -------------------------------------------------------------------------------- /translate/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | fail_under = 100 6 | show_missing = True 7 | exclude_lines = 8 | # Re-enable the standard pragma 9 | pragma: NO COVER 10 | # Ignore debug-only repr 11 | def __repr__ 12 | -------------------------------------------------------------------------------- /runtimeconfig/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | fail_under = 100 6 | show_missing = True 7 | exclude_lines = 8 | # Re-enable the standard pragma 9 | pragma: NO COVER 10 | # Ignore debug-only repr 11 | def __repr__ 12 | -------------------------------------------------------------------------------- /error_reporting/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | fail_under = 100 6 | show_missing = True 7 | exclude_lines = 8 | # Re-enable the standard pragma 9 | pragma: NO COVER 10 | # Ignore debug-only repr 11 | def __repr__ 12 | -------------------------------------------------------------------------------- /resource_manager/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | fail_under = 100 6 | show_missing = True 7 | exclude_lines = 8 | # Re-enable the standard pragma 9 | pragma: NO COVER 10 | # Ignore debug-only repr 11 | def __repr__ 12 | -------------------------------------------------------------------------------- /docs/storage/client.rst: -------------------------------------------------------------------------------- 1 | Storage 2 | ======= 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | :hidden: 7 | 8 | blobs 9 | buckets 10 | acl 11 | batch 12 | changelog 13 | 14 | 15 | .. automodule:: google.cloud.storage.client 16 | :members: 17 | :show-inheritance: 18 | -------------------------------------------------------------------------------- /bigquery/benchmark/README.md: -------------------------------------------------------------------------------- 1 | # BigQuery Benchmark 2 | This directory contains benchmarks for BigQuery client. 3 | 4 | ## Usage 5 | `python benchmark.py queries.json` 6 | 7 | BigQuery service caches requests so the benchmark should be run 8 | at least twice, disregarding the first result. 9 | -------------------------------------------------------------------------------- /bigtable/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | omit = 6 | */_generated/*.py 7 | fail_under = 100 8 | show_missing = True 9 | exclude_lines = 10 | # Re-enable the standard pragma 11 | pragma: NO COVER 12 | # Ignore debug-only repr 13 | def __repr__ 14 | -------------------------------------------------------------------------------- /datastore/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | omit = 6 | _app_engine_key_pb2.py 7 | fail_under = 100 8 | show_missing = True 9 | exclude_lines = 10 | # Re-enable the standard pragma 11 | pragma: NO COVER 12 | # Ignore debug-only repr 13 | def __repr__ 14 | -------------------------------------------------------------------------------- /language/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | fail_under = 100 6 | show_missing = True 7 | exclude_lines = 8 | # Re-enable the standard pragma 9 | pragma: NO COVER 10 | # Ignore debug-only repr 11 | def __repr__ 12 | omit = 13 | */gapic/* 14 | */proto/* 15 | -------------------------------------------------------------------------------- /speech/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | fail_under = 100 6 | show_missing = True 7 | exclude_lines = 8 | # Re-enable the standard pragma 9 | pragma: NO COVER 10 | # Ignore debug-only repr 11 | def __repr__ 12 | omit = 13 | */gapic/* 14 | */proto/* 15 | -------------------------------------------------------------------------------- /api_core/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | import-order-style=google 3 | # Note: this forces all google imports to be in the third group. See 4 | # https://github.com/PyCQA/flake8-import-order/issues/111 5 | application-import-names=google 6 | exclude = 7 | __pycache__, 8 | .git, 9 | *.pyc, 10 | conf.py 11 | -------------------------------------------------------------------------------- /core/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | import-order-style=google 3 | # Note: this forces all google imports to be in the third group. See 4 | # https://github.com/PyCQA/flake8-import-order/issues/111 5 | application-import-names=google 6 | exclude = 7 | __pycache__, 8 | .git, 9 | *.pyc, 10 | conf.py 11 | -------------------------------------------------------------------------------- /redis/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | fail_under = 100 6 | show_missing = True 7 | exclude_lines = 8 | # Re-enable the standard pragma 9 | pragma: NO COVER 10 | # Ignore debug-only repr 11 | def __repr__ 12 | omit = 13 | */gapic/*.py 14 | */proto/*.py 15 | -------------------------------------------------------------------------------- /spanner/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | fail_under = 100 6 | show_missing = True 7 | exclude_lines = 8 | # Re-enable the standard pragma 9 | pragma: NO COVER 10 | # Ignore debug-only repr 11 | def __repr__ 12 | omit = 13 | */gapic/*.py 14 | */proto/*.py 15 | -------------------------------------------------------------------------------- /websecurityscanner/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | fail_under = 100 6 | show_missing = True 7 | exclude_lines = 8 | # Re-enable the standard pragma 9 | pragma: NO COVER 10 | # Ignore debug-only repr 11 | def __repr__ 12 | omit = 13 | */gapic/* 14 | */proto/* 15 | -------------------------------------------------------------------------------- /docs/spanner/session-api.rst: -------------------------------------------------------------------------------- 1 | Session API 2 | =========== 3 | 4 | .. automodule:: google.cloud.spanner_v1.session 5 | :members: 6 | :show-inheritance: 7 | 8 | 9 | Session Pools API 10 | ================= 11 | 12 | .. automodule:: google.cloud.spanner_v1.pool 13 | :members: 14 | :show-inheritance: 15 | 16 | -------------------------------------------------------------------------------- /api_core/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | fail_under = 100 6 | show_missing = True 7 | exclude_lines = 8 | # Re-enable the standard pragma 9 | pragma: NO COVER 10 | # Ignore debug-only repr 11 | def __repr__ 12 | # Ignore abstract methods 13 | raise NotImplementedError 14 | -------------------------------------------------------------------------------- /bigquery/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | fail_under = 100 6 | show_missing = True 7 | exclude_lines = 8 | # Re-enable the standard pragma 9 | pragma: NO COVER 10 | # Ignore debug-only repr 11 | def __repr__ 12 | # Ignore abstract methods 13 | raise NotImplementedError 14 | -------------------------------------------------------------------------------- /docs/trace/apis.rst: -------------------------------------------------------------------------------- 1 | API Reference 2 | ============= 3 | 4 | APIs 5 | ---- 6 | 7 | .. autosummary:: 8 | 9 | .. :toctree:: 10 | 11 | google.cloud.trace_v1.gapic.trace_service_client 12 | 13 | 14 | API types 15 | ~~~~~~~~~ 16 | 17 | .. autosummary:: 18 | .. :toctree:: 19 | 20 | google.cloud.trace_v1.gapic.enums 21 | -------------------------------------------------------------------------------- /appveyor/requirements.txt: -------------------------------------------------------------------------------- 1 | # Install the build dependencies of the project. If some dependencies contain 2 | # compiled extensions and are not provided as pre-built wheel packages, 3 | # pip will build them from source using the MSVC compiler matching the 4 | # target Python version and architecture 5 | wheel 6 | nox-automation>=0.17.0 7 | -------------------------------------------------------------------------------- /dlp/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | omit = 4 | */gapic/* 5 | */proto/* 6 | 7 | [report] 8 | fail_under = 100 9 | show_missing = True 10 | exclude_lines = 11 | # Re-enable the standard pragma 12 | pragma: NO COVER 13 | # Ignore debug-only repr 14 | def __repr__ 15 | omit = 16 | */gapic/* 17 | */proto/* 18 | -------------------------------------------------------------------------------- /vision/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | fail_under = 100 6 | show_missing = True 7 | exclude_lines = 8 | # Re-enable the standard pragma 9 | pragma: NO COVER 10 | # Ignore debug-only repr 11 | def __repr__ 12 | omit = 13 | google/cloud/vision_v1/gapic/*.py 14 | google/cloud/vision_v1/proto/*.py 15 | -------------------------------------------------------------------------------- /monitoring/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | omit = 6 | */gapic/* 7 | */proto/* 8 | show_missing = True 9 | 10 | exclude_lines = 11 | # Re-enable the standard pragma 12 | pragma: NO COVER 13 | # Ignore debug-only repr 14 | def __repr__ 15 | # Ignore abstract methods 16 | raise NotImplementedError 17 | -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- 1 | @import url('https://fonts.googleapis.com/css?family=Roboto|Roboto+Mono'); 2 | 3 | @media screen and (min-width: 1080px) { 4 | div.document { 5 | width: 1040px; 6 | } 7 | } 8 | 9 | code.descname { 10 | color: #4885ed; 11 | } 12 | 13 | th.field-name { 14 | min-width: 100px; 15 | color: #3cba54; 16 | } 17 | -------------------------------------------------------------------------------- /oslogin/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | [PyPI History][1] 4 | 5 | [1]: https://pypi.org/project/google-cloud-oslogin/#history 6 | 7 | ## 0.1.1 8 | 9 | ### Dependencies 10 | 11 | - Update dependency range for api-core to include v1.0.0 releases (#4944) 12 | 13 | ### Testing and internal changes 14 | 15 | - Normalize all setup.py files (#4909) 16 | 17 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/set-3.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # Empty fields are not allowed. 5 | 6 | description: "empty field" 7 | set: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | json_data: "{\"\": 1}" 10 | is_error: true 11 | > 12 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/create-3.textproto.failed: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # Empty fields are not allowed. 5 | 6 | description: "empty field" 7 | create: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | json_data: "{\"\": 1}" 10 | is_error: true 11 | > 12 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-7.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # It is a client-side error to call Update with empty data. 5 | 6 | description: "no paths" 7 | update_paths: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | is_error: true 10 | > 11 | -------------------------------------------------------------------------------- /firestore/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | omit = 6 | */firestore_v1beta1/proto/*_pb2.py 7 | */firestore_v1beta1/proto/*_pb2_grpc.py 8 | */firestore_v1beta1/gapic/*.py 9 | fail_under = 100 10 | show_missing = True 11 | exclude_lines = 12 | # Re-enable the standard pragma 13 | pragma: NO COVER 14 | # Ignore debug-only repr 15 | def __repr__ 16 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-7.textproto.failed: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # It is a client-side error to call Update with empty data. 5 | 6 | description: "no paths" 7 | update: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | json_data: "{}" 10 | is_error: true 11 | > 12 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-8.textproto.failed: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # Empty fields are not allowed. 5 | 6 | description: "empty field path component" 7 | update: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | json_data: "{\"a..b\": 1}" 10 | is_error: true 11 | > 12 | -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | omit = 6 | */_generated/*.py 7 | # Packages in the "google.cloud" package that we don't own. 8 | */google/cloud/gapic/* 9 | */google/cloud/grpc/* 10 | */google/cloud/proto/* 11 | show_missing = True 12 | exclude_lines = 13 | # Re-enable the standard pragma 14 | pragma: NO COVER 15 | # Ignore debug-only repr 16 | def __repr__ 17 | -------------------------------------------------------------------------------- /dataproc/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | [PyPI History][1] 4 | 5 | [1]: https://pypi.org/project/google-cloud-dataproc/#history 6 | 7 | ## 0.1.1 8 | 9 | ### Dependencies 10 | 11 | - Update dependency range for api-core to include v1.0.0 releases (#4944) 12 | 13 | ### Testing and internal changes 14 | 15 | - Re-enable lint for tests, remove usage of pylint (#4921) 16 | - Normalize all setup.py files (#4909) 17 | 18 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/get-1.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # A call to DocumentRef.Get. 5 | 6 | description: "Get a document" 7 | get: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | request: < 10 | name: "projects/projectID/databases/(default)/documents/C/d" 11 | > 12 | > 13 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-10.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # In the input data, one field cannot be a prefix of another. 5 | 6 | description: "prefix #2" 7 | update: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | json_data: "{\"a\": 1, \"a.b\": 2}" 10 | is_error: true 11 | > 12 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-9.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # In the input data, one field cannot be a prefix of another. 5 | 6 | description: "prefix #1" 7 | update: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | json_data: "{\"a.b\": 1, \"a\": 2}" 10 | is_error: true 11 | > 12 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-24.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # A FieldPath of length zero is invalid. 5 | 6 | description: "empty field path" 7 | update_paths: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | field_paths: < 10 | > 11 | json_values: "1" 12 | is_error: true 13 | > 14 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-3.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # Empty fields are not allowed. 5 | 6 | description: "empty field" 7 | update_paths: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | field_paths: < 10 | field: "" 11 | > 12 | json_values: "1" 13 | is_error: true 14 | > 15 | -------------------------------------------------------------------------------- /pubsub/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | source = 4 | google.cloud.pubsub 5 | google.cloud.pubsub_v1 6 | tests.unit 7 | 8 | [report] 9 | omit = 10 | */gapic/* 11 | */proto/* 12 | show_missing = True 13 | 14 | exclude_lines = 15 | # Re-enable the standard pragma 16 | pragma: NO COVER 17 | # Ignore debug-only repr 18 | def __repr__ 19 | # Ignore abstract methods 20 | raise NotImplementedError 21 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-11.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The Delete sentinel must be the value of a top-level key. 5 | 6 | description: "Delete cannot be nested" 7 | update: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | json_data: "{\"a\": {\"b\": \"Delete\"}}" 10 | is_error: true 11 | > 12 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/set-6.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The Delete sentinel cannot be used in Create, or in Set without a Merge option. 5 | 6 | description: "Delete cannot appear in data" 7 | set: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | json_data: "{\"a\": 1, \"b\": \"Delete\"}" 10 | is_error: true 11 | > 12 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/create-6.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The Delete sentinel cannot be used in Create, or in Set without a Merge option. 5 | 6 | description: "Delete cannot appear in data" 7 | create: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | json_data: "{\"a\": 1, \"b\": \"Delete\"}" 10 | is_error: true 11 | > 12 | -------------------------------------------------------------------------------- /core/.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = True 3 | 4 | [report] 5 | omit = 6 | google/cloud/_testing.py 7 | google/cloud/__init__.py 8 | google/cloud/environment_vars.py 9 | fail_under = 100 10 | show_missing = True 11 | exclude_lines = 12 | # Re-enable the standard pragma 13 | pragma: NO COVER 14 | # Ignore debug-only repr 15 | def __repr__ 16 | # Ignore abstract methods 17 | raise NotImplementedError 18 | raise NotImplementedError() 19 | -------------------------------------------------------------------------------- /docs/runtimeconfig/usage.rst: -------------------------------------------------------------------------------- 1 | Runtimeconfig 2 | ============= 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | :hidden: 7 | 8 | client 9 | config 10 | variable 11 | 12 | Modules 13 | ------- 14 | 15 | .. automodule:: google.cloud.runtimeconfig 16 | :members: 17 | :show-inheritance: 18 | 19 | Changelog 20 | --------- 21 | 22 | For a list of all ``google-cloud-runtimeconfig`` releases: 23 | 24 | .. toctree:: 25 | :maxdepth: 2 26 | 27 | changelog 28 | 29 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-8.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # Empty fields are not allowed. 5 | 6 | description: "empty field path component" 7 | update_paths: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | field_paths: < 10 | field: "*" 11 | field: "" 12 | > 13 | json_values: "1" 14 | is_error: true 15 | > 16 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-no-paths.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # It is a client-side error to call Update with empty data. 5 | 6 | description: "update-paths: no paths" 7 | update_paths: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | is_error: true 10 | > 11 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-no-paths.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # It is a client-side error to call Update with empty data. 5 | 6 | description: "update: no paths" 7 | update: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | json_data: "{}" 10 | is_error: true 11 | > 12 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-fp-empty-component.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # Empty fields are not allowed. 5 | 6 | description: "update: empty field path component" 7 | update: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | json_data: "{\"a..b\": 1}" 10 | is_error: true 11 | > 12 | -------------------------------------------------------------------------------- /docs/core/helpers.rst: -------------------------------------------------------------------------------- 1 | Helpers 2 | ======= 3 | 4 | 5 | General Helpers 6 | --------------- 7 | 8 | .. automodule:: google.api_core.general_helpers 9 | :members: 10 | :show-inheritance: 11 | 12 | 13 | Datetime Helpers 14 | ---------------- 15 | 16 | .. automodule:: google.api_core.datetime_helpers 17 | :members: 18 | :show-inheritance: 19 | 20 | 21 | gRPC Helpers 22 | ------------ 23 | 24 | .. automodule:: google.api_core.grpc_helpers 25 | :members: 26 | :show-inheritance: 27 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/get-basic.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # A call to DocumentRef.Get. 5 | 6 | description: "get: get a document" 7 | get: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | request: < 10 | name: "projects/projectID/databases/(default)/documents/C/d" 11 | > 12 | > 13 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-11.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The Delete sentinel must be the value of a top-level key. 5 | 6 | description: "Delete cannot be nested" 7 | update_paths: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | field_paths: < 10 | field: "a" 11 | > 12 | json_values: "{\"b\": \"Delete\"}" 13 | is_error: true 14 | > 15 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-12.textproto.failed: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The Update method does not support an explicit exists precondition. 5 | 6 | description: "Exists precondition is invalid" 7 | update: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | precondition: < 10 | exists: true 11 | > 12 | json_data: "{\"a\": 1}" 13 | is_error: true 14 | > 15 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-25.textproto.failed: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The keys of the data given to Update are interpreted, unlike those of Create and 5 | # Set. They cannot contain special characters. 6 | 7 | description: "invalid character" 8 | update: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | json_data: "{\"a~b\": 1}" 11 | is_error: true 12 | > 13 | -------------------------------------------------------------------------------- /docs/datastore/usage.rst: -------------------------------------------------------------------------------- 1 | Datastore 2 | ========= 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | :hidden: 7 | 8 | client 9 | entities 10 | keys 11 | queries 12 | transactions 13 | batches 14 | helpers 15 | 16 | Modules 17 | ------- 18 | 19 | .. automodule:: google.cloud.datastore 20 | :members: 21 | :show-inheritance: 22 | 23 | Changelog 24 | --------- 25 | 26 | For a list of all ``google-cloud-datastore`` releases: 27 | 28 | .. toctree:: 29 | :maxdepth: 2 30 | 31 | changelog 32 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-prefix-1.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # In the input data, one field cannot be a prefix of another. 5 | 6 | description: "update: prefix #1" 7 | update: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | json_data: "{\"a.b\": 1, \"a\": 2}" 10 | is_error: true 11 | > 12 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-prefix-2.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # In the input data, one field cannot be a prefix of another. 5 | 6 | description: "update: prefix #2" 7 | update: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | json_data: "{\"a\": 1, \"a.b\": 2}" 10 | is_error: true 11 | > 12 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/set-11.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The ServerTimestamp sentinel must be the value of a field. Firestore transforms 5 | # don't support array indexing. 6 | 7 | description: "ServerTimestamp cannot be in an array value" 8 | set: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | json_data: "{\"a\": [1, 2, \"ServerTimestamp\"]}" 11 | is_error: true 12 | > 13 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-fp-empty.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # A FieldPath of length zero is invalid. 5 | 6 | description: "update-paths: empty field path" 7 | update_paths: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | field_paths: < 10 | > 11 | json_values: "1" 12 | is_error: true 13 | > 14 | -------------------------------------------------------------------------------- /docs/firestore/index.rst: -------------------------------------------------------------------------------- 1 | Firestore 2 | --------- 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | :hidden: 7 | 8 | constants 9 | client 10 | collection 11 | document 12 | query 13 | batch 14 | transaction 15 | types 16 | changelog 17 | 18 | .. automodule:: google.cloud.firestore_v1beta1 19 | .. autoclass:: google.cloud.firestore_v1beta1.GeoPoint 20 | :members: 21 | :show-inheritance: 22 | .. autoexception:: google.cloud.firestore_v1beta1.ReadAfterWriteError 23 | :members: 24 | :show-inheritance: 25 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/create-11.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The ServerTimestamp sentinel must be the value of a field. Firestore transforms 5 | # don't support array indexing. 6 | 7 | description: "ServerTimestamp cannot be in an array value" 8 | create: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | json_data: "{\"a\": [1, 2, \"ServerTimestamp\"]}" 11 | is_error: true 12 | > 13 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-17.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The ServerTimestamp sentinel must be the value of a field. Firestore transforms 5 | # don't support array indexing. 6 | 7 | description: "ServerTimestamp cannot be in an array value" 8 | update: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | json_data: "{\"a\": [1, 2, \"ServerTimestamp\"]}" 11 | is_error: true 12 | > 13 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-del-nested.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The Delete sentinel must be the value of a top-level key. 5 | 6 | description: "update: Delete cannot be nested" 7 | update: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | json_data: "{\"a\": {\"b\": \"Delete\"}}" 10 | is_error: true 11 | > 12 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/delete-1.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # An ordinary Delete call. 5 | 6 | description: "delete without precondition" 7 | delete: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | request: < 10 | database: "projects/projectID/databases/(default)" 11 | writes: < 12 | delete: "projects/projectID/databases/(default)/documents/C/d" 13 | > 14 | > 15 | > 16 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/set-nodel.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The Delete sentinel cannot be used in Create, or in Set without a Merge option. 5 | 6 | description: "set: Delete cannot appear in data" 7 | set: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | json_data: "{\"a\": 1, \"b\": \"Delete\"}" 10 | is_error: true 11 | > 12 | -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | setuptools >= 36.4.0 2 | sphinx >= 1.6.3 3 | ipython >= 4 4 | recommonmark >= 0.4.0 5 | 6 | api_core/ 7 | core/ 8 | storage/ 9 | bigquery/ 10 | bigquery_datatransfer/ 11 | bigtable/ 12 | container/ 13 | dataproc/ 14 | datastore/ 15 | dlp/ 16 | dns/ 17 | firestore/ 18 | language/ 19 | logging/ 20 | error_reporting/ 21 | monitoring/ 22 | pubsub/ 23 | oslogin/ 24 | redis/ 25 | resource_manager/ 26 | runtimeconfig/ 27 | spanner/ 28 | speech/ 29 | texttospeech/ 30 | trace/ 31 | translate/ 32 | videointelligence/ 33 | vision/ 34 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/create-nodel.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The Delete sentinel cannot be used in Create, or in Set without a Merge option. 5 | 6 | description: "create: Delete cannot appear in data" 7 | create: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | json_data: "{\"a\": 1, \"b\": \"Delete\"}" 10 | is_error: true 11 | > 12 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-12.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The Update method does not support an explicit exists precondition. 5 | 6 | description: "Exists precondition is invalid" 7 | update_paths: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | precondition: < 10 | exists: true 11 | > 12 | field_paths: < 13 | field: "a" 14 | > 15 | json_values: "1" 16 | is_error: true 17 | > 18 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-10.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # In the input data, one field cannot be a prefix of another. 5 | 6 | description: "prefix #2" 7 | update_paths: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | field_paths: < 10 | field: "a" 11 | > 12 | field_paths: < 13 | field: "a" 14 | field: "b" 15 | > 16 | json_values: "1" 17 | json_values: "2" 18 | is_error: true 19 | > 20 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-9.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # In the input data, one field cannot be a prefix of another. 5 | 6 | description: "prefix #1" 7 | update_paths: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | field_paths: < 10 | field: "a" 11 | field: "b" 12 | > 13 | field_paths: < 14 | field: "a" 15 | > 16 | json_values: "1" 17 | json_values: "2" 18 | is_error: true 19 | > 20 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-fp-empty-component.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # Empty fields are not allowed. 5 | 6 | description: "update-paths: empty field path component" 7 | update_paths: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | field_paths: < 10 | field: "*" 11 | field: "" 12 | > 13 | json_values: "1" 14 | is_error: true 15 | > 16 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-prefix-3.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # In the input data, one field cannot be a prefix of another, even if the values 5 | # could in principle be combined. 6 | 7 | description: "update: prefix #3" 8 | update: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | json_data: "{\"a\": {\"b\": 1}, \"a.d\": 2}" 11 | is_error: true 12 | > 13 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-badchar.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The keys of the data given to Update are interpreted, unlike those of Create and 5 | # Set. They cannot contain special characters. 6 | 7 | description: "update: invalid character" 8 | update: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | json_data: "{\"a~b\": 1}" 11 | is_error: true 12 | > 13 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/set-13.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The Delete sentinel must be the value of a field. Deletes are implemented by 5 | # turning the path to the Delete sentinel into a FieldPath, and FieldPaths do not 6 | # support array indexing. 7 | 8 | description: "Delete cannot be in an array value" 9 | set: < 10 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 11 | json_data: "{\"a\": [1, 2, \"Delete\"]}" 12 | is_error: true 13 | > 14 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-exists-precond.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The Update method does not support an explicit exists precondition. 5 | 6 | description: "update: Exists precondition is invalid" 7 | update: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | precondition: < 10 | exists: true 11 | > 12 | json_data: "{\"a\": 1}" 13 | is_error: true 14 | > 15 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/create-13.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The Delete sentinel must be the value of a field. Deletes are implemented by 5 | # turning the path to the Delete sentinel into a FieldPath, and FieldPaths do not 6 | # support array indexing. 7 | 8 | description: "Delete cannot be in an array value" 9 | create: < 10 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 11 | json_data: "{\"a\": [1, 2, \"Delete\"]}" 12 | is_error: true 13 | > 14 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-19.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The Delete sentinel must be the value of a field. Deletes are implemented by 5 | # turning the path to the Delete sentinel into a FieldPath, and FieldPaths do not 6 | # support array indexing. 7 | 8 | description: "Delete cannot be in an array value" 9 | update: < 10 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 11 | json_data: "{\"a\": [1, 2, \"Delete\"]}" 12 | is_error: true 13 | > 14 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-17.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The ServerTimestamp sentinel must be the value of a field. Firestore transforms 5 | # don't support array indexing. 6 | 7 | description: "ServerTimestamp cannot be in an array value" 8 | update_paths: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | field_paths: < 11 | field: "a" 12 | > 13 | json_values: "[1, 2, \"ServerTimestamp\"]" 14 | is_error: true 15 | > 16 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-del-nested.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The Delete sentinel must be the value of a top-level key. 5 | 6 | description: "update-paths: Delete cannot be nested" 7 | update_paths: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | field_paths: < 10 | field: "a" 11 | > 12 | json_values: "{\"b\": \"Delete\"}" 13 | is_error: true 14 | > 15 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/set-12.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # There cannot be an array value anywhere on the path from the document root to 5 | # the ServerTimestamp sentinel. Firestore transforms don't support array indexing. 6 | 7 | description: "ServerTimestamp cannot be anywhere inside an array value" 8 | set: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | json_data: "{\"a\": [1, {\"b\": \"ServerTimestamp\"}]}" 11 | is_error: true 12 | > 13 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/create-12.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # There cannot be an array value anywhere on the path from the document root to 5 | # the ServerTimestamp sentinel. Firestore transforms don't support array indexing. 6 | 7 | description: "ServerTimestamp cannot be anywhere inside an array value" 8 | create: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | json_data: "{\"a\": [1, {\"b\": \"ServerTimestamp\"}]}" 11 | is_error: true 12 | > 13 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/query-invalid-path-select.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The path has an empty component. 5 | 6 | description: "query: invalid path in Where clause" 7 | query: < 8 | coll_path: "projects/projectID/databases/(default)/documents/C" 9 | clauses: < 10 | select: < 11 | fields: < 12 | field: "*" 13 | field: "" 14 | > 15 | > 16 | > 17 | is_error: true 18 | > 19 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-18.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # There cannot be an array value anywhere on the path from the document root to 5 | # the ServerTimestamp sentinel. Firestore transforms don't support array indexing. 6 | 7 | description: "ServerTimestamp cannot be anywhere inside an array value" 8 | update: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | json_data: "{\"a\": [1, {\"b\": \"ServerTimestamp\"}]}" 11 | is_error: true 12 | > 13 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/set-14.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The Delete sentinel must be the value of a field. Deletes are implemented by 5 | # turning the path to the Delete sentinel into a FieldPath, and FieldPaths do not 6 | # support array indexing. 7 | 8 | description: "Delete cannot be anywhere inside an array value" 9 | set: < 10 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 11 | json_data: "{\"a\": [1, {\"b\": \"Delete\"}]}" 12 | is_error: true 13 | > 14 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/set-st-noarray.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The ServerTimestamp sentinel must be the value of a field. Firestore transforms 5 | # don't support array indexing. 6 | 7 | description: "set: ServerTimestamp cannot be in an array value" 8 | set: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | json_data: "{\"a\": [1, 2, \"ServerTimestamp\"]}" 11 | is_error: true 12 | > 13 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/create-14.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The Delete sentinel must be the value of a field. Deletes are implemented by 5 | # turning the path to the Delete sentinel into a FieldPath, and FieldPaths do not 6 | # support array indexing. 7 | 8 | description: "Delete cannot be anywhere inside an array value" 9 | create: < 10 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 11 | json_data: "{\"a\": [1, {\"b\": \"Delete\"}]}" 12 | is_error: true 13 | > 14 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/set-25.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The client signals an error if a merge option mentions a path that is not in the 5 | # input data. 6 | 7 | description: "Merge fields must all be present in data" 8 | set: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | option: < 11 | fields: < 12 | field: "b" 13 | > 14 | fields: < 15 | field: "a" 16 | > 17 | > 18 | json_data: "{\"a\": 1}" 19 | is_error: true 20 | > 21 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-20.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The Delete sentinel must be the value of a field. Deletes are implemented by 5 | # turning the path to the Delete sentinel into a FieldPath, and FieldPaths do not 6 | # support array indexing. 7 | 8 | description: "Delete cannot be anywhere inside an array value" 9 | update: < 10 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 11 | json_data: "{\"a\": [1, {\"b\": \"Delete\"}]}" 12 | is_error: true 13 | > 14 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/create-st-noarray.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The ServerTimestamp sentinel must be the value of a field. Firestore transforms 5 | # don't support array indexing. 6 | 7 | description: "create: ServerTimestamp cannot be in an array value" 8 | create: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | json_data: "{\"a\": [1, 2, \"ServerTimestamp\"]}" 11 | is_error: true 12 | > 13 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-25.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The same field cannot occur more than once. 5 | 6 | description: "duplicate field path" 7 | update_paths: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | field_paths: < 10 | field: "a" 11 | > 12 | field_paths: < 13 | field: "b" 14 | > 15 | field_paths: < 16 | field: "a" 17 | > 18 | json_values: "1" 19 | json_values: "2" 20 | json_values: "3" 21 | is_error: true 22 | > 23 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-st-noarray.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The ServerTimestamp sentinel must be the value of a field. Firestore transforms 5 | # don't support array indexing. 6 | 7 | description: "update: ServerTimestamp cannot be in an array value" 8 | update: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | json_data: "{\"a\": [1, 2, \"ServerTimestamp\"]}" 11 | is_error: true 12 | > 13 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/delete-no-precond.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # An ordinary Delete call. 5 | 6 | description: "delete: delete without precondition" 7 | delete: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | request: < 10 | database: "projects/projectID/databases/(default)" 11 | writes: < 12 | delete: "projects/projectID/databases/(default)/documents/C/d" 13 | > 14 | > 15 | > 16 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/query-del-where.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # Sentinel values are not permitted in queries. 5 | 6 | description: "query: Delete in Where" 7 | query: < 8 | coll_path: "projects/projectID/databases/(default)/documents/C" 9 | clauses: < 10 | where: < 11 | path: < 12 | field: "a" 13 | > 14 | op: "==" 15 | json_value: "\"Delete\"" 16 | > 17 | > 18 | is_error: true 19 | > 20 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/query-invalid-operator.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The != operator is not supported. 5 | 6 | description: "query: invalid operator in Where clause" 7 | query: < 8 | coll_path: "projects/projectID/databases/(default)/documents/C" 9 | clauses: < 10 | where: < 11 | path: < 12 | field: "a" 13 | > 14 | op: "!=" 15 | json_value: "4" 16 | > 17 | > 18 | is_error: true 19 | > 20 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/query-invalid-path-order.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The path has an empty component. 5 | 6 | description: "query: invalid path in OrderBy clause" 7 | query: < 8 | coll_path: "projects/projectID/databases/(default)/documents/C" 9 | clauses: < 10 | order_by: < 11 | path: < 12 | field: "*" 13 | field: "" 14 | > 15 | direction: "asc" 16 | > 17 | > 18 | is_error: true 19 | > 20 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/query-bad-NaN.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # You can only compare NaN for equality. 5 | 6 | description: "query: where clause with non-== comparison with NaN" 7 | query: < 8 | coll_path: "projects/projectID/databases/(default)/documents/C" 9 | clauses: < 10 | where: < 11 | path: < 12 | field: "a" 13 | > 14 | op: "<" 15 | json_value: "\"NaN\"" 16 | > 17 | > 18 | is_error: true 19 | > 20 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/query-bad-null.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # You can only compare Null for equality. 5 | 6 | description: "query: where clause with non-== comparison with Null" 7 | query: < 8 | coll_path: "projects/projectID/databases/(default)/documents/C" 9 | clauses: < 10 | where: < 11 | path: < 12 | field: "a" 13 | > 14 | op: ">" 15 | json_value: "null" 16 | > 17 | > 18 | is_error: true 19 | > 20 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/query-st-where.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # Sentinel values are not permitted in queries. 5 | 6 | description: "query: ServerTimestamp in Where" 7 | query: < 8 | coll_path: "projects/projectID/databases/(default)/documents/C" 9 | clauses: < 10 | where: < 11 | path: < 12 | field: "a" 13 | > 14 | op: "==" 15 | json_value: "\"ServerTimestamp\"" 16 | > 17 | > 18 | is_error: true 19 | > 20 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/set-del-wo-merge.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # Without a merge option, Set replaces the document with the input data. A Delete 5 | # sentinel in the data makes no sense in this case. 6 | 7 | description: "set: Delete cannot appear unless a merge option is specified" 8 | set: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | json_data: "{\"a\": 1, \"b\": \"Delete\"}" 11 | is_error: true 12 | > 13 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/set-empty.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | 5 | description: "set: creating or setting an empty map" 6 | set: < 7 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 8 | json_data: "{}" 9 | request: < 10 | database: "projects/projectID/databases/(default)" 11 | writes: < 12 | update: < 13 | name: "projects/projectID/databases/(default)/documents/C/d" 14 | > 15 | > 16 | > 17 | > 18 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/query-cursor-no-order.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # If a cursor method with a list of values is provided, there must be at least as 5 | # many explicit orderBy clauses as values. 6 | 7 | description: "query: cursor method without orderBy" 8 | query: < 9 | coll_path: "projects/projectID/databases/(default)/documents/C" 10 | clauses: < 11 | start_at: < 12 | json_values: "2" 13 | > 14 | > 15 | is_error: true 16 | > 17 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/query-invalid-path-where.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The path has an empty component. 5 | 6 | description: "query: invalid path in Where clause" 7 | query: < 8 | coll_path: "projects/projectID/databases/(default)/documents/C" 9 | clauses: < 10 | where: < 11 | path: < 12 | field: "*" 13 | field: "" 14 | > 15 | op: "==" 16 | json_value: "4" 17 | > 18 | > 19 | is_error: true 20 | > 21 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/set-26.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The client signals an error if the Delete sentinel is in the input data, but not 5 | # selected by a merge option, because this is most likely a programming bug. 6 | 7 | description: "Delete cannot appear in an unmerged field" 8 | set: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | option: < 11 | fields: < 12 | field: "a" 13 | > 14 | > 15 | json_data: "{\"a\": 1, \"b\": \"Delete\"}" 16 | is_error: true 17 | > 18 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-exists-precond.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The Update method does not support an explicit exists precondition. 5 | 6 | description: "update-paths: Exists precondition is invalid" 7 | update_paths: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | precondition: < 10 | exists: true 11 | > 12 | field_paths: < 13 | field: "a" 14 | > 15 | json_values: "1" 16 | is_error: true 17 | > 18 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-19.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The Delete sentinel must be the value of a field. Deletes are implemented by 5 | # turning the path to the Delete sentinel into a FieldPath, and FieldPaths do not 6 | # support array indexing. 7 | 8 | description: "Delete cannot be in an array value" 9 | update_paths: < 10 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 11 | field_paths: < 12 | field: "a" 13 | > 14 | json_values: "[1, 2, \"Delete\"]" 15 | is_error: true 16 | > 17 | -------------------------------------------------------------------------------- /trace/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2017 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | -------------------------------------------------------------------------------- /core/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | -------------------------------------------------------------------------------- /dns/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | -------------------------------------------------------------------------------- /firestore/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2017 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-18.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # There cannot be an array value anywhere on the path from the document root to 5 | # the ServerTimestamp sentinel. Firestore transforms don't support array indexing. 6 | 7 | description: "ServerTimestamp cannot be anywhere inside an array value" 8 | update_paths: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | field_paths: < 11 | field: "a" 12 | > 13 | json_values: "[1, {\"b\": \"ServerTimestamp\"}]" 14 | is_error: true 15 | > 16 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-prefix-1.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # In the input data, one field cannot be a prefix of another. 5 | 6 | description: "update-paths: prefix #1" 7 | update_paths: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | field_paths: < 10 | field: "a" 11 | field: "b" 12 | > 13 | field_paths: < 14 | field: "a" 15 | > 16 | json_values: "1" 17 | json_values: "2" 18 | is_error: true 19 | > 20 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-prefix-2.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # In the input data, one field cannot be a prefix of another. 5 | 6 | description: "update-paths: prefix #2" 7 | update_paths: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | field_paths: < 10 | field: "a" 11 | > 12 | field_paths: < 13 | field: "a" 14 | field: "b" 15 | > 16 | json_values: "1" 17 | json_values: "2" 18 | is_error: true 19 | > 20 | -------------------------------------------------------------------------------- /bigquery/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | -------------------------------------------------------------------------------- /bigtable/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | -------------------------------------------------------------------------------- /datastore/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | -------------------------------------------------------------------------------- /firestore/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2017 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/query-offset-limit.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # Offset and Limit clauses. 5 | 6 | description: "query: Offset and Limit clauses" 7 | query: < 8 | coll_path: "projects/projectID/databases/(default)/documents/C" 9 | clauses: < 10 | offset: 2 11 | > 12 | clauses: < 13 | limit: 3 14 | > 15 | query: < 16 | from: < 17 | collection_id: "C" 18 | > 19 | offset: 2 20 | limit: < 21 | value: 3 22 | > 23 | > 24 | > 25 | -------------------------------------------------------------------------------- /language/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | -------------------------------------------------------------------------------- /logging/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | -------------------------------------------------------------------------------- /spanner/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | -------------------------------------------------------------------------------- /storage/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | -------------------------------------------------------------------------------- /translate/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | -------------------------------------------------------------------------------- /error_reporting/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/set-del-noarray.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The Delete sentinel must be the value of a field. Deletes are implemented by 5 | # turning the path to the Delete sentinel into a FieldPath, and FieldPaths do not 6 | # support array indexing. 7 | 8 | description: "set: Delete cannot be in an array value" 9 | set: < 10 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 11 | json_data: "{\"a\": [1, 2, \"Delete\"]}" 12 | is_error: true 13 | > 14 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-20.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # The Delete sentinel must be the value of a field. Deletes are implemented by 5 | # turning the path to the Delete sentinel into a FieldPath, and FieldPaths do not 6 | # support array indexing. 7 | 8 | description: "Delete cannot be anywhere inside an array value" 9 | update_paths: < 10 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 11 | field_paths: < 12 | field: "a" 13 | > 14 | json_values: "[1, {\"b\": \"Delete\"}]" 15 | is_error: true 16 | > 17 | -------------------------------------------------------------------------------- /runtimeconfig/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | -------------------------------------------------------------------------------- /logging/tests/unit/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | -------------------------------------------------------------------------------- /resource_manager/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/create-del-noarray.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The Delete sentinel must be the value of a field. Deletes are implemented by 5 | # turning the path to the Delete sentinel into a FieldPath, and FieldPaths do not 6 | # support array indexing. 7 | 8 | description: "create: Delete cannot be in an array value" 9 | create: < 10 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 11 | json_data: "{\"a\": [1, 2, \"Delete\"]}" 12 | is_error: true 13 | > 14 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-del-noarray.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The Delete sentinel must be the value of a field. Deletes are implemented by 5 | # turning the path to the Delete sentinel into a FieldPath, and FieldPaths do not 6 | # support array indexing. 7 | 8 | description: "update: Delete cannot be in an array value" 9 | update: < 10 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 11 | json_data: "{\"a\": [1, 2, \"Delete\"]}" 12 | is_error: true 13 | > 14 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-st-noarray.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The ServerTimestamp sentinel must be the value of a field. Firestore transforms 5 | # don't support array indexing. 6 | 7 | description: "update-paths: ServerTimestamp cannot be in an array value" 8 | update_paths: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | field_paths: < 11 | field: "a" 12 | > 13 | json_values: "[1, 2, \"ServerTimestamp\"]" 14 | is_error: true 15 | > 16 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/delete-3.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # Delete supports an exists precondition. 5 | 6 | description: "delete with exists precondition" 7 | delete: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | precondition: < 10 | exists: true 11 | > 12 | request: < 13 | database: "projects/projectID/databases/(default)" 14 | writes: < 15 | delete: "projects/projectID/databases/(default)/documents/C/d" 16 | current_document: < 17 | exists: true 18 | > 19 | > 20 | > 21 | > 22 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/query-select-empty.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # An empty Select clause selects just the document ID. 5 | 6 | description: "query: empty Select clause" 7 | query: < 8 | coll_path: "projects/projectID/databases/(default)/documents/C" 9 | clauses: < 10 | select: < 11 | > 12 | > 13 | query: < 14 | select: < 15 | fields: < 16 | field_path: "__name__" 17 | > 18 | > 19 | from: < 20 | collection_id: "C" 21 | > 22 | > 23 | > 24 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/set-st-noarray-nested.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # There cannot be an array value anywhere on the path from the document root to 5 | # the ServerTimestamp sentinel. Firestore transforms don't support array indexing. 6 | 7 | description: "set: ServerTimestamp cannot be anywhere inside an array value" 8 | set: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | json_data: "{\"a\": [1, {\"b\": \"ServerTimestamp\"}]}" 11 | is_error: true 12 | > 13 | -------------------------------------------------------------------------------- /logging/tests/unit/handlers/transports/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright 2016 Google LLC 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/create-st-noarray-nested.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # There cannot be an array value anywhere on the path from the document root to 5 | # the ServerTimestamp sentinel. Firestore transforms don't support array indexing. 6 | 7 | description: "create: ServerTimestamp cannot be anywhere inside an array value" 8 | create: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | json_data: "{\"a\": [1, {\"b\": \"ServerTimestamp\"}]}" 11 | is_error: true 12 | > 13 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/listen-empty.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # There are no changes, so the snapshot should be empty. 5 | 6 | description: "listen: no changes; empty snapshot" 7 | listen: < 8 | responses: < 9 | target_change: < 10 | target_change_type: CURRENT 11 | > 12 | > 13 | responses: < 14 | target_change: < 15 | read_time: < 16 | seconds: 1 17 | > 18 | > 19 | > 20 | snapshots: < 21 | read_time: < 22 | seconds: 1 23 | > 24 | > 25 | > 26 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-st-noarray-nested.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # There cannot be an array value anywhere on the path from the document root to 5 | # the ServerTimestamp sentinel. Firestore transforms don't support array indexing. 6 | 7 | description: "update: ServerTimestamp cannot be anywhere inside an array value" 8 | update: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | json_data: "{\"a\": [1, {\"b\": \"ServerTimestamp\"}]}" 11 | is_error: true 12 | > 13 | -------------------------------------------------------------------------------- /api_core/README.rst: -------------------------------------------------------------------------------- 1 | Core Library for Google Client Libraries 2 | ======================================== 3 | 4 | |pypi| |versions| 5 | 6 | This library is not meant to stand-alone. Instead it defines 7 | common helpers used by all Google API clients. For more information, see the 8 | `documentation`_. 9 | 10 | .. |pypi| image:: https://img.shields.io/pypi/v/google-cloud-core.svg 11 | :target: https://pypi.org/project/google-cloud-core/ 12 | .. |versions| image:: https://img.shields.io/pypi/pyversions/google-cloud-core.svg 13 | :target: https://pypi.org/project/google-cloud-core/ 14 | .. _documentation: https://googlecloudplatform.github.io/google-cloud-python/latest/core/ 15 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/set-del-noarray-nested.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The Delete sentinel must be the value of a field. Deletes are implemented by 5 | # turning the path to the Delete sentinel into a FieldPath, and FieldPaths do not 6 | # support array indexing. 7 | 8 | description: "set: Delete cannot be anywhere inside an array value" 9 | set: < 10 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 11 | json_data: "{\"a\": [1, {\"b\": \"Delete\"}]}" 12 | is_error: true 13 | > 14 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/create-del-noarray-nested.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The Delete sentinel must be the value of a field. Deletes are implemented by 5 | # turning the path to the Delete sentinel into a FieldPath, and FieldPaths do not 6 | # support array indexing. 7 | 8 | description: "create: Delete cannot be anywhere inside an array value" 9 | create: < 10 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 11 | json_data: "{\"a\": [1, {\"b\": \"Delete\"}]}" 12 | is_error: true 13 | > 14 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/query-del-cursor.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # Sentinel values are not permitted in queries. 5 | 6 | description: "query: Delete in cursor method" 7 | query: < 8 | coll_path: "projects/projectID/databases/(default)/documents/C" 9 | clauses: < 10 | order_by: < 11 | path: < 12 | field: "a" 13 | > 14 | direction: "asc" 15 | > 16 | > 17 | clauses: < 18 | end_before: < 19 | json_values: "\"Delete\"" 20 | > 21 | > 22 | is_error: true 23 | > 24 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/set-merge-present.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The client signals an error if a merge option mentions a path that is not in the 5 | # input data. 6 | 7 | description: "set-merge: Merge fields must all be present in data" 8 | set: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | option: < 11 | fields: < 12 | field: "b" 13 | > 14 | fields: < 15 | field: "a" 16 | > 17 | > 18 | json_data: "{\"a\": 1}" 19 | is_error: true 20 | > 21 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-del-noarray-nested.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The Delete sentinel must be the value of a field. Deletes are implemented by 5 | # turning the path to the Delete sentinel into a FieldPath, and FieldPaths do not 6 | # support array indexing. 7 | 8 | description: "update: Delete cannot be anywhere inside an array value" 9 | update: < 10 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 11 | json_data: "{\"a\": [1, {\"b\": \"Delete\"}]}" 12 | is_error: true 13 | > 14 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-fp-dup.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The same field cannot occur more than once. 5 | 6 | description: "update-paths: duplicate field path" 7 | update_paths: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | field_paths: < 10 | field: "a" 11 | > 12 | field_paths: < 13 | field: "b" 14 | > 15 | field_paths: < 16 | field: "a" 17 | > 18 | json_values: "1" 19 | json_values: "2" 20 | json_values: "3" 21 | is_error: true 22 | > 23 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/create-empty.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | 5 | description: "create: creating or setting an empty map" 6 | create: < 7 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 8 | json_data: "{}" 9 | request: < 10 | database: "projects/projectID/databases/(default)" 11 | writes: < 12 | update: < 13 | name: "projects/projectID/databases/(default)/documents/C/d" 14 | > 15 | current_document: < 16 | exists: false 17 | > 18 | > 19 | > 20 | > 21 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/query-st-cursor.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # Sentinel values are not permitted in queries. 5 | 6 | description: "query: ServerTimestamp in cursor method" 7 | query: < 8 | coll_path: "projects/projectID/databases/(default)/documents/C" 9 | clauses: < 10 | order_by: < 11 | path: < 12 | field: "a" 13 | > 14 | direction: "asc" 15 | > 16 | > 17 | clauses: < 18 | end_before: < 19 | json_values: "\"ServerTimestamp\"" 20 | > 21 | > 22 | is_error: true 23 | > 24 | -------------------------------------------------------------------------------- /docs/core/index.rst: -------------------------------------------------------------------------------- 1 | Core 2 | ==== 3 | 4 | .. toctree:: 5 | config 6 | auth 7 | client 8 | exceptions 9 | helpers 10 | retry 11 | timeout 12 | page_iterator 13 | iam 14 | operation 15 | operations_client 16 | path_template 17 | 18 | Changelog 19 | ~~~~~~~~~ 20 | 21 | The ``google-cloud-core`` package contains helpers common to all 22 | ``google-cloud-*`` packages. In an attempt to reach a stable API, 23 | much of the functionality has been split out into a new package 24 | ``google-api-core``. 25 | 26 | .. toctree:: 27 | :maxdepth: 2 28 | 29 | ``google-api-core`` Changelog 30 | ``google-cloud-core`` Changelog 31 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-prefix-3.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # In the input data, one field cannot be a prefix of another, even if the values 5 | # could in principle be combined. 6 | 7 | description: "update-paths: prefix #3" 8 | update_paths: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | field_paths: < 11 | field: "a" 12 | > 13 | field_paths: < 14 | field: "a" 15 | field: "d" 16 | > 17 | json_values: "{\"b\": 1}" 18 | json_values: "2" 19 | is_error: true 20 | > 21 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/set-del-nomerge.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The client signals an error if the Delete sentinel is in the input data, but not 5 | # selected by a merge option, because this is most likely a programming bug. 6 | 7 | description: "set-merge: Delete cannot appear in an unmerged field" 8 | set: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | option: < 11 | fields: < 12 | field: "a" 13 | > 14 | > 15 | json_data: "{\"a\": 1, \"b\": \"Delete\"}" 16 | is_error: true 17 | > 18 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/set-merge-prefix.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The prefix would make the other path meaningless, so this is probably a 5 | # programming error. 6 | 7 | description: "set-merge: One merge path cannot be the prefix of another" 8 | set: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | option: < 11 | fields: < 12 | field: "a" 13 | > 14 | fields: < 15 | field: "a" 16 | field: "b" 17 | > 18 | > 19 | json_data: "{\"a\": {\"b\": 1}}" 20 | is_error: true 21 | > 22 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/set-1.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. 2 | # This file was generated by cloud.google.com/go/firestore/cmd/generate-firestore-tests. 3 | 4 | # A simple call, resulting in a single update operation. 5 | 6 | description: "basic" 7 | set: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | json_data: "{\"a\": 1}" 10 | request: < 11 | database: "projects/projectID/databases/(default)" 12 | writes: < 13 | update: < 14 | name: "projects/projectID/databases/(default)/documents/C/d" 15 | fields: < 16 | key: "a" 17 | value: < 18 | integer_value: 1 19 | > 20 | > 21 | > 22 | > 23 | > 24 | > 25 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-del-noarray.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # The Delete sentinel must be the value of a field. Deletes are implemented by 5 | # turning the path to the Delete sentinel into a FieldPath, and FieldPaths do not 6 | # support array indexing. 7 | 8 | description: "update-paths: Delete cannot be in an array value" 9 | update_paths: < 10 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 11 | field_paths: < 12 | field: "a" 13 | > 14 | json_values: "[1, 2, \"Delete\"]" 15 | is_error: true 16 | > 17 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/update-paths-st-noarray-nested.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # There cannot be an array value anywhere on the path from the document root to 5 | # the ServerTimestamp sentinel. Firestore transforms don't support array indexing. 6 | 7 | description: "update-paths: ServerTimestamp cannot be anywhere inside an array value" 8 | update_paths: < 9 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 10 | field_paths: < 11 | field: "a" 12 | > 13 | json_values: "[1, {\"b\": \"ServerTimestamp\"}]" 14 | is_error: true 15 | > 16 | -------------------------------------------------------------------------------- /firestore/tests/unit/testdata/delete-exists-precond.textproto: -------------------------------------------------------------------------------- 1 | # DO NOT MODIFY. This file was generated by 2 | # github.com/GoogleCloudPlatform/google-cloud-common/testing/firestore/cmd/generate-firestore-tests/generate-firestore-tests.go. 3 | 4 | # Delete supports an exists precondition. 5 | 6 | description: "delete: delete with exists precondition" 7 | delete: < 8 | doc_ref_path: "projects/projectID/databases/(default)/documents/C/d" 9 | precondition: < 10 | exists: true 11 | > 12 | request: < 13 | database: "projects/projectID/databases/(default)" 14 | writes: < 15 | delete: "projects/projectID/databases/(default)/documents/C/d" 16 | current_document: < 17 | exists: true 18 | > 19 | > 20 | > 21 | > 22 | --------------------------------------------------------------------------------