Skip to content

Commit

Permalink
feat: add support for publishToStackdriver field (#358)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-automation authored and callmehiphop committed Nov 13, 2019
1 parent 5424273 commit 8a5a5a3
Show file tree
Hide file tree
Showing 9 changed files with 1,966 additions and 340 deletions.
388 changes: 288 additions & 100 deletions packages/google-privacy-dlp/protos/google/privacy/dlp/v2/dlp.proto

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ syntax = "proto3";

package google.privacy.dlp.v2;

import "google/api/annotations.proto";
import "google/api/resource.proto";
import "google/protobuf/timestamp.proto";

option csharp_namespace = "Google.Cloud.Dlp.V2";
Expand Down Expand Up @@ -472,14 +472,19 @@ message StorageConfig {
google.protobuf.Timestamp end_time = 2;

// Specification of the field containing the timestamp of scanned items.
// Used for data sources like Datastore or BigQuery.
// If not specified for BigQuery, table last modification timestamp
// is checked against given time span.
// The valid data types of the timestamp field are:
// for BigQuery - timestamp, date, datetime;
// for Datastore - timestamp.
// Datastore entity will be scanned if the timestamp property does not exist
// or its value is empty or invalid.
// Used for data sources like Datastore and BigQuery.
//
// For BigQuery:
// Required to filter out rows based on the given start and
// end times. If not specified and the table was modified between the given
// start and end times, the entire table will be scanned.
// The valid data types of the timestamp field are: `INTEGER`, `DATE`,
// `TIMESTAMP`, or `DATETIME` BigQuery column.
//
// For Datastore.
// Valid data types of the timestamp field are: `TIMESTAMP`.
// Datastore entity will be scanned if the timestamp property does not
// exist or its value is empty or invalid.
FieldId timestamp_field = 3;

// When the job is started by a JobTrigger we will automatically figure out
Expand Down
377 changes: 350 additions & 27 deletions packages/google-privacy-dlp/protos/protos.d.ts

Large diffs are not rendered by default.

989 changes: 928 additions & 61 deletions packages/google-privacy-dlp/protos/protos.js

Large diffs are not rendered by default.

Loading

0 comments on commit 8a5a5a3

Please sign in to comment.