This repository was archived by the owner on Apr 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
docs: owlbot related changes #1133
Merged
Merged
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
094ba33
docs: owlbot related changes
gkevinzheng e307e0b
Addressed PR feedback + made changes to toc.yml for docs pipeline
gkevinzheng dac2037
Fixed type hint
gkevinzheng fa99751
linting + added validation for admin section
gkevinzheng 6ab3b53
linting + added noqas to owlbot lines
gkevinzheng File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| div#python2-eol { | ||
| border-color: red; | ||
| border-width: medium; | ||
| } | ||
|
|
||
| /* Ensure minimum width for 'Parameters' / 'Returns' column */ | ||
| dl.field-list > dt { | ||
| min-width: 100px | ||
| } | ||
|
|
||
| /* Insert space between methods for readability */ | ||
| dl.method { | ||
| padding-top: 10px; | ||
| padding-bottom: 10px | ||
| } | ||
|
|
||
| /* Insert empty space between classes */ | ||
| dl.class { | ||
| padding-bottom: 50px | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,50 @@ | ||
|
|
||
| {% extends "!layout.html" %} | ||
| {%- block content %} | ||
| {%- if theme_fixed_sidebar|lower == 'true' %} | ||
| <div class="document"> | ||
| {{ sidebar() }} | ||
| {%- block document %} | ||
| <div class="documentwrapper"> | ||
| {%- if render_sidebar %} | ||
| <div class="bodywrapper"> | ||
| {%- endif %} | ||
|
|
||
| {%- block relbar_top %} | ||
| {%- if theme_show_relbar_top|tobool %} | ||
| <div class="related top"> | ||
| | ||
| {{- rellink_markup () }} | ||
| </div> | ||
| {%- endif %} | ||
| {% endblock %} | ||
|
|
||
| <div class="body" role="main"> | ||
| <div class="admonition" id="python2-eol"> | ||
| As of January 1, 2020 this library no longer supports Python 2 on the latest released version. | ||
| Library versions released prior to that date will continue to be available. For more information please | ||
| visit <a href="https://cloud.google.com/python/docs/python2-sunset/">Python 2 support on Google Cloud</a>. | ||
| </div> | ||
| {% block body %} {% endblock %} | ||
| </div> | ||
|
|
||
| {%- block relbar_bottom %} | ||
| {%- if theme_show_relbar_bottom|tobool %} | ||
| <div class="related bottom"> | ||
| | ||
| {{- rellink_markup () }} | ||
| </div> | ||
| {%- endif %} | ||
| {% endblock %} | ||
|
|
||
| {%- if render_sidebar %} | ||
| </div> | ||
| {%- endif %} | ||
| </div> | ||
| {%- endblock %} | ||
| <div class="clearer"></div> | ||
| </div> | ||
| {%- else %} | ||
| {{ super() }} | ||
| {%- endif %} | ||
| {%- endblock %} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| BigtableInstanceAdmin | ||
| --------------------------------------- | ||
|
|
||
| .. automodule:: google.cloud.bigtable.admin_v2.services.bigtable_instance_admin | ||
| :members: | ||
| :inherited-members: | ||
|
|
||
| .. automodule:: google.cloud.bigtable.admin_v2.services.bigtable_instance_admin.pagers | ||
| :members: | ||
| :inherited-members: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| BigtableTableAdmin | ||
| ------------------------------------ | ||
|
|
||
| .. automodule:: google.cloud.bigtable.admin_v2.overlay.services.bigtable_table_admin | ||
| :members: | ||
| :inherited-members: | ||
|
|
||
| .. automodule:: google.cloud.bigtable.admin_v2.services.bigtable_table_admin.pagers | ||
| :members: | ||
| :inherited-members: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| Services for Google Cloud Bigtable Admin v2 API | ||
| =============================================== | ||
| .. toctree:: | ||
| :maxdepth: 2 | ||
|
|
||
| bigtable_instance_admin | ||
| bigtable_table_admin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| Types for Google Cloud Bigtable Admin v2 API | ||
| ============================================ | ||
|
|
||
| .. automodule:: google.cloud.bigtable.admin_v2.types | ||
| :members: | ||
| :show-inheritance: | ||
|
|
||
| .. automodule:: google.cloud.bigtable.admin_v2.overlay.types | ||
| :members: | ||
| :show-inheritance: |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why does this need new custom css and layout files? The other clients all share them from the root