Class: Google::Apis::SecuritycenterV1::ListResourceValueConfigsResponse
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::ListResourceValueConfigsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/securitycenter_v1/classes.rb,
lib/google/apis/securitycenter_v1/representations.rb,
lib/google/apis/securitycenter_v1/representations.rb
Overview
Response message to list resource value configs
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page. -
#resource_value_configs ⇒ Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceValueConfig>
The resource value configs from the specified parent.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListResourceValueConfigsResponse
constructor
A new instance of ListResourceValueConfigsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListResourceValueConfigsResponse
Returns a new instance of ListResourceValueConfigsResponse.
8663 8664 8665 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 8663 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token, which can be sent as page_token
to retrieve the next page. If this
field is empty, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
8656 8657 8658 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 8656 def next_page_token @next_page_token end |
#resource_value_configs ⇒ Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ResourceValueConfig>
The resource value configs from the specified parent.
Corresponds to the JSON property resourceValueConfigs
8661 8662 8663 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 8661 def resource_value_configs @resource_value_configs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8668 8669 8670 8671 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 8668 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @resource_value_configs = args[:resource_value_configs] if args.key?(:resource_value_configs) end |