Class: Google::Apis::GkehubV2alpha::ListFeatureConfigsResponse
- Inherits:
-
Object
- Object
- Google::Apis::GkehubV2alpha::ListFeatureConfigsResponse
- 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
-
#feature_configs ⇒ Array<Google::Apis::GkehubV2alpha::FeatureConfig>
The list of FeatureConfig(s).
-
#next_page_token ⇒ String
A token to request the next page of resources from the
ListFeatureConfigsmethod.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListFeatureConfigsResponse
constructor
A new instance of ListFeatureConfigsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_configs ⇒ Array<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_token ⇒ String
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
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 |