🐍 The official Python client library for Google's discovery based APIs.

Overview

Google API Client

PyPI version

This is the Python client library for Google's discovery based APIs. To get started, please see the docs folder.

These client libraries are officially supported by Google. However, the libraries are considered complete and are in maintenance mode. This means that we will address critical bugs and security issues but will not add any new features.

Documentation

See the docs folder for more detailed instructions and additional documentation.

Other Google API libraries

For Google Cloud Platform APIs such as Datastore, Cloud Storage or Pub/Sub, we recommend using Cloud Client Libraries for Python.

For Google Ads API, we recommend using Google Ads API Client Library for Python.

For Google Firebase Admin API, we recommend using Firebase Admin Python SDK.

Installation

Install this library in a virtualenv using pip. virtualenv is a tool to create isolated Python environments. The basic problem it addresses is one of dependencies and versions, and indirectly permissions.

With virtualenv, it's possible to install this library without needing system install permissions, and without clashing with the installed system dependencies.

Mac/Linux

pip install virtualenv
virtualenv <your-env>
source <your-env>/bin/activate
<your-env>/bin/pip install google-api-python-client

Windows

pip install virtualenv
virtualenv <your-env>
<your-env>\Scripts\activate
<your-env>\Scripts\pip.exe install google-api-python-client

Supported Python Versions

Python 3.6, 3.7, 3.8, and 3.9 are fully supported and tested. This library may work on later versions of 3, but we do not currently run tests against those versions.

Unsupported Python Versions

Python < 3.6

Third Party Libraries and Dependencies

The following libraries will be installed when you install the client library:

For development you will also need the following libraries:

Contributing

Please see our Contribution Guide. In particular, we love pull requests - but please make sure to sign the contributor license agreement.

