google-apis-dlp_v2 0.31.0 → 0.33.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e2e828e2546b51adc9065a6b160dded44720ae463f7a79775c10814187a5f53c
|
4
|
+
data.tar.gz: 57cc68cf592bf6451a5e399ad05b2f5dd729b8cfb0776dac495b37b109c97b65
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 74674a48ab398b6565d62aa5b554cf24411ae47f3a6788375f19a778c17a5996c1030958408177e1da49fd8b6afbd7cf050edf44130fc2c5081ce5416b818ea5
|
7
|
+
data.tar.gz: a1b61665a43c5c3c59f36b6f2c81212bf99e9f9718b7d18965284286b788a45196f04e3ce8d70d666e7eb9f0e9558d6e04c09276dfe604a3af0b0f9209b030cc
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dlp_v2
|
2
2
|
|
3
|
+
### v0.33.0 (2022-09-14)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220910
|
6
|
+
|
7
|
+
### v0.32.0 (2022-09-08)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220904
|
10
|
+
|
3
11
|
### v0.31.0 (2022-09-01)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20220826
|
@@ -3501,12 +3501,6 @@ module Google
|
|
3501
3501
|
class GooglePrivacyDlpV2InfoTypeSummary
|
3502
3502
|
include Google::Apis::Core::Hashable
|
3503
3503
|
|
3504
|
-
# Approximate percentage of non-null rows that contained data detected by this
|
3505
|
-
# infotype.
|
3506
|
-
# Corresponds to the JSON property `estimatedPrevalence`
|
3507
|
-
# @return [Fixnum]
|
3508
|
-
attr_accessor :estimated_prevalence
|
3509
|
-
|
3510
3504
|
# Type of information detected by the API.
|
3511
3505
|
# Corresponds to the JSON property `infoType`
|
3512
3506
|
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType]
|
@@ -3518,7 +3512,6 @@ module Google
|
|
3518
3512
|
|
3519
3513
|
# Update properties of this object
|
3520
3514
|
def update!(**args)
|
3521
|
-
@estimated_prevalence = args[:estimated_prevalence] if args.key?(:estimated_prevalence)
|
3522
3515
|
@info_type = args[:info_type] if args.key?(:info_type)
|
3523
3516
|
end
|
3524
3517
|
end
|
@@ -6697,7 +6690,8 @@ module Google
|
|
6697
6690
|
# @return [String]
|
6698
6691
|
attr_accessor :resource_visibility
|
6699
6692
|
|
6700
|
-
# Number of rows in the table when the profile was generated.
|
6693
|
+
# Number of rows in the table when the profile was generated. This will not be
|
6694
|
+
# populated for BigLake tables.
|
6701
6695
|
# Corresponds to the JSON property `rowCount`
|
6702
6696
|
# @return [Fixnum]
|
6703
6697
|
attr_accessor :row_count
|
@@ -6910,7 +6904,8 @@ module Google
|
|
6910
6904
|
# When the job is started by a JobTrigger we will automatically figure out a
|
6911
6905
|
# valid start_time to avoid scanning files that have not been modified since the
|
6912
6906
|
# last time the JobTrigger executed. This will be based on the time of the
|
6913
|
-
# execution of the last run of the JobTrigger
|
6907
|
+
# execution of the last run of the JobTrigger or the timespan end_time used in
|
6908
|
+
# the last run of the JobTrigger.
|
6914
6909
|
# Corresponds to the JSON property `enableAutoPopulationOfTimespanConfig`
|
6915
6910
|
# @return [Boolean]
|
6916
6911
|
attr_accessor :enable_auto_population_of_timespan_config
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DlpV2
|
18
18
|
# Version of the google-apis-dlp_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.33.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220910"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2365,7 +2365,6 @@ module Google
|
|
2365
2365
|
class GooglePrivacyDlpV2InfoTypeSummary
|
2366
2366
|
# @private
|
2367
2367
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2368
|
-
property :estimated_prevalence, as: 'estimatedPrevalence'
|
2369
2368
|
property :info_type, as: 'infoType', class: Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2InfoType::Representation
|
2370
2369
|
|
2371
2370
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dlp_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.33.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-09-
|
11
|
+
date: 2022-09-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dlp_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dlp_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dlp_v2/v0.33.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dlp_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|