Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListDebugSessionsResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1ListDebugSessionsResponse

Returns a new instance of GoogleCloudApigeeV1ListDebugSessionsResponse.



3605
3606
3607
# File 'generated/google/apis/apigee_v1/classes.rb', line 3605

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

Instance Attribute Details

#next_page_tokenString

Page token that you can include in a ListDebugSessionsRequest to retrieve the next page. If omitted, no subsequent pages exist. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


3597
3598
3599
# File 'generated/google/apis/apigee_v1/classes.rb', line 3597

def next_page_token
  @next_page_token
end

#sessionsArray<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Session>

Session info that includes debug session ID and the first transaction creation timestamp. Corresponds to the JSON property sessions



3603
3604
3605
# File 'generated/google/apis/apigee_v1/classes.rb', line 3603

def sessions
  @sessions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3610
3611
3612
3613
# File 'generated/google/apis/apigee_v1/classes.rb', line 3610

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