diff --git a/latest/.buildinfo b/latest/.buildinfo index 813873ab5b70..fc5ac89636b9 100644 --- a/latest/.buildinfo +++ b/latest/.buildinfo @@ -1,4 +1,4 @@ # Sphinx build info version 1 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 96eb07a54560688d81b867b3ad0b553e +config: 495a110ae6c2f575d6a7cff2562ceed7 tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/latest/_modules/gcloud/bigquery/client.html b/latest/_modules/gcloud/bigquery/client.html index 05f4fab25d65..d0e5155ca175 100644 --- a/latest/_modules/gcloud/bigquery/client.html +++ b/latest/_modules/gcloud/bigquery/client.html @@ -5,7 +5,7 @@ - gcloud.bigquery.client — gcloud 3687302 documentation + gcloud.bigquery.client — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

- Version History (3687302) + Version History (3a16149)
diff --git a/latest/_modules/gcloud/bigquery/connection.html b/latest/_modules/gcloud/bigquery/connection.html index 30b3e2701812..ff20edd2e379 100644 --- a/latest/_modules/gcloud/bigquery/connection.html +++ b/latest/_modules/gcloud/bigquery/connection.html @@ -5,7 +5,7 @@ - gcloud.bigquery.connection — gcloud 3687302 documentation + gcloud.bigquery.connection — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

@@ -110,6 +110,11 @@

Source code for gcloud.bigquery.connection

 from gcloud import connection as base_connection
 
 
+SCOPE = ('https://www.googleapis.com/auth/bigquery',
+         'https://www.googleapis.com/auth/cloud-platform')
+"""The scopes required for authenticating as a Cloud BigQuery consumer."""
+
+
 
[docs]class Connection(base_connection.JSONConnection): """A connection to Google Cloud Pubsub via the JSON REST API.""" @@ -122,9 +127,9 @@

Source code for gcloud.bigquery.connection

     API_URL_TEMPLATE = '{api_base_url}/bigquery/{api_version}{path}'
     """A template for the URL of a particular API call."""
 
-    SCOPE = ('https://www.googleapis.com/auth/bigquery',
-             'https://www.googleapis.com/auth/cloud-platform')
-    """The scopes required for authenticating as a Cloud BigQuery consumer."""
+ def __init__(self, credentials=None, http=None): + credentials = self._create_scoped_credentials(credentials, SCOPE) + super(Connection, self).__init__(credentials=credentials, http=http)
diff --git a/latest/_modules/gcloud/bigquery/dataset.html b/latest/_modules/gcloud/bigquery/dataset.html index 98ed686908d3..0babc1b45c8c 100644 --- a/latest/_modules/gcloud/bigquery/dataset.html +++ b/latest/_modules/gcloud/bigquery/dataset.html @@ -5,7 +5,7 @@ - gcloud.bigquery.dataset — gcloud 3687302 documentation + gcloud.bigquery.dataset — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/bigquery/job.html b/latest/_modules/gcloud/bigquery/job.html index 9079c14a6595..1e8aa5e8431c 100644 --- a/latest/_modules/gcloud/bigquery/job.html +++ b/latest/_modules/gcloud/bigquery/job.html @@ -5,7 +5,7 @@ - gcloud.bigquery.job — gcloud 3687302 documentation + gcloud.bigquery.job — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/bigquery/table.html b/latest/_modules/gcloud/bigquery/table.html index 6cf1c5fdb7ff..8d9394ceedd9 100644 --- a/latest/_modules/gcloud/bigquery/table.html +++ b/latest/_modules/gcloud/bigquery/table.html @@ -5,7 +5,7 @@ - gcloud.bigquery.table — gcloud 3687302 documentation + gcloud.bigquery.table — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/client.html b/latest/_modules/gcloud/client.html index 2d377943f675..b6f12b60be6e 100644 --- a/latest/_modules/gcloud/client.html +++ b/latest/_modules/gcloud/client.html @@ -5,7 +5,7 @@ - gcloud.client — gcloud 3687302 documentation + gcloud.client — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/connection.html b/latest/_modules/gcloud/connection.html index 7d6061627d7d..c9c6259163c1 100644 --- a/latest/_modules/gcloud/connection.html +++ b/latest/_modules/gcloud/connection.html @@ -5,7 +5,7 @@ - gcloud.connection — gcloud 3687302 documentation + gcloud.connection — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

