Class: Google::Apis::ComposerV1beta1::StopAirflowCommandRequest

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/composer_v1beta1/classes.rb,
lib/google/apis/composer_v1beta1/representations.rb,
lib/google/apis/composer_v1beta1/representations.rb

Overview

Stop Airflow Command request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ StopAirflowCommandRequest

Returns a new instance of StopAirflowCommandRequest.



2129
2130
2131
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2129

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#execution_idString

The unique ID of the command execution. Corresponds to the JSON property executionId

Returns:

  • (String)


2110
2111
2112
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2110

def execution_id
  @execution_id
end

#forceBoolean Also known as: force?

If true, the execution is terminated forcefully (SIGKILL). If false, the execution is stopped gracefully, giving it time for cleanup. Corresponds to the JSON property force

Returns:

  • (Boolean)


2116
2117
2118
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2116

def force
  @force
end

#podString

The name of the pod where the command is executed. Corresponds to the JSON property pod

Returns:

  • (String)


2122
2123
2124
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2122

def pod
  @pod
end

#pod_namespaceString

The namespace of the pod where the command is executed. Corresponds to the JSON property podNamespace

Returns:

  • (String)


2127
2128
2129
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2127

def pod_namespace
  @pod_namespace
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2134
2135
2136
2137
2138
2139
# File 'lib/google/apis/composer_v1beta1/classes.rb', line 2134

def update!(**args)
  @execution_id = args[:execution_id] if args.key?(:execution_id)
  @force = args[:force] if args.key?(:force)
  @pod = args[:pod] if args.key?(:pod)
  @pod_namespace = args[:pod_namespace] if args.key?(:pod_namespace)
end