Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RedactionConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/contactcenterinsights_v1/classes.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb
Overview
DLP resources used for redaction while ingesting conversations.
Instance Attribute Summary collapse
-
#deidentify_template ⇒ String
The fully-qualified DLP deidentify template resource name.
-
#inspect_template ⇒ String
The fully-qualified DLP inspect template resource name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1RedactionConfig
constructor
A new instance of GoogleCloudContactcenterinsightsV1RedactionConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1RedactionConfig
Returns a new instance of GoogleCloudContactcenterinsightsV1RedactionConfig.
2690 2691 2692 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2690 def initialize(**args) update!(**args) end |
Instance Attribute Details
#deidentify_template ⇒ String
The fully-qualified DLP deidentify template resource name. Format: projects/
project/deidentifyTemplates/
template`
Corresponds to the JSON property
deidentifyTemplate`
2682 2683 2684 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2682 def deidentify_template @deidentify_template end |
#inspect_template ⇒ String
The fully-qualified DLP inspect template resource name. Format: projects/
project/locations/
location/inspectTemplates/
template`
Corresponds to the JSON property
inspectTemplate`
2688 2689 2690 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2688 def inspect_template @inspect_template end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2695 2696 2697 2698 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2695 def update!(**args) @deidentify_template = args[:deidentify_template] if args.key?(:deidentify_template) @inspect_template = args[:inspect_template] if args.key?(:inspect_template) end |