class Google::Apis::ResourcesettingsV1::GoogleCloudResourcesettingsV1ListSettingsResponse
The response from ListSettings.
Attributes
next_page_token[RW]
Unused. A page token used to retrieve the next page. Corresponds to the JSON property `nextPageToken` @return [String]
settings[RW]
A list of settings that are available at the specified Cloud resource. Corresponds to the JSON property `settings` @return [Array<Google::Apis::ResourcesettingsV1::GoogleCloudResourcesettingsV1Setting>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/resourcesettings_v1/classes.rb, line 39 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/resourcesettings_v1/classes.rb, line 44 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @settings = args[:settings] if args.key?(:settings) end