google-apis-dlp_v2 0.95.0 → 0.97.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 +47 -13
- data/lib/google/apis/dlp_v2/gem_version.rb +2 -2
- data/lib/google/apis/dlp_v2/representations.rb +16 -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: 3df609d43352f3dc6daef057ce093f5f74a017a8f84dffd619f68ec54ab2615f
|
4
|
+
data.tar.gz: 883444329d28ca59de967c7128a746a62a0f9ee9b9f6e5a09916ede7e3dec8b2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55fef28c47d8bb3b9e8584ed44695d27048a5c49d591a35089a956b77c9e315d164cd64f00dbfbb701a0e744790c826f1c90888dd4b63598ae81acf5cd81a818
|
7
|
+
data.tar.gz: aa27ff6b1f8ed8abb030def8c22f770ffa0f4ef132fef145bbe6e504df5830fc232c2bd44bb2009d1f8b9c45c60d05d4f6ad4732942ec1dcf1c6f0c61143a82d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dlp_v2
|
2
2
|
|
3
|
+
### v0.97.0 (2025-08-31)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250824
|
6
|
+
|
7
|
+
### v0.96.0 (2025-08-24)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250817
|
10
|
+
|
3
11
|
### v0.95.0 (2025-08-17)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250810
|
@@ -2427,9 +2427,9 @@ module Google
|
|
2427
2427
|
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2PublishToChronicle]
|
2428
2428
|
attr_accessor :publish_to_chronicle
|
2429
2429
|
|
2430
|
-
# Create Dataplex Catalog aspects for profiled resources with the
|
2431
|
-
# Sensitive Data Protection Profile. To learn more about aspects,
|
2432
|
-
# cloud.google.com/sensitive-data-protection/docs/add-aspects.
|
2430
|
+
# Create Dataplex Universal Catalog aspects for profiled resources with the
|
2431
|
+
# aspect type Sensitive Data Protection Profile. To learn more about aspects,
|
2432
|
+
# see https://cloud.google.com/sensitive-data-protection/docs/add-aspects.
|
2433
2433
|
# Corresponds to the JSON property `publishToDataplexCatalog`
|
2434
2434
|
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2PublishToDataplexCatalog]
|
2435
2435
|
attr_accessor :publish_to_dataplex_catalog
|
@@ -6007,6 +6007,11 @@ module Google
|
|
6007
6007
|
# @return [String]
|
6008
6008
|
attr_accessor :example
|
6009
6009
|
|
6010
|
+
# Locations at which a feature can be used.
|
6011
|
+
# Corresponds to the JSON property `locationSupport`
|
6012
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2LocationSupport]
|
6013
|
+
attr_accessor :location_support
|
6014
|
+
|
6010
6015
|
# Internal name of the infoType.
|
6011
6016
|
# Corresponds to the JSON property `name`
|
6012
6017
|
# @return [String]
|
@@ -6047,6 +6052,7 @@ module Google
|
|
6047
6052
|
@description = args[:description] if args.key?(:description)
|
6048
6053
|
@display_name = args[:display_name] if args.key?(:display_name)
|
6049
6054
|
@example = args[:example] if args.key?(:example)
|
6055
|
+
@location_support = args[:location_support] if args.key?(:location_support)
|
6050
6056
|
@name = args[:name] if args.key?(:name)
|
6051
6057
|
@sensitivity_score = args[:sensitivity_score] if args.key?(:sensitivity_score)
|
6052
6058
|
@specific_info_types = args[:specific_info_types] if args.key?(:specific_info_types)
|
@@ -7585,6 +7591,32 @@ module Google
|
|
7585
7591
|
end
|
7586
7592
|
end
|
7587
7593
|
|
7594
|
+
# Locations at which a feature can be used.
|
7595
|
+
class GooglePrivacyDlpV2LocationSupport
|
7596
|
+
include Google::Apis::Core::Hashable
|
7597
|
+
|
7598
|
+
# Specific locations where the feature may be used. Examples: us-central1, us,
|
7599
|
+
# asia, global If scope is ANY_LOCATION, no regions will be listed.
|
7600
|
+
# Corresponds to the JSON property `locations`
|
7601
|
+
# @return [Array<String>]
|
7602
|
+
attr_accessor :locations
|
7603
|
+
|
7604
|
+
# The current scope for location on this feature. This may expand over time.
|
7605
|
+
# Corresponds to the JSON property `regionalizationScope`
|
7606
|
+
# @return [String]
|
7607
|
+
attr_accessor :regionalization_scope
|
7608
|
+
|
7609
|
+
def initialize(**args)
|
7610
|
+
update!(**args)
|
7611
|
+
end
|
7612
|
+
|
7613
|
+
# Update properties of this object
|
7614
|
+
def update!(**args)
|
7615
|
+
@locations = args[:locations] if args.key?(:locations)
|
7616
|
+
@regionalization_scope = args[:regionalization_scope] if args.key?(:regionalization_scope)
|
7617
|
+
end
|
7618
|
+
end
|
7619
|
+
|
7588
7620
|
# Job trigger option for hybrid jobs. Jobs must be manually created and finished.
|
7589
7621
|
class GooglePrivacyDlpV2Manual
|
7590
7622
|
include Google::Apis::Core::Hashable
|
@@ -8524,17 +8556,17 @@ module Google
|
|
8524
8556
|
end
|
8525
8557
|
end
|
8526
8558
|
|
8527
|
-
# Create Dataplex Catalog aspects for profiled resources with the
|
8528
|
-
# Sensitive Data Protection Profile. To learn more about aspects,
|
8529
|
-
# cloud.google.com/sensitive-data-protection/docs/add-aspects.
|
8559
|
+
# Create Dataplex Universal Catalog aspects for profiled resources with the
|
8560
|
+
# aspect type Sensitive Data Protection Profile. To learn more about aspects,
|
8561
|
+
# see https://cloud.google.com/sensitive-data-protection/docs/add-aspects.
|
8530
8562
|
class GooglePrivacyDlpV2PublishToDataplexCatalog
|
8531
8563
|
include Google::Apis::Core::Hashable
|
8532
8564
|
|
8533
|
-
# Whether creating a Dataplex Catalog aspect for a profiled resource
|
8534
|
-
# lower the risk of the profile for that resource. This also lowers the
|
8535
|
-
# risk of resources at the lower levels of the resource hierarchy. For
|
8536
|
-
# reducing the data risk of a table data profile also reduces the data
|
8537
|
-
# the constituent column data profiles.
|
8565
|
+
# Whether creating a Dataplex Universal Catalog aspect for a profiled resource
|
8566
|
+
# should lower the risk of the profile for that resource. This also lowers the
|
8567
|
+
# data risk of resources at the lower levels of the resource hierarchy. For
|
8568
|
+
# example, reducing the data risk of a table data profile also reduces the data
|
8569
|
+
# risk of the constituent column data profiles.
|
8538
8570
|
# Corresponds to the JSON property `lowerDataRiskToLow`
|
8539
8571
|
# @return [Boolean]
|
8540
8572
|
attr_accessor :lower_data_risk_to_low
|
@@ -10258,7 +10290,8 @@ module Google
|
|
10258
10290
|
|
10259
10291
|
# The namespaced name for the tag value to attach to Google Cloud resources.
|
10260
10292
|
# Must be in the format ``parent_id`/`tag_key_short_name`/`short_name``, for
|
10261
|
-
# example, "123456/environment/prod"
|
10293
|
+
# example, "123456/environment/prod" for an organization parent, or "my-project/
|
10294
|
+
# environment/prod" for a project parent. This is only set for Google Cloud
|
10262
10295
|
# resources.
|
10263
10296
|
# Corresponds to the JSON property `namespacedTagValue`
|
10264
10297
|
# @return [String]
|
@@ -10362,7 +10395,8 @@ module Google
|
|
10362
10395
|
|
10363
10396
|
# The namespaced name for the tag value to attach to resources. Must be in the
|
10364
10397
|
# format ``parent_id`/`tag_key_short_name`/`short_name``, for example, "123456/
|
10365
|
-
# environment/prod"
|
10398
|
+
# environment/prod" for an organization parent, or "my-project/environment/prod"
|
10399
|
+
# for a project parent.
|
10366
10400
|
# Corresponds to the JSON property `namespacedValue`
|
10367
10401
|
# @return [String]
|
10368
10402
|
attr_accessor :namespaced_value
|
@@ -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.97.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 = "
|
25
|
+
REVISION = "20250824"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1300,6 +1300,12 @@ module Google
|
|
1300
1300
|
include Google::Apis::Core::JsonObjectSupport
|
1301
1301
|
end
|
1302
1302
|
|
1303
|
+
class GooglePrivacyDlpV2LocationSupport
|
1304
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1305
|
+
|
1306
|
+
include Google::Apis::Core::JsonObjectSupport
|
1307
|
+
end
|
1308
|
+
|
1303
1309
|
class GooglePrivacyDlpV2Manual
|
1304
1310
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1305
1311
|
|
@@ -3806,6 +3812,8 @@ module Google
|
|
3806
3812
|
property :description, as: 'description'
|
3807
3813
|
property :display_name, as: 'displayName'
|
3808
3814
|
property :example, as: 'example'
|
3815
|
+
property :location_support, as: 'locationSupport', class: Google::Apis::DlpV2::GooglePrivacyDlpV2LocationSupport, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2LocationSupport::Representation
|
3816
|
+
|
3809
3817
|
property :name, as: 'name'
|
3810
3818
|
property :sensitivity_score, as: 'sensitivityScore', class: Google::Apis::DlpV2::GooglePrivacyDlpV2SensitivityScore, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2SensitivityScore::Representation
|
3811
3819
|
|
@@ -4300,6 +4308,14 @@ module Google
|
|
4300
4308
|
end
|
4301
4309
|
end
|
4302
4310
|
|
4311
|
+
class GooglePrivacyDlpV2LocationSupport
|
4312
|
+
# @private
|
4313
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4314
|
+
collection :locations, as: 'locations'
|
4315
|
+
property :regionalization_scope, as: 'regionalizationScope'
|
4316
|
+
end
|
4317
|
+
end
|
4318
|
+
|
4303
4319
|
class GooglePrivacyDlpV2Manual
|
4304
4320
|
# @private
|
4305
4321
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.
|
4
|
+
version: 0.97.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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dlp_v2/v0.97.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:
|