ops_utils.vars

Constants and default values for the Ops Toolbox.

 1"""Constants and default values for the Ops Toolbox."""
 2
 3GCP = "gcp"
 4"""To be used anytime a "cloud type" should be defined as 'GCP'"""
 5ARG_DEFAULTS = {
 6    "max_retries": 5,
 7    "max_backoff_time": 5 * 60,
 8    "update_strategy": "REPLACE",
 9    "multithread_workers": 10,
10    "batch_size": 500,
11    "batch_size_to_list_files": 20000,
12    "batch_size_to_delete_files": 200,
13    "file_ingest_batch_size": 500,
14    "waiting_time_to_poll": 90,
15    "docker_image": "us-central1-docker.pkg.dev/operations-portal-427515/ops-toolbox/ops_terra_utils_slim:latest"
16}
17"""@private"""
GCP = 'gcp'

To be used anytime a "cloud type" should be defined as 'GCP'