Using python-storage with googleapis.com

Python integration

✓ Official SDK
Install
pip install python-storage
Quick start
import python-storage

# Use an OAuth2 access token
client = python_storage.Client(access_token="YOUR_ACCESS_TOKEN")
Get the patch job. This can be used to track the progress of an ongoing patch…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://osconfig.googleapis.com/v1beta/{name}
Get a list of patch jobs.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://osconfig.googleapis.com/v1beta/{parent}/patchJobs
Get a page of OS Config guest policies.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://osconfig.googleapis.com/v1beta/{parent}/guestPolicies
SDK on GitHub 📄 API Docs
SDK
python-storage
Python
API
googleapis.com
googleapis.com:osconfig
At a glance
Language Python
Endpoints14
Base URLhttps://osconfig.googleapis.com
✓ Official