Skip to main content

Google Cloud Platform Friendly Pilot

Project description

Github CI Maintainability Test Coverage python

Google Cloud Pilot

Installation

pip install gcp-pilot

Some APIs need extra packages, thus you must use extras to add them:

  • Cloud Tasks: pip install gcp-pilot[tasks]
  • Cloud Build: pip install gcp-pilot[build]
  • Cloud Storage: pip install gcp-pilot[storage]
  • Big Query: pip install gcp-pilot[bigquery]
  • Speech: pip install gcp-pilot[speech]
  • Sheets: pip install gcp-pilot[sheets]
  • Pub/Sub: pip install gcp-pilot[pubsub]
  • Datastore: pip install gcp-pilot[datastore]
  • Cloud DNS: pip install gcp-pilot[dns]
  • Secret Manager: pip install gcp-pilot[secret]

Usage

from gcp_pilot.resource import ResourceManager

grm = ResourceManager()

Default Values

Credentials

gcp-pilot uses ADC to detect credentials. This means that you must have one of the following setups:

  • Environment variable GOOGLE_APPLICATION_CREDENTIALS pointing to the JSON file with the credentials
  • Run inside GCP (Compute Engine, Cloud Run, GKE, AppEngine), so the machine's credentials will be used

You can also globally set a service account using the environment variable DEFAULT_SERVICE_ACCOUNT, which will require impersonation.

Project

When creating a client, a default project is defined by using the project that the credentials belongs to.

Clients that support managing resources from other projects can be overwritten per call.

Example: you create a BigQuery client using credentials from project_a. All calls will query datasets from project_a, unless another project is passed as parameter when performing the call.

You can also globally set a project using the environment variable DEFAULT_PROJECT

Location

Very similar to default project, a default location is defined by using the project's location. The project's location will exist if you ever enabled AppEngine, so you had to set a location then. Otherwise, no default location will be set.

You can also globally set a location using the environment variable DEFAULT_LOCATION and reduce the amount of API calls when creating clients.

Why Use gcp-pilot

"Since Google already has a generic API client and so many specific clients, why should I use this library?"

Google's has 2 types of clients:

  • dedicated: custom made for the APIs. They are excellent: they implement high level interaction with the API with friendly methods. The gcp-pilot can adds its value by handling authentication, friendly errors and parameter fallback.
  • generic: a single client that is capable of dynamically calling any REST API. They are a pain to use: very specific calls that must be translated from the documentation. The gcp-pilot comes in handy to add high-level interaction with friendly method such as Calendar.create_event, on top of all other vantages cited above.

Parameter Fallback

Most of the API endpoints require project_id (sometimes even project_number) and location.

So gcp-pilot automatically detects these values for you, based on your credentials (although it'll require extra permissions and API calls).

If you use multiple projects, and your credentials is accessing other projects, you can still customize the parameters on each call to avoid the default fallback.

Friendly Errors

Most of APIs return a generic HttpException with am embedded payload with error output, and also there's a couple of different structures for these payloads.

So gcp-pilot tries its best to convert these exceptions into more friendly ones, such as NotFound, AlreadyExists and NotAllowed.

It'll be much easier to capture these exceptions and handle them by its type.

Identification Features

  • Authentication: each client uses ADC, which consists on trying to detect the service account with fallbacks: SDK > Environment Variable > Metadata
  • Impersonation: it's possible to create clients with impersonate_account parameter that impersonates another account.
  • Delegation: services (eg. Google Workspace) that requires specific subjects are automatically delegated, sometimes even performing additional credential signatures.
  • Region: most GCP services requires a location to work on (some even require specific locations). If not provided, the clients use the project's default location, as defined by App Engine.
  • Authorization: OIDC authorization is automatically generated for services (eg. CloudRun) that require authentication to be used.

Auto-Authorization

Some services require specific authorizations that should be setup prior to its usage, some examples:

  • [Pub/Sub] subscribe to a topic with authenticated push;
  • [Cloud Scheduler] schedule a job to trigger a Cloud Run service;
  • [Cloud Tasks] queue a task to trigger a Cloud Run service;

In these cases, gcp-pilot tries its best to assure that the required permissions are properly set up before the actual request is made.

Integration

Some services can be integrated, and gcp-pilot does just that in a seamless way by adding helper methods.

Example: you can subscribe to Google Cloud Build's events to be notified by every build step.

By using CloudBuild.subscribe, the gcp-pilot creates a subscription (and the topic, if needed) in the Google Pub/Sub service.

Supported APIs

  • IAM
    • manage service accounts
    • manage permissions
  • Identity Platform
    • sign in users
    • sign up users
    • reset password flow
    • verify email flow
  • Resource Manager
    • manage projects
    • manage permissions
  • Secret Manager
    • manage secrets
  • Identity Aware Proxy
    • generate OIDC token
  • Source Repositories
    • manage repositories
  • Cloud SQL
    • manage instances
    • manage databases
    • manage users
  • Cloud Storage
    • manage buckets
    • manage files
  • Cloud Build
    • manage triggers
  • Cloud Functions
    • manager functions
    • manage permissions
  • Cloud Scheduler
    • manage schedules
  • Cloud Tasks
    • manage tasks & queues
  • Cloud Run
    • read services
    • manage domain mappings [1]
  • API Gateway
    • manage APIs
    • manage API Configs
    • manage Gateways
  • Service Usage
    • enable/disable APIs and Services
  • BigQuery
    • manage datasets
    • perform queries
  • Calendar
    • manage events
  • Google Chats
    • build complex messages
    • call webhook
    • interact as bot
  • Cloud Directory
    • manage groups
  • Cloud DNS
    • manage DNS zones
    • manage zone's registers
  • Sheets
    • manage spreadsheets (powered by gspread)
  • Speech
    • recognize speech from audio
  • Datastore
    • Object Mapping ("ORM-ish" management of documents)
  • Monitoring
    • reporting errors
    • logging
    • manage custom services

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gcp-pilot-0.36.0.tar.gz (47.6 kB view details)

Uploaded Source

Built Distribution

gcp_pilot-0.36.0-py3-none-any.whl (57.7 kB view details)

Uploaded Python 3

File details

Details for the file gcp-pilot-0.36.0.tar.gz.

File metadata

  • Download URL: gcp-pilot-0.36.0.tar.gz
  • Upload date:
  • Size: 47.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.11 CPython/3.8.12 Linux/5.8.0-1042-azure

File hashes

Hashes for gcp-pilot-0.36.0.tar.gz
Algorithm Hash digest
SHA256 0eb4116d73942dd720de4a5bd9730bb28f31326f48c195da53f6c9265b81d7a4
MD5 76bacd8c4d8d88c3833cf454f5f932b4
BLAKE2b-256 79df1257d4c832982c100f6123dbc7a9ecd40a23b6d1b6eb3204f9c155872ed9

See more details on using hashes here.

File details

Details for the file gcp_pilot-0.36.0-py3-none-any.whl.

File metadata

  • Download URL: gcp_pilot-0.36.0-py3-none-any.whl
  • Upload date:
  • Size: 57.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.11 CPython/3.8.12 Linux/5.8.0-1042-azure

File hashes

Hashes for gcp_pilot-0.36.0-py3-none-any.whl
Algorithm Hash digest
SHA256 1e3312a61461727b46b4592cf4d0e07e73b0fee3b13e701f276b4c8f2fbd2359
MD5 89070d971b585b93177e6f1da69702e5
BLAKE2b-256 c3d78a5f78dfb1948b406a5d16bf6458e49c3686dcc3d9d470fb5377cd9bae92

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page