Class: Google::Apis::SecuritycenterV1::ListEffectiveEventThreatDetectionCustomModulesResponse
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::ListEffectiveEventThreatDetectionCustomModulesResponse
- 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 for listing EffectiveEventThreatDetectionCustomModules.
Instance Attribute Summary collapse
-
#effective_event_threat_detection_custom_modules ⇒ Array<Google::Apis::SecuritycenterV1::EffectiveEventThreatDetectionCustomModule>
Effective custom modules belonging to the requested parent.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListEffectiveEventThreatDetectionCustomModulesResponse
constructor
A new instance of ListEffectiveEventThreatDetectionCustomModulesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListEffectiveEventThreatDetectionCustomModulesResponse
Returns a new instance of ListEffectiveEventThreatDetectionCustomModulesResponse.
8433 8434 8435 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 8433 def initialize(**args) update!(**args) end |
Instance Attribute Details
#effective_event_threat_detection_custom_modules ⇒ Array<Google::Apis::SecuritycenterV1::EffectiveEventThreatDetectionCustomModule>
Effective custom modules belonging to the requested parent.
Corresponds to the JSON property effectiveEventThreatDetectionCustomModules
8425 8426 8427 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 8425 def effective_event_threat_detection_custom_modules @effective_event_threat_detection_custom_modules 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
8431 8432 8433 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 8431 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8438 8439 8440 8441 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 8438 def update!(**args) @effective_event_threat_detection_custom_modules = args[:effective_event_threat_detection_custom_modules] if args.key?(:effective_event_threat_detection_custom_modules) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |