Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add docs for admin client #63

Merged
merged 1 commit into from Aug 11, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/admin_client.rst
@@ -0,0 +1,6 @@
Datastore Admin Client
======================

.. automodule:: google.cloud.datastore_admin_v1.gapic.datastore_admin_client
:members:
:show-inheritance:
1 change: 1 addition & 0 deletions docs/index.rst
Expand Up @@ -13,6 +13,7 @@ API Reference
transactions
batches
helpers
admin_client


Changelog
Expand Down
Expand Up @@ -56,7 +56,6 @@ class DatastoreAdminClient(object):

The Datastore Admin API provides several admin services for Cloud Datastore.

-----------------------------------------------------------------------------
## Concepts

Project, namespace, kind, and entity as defined in the Google Cloud Datastore
Expand All @@ -68,7 +67,6 @@ class DatastoreAdminClient(object):
specified as a combination of kinds and namespaces (either or both of which
may be all).

-----------------------------------------------------------------------------
## Services

# Export/Import
Expand Down
10 changes: 5 additions & 5 deletions synth.metadata
Expand Up @@ -3,23 +3,23 @@
{
"git": {
"name": ".",
"remote": "https://github.com/googleapis/python-datastore.git",
"sha": "50ed94503da244434df0be58098a0ccf2da54b16"
"remote": "git@github.com:googleapis/python-datastore",
"sha": "f6290c02c46c83616a26aaa9babc43c3c6bed2f2"
}
},
{
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
"sha": "bbe5f05ccb4ccb4a4dae92c558a25c6d3fe55842",
"internalRef": "321580134"
"sha": "94006b3cb8d2fb44703cf535da15608eed6bf7db",
"internalRef": "325949033"
}
},
{
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
"sha": "bfcdbe0da977b2de6c1c0471bb6dc2f1e13bf669"
"sha": "bd0deaa1113b588d70449535ab9cbf0f2bd0e72f"
}
}
],
Expand Down
7 changes: 7 additions & 0 deletions synth.py
Expand Up @@ -55,6 +55,13 @@
"google-cloud-datstore"
)

# Remove spurious markup
s.replace(
"google/**/datastore_admin_client.py",
"-----------------------------------------------------------------------------",
""
)

# TODO(busunkim): Remove during the microgenerator transition.
# This re-orders the parameters to avoid breaking existing code.
num = s.replace(
Expand Down