Class: Google::Apis::ResourcesettingsV1::GoogleCloudResourcesettingsV1ListSettingsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ResourcesettingsV1::GoogleCloudResourcesettingsV1ListSettingsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/resourcesettings_v1/classes.rb,
lib/google/apis/resourcesettings_v1/representations.rb,
lib/google/apis/resourcesettings_v1/representations.rb
Overview
The response from ListSettings.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Unused.
-
#settings ⇒ Array<Google::Apis::ResourcesettingsV1::GoogleCloudResourcesettingsV1Setting>
A list of settings that are available at the specified Cloud resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudResourcesettingsV1ListSettingsResponse
constructor
A new instance of GoogleCloudResourcesettingsV1ListSettingsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudResourcesettingsV1ListSettingsResponse
Returns a new instance of GoogleCloudResourcesettingsV1ListSettingsResponse.
39 40 41 |
# File 'lib/google/apis/resourcesettings_v1/classes.rb', line 39 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Unused. A page token used to retrieve the next page.
Corresponds to the JSON property nextPageToken
32 33 34 |
# File 'lib/google/apis/resourcesettings_v1/classes.rb', line 32 def next_page_token @next_page_token end |
#settings ⇒ Array<Google::Apis::ResourcesettingsV1::GoogleCloudResourcesettingsV1Setting>
A list of settings that are available at the specified Cloud resource.
Corresponds to the JSON property settings
37 38 39 |
# File 'lib/google/apis/resourcesettings_v1/classes.rb', line 37 def settings @settings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
44 45 46 47 |
# 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 |