Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCancelExecutionResponse

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

Overview

Response for cancelling an execution.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaCancelExecutionResponse

Returns a new instance of GoogleCloudIntegrationsV1alphaCancelExecutionResponse.



5609
5610
5611
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5609

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

Instance Attribute Details

#is_canceledBoolean Also known as: is_canceled?

True if cancellation performed successfully Corresponds to the JSON property isCanceled

Returns:

  • (Boolean)


5606
5607
5608
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5606

def is_canceled
  @is_canceled
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5614
5615
5616
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5614

def update!(**args)
  @is_canceled = args[:is_canceled] if args.key?(:is_canceled)
end