Class: Google::Apis::DataprocV1::SearchSessionSparkApplicationSqlQueriesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1::SearchSessionSparkApplicationSqlQueriesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataproc_v1/classes.rb,
lib/google/apis/dataproc_v1/representations.rb,
lib/google/apis/dataproc_v1/representations.rb
Overview
List of all queries for a Spark Application.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
This token is included in the response if there are more results to fetch.
-
#spark_application_sql_queries ⇒ Array<Google::Apis::DataprocV1::SqlExecutionUiData>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SearchSessionSparkApplicationSqlQueriesResponse
constructor
A new instance of SearchSessionSparkApplicationSqlQueriesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SearchSessionSparkApplicationSqlQueriesResponse
Returns a new instance of SearchSessionSparkApplicationSqlQueriesResponse.
7029 7030 7031 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7029 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
This token is included in the response if there are more results to fetch. To
fetch additional results, provide this value as the page_token in a subsequent
SearchSessionSparkApplicationSqlQueriesRequest.
Corresponds to the JSON property nextPageToken
7022 7023 7024 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7022 def next_page_token @next_page_token end |
#spark_application_sql_queries ⇒ Array<Google::Apis::DataprocV1::SqlExecutionUiData>
Output only. SQL Execution Data
Corresponds to the JSON property sparkApplicationSqlQueries
7027 7028 7029 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7027 def spark_application_sql_queries @spark_application_sql_queries end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7034 7035 7036 7037 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 7034 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @spark_application_sql_queries = args[:spark_application_sql_queries] if args.key?(:spark_application_sql_queries) end |