google-cloud-dlp-v2 0.3.1 → 0.3.2
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2db8c83f4bf98f27140c3a66ef2171c510f7b45aae0b2c83e2885a8824447689
|
|
4
|
+
data.tar.gz: 6a59daa8d3b6408a243e41dedf7cab3cd4b8dbdd76bc7e965f927afe3e743d55
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 59ac111e738f1fde9c0f2555de4abd98c645edb1b7a7d8872634a6307552e1e068e8e3a168d324718783ab4685ff49284663ac008fbb875b426292dc577694c9
|
|
7
|
+
data.tar.gz: 7d097245d8cb2219709e8ef0599479468617c3b624d5fd791fd3d775d0a79a624bc63c71c77ef710b940b7aa4c971ab6fd479e8087c5058994267a41679fef5f
|
|
@@ -3170,7 +3170,7 @@ module Google
|
|
|
3170
3170
|
def rpcs
|
|
3171
3171
|
@rpcs ||= begin
|
|
3172
3172
|
parent_rpcs = nil
|
|
3173
|
-
parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to?
|
|
3173
|
+
parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
|
|
3174
3174
|
Rpcs.new parent_rpcs
|
|
3175
3175
|
end
|
|
3176
3176
|
end
|
|
@@ -2055,7 +2055,7 @@ module Google
|
|
|
2055
2055
|
#
|
|
2056
2056
|
# This annotation identifies the surrogate when inspecting content using the
|
|
2057
2057
|
# custom infoType
|
|
2058
|
-
# [`SurrogateType`](/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
|
|
2058
|
+
# [`SurrogateType`](https://cloud.google.com/dlp/docs/reference/rest/v2/InspectConfig#surrogatetype).
|
|
2059
2059
|
# This facilitates reversal of the surrogate when it occurs in free text.
|
|
2060
2060
|
#
|
|
2061
2061
|
# In order for inspection to work properly, the name of this infoType must
|
|
@@ -2079,16 +2079,16 @@ module Google
|
|
|
2079
2079
|
# Unused.
|
|
2080
2080
|
FFX_COMMON_NATIVE_ALPHABET_UNSPECIFIED = 0
|
|
2081
2081
|
|
|
2082
|
-
# [0-9] (radix of 10)
|
|
2082
|
+
# `[0-9]` (radix of 10)
|
|
2083
2083
|
NUMERIC = 1
|
|
2084
2084
|
|
|
2085
|
-
# [0-9A-F] (radix of 16)
|
|
2085
|
+
# `[0-9A-F]` (radix of 16)
|
|
2086
2086
|
HEXADECIMAL = 2
|
|
2087
2087
|
|
|
2088
|
-
# [0-9A-Z] (radix of 36)
|
|
2088
|
+
# `[0-9A-Z]` (radix of 36)
|
|
2089
2089
|
UPPER_CASE_ALPHA_NUMERIC = 3
|
|
2090
2090
|
|
|
2091
|
-
# [0-9A-Za-z] (radix of 62)
|
|
2091
|
+
# `[0-9A-Za-z]` (radix of 62)
|
|
2092
2092
|
ALPHA_NUMERIC = 4
|
|
2093
2093
|
end
|
|
2094
2094
|
end
|
|
@@ -2621,7 +2621,7 @@ module Google
|
|
|
2621
2621
|
# Publish a message into given Pub/Sub topic when DlpJob has completed. The
|
|
2622
2622
|
# message contains a single field, `DlpJobName`, which is equal to the
|
|
2623
2623
|
# finished job's
|
|
2624
|
-
# [`DlpJob.name`](/dlp/docs/reference/rest/v2/projects.dlpJobs#DlpJob).
|
|
2624
|
+
# [`DlpJob.name`](https://cloud.google.com/dlp/docs/reference/rest/v2/projects.dlpJobs#DlpJob).
|
|
2625
2625
|
# Compatible with: Inspect, Risk
|
|
2626
2626
|
# @!attribute [rw] topic
|
|
2627
2627
|
# @return [::String]
|
|
@@ -154,7 +154,7 @@ module Google
|
|
|
154
154
|
|
|
155
155
|
# Message for detecting output from deidentification transformations
|
|
156
156
|
# such as
|
|
157
|
-
# [`CryptoReplaceFfxFpeConfig`](/dlp/docs/reference/rest/v2/organizations.deidentifyTemplates#cryptoreplaceffxfpeconfig).
|
|
157
|
+
# [`CryptoReplaceFfxFpeConfig`](https://cloud.google.com/dlp/docs/reference/rest/v2/organizations.deidentifyTemplates#cryptoreplaceffxfpeconfig).
|
|
158
158
|
# These types of transformations are
|
|
159
159
|
# those that perform pseudonymization, thereby producing a "surrogate" as
|
|
160
160
|
# output. This should be used in conjunction with a field on the
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-dlp-v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-06-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gapic-common
|
|
@@ -204,7 +204,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
204
204
|
- !ruby/object:Gem::Version
|
|
205
205
|
version: '0'
|
|
206
206
|
requirements: []
|
|
207
|
-
rubygems_version: 3.
|
|
207
|
+
rubygems_version: 3.1.3
|
|
208
208
|
signing_key:
|
|
209
209
|
specification_version: 4
|
|
210
210
|
summary: API Client library for the Cloud Data Loss Prevention (DLP) V2 API
|