Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
docs(bigtable): remove missing argument from instance declaration (#47)
Fixes #42 🦕
  • Loading branch information
rafilong committed Jun 9, 2020
1 parent 1ac60be commit c966647
Showing 1 changed file with 1 addition and 6 deletions.
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

0 comments on commit c966647

Please sign in to comment.