Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion librarian.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3114,7 +3114,6 @@ libraries:
keep:
- CHANGELOG.md
- docs/CHANGELOG.md
skip_generate: true
python:
library_type: GAPIC_COMBO
opt_args_by_api:
Expand Down
24 changes: 11 additions & 13 deletions packages/google-cloud-pubsub/.repo-metadata.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
{
"name": "pubsub",
"name_pretty": "Google Cloud Pub/Sub",
"product_documentation": "https://cloud.google.com/pubsub/docs/",
"api_description": "is designed to provide reliable, many-to-many, asynchronous messaging between applications. Publisher applications can send messages to a topic and other applications can subscribe to that topic to receive the messages. By decoupling senders and receivers, Google Cloud Pub/Sub allows developers to communicate between independently written applications.",
"api_id": "pubsub.googleapis.com",
"api_shortname": "pubsub",
"client_documentation": "https://cloud.google.com/python/docs/reference/pubsub/latest",
"default_version": "v1",
"distribution_name": "google-cloud-pubsub",
"issue_tracker": "https://issuetracker.google.com/savedsearches/559741",
"release_level": "stable",
"language": "python",
"repo": "googleapis/google-cloud-python",
"distribution_name": "google-cloud-pubsub",
"api_id": "pubsub.googleapis.com",
"requires_billing": true,
"default_version": "v1",
"codeowner_team": "@googleapis/cloud-sdk-python-team @googleapis/pubsub-team",
"api_shortname": "pubsub",
"library_type": "GAPIC_COMBO",
"api_description": "is designed to provide reliable, many-to-many, asynchronous messaging between applications. Publisher applications can send messages to a topic and other applications can subscribe to that topic to receive the messages. By decoupling senders and receivers, Google Cloud Pub/Sub allows developers to communicate between independently written applications."
}
"name": "pubsub",
"name_pretty": "Google Cloud Pub/Sub",
"product_documentation": "https://cloud.google.com/pubsub/docs/",
"release_level": "stable",
"repo": "googleapis/google-cloud-python"
}
2 changes: 1 addition & 1 deletion packages/google-cloud-pubsub/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ independently written applications.
.. |versions| image:: https://img.shields.io/pypi/pyversions/google-cloud-pubsub.svg
:target: https://pypi.org/project/google-cloud-pubsub/
.. _Google Cloud Pub/Sub: https://cloud.google.com/pubsub/docs/
.. _Client Library Documentation: https://cloud.google.com/python/docs/reference/pubsub/latest
.. _Client Library Documentation: https://cloud.google.com/python/docs/reference/pubsub/latest/summary_overview
.. _Product Documentation: https://cloud.google.com/pubsub/docs/

Quick Start
Expand Down
2 changes: 1 addition & 1 deletion packages/google-cloud-pubsub/docs/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ independently written applications.
.. |versions| image:: https://img.shields.io/pypi/pyversions/google-cloud-pubsub.svg
:target: https://pypi.org/project/google-cloud-pubsub/
.. _Google Cloud Pub/Sub: https://cloud.google.com/pubsub/docs/
.. _Client Library Documentation: https://cloud.google.com/python/docs/reference/pubsub/latest
.. _Client Library Documentation: https://cloud.google.com/python/docs/reference/pubsub/latest/summary_overview
.. _Product Documentation: https://cloud.google.com/pubsub/docs/

Quick Start
Expand Down
5 changes: 5 additions & 0 deletions packages/google-cloud-pubsub/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,8 @@ For a list of all ``google-cloud-pubsub`` releases:
:hidden:

summary_overview.md

.. toctree::
:hidden:

summary_overview.md
Comment on lines +39 to +42
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The summary_overview.md file is already included in the toctree on lines 35-37. Adding it again here is redundant and will cause Sphinx build warnings regarding duplicate document entries.

Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
import json
import functools
import grpc
import json
import logging as std_logging
import os
import re
Expand All @@ -37,6 +36,7 @@
)

import google.protobuf
import grpc
from google.api_core import client_options as client_options_lib
from google.api_core import exceptions as core_exceptions
from google.api_core import gapic_v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
import json
import functools
import grpc
import json
import logging as std_logging
import os
import re
Expand All @@ -37,6 +36,7 @@
)

import google.protobuf
import grpc
from google.api_core import client_options as client_options_lib
from google.api_core import exceptions as core_exceptions
from google.api_core import gapic_v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
# limitations under the License.
#
import logging as std_logging
import warnings
import re
import warnings
from collections import OrderedDict
from typing import (
AsyncIterable,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
import json
import functools
import grpc
import json
import logging as std_logging
import re
import warnings
import os
import re
import warnings
Expand All @@ -41,6 +38,7 @@
)

import google.protobuf
import grpc
from google.api_core import client_options as client_options_lib
from google.api_core import exceptions as core_exceptions
from google.api_core import gapic_v1
Expand Down
Loading