google-cloud-dlp 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/google/cloud/dlp.rb +6 -0
- data/lib/google/cloud/dlp/v2.rb +6 -0
- data/lib/google/cloud/dlp/v2/credentials.rb +1 -0
- data/lib/google/cloud/dlp/v2/dlp_service_client.rb +2 -0
- data/lib/google/cloud/dlp/v2/doc/google/privacy/dlp/v2/dlp.rb +2 -1
- data/lib/google/cloud/dlp/v2/doc/google/privacy/dlp/v2/storage.rb +2 -1
- data/lib/google/cloud/dlp/v2/doc/google/protobuf/any.rb +14 -8
- data/lib/google/cloud/dlp/v2/doc/google/protobuf/duration.rb +1 -0
- data/lib/google/cloud/dlp/v2/doc/google/protobuf/empty.rb +1 -0
- data/lib/google/cloud/dlp/v2/doc/google/protobuf/field_mask.rb +7 -0
- data/lib/google/cloud/dlp/v2/doc/google/protobuf/timestamp.rb +9 -6
- data/lib/google/cloud/dlp/v2/doc/google/rpc/status.rb +1 -0
- data/lib/google/cloud/dlp/v2/doc/google/type/date.rb +1 -0
- data/lib/google/cloud/dlp/v2/doc/google/type/timeofday.rb +1 -0
- data/lib/google/cloud/dlp/v2/doc/overview.rb +1 -0
- data/lib/google/privacy/dlp/v2/dlp_pb.rb +1 -0
- data/lib/google/privacy/dlp/v2/dlp_services_pb.rb +1 -0
- data/lib/google/privacy/dlp/v2/storage_pb.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4fc21f1055505ffe720b2c9ac56b5f2ff24b275601c1d86008d2afb3c3f77cf2
|
4
|
+
data.tar.gz: e6945e8ea53f9c8aa619eb6c2c56bc6302ac382c5d04701b5353fabe7a1f5d2b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2bdac92353e02f7ffaa5c4fced86100a22e781f63690a95e35f31f294d636493caa712de5fef9518fead2043cd0f4863fbb09322ddfd8799fb35153bdb43898f
|
7
|
+
data.tar.gz: 25f1a6b46c8ace2d0fb9652487f5bbb1eead0fa76a1357dc94437cf46626966cb930706faa5f9d28fd8a3e4c1099c5f1a52911f7328863e933a8ced5263f4a85
|
data/lib/google/cloud/dlp.rb
CHANGED
@@ -12,6 +12,7 @@
|
|
12
12
|
# See the License for the specific language governing permissions and
|
13
13
|
# limitations under the License.
|
14
14
|
|
15
|
+
|
15
16
|
require "google/gax"
|
16
17
|
require "pathname"
|
17
18
|
|
@@ -37,6 +38,11 @@ module Google
|
|
37
38
|
# 3. [Enable the Cloud Data Loss Prevention (DLP) API.](https://console.cloud.google.com/apis/library/dlp.googleapis.com)
|
38
39
|
# 4. [Setup Authentication.](https://googlecloudplatform.github.io/google-cloud-ruby/#/docs/google-cloud/master/guides/authentication)
|
39
40
|
#
|
41
|
+
# ### Installation
|
42
|
+
# ```
|
43
|
+
# $ gem install google-cloud-dlp
|
44
|
+
# ```
|
45
|
+
#
|
40
46
|
# ### Next Steps
|
41
47
|
# - Read the [Cloud Data Loss Prevention (DLP) API Product documentation][Product Documentation]
|
42
48
|
# to learn more about the product and see How-to Guides.
|
data/lib/google/cloud/dlp/v2.rb
CHANGED
@@ -12,6 +12,7 @@
|
|
12
12
|
# See the License for the specific language governing permissions and
|
13
13
|
# limitations under the License.
|
14
14
|
|
15
|
+
|
15
16
|
require "google/cloud/dlp/v2/dlp_service_client"
|
16
17
|
|
17
18
|
module Google
|
@@ -37,6 +38,11 @@ module Google
|
|
37
38
|
# 3. [Enable the Cloud Data Loss Prevention (DLP) API.](https://console.cloud.google.com/apis/library/dlp.googleapis.com)
|
38
39
|
# 4. [Setup Authentication.](https://googlecloudplatform.github.io/google-cloud-ruby/#/docs/google-cloud/master/guides/authentication)
|
39
40
|
#
|
41
|
+
# ### Installation
|
42
|
+
# ```
|
43
|
+
# $ gem install google-cloud-dlp
|
44
|
+
# ```
|
45
|
+
#
|
40
46
|
# ### Next Steps
|
41
47
|
# - Read the [Cloud Data Loss Prevention (DLP) API Product documentation][Product Documentation]
|
42
48
|
# to learn more about the product and see How-to Guides.
|
@@ -19,6 +19,7 @@
|
|
19
19
|
# For the short term, the refresh process will only be runnable by Google
|
20
20
|
# engineers.
|
21
21
|
|
22
|
+
|
22
23
|
require "json"
|
23
24
|
require "pathname"
|
24
25
|
|
@@ -44,6 +45,7 @@ module Google
|
|
44
45
|
# @!attribute [r] dlp_service_stub
|
45
46
|
# @return [Google::Privacy::Dlp::V2::DlpService::Stub]
|
46
47
|
class DlpServiceClient
|
48
|
+
# @private
|
47
49
|
attr_reader :dlp_service_stub
|
48
50
|
|
49
51
|
# The default address of the service.
|
@@ -12,6 +12,7 @@
|
|
12
12
|
# See the License for the specific language governing permissions and
|
13
13
|
# limitations under the License.
|
14
14
|
|
15
|
+
|
15
16
|
module Google
|
16
17
|
module Privacy
|
17
18
|
module Dlp
|
@@ -1819,7 +1820,7 @@ module Google
|
|
1819
1820
|
# Cloud Pub/Sub topic to send notifications to. The topic must have given
|
1820
1821
|
# publishing access rights to the DLP API service account executing
|
1821
1822
|
# the long running DlpJob sending the notifications.
|
1822
|
-
# Format is projects
|
1823
|
+
# Format is projects/\\{project}/topics/\\{topic}.
|
1823
1824
|
class PublishToPubSub; end
|
1824
1825
|
|
1825
1826
|
# Publish the result summary of a DlpJob to the Cloud Security
|
@@ -12,6 +12,7 @@
|
|
12
12
|
# See the License for the specific language governing permissions and
|
13
13
|
# limitations under the License.
|
14
14
|
|
15
|
+
|
15
16
|
module Google
|
16
17
|
module Privacy
|
17
18
|
module Dlp
|
@@ -169,7 +170,7 @@ module Google
|
|
169
170
|
# The total length of the window cannot exceed 1000 characters. Note that
|
170
171
|
# the finding itself will be included in the window, so that hotwords may
|
171
172
|
# be used to match substrings of the finding itself. For example, the
|
172
|
-
# certainty of a phone number regex "\(\d{3}\) \d{3}-\d{4}" could be
|
173
|
+
# certainty of a phone number regex "\(\d\\{3}\) \d\\{3}-\d\\{4}" could be
|
173
174
|
# adjusted upwards if the area code is known to be the local area code of
|
174
175
|
# a company office using the hotword regex "\(xxx\)", where "xxx"
|
175
176
|
# is the area code in question.
|
@@ -12,6 +12,7 @@
|
|
12
12
|
# See the License for the specific language governing permissions and
|
13
13
|
# limitations under the License.
|
14
14
|
|
15
|
+
|
15
16
|
module Google
|
16
17
|
module Protobuf
|
17
18
|
# +Any+ contains an arbitrary serialized protocol buffer message along with a
|
@@ -95,17 +96,18 @@ module Google
|
|
95
96
|
# }
|
96
97
|
# @!attribute [rw] type_url
|
97
98
|
# @return [String]
|
98
|
-
# A URL/resource name
|
99
|
-
#
|
99
|
+
# A URL/resource name that uniquely identifies the type of the serialized
|
100
|
+
# protocol buffer message. The last segment of the URL's path must represent
|
101
|
+
# the fully qualified name of the type (as in
|
102
|
+
# +path/google.protobuf.Duration+). The name should be in a canonical form
|
103
|
+
# (e.g., leading "." is not accepted).
|
100
104
|
#
|
101
|
-
#
|
102
|
-
#
|
105
|
+
# In practice, teams usually precompile into the binary all types that they
|
106
|
+
# expect it to use in the context of Any. However, for URLs which use the
|
107
|
+
# scheme +http+, +https+, or no scheme, one can optionally set up a type
|
108
|
+
# server that maps type URLs to message definitions as follows:
|
103
109
|
#
|
104
110
|
# * If no scheme is provided, +https+ is assumed.
|
105
|
-
# * The last segment of the URL's path must represent the fully
|
106
|
-
# qualified name of the type (as in +path/google.protobuf.Duration+).
|
107
|
-
# The name should be in a canonical form (e.g., leading "." is
|
108
|
-
# not accepted).
|
109
111
|
# * An HTTP GET on the URL must yield a {Google::Protobuf::Type}
|
110
112
|
# value in binary format, or produce an error.
|
111
113
|
# * Applications are allowed to cache lookup results based on the
|
@@ -114,6 +116,10 @@ module Google
|
|
114
116
|
# on changes to types. (Use versioned type names to manage
|
115
117
|
# breaking changes.)
|
116
118
|
#
|
119
|
+
# Note: this functionality is not currently available in the official
|
120
|
+
# protobuf release, and it is not used for type URLs beginning with
|
121
|
+
# type.googleapis.com.
|
122
|
+
#
|
117
123
|
# Schemes other than +http+, +https+ (or the empty scheme) might be
|
118
124
|
# used with implementation specific semantics.
|
119
125
|
# @!attribute [rw] value
|
@@ -12,6 +12,7 @@
|
|
12
12
|
# See the License for the specific language governing permissions and
|
13
13
|
# limitations under the License.
|
14
14
|
|
15
|
+
|
15
16
|
module Google
|
16
17
|
module Protobuf
|
17
18
|
# +FieldMask+ represents a set of symbolic field paths, for example:
|
@@ -215,6 +216,12 @@ module Google
|
|
215
216
|
#
|
216
217
|
# Note that oneof type names ("test_oneof" in this case) cannot be used in
|
217
218
|
# paths.
|
219
|
+
#
|
220
|
+
# == Field Mask Verification
|
221
|
+
#
|
222
|
+
# The implementation of any API method which has a FieldMask type field in the
|
223
|
+
# request should verify the included field paths, and return an
|
224
|
+
# +INVALID_ARGUMENT+ error if any path is duplicated or unmappable.
|
218
225
|
# @!attribute [rw] paths
|
219
226
|
# @return [Array<String>]
|
220
227
|
# The set of field mask paths.
|
@@ -12,6 +12,7 @@
|
|
12
12
|
# See the License for the specific language governing permissions and
|
13
13
|
# limitations under the License.
|
14
14
|
|
15
|
+
|
15
16
|
module Google
|
16
17
|
module Protobuf
|
17
18
|
# A Timestamp represents a point in time independent of any time zone
|
@@ -72,12 +73,14 @@ module Google
|
|
72
73
|
#
|
73
74
|
# In JSON format, the Timestamp type is encoded as a string in the
|
74
75
|
# [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the
|
75
|
-
# format is "{year}
|
76
|
-
# where {year} is always expressed using four digits while {month}, {day},
|
77
|
-
# {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional
|
76
|
+
# format is "\\{year}-\\{month}-\\{day}T\\{hour}:\\{min}:\\{sec}[.\\{frac_sec}]Z"
|
77
|
+
# where \\{year} is always expressed using four digits while \\{month}, \\{day},
|
78
|
+
# \\{hour}, \\{min}, and \\{sec} are zero-padded to two digits each. The fractional
|
78
79
|
# seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),
|
79
80
|
# are optional. The "Z" suffix indicates the timezone ("UTC"); the timezone
|
80
|
-
# is required
|
81
|
+
# is required. A proto3 JSON serializer should always use UTC (as indicated by
|
82
|
+
# "Z") when printing the Timestamp type and a proto3 JSON parser should be
|
83
|
+
# able to accept both UTC and other timezones (as indicated by an offset).
|
81
84
|
#
|
82
85
|
# For example, "2017-01-15T01:30:15.01Z" encodes 15.01 seconds past
|
83
86
|
# 01:30 UTC on January 15, 2017.
|
@@ -88,8 +91,8 @@ module Google
|
|
88
91
|
# to this format using [+strftime+](https://docs.python.org/2/library/time.html#time.strftime)
|
89
92
|
# with the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one
|
90
93
|
# can use the Joda Time's [+ISODateTimeFormat.dateTime()+](
|
91
|
-
# http://joda-time
|
92
|
-
# to obtain a formatter capable of generating timestamps in this format.
|
94
|
+
# http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime--
|
95
|
+
# ) to obtain a formatter capable of generating timestamps in this format.
|
93
96
|
# @!attribute [rw] seconds
|
94
97
|
# @return [Integer]
|
95
98
|
# Represents seconds of UTC time since Unix epoch
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-dlp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-09-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-gax
|