Comments
  • Python 3

    Python 3

    Request for Python 3 support (continuing on from https://code.google.com/p/google-api-python-client/issues/detail?id=57). My use case is for using the popular editor Sublime Text 3 to interact with the Google API.

    :rotating_light: triage me 
    opened by rozling 87
  • Consider vendoring uritemplate

    Consider vendoring uritemplate

    We currently depending on uritemplate, however, there is another library named uritemplate.py that unfortunately has the same import path. Because of this if someone uses this library and another library that depends on uritemplate then neither work.

    uritemplate is one file and hasn't changed since 2013. - should we just consider vendoring it?

    :rotating_light: triage me 
    opened by theacodes 53
  • Broken Pipe exceptions raised after idle periods

    Broken Pipe exceptions raised after idle periods

    I'm using long-lived client objects like so:

    client = discovery.build(....)
    task = client.get_something(....).execute(num_retries=5)
    some_long_running_process(task)
    client.do_another_thing().execute(num_retries=5)
    

    And running into exceptions on the calls to do_another_thing():

    Traceback (most recent call last):
      File "/opt/app/gcp_helper.py", line 168, in get_size
        instanceGroupManager=instance_group).execute(num_retries=5)
      File "/opt/venv/local/lib/python2.7/site-packages/oauth2client/util.py", line 137, in positional_wrapper
        return wrapped(*args, **kwargs)
      File "/opt/venv/local/lib/python2.7/site-packages/googleapiclient/http.py", line 755, in execute
        method=str(self.method), body=self.body, headers=self.headers)
      File "/opt/venv/local/lib/python2.7/site-packages/googleapiclient/http.py", line 93, in _retry_request
        resp, content = http.request(uri, method, *args, **kwargs)
      File "/opt/venv/local/lib/python2.7/site-packages/oauth2client/client.py", line 633, in new_request
        self._refresh(request_orig)
      File "/opt/venv/local/lib/python2.7/site-packages/oauth2client/contrib/gce.py", line 129, in _refresh
        META, headers={'Metadata-Flavor': 'Google'})
      File "/opt/venv/local/lib/python2.7/site-packages/httplib2/__init__.py", line 1609, in request
        (response, content) = self._request(conn, authority, uri, request_uri, method, body, headers, redirections, cachekey)
      File "/opt/venv/local/lib/python2.7/site-packages/httplib2/__init__.py", line 1351, in _request
        (response, content) = self._conn_request(conn, request_uri, method, body, headers)
      File "/opt/venv/local/lib/python2.7/site-packages/httplib2/__init__.py", line 1273, in _conn_request
        conn.request(method, request_uri, body, headers)
      File "/usr/lib/python2.7/httplib.py", line 1001, in request
        self._send_request(method, url, body, headers)
      File "/usr/lib/python2.7/httplib.py", line 1035, in _send_request
        self.endheaders(body)
      File "/usr/lib/python2.7/httplib.py", line 997, in endheaders
        self._send_output(message_body)
      File "/usr/lib/python2.7/httplib.py", line 850, in _send_output
        self.send(msg)
      File "/usr/lib/python2.7/httplib.py", line 826, in send
        self.sock.sendall(data)
      File "/usr/lib/python2.7/socket.py", line 224, in meth
        return getattr(self._sock,name)(*args)
    error: [Errno 32] Broken pipe"
    

    I would expect the num_retries argument to handle these exceptions in https://github.com/google/google-api-python-client/blob/master/googleapiclient/http.py#L145, but for the time being I have to implement my own retry logic around all API calls to overcome this.

    :rotating_light: triage me 
    opened by tbonfort 48
  • Batch request for oauth2 token requests returns 400 Bad Request error

    Batch request for oauth2 token requests returns 400 Bad Request error

    I'm using google api client 1.7.4 with python 2.7 and unable to make successful batch requests with new_batch_http_request api. I keep getting 400 Bad Request error

    After debugging google api client lib, final request body is following :

    `--===============6159072106655335965== Content-Type: application/http MIME-Version: 1.0 Content-Transfer-Encoding: binary Content-ID: <943c8367-618b-4817-97d1-fe4f4005af25+0AL0173QlVaLoUk9PVA%40%40%3F%7C%3F%40%40administrator%40testcloudlockprimary1.com>

    POST /oauth2/v4/token HTTP/1.1 Content-Type: application/json; charset=utf-8 MIME-Version: 1.0 Host: www.googleapis.com content-length: 715

    grant_type=urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Ajwt-bearer&assertion=<assertion_code> `

    Here is what code looks like : ###code to build batch request and nested requests####### ` logger.info('Refreshing credentials for %s users', len(creds_to_refresh))

       oauth_service = build('oauth2', 'v2', http=LoggingHttp())
        batch_request = oauth_service.new_batch_http_request()
    
        for request_id, creds in six.iteritems(credentials_to_refresh):
            request = build_token_request(creds)
            batch_request.add(request, request_id=request_id)
    
        batch_request.execute()
    
       def build_token_request(creds):
            request = HttpRequest(http=LoggingHttp(), postproc=_postproc,
                          uri=creds.token_uri,
                          method='POST',
                          body=creds._generate_request_body(),
                          headers=creds._generate_request_headers())
             return request
    

    ###methods generating request body and headers###

           def _generate_request_body(self):
                 assertion = self._generate_assertion()
                 body = urllib.parse.urlencode({
                     'assertion': assertion,
                      'grant_type': 'urn:ietf:params:oauth:grant-type:jwt-bearer',
                 })
              return body
    
         def _generate_request_headers(self):
               """Generate the headers that will be used in the refresh request."""
                   headers = {
                                 'content-type': 'application/json; charset=utf-8',
                             }
                  if self.user_agent is not None:
                  headers['user-agent'] = self.user_agent
           return headers
    

    `

    type: question 
    opened by SwapnaReddyL 34
  • SSLEOFError: EOF occurred in violation of protocol (_ssl.c:590)

    SSLEOFError: EOF occurred in violation of protocol (_ssl.c:590)

    After installing this package on python 2.7.10 and using Google Admin API I get tons of these errors in an intermittent fashion:

      File "/usr/local/lib/python2.7/site-packages/oauth2client/util.py", line 135, in positional_wrapper
        return wrapped(*args, **kwargs)
      File "/usr/local/lib/python2.7/site-packages/googleapiclient/http.py", line 827, in execute
        method=str(self.method), body=self.body, headers=self.headers)
      File "/usr/local/lib/python2.7/site-packages/googleapiclient/http.py", line 167, in _retry_request
        raise exception
    SSLEOFError: EOF occurred in violation of protocol (_ssl.c:590)
    

    I'm using Ubuntu 14.04:

    $ openssl version
    OpenSSL 1.0.1f 6 Jan 2014
    
    
    [email protected]:~$ python
    Python 2.7.10 (default, Sep  7 2015, 14:45:00) 
    [GCC 4.8.4] on linux2
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import ssl
    >>> ssl.OPENSSL_VERSION
    'OpenSSL 1.0.1f 6 Jan 2014'
    

    Any ideas on how to fix this?

    :rotating_light: triage me 
    opened by carlopires 34
  • SSLHandshakeError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:661)

    SSLHandshakeError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:661)

    I'm getting SSL error after oauth2 authentication

    Warning (from warnings module): File "C:\Python27\lib\site-packages\oauth2client_helpers.py", line 255 warnings.warn(_MISSING_FILE_MESSAGE.format(filename)) UserWarning: Cannot access analytics.dat: No such file or directory

    Your browser has been opened to visit:

    https://accounts.google.com/o/oauth2/auth?scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fanalytics.readonly&redirect_uri=http%3A%2F%2Flocalhost%3A8080%2F&response_type=code&client_id=907191080091-sn5in526069n94ubml97pcc5ckk1n67k.apps.googleusercontent.com&access_type=offline
    

    If your browser is on a different machine then exit and re-run this application with the command-line parameter

    --noauth_local_webserver

    Traceback (most recent call last): File "C:\Users\mahevarma\Desktop\analytics\HelloAnalytics.py", line 113, in main() File "C:\Users\mahevarma\Desktop\analytics\HelloAnalytics.py", line 107, in main service = get_service('analytics', 'v3', scope, 'client_secrets.json') File "C:\Users\mahevarma\Desktop\analytics\HelloAnalytics.py", line 43, in get_service credentials = tools.run_flow(flow, storage, flags) File "C:\Python27\lib\site-packages\oauth2client_helpers.py", line 133, in positional_wrapper return wrapped(*args, **kwargs) File "C:\Python27\lib\site-packages\oauth2client\tools.py", line 243, in run_flow credential = flow.step2_exchange(code, http=http) File "C:\Python27\lib\site-packages\oauth2client_helpers.py", line 133, in positional_wrapper return wrapped(*args, **kwargs) File "C:\Python27\lib\site-packages\oauth2client\client.py", line 2054, in step2_exchange http, self.token_uri, method='POST', body=body, headers=headers) File "C:\Python27\lib\site-packages\oauth2client\transport.py", line 282, in request connection_type=connection_type) File "C:\Python27\lib\site-packages\httplib2_init_.py", line 1659, in request (response, content) = self.request(conn, authority, uri, request_uri, method, body, headers, redirections, cachekey) File "C:\Python27\lib\site-packages\httplib2_init.py", line 1399, in _request (response, content) = self.conn_request(conn, request_uri, method, body, headers) File "C:\Python27\lib\site-packages\httplib2_init.py", line 1319, in conn_request conn.connect() File "C:\Python27\lib\site-packages\httplib2_init.py", line 1092, in connect raise SSLHandshakeError(e) SSLHandshakeError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:661)

    :rotating_light: triage me 
    opened by mahevarma 33
  • Add retry on rate limiting API responses and timeouts. Fixes #170 and #162.

    Add retry on rate limiting API responses and timeouts. Fixes #170 and #162.

    Retry on rate-limiting API responses, based on https://developers.google.com/google-apps/calendar/v3/errors and https://tools.ietf.org/html/rfc6585#section-4.

    Also retry on network timeout errors.

    cla: no 
    opened by eesheesh 32
  • httplib2 v0.16.0 breaks the library

    httplib2 v0.16.0 breaks the library

    Recently updated httplib2 library (v0.16.0) have a breaking change causing this Exception:

    httplib2.RedirectMissingLocation: Redirected but response is missing a location: header

    Steps to reproduce:

    1. pip install --upgrade httplib2
    2. Now use the google drive library to upload a file (This is where I encountered the bug, it may break while using other stuffs a well)

    It should either force to use 0.15.0 version of httplib2 or adapt the breaking changes introduced in the new version.

    A temporary fix for those using the client library would be to add httplib2==0.15.0 in requirements,txt of the project

    type: bug priority: p2 
    opened by lzzy12 30
  • Not getting refresh token even though access_type is offline in step1

    Not getting refresh token even though access_type is offline in step1

    Hi,

    I'm doing some work with Google Search Console API. Before I start using the API, I need to get oauth credentials of the client: authorize my app to get access tokens to call the Search Console API on his behalf and do modifications to his Search Console data.

    I'm doing the needed step1 and step2 flow exchange calls, but still I'm not getting any refresh token whatsoever, even though access_type is set to offline in the authorize url generated in step1.

    Am I missing something?

    Here's my code:

    authorize_url = flow.step1_get_authorize_url()
    

    And the url is like:

    https://accounts.google.com/o/oauth2/auth?scope=https://www.googleapis.com/auth/webmasters&redirect_uri=http://mywebsite.com/google/scapi/callback/&response_type=code&client_id=redacted_client_id&access_type=offline
    

    And then in my callback handler:

    credentials = flow.step2_exchange(code)
    

    Here's the json I'm getting from the Credentials object:

    {
      "_module": "oauth2client.client",
      "token_expiry": "2016-04-05T12:46:24Z",
      "access_token": "ya29.. -- redacted --",
      "token_uri": "https://accounts.google.com/o/oauth2/token",
      "invalid": false,
      "token_response": {
        "access_token": "ya29.. -- redacted --",
        "token_type": "Bearer",
        "expires_in": 3419
      },
      "client_id": " -- redacted --",
      "id_token": null,
      "client_secret": " -- redacted --",
      "revoke_uri": "https://accounts.google.com/o/oauth2/revoke",
      "_class": "OAuth2Credentials",
      "refresh_token": null,
      "user_agent": null
    }
    
    :rotating_light: triage me 
    opened by noodlebreak 29
  • Implemented automatic caching for the discovery documents.

    Implemented automatic caching for the discovery documents.

    Added 2 keyword arguments; cache_discovery and cache. You can suppress caching by setting cache_discovery=False. You can inject your own caching module via the cache kwarg.

    It automatically uses app engine memcache if it's detected. It's not a hard dependency. Then fall back to file based caching.

    fixes #110

    cla: yes 
    opened by tmatsuo 29
  • Update

    Update "Sending e-mail" docs to work with Python 3

    The documentation for sending e-mails doesn't seem to work when using Python 3. Also, I can't seem to get e-mail sending working with Python 3 when sending binary (PDF) attachments. The code I'm using worked with Python 2. Details are below.

    The Gmail REST API documentation for sending e-mail says to do the following:

    raw = base64.urlsafe_b64encode(mime.as_string())
    body = {'raw': raw}
    messages = service.users().messages()
    message = messages.send(userId='me', body=body).execute()
    

    However, this code results in the following error:

    File "/Users/chris/dev/.virtualenvs/my_package/lib/python3.4/base64.py", line 121, in urlsafe_b64encode
      return b64encode(s).translate(_urlsafe_encode_translation)
    File "/Users/chris/dev/.virtualenvs/my_package/lib/python3.4/base64.py", line 62, in b64encode
      encoded = binascii.b2a_base64(s)[:-1]
    TypeError: 'str' does not support the buffer interface
    

    Changing as_string() in the above to as_bytes():

    raw = base64.urlsafe_b64encode(mime.as_bytes())
    body = {'raw': raw}
    messages = service.users().messages()
    message = messages.send(userId='me', body=body).execute()
    

    results in the following error:

    File "/Users/chris/dev/.virtualenvs/my_package/lib/python3.4/site-packages/googleapiclient/discovery.py", line 691, in method
      actual_path_params, actual_query_params, body_value)
    File "/Users/chris/dev/.virtualenvs/my_package/lib/python3.4/site-packages/googleapiclient/model.py", line 149, in request
      body_value = self.serialize(body_value)
    File "/Users/chris/dev/.virtualenvs/my_package/lib/python3.4/site-packages/googleapiclient/model.py", line 258, in serialize
      return json.dumps(body_value)
    File "/opt/local/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/json/__init__.py", line 230, in dumps
      return _default_encoder.encode(obj)
    File "/opt/local/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/json/encoder.py", line 192, in encode
      chunks = self.iterencode(o, _one_shot=True)
    File "/opt/local/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/json/encoder.py", line 250, in iterencode
      return _iterencode(o, 0)
    File "/opt/local/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/json/encoder.py", line 173, in default
      raise TypeError(repr(o) + " is not JSON serializable")
    TypeError: b'Q29ud...TY9PS0tCg==' is not JSON serializable
    

    If I add raw = raw.decode() to ensure that raw is a string in Python 3 as opposed to bytes, then the e-mail does get sent. However, the PDF attachment now seems to be corrupted:

    raw = base64.urlsafe_b64encode(mime.as_bytes())
    raw = raw.decode()
    body = {'raw': raw}
    messages = service.users().messages()
    message = messages.send(userId='me', body=body).execute()
    
    :rotating_light: triage me 
    opened by cjerdonek 28
  • Create a stackdriver account, and add monitored projects to it

    Create a stackdriver account, and add monitored projects to it

    Problem

    I'm trying to use stackdriver api to create a stackdriver account and add a monitored projects to it. The same script used to work a month ago, now I cannot find any documentation or deprecation notice regarding this.

    Environment details

    • OS type and version: Linux 56dd69d3fc63 5.10.104-linuxkit #1 SMP PREEMPT Thu Mar 17 17:05:54 UTC 2022 aarch64 GNU/Linux
    • Python version: Python 3.8.16
    • pip version: pip 22.0.4 (python 3.8)
    • google-api-python-client version: 1.10.1

    Steps to reproduce

    1. build client with this configuration: service = build("stackdriver", "v2")
    2. fetch accounts service.accounts()

    Code example

    service = build(API_SERVICE_NAME, API_VERSION, credentials=credentials, discoveryServiceUrl=URI + api_key)
    service.accounts()
    

    Stack trace

    AttributeError: 'Resource' object has no attribute 'accounts'
    
    opened by stefanm8 0
  • Delete appscript project via the python api client

    Delete appscript project via the python api client

    Is your feature request related to a problem? Please describe.

    It would be better if we had an option to delete appscript projects using the python api client with the script service, rather than having to use a separate service like gdrive to remove the file

    Describe the solution you'd like

    for now what we do for creating a project is the following :

    service = build('script', 'v1', credentials=creds)
    request = {'title': 'My Project'}
    service.projects().create(body=request).execute()
    

    I would like a similar functionality to delete the script project which is created using the above code an example of what i want would look like:

    service = build('script', 'v1', credentials=creds)
    request = {'title': 'My Project'}
    service.projects().delete(body=request).execute()
    

    Describe alternatives you've considered

    script = build('script', 'v1', credentials=creds)
    drive = build('drive', 'v3', credentials=creds)
    
    request = {'title': 'My Project'}
    response = service.projects().create(body=request).execute()
    
    drive.files().delete(fileId=response['scriptId']).execute()
    
    opened by w1redch4d 0
  • Batch call to PlaylistItems: insert produces intermittent HttpError 500

    Batch call to PlaylistItems: insert produces intermittent HttpError 500

    Environment details

    • OS type and version: Windows 11 Pro (22H2)
    • Python version: 3.10.9
    • pip version: 22.0.2
    • google-api-python-client version: 2.70.0

    Code example

    # -*- coding: utf-8 -*-
    
    import os
    import pickle
    
    import google_auth_oauthlib.flow
    import googleapiclient.discovery
    import googleapiclient.errors
    
    # YouTube API variables
    scopes = ["https://www.googleapis.com/auth/youtube.force-ssl"]
    client_secrets_file = "client_secret.json"
    api_service_name = "youtube"
    api_version = "v3"
    
    def main():
        # Disable OAuthlib's HTTPS verification when running locally.
        # *DO NOT* leave this option enabled in production.
        # os.environ["OAUTHLIB_INSECURE_TRANSPORT"] = "1"
        # Get credentials and create an API client
        flow = google_auth_oauthlib.flow.InstalledAppFlow.from_client_secrets_file(
            client_secrets_file, scopes)
        youtube = get_authenticated_service()
        batch = youtube.new_batch_http_request(callback=insert_callback)
    
        playlistId = "PL2iXsIOEmdYXFsP-Clp8w1Pf5chGN0i1S"
        video_ids   = [ 
                       "d7ypnPjz81I",
                       "vZv9-TWdBJM",
                       "7uG6E6bVKU0",
                       "8EzfBYFU8Q0" 
                     ]
    
        # Create a list of playlist items, one for each video ID
        playlist_items = []
        for video_id in video_ids:
            batch.add(youtube.playlistItems().insert(
                part="snippet",
                body={
                  "snippet": {
                    "playlistId": playlistId, #an actual playlistid
                    #"position": 0,
                    "resourceId": {
                      "kind": "youtube#video",
                      "videoId": video_id
                    }
                  }
                }
              )
            )
    
        # Use the batch method to add the playlist items to the playlist in a single API call
        response = batch.execute()
    
        print(response)
    
    def insert_callback(request_id, response, exception):
        if exception is not None:
            print(exception)
        else:
            print(response)
    
    # Check for pickled credentials. If found, use these to make API calls,
    # otherwise perform full authentication process
    def get_authenticated_service():
        if os.path.exists("CREDENTIALS_PICKLE_FILE"):
            with open("CREDENTIALS_PICKLE_FILE", 'rb') as f:
                credentials = pickle.load(f)
        else:
            flow = google_auth_oauthlib.flow.InstalledAppFlow.from_client_secrets_file(client_secrets_file, scopes)
            credentials = flow.run_console()
            with open("CREDENTIALS_PICKLE_FILE", 'wb') as f:
                pickle.dump(credentials, f)
        return googleapiclient.discovery.build(
            api_service_name, api_version, credentials=credentials)
    
    if __name__ == "__main__":
        main()
    

    Expected Result

    The videos are added to the playlist

    Actual Result

    Some videos are added, others produce the following reponse:

    <HttpError 500 when requesting https://youtube.googleapis.com/youtube/v3/playlistItems?part=snippet&alt=json returned "Internal error encountered.". Details: "[{'message': 'Internal error encountered.', 'domain': 'global', 'reason': 'backendError'}]">

    There is no pattern to which videos are added and which ones cause the error. A video that is added on one run can sometimes error out the next time the script is run.

    opened by thompcha 1
  • chore(main): release 2.71.0

    chore(main): release 2.71.0

    :robot: I have created a release beep boop

    2.71.0 (2022-12-20)

    Features

    • accesscontextmanager: Update the api https://togithub.com/googleapis/google-api-python-client/commit/038fdb69dcb6ea01f6eb56901ff0e76e6bbaf3ab (a0329cc)
    • alertcenter: Update the api https://togithub.com/googleapis/google-api-python-client/commit/6057d89b613fb2a30ac2d26b90933ad0afa083d1 (a0329cc)
    • androidenterprise: Update the api https://togithub.com/googleapis/google-api-python-client/commit/ec22103603074d33ad2a41bed36debc63b3bb528 (a0329cc)
    • apigee: Update the api https://togithub.com/googleapis/google-api-python-client/commit/43f435c459205c8305f248efe78e6bd72a1b95c3 (a0329cc)
    • batch: Update the api https://togithub.com/googleapis/google-api-python-client/commit/3dd983b5616c058887d38e9423388d236acc27dc (a0329cc)
    • clouddeploy: Update the api https://togithub.com/googleapis/google-api-python-client/commit/9a176a474cfd18a4b53d9b6b78bb432e6dd4cb0b (a0329cc)
    • compute: Update the api https://togithub.com/googleapis/google-api-python-client/commit/bba3627ef5ae35a101b223b3da2739224e1598aa (a0329cc)
    • container: Update the api https://togithub.com/googleapis/google-api-python-client/commit/98d6112970c5236cff5f36bf543a166ea27ca74c (a0329cc)
    • contentwarehouse: Update the api https://togithub.com/googleapis/google-api-python-client/commit/00fa4bb30f92fdc325b23bd71b3ebd57fdcce4c7 (a0329cc)
    • datafusion: Update the api https://togithub.com/googleapis/google-api-python-client/commit/db1dddc7ca75258fde5cc59997599ce57ad8f01d (a0329cc)
    • datamigration: Update the api https://togithub.com/googleapis/google-api-python-client/commit/12effe4a38299bb6f1fc61afeb1359200e9eff0b (a0329cc)
    • datapipelines: Update the api https://togithub.com/googleapis/google-api-python-client/commit/91b60afaa437d7b29a96d83d3b89e3e855a81598 (a0329cc)
    • dataplex: Update the api https://togithub.com/googleapis/google-api-python-client/commit/04bafe3e118a1bbb2c75fc7f4e2e105f04bd4434 (a0329cc)
    • dataproc: Update the api https://togithub.com/googleapis/google-api-python-client/commit/1ad16fafbdfbf4d983112e5e811ea75f3727e67a (a0329cc)
    • datastream: Update the api https://togithub.com/googleapis/google-api-python-client/commit/30f292141f98047d5acd526297f3f0e5bb79536e (a0329cc)
    • firestore: Update the api https://togithub.com/googleapis/google-api-python-client/commit/89b34a91c7b56b03d59648bb582d3db1c5e06a4a (a0329cc)
    • gmail: Update the api https://togithub.com/googleapis/google-api-python-client/commit/a4ca99c42e5c618e57071a800f49d784a0bb6eea (a0329cc)
    • notebooks: Update the api https://togithub.com/googleapis/google-api-python-client/commit/f732fd307f07f53afc5344620456d0e662f81624 (a0329cc)
    • retail: Update the api https://togithub.com/googleapis/google-api-python-client/commit/d94dee346b3ae88d9d28bd97098bd2aba8093850 (a0329cc)
    • speech: Update the api https://togithub.com/googleapis/google-api-python-client/commit/339a5d6c9cf9ecdcfe6c1ac33ae2ede71973584e (a0329cc)
    • texttospeech: Update the api https://togithub.com/googleapis/google-api-python-client/commit/ee942d9363c422443d9ec24c0dac8e373b37721f (a0329cc)
    • workloadmanager: Update the api https://togithub.com/googleapis/google-api-python-client/commit/93f0e30afae73ea3ce888783de0a6bf53604e40d (a0329cc)

    This PR was generated with Release Please. See documentation.

    autorelease: pending size: s 
    opened by release-please[bot] 0
  • Facing UnknownApiNameOrVersion error for GA4 API

    Facing UnknownApiNameOrVersion error for GA4 API

    Hi, I'm facing an UnknownApiNameOrVersion error when hitting the GA4 API. Below mentioned is the URL build code. Does anyone know how to give the version number?

    self.service = build(serviceName='analytics', version='v4', http=http)

    error: googleapiclient.errors.UnknownApiNameOrVersion: name: analytics version: v4

    opened by varunTirupathi 0
  • Why does google resource calendar turn into an unavailable room when I create it with its API?

    Why does google resource calendar turn into an unavailable room when I create it with its API?

    I posted the following question on StackOverflow as well without any response yet. That's why I decided to raise that here as well:

    I'm going to create a google resource calendar room via its API (i.e. https://admin.googleapis.com/admin/directory/v1/customer/my_customer/resources/calendars). But the problem is, when I create one, it turns into an unavailable (crossed out) room within google calendar rooms and I couldn't find any attribute to make it available!

    Here's the body request/response:

    {
      "kind": "admin#directory#resources#calendars#CalendarResource",
      "etags": "\"CTyc505ppdmJR2motHVsU17kzItOkPo5vYViqlSF0rU/FB0b765ZgWIpTBaxn5YQIwZWWNM\"",
      "resourceId": "9f698cdc-84f9-4688-95a7-c2207b4fa7ae",
      "resourceName": "StackOverflow Test",
      "generatedResourceName": "Orangery Hildesheim Nordstadt-EG-StackOverflow Test (3)",
      "resourceEmail": "[email protected]",
      "capacity": 3,
      "buildingId": "Orangery-Hildesheim-Nordstadt",
      "floorName": "EG",
      "resourceCategory": "CONFERENCE_ROOM"
    }
    

    Here's the output on google calendar:

    [enter image description here]1

    opened by agn-7 0
Releases(v2.70.0)
  • v2.70.0(Dec 13, 2022)

    2.70.0 (2022-12-13)

    Features

    • appengine: update the api https://togithub.com/googleapis/google-api-python-client/commit/f3ae3793e74aae883aa8f3bca7d2d75227c99cbd (1506e28)
    • bigquery: update the api https://togithub.com/googleapis/google-api-python-client/commit/9d8a28de9f2709a066cc62765132688f5a4eeba3 (1506e28)
    • chat: update the api https://togithub.com/googleapis/google-api-python-client/commit/4b6ec2a405226f54a846e820be38c4be7e161df3 (1506e28)
    • cloudbilling: update the api https://togithub.com/googleapis/google-api-python-client/commit/6de2af2c211a03d3f9443a89f222c1953d6bec9b (1506e28)
    • cloudchannel: update the api https://togithub.com/googleapis/google-api-python-client/commit/bfbc1b18e9676ab2a7ef322c9ae2ff40bfc0c05e (1506e28)
    • compute: update the api https://togithub.com/googleapis/google-api-python-client/commit/3ad8d540283d6153aeb7e7e5da043515fdd8feae (1506e28)
    • connectors: update the api https://togithub.com/googleapis/google-api-python-client/commit/632cba551d23e3ac8c9044c56f1e3ebbce77ba1c (1506e28)
    • contactcenterinsights: update the api https://togithub.com/googleapis/google-api-python-client/commit/6e512d6e138192e0312e44534b7904e95c36d0fe (1506e28)
    • container: update the api https://togithub.com/googleapis/google-api-python-client/commit/05c853aec288828267afb32571d7f5ad8ac97cdf (1506e28)
    • contentwarehouse: update the api https://togithub.com/googleapis/google-api-python-client/commit/720850e6a8a7cf0cd96170a3b82da993c2967b26 (1506e28)
    • dataflow: update the api https://togithub.com/googleapis/google-api-python-client/commit/1b55a02805496e9431dbf173221958419400f905 (1506e28)
    • dataproc: update the api https://togithub.com/googleapis/google-api-python-client/commit/952d0d1df1ce352ec5d53d9d2eb4fa07629d3c62 (1506e28)
    • documentai: update the api https://togithub.com/googleapis/google-api-python-client/commit/9e0a2601bc52633ff3e3f70800977724fd1f7e0b (1506e28)
    • gkehub: update the api https://togithub.com/googleapis/google-api-python-client/commit/e7a24b27433543dc8afd609bf6340a219456deef (1506e28)
    • ids: update the api https://togithub.com/googleapis/google-api-python-client/commit/d7ca9ebf543d4cb3dbfae00a58862c7300466741 (1506e28)
    • metastore: update the api https://togithub.com/googleapis/google-api-python-client/commit/23800233fe99f56885846fdcd927801b5641b6d3 (1506e28)
    • networksecurity: update the api https://togithub.com/googleapis/google-api-python-client/commit/5cd2d575dc6b58695c3c3f3d32424949f2189f0f (1506e28)
    • pubsublite: update the api https://togithub.com/googleapis/google-api-python-client/commit/ddc2cac9d91b7eb18421695895b41965c2658ac2 (1506e28)
    • recaptchaenterprise: update the api https://togithub.com/googleapis/google-api-python-client/commit/85bf9110ba2ab06d6cc22e8b6c4b7b74309ea0fd (1506e28)
    • servicenetworking: update the api https://togithub.com/googleapis/google-api-python-client/commit/310a96ffbd7672f55acc62a129f54b98b46506d9 (1506e28)
    • sts: update the api https://togithub.com/googleapis/google-api-python-client/commit/e5219026edb8f430f68775cf96e0195a39e1a613 (1506e28)
    • workflowexecutions: update the api https://togithub.com/googleapis/google-api-python-client/commit/3ff77236759bf338f5f295ae0e7453184bfbd745 (1506e28)
    Source code(tar.gz)
    Source code(zip)
  • v2.69.0(Dec 8, 2022)

    2.69.0 (2022-12-08)

    Features

    • analyticsadmin: update the api https://togithub.com/googleapis/google-api-python-client/commit/1277148ed4bb16c03802a6d11bb15ab138bf6c19 (fa65fca)
    • assuredworkloads: update the api https://togithub.com/googleapis/google-api-python-client/commit/0777a539623f6a0e5c0ee8a0014c49797e14a826 (fa65fca)
    • baremetalsolution: update the api https://togithub.com/googleapis/google-api-python-client/commit/21f9266331d46ae55a4749d485d5937797d75c03 (fa65fca)
    • batch: update the api https://github.com/googleapis/google-api-python-client/commit/5b1f5b056998a149f675ecdf8794563a9e9460fc (f6e9d38)
    • chat: update the api https://togithub.com/googleapis/google-api-python-client/commit/42d7975db499e1298a45b5d7ea086dddbfd3e5ec (fa65fca)
    • cloudbuild: update the api https://github.com/googleapis/google-api-python-client/commit/ef1b5979776140ff203a53e82d0427ebda0112c0 (f6e9d38)
    • cloudfunctions: update the api https://togithub.com/googleapis/google-api-python-client/commit/27456f04a82bd30a897822da45adba98b00d0b73 (fa65fca)
    • cloudsearch: update the api https://togithub.com/googleapis/google-api-python-client/commit/2ebbbba9e1ceac8db6b3a90e56d00bad3c6183c5 (fa65fca)
    • cloudsupport: update the api https://togithub.com/googleapis/google-api-python-client/commit/660300bb6094cdafa87016f16becc956489d723f (fa65fca)
    • composer: update the api https://togithub.com/googleapis/google-api-python-client/commit/b223e46fa38d9cabcf81b66ca78e9b1d4e88c01b (fa65fca)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/23ca08a7e9717d0aefff49823f4d594ed118ec25 (f6e9d38)
    • compute: update the api https://togithub.com/googleapis/google-api-python-client/commit/2a5e985835d9e6a6eff7d88c2d8aac08fa4677df (fa65fca)
    • content: update the api https://togithub.com/googleapis/google-api-python-client/commit/93233da7ebde3542aaa004402c77bc19e6c919be (fa65fca)
    • dataplex: update the api https://togithub.com/googleapis/google-api-python-client/commit/714d395fa712c56f1d207e4408ca1a252fd3d162 (fa65fca)
    • dialogflow: update the api https://togithub.com/googleapis/google-api-python-client/commit/1d14a2f69b29855ec25b488babfbceb0609a519c (fa65fca)
    • displayvideo: update the api https://togithub.com/googleapis/google-api-python-client/commit/1a3f64b4fd8e4f1774e1c6e6a70ad91a5a550590 (fa65fca)
    • gamesConfiguration: update the api https://togithub.com/googleapis/google-api-python-client/commit/5e1872ea1691596119064e2d09043a99c15adac3 (fa65fca)
    • metastore: update the api https://togithub.com/googleapis/google-api-python-client/commit/eba8d4f0e129812a600e4e8e6c33f4ab88c95180 (fa65fca)
    • monitoring: update the api https://github.com/googleapis/google-api-python-client/commit/cb568e1f19afa239b1b5dfbc1bc14554c130c15c (f6e9d38)
    • networkmanagement: update the api https://togithub.com/googleapis/google-api-python-client/commit/c65d33b8ca6b2aa014bc39bd4ca32ed1e9ebd96c (fa65fca)
    • paymentsresellersubscription: update the api https://togithub.com/googleapis/google-api-python-client/commit/fd60e1157653d8b018ac093b01a32d3434148df4 (fa65fca)
    • securitycenter: update the api https://togithub.com/googleapis/google-api-python-client/commit/c0c746a361421b6d250817f4d397d2c34dc2c4e9 (fa65fca)
    • servicemanagement: update the api https://togithub.com/googleapis/google-api-python-client/commit/e3f20cd1141dd5ca47b2323eb0fa029e255c78ec (fa65fca)
    • spanner: update the api https://togithub.com/googleapis/google-api-python-client/commit/c2007c17ae0eb31027417903a034dbc98eade638 (fa65fca)
    • storagetransfer: update the api https://github.com/googleapis/google-api-python-client/commit/76c66c741eef394307e290ccad3dde13c950d2cf (f6e9d38)
    • texttospeech: update the api https://togithub.com/googleapis/google-api-python-client/commit/bb64e3c504126472671203b1affec77396db89e7 (fa65fca)
    • vmmigration: update the api https://togithub.com/googleapis/google-api-python-client/commit/3e1a2c94e7c20c7fef3f746bf40f74c06b7c2e29 (fa65fca)

    Bug Fixes

    • Fix media upload URI when API endpoint is overridden with client_opions.api_endpoint (#1992) (d0f8a05)
    Source code(tar.gz)
    Source code(zip)
  • v2.68.0(Nov 30, 2022)

    2.68.0 (2022-11-30)

    Features

    • Add support for Python 3.11 (#1973) (1106672)
    • androidmanagement: update the api https://togithub.com/googleapis/google-api-python-client/commit/2dd64637ec67d4802fdee296a9c178cacf22d0d8 (9b5767f)
    • chat: update the api https://togithub.com/googleapis/google-api-python-client/commit/f9d3cb6e430faeb9b942b42de748efa166509f57 (9b5767f)
    • chromemanagement: update the api https://togithub.com/googleapis/google-api-python-client/commit/61558ed3f2924f8afa2aaba3a2485422fafda07a (03f4753)
    • cloudasset: update the api https://togithub.com/googleapis/google-api-python-client/commit/89473b2ca0e27fae3d1c6d7f92e16933f2829c88 (9b5767f)
    • cloudsearch: update the api https://togithub.com/googleapis/google-api-python-client/commit/e602008ba98c9c4daf5b68d4308fa99f47e4fee4 (9b5767f)
    • composer: update the api https://togithub.com/googleapis/google-api-python-client/commit/626bf19259ba4717090b182ca20ad13b6acf40b3 (9b5767f)
    • contactcenterinsights: update the api https://togithub.com/googleapis/google-api-python-client/commit/ebb648aa643aad895798ff1aa58e051e2dd06bad (9b5767f)
    • container: update the api https://togithub.com/googleapis/google-api-python-client/commit/9ccf94909892076fb071c1e79e10ea0973c49d71 (9b5767f)
    • datapipelines: update the api https://togithub.com/googleapis/google-api-python-client/commit/1dadbf77eea1fc5538643f876e7cecf36acc9318 (9b5767f)
    • dataplex: update the api https://togithub.com/googleapis/google-api-python-client/commit/2d0cd12f1711e71e58e1835341e269e339096e63 (9b5767f)
    • dns: update the api https://togithub.com/googleapis/google-api-python-client/commit/c250e0e81554847ba62d663c3f3020aa677701b8 (9b5767f)
    • documentai: update the api https://togithub.com/googleapis/google-api-python-client/commit/79ca84ab16a8cde17cdc0293c27f0e72b9cde5d5 (9b5767f)
    • securitycenter: update the api https://togithub.com/googleapis/google-api-python-client/commit/86e1526a1de990a72eda1e52c2df8078b48fc973 (9b5767f)
    • serviceconsumermanagement: update the api https://togithub.com/googleapis/google-api-python-client/commit/51e6ed6970b305f0225d5fd07e0aa9fb776ffd02 (9b5767f)
    • servicenetworking: update the api https://togithub.com/googleapis/google-api-python-client/commit/3130518d7a1c2f3f787a1a9cbdd23c3018de8f59 (9b5767f)
    • serviceusage: update the api https://togithub.com/googleapis/google-api-python-client/commit/7475ad606bad6f0fe5b8c95530e943df3ef322c8 (9b5767f)
    • sqladmin: update the api https://togithub.com/googleapis/google-api-python-client/commit/bcc83f0b0cdd3646d37ae669dc3d1f04665e89bc (03f4753)
    • testing: update the api https://togithub.com/googleapis/google-api-python-client/commit/a456ae80c81a8a0baea7f3871dfc56cee625dd05 (9b5767f)
    Source code(tar.gz)
    Source code(zip)
  • v2.67.0(Nov 16, 2022)

    2.67.0 (2022-11-16)

    Features

    • admin: update the api https://github.com/googleapis/google-api-python-client/commit/96ecedffbedd0d4b415b5cc90c05766caac7e2ca (92fed84)
    • androiddeviceprovisioning: update the api https://togithub.com/googleapis/google-api-python-client/commit/363d601fabed44b7e11f32e8b8cee65c7748b431 (e4faf09)
    • androidpublisher: update the api https://github.com/googleapis/google-api-python-client/commit/94d9e6788e02c6f04cb11f1f2b6f1bc778cd8786 (92fed84)
    • apigee: update the api https://github.com/googleapis/google-api-python-client/commit/6117c0bdff883ce31a96313f194129f845e3fbf3 (92fed84)
    • artifactregistry: update the api https://togithub.com/googleapis/google-api-python-client/commit/11a6e6cde55da8aa44592c76c95f4f93d220e815 (e4faf09)
    • bigtableadmin: update the api https://togithub.com/googleapis/google-api-python-client/commit/e16758ccc17a92ce0ebc17af3ab2066d9abf7d1c (e4faf09)
    • chat: update the api https://togithub.com/googleapis/google-api-python-client/commit/d28f4691ede4d3ba50adaefd49438f5eb64d5851 (e4faf09)
    • cloudbuild: update the api https://github.com/googleapis/google-api-python-client/commit/1ccb2d454470aa5aa3806d9c53ba2c2c8d1c7516 (92fed84)
    • cloudchannel: update the api https://togithub.com/googleapis/google-api-python-client/commit/dadefbbe30afd0287c412e06ed41f5c336bc3d93 (e4faf09)
    • cloudidentity: update the api https://togithub.com/googleapis/google-api-python-client/commit/4ff3cd171f544d7bccb37fda1f560e8bc5377801 (e4faf09)
    • composer: update the api https://github.com/googleapis/google-api-python-client/commit/944c62bc66c5eed4772172e50ae77258aa81e94d (92fed84)
    • composer: update the api https://togithub.com/googleapis/google-api-python-client/commit/610e7ee4e7eb2f934f1ea29a4b13012718d25ce3 (e4faf09)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/574751c9c7bfc731b04f0421f3d5549bb9c926af (92fed84)
    • compute: update the api https://togithub.com/googleapis/google-api-python-client/commit/9b7a7197983589a6d4e53f2f8ef301536e924ed8 (e4faf09)
    • contactcenterinsights: update the api https://github.com/googleapis/google-api-python-client/commit/3589f25b45b4a5b1e765481b7e250edb01dbdf89 (92fed84)
    • containeranalysis: update the api https://github.com/googleapis/google-api-python-client/commit/3fa559427d9cfe7fd081630d7ed0ebfb9f593cc6 (92fed84)
    • container: update the api https://github.com/googleapis/google-api-python-client/commit/6e7b51629bfd1028a656a5d1c3fce5c85cbde574 (92fed84)
    • container: update the api https://togithub.com/googleapis/google-api-python-client/commit/29a50b8d8f3a35df57ff6926178ae53da6a3261e (e4faf09)
    • content: update the api https://github.com/googleapis/google-api-python-client/commit/d7b6c5f3e5a72dd063faae1d97509758efeed1a9 (92fed84)
    • contentwarehouse: update the api https://github.com/googleapis/google-api-python-client/commit/48d3f8e86129e8a80a9e9554b003b3ae2942918b (92fed84)
    • contentwarehouse: update the api https://togithub.com/googleapis/google-api-python-client/commit/cc2b41c74bb0af1f18be50486a9102af35b666ec (e4faf09)
    • datacatalog: update the api https://togithub.com/googleapis/google-api-python-client/commit/57b9ac7c9a7a3aab667f9812152ff4c6e5c5a7dc (e4faf09)
    • datamigration: update the api https://github.com/googleapis/google-api-python-client/commit/d85e5f751bea54ffe6bdb2532d02f739c1eac55e (92fed84)
    • dialogflow: update the api https://github.com/googleapis/google-api-python-client/commit/91e186b2f243be19153fe8124ccc92884a24677c (92fed84)
    • displayvideo: update the api https://github.com/googleapis/google-api-python-client/commit/fd8a2fae079cd8d7fe618eeeadad7c08bcd58474 (92fed84)
    • displayvideo: update the api https://togithub.com/googleapis/google-api-python-client/commit/8ad115246f27fff444cfdc22f9173f2d4cff5cf6 (e4faf09)
    • dlp: update the api https://togithub.com/googleapis/google-api-python-client/commit/31b8027abe2087c0fc8bbd83958f214c6e3c5874 (e4faf09)
    • documentai: update the api https://github.com/googleapis/google-api-python-client/commit/01f65d3ef946dc9a45b240b90b3104c6bda31117 (92fed84)
    • doubleclicksearch: update the api https://github.com/googleapis/google-api-python-client/commit/4c4d21f7898530181d2b7990f0fbbe996572c5c6 (92fed84)
    • drivelabels: update the api https://togithub.com/googleapis/google-api-python-client/commit/73df6dd7e87cd4fedc4282a423140ce2caac7701 (e4faf09)
    • essentialcontacts: update the api https://togithub.com/googleapis/google-api-python-client/commit/5279786e8a200f62f4ef0e5484d012c67e0cabde (e4faf09)
    • firestore: update the api https://github.com/googleapis/google-api-python-client/commit/2dfc188ffc3e17839ffb80e01f158743ca64dea9 (92fed84)
    • gkehub: update the api https://togithub.com/googleapis/google-api-python-client/commit/585c894fde715c514d196f7472fc074b6a4ad848 (e4faf09)
    • healthcare: update the api https://github.com/googleapis/google-api-python-client/commit/9e5ca02da86f708c78eff54221bb41aa39664719 (92fed84)
    • identitytoolkit: update the api https://github.com/googleapis/google-api-python-client/commit/57db5e8c72773e31ef303d347c3bab529fd78277 (92fed84)
    • monitoring: update the api https://github.com/googleapis/google-api-python-client/commit/e4f5df0abe607ed2b7249c712cd2a645d5ad6569 (92fed84)
    • mybusinesslodging: update the api https://github.com/googleapis/google-api-python-client/commit/c2d35dea61cb6cf479fc0e185e6799b4317a63e2 (92fed84)
    • networkconnectivity: update the api https://github.com/googleapis/google-api-python-client/commit/7b734bdb36c0f7a8576a9911b24f58254f2dfd7d (92fed84)
    • networkconnectivity: update the api https://togithub.com/googleapis/google-api-python-client/commit/cffec44da93322cb7d73f9a2f54cfd0ec9ce5445 (e4faf09)
    • networkmanagement: update the api https://togithub.com/googleapis/google-api-python-client/commit/41509e63d36365d7b1c5a8b56bbdff8c89faee8d (e4faf09)
    • policysimulator: update the api https://github.com/googleapis/google-api-python-client/commit/355cf0bd45a94d7e599e98aca30b392d84df2ad9 (92fed84)
    • recaptchaenterprise: update the api https://github.com/googleapis/google-api-python-client/commit/0d068efa7806816c9eeac2bf8672886cda30458f (92fed84)
    • retail: update the api https://github.com/googleapis/google-api-python-client/commit/8c186950dd3698ef7d79ceabdad7b1f17d6ab080 (92fed84)
    • run: update the api https://github.com/googleapis/google-api-python-client/commit/213eb42ccf3a960dad445577bb0b76d56c26ab35 (92fed84)
    • run: update the api https://togithub.com/googleapis/google-api-python-client/commit/bf0d06a0cf5ec92671018bfb0d458ee9668092b1 (e4faf09)
    • securitycenter: update the api https://togithub.com/googleapis/google-api-python-client/commit/1cfdc18b614e3769e137ba3c751122624aadc1a8 (e4faf09)
    • sqladmin: update the api https://github.com/googleapis/google-api-python-client/commit/81eb1f2b883697e8978f3e4a6f7a18f444412f62 (92fed84)
    • tpu: update the api https://github.com/googleapis/google-api-python-client/commit/b51beb5e5948bf5efb0a14ad5c9a7c97341a39b0 (92fed84)
    • vmmigration: update the api https://github.com/googleapis/google-api-python-client/commit/c380036db6a825199d62fbc0098865922bba5572 (92fed84)
    • vmmigration: update the api https://togithub.com/googleapis/google-api-python-client/commit/53fdd26c30045b17960918d88acb032d645b5309 (e4faf09)

    Bug Fixes

    • cloudresourcemanager: update the api https://github.com/googleapis/google-api-python-client/commit/fe9086de83a6ed7c141a31dd94808e378bb2d4bd (92fed84)
    • youtube: update the api https://github.com/googleapis/google-api-python-client/commit/221e1505c1507e105e08d2a7d38c45138e6dcc12 (92fed84)
    Source code(tar.gz)
    Source code(zip)
  • v2.66.0(Nov 16, 2022)

    2.66.0 (2022-11-01)

    Features

    • alertcenter: update the api https://togithub.com/googleapis/google-api-python-client/commit/9a9b5adb894773c7754a85288b3dbe7c65caa354 (cb89554)
    • androiddeviceprovisioning: update the api https://togithub.com/googleapis/google-api-python-client/commit/e3a929d4a0a89be6b2c9fe8a663028996d0dae3a (cb89554)
    • androidpublisher: update the api https://togithub.com/googleapis/google-api-python-client/commit/98699752ee41ec202f226445056a22e6a4ce28a1 (cb89554)
    • appengine: update the api https://togithub.com/googleapis/google-api-python-client/commit/3b4ebcfb140c65bd7c34d5ddb355e04152376e5a (cb89554)
    • artifactregistry: update the api https://togithub.com/googleapis/google-api-python-client/commit/fe3896b0d7401e9a197971e4bbb449eddfe1cdb6 (60963d0)
    • assuredworkloads: update the api https://togithub.com/googleapis/google-api-python-client/commit/3987df7506017aa40003b85d8553ccb29ff7fbc9 (cb89554)
    • assuredworkloads: update the api https://togithub.com/googleapis/google-api-python-client/commit/ffbd7e4de8da5bf8e08b918ec6e9e6cd4abdd054 (60963d0)
    • baremetalsolution: update the api https://togithub.com/googleapis/google-api-python-client/commit/04b23d9cb93758f31467b465290b5077f0d9aec3 (60963d0)
    • beyondcorp: update the api https://togithub.com/googleapis/google-api-python-client/commit/98ef5fcf5173d711fa8f123156fd33ba7909561e (cb89554)
    • bigquery: update the api https://togithub.com/googleapis/google-api-python-client/commit/e7a8f0e6ad642160c10f1e094bca224a9c9467c0 (cb89554)
    • bigtableadmin: update the api https://togithub.com/googleapis/google-api-python-client/commit/4b424cf2d71fa9d77702efe543ba28ec31e30a49 (cb89554)
    • chat: update the api https://togithub.com/googleapis/google-api-python-client/commit/39808f18b91b042b7999667be8f2dfcf2b499d32 (cb89554)
    • chat: update the api https://togithub.com/googleapis/google-api-python-client/commit/75d4d8900a3b76c8fac5afd105859643e8adc22f (60963d0)
    • chromepolicy: update the api https://togithub.com/googleapis/google-api-python-client/commit/53723bec0c1ce4961e1deaf4bfe0a91b97c65095 (cb89554)
    • cloudbuild: update the api https://togithub.com/googleapis/google-api-python-client/commit/2712d19798c90bfc5ad0c669c400e59061591d21 (60963d0)
    • cloudfunctions: update the api https://togithub.com/googleapis/google-api-python-client/commit/ef7b4070846752dadf0f44b065c1385c8d6e582b (60963d0)
    • cloudsearch: update the api https://togithub.com/googleapis/google-api-python-client/commit/0724423a80fe35463249ffce4bfe560aec05be20 (60963d0)
    • cloudtasks: update the api https://togithub.com/googleapis/google-api-python-client/commit/b46ddfdbdb9f3c37308b09eb5361624a3169310f (cb89554)
    • composer: update the api https://togithub.com/googleapis/google-api-python-client/commit/57822a710613ed77e524458441f1a8d57de8d95c (cb89554)
    • compute: update the api https://togithub.com/googleapis/google-api-python-client/commit/32386b1144d3bd9b7f51e9ce89b277ef90af7df9 (60963d0)
    • compute: update the api https://togithub.com/googleapis/google-api-python-client/commit/6ef14bce9bdd661f91596e88648083845e7d9866 (cb89554)
    • connectors: update the api https://togithub.com/googleapis/google-api-python-client/commit/bddbbf67262395894382da5fd44b402ec5eef15b (cb89554)
    • containeranalysis: update the api https://togithub.com/googleapis/google-api-python-client/commit/d37d7c49987f14a068ee271fff172c41d32b5be6 (cb89554)
    • content: update the api https://togithub.com/googleapis/google-api-python-client/commit/94dde782a67a20cb7c28ca81e96726c3c7da36d0 (60963d0)
    • contentwarehouse: update the api https://togithub.com/googleapis/google-api-python-client/commit/0005b665c471cbba98a18df1c40d32fea0eb74a7 (60963d0)
    • contentwarehouse: update the api https://togithub.com/googleapis/google-api-python-client/commit/412a5247763d810107c0cd59e390fd42ce3513d0 (cb89554)
    • datacatalog: update the api https://togithub.com/googleapis/google-api-python-client/commit/25af7f8ed30583eaa03c3a8d41ad861f0ad0287c (cb89554)
    • dataplex: update the api https://togithub.com/googleapis/google-api-python-client/commit/89c2a7df58b695b9c3eb7acff522e96bd4a5db1f (60963d0)
    • dataplex: update the api https://togithub.com/googleapis/google-api-python-client/commit/ca9cc14d9a1017e142ec1f287e66c79df276ce5f (cb89554)
    • dataproc: update the api https://togithub.com/googleapis/google-api-python-client/commit/421f03b0652e95bfaf94e5969680498b48959833 (cb89554)
    • dataproc: update the api https://togithub.com/googleapis/google-api-python-client/commit/ed3f0016c539d7af0706696543b01c8ba891681a (60963d0)
    • datastore: update the api https://togithub.com/googleapis/google-api-python-client/commit/61b8061c19696958d3ee92d50a9d0a97eee3c2da (60963d0)
    • dialogflow: update the api https://togithub.com/googleapis/google-api-python-client/commit/7c2479b010a193b03888508310bc823a277f8c5a (60963d0)
    • displayvideo: update the api https://togithub.com/googleapis/google-api-python-client/commit/ff9240b7e303916d24a13ae8b18116a6e3693c57 (60963d0)
    • documentai: update the api https://togithub.com/googleapis/google-api-python-client/commit/4a93526b97217bf4073289663ad030a7d732e1e4 (cb89554)
    • doubleclicksearch: update the api https://togithub.com/googleapis/google-api-python-client/commit/bfaf4b3a17d06cb612daf0392e1a3f25b460f847 (60963d0)
    • drivelabels: update the api https://togithub.com/googleapis/google-api-python-client/commit/522e74b34eb2472cdc54460c0bce68806c49d0f1 (60963d0)
    • firestore: update the api https://togithub.com/googleapis/google-api-python-client/commit/34e443e6ad3898b7ba902e58c7296eb172ac8230 (60963d0)
    • gkehub: update the api https://togithub.com/googleapis/google-api-python-client/commit/b0b59a978c4b6a6b03a8c5f2cd96214635728365 (60963d0)
    • healthcare: update the api https://togithub.com/googleapis/google-api-python-client/commit/8de48da07280f5a9e85423a96818f9785e5235a7 (60963d0)
    • integrations: update the api https://togithub.com/googleapis/google-api-python-client/commit/e9280c5ffafccc928f311d3bf272ad099889613a (60963d0)
    • managedidentities: update the api https://togithub.com/googleapis/google-api-python-client/commit/167f3d8cc7ac154dd705527dd0fbbb79fa39d6ff (60963d0)
    • managedidentities: update the api https://togithub.com/googleapis/google-api-python-client/commit/aa5c6a2bbb967e47b1fe664f04d55cb77ee93850 (cb89554)
    • metastore: update the api https://togithub.com/googleapis/google-api-python-client/commit/72770adb32136579055168db9ee01e7506c9ff97 (60963d0)
    • monitoring: update the api https://togithub.com/googleapis/google-api-python-client/commit/aec2980b590813a9789221984a06d48cf5f93e37 (60963d0)
    • networkconnectivity: update the api https://togithub.com/googleapis/google-api-python-client/commit/2ae379c0d93c541e8a9ff968c54c48f2d9537e99 (cb89554)
    • playintegrity: update the api https://togithub.com/googleapis/google-api-python-client/commit/15a8fe0e296f6b7f833f282b6fad96397d862989 (60963d0)
    • redis: update the api https://togithub.com/googleapis/google-api-python-client/commit/0b9b8fa1e76d9eae203e480becd7176f180fb0c8 (cb89554)
    • retail: update the api https://togithub.com/googleapis/google-api-python-client/commit/566f33e7ebe9290d81306b0a0b2b86b9357610bb (cb89554)
    • retail: update the api https://togithub.com/googleapis/google-api-python-client/commit/606bdc24eebb7dc151bde794d4a1898446d11457 (60963d0)
    • run: update the api https://togithub.com/googleapis/google-api-python-client/commit/67d316d4d1108b899625adfd147acbc7e189a2ae (cb89554)
    • run: update the api https://togithub.com/googleapis/google-api-python-client/commit/f0fdbaf02e95899481a795346cf1d2d4bde32552 (60963d0)
    • servicecontrol: update the api https://togithub.com/googleapis/google-api-python-client/commit/3d8009279ecb0c9dfcaa76d08ab4722540bd6890 (60963d0)
    • servicedirectory: update the api https://togithub.com/googleapis/google-api-python-client/commit/aa20cbd8cddb3e7b85ec4d4595e3096796b5033f (cb89554)
    • speech: update the api https://togithub.com/googleapis/google-api-python-client/commit/03f32f826408963c24793b93985d592fe746239c (60963d0)
    • sqladmin: update the api https://togithub.com/googleapis/google-api-python-client/commit/488798ac2921276a33a74b54b7b62b93ef27c1e7 (cb89554)
    • tagmanager: update the api https://togithub.com/googleapis/google-api-python-client/commit/3dd7507c30d93ecb40587caa1043bd1db650e555 (60963d0)
    • translate: update the api https://togithub.com/googleapis/google-api-python-client/commit/83da452f035a5656023a32151a1d0146d0ac3c90 (60963d0)

    Documentation

    • Fix a typo in UPGRADING.md related to static_discovery (#1956) (bc03ac6)
    Source code(tar.gz)
    Source code(zip)
  • v2.65.0(Oct 18, 2022)

    2.65.0 (2022-10-18)

    Features

    • alertcenter: update the api https://togithub.com/googleapis/google-api-python-client/commit/99b94eeb1cf0f695d921ac1d9081c0841f6b1693 (5d54a7d)
    • analyticsadmin: update the api https://togithub.com/googleapis/google-api-python-client/commit/41818c6eb42aa3551fc2a326208f9cc083cb1953 (7110d89)
    • assuredworkloads: update the api https://togithub.com/googleapis/google-api-python-client/commit/9756c064a5cff42e367677216c48ff6649817dd5 (5d54a7d)
    • chat: update the api https://togithub.com/googleapis/google-api-python-client/commit/6dce01ba90d86496038bad226a14a9d714fb6e37 (7110d89)
    • chromepolicy: update the api https://togithub.com/googleapis/google-api-python-client/commit/180883247dcfcd777de04758a7928ca84e2764da (7110d89)
    • cloudbuild: update the api https://togithub.com/googleapis/google-api-python-client/commit/555317bfb60133f8ff82d4ac28651631404980d4 (5d54a7d)
    • cloudsearch: update the api https://togithub.com/googleapis/google-api-python-client/commit/2717d97f6ccd16b03f70adbb317fb330f74f3e2d (5d54a7d)
    • containeranalysis: update the api https://togithub.com/googleapis/google-api-python-client/commit/322df84348b8765bc6dce442c5d03209963a0e6b (5d54a7d)
    • container: update the api https://togithub.com/googleapis/google-api-python-client/commit/ea99aeeb561642071866b71f54ae84be95ae5bcc (5d54a7d)
    • dlp: update the api https://togithub.com/googleapis/google-api-python-client/commit/618362554c62d453579ff52933234a93ea5dfae3 (5d54a7d)
    • doubleclicksearch: update the api https://togithub.com/googleapis/google-api-python-client/commit/1e7db3e4969b55ecf98bbb78d3edc53f4bf08a15 (7110d89)
    • firebase: update the api https://togithub.com/googleapis/google-api-python-client/commit/569cb7e362206b8a7563b689ccd720ed29259997 (7110d89)
    • notebooks: update the api https://togithub.com/googleapis/google-api-python-client/commit/9ff1945acf3a74221759c2ceb9eb9a22c22b7c09 (5d54a7d)
    • retail: update the api https://togithub.com/googleapis/google-api-python-client/commit/32de4a02de0fd9e11755418f13c623f5b5c56674 (7110d89)
    • securitycenter: update the api https://togithub.com/googleapis/google-api-python-client/commit/b1c67c818d662fe97e82b000931be739766fbe55 (7110d89)
    • tagmanager: update the api https://togithub.com/googleapis/google-api-python-client/commit/188cd231f843aafb1c49cafe64052ec190e477a8 (5d54a7d)
    • verifiedaccess: update the api https://togithub.com/googleapis/google-api-python-client/commit/e2dccf7393b2e15986b1ba88ea6aa2b4f621dc17 (7110d89)

    Bug Fixes

    • prod_tt_sasportal: update the api https://togithub.com/googleapis/google-api-python-client/commit/9000eddf5e2e22242ebc94cb0af60363ff5c41df (5d54a7d)
    • sasportal: update the api https://togithub.com/googleapis/google-api-python-client/commit/36e8c8bc1b9cb3bbab1abdb2936d7a9cc9cea87a (7110d89)
    • smartdevicemanagement: update the api https://togithub.com/googleapis/google-api-python-client/commit/f7cc8d243a3c6b16cdf7aafae285b2efbb65d1fc (7110d89)
    Source code(tar.gz)
    Source code(zip)
  • v2.64.0(Oct 4, 2022)

    2.64.0 (2022-10-04)

    Features

    • analyticsadmin: update the api https://togithub.com/googleapis/google-api-python-client/commit/efb691ee5e2fd19dcd8ce99b02b04dc8bd4b7df5 (3bf7830)
    • assuredworkloads: update the api https://togithub.com/googleapis/google-api-python-client/commit/6c5991727e9d02381db21f857646e778cf54e0d4 (3bf7830)
    • beyondcorp: update the api https://togithub.com/googleapis/google-api-python-client/commit/1bbd2aa828e53f9939afd0d8119d62c89228ec6a (3bf7830)
    • bigquery: update the api https://togithub.com/googleapis/google-api-python-client/commit/2ee419bab63b4a5984cab0636037cd3dcc1dd89e (3bf7830)
    • certificatemanager: update the api https://togithub.com/googleapis/google-api-python-client/commit/2fe105a191156da096820c0f2a0cbd725227e553 (3bf7830)
    • chromemanagement: update the api https://togithub.com/googleapis/google-api-python-client/commit/ec3508a2f33e3b1965f3977b8f32c9be90363b97 (3bf7830)
    • chromepolicy: update the api https://togithub.com/googleapis/google-api-python-client/commit/f2478699397d683731136325d64d038abb8c0de6 (3bf7830)
    • cloudasset: update the api https://togithub.com/googleapis/google-api-python-client/commit/a40c120368e20ae5956d688006afe2597988aced (3bf7830)
    • cloudidentity: update the api https://togithub.com/googleapis/google-api-python-client/commit/8358d459d15087669fc9ecc691a4dca7b637df38 (3bf7830)
    • cloudsearch: update the api https://togithub.com/googleapis/google-api-python-client/commit/fc29ead2fdfb4273cdc00cb7bd3f09dd50e37f51 (3bf7830)
    • cloudtasks: update the api https://togithub.com/googleapis/google-api-python-client/commit/016214975099347cdc4870ce8e6d9b14bd2e7bd3 (3bf7830)
    • compute: update the api https://togithub.com/googleapis/google-api-python-client/commit/703edfa4d3c78cbc184b190cc28214b0beb04f75 (3bf7830)
    • containeranalysis: update the api https://togithub.com/googleapis/google-api-python-client/commit/404f0c97171a8ea968d7c04f350161729c5ea51b (3bf7830)
    • dataflow: update the api https://togithub.com/googleapis/google-api-python-client/commit/ff764b43fb1460be84361acd97d777524273902c (3bf7830)
    • documentai: update the api https://togithub.com/googleapis/google-api-python-client/commit/3c5cb8204cddde3e98a5d1f715f20c042088acfc (3bf7830)
    • driveactivity: update the api https://togithub.com/googleapis/google-api-python-client/commit/8be6614b72b681a129d4e63973ab825a88a5a860 (3bf7830)
    • firebasestorage: update the api https://togithub.com/googleapis/google-api-python-client/commit/b4bda575312e64f6c3d007932533abdca1ef0210 (3bf7830)
    • monitoring: update the api https://togithub.com/googleapis/google-api-python-client/commit/68d24a114ed9d8fdb71288d9e9699896a8c7e5a4 (3bf7830)
    • paymentsresellersubscription: update the api https://togithub.com/googleapis/google-api-python-client/commit/3c1010ec174189184667846a5be38ebc491f7bd6 (3bf7830)
    • playintegrity: update the api https://togithub.com/googleapis/google-api-python-client/commit/909483c18603a4ff6fb8f698cfdaea6dd180f098 (3bf7830)
    • recommender: update the api https://togithub.com/googleapis/google-api-python-client/commit/359dea09eb0bed801549b18ce00829962d96da36 (3bf7830)
    • retail: update the api https://togithub.com/googleapis/google-api-python-client/commit/fe492fe48af35dc21ce26029dac44a2606faf336 (3bf7830)
    • spanner: update the api https://togithub.com/googleapis/google-api-python-client/commit/edc7eae706f45c562b01159f0bb6fa7338a27aba (3bf7830)
    Source code(tar.gz)
    Source code(zip)
  • v2.63.0(Sep 27, 2022)

    2.63.0 (2022-09-27)

    Features

    • admin: update the api https://github.com/googleapis/google-api-python-client/commit/144cc44f83c5f4c685ddf538f3b2af8884c2679f (6e17850)
    • adsense: update the api https://github.com/googleapis/google-api-python-client/commit/7700e75b5bcd5caacdedff92060bb1c921195b8b (6e17850)
    • androidpublisher: update the api https://github.com/googleapis/google-api-python-client/commit/6c1c8840a001b9a517eebf7ba94d0063cc65c6cf (6e17850)
    • assuredworkloads: update the api https://github.com/googleapis/google-api-python-client/commit/38f6bdc02559e8c2c6b0b6aa673fc442f32ea912 (6e17850)
    • baremetalsolution: update the api https://github.com/googleapis/google-api-python-client/commit/aa4b0e13b0f19414dbbc69c8dcddbba8f5dcb0fd (6e17850)
    • bigquery: update the api https://github.com/googleapis/google-api-python-client/commit/c4be0100f273105c2c32f81b742909f58c444cae (6e17850)
    • chromeuxreport: update the api https://github.com/googleapis/google-api-python-client/commit/4ec5814b3fc287669cc522ee2700a4c5767155d4 (6e17850)
    • cloudbuild: update the api https://github.com/googleapis/google-api-python-client/commit/e58a7a14ea5e60ad022d44eb74cbf16bc7ced172 (6e17850)
    • clouddeploy: update the api https://github.com/googleapis/google-api-python-client/commit/ba6cba013c8c2a312a3c23ea6d417ef9b0dbb474 (6e17850)
    • cloudkms: update the api https://github.com/googleapis/google-api-python-client/commit/4a3ac99611de5eb738473b0e1f1a12395abacd34 (6e17850)
    • composer: update the api https://github.com/googleapis/google-api-python-client/commit/897fdef639aebd0cdcb740ca4ec3e86f7dd88d69 (6e17850)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/6a205afaed231dd686d703bc398355ce0ab25028 (6e17850)
    • dataplex: update the api https://github.com/googleapis/google-api-python-client/commit/74c6fd58e4d767696db644c72a0dbc8eae585303 (6e17850)
    • dfareporting: update the api https://github.com/googleapis/google-api-python-client/commit/686052c0b808783b6cfb657d1e000397ae61d718 (6e17850)
    • dns: update the api https://github.com/googleapis/google-api-python-client/commit/f648b88510fc1fab8f70ff994092385bcbf74948 (6e17850)
    • documentai: update the api https://github.com/googleapis/google-api-python-client/commit/e3e66ac69f7ece0b123dae3660afe384da6c3362 (6e17850)
    • firestore: update the api https://github.com/googleapis/google-api-python-client/commit/afd03ee211984f6fcac984b665d4d2136d2591d9 (6e17850)
    • healthcare: update the api https://github.com/googleapis/google-api-python-client/commit/14020d79cffdf32dbe9e1ceba05e975ad1bbaee6 (6e17850)
    • identitytoolkit: update the api https://github.com/googleapis/google-api-python-client/commit/5311cf958ab3e52a87759d9329f242db980ce40a (6e17850)
    • language: update the api https://github.com/googleapis/google-api-python-client/commit/1c0a0faa31007fae7319f6fdb08747eca2f8f174 (6e17850)
    • monitoring: update the api https://github.com/googleapis/google-api-python-client/commit/6c2f068340abf51ae3e1c9f21bfd7a6ce312f7ad (6e17850)
    • networkconnectivity: update the api https://github.com/googleapis/google-api-python-client/commit/5e7fcb9123b777e3ddd5965d8e5bf8147c481744 (6e17850)
    • networkmanagement: update the api https://github.com/googleapis/google-api-python-client/commit/43ac616a1bad15634d03e94c3cc8c797cc383d2e (6e17850)
    • ondemandscanning: update the api https://github.com/googleapis/google-api-python-client/commit/546cd30a23c433bcdd20dd09f3c7eae0719df1c4 (6e17850)
    • recommender: update the api https://github.com/googleapis/google-api-python-client/commit/58a7d6aecb461dff621cf2e489dbce563b8b60fc (6e17850)
    • run: update the api https://github.com/googleapis/google-api-python-client/commit/47c7a75fb0f0be14309edd201d065677198480f3 (6e17850)
    • securitycenter: update the api https://github.com/googleapis/google-api-python-client/commit/e7668dfe076d22468fedada6a9bfcce4626a0dd5 (6e17850)
    • youtube: update the api https://github.com/googleapis/google-api-python-client/commit/f9760216c101a6b3290c64851f3bde11429a5b42 (6e17850)
    Source code(tar.gz)
    Source code(zip)
  • v2.62.0(Sep 20, 2022)

    2.62.0 (2022-09-20)

    Features

    • analyticshub: update the api https://github.com/googleapis/google-api-python-client/commit/2cedffbb22a6e35606a4bfe2a53659d7eb51a29b (4385b0d)
    • artifactregistry: update the api https://github.com/googleapis/google-api-python-client/commit/24238de0ec1217ab561bc2f2b036902a0a9dfdb3 (4385b0d)
    • assuredworkloads: update the api https://github.com/googleapis/google-api-python-client/commit/997e916d31f872f46a547dbe01a7b934d78901a5 (4385b0d)
    • bigquery: update the api https://github.com/googleapis/google-api-python-client/commit/92ed528e52437f31f847b8707d7771fb94601f02 (4385b0d)
    • chromemanagement: update the api https://github.com/googleapis/google-api-python-client/commit/db416b5adeeb3798d51053d15954d4a9d4b2e742 (4385b0d)
    • chromepolicy: update the api https://github.com/googleapis/google-api-python-client/commit/a7eed1e84355a854288c0e4641c99ac9dcb936f3 (4385b0d)
    • clouddeploy: update the api https://github.com/googleapis/google-api-python-client/commit/70bd2645b516d85169c237d820c894f7c802f392 (4385b0d)
    • cloudsearch: update the api https://github.com/googleapis/google-api-python-client/commit/73b68e5ead37d294ba141c07242e509c32b9117b (4385b0d)
    • container: update the api https://github.com/googleapis/google-api-python-client/commit/4fe448c2aca8c375f15a9cab6376d9ebcce24bc9 (4385b0d)
    • dataflow: update the api https://github.com/googleapis/google-api-python-client/commit/6b5939f52dcea65745f975834ef15c50c3f138bf (4385b0d)
    • dlp: update the api https://github.com/googleapis/google-api-python-client/commit/34f565996691cfe1d9f7e9f591827814dbf892ef (4385b0d)
    • documentai: update the api https://github.com/googleapis/google-api-python-client/commit/29836a3a88e04b3504cea614522e931e5aa86ef7 (4385b0d)
    • gkehub: update the api https://github.com/googleapis/google-api-python-client/commit/bf6630520fceb9690b9231f1e8fbeb03f1a6f29c (4385b0d)
    • identitytoolkit: update the api https://github.com/googleapis/google-api-python-client/commit/9ab1181d09b6bb7164a690c362a7a1087a5b2316 (4385b0d)
    • manufacturers: update the api https://github.com/googleapis/google-api-python-client/commit/d1c509547d0578b1703016a0da377cb220f623fe (4385b0d)
    • securitycenter: update the api https://github.com/googleapis/google-api-python-client/commit/a92bfb1c384b7c54b4e7fc8c4b08ea09226e724b (4385b0d)
    • spanner: update the api https://github.com/googleapis/google-api-python-client/commit/25a029df4f27696c9e13b6955deb1f5f3161fc75 (4385b0d)
    • vmmigration: update the api https://github.com/googleapis/google-api-python-client/commit/62a1ccf9773b8de9ed9f582384d4f5182fd78104 (4385b0d)
    Source code(tar.gz)
    Source code(zip)
  • v2.61.0(Sep 13, 2022)

    2.61.0 (2022-09-13)

    Features

    • androidpublisher: update the api https://github.com/googleapis/google-api-python-client/commit/24f7278f5f09d8b8890a6544a4ffe854239aaa7c (92878d2)
    • assuredworkloads: update the api https://github.com/googleapis/google-api-python-client/commit/88ef8471d4cd1fd30000f7a6941421473a95d8a2 (92878d2)
    • bigquery: update the api https://github.com/googleapis/google-api-python-client/commit/5793c3d3595161e840b1ca89af2a0c00396afb88 (92878d2)
    • cloudbuild: update the api https://github.com/googleapis/google-api-python-client/commit/acd95531ce44a62bb3c884982227af92a2f1418b (92878d2)
    • clouddeploy: update the api https://github.com/googleapis/google-api-python-client/commit/6bc396fb90a6dc61da7c87735e98044993ed6efb (92878d2)
    • cloudsearch: update the api https://github.com/googleapis/google-api-python-client/commit/0794f6273825c22bcdae0ab49e1f01142b77628a (92878d2)
    • cloudtasks: update the api https://github.com/googleapis/google-api-python-client/commit/df6dd7698db9aadfbad3e94cbcbd14ca025d480c (92878d2)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/1e5aef27cc4dda4516c3090c6ec62fdc29ade36b (92878d2)
    • containeranalysis: update the api https://github.com/googleapis/google-api-python-client/commit/a47cea3d9929175e4b20490cea8832fa870c7748 (92878d2)
    • content: update the api https://github.com/googleapis/google-api-python-client/commit/bf841ba0b4fb3ac4e9ca9f5a28a01a1b71fd887e (92878d2)
    • dataflow: update the api https://github.com/googleapis/google-api-python-client/commit/72c8848fa887fcbe9532e089b3b114de6a2fbbbc (92878d2)
    • dataproc: update the api https://github.com/googleapis/google-api-python-client/commit/2f0a662d081e42b1096490c2003b7c4c92ec1a51 (92878d2)
    • dns: update the api https://github.com/googleapis/google-api-python-client/commit/bbb8a0f43f128568b1970d38237dc7d6be800b02 (92878d2)
    • firebase: update the api https://github.com/googleapis/google-api-python-client/commit/cf545d4f47d90d2bc6d967a83670c37d0f0e694a (92878d2)
    • orgpolicy: update the api https://github.com/googleapis/google-api-python-client/commit/cb5496625b9e489bf1e0b7d07ba5e2f83f96bf4d (92878d2)
    • paymentsresellersubscription: update the api https://github.com/googleapis/google-api-python-client/commit/e6983842f59a77c71fbd74e35711a404fe46e780 (92878d2)
    • retail: update the api https://github.com/googleapis/google-api-python-client/commit/c2255c36a8920d5b985c7b54f5a32c8f6727c134 (92878d2)
    • sqladmin: update the api https://github.com/googleapis/google-api-python-client/commit/ac3899191d086f93f50dce37df83885a9f1f0cd5 (92878d2)
    • storagetransfer: update the api https://github.com/googleapis/google-api-python-client/commit/04f2f52550577096297c5ee0ec90cdcad00d1d71 (92878d2)
    • tpu: update the api https://github.com/googleapis/google-api-python-client/commit/9e2a3910b5c84138c151044471443d76dce3358b (92878d2)
    • translate: update the api https://github.com/googleapis/google-api-python-client/commit/8808b81d7457aa5c9eae4f3efec084cc60f01ed9 (92878d2)
    • workflowexecutions: update the api https://github.com/googleapis/google-api-python-client/commit/4d868a7018905d402eaa6a7067283b67235748a6 (92878d2)

    Bug Fixes

    • tagmanager: update the api https://github.com/googleapis/google-api-python-client/commit/f640063261b5e31f228d70dc515f874cf2d825c9 (92878d2)
    Source code(tar.gz)
    Source code(zip)
  • v2.60.0(Sep 6, 2022)

    2.60.0 (2022-09-06)

    Features

    • apigeeregistry: update the api https://github.com/googleapis/google-api-python-client/commit/a288244db58b3e799ee7d6dc6391f3e635af6425 (114bc5e)
    • baremetalsolution: update the api https://github.com/googleapis/google-api-python-client/commit/a583aac925a0980c97799a5d6d1bba477685058b (114bc5e)
    • bigquery: update the api https://github.com/googleapis/google-api-python-client/commit/e3f69d93fe1333c3c1c8d4c901c5f7da20317235 (114bc5e)
    • chat: update the api https://github.com/googleapis/google-api-python-client/commit/da659010678000dc1942947c04fac94d2cdb03ba (114bc5e)
    • cloudidentity: update the api https://github.com/googleapis/google-api-python-client/commit/cf1029e74fafb84943f4146789177ae68b8c9650 (114bc5e)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/12e0087aa75cdc1d5b8fb2411ce1f71ae7e92b82 (114bc5e)
    • datacatalog: update the api https://github.com/googleapis/google-api-python-client/commit/114c935bd1c6cdf40d539968aa7efd8ecaf7acec (114bc5e)
    • dataproc: update the api https://github.com/googleapis/google-api-python-client/commit/57e629a4a41da50e67ee3a894e535709c7d881ce (114bc5e)
    • dialogflow: update the api https://github.com/googleapis/google-api-python-client/commit/ea0a13677493daf63467aa43bb19a2e9c5210d27 (114bc5e)
    • documentai: update the api https://github.com/googleapis/google-api-python-client/commit/a1a5231a7823aa576b1410dd11130b176307e0ea (114bc5e)
    • gkehub: update the api https://github.com/googleapis/google-api-python-client/commit/a2684bdda5c51e505efbf94169736cc0b7fafd72 (114bc5e)
    • identitytoolkit: update the api https://github.com/googleapis/google-api-python-client/commit/3641ad00fc35eb55c762a9a0bbf1cab37ffa6d10 (114bc5e)
    • managedidentities: update the api https://github.com/googleapis/google-api-python-client/commit/d2139ca0f1500e5573b054a52c1705c6d427a609 (114bc5e)
    • playintegrity: update the api https://github.com/googleapis/google-api-python-client/commit/423619b80449eee76e33dbf568b6e1cf6129ffbe (114bc5e)
    • servicemanagement: update the api https://github.com/googleapis/google-api-python-client/commit/05e10458da67802924cc189fe3adbea0fdf7dba7 (114bc5e)
    • testing: update the api https://github.com/googleapis/google-api-python-client/commit/a64a080d9b775bc77c2178fc14d4484046c1a0da (114bc5e)

    Bug Fixes

    • adsense: update the api https://github.com/googleapis/google-api-python-client/commit/9d0192788006f95b9a831500c3e5df957f6773f5 (114bc5e)
    • policysimulator: update the api https://github.com/googleapis/google-api-python-client/commit/9d29e554831eea21ae4736e7fdcb49f332d266e7 (114bc5e)

    Documentation

    • samples: Replace APPENGINE_RUNTIME with GAE_ENV (#1893) (af3160d)
    Source code(tar.gz)
    Source code(zip)
  • v2.59.0(Aug 30, 2022)

    2.59.0 (2022-08-30)

    Features

    • analyticsadmin: update the api https://github.com/googleapis/google-api-python-client/commit/634da9d534b582f1382001ece93f7fd40efe36b6 (fcbdcbf)
    • analyticsdata: update the api https://github.com/googleapis/google-api-python-client/commit/33270042624f4fb88a212834946da54407527faa (fcbdcbf)
    • assuredworkloads: update the api https://github.com/googleapis/google-api-python-client/commit/2b94b8215ce707c1f72c64aa43ace6c7717f651b (fcbdcbf)
    • baremetalsolution: update the api https://github.com/googleapis/google-api-python-client/commit/91232ae03ec95b808d91320a7b5a2c6b2544a1ed (fcbdcbf)
    • cloudbuild: update the api https://github.com/googleapis/google-api-python-client/commit/86868a251879573359d0acdec887deffff4bfb8b (fcbdcbf)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/5e01e28387569a67b3476292c887b5ab74fada06 (fcbdcbf)
    • datamigration: update the api https://github.com/googleapis/google-api-python-client/commit/414fb914320538feee8f273c831ef78d8ea8384c (fcbdcbf)
    • datastream: update the api https://github.com/googleapis/google-api-python-client/commit/e07157242d5382869351011a8d09b7e22283fbf4 (fcbdcbf)
    • dialogflow: update the api https://github.com/googleapis/google-api-python-client/commit/df9734531f4b0affdb82e9f52ce7e620de0b2e1a (fcbdcbf)
    • documentai: update the api https://github.com/googleapis/google-api-python-client/commit/ed08e4d666e694f927ea2f6233cfc63c43662433 (fcbdcbf)
    • iap: update the api https://github.com/googleapis/google-api-python-client/commit/3e79bd5b0a64f84e8a0a34ab09c79912a4bebb07 (fcbdcbf)
    • monitoring: update the api https://github.com/googleapis/google-api-python-client/commit/ebfd6dd2c109a375e398bff9880cfd525588b405 (fcbdcbf)
    • mybusinessplaceactions: update the api https://github.com/googleapis/google-api-python-client/commit/c33cbe560d3bcf0c5923610df350869bbbf9e71a (fcbdcbf)
    • paymentsresellersubscription: update the api https://github.com/googleapis/google-api-python-client/commit/3a33cab117cf34595d08f7390988d9ceea89b5b1 (fcbdcbf)
    • serviceconsumermanagement: update the api https://github.com/googleapis/google-api-python-client/commit/8bafc8e5daf828919569228207d727f4dd394a2b (fcbdcbf)
    • servicenetworking: update the api https://github.com/googleapis/google-api-python-client/commit/ffeec4b8ca793c0f7e751a15c2ed88be8f29a6fb (fcbdcbf)
    • serviceusage: update the api https://github.com/googleapis/google-api-python-client/commit/61c11a22b48fb0fa5c189438869686d75d70c687 (fcbdcbf)
    • speech: update the api https://github.com/googleapis/google-api-python-client/commit/50e84559b2ecf96c943b266e713f136a4cda6794 (fcbdcbf)

    Bug Fixes

    • firebase: update the api https://github.com/googleapis/google-api-python-client/commit/25769cc615e24898fb79b3e4dfbfdd3a15053ad2 (fcbdcbf)
    Source code(tar.gz)
    Source code(zip)
  • v2.58.0(Aug 23, 2022)

    2.58.0 (2022-08-23)

    Features

    • adsense: update the api https://github.com/googleapis/google-api-python-client/commit/c4fe80ae2f6433bffee06c09f233ca46d54ae986 (5471a41)
    • apigee: update the api https://github.com/googleapis/google-api-python-client/commit/783a01cb3ee2785ffb6b3e598b1bddb21706c894 (5471a41)
    • chromepolicy: update the api https://github.com/googleapis/google-api-python-client/commit/dbd092e7fa9a3189b125a32c71d27e499ec005f8 (5471a41)
    • cloudsearch: update the api https://github.com/googleapis/google-api-python-client/commit/90f98d13d11db9a6e690df9c0310eb5094479e41 (5471a41)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/187e71fdfe58d3b2833fc34a82b7eff2f4e4d467 (5471a41)
    • dataflow: update the api https://github.com/googleapis/google-api-python-client/commit/67081e018d953f95e81456ca5ab5dca4e3bdc42c (5471a41)
    • dataproc: update the api https://github.com/googleapis/google-api-python-client/commit/f9b16e5ac6b1de335f5408c74c97901c2b40e889 (5471a41)
    • dlp: update the api https://github.com/googleapis/google-api-python-client/commit/d41a45060ba0f8e24ab25513c3ffcd84061013b6 (5471a41)
    • documentai: update the api https://github.com/googleapis/google-api-python-client/commit/072238b5d7586871069b7cf99f552a238e92d014 (5471a41)
    • drive: update the api https://github.com/googleapis/google-api-python-client/commit/380907f0e9d2c11eae684876fff6336eb0755c8d (5471a41)
    • firebase: update the api https://github.com/googleapis/google-api-python-client/commit/ca27b614293c77f6901578ccc4cf8646b4d514c4 (5471a41)
    • gkehub: update the api https://github.com/googleapis/google-api-python-client/commit/82e05896571a953faf24453b236ee6b49455bd43 (5471a41)
    • managedidentities: update the api https://github.com/googleapis/google-api-python-client/commit/3e8252b8ad09c893153e7b91d0f5564597fbfd90 (5471a41)
    • networkmanagement: update the api https://github.com/googleapis/google-api-python-client/commit/425521b94a49febd11ba9375c538f14c62537faa (5471a41)
    • orgpolicy: update the api https://github.com/googleapis/google-api-python-client/commit/c318440453b64108aca52b296b42c1dda04475e1 (5471a41)
    • playintegrity: update the api https://github.com/googleapis/google-api-python-client/commit/28a7dc83daaa8ce99bbf1d622c898826ee744a04 (5471a41)
    • retail: update the api https://github.com/googleapis/google-api-python-client/commit/e326c357d61376c64aee08d0630ed9b9f5bb61a1 (5471a41)
    • secretmanager: update the api https://github.com/googleapis/google-api-python-client/commit/956320a450d5b112b3c275fa8886f80f1e509631 (5471a41)
    • serviceconsumermanagement: update the api https://github.com/googleapis/google-api-python-client/commit/de8b5b13744fcf98c647fb5664a4e88fffca07f6 (5471a41)
    • servicemanagement: update the api https://github.com/googleapis/google-api-python-client/commit/dc2597a7d89b3f744b5c1b4476ffeafe960951bf (5471a41)
    • servicenetworking: update the api https://github.com/googleapis/google-api-python-client/commit/104f2af0cc2d36d43da57c7545f3fcc8c7f1cb3d (5471a41)
    • serviceusage: update the api https://github.com/googleapis/google-api-python-client/commit/903bea9ded70c8977785086cced79faf438c275c (5471a41)
    • tagmanager: update the api https://github.com/googleapis/google-api-python-client/commit/27df08b5315c7cc38877aa898cb5fd3bd468fff1 (5471a41)
    • transcoder: update the api https://github.com/googleapis/google-api-python-client/commit/7bd32cedfbe5fd31360cfd4363e54d278946eacb (5471a41)

    Bug Fixes

    • dfareporting: update the api https://github.com/googleapis/google-api-python-client/commit/802b87692eb73c5df5df39b91c6b50d8ef94b7d5 (5471a41)
    Source code(tar.gz)
    Source code(zip)
  • v2.57.0(Aug 16, 2022)

    2.57.0 (2022-08-16)

    Features

    • admin: update the api https://github.com/googleapis/google-api-python-client/commit/cc2547b9c19463890b69d4069ec2cbb10b425dd3 (b2ea631)
    • apigee: update the api https://github.com/googleapis/google-api-python-client/commit/daf379ede87eb0a75e6b426ebaffced514a085b2 (b2ea631)
    • artifactregistry: update the api https://github.com/googleapis/google-api-python-client/commit/823cc8702fed1c73581589e60fcae81eaa2d475f (b2ea631)
    • bigquery: update the api https://github.com/googleapis/google-api-python-client/commit/397bfe81c693a51deb6a3608f2642f7bee6d5072 (b2ea631)
    • certificatemanager: update the api https://github.com/googleapis/google-api-python-client/commit/f067d95dc4dfe814affe1a9cc6df8d55973ea5c5 (b2ea631)
    • cloudidentity: update the api https://github.com/googleapis/google-api-python-client/commit/d81242160ad8fc0c974b035b651d25410e2a6655 (b2ea631)
    • cloudsearch: update the api https://github.com/googleapis/google-api-python-client/commit/c602e9721e79101d5622a6bdd31ec1235fe5f789 (b2ea631)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/3026a1f15f1286abea23c12b07393fe23d23130f (b2ea631)
    • connectors: update the api https://github.com/googleapis/google-api-python-client/commit/d5dae7023f6fcd9249142fa7bc0b115dcc6d5605 (b2ea631)
    • containeranalysis: update the api https://github.com/googleapis/google-api-python-client/commit/39419960c2aa454225e6a6cb86b71416cf81b410 (b2ea631)
    • content: update the api https://github.com/googleapis/google-api-python-client/commit/32db7467f2acd8088a4d5ef10b84fd42e539aa74 (b2ea631)
    • dataflow: update the api https://github.com/googleapis/google-api-python-client/commit/ca129604e53e7ede837ddb123d9f5debc58d5b6d (b2ea631)
    • documentai: update the api https://github.com/googleapis/google-api-python-client/commit/6437135fadb435b6bb78daa4f6c62999078a0424 (b2ea631)
    • gkehub: update the api https://github.com/googleapis/google-api-python-client/commit/34dbb5159e7a183dc5223e2226cf553c017af591 (b2ea631)
    • manufacturers: update the api https://github.com/googleapis/google-api-python-client/commit/9f3dc9dfcac9561064f1772af3f0e2efac48871e (b2ea631)
    • mybusinessplaceactions: update the api https://github.com/googleapis/google-api-python-client/commit/aa970e8b0429baaf99331e44a674bf70b1c1c6ad (b2ea631)
    • run: update the api https://github.com/googleapis/google-api-python-client/commit/d2c2f0d4ba83410862b3c043b762a016dff9ad1d (b2ea631)
    • securitycenter: update the api https://github.com/googleapis/google-api-python-client/commit/32dc147601805de7362a5cc20b203378ead62d26 (b2ea631)
    • sqladmin: update the api https://github.com/googleapis/google-api-python-client/commit/cd4a8cc802340e7012d99140a418408c104aed3c (b2ea631)
    • toolresults: update the api https://github.com/googleapis/google-api-python-client/commit/0194ce51b2585a9c332d0abab1fb86e9e8dbb41a (b2ea631)
    • translate: update the api https://github.com/googleapis/google-api-python-client/commit/5bd2f6db6b99d976fd47c1f1120b6d63f3312986 (b2ea631)
    • vision: update the api https://github.com/googleapis/google-api-python-client/commit/b3117f3c141ac6d73134b54b4267a0fa19906cb9 (b2ea631)
    Source code(tar.gz)
    Source code(zip)
  • v2.56.0(Aug 9, 2022)

    2.56.0 (2022-08-09)

    Features

    • admin: update the api https://github.com/googleapis/google-api-python-client/commit/69ac3be9c5e576e1422508be5924627fed9c7a05 (bef54ff)
    • adsense: update the api https://github.com/googleapis/google-api-python-client/commit/125ef1daa47e6084dc1f12a1267e6f805ff42ac8 (bef54ff)
    • analyticsadmin: update the api https://github.com/googleapis/google-api-python-client/commit/5d2a6dffbecf1ea194a65a5c1d73c1e2aa7547e1 (bef54ff)
    • authorizedbuyersmarketplace: update the api https://github.com/googleapis/google-api-python-client/commit/b1e8c38bf32e5e1821072c5d8649b75f7cb8bd93 (bef54ff)
    • baremetalsolution: update the api https://github.com/googleapis/google-api-python-client/commit/01d40f6a1c6f4cbe021c805f23c0ebacab596581 (bef54ff)
    • beyondcorp: update the api https://github.com/googleapis/google-api-python-client/commit/41eb915e82395b7af54f84c2178dbe430e695478 (bef54ff)
    • bigquery: update the api https://github.com/googleapis/google-api-python-client/commit/9580b4d8f1a9354b685c674adecc7ec0f7906a3b (bef54ff)
    • blogger: update the api https://github.com/googleapis/google-api-python-client/commit/8a727f6ae9cc4fb031e6b9c23af05456639c8b19 (bef54ff)
    • chat: update the api https://github.com/googleapis/google-api-python-client/commit/042b80d1fd44a8ecacfb6f4c2bfeca4802c10642 (bef54ff)
    • chromepolicy: update the api https://github.com/googleapis/google-api-python-client/commit/b381018fff817fa297dc2cf840dcff67211a90e0 (bef54ff)
    • cloudchannel: update the api https://github.com/googleapis/google-api-python-client/commit/91fb06935fda2d69cbb81e41edd340c7402faef8 (bef54ff)
    • cloudidentity: update the api https://github.com/googleapis/google-api-python-client/commit/7463513e42840cf9a7f7459742aa650ff1050715 (bef54ff)
    • cloudsearch: update the api https://github.com/googleapis/google-api-python-client/commit/c5f6895d9c92b01a87160ff5744d71a95bce9428 (bef54ff)
    • cloudsupport: update the api https://github.com/googleapis/google-api-python-client/commit/3c68638a25be3a207bc9a83ddd25748c4bd6b6fb (bef54ff)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/678d6aad609bb24ede5904ae6b429305d4becaad (bef54ff)
    • connectors: update the api https://github.com/googleapis/google-api-python-client/commit/506f96d2ebcfed759b46ac13a9d35d6ec2e5f9c1 (bef54ff)
    • content: update the api https://github.com/googleapis/google-api-python-client/commit/f3207d67d73d53e513e4f3f47cdc7a7ead82e67a (bef54ff)
    • dataplex: update the api https://github.com/googleapis/google-api-python-client/commit/ce8d53d131ddad2b28d2cc9b78672fcd4077b864 (bef54ff)
    • dataproc: update the api https://github.com/googleapis/google-api-python-client/commit/540292b10ca68bd6329b13709144816e12112037 (bef54ff)
    • dlp: update the api https://github.com/googleapis/google-api-python-client/commit/e6503d33a6f27f5443ef02ad220e7ea2bbdf1f92 (bef54ff)
    • dns: update the api https://github.com/googleapis/google-api-python-client/commit/13d2f8acc00f589503f62bcc73ea824438073af2 (bef54ff)
    • firebase: update the api https://github.com/googleapis/google-api-python-client/commit/7f5f751f93fad20f9c171d6c50c34c9855da9a47 (bef54ff)
    • gameservices: update the api https://github.com/googleapis/google-api-python-client/commit/876284eba48a9ce1fa73148f4d56e13eca76a14f (bef54ff)
    • logging: update the api https://github.com/googleapis/google-api-python-client/commit/98d28621d08e6aa11d70d6017ebdb43b0a859dce (bef54ff)
    • monitoring: update the api https://github.com/googleapis/google-api-python-client/commit/331b5c0c21c2534b1eb6dbcc923f22664bc0b2a1 (bef54ff)
    • notebooks: update the api https://github.com/googleapis/google-api-python-client/commit/d5c8eb84ed2182cdf2d87e2ccc3d1bcb215a364d (bef54ff)
    • retail: update the api https://github.com/googleapis/google-api-python-client/commit/929acf8b7ace5fd683ac00172f4b5211bcec7405 (bef54ff)
    • securitycenter: update the api https://github.com/googleapis/google-api-python-client/commit/70e4256a58599727febbfb1a17b547e31b6cb6d8 (bef54ff)
    • servicedirectory: update the api https://github.com/googleapis/google-api-python-client/commit/fa2c777d0558963539d712bd7849f8bc6a60b58c (bef54ff)

    Documentation

    Source code(tar.gz)
    Source code(zip)
  • v2.55.0(Jul 26, 2022)

    2.55.0 (2022-07-26)

    Features

    • alertcenter: update the api https://github.com/googleapis/google-api-python-client/commit/66596c09a6b1d4ba31305ea243af6387fb8d7b36 (4af699d)
    • androidenterprise: update the api https://github.com/googleapis/google-api-python-client/commit/0213854b4eb39348120c630bc2144f5f01a3a059 (4af699d)
    • assuredworkloads: update the api https://github.com/googleapis/google-api-python-client/commit/16e5edeb2a31e7f43a253411e9cd356a63de4b78 (4af699d)
    • beyondcorp: update the api https://github.com/googleapis/google-api-python-client/commit/2cb54c8d6caf6cd14cd10c085980d555dd3c89ea (4af699d)
    • chat: update the api https://github.com/googleapis/google-api-python-client/commit/5d5705d05d55c9c10676c8a1baa9721a126a8c41 (4af699d)
    • cloudchannel: update the api https://github.com/googleapis/google-api-python-client/commit/757d79e338ad0c21737a8ff8505755da0e1abc4c (4af699d)
    • cloudidentity: update the api https://github.com/googleapis/google-api-python-client/commit/b22e69a8c13c0a22b5ff4d630c6be6bb70986482 (4af699d)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/6df7615e883ddb46b7f27603037b1cb42c7dae91 (4af699d)
    • connectors: update the api https://github.com/googleapis/google-api-python-client/commit/922d704140967fd2c6d6ee9371e407f1930021f6 (4af699d)
    • datastream: update the api https://github.com/googleapis/google-api-python-client/commit/bba182faf7b25acc6b2fda3568f326a2d98dfb40 (4af699d)
    • dialogflow: update the api https://github.com/googleapis/google-api-python-client/commit/dfb3217102ca60e84a1c1e48cc8d0a1194aa1f6b (4af699d)
    • firebase: update the api https://github.com/googleapis/google-api-python-client/commit/e7aecbf9b80906c5f6465fcbdb8d4b333e1a2fa4 (4af699d)
    • gkehub: update the api https://github.com/googleapis/google-api-python-client/commit/73a9ebb623753cd34ec4064c1f5b8cffc0baa1f9 (4af699d)
    • iap: update the api https://github.com/googleapis/google-api-python-client/commit/aa98e5065ab458296173f0aef634a5f63f6034c2 (4af699d)
    • monitoring: update the api https://github.com/googleapis/google-api-python-client/commit/7c1a73107ae2de899baace102408347f95b306e7 (4af699d)
    • networkconnectivity: update the api https://github.com/googleapis/google-api-python-client/commit/fb6bc73173f23b0e1e7c0c8b01b1ffe6bc3fef1a (4af699d)
    • retail: update the api https://github.com/googleapis/google-api-python-client/commit/f4231ebae9bd625fd7447223b0417d4bccad0359 (4af699d)
    • securitycenter: update the api https://github.com/googleapis/google-api-python-client/commit/14c35b66e69bd088327f696f79a625fcffa98980 (4af699d)
    • spanner: update the api https://github.com/googleapis/google-api-python-client/commit/0daa6e2510c66d462831fc227c8c88b4444f2d34 (4af699d)
    • sqladmin: update the api https://github.com/googleapis/google-api-python-client/commit/2545e9bbc65e0b6351d30301a4636dbdb3f0bc6d (4af699d)
    • storagetransfer: update the api https://github.com/googleapis/google-api-python-client/commit/57d8d5a234c33189c7ea2d8fe209ff074c5a3c82 (4af699d)
    • streetviewpublish: update the api https://github.com/googleapis/google-api-python-client/commit/af184b8521208e6cab1e1d29e71a98fd916d242b (4af699d)
    • vmmigration: update the api https://github.com/googleapis/google-api-python-client/commit/34db6c376e7698180b897b9d90384304cd57533c (4af699d)
    • youtube: update the api https://github.com/googleapis/google-api-python-client/commit/57b9539b1198e2db9ee04cc5c1df1893ab6360d4 (4af699d)
    Source code(tar.gz)
    Source code(zip)
  • v2.54.0(Jul 19, 2022)

    2.54.0 (2022-07-19)

    Features

    • apigeeregistry: update the api https://github.com/googleapis/google-api-python-client/commit/9f30db4e832cd1369273d7b9342fc7247029ba0a (3b42d88)
    • bigtableadmin: update the api https://github.com/googleapis/google-api-python-client/commit/166131a38dd2a09ed8005e6ace9227194ae013f2 (3b42d88)
    • certificatemanager: update the api https://github.com/googleapis/google-api-python-client/commit/318a536b3032d299194439a47fff3ae5a7b7201c (3b42d88)
    • chromemanagement: update the api https://github.com/googleapis/google-api-python-client/commit/b5bb878f4559ba796ac1ec1624f0c27ae1e74a91 (3b42d88)
    • chromepolicy: update the api https://github.com/googleapis/google-api-python-client/commit/df983ba85172cc3f0ee1a99155c449e15b224285 (3b42d88)
    • cloudfunctions: update the api https://github.com/googleapis/google-api-python-client/commit/f6b2cad08f7c87a5001023c85281e0c80a1e57ee (3b42d88)
    • cloudsearch: update the api https://github.com/googleapis/google-api-python-client/commit/d4ea38ae66a3e3ae47ec93f25053a036dc65d113 (3b42d88)
    • cloudtasks: update the api https://github.com/googleapis/google-api-python-client/commit/785511348f6ee00cc0b67c230c258067df4c65ef (3b42d88)
    • connectors: update the api https://github.com/googleapis/google-api-python-client/commit/0861cb7b948b7abb3dd0ac3d9482775ddb9e2564 (3b42d88)
    • containeranalysis: update the api https://github.com/googleapis/google-api-python-client/commit/afe85f56e58475e5a51ca46b1a0c8f304e3d1d38 (3b42d88)
    • content: update the api https://github.com/googleapis/google-api-python-client/commit/05688d8cef0aa5bf91024e48b614d84103f35565 (3b42d88)
    • datacatalog: update the api https://github.com/googleapis/google-api-python-client/commit/fc428158e1f9f98a7b3744087b66f4a9dc7f62a7 (3b42d88)
    • dataplex: update the api https://github.com/googleapis/google-api-python-client/commit/24b6a0e825f3f4f6e97bd9cff731d137c6a235a3 (3b42d88)
    • documentai: update the api https://github.com/googleapis/google-api-python-client/commit/56fb20ac3ca019d21b94ae4c8db83e8e065a4bf3 (3b42d88)
    • drive: update the api https://github.com/googleapis/google-api-python-client/commit/a0d5f488f457dc3be364a573ce4e610b1923d790 (3b42d88)
    • gkehub: update the api https://github.com/googleapis/google-api-python-client/commit/7fdfb91f6723dea05af302b5b8ac089d2be5f808 (3b42d88)
    • mybusinessaccountmanagement: update the api https://github.com/googleapis/google-api-python-client/commit/cb875b8ddaab637aadc187e1c25268d9633b39c8 (3b42d88)
    • ondemandscanning: update the api https://github.com/googleapis/google-api-python-client/commit/68e45cdf1cce8a7be282369dc027113dc61c2d39 (3b42d88)
    • run: update the api https://github.com/googleapis/google-api-python-client/commit/daf5183d0c6bdb2ae0a75be0a409171c2f26360d (3b42d88)
    • securitycenter: update the api https://github.com/googleapis/google-api-python-client/commit/9c5ed43310c474937f68e9911aac8f665cc2521b (3b42d88)
    • servicenetworking: update the api https://github.com/googleapis/google-api-python-client/commit/bd1e2e47f90ed83daf4e6665684619d6e641a036 (3b42d88)
    • youtube: update the api https://github.com/googleapis/google-api-python-client/commit/e344e6f08ebcef5a5a3139ffda9e2cd86eaa78b8 (3b42d88)
    Source code(tar.gz)
    Source code(zip)
  • v2.53.0(Jul 14, 2022)

    2.53.0 (2022-07-14)

    Features

    • analyticsadmin: update the api https://github.com/googleapis/google-api-python-client/commit/cb666792405edbbc5abb17529ec3380d472f798c (d5ec01e)
    • apigee: update the api https://github.com/googleapis/google-api-python-client/commit/2fb45288c36a1022f801309ea9c821ecef3cb7e3 (d5ec01e)
    • artifactregistry: update the api https://github.com/googleapis/google-api-python-client/commit/287b57f81f204043bd7d19838f8592f21dab43e1 (d5ec01e)
    • assuredworkloads: update the api https://github.com/googleapis/google-api-python-client/commit/23680d4d09a44d8bd41cc751151bbfd2b19b68e0 (d5ec01e)
    • baremetalsolution: update the api https://github.com/googleapis/google-api-python-client/commit/ab77edbb8a75cddd3aa74b324329eed5b786c815 (d5ec01e)
    • bigqueryconnection: update the api https://github.com/googleapis/google-api-python-client/commit/8eda4b52d298dcd4cbde751edf7c73188b3d1078 (d5ec01e)
    • chromemanagement: update the api https://github.com/googleapis/google-api-python-client/commit/fd8bc438c77b528a264c3211b6d9ebb25ac143ef (d5ec01e)
    • chromepolicy: update the api https://github.com/googleapis/google-api-python-client/commit/0672d42d4ecc68dddf73227ce5c6761c48e0ddec (d5ec01e)
    • cloudsupport: update the api https://github.com/googleapis/google-api-python-client/commit/42e42fcdf7e739c620353fb58cf4bb50cf1c41d7 (d5ec01e)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/b088456cec0626de1dd2219a839c54db4fd6f32e (d5ec01e)
    • container: update the api https://github.com/googleapis/google-api-python-client/commit/202ad0b1598de7e3551a417f84c8b806bd2369c6 (d5ec01e)
    • dataproc: update the api https://github.com/googleapis/google-api-python-client/commit/736871622fc0de07fd0539de7598747900ffe66c (d5ec01e)
    • eventarc: update the api https://github.com/googleapis/google-api-python-client/commit/920db5b7438fb877b07e137e8b55a84c3fe619c3 (d5ec01e)
    • firebase: update the api https://github.com/googleapis/google-api-python-client/commit/1c609a3f0ccfa0ab28f9190f6f934a4392646db4 (d5ec01e)
    • firestore: update the api https://github.com/googleapis/google-api-python-client/commit/ba34067d8b04ed0957cca7b98cb8e8bba7c3a079 (d5ec01e)
    • gkehub: update the api https://github.com/googleapis/google-api-python-client/commit/096f7a7218bbb545d22034278d0f2583bea94ac5 (d5ec01e)
    • healthcare: update the api https://github.com/googleapis/google-api-python-client/commit/63917b5758999d706afee51d0446cf91e526e134 (d5ec01e)
    • logging: update the api https://github.com/googleapis/google-api-python-client/commit/6f9ceab3e101ca12713d5089090f8bc09a8ce702 (d5ec01e)
    • monitoring: update the api https://github.com/googleapis/google-api-python-client/commit/5800103355038f06cc05e458accb143c2351f819 (d5ec01e)
    • paymentsresellersubscription: update the api https://github.com/googleapis/google-api-python-client/commit/152b6ab479d0d2c1d0c678d1d02c2f474f2def71 (d5ec01e)
    • recaptchaenterprise: update the api https://github.com/googleapis/google-api-python-client/commit/7a04e8dc2ed63530ad982cc29f4228757e08ebfa (d5ec01e)
    • recommender: update the api https://github.com/googleapis/google-api-python-client/commit/d786e1787deb7843336d737a484f79f7197c209e (d5ec01e)
    • securitycenter: update the api https://github.com/googleapis/google-api-python-client/commit/f5da1e5bc7716cc6bbf553e5a72267751c03705e (d5ec01e)
    • servicedirectory: update the api https://github.com/googleapis/google-api-python-client/commit/d753dc955d01c5396387218189705ab4affb9c4f (d5ec01e)
    • sqladmin: update the api https://github.com/googleapis/google-api-python-client/commit/9c161eba5d389a6f8b546ebdb99ed40b948bd04d (d5ec01e)
    • streetviewpublish: update the api https://github.com/googleapis/google-api-python-client/commit/200b6618acfcf8cfe9f13fe8c0a84a0275974bf5 (d5ec01e)
    • tpu: update the api https://github.com/googleapis/google-api-python-client/commit/285687684d4e5983e950634baf8a3d927ed5c479 (d5ec01e)
    • youtube: update the api https://github.com/googleapis/google-api-python-client/commit/5cb2ae5a787fca502561c3674c932023d6ace8dd (d5ec01e)

    Bug Fixes

    Source code(tar.gz)
    Source code(zip)
  • v2.52.0(Jun 28, 2022)

    2.52.0 (2022-06-28)

    Features

    • analyticsadmin: update the api https://github.com/googleapis/google-api-python-client/commit/de31d203b1af49ef1dcb87c87852ee4d68495655 (f3ecc98)
    • androidmanagement: update the api https://github.com/googleapis/google-api-python-client/commit/f356ef4c82bddef19bec32651d000e52538fbd9f (f3ecc98)
    • apigee: update the api https://github.com/googleapis/google-api-python-client/commit/e092934dfdfe714f61d355eed101086df6073b1d (53b1d58)
    • appengine: update the api https://github.com/googleapis/google-api-python-client/commit/4dcabd8f9859954cbb4c3ca454618e54454af3cd (53b1d58)
    • assuredworkloads: update the api https://github.com/googleapis/google-api-python-client/commit/f0918bf8b9d61e0d782d496654658dacdc538a3b (53b1d58)
    • baremetalsolution: update the api https://github.com/googleapis/google-api-python-client/commit/e7ceba62a4578b1cf6167de0b64753464d90505e (f3ecc98)
    • beyondcorp: update the api https://github.com/googleapis/google-api-python-client/commit/6f77d5910d4b0ce529b78434da5bb4aaec12978a (f3ecc98)
    • bigquery: update the api https://github.com/googleapis/google-api-python-client/commit/2e0ef3404da46c0f9722d73a0bac2f715ce7ce20 (f3ecc98)
    • bigtableadmin: update the api https://github.com/googleapis/google-api-python-client/commit/b0f8ae7273442de8da28859f3d71286ed242927c (f3ecc98)
    • chat: update the api https://github.com/googleapis/google-api-python-client/commit/d7cebe34e9879ed27e0c94bb6223a485fa8bdd24 (f3ecc98)
    • clouddeploy: update the api https://github.com/googleapis/google-api-python-client/commit/4d24378e01a7b947d2514363b02ec4dae06867b6 (53b1d58)
    • cloudidentity: update the api https://github.com/googleapis/google-api-python-client/commit/2229e24359420e5a8b7dc93adfa4fa4a6fad24af (f3ecc98)
    • cloudkms: update the api https://github.com/googleapis/google-api-python-client/commit/fc212f8566aa56e6bf66623d9f7b1d13694f792b (f3ecc98)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/10cff4b7fe7baa5881899e8ca1feacb8c6310e5a (53b1d58)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/526cc47a0620fddbbccc25f24db85e99970be8a6 (f3ecc98)
    • connectors: update the api https://github.com/googleapis/google-api-python-client/commit/482698c4cce739dc8c8005f540d9cdbcfcb48025 (f3ecc98)
    • container: update the api https://github.com/googleapis/google-api-python-client/commit/21f18cf22d2359e6478368d6b8a5dc6e44e74073 (f3ecc98)
    • content: update the api https://github.com/googleapis/google-api-python-client/commit/3bd956b43bd62e964eb77d9df1a579487f370565 (f3ecc98)
    • dlp: update the api https://github.com/googleapis/google-api-python-client/commit/c2685713869e57fd4300387ac8ac40e20f89b1a2 (53b1d58)
    • documentai: update the api https://github.com/googleapis/google-api-python-client/commit/2a0d0048a31152382eedbdc6946d96728eb9f92f (53b1d58)
    • domains: update the api https://github.com/googleapis/google-api-python-client/commit/2b6c76a6c51d6c767ff876b25e556be11d71a281 (f3ecc98)
    • domains: update the api https://github.com/googleapis/google-api-python-client/commit/e16ceaefe6088e4570db2a3277bfa48c9b29d16e (53b1d58)
    • firebase: update the api https://github.com/googleapis/google-api-python-client/commit/27ec8d12128eb63c5a0a8772e84bdf925b185435 (f3ecc98)
    • gkehub: update the api https://github.com/googleapis/google-api-python-client/commit/612b90aa8623930ca0a2aa725a38d570958d8022 (f3ecc98)
    • gkehub: update the api https://github.com/googleapis/google-api-python-client/commit/6daf95383f2e7e4f8ad9f758400abf8d0116e0fb (53b1d58)
    • metastore: update the api https://github.com/googleapis/google-api-python-client/commit/fe21b512dab39efaa73dd7d0fa9ddee322a930bc (f3ecc98)
    • networkservices: update the api https://github.com/googleapis/google-api-python-client/commit/dbf5c472c2c485a56f6bd5869820685357088556 (53b1d58)
    • ondemandscanning: update the api https://github.com/googleapis/google-api-python-client/commit/57d704113bea1aeab825a69bad9b8053288df762 (53b1d58)
    • retail: update the api https://github.com/googleapis/google-api-python-client/commit/4be64bdecde04db896be32169f8fbe8920e1eec4 (f3ecc98)
    • secretmanager: update the api https://github.com/googleapis/google-api-python-client/commit/32d917391c7cff15e6c0dd1c5750e4398b17c8b8 (f3ecc98)
    • securitycenter: update the api https://github.com/googleapis/google-api-python-client/commit/07d2410421f98ab6510cf5e422dd7e4118109807 (53b1d58)
    • serviceconsumermanagement: update the api https://github.com/googleapis/google-api-python-client/commit/b4bff9c1a83930d03bde5e9c3f27c0f50ab96895 (53b1d58)
    • servicemanagement: update the api https://github.com/googleapis/google-api-python-client/commit/a413c0daae2181b7e7da6edd4c78c7b50bc7285e (f3ecc98)
    • servicenetworking: update the api https://github.com/googleapis/google-api-python-client/commit/90db1c5cd2d6c08b0d2e408b1864142a997f2ada (53b1d58)
    • serviceusage: update the api https://github.com/googleapis/google-api-python-client/commit/9300e53512f019dd129f554dfe39e352fe384142 (53b1d58)
    • streetviewpublish: update the api https://github.com/googleapis/google-api-python-client/commit/810d56c18864a80c08752de73853e96d37ebea60 (f3ecc98)
    • vmmigration: update the api https://github.com/googleapis/google-api-python-client/commit/d5d9447f03c5cba48733ed14c8b7049963127c16 (f3ecc98)

    Bug Fixes

    • deps: require google-auth 1.19.0 (#1824) (7f478ae)
    • prod_tt_sasportal: update the api https://github.com/googleapis/google-api-python-client/commit/fb1b469b90da3c8f6d3de98b01debe550e50268f (f3ecc98)
    • sasportal: update the api https://github.com/googleapis/google-api-python-client/commit/300c0960a1fcc039b05851a0c3833044d135c118 (f3ecc98)
    Source code(tar.gz)
    Source code(zip)
  • v2.51.0(Jun 14, 2022)

    2.51.0 (2022-06-14)

    Features

    • androidmanagement: update the api https://github.com/googleapis/google-api-python-client/commit/442e22f119a67c38e33d49cd801366090fabd564 (3538838)
    • baremetalsolution: update the api https://github.com/googleapis/google-api-python-client/commit/b610123fce8d04f6a50f63bfac7141426fdcb603 (3538838)
    • chromemanagement: update the api https://github.com/googleapis/google-api-python-client/commit/7a6743ddbab713688b938dcfb6fbc3e06a9e5d28 (3538838)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/717360c38c2db34d9d908b047bbf51f669789e8c (3538838)
    • connectors: update the api https://github.com/googleapis/google-api-python-client/commit/c2d081d477790f3d5112752bbda1e26b0799d1c8 (3538838)
    • containeranalysis: update the api https://github.com/googleapis/google-api-python-client/commit/338c9e7049410153a5c0912b4e60a08def584cb1 (3538838)
    • content: update the api https://github.com/googleapis/google-api-python-client/commit/3e500d9a4af04d2d0e980bea862fc0e85f1311d7 (3538838)
    • datacatalog: update the api https://github.com/googleapis/google-api-python-client/commit/4a20d52f761e61138a80add5262b593f20d5c6ba (3538838)
    • dataplex: update the api https://github.com/googleapis/google-api-python-client/commit/4a1b8ebd41084ed9b9c78ed69c6c16a412126b20 (3538838)
    • datastore: update the api https://github.com/googleapis/google-api-python-client/commit/983ba40399f1020cb4142ae4cffb60259ef82079 (3538838)
    • dialogflow: update the api https://github.com/googleapis/google-api-python-client/commit/3ae9b8e8fb03484a1eadc0ca23cda246f3625f81 (3538838)
    • displayvideo: update the api https://github.com/googleapis/google-api-python-client/commit/b1ef77b890f614d9777eb27d3126790cf1d011a4 (3538838)
    • documentai: update the api https://github.com/googleapis/google-api-python-client/commit/32d4f147f17d1fc6dc3b7cde3cd5c36df2fafb45 (3538838)
    • eventarc: update the api https://github.com/googleapis/google-api-python-client/commit/b529083fbf9f0d37b13e9b119bf9f6f068a1251f (3538838)
    • firestore: update the api https://github.com/googleapis/google-api-python-client/commit/d35c6cb19d92dcdf980e06bff2d9213c1ca7b1a6 (3538838)
    • gkehub: update the api https://github.com/googleapis/google-api-python-client/commit/d628b6b5968f7484fb3f4db01c400faa110f3a2f (3538838)
    • healthcare: update the api https://github.com/googleapis/google-api-python-client/commit/e65d2cc485a50127813eb19005c36aace3282834 (3538838)
    • jobs: update the api https://github.com/googleapis/google-api-python-client/commit/4ca8a71451b37a26d0743baa49843889fc63149c (3538838)
    • retail: update the api https://github.com/googleapis/google-api-python-client/commit/e59593dc35b07f2ea01f626f2339f391562d93d4 (3538838)
    • run: update the api https://github.com/googleapis/google-api-python-client/commit/c9f40c1bbae6223b2639765d0c37c54e49976314 (3538838)
    • storage: update the api https://github.com/googleapis/google-api-python-client/commit/40c368d9d8c95acade45401087a09a21532ec3ae (3538838)
    • transcoder: update the api https://github.com/googleapis/google-api-python-client/commit/41ffecab6f517645ccc8c0bab3e4f3f4104a1c38 (3538838)
    • vmmigration: update the api https://github.com/googleapis/google-api-python-client/commit/31870fadf1ea097e39f3acdb2ece1f7652dfd21f (3538838)
    • youtube: update the api https://github.com/googleapis/google-api-python-client/commit/f6c9cf9cd54dd34425ca7ae37612835fa5d5da97 (3538838)

    Bug Fixes

    • prod_tt_sasportal: update the api https://github.com/googleapis/google-api-python-client/commit/a0c165e93355f8b279ed758e59cb1946d2c56d29 (3538838)
    Source code(tar.gz)
    Source code(zip)
  • v2.50.0(Jun 7, 2022)

    2.50.0 (2022-06-07)

    Features

    • accesscontextmanager: update the api https://github.com/googleapis/google-api-python-client/commit/e6f96be2c2f9ebe086829a155a095ac4c17da2b5 (133e48c)
    • analyticsadmin: update the api https://github.com/googleapis/google-api-python-client/commit/3f77945c4f07d3e94317915f8dfb7c0f62b498ba (133e48c)
    • androidmanagement: update the api https://github.com/googleapis/google-api-python-client/commit/1e8afffab7fbb0d78b8a93050588bb01bfa45731 (b01eeab)
    • apigee: update the api https://github.com/googleapis/google-api-python-client/commit/0f73a4a8e8cea90c080df6124347f2db5352167f (b01eeab)
    • apigee: update the api https://github.com/googleapis/google-api-python-client/commit/cd0db01e2fc7b68b086424fa367a9dea3ea7c1f1 (133e48c)
    • baremetalsolution: update the api https://github.com/googleapis/google-api-python-client/commit/355e7c6fd65f0109c2504dcfe69db8ee9b132788 (b01eeab)
    • bigquery: update the api https://github.com/googleapis/google-api-python-client/commit/5f9ef8589b9e5b30a17f84fe709fe6bf5edc64dc (133e48c)
    • cloudasset: update the api https://github.com/googleapis/google-api-python-client/commit/e99fff33e7b8834da64963c90cf2bb73a094c999 (133e48c)
    • cloudchannel: update the api https://github.com/googleapis/google-api-python-client/commit/234c3a3a33c479cbea4920663b4a274a874a5179 (133e48c)
    • cloudidentity: update the api https://github.com/googleapis/google-api-python-client/commit/94438523b102ddf5c3cb641e8992aa3f276f1aa1 (b01eeab)
    • cloudresourcemanager: update the api https://github.com/googleapis/google-api-python-client/commit/324fcf116eade19f408292681ae7a2cbb38a792a (b01eeab)
    • cloudsearch: update the api https://github.com/googleapis/google-api-python-client/commit/2bf29de28baac6693a5f645e8db176b4c2b184b4 (b01eeab)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/40b5fd6d78aba27236017c9ef19f2585cb82a5cc (b01eeab)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/a98cf9e6d23747909f53b2fd0d226353dc4decd7 (133e48c)
    • containeranalysis: update the api https://github.com/googleapis/google-api-python-client/commit/e2c58b5a047a6bbb706733240b93d64b7e4eab17 (b01eeab)
    • container: update the api https://github.com/googleapis/google-api-python-client/commit/d3ebf7d4b93eb6a5677f97d4618c516e2402d1bc (133e48c)
    • datafusion: update the api https://github.com/googleapis/google-api-python-client/commit/05a4c82ecdcf56f8aa9e6a3e9a8e6674fd975908 (133e48c)
    • dataproc: update the api https://github.com/googleapis/google-api-python-client/commit/4592dcbf1be5c76fb63791513b2a8584f240769a (b01eeab)
    • dataproc: update the api https://github.com/googleapis/google-api-python-client/commit/bf1fa0956dd3c0fc3c6574bc5d9067d505cc0e3c (133e48c)
    • dialogflow: update the api https://github.com/googleapis/google-api-python-client/commit/a534b6afba64ad864c58c6b4b2658e4b96feb681 (b01eeab)
    • displayvideo: update the api https://github.com/googleapis/google-api-python-client/commit/2d529a88d5a40b8329cce812211490418afd5ead (b01eeab)
    • file: update the api https://github.com/googleapis/google-api-python-client/commit/7cfed854c6e99503e3a7e76d66ce0e02c437e7b0 (133e48c)
    • firebasedatabase: update the api https://github.com/googleapis/google-api-python-client/commit/6d1734cd65c35fce2640e860cc63b618fdf990f9 (133e48c)
    • firebasehosting: update the api https://github.com/googleapis/google-api-python-client/commit/44b4f1466e4b93257fa15bf09db97b638f234f7f (133e48c)
    • firebase: update the api https://github.com/googleapis/google-api-python-client/commit/b3b52f817f44d98c4bcda42975992df95946b8f5 (133e48c)
    • games: update the api https://github.com/googleapis/google-api-python-client/commit/c4784729971277b93d6693932a5f44490dab36b8 (133e48c)
    • gkehub: update the api https://github.com/googleapis/google-api-python-client/commit/1339a33fe7cb8158bed368a8efc973a091e36e46 (133e48c)
    • healthcare: update the api https://github.com/googleapis/google-api-python-client/commit/00aaeb3145aaa67a7084528ce11542243afad98b (133e48c)
    • iam: update the api https://github.com/googleapis/google-api-python-client/commit/5b9d09da5f205a62a0cfdf7fba64bc154ac4f4c5 (133e48c)
    • logging: update the api https://github.com/googleapis/google-api-python-client/commit/ddc1cfc24b6ba3b98691949751e0c0bb1eef4cf9 (133e48c)
    • managedidentities: update the api https://github.com/googleapis/google-api-python-client/commit/787a5e5d03031f32ff7ea6623f7c002a28d2006a (133e48c)
    • ondemandscanning: update the api https://github.com/googleapis/google-api-python-client/commit/4d8d69e7a26b01e82da522835f99af26ecced262 (133e48c)
    • ondemandscanning: update the api https://github.com/googleapis/google-api-python-client/commit/8f554ccbbfccaa315249ecc4b4ce5268fd943f7c (b01eeab)
    • recaptchaenterprise: update the api https://github.com/googleapis/google-api-python-client/commit/122a2261829d40f9938af810638105da8f1599ee (b01eeab)
    • securitycenter: update the api https://github.com/googleapis/google-api-python-client/commit/130c317f5a85477047629cec186d2f78918bc190 (b01eeab)
    • servicemanagement: update the api https://github.com/googleapis/google-api-python-client/commit/5dbe3b641d12c4bb0c63689f5e4f2f2da3f06f50 (b01eeab)
    • servicenetworking: update the api https://github.com/googleapis/google-api-python-client/commit/d207c0dc0462396b1595292d02e5540546b63616 (b01eeab)
    • spanner: update the api https://github.com/googleapis/google-api-python-client/commit/8260f14e447911b383fd844a7f00e3a3e66467f9 (133e48c)
    • vmmigration: update the api https://github.com/googleapis/google-api-python-client/commit/82a4625d4f51c555d7d0f55135c59a4241e3641a (b01eeab)

    Documentation

    Source code(tar.gz)
    Source code(zip)
  • v2.49.0(May 25, 2022)

    2.49.0 (2022-05-25)

    Features

    • accessapproval: update the api https://github.com/googleapis/google-api-python-client/commit/96c1b90e3121a379f2fa5af6abb8acb1ef166f24 (b6c3521)
    • alertcenter: update the api https://github.com/googleapis/google-api-python-client/commit/2bbca8fd64edce0d0e59bc1bb1ad0f4570cdd15f (b6c3521)
    • baremetalsolution: update the api https://github.com/googleapis/google-api-python-client/commit/fe198270098b5cd962b9b9084f52cff6551167c0 (b6c3521)
    • bigtableadmin: update the api https://github.com/googleapis/google-api-python-client/commit/c025232f2ece48e9890ca68a47b4a69812d95e5b (b6c3521)
    • cloudasset: update the api https://github.com/googleapis/google-api-python-client/commit/053dd5bbd6c99fdfc3acfee6a26b958bd17605bb (b6c3521)
    • cloudbuild: update the api https://github.com/googleapis/google-api-python-client/commit/7400fdbe8b48a390522ab812c04fd55f4d1f4234 (b6c3521)
    • cloudfunctions: update the api https://github.com/googleapis/google-api-python-client/commit/7740f6736e3d70a1e358a21fe067ad610ec4bec2 (b6c3521)
    • cloudidentity: update the api https://github.com/googleapis/google-api-python-client/commit/d5f6be96a1c8a5c7e3f3e35f8f5d8152d2be62ad (b6c3521)
    • composer: update the api https://github.com/googleapis/google-api-python-client/commit/162471e7c7c9eb37b64531334db4d7c52cb48f0f (b6c3521)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/09285b87fddf21f8ec8b57c91b49183dfb176b61 (b6c3521)
    • container: update the api https://github.com/googleapis/google-api-python-client/commit/d8b241d7ea2dcd2078dd0af0da7ce31b1bd10ce5 (b6c3521)
    • displayvideo: update the api https://github.com/googleapis/google-api-python-client/commit/ff69e6548d552e67b858c944e8eefa0fe2b2794c (b6c3521)
    • dns: update the api https://github.com/googleapis/google-api-python-client/commit/9072ecd03ee478feaafff3aa7fb29a85b8767284 (b6c3521)
    • docs: update the api https://github.com/googleapis/google-api-python-client/commit/d4dac665b66dd4fc546f5f276954fec510dd257b (b6c3521)
    • documentai: update the api https://github.com/googleapis/google-api-python-client/commit/5907ddf733178eaf3c1c90b73c53736b39e9ec7e (b6c3521)
    • firebase: update the api https://github.com/googleapis/google-api-python-client/commit/e1492762b86a533f9db39077044caa30af3f5758 (b6c3521)
    • firestore: update the api https://github.com/googleapis/google-api-python-client/commit/bab37f8b7ea08149ad73cae8d3c0a9699df753f5 (b6c3521)
    • metastore: update the api https://github.com/googleapis/google-api-python-client/commit/86327282eb20299388c3d4bf103e95a35ed9ac30 (b6c3521)
    • monitoring: update the api https://github.com/googleapis/google-api-python-client/commit/7a31c6366dd15f902f8bb7e863aebcd698045827 (b6c3521)
    • notebooks: update the api https://github.com/googleapis/google-api-python-client/commit/65822a859a52ac17c12ebf9303adce79b7250e2f (b6c3521)
    • ondemandscanning: update the api https://github.com/googleapis/google-api-python-client/commit/d24800a32ad5d5d273ac83c150fb3c2c7f61f375 (b6c3521)
    • playdeveloperreporting: update the api https://github.com/googleapis/google-api-python-client/commit/590c39587bbf9c7cb46d24ed4187bdf9e643e4a1 (b6c3521)
    • pubsub: update the api https://github.com/googleapis/google-api-python-client/commit/8479f669975cf3a026697d4657beb0f677487f06 (b6c3521)
    • recaptchaenterprise: update the api https://github.com/googleapis/google-api-python-client/commit/d47388abe8cc8424ef306a37bfaf0f4a571ce5a8 (b6c3521)
    • redis: update the api https://github.com/googleapis/google-api-python-client/commit/6c130312fb7d7237d5130b4f298c7bcd3528bb20 (b6c3521)
    • securitycenter: update the api https://github.com/googleapis/google-api-python-client/commit/77735311449d464299f47869c30f0e7beed690bb (b6c3521)
    Source code(tar.gz)
    Source code(zip)
  • v2.48.0(May 17, 2022)

    2.48.0 (2022-05-17)

    Features

    • adsense: update the api https://github.com/googleapis/google-api-python-client/commit/967d773d4c69816ac7ace5feb3af6e0765e7cddd (29ceb38)
    • androidpublisher: update the api https://github.com/googleapis/google-api-python-client/commit/30ad1999e8076ed6b72a0828ac3ea03e54f75e6b (f2c8fa6)
    • apigee: update the api https://github.com/googleapis/google-api-python-client/commit/15415da4212b6684a66818d83871dd12b7b96f08 (f2c8fa6)
    • apigee: update the api https://github.com/googleapis/google-api-python-client/commit/77af0ebaf6a17994af53c9b718b56cba7fa173f0 (29ceb38)
    • artifactregistry: update the api https://github.com/googleapis/google-api-python-client/commit/50deaf91ec56930ad615b8ed1220b78d30088ad8 (29ceb38)
    • baremetalsolution: update the api https://github.com/googleapis/google-api-python-client/commit/b2b450446b747719b81764eedd43621d1a258318 (29ceb38)
    • chromemanagement: update the api https://github.com/googleapis/google-api-python-client/commit/835512f4e8b14f87f1e5c18a23c695edbc7931a7 (29ceb38)
    • civicinfo: update the api https://github.com/googleapis/google-api-python-client/commit/ed264ebd1ee2570ba1a6b6501394e1d753cf0ab4 (f2c8fa6)
    • cloudasset: update the api https://github.com/googleapis/google-api-python-client/commit/0410feba7d41c5a48859c7fb24e9eae13e799be4 (f2c8fa6)
    • cloudbuild: update the api https://github.com/googleapis/google-api-python-client/commit/fea82f61b7e233f5916f4590bc35fbae7d89f007 (f2c8fa6)
    • clouddeploy: update the api https://github.com/googleapis/google-api-python-client/commit/990cc9932e50e21528c68179fb32ad46e3ee4cd2 (29ceb38)
    • cloudsearch: update the api https://github.com/googleapis/google-api-python-client/commit/cd774af2d139a15a448be181a810697a45c56c03 (f2c8fa6)
    • composer: update the api https://github.com/googleapis/google-api-python-client/commit/2663ed11e21f443e211888b8df159cce7c2b4a57 (f2c8fa6)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/6915b9a59bbf3a85539a79c16e3b40b8cb0b7d2c (29ceb38)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/db29444538348988924b952fd49e68f430a62bc3 (f2c8fa6)
    • containeranalysis: update the api https://github.com/googleapis/google-api-python-client/commit/0ebbb28773ff8d947533db6b417343610423155f (f2c8fa6)
    • containeranalysis: update the api https://github.com/googleapis/google-api-python-client/commit/81466826cecbf67f44971d67184c31fd2d7e84d9 (29ceb38)
    • container: update the api https://github.com/googleapis/google-api-python-client/commit/395a825be73f8d7657006d35a9aeaf74401aa043 (29ceb38)
    • container: update the api https://github.com/googleapis/google-api-python-client/commit/992327dfbb5096433c41ebe2cecfbf956dd68241 (f2c8fa6)
    • content: update the api https://github.com/googleapis/google-api-python-client/commit/9adb1c6be56c3f472fa63ce94cd67bc89cdfd05b (f2c8fa6)
    • datafusion: update the api https://github.com/googleapis/google-api-python-client/commit/8087fa1fffc9ff7801aeb5e9f31bc5af3e1b4279 (29ceb38)
    • dataplex: update the api https://github.com/googleapis/google-api-python-client/commit/a963bc73eb83f7411a37cec73916082c0ac9ef36 (f2c8fa6)
    • dataplex: update the api https://github.com/googleapis/google-api-python-client/commit/f4d781d38e3ceceb11c2c2b1ca77fdf6331e87c1 (29ceb38)
    • dataproc: update the api https://github.com/googleapis/google-api-python-client/commit/a174397a01c651f11ea156955f229df31b93d677 (29ceb38)
    • dialogflow: update the api https://github.com/googleapis/google-api-python-client/commit/e3ad6a0b77b943128bd1e858f50fd969042136a1 (29ceb38)
    • dlp: update the api https://github.com/googleapis/google-api-python-client/commit/d06f3fc181cc09b87ad6e54633fd9762a20e14a6 (f2c8fa6)
    • dns: update the api https://github.com/googleapis/google-api-python-client/commit/13a17f0715f2717e9f43b59cd6cbcba473d69f84 (f2c8fa6)
    • docs: update the api https://github.com/googleapis/google-api-python-client/commit/0c73a0d765aad2338beaae81f2b96807708b2fe0 (29ceb38)
    • documentai: update the api https://github.com/googleapis/google-api-python-client/commit/79b0c5a529aef9096b8511753600fbe2437c8120 (f2c8fa6)
    • drive: update the api https://github.com/googleapis/google-api-python-client/commit/be2d4d7739d9b626556cc75b00bf08fb31fb6d81 (f2c8fa6)
    • eventarc: update the api https://github.com/googleapis/google-api-python-client/commit/0368593b0f6c72df16a7fe19cb474ea123a1203c (29ceb38)
    • gkehub: update the api https://github.com/googleapis/google-api-python-client/commit/904f2b96067e9001b63cbb041538dcd328a2a85a (29ceb38)
    • gkehub: update the api https://github.com/googleapis/google-api-python-client/commit/a9ce2474e845454aaf36006d5b133f104685d49b (f2c8fa6)
    • monitoring: update the api https://github.com/googleapis/google-api-python-client/commit/c9b0f9b18463a3c95d4b277f967eb1ba5a70b7df (f2c8fa6)
    • networkmanagement: update the api https://github.com/googleapis/google-api-python-client/commit/b8d0ef0aab8a83e0dd3442b68bea3bb8e1ab4355 (29ceb38)
    • networkservices: update the api https://github.com/googleapis/google-api-python-client/commit/c8b24e13d7e80c520105263b262b0061e853f2cd (f2c8fa6)
    • ondemandscanning: update the api https://github.com/googleapis/google-api-python-client/commit/6ea37ef1566addbddebab0430717c3492f29a3e6 (f2c8fa6)
    • ondemandscanning: update the api https://github.com/googleapis/google-api-python-client/commit/a27320a44fd6aa2d0d253b99af32e7f8c5fbe01f (29ceb38)
    • paymentsresellersubscription: update the api https://github.com/googleapis/google-api-python-client/commit/dae6904e5265a1eda2f3d43c5c2d0893e95bf4c7 (29ceb38)
    • realtimebidding: update the api https://github.com/googleapis/google-api-python-client/commit/d5ccaffe6a4452959b0ff68fd1164d780b3bcf9d (29ceb38)
    • recaptchaenterprise: update the api https://github.com/googleapis/google-api-python-client/commit/b5be5fc96f5debe4b28029c181b6b294e3383572 (f2c8fa6)
    • redis: update the api https://github.com/googleapis/google-api-python-client/commit/a326fdd93838a1b4ea03ead487e44fc20049cc0b (f2c8fa6)
    • retail: update the api https://github.com/googleapis/google-api-python-client/commit/98248b5f1e31486485de83b051c42fe1f18abcf4 (29ceb38)
    • run: update the api https://github.com/googleapis/google-api-python-client/commit/5aaae810c559dbd4d6ca4b73b75c9dea82e52e9d (29ceb38)
    • securitycenter: update the api https://github.com/googleapis/google-api-python-client/commit/f919cc022be09307483ea7aaebcaa469375c8da2 (29ceb38)
    • serviceconsumermanagement: update the api https://github.com/googleapis/google-api-python-client/commit/5fc90e536d5ecfb7bc72038b33602d8837d44f4c (f2c8fa6)
    • servicecontrol: update the api https://github.com/googleapis/google-api-python-client/commit/1cf79d3fc3843012989beaa87352e4675ec147e2 (f2c8fa6)
    • servicenetworking: update the api https://github.com/googleapis/google-api-python-client/commit/278892a6ae6a4291157180e11eec187061717a31 (f2c8fa6)
    • serviceusage: update the api https://github.com/googleapis/google-api-python-client/commit/9490dbd845d6532148824244d27e02be8e902a71 (f2c8fa6)
    • storage: update the api https://github.com/googleapis/google-api-python-client/commit/2a56bff0d1b600e80bf117a7e44df6ea9d24c036 (f2c8fa6)
    • vmmigration: update the api https://github.com/googleapis/google-api-python-client/commit/5bcdbf59feba3009d4a9beec128ffa26e3d11918 (f2c8fa6)
    Source code(tar.gz)
    Source code(zip)
  • v2.47.0(May 3, 2022)

    2.47.0 (2022-05-03)

    Features

    • admob: update the api https://github.com/googleapis/google-api-python-client/commit/9e22dca4130706a21fed290fa5ae7fa5ca7bd495 (e8e1bf9)
    • artifactregistry: update the api https://github.com/googleapis/google-api-python-client/commit/903f0b85f4f95c5263dfa1e24ceb05f8fc694107 (e8e1bf9)
    • baremetalsolution: update the api https://github.com/googleapis/google-api-python-client/commit/80d174467cc563fa4fd81760ce3c7551feec34a2 (e8e1bf9)
    • bigquery: update the api https://github.com/googleapis/google-api-python-client/commit/4e49c7be10653b21cb213b40399ffd34069c7a05 (e8e1bf9)
    • chat: update the api https://github.com/googleapis/google-api-python-client/commit/20df986e2b2cad1f4c75d881bfa70f7f1462bd56 (e8e1bf9)
    • cloudfunctions: update the api https://github.com/googleapis/google-api-python-client/commit/0468e92be30eb77cdca9c719159e044dd0edae4f (e8e1bf9)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/fd8adb394cb4bdca5ec350ae603ffbe36aa00d3a (e8e1bf9)
    • content: update the api https://github.com/googleapis/google-api-python-client/commit/c2df6c0e77d17d4964cb641f2c36fba7ebfc5657 (e8e1bf9)
    • dialogflow: update the api https://github.com/googleapis/google-api-python-client/commit/8ca090f51da56ca1d4105eaf1bb693e402974d90 (e8e1bf9)
    • documentai: update the api https://github.com/googleapis/google-api-python-client/commit/4c07bc069a11d8818ee9ab58be50d63966e7dd42 (e8e1bf9)
    • firebaseappcheck: update the api https://github.com/googleapis/google-api-python-client/commit/9f134a6aa858be3f95758e951b945ead12436046 (e8e1bf9)
    • gkehub: update the api https://github.com/googleapis/google-api-python-client/commit/6f3aac8536300cc39a6afb2cd66f4f6b8eb45003 (e8e1bf9)
    • healthcare: update the api https://github.com/googleapis/google-api-python-client/commit/97bd0355563e3baee40f2804468e7cc8c96f6a90 (e8e1bf9)
    • iam: update the api https://github.com/googleapis/google-api-python-client/commit/bbf02c71a0f96153bac38da400ea338ce8a5629a (e8e1bf9)
    • managedidentities: update the api https://github.com/googleapis/google-api-python-client/commit/c3de5dae223f8b8b33b83e77d9b533a0b04a638b (e8e1bf9)
    • memcache: update the api https://github.com/googleapis/google-api-python-client/commit/403e8813f8d8df8d0e7c7b0dbbb27ba996c6988b (e8e1bf9)
    • metastore: update the api https://github.com/googleapis/google-api-python-client/commit/ce0552a45960084acb26e1eb757c9061d877052b (e8e1bf9)
    • networkconnectivity: update the api https://github.com/googleapis/google-api-python-client/commit/2da81e791a6f0be4fa51b209ab0be3d688cb925d (e8e1bf9)
    • networkservices: update the api https://github.com/googleapis/google-api-python-client/commit/b6aa7f55b298beab3168b715f83d072ec6d539a7 (e8e1bf9)
    • ondemandscanning: update the api https://github.com/googleapis/google-api-python-client/commit/8030d88e4e32497de5695f642965250f22d62b92 (e8e1bf9)
    • paymentsresellersubscription: update the api https://github.com/googleapis/google-api-python-client/commit/1d84067e81d24a8a8bf869445fd19ff229e7e1a6 (e8e1bf9)
    • run: update the api https://github.com/googleapis/google-api-python-client/commit/e0c6bb2346f82c0ba155b6c88a3d4e6b8cecf7e3 (e8e1bf9)
    • servicenetworking: update the api https://github.com/googleapis/google-api-python-client/commit/2880f47e92cb57572cec6992161a85508b2aafa3 (e8e1bf9)
    Source code(tar.gz)
    Source code(zip)
  • v2.46.0(Apr 26, 2022)

    2.46.0 (2022-04-26)

    Features

    • baremetalsolution: update the api https://github.com/googleapis/google-api-python-client/commit/dfaeb43d3e1896a011d611651695f6b7fbf2e2c5 (fba18bf)
    • bigqueryreservation: update the api https://github.com/googleapis/google-api-python-client/commit/1a85de3a726b840c06d2b55e36d1352881342fd3 (fba18bf)
    • chat: update the api https://github.com/googleapis/google-api-python-client/commit/94044225b078ecf5f378d3add86cb3f4afec5b9a (fba18bf)
    • cloudchannel: update the api https://github.com/googleapis/google-api-python-client/commit/3db2f5c1c873e0def3c85b7ee46386774fefd73e (fba18bf)
    • cloudsearch: update the api https://github.com/googleapis/google-api-python-client/commit/56a38b080d29039dff8d6c756a21d9704e7c7aaf (fba18bf)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/c05cb3357a67eefe80038b1aa3e4dfc8ccb7ab6f (fba18bf)
    • doubleclicksearch: update the api https://github.com/googleapis/google-api-python-client/commit/96507843666e6600538166f86df62220f16d4eaa (fba18bf)
    • drive: update the api https://github.com/googleapis/google-api-python-client/commit/52acfadcfd9007aaf26245d3c14a5530ff6d3a3e (fba18bf)
    • managedidentities: update the api https://github.com/googleapis/google-api-python-client/commit/ce1faebaebbc8329fd5ab7e2883bde621f0603a9 (fba18bf)
    • networkservices: update the api https://github.com/googleapis/google-api-python-client/commit/ada585788f0f29d47b12a89a0d23b62508703fea (fba18bf)
    • ondemandscanning: update the api https://github.com/googleapis/google-api-python-client/commit/883bf741abb0ab73f14d23f0d578994f9c2b4f00 (fba18bf)
    • prod_tt_sasportal: update the api https://github.com/googleapis/google-api-python-client/commit/e5391040e9b1f4389b1944c7bb37a09d49e57244 (fba18bf)
    • retail: update the api https://github.com/googleapis/google-api-python-client/commit/009f7d672bf413989dba7a5e21edd6b38d6c2d91 (fba18bf)
    • run: update the api https://github.com/googleapis/google-api-python-client/commit/d05adee3f771d4d1b1f7b9a75599e4285ab900a4 (fba18bf)
    • securitycenter: update the api https://github.com/googleapis/google-api-python-client/commit/dafa308bd12826dc67ef0b08f5563f54a2f8e847 (fba18bf)
    Source code(tar.gz)
    Source code(zip)
  • v2.45.0(Apr 19, 2022)

    2.45.0 (2022-04-19)

    Features

    • androidmanagement: update the api https://github.com/googleapis/google-api-python-client/commit/3d3760060eeaefb591f9a1e54d79e2ca245cf290 (e691ed3)
    • apigee: update the api https://github.com/googleapis/google-api-python-client/commit/aa290538423aecb18e36d1586807d76be9b0b123 (e691ed3)
    • baremetalsolution: update the api https://github.com/googleapis/google-api-python-client/commit/629a96880a9bd3eb395220276061ce4b4db7ac60 (e691ed3)
    • bigtableadmin: update the api https://github.com/googleapis/google-api-python-client/commit/2d508727d12b197f2c400ffc6b400fd524ab35ff (e691ed3)
    • certificatemanager: update the api https://github.com/googleapis/google-api-python-client/commit/40bf958d8c9a4d4569f7a16263c9de9c3a701977 (e691ed3)
    • civicinfo: update the api https://github.com/googleapis/google-api-python-client/commit/95321d901b90e9d09d2478074b595baef79fb223 (e691ed3)
    • cloudasset: update the api https://github.com/googleapis/google-api-python-client/commit/3eee9cadcf600e4aa2171966b196639d1fdb7534 (e691ed3)
    • clouddeploy: update the api https://github.com/googleapis/google-api-python-client/commit/acd6b20379db7630e59aaae13e7077f7b0a2e2e2 (e691ed3)
    • container: update the api https://github.com/googleapis/google-api-python-client/commit/7c592ee048886b8e686c938e656f23b6dc9685ae (e691ed3)
    • dataflow: update the api https://github.com/googleapis/google-api-python-client/commit/53c9c70ec03baaf10d4c6535f8f24f1ee89ca34d (e691ed3)
    • dataproc: update the api https://github.com/googleapis/google-api-python-client/commit/31197674cda7b1ec540fa20e47473e5b64760b45 (e691ed3)
    • datastream: update the api https://github.com/googleapis/google-api-python-client/commit/aea557f145d7d7903906e4cf82a12dbf25c19582 (e691ed3)
    • documentai: update the api https://github.com/googleapis/google-api-python-client/commit/9a6bad2524ec5556ee2701f9d0bd7ed3b5d72abd (e691ed3)
    • file: update the api https://github.com/googleapis/google-api-python-client/commit/b527c56f6f4243839dca1502ee6659f825a80179 (e691ed3)
    • firebaseappcheck: update the api https://github.com/googleapis/google-api-python-client/commit/3be993ade8d3f0c1d4d53b17df567c6493a15450 (e691ed3)
    • gkehub: update the api https://github.com/googleapis/google-api-python-client/commit/a77aded8ef786e6dee271fba1b4a216866a52b23 (e691ed3)
    • logging: update the api https://github.com/googleapis/google-api-python-client/commit/cc08e8e21cbd481866b2d1e317a5fdc3a4b0be87 (e691ed3)
    • policytroubleshooter: update the api https://github.com/googleapis/google-api-python-client/commit/3f20c2e6dccebf4ffb9208bc32046f777ff6d269 (e691ed3)
    • prod_tt_sasportal: update the api https://github.com/googleapis/google-api-python-client/commit/bacc9efbbe9f43154d10370f369d4f2ffae5301c (e691ed3)
    • run: update the api https://github.com/googleapis/google-api-python-client/commit/1b566dcf9ccf99d77500750af5868d67541f708d (e691ed3)
    • servicemanagement: update the api https://github.com/googleapis/google-api-python-client/commit/6d783b7a675ff268e33c8a46ae5a92eeac7bc27a (e691ed3)
    • vmmigration: update the api https://github.com/googleapis/google-api-python-client/commit/a0b42c2c2c9a9b96d3511d1295021094c981f8d7 (e691ed3)
    Source code(tar.gz)
    Source code(zip)
  • v2.44.0(Apr 12, 2022)

    2.44.0 (2022-04-12)

    Features

    • androidenterprise: update the api https://github.com/googleapis/google-api-python-client/commit/1c3e29583cf3025e49e848cab41a50ccd2d3263c (0b5402e)
    • apikeys: update the api https://github.com/googleapis/google-api-python-client/commit/73c71d8cce0bcf8003c4cb551256139245765a4d (0b5402e)
    • bigquery: update the api https://github.com/googleapis/google-api-python-client/commit/b611d716f55d58fc03306f1cf28f105d7403efb8 (0b5402e)
    • chat: update the api https://github.com/googleapis/google-api-python-client/commit/cb0e654f8c94701c8a50c4c6b0ee6f0be3b90184 (0b5402e)
    • cloudfunctions: update the api https://github.com/googleapis/google-api-python-client/commit/fd7c5f5b1e680eff33e9614c1da1ee3c8cdd1910 (0b5402e)
    • cloudidentity: update the api https://github.com/googleapis/google-api-python-client/commit/07cccbd39377de0b4df8c35ddbaaabf162bb35b7 (0b5402e)
    • cloudresourcemanager: update the api https://github.com/googleapis/google-api-python-client/commit/a7a4ffeeae0184d3616d40657c999662068fb802 (0b5402e)
    • content: update the api https://github.com/googleapis/google-api-python-client/commit/f02827fd2763056aa06feb5d281f0b8a212fad41 (0b5402e)
    • dataplex: update the api https://github.com/googleapis/google-api-python-client/commit/69e3884e8d18a9212d4d2a5ce7761b8d3beff77a (0b5402e)
    • datastore: update the api https://github.com/googleapis/google-api-python-client/commit/52540a9b421e7247d544020403f4bf6488cb9885 (0b5402e)
    • dlp: update the api https://github.com/googleapis/google-api-python-client/commit/86ab5a978e43470e0042fe34a3938bd57e733ff4 (0b5402e)
    • firebaseappcheck: update the api https://github.com/googleapis/google-api-python-client/commit/c8674efb1a62f1bbd47abbb75c3dc7eb922795a6 (0b5402e)
    • firestore: update the api https://github.com/googleapis/google-api-python-client/commit/0b03ba1c98f40e47df63ee08a791462e60d106cf (0b5402e)
    • games: update the api https://github.com/googleapis/google-api-python-client/commit/c303c8402a0adfa1e7d82aded73c609a5e345967 (0b5402e)
    • logging: update the api https://github.com/googleapis/google-api-python-client/commit/f5e25a680654ba5d4c8f27cb60a1b12b76006065 (0b5402e)
    • memcache: update the api https://github.com/googleapis/google-api-python-client/commit/9a702f8dcbcaefb9990e82358fe6137253788424 (0b5402e)
    • mybusinessqanda: update the api https://github.com/googleapis/google-api-python-client/commit/17dc4c8a8154aaa32917c0c1c4943e8eabcf5c43 (0b5402e)
    • networkconnectivity: update the api https://github.com/googleapis/google-api-python-client/commit/72b622148f7af8a497cda1e94a9c97283b73d14a (0b5402e)
    • networkservices: update the api https://github.com/googleapis/google-api-python-client/commit/ff0fbc2723d8ccc565f69de8d85444dc13a0c48e (0b5402e)
    • retail: update the api https://github.com/googleapis/google-api-python-client/commit/0ff1324dc43bac030b42529cae3343e40ffd17bd (0b5402e)
    • run: update the api https://github.com/googleapis/google-api-python-client/commit/ebeb360ad0501b53fcc50d18f449c2eeb13fdf90 (0b5402e)
    • securitycenter: update the api https://github.com/googleapis/google-api-python-client/commit/215757fe528921a0be6d3ed52527740c8945cd41 (0b5402e)
    • serviceconsumermanagement: update the api https://github.com/googleapis/google-api-python-client/commit/75ad6f09b36ebafc748581ca88093f75a74ac8e8 (0b5402e)
    • servicenetworking: update the api https://github.com/googleapis/google-api-python-client/commit/e505d23b5e8cc4e9668fd6959be5fb3122e0f99c (0b5402e)
    • serviceusage: update the api https://github.com/googleapis/google-api-python-client/commit/ded4fe51e1a374d214389b08633847fab6ed0fb2 (0b5402e)
    • spanner: update the api https://github.com/googleapis/google-api-python-client/commit/b2edae4e2e8ee6749a2d66318f1e0e0e764f35d1 (0b5402e)
    Source code(tar.gz)
    Source code(zip)
  • v2.43.0(Apr 5, 2022)

    2.43.0 (2022-04-05)

    Features

    • adsense: update the api https://github.com/googleapis/google-api-python-client/commit/b1d20ffff49a2fabb1233ed98fd7f9e7bf4c9c77 (4070437)
    • androidpublisher: update the api https://github.com/googleapis/google-api-python-client/commit/598768787d51646a25f6421edcda768c9234848f (4070437)
    • androidpublisher: update the api https://github.com/googleapis/google-api-python-client/commit/9adeaf4149469daa37cfedb4371d18122821fd7f (4096473)
    • apigee: update the api https://github.com/googleapis/google-api-python-client/commit/fb58105e607e59add50f2fdaa74f48ac3758c9f7 (4070437)
    • appengine: update the api https://github.com/googleapis/google-api-python-client/commit/5c076bcc466612c63553fd20cde90d9bf3619071 (4070437)
    • artifactregistry: update the api https://github.com/googleapis/google-api-python-client/commit/083c844c3884117f142e39d4c3b0836b402e6840 (4070437)
    • baremetalsolution: update the api https://github.com/googleapis/google-api-python-client/commit/2234f878b3adafd2e3ab4e0f952ef72587e1c44a (4096473)
    • bigquery: update the api https://github.com/googleapis/google-api-python-client/commit/b7e05642cadecc815c84c37de615c134882ea7d9 (4096473)
    • chat: update the api https://github.com/googleapis/google-api-python-client/commit/428a1815f6235cb1ca8c9a9cb91a9b02f43707d2 (4070437)
    • chromemanagement: update the api https://github.com/googleapis/google-api-python-client/commit/170410b0714abe794a768965270c57673f7839de (4070437)
    • chromepolicy: update the api https://github.com/googleapis/google-api-python-client/commit/b3fb53a6ad1e7253b3728e0d768144a8c49bfb9f (4096473)
    • cloudbuild: update the api https://github.com/googleapis/google-api-python-client/commit/ef6853dc854b8123a5b19cc68c6b6da7a2b9cd63 (4096473)
    • cloudfunctions: update the api https://github.com/googleapis/google-api-python-client/commit/20c1e9602ccdf0960bded76bbb19493a6da46261 (4096473)
    • cloudsearch: update the api https://github.com/googleapis/google-api-python-client/commit/0cc225b0fafa88a1fb10b0a57d06c3598517a7cf (4096473)
    • composer: update the api https://github.com/googleapis/google-api-python-client/commit/d4b4d5798082fcffb6cfd7d106499492b54d5d32 (4070437)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/45f66565224d5e8bae40b5dfb016c236d3372803 (4070437)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/946d92e5dbdcc8b345e7493d5750e34f9075f1e5 (4096473)
    • containeranalysis: update the api https://github.com/googleapis/google-api-python-client/commit/bc197df918bb33c8d80cf1b722457da37b15cbac (4096473)
    • container: update the api https://github.com/googleapis/google-api-python-client/commit/45aab7d1fc016add392c2bb6079909e4582e09da (4096473)
    • content: update the api https://github.com/googleapis/google-api-python-client/commit/fbfe2be1d57d4938e010e2674df83cb816f51a5d (4096473)
    • datastream: update the api https://github.com/googleapis/google-api-python-client/commit/bc324ded96549b1e371043313900c27c9907c1f8 (4096473)
    • dialogflow: update the api https://github.com/googleapis/google-api-python-client/commit/d104525b371660248f05eda21a04a16e7d0e5fe1 (4070437)
    • displayvideo: update the api https://github.com/googleapis/google-api-python-client/commit/e146ba81c50c66e864fc3b409ec738d547efc319 (4096473)
    • documentai: update the api https://github.com/googleapis/google-api-python-client/commit/4846d8c5f22597642b3b12096a91af385a08f3d4 (4070437)
    • documentai: update the api https://github.com/googleapis/google-api-python-client/commit/d4159650d73b2a15f76ebda218064fe33e4a8241 (4096473)
    • firebaseappcheck: update the api https://github.com/googleapis/google-api-python-client/commit/5eaeb4bf654e86f6d5d96403550fd8be87b93f5c (4096473)
    • firebasedatabase: update the api https://github.com/googleapis/google-api-python-client/commit/3d7b1ee97cf20acfe5265508d9283012f6784d59 (4070437)
    • firestore: update the api https://github.com/googleapis/google-api-python-client/commit/72d910ce1857a0741cde846a89aa565500c95c03 (4096473)
    • games: update the api https://github.com/googleapis/google-api-python-client/commit/b8e15af702c5fd32044f11645b4adf6e04720e2b (4096473)
    • healthcare: update the api https://github.com/googleapis/google-api-python-client/commit/c0bec9144549d4eee3e65b7ccc335ebb0c00fdfb (4096473)
    • iap: update the api https://github.com/googleapis/google-api-python-client/commit/dbed650ef5d9bf3859651ecfd05f7f20521064ef (4096473)
    • monitoring: update the api https://github.com/googleapis/google-api-python-client/commit/1d87b493064070669f03506befd8b9db77a683af (4070437)
    • notebooks: update the api https://github.com/googleapis/google-api-python-client/commit/11670e604e27de2ad6a640a0e762454274e2a70b (4096473)
    • recommender: update the api https://github.com/googleapis/google-api-python-client/commit/376399fe70d067d58d65cf338bcd544b34216cc4 (4070437)
    • recommender: update the api https://github.com/googleapis/google-api-python-client/commit/a69869b42e70e2e93b8ae2869bd925107d57949a (4096473)
    • retail: update the api https://github.com/googleapis/google-api-python-client/commit/2e4354e374b33961465f36b6b2dc6b94d9835ecb (4070437)
    • sasportal: update the api https://github.com/googleapis/google-api-python-client/commit/11eb944061e530fb027deb1e06371cb8f01c3fc0 (4096473)
    • securitycenter: update the api https://github.com/googleapis/google-api-python-client/commit/291b3e3f64507d989e999f0bb7f99dad3fa46c92 (4070437)
    • servicecontrol: update the api https://github.com/googleapis/google-api-python-client/commit/5f51350561a9e664dd0a1f453468e6060b156e4a (4096473)
    • sqladmin: update the api https://github.com/googleapis/google-api-python-client/commit/bc8a50d79a3519ad639f613c0265e498f77fd179 (4096473)
    • storagetransfer: update the api https://github.com/googleapis/google-api-python-client/commit/ed56216ed0f1951521a6c7639612fe89ab634fcc (4070437)
    • storage: update the api https://github.com/googleapis/google-api-python-client/commit/08228001d2df9fe6fb287d76667703cc1e960ac7 (4070437)
    • vault: update the api https://github.com/googleapis/google-api-python-client/commit/4634b3d0486fd0b2e7fb3ef3885fd154798ead57 (4070437)
    • vmmigration: update the api https://github.com/googleapis/google-api-python-client/commit/51e5e049e77d9748f85e83e1a6240b12482cea8e (4070437)
    • workflowexecutions: update the api https://github.com/googleapis/google-api-python-client/commit/7c84831d8cb4a7083430297dcebe7bd1c19e4c5c (4096473)

    Bug Fixes

    • forms: update the api https://github.com/googleapis/google-api-python-client/commit/b0d49dbd2827ad80c3d59779fadf754ea4a25a03 (4070437)
    • youtube: update the api https://github.com/googleapis/google-api-python-client/commit/990a6f5f385eb3ebd2f54f39274f23272aa54612 (4070437)
    Source code(tar.gz)
    Source code(zip)
  • v2.42.0(Mar 22, 2022)

    2.42.0 (2022-03-22)

    Features

    • analyticsadmin: update the api https://github.com/googleapis/google-api-python-client/commit/908b1fa724a11415a7e181cae916bb882489d1f0 (5621484)
    • androidmanagement: update the api https://github.com/googleapis/google-api-python-client/commit/ae2e5c2afbc1e6b4c7ea991d86ad57420ee0c760 (5621484)
    • apigee: update the api https://github.com/googleapis/google-api-python-client/commit/05d347993b1ebcbfa2f8fae88fda23dab826c80b (5621484)
    • apikeys: update the api https://github.com/googleapis/google-api-python-client/commit/0a7914ea43f115286281e2f91e743c7b65b34622 (5621484)
    • artifactregistry: update the api https://github.com/googleapis/google-api-python-client/commit/8e39a75b5e14ed4e9f14889ae07e27d3b720c0ed (5621484)
    • baremetalsolution: update the api https://github.com/googleapis/google-api-python-client/commit/badd5b1838b6c47241b1f581956caaf447c3c7d0 (5621484)
    • bigquery: update the api https://github.com/googleapis/google-api-python-client/commit/d522ad1d179ff42612ed361258091b0fdf27eeff (5621484)
    • cloudsearch: update the api https://github.com/googleapis/google-api-python-client/commit/4a3e8733eb7b1464fc0edd13921abf5f4c47700d (5621484)
    • compute: update the api https://github.com/googleapis/google-api-python-client/commit/4cc4fb7063c50d07d06afdae373b799fc2ee513c (5621484)
    • datafusion: update the api https://github.com/googleapis/google-api-python-client/commit/ba1e4f8cfe0d66734da8c473a788fef8a2e2c16d (5621484)
    • documentai: update the api https://github.com/googleapis/google-api-python-client/commit/f2773dce6e38d45709369c60e179b83c4722dc9f (5621484)
    • eventarc: update the api https://github.com/googleapis/google-api-python-client/commit/cd23853a9d2a923a035b1bf4fa1de7ce03e3db17 (5621484)
    • firestore: update the api https://github.com/googleapis/google-api-python-client/commit/544fbd304651f548fbe4e47c7d6cb0cc829b2d4a (5621484)
    • iam: update the api https://github.com/googleapis/google-api-python-client/commit/2ebd974ccb4de6541a81d7d0a7231d00f1fd3a12 (5621484)
    • logging: update the api https://github.com/googleapis/google-api-python-client/commit/8252d87cb38eb09afd7a89b00a1e41c50bca4442 (5621484)
    • memcache: update the api https://github.com/googleapis/google-api-python-client/commit/8f78e3de8ca5d0e3c2f29fa5546b8ebf6bc39147 (5621484)
    • prod_tt_sasportal: update the api https://github.com/googleapis/google-api-python-client/commit/5c5b504d38cee38749a667e239a20e87ac3f7de2 (5621484)
    • retail: update the api https://github.com/googleapis/google-api-python-client/commit/1ac6e1aa7ff24200da4d05ea96b9263f80d72874 (5621484)
    • spanner: update the api https://github.com/googleapis/google-api-python-client/commit/be17e4deb53d6a989e700ca2ecfb82c479fbd37c (5621484)
    • sqladmin: update the api https://github.com/googleapis/google-api-python-client/commit/a0b990c973fabd4e4867fcc9ba143776fe77126a (5621484)
    • testing: update the api https://github.com/googleapis/google-api-python-client/commit/3e0f5527d728f0782795f20c4f303f09698bddec (5621484)
    • texttospeech: update the api https://github.com/googleapis/google-api-python-client/commit/8aea2ac640a3271aad629a1e8038408de957f9a3 (5621484)
    • youtube: update the api https://github.com/googleapis/google-api-python-client/commit/a165ea29b31c0ad3304e5cbfec9db93592b44103 (5621484)
    Source code(tar.gz)
    Source code(zip)
  • v2.41.0(Mar 15, 2022)

    2.41.0 (2022-03-15)

    Features

    • alertcenter: update the api https://github.com/googleapis/google-api-python-client/commit/49ea8e87b69ab39ec37af1e2ee40ded99c8a9863 (ca05b70)
    • apigee: update the api https://github.com/googleapis/google-api-python-client/commit/6cd7b462fbfa2655118f8cb541c12a77d529190c (ca05b70)
    • artifactregistry: update the api https://github.com/googleapis/google-api-python-client/commit/48c242e82ff838cd80e637e1c2b1c48d5fe534af (ca05b70)
    • baremetalsolution: update the api https://github.com/googleapis/google-api-python-client/commit/93195a6a493707707186a3e410a04990e26a0d3b (ca05b70)
    • dataflow: update the api https://github.com/googleapis/google-api-python-client/commit/bcd6ea147ab3fda1c2a992ce3e026e19bdeeb799 (ca05b70)
    • dialogflow: update the api https://github.com/googleapis/google-api-python-client/commit/39cd4bde6cba0b8af12ce645552899cd6d8afa37 (ca05b70)
    • fcm: update the api https://github.com/googleapis/google-api-python-client/commit/d9a7eb4fcd54b754bac2e19b97ef5db7603d42ce (ca05b70)
    • firebaseappcheck: update the api https://github.com/googleapis/google-api-python-client/commit/6e26f5ce4c0499d4def8ea4521888b8f2d18c041 (ca05b70)
    • gkehub: update the api https://github.com/googleapis/google-api-python-client/commit/bbad5a0e28e5d7daa9bbeb2f9c853708107424a7 (ca05b70)
    • healthcare: update the api https://github.com/googleapis/google-api-python-client/commit/eba1e3a3bc4477b5731ced542b5ff81ea987505a (ca05b70)
    • mybusinessverifications: update the api https://github.com/googleapis/google-api-python-client/commit/78fb94ecef8b9d3c44850eb808f9f10973a907f1 (ca05b70)
    • networkmanagement: update the api https://github.com/googleapis/google-api-python-client/commit/07dcadcc737b22861ab5ad05c4bfc096ba71f438 (ca05b70)
    • networkservices: update the api https://github.com/googleapis/google-api-python-client/commit/3d03ad1c7a2652bf5d47d9e09f791b1da14e3b02 (ca05b70)
    • notebooks: update the api https://github.com/googleapis/google-api-python-client/commit/3a26ea7a6578d9226ed4c8e13951800ad8d7d2a7 (ca05b70)
    • recommender: update the api https://github.com/googleapis/google-api-python-client/commit/43c8ed8720983495b1ca323ccdc7de18ca455c44 (ca05b70)
    • retail: update the api https://github.com/googleapis/google-api-python-client/commit/3b229064b4404751ea5c00e8b569b1389276aff9 (ca05b70)
    • run: update the api https://github.com/googleapis/google-api-python-client/commit/54d02182818eeda0ef7dec22545c477673232b59 (ca05b70)
    • versionhistory: update the api https://github.com/googleapis/google-api-python-client/commit/657ba28422aac6f19b155df1384ceb5bdaf4ff11 (ca05b70)
    • vmmigration: update the api https://github.com/googleapis/google-api-python-client/commit/00aa6fc010336c0ac75ccc21933e89560e8b18ca (ca05b70)
    • youtube: update the api https://github.com/googleapis/google-api-python-client/commit/d236f3ae7a44b9018a1690e12b25c0cb0e2828a1 (ca05b70)

    Bug Fixes

    • deploymentmanager: update the api https://github.com/googleapis/google-api-python-client/commit/8b2964fa504b3fa765822d838ce95ac15f96442a (ca05b70)

    Documentation

    Source code(tar.gz)
    Source code(zip)
Owner
Google APIs
Clients for Google APIs and tools that help produce them.
Google APIs
Twitter-Scrapping - Tweeter tweets extracting using python

Twitter-Scrapping Twitter tweets extracting using python This project is to extr

Suryadeepsinh Gohil 2 Feb 04, 2022
ZELDA USERBOT adalah userbot Telegram modular yang berjalan di Python3 dengan database sqlalchemy.

ZELDA USERBOT TELEGRAM Userbot Yang Di Buat Karena Sering Gabut Di Telegram. ZELDA USERBOT adalah userbot Telegram modular yang berjalan di Python3 de

1 Dec 23, 2021
⚡ A really fast and powerful Discord Token Checker

discord-token-checker ⚡ A really fast and powerful Discord Token Checker How To Use? Do pip install -r requirements.txt in your command prompt Make to

vida 25 Feb 26, 2022
DankMemer-Farmer - Autofarm Self-Bot for Discord bot Named Dankmemer.

DankMemer-Farmer Autofarm Self-Bot for Discord bot Named Dankmemer. Warning We are not responsible if you got banned, since "self-bots" outside of the

Mole 16 Dec 14, 2022
You cant check for conflicts until course enrolment actually opens. I wanted to do it earlier.

AcornICS I noticed that Acorn it does not let you check if a timetable is valid based on the enrollment cart, it also does not let you visualize it ea

Isidor Kaplan 2 Sep 16, 2021
PyLyrics Is An [Open-Source] Bot That Can Help You Get Song Lyrics

PyLyrics-Bot Telegram Bot To Search Song Lyrics From Genuis. 🤖 Demo: 👨‍💻 Deploy: ❤ Deploy Your Own Bot : Star 🌟 Fork 🍴 & Deploy -Easy Way -Self-h

DAMIEN 12 Nov 12, 2022
Um simples bot escrito em Python usando a lib pyTelegramBotAPI

Telegram Bot Python Um simples bot escrito em Python usando a lib pyTelegramBotAPI Instalação Windows: Download do Python 3 Aqui Download do ZIP do Có

Sr_Yuu 1 May 07, 2022
Userbot Telegram dengan Telethon

FLICKS - UBOT Repo FLICKS UBOT Repo Yang Dibuat Oleh Rizzz Dari beberapa Repo Yang Ada Di Github. Generate String Using Replit ⤵️ DEPLOY TO HEROKU Sup

FJ_GAMING 14 May 16, 2022
Python package and CLI for user-friendly integration with SAS Viya

sasctl A user-friendly Python interface for SAS Viya. Full documentation: https://sassoftware.github.io/python-sasctl Table of Contents Overview Prere

SAS Software 30 Dec 14, 2022
Simple Webhook Spammer with Optional Proxy Support

😎 �Simple Webhook Spammer with Optional Proxy Support:- [+] git clone https://g

Terminal1337 12 Sep 29, 2022
Another secured and Yet Fastest telegram userbot

Vision-UserBot A stable, simple Telegram UserBot in Pyrogram! Support Variables ➨ TG_APP_ID - Your Telegram Api id. ➨ TG_API_HASH - Your Telegram Api

TeamVision 40 Oct 24, 2022
Cytotron - A unique discord bot like never before. Add it to your server to keep it active, motiviated, and amazing!!

Cytotron - Take your server to the next level Most of the details are in the website. Go to https://cytotron-bot.gq for more information. If that link

LeviathanProgramming 6 Jun 13, 2021
Demonstrating attacks, mitigations, and monitoring on AWS

About Inspectaroo is a web app which allows users to upload images to view metadata. It is designed to show off many AWS services including EC2, Lambd

Alex McCormack 1 Feb 11, 2022
Stock Market Insights is a Dashboard that gives the 360 degree view of the particular company stock

fedora-easyfix A collection of self-contained and well-documented issues for newcomers to start contributing with How to setup the local development e

Ganesh N 3 Sep 10, 2021
TwitterDataStreaming - Twitter data streaming using APIs

Twitter_Data_Streaming Twitter data streaming using APIs Use Case 1: Streaming r

Rita Kushwaha 1 Jan 21, 2022
this synchronizes my appearances with my calendar

Josh's Schedule Synchronizer Here's the "problem:" I use a spreadsheet to maintain all my public appearances. I check the spreadsheet as often as poss

Josh Long 2 Oct 18, 2021
Webservice that notifies users on Slack when a change in GitLab concern them.

Gitlab Slack Notifier Webservice that notifies users on Slack when a change in GitLab concern them. Setup Slack Create a Slack app, go to "OAuth & Per

Heuritech 2 Nov 04, 2021
Polar devices Python API and CLI.

loophole - Polar devices API About Python API for Polar devices. Command line interface included. Tested with: A360 Loop M400 Installation pip install

[roscoe] 145 Sep 14, 2022
An hcaptcha-solving discord account generator; capable of randomizing names, profile pictures, and verifying phone numbers.

discord-account-generator An hcaptcha-solving discord account generator; capable of randomizing names, profile pictures, and verifying phone numbers.

Acier 61 Dec 10, 2022
A project in order to analyze user's favorite musics, artists and genre

Spotify-Wrapped This is a project about Spotify Wrapped (which is an extra option for premium accounts, but you don't need to be premium here) This pr

Hossein Mohseni 19 Jan 04, 2023