google-apis-dlp_v2 0.72.0 → 0.74.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9f948953fe659a269ecf29cee90165101dbe2e327838f63a622a65d40e471d49
4
- data.tar.gz: f15f90757664770d6b58738cccb30b04079b41e3c55f4bccc3a3b8aa43bbb9cc
3
+ metadata.gz: 58946e8eb7924848dc61d3a686164f8f966aae01b3ae9cb3897e569822008459
4
+ data.tar.gz: 1eb05f959abf8e25dee9f302d0b89fc928681a3f809c8f6c5e3a0e51d8cde2de
5
5
  SHA512:
6
- metadata.gz: 952195f646a540430d85875029792f1264a30810370f05948ff12b1ff8aca9fabf72083c8bfb966ddf052190f9e6bc63705febeebee9a6399df1079f944a081d
7
- data.tar.gz: 025c0b5ac58b28db7f3c0e53024339d2fa72de2c571d2e0bc1a53fbdd133bee473c85553e6ca52ee9eae31ddf1fa12dadfe4ce7754d9846a6b31bf0d5904822c
6
+ metadata.gz: c6dd95276a0d26697374f797839a8b216f4141a6584ceeb9e3f440fb97a1eefcdee8abe68e3130daa7e7637fffaedfdfeab1ba30dc4f5701511048f1876fbf64
7
+ data.tar.gz: 5da10ea261327535c39d3d972bfa83f7ffc457cf0db6ddf74ad3331990f65f6246cd6c2f2d9a5c5acaf561748fded6ac3bd628be4d6ce8534d5eebe99b35dff3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dlp_v2
2
2
 
3
+ ### v0.74.0 (2024-09-01)
4
+
5
+ * Regenerated from discovery document revision 20240825
6
+
7
+ ### v0.73.0 (2024-08-25)
8
+
9
+ * Regenerated from discovery document revision 20240818
10
+
3
11
  ### v0.72.0 (2024-08-18)
4
12
 
5
13
  * Regenerated from discovery document revision 20240808
@@ -2541,7 +2541,8 @@ module Google
2541
2541
  include Google::Apis::Core::Hashable
2542
2542
 
2543
2543
  # Output only. An identifying string to the type of resource being profiled.
2544
- # Current values: google/bigquery/table, google/project
2544
+ # Current values: * google/bigquery/table * google/project * google/sql/table *
2545
+ # google/gcs/bucket
2545
2546
  # Corresponds to the JSON property `dataSource`
2546
2547
  # @return [String]
2547
2548
  attr_accessor :data_source
@@ -7475,7 +7476,7 @@ module Google
7475
7476
  # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ProfileStatus]
7476
7477
  attr_accessor :profile_status
7477
7478
 
7478
- # Project ID that was profiled.
7479
+ # Project ID or account that was profiled.
7479
7480
  # Corresponds to the JSON property `projectId`
7480
7481
  # @return [String]
7481
7482
  attr_accessor :project_id
@@ -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.72.0"
19
+ GEM_VERSION = "0.74.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 = "20240808"
25
+ REVISION = "20240825"
26
26
  end
27
27
  end
28
28
  end
@@ -1422,14 +1422,16 @@ module Google
1422
1422
  # logical operators. A sequence of restrictions implicitly uses `AND`. * A
1423
1423
  # restriction has the form of ``field` `operator` `value``. * Supported fields/
1424
1424
  # values: - `project_id` - The Google Cloud project ID. - `file_store_path` -
