google-apis-dlp_v2 0.73.0 → 0.75.0
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/CHANGELOG.md +8 -0
- data/lib/google/apis/dlp_v2/classes.rb +41 -2
- data/lib/google/apis/dlp_v2/gem_version.rb +2 -2
- data/lib/google/apis/dlp_v2/representations.rb +28 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 96b31b04cae469ac1412e95ede372d71797521338e9080059c9d0cff92a83ea9
|
4
|
+
data.tar.gz: c1bef0e1a0bbb5b9b73cb60bf09c0fdfd8c02390391f81f95839006978fd5d64
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32d7edb1832a1f4c366e578a4aa118d770fb41029f9b4697b2168907e5c0ef368d90be8d673c2f809425fa840de15c2d0a3f71927e8b82f0e72f70ffb866e224
|
7
|
+
data.tar.gz: 0b58e298858eb4c0b672f65c46816a00009746d0b6a38da24b24b2dc7da28b26a4517611c24fdad489f62ed131a748b40a240245abbc4512725f1a9df569cf83
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dlp_v2
|
2
2
|
|
3
|
+
### v0.75.0 (2024-09-08)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240901
|
6
|
+
|
7
|
+
### v0.74.0 (2024-09-01)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240825
|
10
|
+
|
3
11
|
### v0.73.0 (2024-08-25)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240818
|
@@ -2282,6 +2282,16 @@ module Google
|
|
2282
2282
|
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2PubSubNotification]
|
2283
2283
|
attr_accessor :pub_sub_notification
|
2284
2284
|
|
2285
|
+
# Message expressing intention to publish to Google Security Operations.
|
2286
|
+
# Corresponds to the JSON property `publishToChronicle`
|
2287
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2PublishToChronicle]
|
2288
|
+
attr_accessor :publish_to_chronicle
|
2289
|
+
|
2290
|
+
# If set, a summary finding will be created/updated in SCC for each profile.
|
2291
|
+
# Corresponds to the JSON property `publishToScc`
|
2292
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2PublishToSecurityCommandCenter]
|
2293
|
+
attr_accessor :publish_to_scc
|
2294
|
+
|
2285
2295
|
# If set, attaches the [tags] (https://cloud.google.com/resource-manager/docs/
|
2286
2296
|
# tags/tags-overview) provided to profiled resources. Tags support [access
|
2287
2297
|
# control](https://cloud.google.com/iam/docs/tags-access-control). You can
|
@@ -2299,6 +2309,8 @@ module Google
|
|
2299
2309
|
def update!(**args)
|
2300
2310
|
@export_data = args[:export_data] if args.key?(:export_data)
|
2301
2311
|
@pub_sub_notification = args[:pub_sub_notification] if args.key?(:pub_sub_notification)
|
2312
|
+
@publish_to_chronicle = args[:publish_to_chronicle] if args.key?(:publish_to_chronicle)
|
2313
|
+
@publish_to_scc = args[:publish_to_scc] if args.key?(:publish_to_scc)
|
2302
2314
|
@tag_resources = args[:tag_resources] if args.key?(:tag_resources)
|
2303
2315
|
end
|
2304
2316
|
end
|
@@ -2541,7 +2553,8 @@ module Google
|
|
2541
2553
|
include Google::Apis::Core::Hashable
|
2542
2554
|
|
2543
2555
|
# Output only. An identifying string to the type of resource being profiled.
|
2544
|
-
# Current values: google/bigquery/table
|
2556
|
+
# Current values: * google/bigquery/table * google/project * google/sql/table *
|
2557
|
+
# google/gcs/bucket
|
2545
2558
|
# Corresponds to the JSON property `dataSource`
|
2546
2559
|
# @return [String]
|
2547
2560
|
attr_accessor :data_source
|
@@ -7475,7 +7488,7 @@ module Google
|
|
7475
7488
|
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ProfileStatus]
|
7476
7489
|
attr_accessor :profile_status
|
7477
7490
|
|
7478
|
-
# Project ID that was profiled.
|
7491
|
+
# Project ID or account that was profiled.
|
7479
7492
|
# Corresponds to the JSON property `projectId`
|
7480
7493
|
# @return [String]
|
7481
7494
|
attr_accessor :project_id
|
@@ -7674,6 +7687,19 @@ module Google
|
|
7674
7687
|
end
|
7675
7688
|
end
|
7676
7689
|
|
7690
|
+
# Message expressing intention to publish to Google Security Operations.
|
7691
|
+
class GooglePrivacyDlpV2PublishToChronicle
|
7692
|
+
include Google::Apis::Core::Hashable
|
7693
|
+
|
7694
|
+
def initialize(**args)
|
7695
|
+
update!(**args)
|
7696
|
+
end
|
7697
|
+
|
7698
|
+
# Update properties of this object
|
7699
|
+
def update!(**args)
|
7700
|
+
end
|
7701
|
+
end
|
7702
|
+
|
7677
7703
|
# Publish a message into a given Pub/Sub topic when DlpJob has completed. The
|
7678
7704
|
# message contains a single field, `DlpJobName`, which is equal to the finished
|
7679
7705
|
# job's [`DlpJob.name`](https://cloud.google.com/sensitive-data-protection/docs/
|
@@ -7699,6 +7725,19 @@ module Google
|
|
7699
7725
|
end
|
7700
7726
|
end
|
7701
7727
|
|
7728
|
+
# If set, a summary finding will be created/updated in SCC for each profile.
|
7729
|
+
class GooglePrivacyDlpV2PublishToSecurityCommandCenter
|
7730
|
+
include Google::Apis::Core::Hashable
|
7731
|
+
|
7732
|
+
def initialize(**args)
|
7733
|
+
update!(**args)
|
7734
|
+
end
|
7735
|
+
|
7736
|
+
# Update properties of this object
|
7737
|
+
def update!(**args)
|
7738
|
+
end
|
7739
|
+
end
|
7740
|
+
|
7702
7741
|
# Enable Stackdriver metric dlp.googleapis.com/finding_count. This will publish
|
7703
7742
|
# a metric to stack driver on each infotype requested and how many findings were
|
7704
7743
|
# found for it. CustomDetectors will be bucketed as 'Custom' under the
|
@@ -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.75.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240901"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1306,12 +1306,24 @@ module Google
|
|
1306
1306
|
include Google::Apis::Core::JsonObjectSupport
|
1307
1307
|
end
|
1308
1308
|
|
1309
|
+
class GooglePrivacyDlpV2PublishToChronicle
|
1310
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1311
|
+
|
1312
|
+
include Google::Apis::Core::JsonObjectSupport
|
1313
|
+
end
|
1314
|
+
|
1309
1315
|
class GooglePrivacyDlpV2PublishToPubSub
|
1310
1316
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1311
1317
|
|
1312
1318
|
include Google::Apis::Core::JsonObjectSupport
|
1313
1319
|
end
|
1314
1320
|
|
1321
|
+
class GooglePrivacyDlpV2PublishToSecurityCommandCenter
|
1322
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1323
|
+
|
1324
|
+
include Google::Apis::Core::JsonObjectSupport
|
1325
|
+
end
|
1326
|
+
|
1315
1327
|
class GooglePrivacyDlpV2PublishToStackdriver
|
1316
1328
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1317
1329
|
|
@@ -2454,6 +2466,10 @@ module Google
|
|
2454
2466
|
|
2455
2467
|
property :pub_sub_notification, as: 'pubSubNotification', class: Google::Apis::DlpV2::GooglePrivacyDlpV2PubSubNotification, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2PubSubNotification::Representation
|
2456
2468
|
|
2469
|
+
property :publish_to_chronicle, as: 'publishToChronicle', class: Google::Apis::DlpV2::GooglePrivacyDlpV2PublishToChronicle, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2PublishToChronicle::Representation
|
2470
|
+
|
2471
|
+
property :publish_to_scc, as: 'publishToScc', class: Google::Apis::DlpV2::GooglePrivacyDlpV2PublishToSecurityCommandCenter, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2PublishToSecurityCommandCenter::Representation
|
2472
|
+
|
2457
2473
|
property :tag_resources, as: 'tagResources', class: Google::Apis::DlpV2::GooglePrivacyDlpV2TagResources, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2TagResources::Representation
|
2458
2474
|
|
2459
2475
|
end
|
@@ -4064,6 +4080,12 @@ module Google
|
|
4064
4080
|
end
|
4065
4081
|
end
|
4066
4082
|
|
4083
|
+
class GooglePrivacyDlpV2PublishToChronicle
|
4084
|
+
# @private
|
4085
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4086
|
+
end
|
4087
|
+
end
|
4088
|
+
|
4067
4089
|
class GooglePrivacyDlpV2PublishToPubSub
|
4068
4090
|
# @private
|
4069
4091
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4071,6 +4093,12 @@ module Google
|
|
4071
4093
|
end
|
4072
4094
|
end
|
4073
4095
|
|
4096
|
+
class GooglePrivacyDlpV2PublishToSecurityCommandCenter
|
4097
|
+
# @private
|
4098
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4099
|
+
end
|
4100
|
+
end
|
4101
|
+
|
4074
4102
|
class GooglePrivacyDlpV2PublishToStackdriver
|
4075
4103
|
# @private
|
4076
4104
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.75.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: 2024-
|
11
|
+
date: 2024-09-15 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.75.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: []
|