Skip to content

Fix docstrings FBO Sphinx rendering. - #965

Merged
tseaver merged 1 commit into
googleapis:masterfrom
tseaver:quickfix-docs-build
Jul 4, 2015
Merged

Fix docstrings FBO Sphinx rendering.#965
tseaver merged 1 commit into
googleapis:masterfrom
tseaver:quickfix-docs-build

Conversation

@tseaver

Copy link
Copy Markdown
Contributor

No description provided.

@googlebotgooglebot added the cla: yes This human has signed the Contributor License Agreement. label Jul 4, 2015
@dhermes

Copy link
Copy Markdown
Contributor

LGTM

tseaver added a commit that referenced this pull request Jul 4, 2015
@tseaver
tseaver merged commit 46db5d9 into googleapis:masterJul 4, 2015
@dhermesdhermes mentioned this pull request Jul 10, 2015
@tseaver
tseaver deleted the quickfix-docs-build branch July 20, 2015 22:44
parthea pushed a commit that referenced this pull request Nov 24, 2025
Fixes#965.
Uses the already-existing resource path logic for autogen snippets.
Previous:
```py
# Initialize request argument(s)
request = asset_v1.DeleteFeedRequest(
name="projects/{project}/feeds/{feed}",
)
```
Now:
```py
# Initialize request argument(s)
project = "my-project-id"
feed = "feed_value"
name = f"projects/{project}/feeds/{feed}"
request = asset_v1.DeleteFeedRequest(
name=name,
)
```
Note: The logic may result in multiple variables with the same name (it doesn't happen for any of the golden APIs, but might for an API with more required fields).
parthea pushed a commit that referenced this pull request Nov 24, 2025
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
parthea pushed a commit that referenced this pull request Nov 26, 2025
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
parthea pushed a commit that referenced this pull request Mar 2, 2026
…is set (#965)
* docs: clarified where ordering_key will be written if write_metadata is set
PiperOrigin-RevId: 551210991
Source-Link: googleapis/googleapis@7c762d7
Source-Link: googleapis/googleapis-gen@15fe4c5
Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMTVmZTRjNWZmNWViZDUyOTExYjQyOWIwNWI5OTJlMjMyZjUzMzUxZSJ9
* 🦉 Updates from OwlBot post-processor
See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md
---------
Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
parthea pushed a commit that referenced this pull request Mar 6, 2026
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
parthea pushed a commit that referenced this pull request Mar 9, 2026
Source-Link: googleapis/synthtool@909573c
Post-Processor: gcr.io/cloud-devrel-public-resources/owlbot-python:latest@sha256:ddf4551385d566771dc713090feb7b4c1164fb8a698fe52bbe7670b24236565b
Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

cla: yesThis human has signed the Contributor License Agreement.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants

@tseaver@dhermes@googlebot