Class: Google::Apis::NetworkmanagementV1::ListWebPathsResponse

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

Overview

Message for response to listing WebPaths

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListWebPathsResponse

Returns a new instance of ListWebPathsResponse.



2139
2140
2141
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 2139

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

Instance Attribute Details

#next_page_tokenString

A token identifying a page of results the server should return. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


2132
2133
2134
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 2132

def next_page_token
  @next_page_token
end

#web_pathsArray<Google::Apis::NetworkmanagementV1::WebPath>

The list of WebPath. Corresponds to the JSON property webPaths



2137
2138
2139
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 2137

def web_paths
  @web_paths
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2144
2145
2146
2147
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 2144

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