google-apis-dlp_v2 0.101.0 → 0.103.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cda116b55e60c0a1996cca2b3e8fb5d5a587fe228ded8df71614641d416ace25
|
|
4
|
+
data.tar.gz: 8c456d0e7d99b4b8f96c1622b7fca06848d45511428df765ff47e3a6948e543a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e49338bf839a52eb61c8747ba5f33ec5aa2e69e30f1ffead085b90b71694898b0f4ffdfa66e6b5967fb790bc78a87b31903a610daef0edd152d9db37bc1dcc1e
|
|
7
|
+
data.tar.gz: 6e335575ec91ac4502a04d55ee3c2131311575c440817408f76e0279bee04f0eda70128b704428e6a985090e3b622b49880a823ba0ad5f668101ddad38272060
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-dlp_v2
|
|
2
2
|
|
|
3
|
+
### v0.103.0 (2026-01-11)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260105
|
|
6
|
+
|
|
7
|
+
### v0.102.0 (2025-11-23)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251120
|
|
10
|
+
|
|
3
11
|
### v0.101.0 (2025-10-26)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251019
|
|
@@ -2847,7 +2847,7 @@ module Google
|
|
|
2847
2847
|
class GooglePrivacyDlpV2DataSourceType
|
|
2848
2848
|
include Google::Apis::Core::Hashable
|
|
2849
2849
|
|
|
2850
|
-
#
|
|
2850
|
+
# A string that identifies the type of resource being profiled. Current values: *
|
|
2851
2851
|
# google/bigquery/table * google/project * google/sql/table * google/gcs/bucket
|
|
2852
2852
|
# Corresponds to the JSON property `dataSource`
|
|
2853
2853
|
# @return [String]
|
|
@@ -4383,7 +4383,7 @@ module Google
|
|
|
4383
4383
|
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2AllOtherResources]
|
|
4384
4384
|
attr_accessor :others
|
|
4385
4385
|
|
|
4386
|
-
# Identifies a single Vertex AI resource.
|
|
4386
|
+
# Identifies a single Vertex AI resource. Only datasets are supported.
|
|
4387
4387
|
# Corresponds to the JSON property `vertexDatasetResourceReference`
|
|
4388
4388
|
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2VertexDatasetResourceReference]
|
|
4389
4389
|
attr_accessor :vertex_dataset_resource_reference
|
|
@@ -6026,6 +6026,11 @@ module Google
|
|
|
6026
6026
|
# @return [String]
|
|
6027
6027
|
attr_accessor :example
|
|
6028
6028
|
|
|
6029
|
+
# The launch status of the infoType.
|
|
6030
|
+
# Corresponds to the JSON property `launchStatus`
|
|
6031
|
+
# @return [String]
|
|
6032
|
+
attr_accessor :launch_status
|
|
6033
|
+
|
|
6029
6034
|
# Locations at which a feature can be used.
|
|
6030
6035
|
# Corresponds to the JSON property `locationSupport`
|
|
6031
6036
|
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2LocationSupport]
|
|
@@ -6071,6 +6076,7 @@ module Google
|
|
|
6071
6076
|
@description = args[:description] if args.key?(:description)
|
|
6072
6077
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
6073
6078
|
@example = args[:example] if args.key?(:example)
|
|
6079
|
+
@launch_status = args[:launch_status] if args.key?(:launch_status)
|
|
6074
6080
|
@location_support = args[:location_support] if args.key?(:location_support)
|
|
6075
6081
|
@name = args[:name] if args.key?(:name)
|
|
6076
6082
|
@sensitivity_score = args[:sensitivity_score] if args.key?(:sensitivity_score)
|
|
@@ -11488,7 +11494,7 @@ module Google
|
|
|
11488
11494
|
end
|
|
11489
11495
|
end
|
|
11490
11496
|
|
|
11491
|
-
# Identifies a single Vertex AI resource.
|
|
11497
|
+
# Identifies a single Vertex AI resource. Only datasets are supported.
|
|
11492
11498
|
class GooglePrivacyDlpV2VertexDatasetResourceReference
|
|
11493
11499
|
include Google::Apis::Core::Hashable
|
|
11494
11500
|
|
|
@@ -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.103.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 = "20260105"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -3834,6 +3834,7 @@ module Google
|
|
|
3834
3834
|
property :description, as: 'description'
|
|
3835
3835
|
property :display_name, as: 'displayName'
|
|
3836
3836
|
property :example, as: 'example'
|
|
3837
|
+
property :launch_status, as: 'launchStatus'
|
|
3837
3838
|
property :location_support, as: 'locationSupport', class: Google::Apis::DlpV2::GooglePrivacyDlpV2LocationSupport, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2LocationSupport::Representation
|
|
3838
3839
|
|
|
3839
3840
|
property :name, as: 'name'
|
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.103.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.103.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:
|