Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ListSessionsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1ListSessionsResponse

Returns a new instance of GoogleCloudDataplexV1ListSessionsResponse.



2034
2035
2036
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2034

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

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


2027
2028
2029
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2027

def next_page_token
  @next_page_token
end

#sessionsArray<Google::Apis::DataplexV1::GoogleCloudDataplexV1Session>

Sessions under a given environment. Corresponds to the JSON property sessions



2032
2033
2034
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2032

def sessions
  @sessions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2039
2040
2041
2042
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2039

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