Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
20 changes: 20 additions & 0 deletions docs/admin_client/_static/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
div#python2-eol {

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.

Why does this need new custom css and layout files? The other clients all share them from the root

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
}
50 changes: 50 additions & 0 deletions docs/admin_client/_templates/layout.html
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">
&nbsp;
{{- 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">
&nbsp;
{{- rellink_markup () }}
</div>
{%- endif %}
{% endblock %}

{%- if render_sidebar %}
</div>
{%- endif %}
</div>
{%- endblock %}
<div class="clearer"></div>
</div>
{%- else %}
{{ super() }}
{%- endif %}
{%- endblock %}
10 changes: 10 additions & 0 deletions docs/admin_client/admin_v2/bigtable_instance_admin.rst
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:
10 changes: 10 additions & 0 deletions docs/admin_client/admin_v2/bigtable_table_admin.rst
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:
7 changes: 7 additions & 0 deletions docs/admin_client/admin_v2/services_.rst
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
10 changes: 10 additions & 0 deletions docs/admin_client/admin_v2/types_.rst
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:
Loading