class Google::Apis::NetworkmanagementV1::ListConnectivityTestsResponse
Response for the `ListConnectivityTests` method.
Attributes
next_page_token[RW]
Page token to fetch the next set of Connectivity Tests. Corresponds to the JSON property `nextPageToken` @return [String]
resources[RW]
List of Connectivity Tests. Corresponds to the JSON property `resources` @return [Array<Google::Apis::NetworkmanagementV1::ConnectivityTest>]
unreachable[RW]
Locations that could not be reached (when querying all locations with `-`). Corresponds to the JSON property `unreachable` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/networkmanagement_v1/classes.rb, line 864 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/networkmanagement_v1/classes.rb, line 869 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @resources = args[:resources] if args.key?(:resources) @unreachable = args[:unreachable] if args.key?(:unreachable) end