google-apis-dlp_v2 0.90.0 → 0.92.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 488f31b495c72921baad9b6da2f531f7d5327a5cc039396682bd1756274ea787
4
- data.tar.gz: 6dd6731afeaf88644f50304baa99e5a5d2f3d0bd8e6f881ac94869f7ef13ef8d
3
+ metadata.gz: c4299962888840a2b06f42626c5d2abdb149db37ee61c8e4e83752203eeccee6
4
+ data.tar.gz: c6b5eb805a0e97f62fd83de7a50c9d1fdf364bc3c24084cf27300fd6d21ddeb5
5
5
  SHA512:
6
- metadata.gz: 808ed945e71259390786237fe1959c0309ab480eedef52813884647f69a1aae9c158806ba7064f0a52cab77abe33039d2e79736a174e56191ee0ce0797a3740f
7
- data.tar.gz: '096796e5cdb79433ea4d452adeab1d9df1ce5a7b835c167dae78cea9792e48728d9d539ab356b49d6573fc0b6e7c886ebeb30f3b92a8f5952a0c93a97b5e219e'
6
+ metadata.gz: 29cb0b23bdd70729ad5eb5098f7f02fdff2a6c506b20dde75b567233e79924855428d7b661aa977ea906558b8ec3fbaa5ba68d91c9c513dccc88b0200b81ee50
7
+ data.tar.gz: 81559432061090600d1466278188beeef2b4837f4a0710bd5b7c632f623e38ed73fb2036af0da4cdad655f1d2f949b860867574e160723eaa27f05ade49895da
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dlp_v2
2
2
 
3
+ ### v0.92.0 (2025-07-06)
4
+
5
+ * Regenerated from discovery document revision 20250629
6
+
7
+ ### v0.91.0 (2025-06-29)
8
+
9
+ * Regenerated from discovery document revision 20250615
10
+
3
11
  ### v0.90.0 (2025-06-15)
4
12
 
5
13
  * Regenerated from discovery document revision 20250608
@@ -4520,6 +4520,31 @@ module Google
4520
4520
  end
4521
4521
  end
4522
4522
 
4523
+ # A domain represents a thematic category that a data profile can fall under.
4524
+ class GooglePrivacyDlpV2Domain
4525
+ include Google::Apis::Core::Hashable
4526
+
4527
+ # A domain category that this profile is related to.
4528
+ # Corresponds to the JSON property `category`
4529
+ # @return [String]
4530
+ attr_accessor :category
4531
+
4532
+ # The collection of signals that influenced selection of the category.
4533
+ # Corresponds to the JSON property `signals`
4534
+ # @return [Array<String>]
4535
+ attr_accessor :signals
4536
+
4537
+ def initialize(**args)
4538
+ update!(**args)
4539
+ end
4540
+
4541
+ # Update properties of this object
4542
+ def update!(**args)
4543
+ @category = args[:category] if args.key?(:category)
4544
+ @signals = args[:signals] if args.key?(:signals)
4545
+ end
4546
+ end
4547
+
4523
4548
  # An entity in a dataset is a field or set of fields that correspond to a single
4524
4549
  # person. For example, in medical records the `EntityId` might be a patient
4525
4550
  # identifier, or for financial records it might be an account identifier. This
@@ -5025,6 +5050,11 @@ module Google
5025
5050
  # @return [Array<String>]
5026
5051
  attr_accessor :data_storage_locations
5027
5052
 
5053
+ # Domains associated with the profile.
5054
+ # Corresponds to the JSON property `domains`
5055
+ # @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Domain>]
5056
+ attr_accessor :domains
5057
+
5028
5058
  # FileClusterSummary per each cluster.
5029
5059
  # Corresponds to the JSON property `fileClusterSummaries`
5030
5060
  # @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FileClusterSummary>]
@@ -5159,6 +5189,7 @@ module Google
5159
5189
  @data_risk_level = args[:data_risk_level] if args.key?(:data_risk_level)
