google-apis-dlp_v2 0.97.0 → 0.98.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: 3df609d43352f3dc6daef057ce093f5f74a017a8f84dffd619f68ec54ab2615f
4
- data.tar.gz: 883444329d28ca59de967c7128a746a62a0f9ee9b9f6e5a09916ede7e3dec8b2
3
+ metadata.gz: 8dd9679b785729ad0137bb2ba1c466e94e88d1e051e04c3fedbb00e2151776ea
4
+ data.tar.gz: 5321432b3346fdcb6b3287822db89e3f5177b49160b3854628c9f69ce1cc133a
5
5
  SHA512:
6
- metadata.gz: 55fef28c47d8bb3b9e8584ed44695d27048a5c49d591a35089a956b77c9e315d164cd64f00dbfbb701a0e744790c826f1c90888dd4b63598ae81acf5cd81a818
7
- data.tar.gz: aa27ff6b1f8ed8abb030def8c22f770ffa0f4ef132fef145bbe6e504df5830fc232c2bd44bb2009d1f8b9c45c60d05d4f6ad4732942ec1dcf1c6f0c61143a82d
6
+ metadata.gz: e299cffb341dcd4bd700ff1344262cfba3a6d17163c4a385a0003ad825fd14e03c055a0707db6cefd9b272b154b199f5f568631689c729473d393628884963b4
7
+ data.tar.gz: 17bf57dd6145d3e3230b94ba37c3ebeadf5bfa101964a35866f6eeb12dbab83b74d27df553e0c65083c318d2086863a4e98e5d29bf274efca26866c210ea557d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dlp_v2
2
2
 
3
+ ### v0.98.0 (2025-09-21)
4
+
5
+ * Regenerated from discovery document revision 20250914
6
+
3
7
  ### v0.97.0 (2025-08-31)
4
8
 
5
9
  * Regenerated from discovery document revision 20250824
@@ -5033,6 +5033,11 @@ module Google
5033
5033
  # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FileStoreRegexes]
5034
5034
  attr_accessor :include_regexes
5035
5035
 
5036
+ # Tags to match against for filtering.
5037
+ # Corresponds to the JSON property `includeTags`
5038
+ # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2TagFilters]
5039
+ attr_accessor :include_tags
5040
+
5036
5041
  def initialize(**args)
5037
5042
  update!(**args)
5038
5043
  end
@@ -5040,6 +5045,7 @@ module Google
5040
5045
  # Update properties of this object
5041
5046
  def update!(**args)
5042
5047
  @include_regexes = args[:include_regexes] if args.key?(:include_regexes)
5048
+ @include_tags = args[:include_tags] if args.key?(:include_tags)
5043
5049
  end
5044
5050
  end
5045
5051
 
@@ -7985,6 +7991,11 @@ module Google
7985
7991
  # @return [String]
7986
7992
  attr_accessor :output_schema
7987
7993
 
7994
+ # Message representing a single file or path in Cloud Storage.
7995
+ # Corresponds to the JSON property `storagePath`
7996
+ # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CloudStoragePath]
7997
+ attr_accessor :storage_path
7998
+
7988
7999
  # Message defining the location of a BigQuery table. A table is uniquely
7989
8000
  # identified by its project_id, dataset_id, and table_name. Within a query a
7990
8001
  # table is often referenced with a string in the format of: `:.` or `..`.
@@ -7999,6 +8010,7 @@ module Google
7999
8010
  # Update properties of this object
8000
8011
  def update!(**args)
8001
8012
  @output_schema = args[:output_schema] if args.key?(:output_schema)
8013
+ @storage_path = args[:storage_path] if args.key?(:storage_path)
8002
8014
  @table = args[:table] if args.key?(:table)
8003
8015
  end
8004
8016
  end
@@ -10342,6 +10354,55 @@ module Google
10342
10354
  end
10343
10355
  end
10344
10356
 
