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.
9088 9089 9090 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9088 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
9081 9082 9083 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9081 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
9086 9087 9088 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9086 def resource_value_configs @resource_value_configs end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9093 9094 9095 9096 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 9093 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 |