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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(bigtable): remove missing argument from instance declaration #47

Merged
merged 3 commits into from Jun 9, 2020
Merged
Changes from 1 commit
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
7 changes: 1 addition & 6 deletions docs/instance-api.rst
Expand Up @@ -22,12 +22,7 @@ To create an :class:`Instance <google.cloud.bigtable.instance.Instance>` object:

.. code:: python

instance = client.instance(instance_id, location_id,
display_name=display_name)

- ``location_id`` is the ID of the location in which the instance's cluster
will be hosted, e.g. ``'us-central1-c'``. ``location_id`` is required for
instances which do not already exist.
instance = client.instance(instance_id, display_name=display_name)

- ``display_name`` is optional. When not provided, ``display_name`` defaults
to the ``instance_id`` value.
Expand Down