@@ -162,16 +162,9 @@

Source code for gcloud.connection

     USER_AGENT = "gcloud-python/{0}".format(get_distribution('gcloud').version)
     """The user agent for gcloud-python requests."""
 
-    SCOPE = None
-    """The scopes required for authenticating with a service.
-
-    Needs to be set by subclasses.
-    """
-
     def __init__(self, credentials=None, http=None):
         self._http = http
-        self._credentials = self._create_scoped_credentials(
-            credentials, self.SCOPE)
+        self._credentials = credentials
 
     @property
     def credentials(self):
diff --git a/latest/_modules/gcloud/credentials.html b/latest/_modules/gcloud/credentials.html
index 5ea461a49f7e..d1ded5ac7d78 100644
--- a/latest/_modules/gcloud/credentials.html
+++ b/latest/_modules/gcloud/credentials.html
@@ -5,7 +5,7 @@
   
     
     
-    gcloud.credentials — gcloud 3687302 documentation
+    gcloud.credentials — gcloud 3a16149 documentation
     
     
     
@@ -14,7 +14,7 @@
     
     
     
-    
+    
      
   
   
@@ -65,7 +65,7 @@ 

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/datastore/batch.html b/latest/_modules/gcloud/datastore/batch.html index f63949edf17d..068d3da07313 100644 --- a/latest/_modules/gcloud/datastore/batch.html +++ b/latest/_modules/gcloud/datastore/batch.html @@ -5,7 +5,7 @@ - gcloud.datastore.batch — gcloud 3687302 documentation + gcloud.datastore.batch — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/datastore/client.html b/latest/_modules/gcloud/datastore/client.html index bbf9cde66c0a..97e4b9dcad6f 100644 --- a/latest/_modules/gcloud/datastore/client.html +++ b/latest/_modules/gcloud/datastore/client.html @@ -5,7 +5,7 @@ - gcloud.datastore.client — gcloud 3687302 documentation + gcloud.datastore.client — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/datastore/connection.html b/latest/_modules/gcloud/datastore/connection.html index 86800e391c5c..640b1e46e0ef 100644 --- a/latest/_modules/gcloud/datastore/connection.html +++ b/latest/_modules/gcloud/datastore/connection.html @@ -5,7 +5,7 @@ - gcloud.datastore.connection — gcloud 3687302 documentation + gcloud.datastore.connection — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

@@ -115,6 +115,11 @@

Source code for gcloud.datastore.connection

 from gcloud.datastore import _datastore_v1_pb2 as datastore_pb
 
 
+SCOPE = ('https://www.googleapis.com/auth/datastore',
+         'https://www.googleapis.com/auth/userinfo.email')
+"""The scopes required for authenticating as a Cloud Datastore consumer."""
+
+
 
