airflow.providers.google.cloud.links.cloud_memorystore

This module contains Cloud Memorystore links.

Attributes

BASE_LINK

MEMCACHED_LINK

MEMCACHED_LIST_LINK

REDIS_LINK

REDIS_LIST_LINK

Classes

MemcachedInstanceDetailsLink

Helper class for constructing Memorystore Memcached Instance Link.

MemcachedInstanceListLink

Helper class for constructing Memorystore Memcached List of Instances Link.

RedisInstanceDetailsLink

Helper class for constructing Memorystore Redis Instance Link.

RedisInstanceListLink

Helper class for constructing Memorystore Redis List of Instances Link.

Module Contents

Bases: airflow.providers.google.cloud.links.base.BaseGoogleLink

Helper class for constructing Memorystore Memcached Instance Link.

name = 'Memorystore Memcached Instance'[source]

Name of the link. This will be the button name on the task UI.

key = 'memcached_instance'[source]
format_str = '/memorystore/memcached/locations/{location_id}/instances/{instance_id}/details?project={project_id}'[source]
static persist(context, task_instance, instance_id, location_id, project_id)[source]

Bases: airflow.providers.google.cloud.links.base.BaseGoogleLink

Helper class for constructing Memorystore Memcached List of Instances Link.

name = 'Memorystore Memcached List of Instances'[source]

Name of the link. This will be the button name on the task UI.

key = 'memcached_instances'[source]
format_str = '/memorystore/memcached/instances?project={project_id}'[source]
static persist(context, task_instance, project_id)[source]

Bases: airflow.providers.google.cloud.links.base.BaseGoogleLink

Helper class for constructing Memorystore Redis Instance Link.

name = 'Memorystore Redis Instance'[source]

Name of the link. This will be the button name on the task UI.

key = 'redis_instance'[source]
format_str = '/memorystore/redis/locations/{location_id}/instances/{instance_id}/details/overview?project={pro...[source]
static persist(context, task_instance, instance_id, location_id, project_id)[source]

Bases: airflow.providers.google.cloud.links.base.BaseGoogleLink

Helper class for constructing Memorystore Redis List of Instances Link.

name = 'Memorystore Redis List of Instances'[source]

Name of the link. This will be the button name on the task UI.

key = 'redis_instances'[source]
format_str = '/memorystore/redis/instances?project={project_id}'[source]
static persist(context, task_instance, project_id)[source]

Was this entry helpful?