@@ -33,6 +33,9 @@ class SecurityMonitoringSuppressionAttributes
3333 # A description for the suppression rule.
3434 attr_accessor :description
3535
36+ # Whether the suppression rule is editable.
37+ attr_accessor :editable
38+
3639 # Whether the suppression rule is enabled.
3740 attr_accessor :enabled
3841
@@ -65,6 +68,7 @@ def self.attribute_map
6568 :'creator' => :'creator' ,
6669 :'data_exclusion_query' => :'data_exclusion_query' ,
6770 :'description' => :'description' ,
71+ :'editable' => :'editable' ,
6872 :'enabled' => :'enabled' ,
6973 :'expiration_date' => :'expiration_date' ,
7074 :'name' => :'name' ,
@@ -84,6 +88,7 @@ def self.openapi_types
8488 :'creator' => :'SecurityMonitoringUser' ,
8589 :'data_exclusion_query' => :'String' ,
8690 :'description' => :'String' ,
91+ :'editable' => :'Boolean' ,
8792 :'enabled' => :'Boolean' ,
8893 :'expiration_date' => :'Integer' ,
8994 :'name' => :'String' ,
@@ -127,6 +132,10 @@ def initialize(attributes = {})
127132 self . description = attributes [ :'description' ]
128133 end
129134
135+ if attributes . key? ( :'editable' )
136+ self . editable = attributes [ :'editable' ]
137+ end
138+
130139 if attributes . key? ( :'enabled' )
131140 self . enabled = attributes [ :'enabled' ]
132141 end
@@ -188,6 +197,7 @@ def ==(o)
188197 creator == o . creator &&
189198 data_exclusion_query == o . data_exclusion_query &&
190199 description == o . description &&
200+ editable == o . editable &&
191201 enabled == o . enabled &&
192202 expiration_date == o . expiration_date &&
193203 name == o . name &&
@@ -202,7 +212,7 @@ def ==(o)
202212 # @return [Integer] Hash code
203213 # @!visibility private
204214 def hash
205- [ creation_date , creator , data_exclusion_query , description , enabled , expiration_date , name , rule_query , suppression_query , update_date , updater , version ] . hash
215+ [ creation_date , creator , data_exclusion_query , description , editable , enabled , expiration_date , name , rule_query , suppression_query , update_date , updater , version ] . hash
206216 end
207217 end
208218end
0 commit comments