5160
5190
  @data_source_type = args[:data_source_type] if args.key?(:data_source_type)
5161
5191
  @data_storage_locations = args[:data_storage_locations] if args.key?(:data_storage_locations)
5192
+ @domains = args[:domains] if args.key?(:domains)
5162
5193
  @file_cluster_summaries = args[:file_cluster_summaries] if args.key?(:file_cluster_summaries)
5163
5194
  @file_store_info_type_summaries = args[:file_store_info_type_summaries] if args.key?(:file_store_info_type_summaries)
5164
5195
  @file_store_is_empty = args[:file_store_is_empty] if args.key?(:file_store_is_empty)
@@ -9325,6 +9356,27 @@ module Google
9325
9356
  end
9326
9357
  end
9327
9358
 
9359
+ # Collection of findings saved to a Cloud Storage bucket. This is used as the
9360
+ # proto schema for textproto files created when specifying a cloud storage path
9361
+ # to save Inspect findings.
9362
+ class GooglePrivacyDlpV2SaveToGcsFindingsOutput
9363
+ include Google::Apis::Core::Hashable
9364
+
9365
+ # List of findings.
9366
+ # Corresponds to the JSON property `findings`
9367
+ # @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Finding>]
9368
+ attr_accessor :findings
9369
+
9370
+ def initialize(**args)
9371
+ update!(**args)
9372
+ end
9373
+
9374
+ # Update properties of this object
9375
+ def update!(**args)
9376
+ @findings = args[:findings] if args.key?(:findings)
9377
+ end
9378
+ end
9379
+
9328
9380
  # Schedule for inspect job triggers.
9329
9381
  class GooglePrivacyDlpV2Schedule
9330
9382
  include Google::Apis::Core::Hashable
@@ -9917,6 +9969,11 @@ module Google
9917
9969
  # @return [String]
9918
9970
  attr_accessor :dataset_project_id
9919
9971
 
9972
+ # Domains associated with the profile.
9973
+ # Corresponds to the JSON property `domains`
9974
+ # @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Domain>]
9975
+ attr_accessor :domains
9976
+
9920
9977
  # How the table is encrypted.
9921
9978
  # Corresponds to the JSON property `encryptionStatus`
9922
9979
  # @return [String]
@@ -10013,7 +10070,8 @@ module Google
10013
10070
  # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2SensitivityScore]
10014
10071
  attr_accessor :sensitivity_score
10015
10072
 
10016
- # State of a profile.
10073
+ # State of a profile. This will always be set to DONE when the table data
10074
+ # profile is written to another service like BigQuery or Pub/Sub.
10017
10075
  # Corresponds to the JSON property `state`
10018
10076
  # @return [String]
10019
10077
  attr_accessor :state
@@ -10048,6 +10106,7 @@ module Google
10048
10106
  @dataset_id = args[:dataset_id] if args.key?(:dataset_id)
10049
10107
  @dataset_location = args[:dataset_location] if args.key?(:dataset_location)
10050
10108
  @dataset_project_id = args[:dataset_project_id] if args.key?(:dataset_project_id)
10109
+ @domains = args[:domains] if args.key?(:domains)
10051
10110
  @encryption_status = args[:encryption_status] if args.key?(:encryption_status)
10052
10111
  @expiration_time = args[:expiration_time] if args.key?(:expiration_time)
10053
10112
  @failed_column_count = args[:failed_column_count] if args.key?(:failed_column_count)
@@ -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.90.0"
19
+ GEM_VERSION = "0.92.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250608"
25
+ REVISION = "20250629"
26
26
  end
27
27
  end
28
28
  end
@@ -760,6 +760,12 @@ module Google
760
760
  include Google::Apis::Core::JsonObjectSupport
761
761
  end
762
762
 
