You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: google-beta/resource_data_loss_prevention_job_trigger.go
+85-3Lines changed: 85 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -118,10 +118,30 @@ A duration in seconds with up to nine fractional digits, terminated by 's'. Exam
118
118
},
119
119
ExactlyOneOf: []string{},
120
120
},
121
+
"publish_findings_to_cloud_data_catalog": {
122
+
Type: schema.TypeList,
123
+
Optional: true,
124
+
Description: `Publish findings of a DlpJob to Data Catalog.`,
125
+
MaxItems: 1,
126
+
Elem: &schema.Resource{
127
+
Schema: map[string]*schema.Schema{},
128
+
},
129
+
ExactlyOneOf: []string{},
130
+
},
131
+
"publish_summary_to_cscc": {
132
+
Type: schema.TypeList,
133
+
Optional: true,
134
+
Description: `Publish the result summary of a DlpJob to the Cloud Security Command Center.`,
135
+
MaxItems: 1,
136
+
Elem: &schema.Resource{
137
+
Schema: map[string]*schema.Schema{},
138
+
},
139
+
ExactlyOneOf: []string{},
140
+
},
121
141
"save_findings": {
122
142
Type: schema.TypeList,
123
143
Optional: true,
124
-
Description: `Schedule for triggered jobs`,
144
+
Description: `If set, the detailed findings will be persisted to the specified OutputStorageConfig. Only a single instance of this action can be specified. Compatible with: Inspect, Risk`,
125
145
MaxItems: 1,
126
146
Elem: &schema.Resource{
127
147
Schema: map[string]*schema.Schema{
@@ -1235,8 +1255,10 @@ func flattenDataLossPreventionJobTriggerInspectJobActions(v interface{}, d *sche
Copy file name to clipboardExpand all lines: website/docs/r/data_loss_prevention_job_trigger.html.markdown
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -437,14 +437,22 @@ The following arguments are supported:
437
437
438
438
*`save_findings` -
439
439
(Optional)
440
-
Schedule for triggered jobs
440
+
If set, the detailed findings will be persisted to the specified OutputStorageConfig. Only a single instance of this action can be specified. Compatible with: Inspect, Risk
441
441
Structure is [documented below](#nested_save_findings).
442
442
443
443
*`pub_sub` -
444
444
(Optional)
445
445
Publish a message into a given Pub/Sub topic when the job completes.
446
446
Structure is [documented below](#nested_pub_sub).
447
447
448
+
*`publish_summary_to_cscc` -
449
+
(Optional)
450
+
Publish the result summary of a DlpJob to the Cloud Security Command Center.
0 commit comments