Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListConnectorRunsResponse

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

Overview

Response for DataConnectorService.ListConnectorRuns method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaListConnectorRunsResponse

Returns a new instance of GoogleCloudDiscoveryengineV1alphaListConnectorRunsResponse.



12017
12018
12019
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 12017

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

Instance Attribute Details

#connector_runsArray<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConnectorRun>

List of ConnectorRuns. Corresponds to the JSON property connectorRuns



12009
12010
12011
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 12009

def connector_runs
  @connector_runs
end

#next_page_tokenString

A token that can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


12015
12016
12017
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 12015

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



12022
12023
12024
12025
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 12022

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