Class: Google::Apis::SecuritycenterV1::ListMuteConfigsResponse
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::ListMuteConfigsResponse
- 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 for listing mute configs.
Instance Attribute Summary collapse
-
#mute_configs ⇒ Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1MuteConfig>
The mute configs from the specified parent.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListMuteConfigsResponse
constructor
A new instance of ListMuteConfigsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListMuteConfigsResponse
Returns a new instance of ListMuteConfigsResponse.
3061 3062 3063 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 3061 def initialize(**args) update!(**args) end |
Instance Attribute Details
#mute_configs ⇒ Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1MuteConfig>
The mute configs from the specified parent.
Corresponds to the JSON property muteConfigs
3053 3054 3055 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 3053 def mute_configs @mute_configs end |
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
3059 3060 3061 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 3059 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3066 3067 3068 3069 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 3066 def update!(**args) @mute_configs = args[:mute_configs] if args.key?(:mute_configs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |