class Google::Apis::CloudtraceV2beta1::ListTraceSinksResponse

Result returned from `ListTraceSinks`.

Attributes

next_page_token[RW]

If there might be more results than appear in this response, then ` nextPageToken` is included. To get the next set of results, call the same method again using the value of `nextPageToken` as `pageToken`. Corresponds to the JSON property `nextPageToken` @return [String]

sinks[RW]

A list of sinks. Corresponds to the JSON property `sinks` @return [Array<Google::Apis::CloudtraceV2beta1::TraceSink>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudtrace_v2beta1/classes.rb, line 58
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/cloudtrace_v2beta1/classes.rb, line 63
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @sinks = args[:sinks] if args.key?(:sinks)
end