Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListSessionsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1ListSessionsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb
Overview
List sessions response.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results in the list.
-
#sessions ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1Session>
Sessions under a given environment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1ListSessionsResponse
constructor
A new instance of GoogleCloudDataplexV1ListSessionsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ListSessionsResponse
Returns a new instance of GoogleCloudDataplexV1ListSessionsResponse.
4062 4063 4064 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4062 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more
results in the list.
Corresponds to the JSON property nextPageToken
4055 4056 4057 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4055 def next_page_token @next_page_token end |
#sessions ⇒ Array<Google::Apis::DataplexV1::GoogleCloudDataplexV1Session>
Sessions under a given environment.
Corresponds to the JSON property sessions
4060 4061 4062 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4060 def sessions @sessions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4067 4068 4069 4070 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4067 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @sessions = args[:sessions] if args.key?(:sessions) end |