1425
- # The path like "gs://bucket". - `sensitivity_level` - HIGH|MODERATE|LOW - `
1426
- # data_risk_level` - HIGH|MODERATE|LOW - `resource_visibility`: PUBLIC|
1427
- # RESTRICTED - `status_code` - an RPC status code as defined in https://github.
1428
- # com/googleapis/googleapis/blob/master/google/rpc/code.proto * The operator
1429
- # must be `=` or `!=`. Examples: * `project_id = 12345 AND status_code = 1` * `
1430
- # project_id = 12345 AND sensitivity_level = HIGH` * `project_id = 12345 AND
1431
- # resource_visibility = PUBLIC` * `file_store_path = "gs://mybucket"` The length
1432
- # of this field should be no more than 500 characters.
1425
+ # The path like "gs://bucket". - `data_source_type` - The profile's data source
1426
+ # type, like "google/storage/bucket". - `data_storage_location` - The location
1427
+ # where the file store's data is stored, like "us-central1". - `
1428
+ # sensitivity_level` - HIGH|MODERATE|LOW - `data_risk_level` - HIGH|MODERATE|LOW
1429
+ # - `resource_visibility`: PUBLIC|RESTRICTED - `status_code` - an RPC status
1430
+ # code as defined in https://github.com/googleapis/googleapis/blob/master/google/
1431
+ # rpc/code.proto * The operator must be `=` or `!=`. Examples: * `project_id =
1432
+ # 12345 AND status_code = 1` * `project_id = 12345 AND sensitivity_level = HIGH`
1433
+ # * `project_id = 12345 AND resource_visibility = PUBLIC` * `file_store_path = "
1434
+ # gs://mybucket"` The length of this field should be no more than 500 characters.
1433
1435
  # @param [String] order_by
1434
1436
  # Optional. Comma-separated list of fields to order by, followed by `asc` or `
1435
1437
  # desc` postfix. This list is case insensitive. The default sorting order is
@@ -4837,14 +4839,16 @@ module Google
4837
4839
  # logical operators. A sequence of restrictions implicitly uses `AND`. * A
4838
4840
  # restriction has the form of ``field` `operator` `value``. * Supported fields/
4839
4841
  # values: - `project_id` - The Google Cloud project ID. - `file_store_path` -
4840
- # The path like "gs://bucket". - `sensitivity_level` - HIGH|MODERATE|LOW - `
4841
- # data_risk_level` - HIGH|MODERATE|LOW - `resource_visibility`: PUBLIC|
4842
- # RESTRICTED - `status_code` - an RPC status code as defined in https://github.
4843
- # com/googleapis/googleapis/blob/master/google/rpc/code.proto * The operator
4844
- # must be `=` or `!=`. Examples: * `project_id = 12345 AND status_code = 1` * `
4845
- # project_id = 12345 AND sensitivity_level = HIGH` * `project_id = 12345 AND
4846
- # resource_visibility = PUBLIC` * `file_store_path = "gs://mybucket"` The length
4847
- # of this field should be no more than 500 characters.
4842
+ # The path like "gs://bucket". - `data_source_type` - The profile's data source
4843
+ # type, like "google/storage/bucket". - `data_storage_location` - The location
4844
+ # where the file store's data is stored, like "us-central1". - `
4845
+ # sensitivity_level` - HIGH|MODERATE|LOW - `data_risk_level` - HIGH|MODERATE|LOW
4846
+ # - `resource_visibility`: PUBLIC|RESTRICTED - `status_code` - an RPC status
4847
+ # code as defined in https://github.com/googleapis/googleapis/blob/master/google/
4848
+ # rpc/code.proto * The operator must be `=` or `!=`. Examples: * `project_id =
4849
+ # 12345 AND status_code = 1` * `project_id = 12345 AND sensitivity_level = HIGH`
4850
+ # * `project_id = 12345 AND resource_visibility = PUBLIC` * `file_store_path = "
4851
+ # gs://mybucket"` The length of this field should be no more than 500 characters.
4848
4852
  # @param [String] order_by
4849
4853
  # Optional. Comma-separated list of fields to order by, followed by `asc` or `
4850
4854
  # desc` postfix. This list is case insensitive. The default sorting order is
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.72.0
4
+ version: 0.74.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-08-18 00:00:00.000000000 Z
11
+ date: 2024-09-01 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.72.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dlp_v2/v0.74.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: []