Skip to content

Commit

Permalink
docs: add summary_overview template
Browse files Browse the repository at this point in the history
Source-Link: googleapis/synthtool@d7c2271
Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:db05f70829de86fe8e34ba972b7fe56da57eaccf1691f875ed4867db80d5cec9
  • Loading branch information
gcf-owl-bot[bot] committed Apr 5, 2024
1 parent 300efc2 commit 32e8fb4
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/.OwlBot.lock.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
# limitations under the License.
docker:
image: gcr.io/cloud-devrel-public-resources/owlbot-python:latest
digest: sha256:a8a80fc6456e433df53fc2a0d72ca0345db0ddefb409f1b75b118dfd1babd952
# created: 2024-03-15T16:25:47.905264637Z
digest: sha256:db05f70829de86fe8e34ba972b7fe56da57eaccf1691f875ed4867db80d5cec9
# created: 2024-04-05T19:51:26.466869535Z
5 changes: 5 additions & 0 deletions .github/auto-label.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,8 @@
# limitations under the License.
requestsize:
enabled: true

path:
pullrequest: true
paths:
samples: "samples"
17 changes: 17 additions & 0 deletions .github/blunderbuss.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Blunderbuss config
#
# This file controls who is assigned for pull requests and issues.
# Note: This file is autogenerated. To make changes to the assignee
# team, please update `codeowner_team` in `.repo-metadata.json`.

assign_issues:
- googleapis/python-core-client-libraries

assign_issues_by:
- labels:
- "samples"
to:
- googleapis/python-samples-reviewers

assign_prs:
- googleapis/python-core-client-libraries
23 changes: 11 additions & 12 deletions docuploader/protos/metadata_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,18 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""

import builtins
import collections.abc
import google.protobuf.descriptor
import google.protobuf.internal.containers
import google.protobuf.message
import google.protobuf.timestamp_pb2
import sys

if sys.version_info >= (3, 8):
import typing as typing_extensions
else:
import typing_extensions
import typing

DESCRIPTOR: google.protobuf.descriptor.FileDescriptor

@typing_extensions.final
@typing.final
class Metadata(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor

Expand All @@ -46,9 +42,6 @@ class Metadata(google.protobuf.message.Message):
SERVING_PATH_FIELD_NUMBER: builtins.int
XREFS_FIELD_NUMBER: builtins.int
XREF_SERVICES_FIELD_NUMBER: builtins.int
@property
def update_time(self) -> google.protobuf.timestamp_pb2.Timestamp:
"""When the documentation was built."""
name: builtins.str
"""The product/API name. This *should* match the DNS name of the API
service. For example, Python's Cloud Storage client would list "storage"
Expand Down Expand Up @@ -88,12 +81,18 @@ class Metadata(google.protobuf.message.Message):
"""The serving path for this docset. If unspecified, it will be set to
`{stem}/{version}`.
"""
@property
def update_time(self) -> google.protobuf.timestamp_pb2.Timestamp:
"""When the documentation was built."""

@property
def xrefs(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
"""The DocFX xref URLs required for these docs."""

@property
def xref_services(self) -> google.protobuf.internal.containers.RepeatedScalarFieldContainer[builtins.str]:
"""The DocFX xref service URLs required for these docs."""

def __init__(
self,
*,
Expand All @@ -110,7 +109,7 @@ class Metadata(google.protobuf.message.Message):
xrefs: collections.abc.Iterable[builtins.str] | None = ...,
xref_services: collections.abc.Iterable[builtins.str] | None = ...,
) -> None: ...
def HasField(self, field_name: typing_extensions.Literal["update_time", b"update_time"]) -> builtins.bool: ...
def ClearField(self, field_name: typing_extensions.Literal["distribution_name", b"distribution_name", "github_repository", b"github_repository", "issue_tracker", b"issue_tracker", "language", b"language", "name", b"name", "product_page", b"product_page", "serving_path", b"serving_path", "stem", b"stem", "update_time", b"update_time", "version", b"version", "xref_services", b"xref_services", "xrefs", b"xrefs"]) -> None: ...
def HasField(self, field_name: typing.Literal["update_time", b"update_time"]) -> builtins.bool: ...
def ClearField(self, field_name: typing.Literal["distribution_name", b"distribution_name", "github_repository", b"github_repository", "issue_tracker", b"issue_tracker", "language", b"language", "name", b"name", "product_page", b"product_page", "serving_path", b"serving_path", "stem", b"stem", "update_time", b"update_time", "version", b"version", "xref_services", b"xref_services", "xrefs", b"xrefs"]) -> None: ...

global___Metadata = Metadata

0 comments on commit 32e8fb4

Please sign in to comment.