class Google::Apis::GkehubV1::ListFeaturesResponse

Response message for the `GkeHub.ListFeatures` method.

Attributes

next_page_token[RW]

A token to request the next page of resources from the `ListFeatures` method. The value of an empty string means that there are no more resources to return. Corresponds to the JSON property `nextPageToken` @return [String]

resources[RW]

The list of matching Features Corresponds to the JSON property `resources` @return [Array<Google::Apis::GkehubV1::Feature>]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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