[docs]class Connection(connection.Connection): """A connection to the Google Cloud Datastore via the Protobuf API. @@ -139,11 +144,8 @@

Source code for gcloud.datastore.connection

                         '/datasets/{dataset_id}/{method}')
     """A template for the URL of a particular API call."""
 
-    SCOPE = ('https://www.googleapis.com/auth/datastore',
-             'https://www.googleapis.com/auth/userinfo.email')
-    """The scopes required for authenticating as a Cloud Datastore consumer."""
-
     def __init__(self, credentials=None, http=None, api_base_url=None):
+        credentials = self._create_scoped_credentials(credentials, SCOPE)
         super(Connection, self).__init__(credentials=credentials, http=http)
         if api_base_url is None:
             api_base_url = os.getenv(GCD_HOST,
diff --git a/latest/_modules/gcloud/datastore/entity.html b/latest/_modules/gcloud/datastore/entity.html
index bd74e15432e4..3e92328c7619 100644
--- a/latest/_modules/gcloud/datastore/entity.html
+++ b/latest/_modules/gcloud/datastore/entity.html
@@ -5,7 +5,7 @@
   
     
     
-    gcloud.datastore.entity — gcloud 3687302 documentation
+    gcloud.datastore.entity — gcloud 3a16149 documentation
     
     
     
@@ -14,7 +14,7 @@
     
     
     
-    
+    
      
   
   
@@ -65,7 +65,7 @@ 

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/datastore/key.html b/latest/_modules/gcloud/datastore/key.html index c4421f144d68..0256f86490ae 100644 --- a/latest/_modules/gcloud/datastore/key.html +++ b/latest/_modules/gcloud/datastore/key.html @@ -5,7 +5,7 @@ - gcloud.datastore.key — gcloud 3687302 documentation + gcloud.datastore.key — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/datastore/query.html b/latest/_modules/gcloud/datastore/query.html index 4e88ab8ea35c..804d7aa4ccf5 100644 --- a/latest/_modules/gcloud/datastore/query.html +++ b/latest/_modules/gcloud/datastore/query.html @@ -5,7 +5,7 @@ - gcloud.datastore.query — gcloud 3687302 documentation + gcloud.datastore.query — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/datastore/transaction.html b/latest/_modules/gcloud/datastore/transaction.html index b8e63a3e6f1f..8cf79366d541 100644 --- a/latest/_modules/gcloud/datastore/transaction.html +++ b/latest/_modules/gcloud/datastore/transaction.html @@ -5,7 +5,7 @@ - gcloud.datastore.transaction — gcloud 3687302 documentation + gcloud.datastore.transaction — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/exceptions.html b/latest/_modules/gcloud/exceptions.html index fab847b6e2f0..4b1261ed2682 100644 --- a/latest/_modules/gcloud/exceptions.html +++ b/latest/_modules/gcloud/exceptions.html @@ -5,7 +5,7 @@ - gcloud.exceptions — gcloud 3687302 documentation + gcloud.exceptions — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/pubsub/client.html b/latest/_modules/gcloud/pubsub/client.html index 0b20bdfa037a..70a41c4a522a 100644 --- a/latest/_modules/gcloud/pubsub/client.html +++ b/latest/_modules/gcloud/pubsub/client.html @@ -5,7 +5,7 @@ - gcloud.pubsub.client — gcloud 3687302 documentation + gcloud.pubsub.client — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/pubsub/connection.html b/latest/_modules/gcloud/pubsub/connection.html index c0a575cb3ab5..88ed0e6b01d5 100644 --- a/latest/_modules/gcloud/pubsub/connection.html +++ b/latest/_modules/gcloud/pubsub/connection.html @@ -5,7 +5,7 @@ - gcloud.pubsub.connection — gcloud 3687302 documentation + gcloud.pubsub.connection — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

@@ -110,16 +110,13 @@

Source code for gcloud.pubsub.connection

 from gcloud import connection as base_connection
 
 
-
[docs]class Connection(base_connection.JSONConnection): - """A connection to Google Cloud Pubsub via the JSON REST API. +SCOPE = ('https://www.googleapis.com/auth/pubsub', + 'https://www.googleapis.com/auth/cloud-platform') +"""The scopes required for authenticating as a Cloud Pub/Sub consumer.""" - :type credentials: :class:`oauth2client.client.OAuth2Credentials` - :param credentials: (Optional) The OAuth2 Credentials to use for this - connection. - :type http: :class:`httplib2.Http` or class that defines ``request()``. - :param http: (Optional) HTTP object to make requests. - """ +
[docs]class Connection(base_connection.JSONConnection): + """A connection to Google Cloud Pubsub via the JSON REST API.""" API_BASE_URL = 'https://pubsub.googleapis.com' """The base of the API call URL.""" @@ -130,9 +127,9 @@

Source code for gcloud.pubsub.connection

     API_URL_TEMPLATE = '{api_base_url}/{api_version}{path}'
     """A template for the URL of a particular API call."""
 
-    SCOPE = ('https://www.googleapis.com/auth/pubsub',
-             'https://www.googleapis.com/auth/cloud-platform')
-    """The scopes required for authenticating as a Cloud Pub/Sub consumer."""
+ def __init__(self, credentials=None, http=None): + credentials = self._create_scoped_credentials(credentials, SCOPE) + super(Connection, self).__init__(credentials=credentials, http=http)
diff --git a/latest/_modules/gcloud/pubsub/subscription.html b/latest/_modules/gcloud/pubsub/subscription.html index 89272aae8dec..a6b644d4625b 100644 --- a/latest/_modules/gcloud/pubsub/subscription.html +++ b/latest/_modules/gcloud/pubsub/subscription.html @@ -5,7 +5,7 @@ - gcloud.pubsub.subscription — gcloud 3687302 documentation + gcloud.pubsub.subscription — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/pubsub/topic.html b/latest/_modules/gcloud/pubsub/topic.html index 8ba1b7ece4ad..220f634ac982 100644 --- a/latest/_modules/gcloud/pubsub/topic.html +++ b/latest/_modules/gcloud/pubsub/topic.html @@ -5,7 +5,7 @@ - gcloud.pubsub.topic — gcloud 3687302 documentation + gcloud.pubsub.topic — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/resource_manager/client.html b/latest/_modules/gcloud/resource_manager/client.html index ac6a2821ee04..81a48d980e28 100644 --- a/latest/_modules/gcloud/resource_manager/client.html +++ b/latest/_modules/gcloud/resource_manager/client.html @@ -5,7 +5,7 @@ - gcloud.resource_manager.client — gcloud 3687302 documentation + gcloud.resource_manager.client — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/resource_manager/connection.html b/latest/_modules/gcloud/resource_manager/connection.html index 94eaf18eeffd..ce50e34b8787 100644 --- a/latest/_modules/gcloud/resource_manager/connection.html +++ b/latest/_modules/gcloud/resource_manager/connection.html @@ -5,7 +5,7 @@ - gcloud.resource_manager.connection — gcloud 3687302 documentation + gcloud.resource_manager.connection — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

@@ -113,16 +113,12 @@

Source code for gcloud.resource_manager.connection

from gcloud import connection as base_connection -
[docs]class Connection(base_connection.JSONConnection): - """A connection to Google Cloud Resource Manager via the JSON REST API. +SCOPE = ('https://www.googleapis.com/auth/cloud-platform',) +"""The scopes required for authenticating as a Resouce Manager consumer.""" - :type credentials: :class:`oauth2client.client.OAuth2Credentials` - :param credentials: (Optional) The OAuth2 Credentials to use for this - connection. - :type http: :class:`httplib2.Http` or class that defines ``request()``. - :param http: (Optional) HTTP object to make requests. - """ +
[docs]class Connection(base_connection.JSONConnection): + """A connection to Google Cloud Resource Manager via the JSON REST API.""" API_BASE_URL = 'https://cloudresourcemanager.googleapis.com' """The base of the API call URL.""" @@ -133,9 +129,6 @@

Source code for gcloud.resource_manager.connection

API_URL_TEMPLATE = '{api_base_url}/{api_version}{path}' """A template for the URL of a particular API call.""" - SCOPE = ('https://www.googleapis.com/auth/cloud-platform',) - """The scopes required for authenticating as a Resouce Manager consumer.""" - def __init__(self, credentials=None, http=None): if isinstance(credentials, AssertionCredentials): message = ('credentials (%r) inherits from ' @@ -143,6 +136,7 @@

Source code for gcloud.resource_manager.connection

'used with the Resource Manager API. ' % (credentials,)) raise TypeError(message) + credentials = self._create_scoped_credentials(credentials, SCOPE) super(Connection, self).__init__(credentials=credentials, http=http)

diff --git a/latest/_modules/gcloud/resource_manager/project.html b/latest/_modules/gcloud/resource_manager/project.html index 691bd6a6d259..8c7f7d8198a4 100644 --- a/latest/_modules/gcloud/resource_manager/project.html +++ b/latest/_modules/gcloud/resource_manager/project.html @@ -5,7 +5,7 @@ - gcloud.resource_manager.project — gcloud 3687302 documentation + gcloud.resource_manager.project — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/storage/acl.html b/latest/_modules/gcloud/storage/acl.html index 8508ef442ddc..27dd59fd9f47 100644 --- a/latest/_modules/gcloud/storage/acl.html +++ b/latest/_modules/gcloud/storage/acl.html @@ -5,7 +5,7 @@ - gcloud.storage.acl — gcloud 3687302 documentation + gcloud.storage.acl — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/storage/blob.html b/latest/_modules/gcloud/storage/blob.html index 0a7b4edeca68..6e8240deeb7a 100644 --- a/latest/_modules/gcloud/storage/blob.html +++ b/latest/_modules/gcloud/storage/blob.html @@ -5,7 +5,7 @@ - gcloud.storage.blob — gcloud 3687302 documentation + gcloud.storage.blob — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/storage/bucket.html b/latest/_modules/gcloud/storage/bucket.html index d9b347342f52..4910a026e7de 100644 --- a/latest/_modules/gcloud/storage/bucket.html +++ b/latest/_modules/gcloud/storage/bucket.html @@ -5,7 +5,7 @@ - gcloud.storage.bucket — gcloud 3687302 documentation + gcloud.storage.bucket — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/storage/client.html b/latest/_modules/gcloud/storage/client.html index c232869af5c7..f7b558f6a82f 100644 --- a/latest/_modules/gcloud/storage/client.html +++ b/latest/_modules/gcloud/storage/client.html @@ -5,7 +5,7 @@ - gcloud.storage.client — gcloud 3687302 documentation + gcloud.storage.client — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

diff --git a/latest/_modules/gcloud/storage/connection.html b/latest/_modules/gcloud/storage/connection.html index 8c6d352aeb39..bab6743d56bd 100644 --- a/latest/_modules/gcloud/storage/connection.html +++ b/latest/_modules/gcloud/storage/connection.html @@ -5,7 +5,7 @@ - gcloud.storage.connection — gcloud 3687302 documentation + gcloud.storage.connection — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - + @@ -65,7 +65,7 @@

- + Report an Issue @@ -77,7 +77,7 @@

@@ -110,16 +110,14 @@

Source code for gcloud.storage.connection

 from gcloud import connection as base_connection
 
 
-
[docs]class Connection(base_connection.JSONConnection): - """A connection to Google Cloud Storage via the JSON REST API. +SCOPE = ('https://www.googleapis.com/auth/devstorage.full_control', + 'https://www.googleapis.com/auth/devstorage.read_only', + 'https://www.googleapis.com/auth/devstorage.read_write') +"""The scopes required for authenticating as a Cloud Storage consumer.""" - :type credentials: :class:`oauth2client.client.OAuth2Credentials` - :param credentials: (Optional) The OAuth2 Credentials to use for this - connection. - :type http: :class:`httplib2.Http` or class that defines ``request()``. - :param http: (Optional) HTTP object to make requests. - """ +
[docs]class Connection(base_connection.JSONConnection): + """A connection to Google Cloud Storage via the JSON REST API.""" API_BASE_URL = base_connection.API_BASE_URL """The base of the API call URL.""" @@ -130,10 +128,9 @@

Source code for gcloud.storage.connection

     API_URL_TEMPLATE = '{api_base_url}/storage/{api_version}{path}'
     """A template for the URL of a particular API call."""
 
-    SCOPE = ('https://www.googleapis.com/auth/devstorage.full_control',
-             'https://www.googleapis.com/auth/devstorage.read_only',
-             'https://www.googleapis.com/auth/devstorage.read_write')
-    """The scopes required for authenticating as a Cloud Storage consumer."""
+ def __init__(self, credentials=None, http=None): + credentials = self._create_scoped_credentials(credentials, SCOPE) + super(Connection, self).__init__(credentials=credentials, http=http)
diff --git a/latest/_modules/index.html b/latest/_modules/index.html index e2a6a90c7a45..9b19e7744d52 100644 --- a/latest/_modules/index.html +++ b/latest/_modules/index.html @@ -5,7 +5,7 @@ - Overview: module code — gcloud 3687302 documentation + Overview: module code — gcloud 3a16149 documentation @@ -14,7 +14,7 @@ - +