public sealed class ExecuteAirflowCommandRequest : IMessage<ExecuteAirflowCommandRequest>, IEquatable<ExecuteAirflowCommandRequest>, IDeepCloneable<ExecuteAirflowCommandRequest>, IBufferMessage, IMessage
Reference documentation and code samples for the Cloud Composer v1 API class ExecuteAirflowCommandRequest.
Execute Airflow Command request.
Implements
IMessageExecuteAirflowCommandRequest, IEquatableExecuteAirflowCommandRequest, IDeepCloneableExecuteAirflowCommandRequest, IBufferMessage, IMessageNamespace
Google.Cloud.Orchestration.Airflow.Service.V1Assembly
Google.Cloud.Orchestration.Airflow.Service.V1.dll
Constructors
ExecuteAirflowCommandRequest()
public ExecuteAirflowCommandRequest()
ExecuteAirflowCommandRequest(ExecuteAirflowCommandRequest)
public ExecuteAirflowCommandRequest(ExecuteAirflowCommandRequest other)
Parameter | |
---|---|
Name | Description |
other | ExecuteAirflowCommandRequest |
Properties
Command
public string Command { get; set; }
Airflow command.
Property Value | |
---|---|
Type | Description |
string |
Environment
public string Environment { get; set; }
The resource name of the environment in the form: "projects/{projectId}/locations/{locationId}/environments/{environmentId}".
Property Value | |
---|---|
Type | Description |
string |
Parameters
public RepeatedField<string> Parameters { get; }
Parameters for the Airflow command/subcommand as an array of arguments.
It may contain positional arguments like ["my-dag-id"]
, key-value
parameters like ["--foo=bar"]
or ["--foo","bar"]
,
or other flags like ["-f"]
.
Property Value | |
---|---|
Type | Description |
RepeatedFieldstring |
Subcommand
public string Subcommand { get; set; }
Airflow subcommand.
Property Value | |
---|---|
Type | Description |
string |