10357
+ # A single tag to filter against.
10358
+ class GooglePrivacyDlpV2TagFilter
10359
+ include Google::Apis::Core::Hashable
10360
+
10361
+ # The namespaced name for the tag key. Must be in the format ``parent_id`/`
10362
+ # tag_key_short_name``, for example, "123456/sensitive" for an organization
10363
+ # parent, or "my-project/sensitive" for a project parent.
10364
+ # Corresponds to the JSON property `namespacedTagKey`
10365
+ # @return [String]
10366
+ attr_accessor :namespaced_tag_key
10367
+
10368
+ # The namespaced name for the tag value. Must be in the format ``parent_id`/`
10369
+ # tag_key_short_name`/`short_name``, for example, "123456/environment/prod" for
10370
+ # an organization parent, or "my-project/environment/prod" for a project parent.
10371
+ # Corresponds to the JSON property `namespacedTagValue`
10372
+ # @return [String]
10373
+ attr_accessor :namespaced_tag_value
10374
+
10375
+ def initialize(**args)
10376
+ update!(**args)
10377
+ end
10378
+
10379
+ # Update properties of this object
10380
+ def update!(**args)
10381
+ @namespaced_tag_key = args[:namespaced_tag_key] if args.key?(:namespaced_tag_key)
10382
+ @namespaced_tag_value = args[:namespaced_tag_value] if args.key?(:namespaced_tag_value)
10383
+ end
10384
+ end
10385
+
10386
+ # Tags to match against for filtering.
10387
+ class GooglePrivacyDlpV2TagFilters
10388
+ include Google::Apis::Core::Hashable
10389
+
10390
+ # Required. A resource must match ALL of the specified tag filters to be
10391
+ # included in the collection.
10392
+ # Corresponds to the JSON property `tagFilters`
10393
+ # @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2TagFilter>]
10394
+ attr_accessor :tag_filters
10395
+
10396
+ def initialize(**args)
10397
+ update!(**args)
10398
+ end
10399
+
10400
+ # Update properties of this object
10401
+ def update!(**args)
10402
+ @tag_filters = args[:tag_filters] if args.key?(:tag_filters)
10403
+ end
10404
+ end
10405
+
10345
10406
  # If set, attaches the [tags] (https://cloud.google.com/resource-manager/docs/
10346
10407
  # tags/tags-overview) provided to profiled resources. Tags support [access
10347
10408
  # control](https://cloud.google.com/iam/docs/tags-access-control). You can
@@ -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.97.0"
19
+ GEM_VERSION = "0.98.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 = "20250824"
25
+ REVISION = "20250914"
26
26
  end
27
27
  end
28
28
  end
@@ -1822,6 +1822,18 @@ module Google
1822
1822
  include Google::Apis::Core::JsonObjectSupport
1823
1823
  end
1824
1824
 
1825
+ class GooglePrivacyDlpV2TagFilter
1826
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1827
+
1828
+ include Google::Apis::Core::JsonObjectSupport
1829
+ end
1830
+
1831
+ class GooglePrivacyDlpV2TagFilters
1832
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1833
+
1834
+ include Google::Apis::Core::JsonObjectSupport
1835
+ end
1836
+
1825
1837
  class GooglePrivacyDlpV2TagResources
1826
1838
  class Representation < Google::Apis::Core::JsonRepresentation; end
1827
1839
 
@@ -3530,6 +3542,8 @@ module Google
3530
3542
  class Representation < Google::Apis::Core::JsonRepresentation
3531
3543
  property :include_regexes, as: 'includeRegexes', class: Google::Apis::DlpV2::GooglePrivacyDlpV2FileStoreRegexes, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2FileStoreRegexes::Representation
3532
3544
 
3545
+ property :include_tags, as: 'includeTags', class: Google::Apis::DlpV2::GooglePrivacyDlpV2TagFilters, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2TagFilters::Representation
3546
+
3533
3547
  end
3534
3548
  end
3535
3549
 
@@ -4444,6 +4458,8 @@ module Google
4444
4458
  # @private
4445
4459
  class Representation < Google::Apis::Core::JsonRepresentation
4446
4460
  property :output_schema, as: 'outputSchema'
4461
+ property :storage_path, as: 'storagePath', class: Google::Apis::DlpV2::GooglePrivacyDlpV2CloudStoragePath, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2CloudStoragePath::Representation
4462
+
4447
4463
  property :table, as: 'table', class: Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2BigQueryTable::Representation
4448
4464
 
4449
4465
  end
@@ -5165,6 +5181,22 @@ module Google
5165
5181
  end
5166
5182
  end
5167
5183
 
5184
+ class GooglePrivacyDlpV2TagFilter
5185
+ # @private
5186
+ class Representation < Google::Apis::Core::JsonRepresentation
5187
+ property :namespaced_tag_key, as: 'namespacedTagKey'
5188
+ property :namespaced_tag_value, as: 'namespacedTagValue'
5189
+ end
5190
+ end
5191
+
5192
+ class GooglePrivacyDlpV2TagFilters
5193
+ # @private
5194
+ class Representation < Google::Apis::Core::JsonRepresentation
5195
+ collection :tag_filters, as: 'tagFilters', class: Google::Apis::DlpV2::GooglePrivacyDlpV2TagFilter, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2TagFilter::Representation
5196
+
5197
+ end
5198
+ end
5199
+
5168
5200
  class GooglePrivacyDlpV2TagResources
5169
5201
  # @private
5170
5202
  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.97.0
4
+ version: 0.98.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.97.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dlp_v2/v0.98.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: