Class: Google::Apis::SecuritycenterV1::ListDescendantEventThreatDetectionCustomModulesResponse
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::ListDescendantEventThreatDetectionCustomModulesResponse
- 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 current and descendant resident Event Threat Detection custom modules.
Instance Attribute Summary collapse
-
#event_threat_detection_custom_modules ⇒ Array<Google::Apis::SecuritycenterV1::EventThreatDetectionCustomModule>
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) ⇒ ListDescendantEventThreatDetectionCustomModulesResponse
constructor
A new instance of ListDescendantEventThreatDetectionCustomModulesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListDescendantEventThreatDetectionCustomModulesResponse
Returns a new instance of ListDescendantEventThreatDetectionCustomModulesResponse.
8818 8819 8820 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 8818 def initialize(**args) update!(**args) end |
Instance Attribute Details
#event_threat_detection_custom_modules ⇒ Array<Google::Apis::SecuritycenterV1::EventThreatDetectionCustomModule>
Custom modules belonging to the requested parent.
Corresponds to the JSON property eventThreatDetectionCustomModules
8810 8811 8812 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 8810 def event_threat_detection_custom_modules @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
8816 8817 8818 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 8816 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8823 8824 8825 8826 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 8823 def update!(**args) @event_threat_detection_custom_modules = args[:event_threat_detection_custom_modules] if args.key?(:event_threat_detection_custom_modules) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |