From c9666475dc31d581fdac0fc1c65e75ee9e27d832 Mon Sep 17 00:00:00 2001 From: Raphael Long Date: Tue, 9 Jun 2020 11:34:11 -0500 Subject: [PATCH] docs(bigtable): remove missing argument from instance declaration (#47) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #42 🦕 --- docs/instance-api.rst | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/docs/instance-api.rst b/docs/instance-api.rst index b61f78bbf..ab884a605 100644 --- a/docs/instance-api.rst +++ b/docs/instance-api.rst @@ -22,12 +22,7 @@ To create an :class:`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.