Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaListExecutionsResponse

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

Overview

Response for listing the integration execution data.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaListExecutionsResponse

Returns a new instance of GoogleCloudIntegrationsV1alphaListExecutionsResponse.



9069
9070
9071
# File 'lib/google/apis/integrations_v1/classes.rb', line 9069

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

Instance Attribute Details

#execution_infosArray<Google::Apis::IntegrationsV1::EnterpriseCrmFrontendsEventbusProtoEventExecutionInfo>

Required. The detailed information of requested executions. Corresponds to the JSON property executionInfos



9057
9058
9059
# File 'lib/google/apis/integrations_v1/classes.rb', line 9057

def execution_infos
  @execution_infos
end

#executionsArray<Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaExecution>

The detailed information of requested executions Corresponds to the JSON property executions



9062
9063
9064
# File 'lib/google/apis/integrations_v1/classes.rb', line 9062

def executions
  @executions
end

#next_page_tokenString

The token used to retrieve the next page results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


9067
9068
9069
# File 'lib/google/apis/integrations_v1/classes.rb', line 9067

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9074
9075
9076
9077
9078
# File 'lib/google/apis/integrations_v1/classes.rb', line 9074

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