Show / Hide Table of Contents

Class EnvironmentConfigSoftwareConfigGetArgs

Inheritance
System.Object
InputArgs
ResourceArgs
EnvironmentConfigSoftwareConfigGetArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.Composer.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class EnvironmentConfigSoftwareConfigGetArgs : ResourceArgs

Constructors

View Source

EnvironmentConfigSoftwareConfigGetArgs()

Declaration
public EnvironmentConfigSoftwareConfigGetArgs()

Properties

View Source

AirflowConfigOverrides

(Optional) Apache Airflow configuration properties to override. Property keys contain the section and property names, separated by a hyphen, for example "core-dags_are_paused_at_creation".

Declaration
public InputMap<string> AirflowConfigOverrides { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

EnvVariables

Additional environment variables to provide to the Apache Airflow scheduler, worker, and webserver processes. Environment variable names must match the regular expression [a-zA-Z_][a-zA-Z0-9_]*. They cannot specify Apache Airflow software configuration overrides (they cannot match the regular expression AIRFLOW__[A-Z0-9_]+__[A-Z0-9_]+), and they cannot match any of the following reserved names:

AIRFLOW_HOME
C_FORCE_ROOT
CONTAINER_NAME
DAGS_FOLDER
GCP_PROJECT
GCS_BUCKET
GKE_CLUSTER_NAME
SQL_DATABASE
SQL_INSTANCE
SQL_PASSWORD
SQL_PROJECT
SQL_REGION
SQL_USER
Declaration
public InputMap<string> EnvVariables { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

ImageVersion

The version of the software running in the environment. This encapsulates both the version of Cloud Composer functionality and the version of Apache Airflow. It must match the regular expression composer-[0-9]+\.[0-9]+(\.[0-9]+)?-airflow-[0-9]+\.[0-9]+(\.[0-9]+.*)?. The Cloud Composer portion of the version is a semantic version. The portion of the image version following 'airflow-' is an official Apache Airflow repository release name. See documentation for allowed release names.

Declaration
public Input<string> ImageVersion { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PypiPackages

Custom Python Package Index (PyPI) packages to be installed in the environment. Keys refer to the lowercase package name (e.g. "numpy"). Values are the lowercase extras and version specifier (e.g. "==1.12.0", "[devel,gcp_api]", "[devel]>=1.8.2, <1.9.2"). To specify a package without pinning it to a version specifier, use the empty string as the value.

Declaration
public InputMap<string> PypiPackages { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

PythonVersion

The major version of Python used to run the Apache Airflow scheduler, worker, and webserver processes. Can be set to '2' or '3'. If not specified, the default is '2'. Cannot be updated.

Declaration
public Input<string> PythonVersion { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.