class Google::Apis::SecuritycenterV1beta1::AssetDiscoveryConfig

The configuration used for Asset Discovery runs.

Attributes

inclusion_mode[RW]

The mode to use for filtering asset discovery. Corresponds to the JSON property `inclusionMode` @return [String]

project_ids[RW]

The project ids to use for filtering asset discovery. Corresponds to the JSON property `projectIds` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/securitycenter_v1beta1/classes.rb, line 100
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/securitycenter_v1beta1/classes.rb, line 105
def update!(**args)
  @inclusion_mode = args[:inclusion_mode] if args.key?(:inclusion_mode)
  @project_ids = args[:project_ids] if args.key?(:project_ids)
end