Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListConnectorRunsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListConnectorRunsResponse
- 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
-
#connector_runs ⇒ Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConnectorRun>
List of ConnectorRuns.
-
#next_page_token ⇒ String
A token that can be sent as
page_token
to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaListConnectorRunsResponse
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaListConnectorRunsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_runs ⇒ Array<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_token ⇒ String
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
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 |