Class: Google::Apis::NetworkservicesV1::ListLbRouteExtensionsResponse

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

Overview

Message for response to listing LbRouteExtension resources.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListLbRouteExtensionsResponse

Returns a new instance of ListLbRouteExtensionsResponse.



3248
3249
3250
# File 'lib/google/apis/networkservices_v1/classes.rb', line 3248

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

Instance Attribute Details

#lb_route_extensionsArray<Google::Apis::NetworkservicesV1::LbRouteExtension>

The list of LbRouteExtension resources. Corresponds to the JSON property lbRouteExtensions



3236
3237
3238
# File 'lib/google/apis/networkservices_v1/classes.rb', line 3236

def lb_route_extensions
  @lb_route_extensions
end

#next_page_tokenString

A token identifying a page of results that the server returns. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


3241
3242
3243
# File 'lib/google/apis/networkservices_v1/classes.rb', line 3241

def next_page_token
  @next_page_token
end

#unreachableArray<String>

Locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


3246
3247
3248
# File 'lib/google/apis/networkservices_v1/classes.rb', line 3246

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3253
3254
3255
3256
3257
# File 'lib/google/apis/networkservices_v1/classes.rb', line 3253

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