763
+ class GooglePrivacyDlpV2Domain
764
+ class Representation < Google::Apis::Core::JsonRepresentation; end
765
+
766
+ include Google::Apis::Core::JsonObjectSupport
767
+ end
768
+
763
769
  class GooglePrivacyDlpV2EntityId
764
770
  class Representation < Google::Apis::Core::JsonRepresentation; end
765
771
 
@@ -1654,6 +1660,12 @@ module Google
1654
1660
  include Google::Apis::Core::JsonObjectSupport
1655
1661
  end
1656
1662
 
1663
+ class GooglePrivacyDlpV2SaveToGcsFindingsOutput
1664
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1665
+
1666
+ include Google::Apis::Core::JsonObjectSupport
1667
+ end
1668
+
1657
1669
  class GooglePrivacyDlpV2Schedule
1658
1670
  class Representation < Google::Apis::Core::JsonRepresentation; end
1659
1671
 
@@ -3336,6 +3348,14 @@ module Google
3336
3348
  end
3337
3349
  end
3338
3350
 
3351
+ class GooglePrivacyDlpV2Domain
3352
+ # @private
3353
+ class Representation < Google::Apis::Core::JsonRepresentation
3354
+ property :category, as: 'category'
3355
+ collection :signals, as: 'signals'
3356
+ end
3357
+ end
3358
+
3339
3359
  class GooglePrivacyDlpV2EntityId
3340
3360
  # @private
3341
3361
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3490,6 +3510,8 @@ module Google
3490
3510
  property :data_source_type, as: 'dataSourceType', class: Google::Apis::DlpV2::GooglePrivacyDlpV2DataSourceType, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2DataSourceType::Representation
3491
3511
 
3492
3512
  collection :data_storage_locations, as: 'dataStorageLocations'
3513
+ collection :domains, as: 'domains', class: Google::Apis::DlpV2::GooglePrivacyDlpV2Domain, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2Domain::Representation
3514
+
3493
3515
  collection :file_cluster_summaries, as: 'fileClusterSummaries', class: Google::Apis::DlpV2::GooglePrivacyDlpV2FileClusterSummary, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2FileClusterSummary::Representation
3494
3516
 
3495
3517
  collection :file_store_info_type_summaries, as: 'fileStoreInfoTypeSummaries', class: Google::Apis::DlpV2::GooglePrivacyDlpV2FileStoreInfoTypeSummary, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2FileStoreInfoTypeSummary::Representation
@@ -4831,6 +4853,14 @@ module Google
4831
4853
  end
4832
4854
  end
4833
4855
 
4856
+ class GooglePrivacyDlpV2SaveToGcsFindingsOutput
4857
+ # @private
4858
+ class Representation < Google::Apis::Core::JsonRepresentation
4859
+ collection :findings, as: 'findings', class: Google::Apis::DlpV2::GooglePrivacyDlpV2Finding, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2Finding::Representation
4860
+
4861
+ end
4862
+ end
4863
+
4834
4864
  class GooglePrivacyDlpV2Schedule
4835
4865
  # @private
4836
4866
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5012,6 +5042,8 @@ module Google
5012
5042
  property :dataset_id, as: 'datasetId'
5013
5043
  property :dataset_location, as: 'datasetLocation'
5014
5044
  property :dataset_project_id, as: 'datasetProjectId'
5045
+ collection :domains, as: 'domains', class: Google::Apis::DlpV2::GooglePrivacyDlpV2Domain, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2Domain::Representation
5046
+
5015
5047
  property :encryption_status, as: 'encryptionStatus'
5016
5048
  property :expiration_time, as: 'expirationTime'
5017
5049
  property :failed_column_count, :numeric_string => true, as: 'failedColumnCount'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dlp_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.90.0
4
+ version: 0.92.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dlp_v2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-dlp_v2/v0.90.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dlp_v2/v0.92.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dlp_v2
62
62
  rdoc_options: []
63
63
  require_paths: