class Google::Apis::DatastreamV1::ListRoutesResponse

Route list response.

Attributes

next_page_token[RW]

A token, which can be sent as ‘page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property `nextPageToken` @return [String]

routes[RW]

List of Routes. Corresponds to the JSON property ‘routes` @return [Array<Google::Apis::DatastreamV1::Route>]

unreachable[RW]

Locations that could not be reached. Corresponds to the JSON property ‘unreachable` @return [Array<String>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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