Class: Google::Apis::NetworkmanagementV1::ListNetworkPathsResponse

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 NetworkPaths

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListNetworkPathsResponse

Returns a new instance of ListNetworkPathsResponse.



2080
2081
2082
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 2080

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

Instance Attribute Details

#network_pathsArray<Google::Apis::NetworkmanagementV1::NetworkPath>

The list of NetworkPath Corresponds to the JSON property networkPaths



2073
2074
2075
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 2073

def network_paths
  @network_paths
end

#next_page_tokenString

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

Returns:

  • (String)


2078
2079
2080
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 2078

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2085
2086
2087
2088
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 2085

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