Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainRedactionConfig
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainRedactionConfig
- 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. DLP settings
are applied to conversations ingested from the UploadConversation and
IngestConversations endpoints, including conversation coming from CCAI
Platform. They are not applied to conversations ingested from the
CreateConversation endpoint or the Dialogflow / Agent Assist runtime
integrations. When using Dialogflow / Agent Assist runtime integrations,
redaction should be performed in Dialogflow / Agent Assist.
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) ⇒ GoogleCloudContactcenterinsightsV1mainRedactionConfig
constructor
A new instance of GoogleCloudContactcenterinsightsV1mainRedactionConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1mainRedactionConfig
Returns a new instance of GoogleCloudContactcenterinsightsV1mainRedactionConfig.
21129 21130 21131 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21129 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 propertydeidentifyTemplate`
21121 21122 21123 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21121 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 propertyinspectTemplate`
21127 21128 21129 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21127 def inspect_template @inspect_template end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
21134 21135 21136 21137 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 21134 def update!(**args) @deidentify_template = args[:deidentify_template] if args.key?(:deidentify_template) @inspect_template = args[:inspect_template] if args.key?(:inspect_template) end |