Class: Google::Apis::SecuritycenterV1::AssetDiscoveryConfig
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::AssetDiscoveryConfig
- 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
The configuration used for Asset Discovery runs.
Instance Attribute Summary collapse
-
#folder_ids ⇒ Array<String>
The folder ids to use for filtering asset discovery.
-
#inclusion_mode ⇒ String
The mode to use for filtering asset discovery.
-
#project_ids ⇒ Array<String>
The project ids to use for filtering asset discovery.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AssetDiscoveryConfig
constructor
A new instance of AssetDiscoveryConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AssetDiscoveryConfig
Returns a new instance of AssetDiscoveryConfig.
338 339 340 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 338 def initialize(**args) update!(**args) end |
Instance Attribute Details
#folder_ids ⇒ Array<String>
The folder ids to use for filtering asset discovery. It consists of only
digits, e.g., 756619654966.
Corresponds to the JSON property folderIds
326 327 328 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 326 def folder_ids @folder_ids end |
#inclusion_mode ⇒ String
The mode to use for filtering asset discovery.
Corresponds to the JSON property inclusionMode
331 332 333 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 331 def inclusion_mode @inclusion_mode end |
#project_ids ⇒ Array<String>
The project ids to use for filtering asset discovery.
Corresponds to the JSON property projectIds
336 337 338 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 336 def project_ids @project_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
343 344 345 346 347 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 343 def update!(**args) @folder_ids = args[:folder_ids] if args.key?(:folder_ids) @inclusion_mode = args[:inclusion_mode] if args.key?(:inclusion_mode) @project_ids = args[:project_ids] if args.key?(:project_ids) end |