From dbd85c3c59a8307234ab160dffb03b518564c0fd Mon Sep 17 00:00:00 2001 From: IlyaFaer Date: Fri, 13 Mar 2020 14:49:50 +0300 Subject: [PATCH] docs(storage): few spelling fixes for generate_signed_url() --- google/cloud/storage/blob.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/google/cloud/storage/blob.py b/google/cloud/storage/blob.py index 2ba2da1c3..59b4b94a0 100644 --- a/google/cloud/storage/blob.py +++ b/google/cloud/storage/blob.py @@ -438,23 +438,22 @@ def generate_signed_url( :type headers: dict :param headers: (Optional) Additional HTTP headers to be included as part of the - signed URLs. See: + signed URLs. See: https://cloud.google.com/storage/docs/xml-api/reference-headers Requests using the signed URL *must* pass the specified header (name and value) with each request for the URL. :type query_parameters: dict :param query_parameters: - (Optional) Additional query paramtersto be included as part of the - signed URLs. See: + (Optional) Additional query parameters to be included as part of the + signed URLs. See: https://cloud.google.com/storage/docs/xml-api/reference-headers#query :type client: :class:`~google.cloud.storage.client.Client` or ``NoneType`` - :param client: (Optional) The client to use. If not passed, falls back + :param client: (Optional) The client to use. If not passed, falls back to the ``client`` stored on the blob's bucket. - :type credentials: :class:`google.auth.credentials.Credentials` or :class:`NoneType` :param credentials: The authorization credentials to attach to requests. @@ -479,8 +478,8 @@ def generate_signed_url( :type bucket_bound_hostname: str :param bucket_bound_hostname: - (Optional) If pass, then construct the URL relative to the bucket-bound hostname. - Value cane be a bare or with scheme, e.g., 'example.com' or 'http://example.com'. + (Optional) If passed, then construct the URL relative to the bucket-bound hostname. + Value can be a bare or with scheme, e.g., 'example.com' or 'http://example.com'. See: https://cloud.google.com/storage/docs/request-endpoints#cname :type scheme: str