airflow.providers.google.cloud.hooks.gdm

Module Contents

Classes

GoogleDeploymentManagerHook

Interact with Google Cloud Deployment Manager using the Google Cloud connection.

class airflow.providers.google.cloud.hooks.gdm.GoogleDeploymentManagerHook(gcp_conn_id='google_cloud_default', delegate_to=None, impersonation_chain=None)[source]

Bases: airflow.providers.google.common.hooks.base_google.GoogleBaseHook

Interact with Google Cloud Deployment Manager using the Google Cloud connection. This allows for scheduled and programmatic inspection and deletion of resources managed by GDM.

get_conn(self)[source]

Returns a Google Deployment Manager service object.

Return type

googleapiclient.discovery.Resource

list_deployments(self, project_id=None, deployment_filter=None, order_by=None)[source]

Lists deployments in a google cloud project.

Parameters
  • project_id (Optional[str]) -- The project ID for this request.

  • deployment_filter (Optional[str]) -- A filter expression which limits resources returned in the response.

  • order_by (Optional[str]) -- A field name to order by, ex: "creationTimestamp desc"

Return type

list

delete_deployment(self, project_id, deployment=None, delete_policy=None)[source]

Deletes a deployment and all associated resources in a google cloud project.

Parameters
  • project_id (Optional[str]) -- The project ID for this request.

  • deployment (Optional[str]) -- The name of the deployment for this request.

  • delete_policy (Optional[str]) -- Sets the policy to use for deleting resources. (ABANDON | DELETE)

Return type

None

Was this entry helpful?