Class: Google::Apis::GkehubV2alpha::ListFeatureConfigsResponse

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

Overview

Response message for the GkeHubFeature.ListFeatureConfigs method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListFeatureConfigsResponse

Returns a new instance of ListFeatureConfigsResponse.



259
260
261
# File 'lib/google/apis/gkehub_v2alpha/classes.rb', line 259

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

Instance Attribute Details

#feature_configsArray<Google::Apis::GkehubV2alpha::FeatureConfig>

The list of FeatureConfig(s). Corresponds to the JSON property featureConfigs



250
251
252
# File 'lib/google/apis/gkehub_v2alpha/classes.rb', line 250

def feature_configs
  @feature_configs
end

#next_page_tokenString

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

Returns:

  • (String)


257
258
259
# File 'lib/google/apis/gkehub_v2alpha/classes.rb', line 257

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



264
265
266
267
# File 'lib/google/apis/gkehub_v2alpha/classes.rb', line 264

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