Class: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryGenerationCadence
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryGenerationCadence
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dlp_v2/classes.rb,
lib/google/apis/dlp_v2/representations.rb,
lib/google/apis/dlp_v2/representations.rb
Overview
What must take place for a profile to be updated and how frequently it should occur. New tables are scanned as quickly as possible depending on system capacity.
Instance Attribute Summary collapse
-
#inspect_template_modified_cadence ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryInspectTemplateModifiedCadence
The cadence at which to update data profiles when the inspection rules defined by the
InspectTemplate
change. -
#refresh_frequency ⇒ String
Frequency at which profiles should be updated, regardless of whether the underlying resource has changed.
-
#schema_modified_cadence ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoverySchemaModifiedCadence
The cadence at which to update data profiles when a schema is modified.
-
#table_modified_cadence ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryTableModifiedCadence
The cadence at which to update data profiles when a table is modified.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2DiscoveryGenerationCadence
constructor
A new instance of GooglePrivacyDlpV2DiscoveryGenerationCadence.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2DiscoveryGenerationCadence
Returns a new instance of GooglePrivacyDlpV2DiscoveryGenerationCadence.
3941 3942 3943 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 3941 def initialize(**args) update!(**args) end |
Instance Attribute Details
#inspect_template_modified_cadence ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryInspectTemplateModifiedCadence
The cadence at which to update data profiles when the inspection rules defined
by the InspectTemplate
change.
Corresponds to the JSON property inspectTemplateModifiedCadence
3923 3924 3925 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 3923 def inspect_template_modified_cadence @inspect_template_modified_cadence end |
#refresh_frequency ⇒ String
Frequency at which profiles should be updated, regardless of whether the
underlying resource has changed. Defaults to never.
Corresponds to the JSON property refreshFrequency
3929 3930 3931 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 3929 def refresh_frequency @refresh_frequency end |
#schema_modified_cadence ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoverySchemaModifiedCadence
The cadence at which to update data profiles when a schema is modified.
Corresponds to the JSON property schemaModifiedCadence
3934 3935 3936 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 3934 def schema_modified_cadence @schema_modified_cadence end |
#table_modified_cadence ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryTableModifiedCadence
The cadence at which to update data profiles when a table is modified.
Corresponds to the JSON property tableModifiedCadence
3939 3940 3941 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 3939 def table_modified_cadence @table_modified_cadence end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3946 3947 3948 3949 3950 3951 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 3946 def update!(**args) @inspect_template_modified_cadence = args[:inspect_template_modified_cadence] if args.key?(:inspect_template_modified_cadence) @refresh_frequency = args[:refresh_frequency] if args.key?(:refresh_frequency) @schema_modified_cadence = args[:schema_modified_cadence] if args.key?(:schema_modified_cadence) @table_modified_cadence = args[:table_modified_cadence] if args.key?(:table_modified_cadence) end |