google-apis-dlp_v2 0.71.0 → 0.72.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/dlp_v2/classes.rb +118 -4
- data/lib/google/apis/dlp_v2/gem_version.rb +2 -2
- data/lib/google/apis/dlp_v2/representations.rb +49 -0
- data/lib/google/apis/dlp_v2/service.rb +200 -200
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f948953fe659a269ecf29cee90165101dbe2e327838f63a622a65d40e471d49
|
4
|
+
data.tar.gz: f15f90757664770d6b58738cccb30b04079b41e3c55f4bccc3a3b8aa43bbb9cc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 952195f646a540430d85875029792f1264a30810370f05948ff12b1ff8aca9fabf72083c8bfb966ddf052190f9e6bc63705febeebee9a6399df1079f944a081d
|
7
|
+
data.tar.gz: 025c0b5ac58b28db7f3c0e53024339d2fa72de2c571d2e0bc1a53fbdd133bee473c85553e6ca52ee9eae31ddf1fa12dadfe4ce7754d9846a6b31bf0d5904822c
|
data/CHANGELOG.md
CHANGED
@@ -2135,9 +2135,9 @@ module Google
|
|
2135
2135
|
# mode natively supports. This happens before/after encryption/decryption. Each
|
2136
2136
|
# character listed must appear only once. Number of characters must be in the
|
2137
2137
|
# range [2, 95]. This must be encoded as ASCII. The order of characters does not
|
2138
|
-
# matter. The full list of allowed characters is:
|
2139
|
-
# 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz
|
2140
|
-
#
|
2138
|
+
# matter. The full list of allowed characters is: ``
|
2139
|
+
# 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz~`!@#$%^&*()_-+=`
|
2140
|
+
# [`]|\:;"'<,>.?/``
|
2141
2141
|
# Corresponds to the JSON property `customAlphabet`
|
2142
2142
|
# @return [String]
|
2143
2143
|
attr_accessor :custom_alphabet
|
@@ -2282,6 +2282,15 @@ module Google
|
|
2282
2282
|
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2PubSubNotification]
|
2283
2283
|
attr_accessor :pub_sub_notification
|
2284
2284
|
|
2285
|
+
# If set, attaches the [tags] (https://cloud.google.com/resource-manager/docs/
|
2286
|
+
# tags/tags-overview) provided to profiled resources. Tags support [access
|
2287
|
+
# control](https://cloud.google.com/iam/docs/tags-access-control). You can
|
2288
|
+
# conditionally grant or deny access to a resource based on whether the resource
|
2289
|
+
# has a specific tag.
|
2290
|
+
# Corresponds to the JSON property `tagResources`
|
2291
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2TagResources]
|
2292
|
+
attr_accessor :tag_resources
|
2293
|
+
|
2285
2294
|
def initialize(**args)
|
2286
2295
|
update!(**args)
|
2287
2296
|
end
|
@@ -2290,6 +2299,7 @@ module Google
|
|
2290
2299
|
def update!(**args)
|
2291
2300
|
@export_data = args[:export_data] if args.key?(:export_data)
|
2292
2301
|
@pub_sub_notification = args[:pub_sub_notification] if args.key?(:pub_sub_notification)
|
2302
|
+
@tag_resources = args[:tag_resources] if args.key?(:tag_resources)
|
2293
2303
|
end
|
2294
2304
|
end
|
2295
2305
|
|
@@ -3471,6 +3481,12 @@ module Google
|
|
3471
3481
|
class GooglePrivacyDlpV2DiscoveryCloudSqlGenerationCadence
|
3472
3482
|
include Google::Apis::Core::Hashable
|
3473
3483
|
|
3484
|
+
# The cadence at which to update data profiles when the inspection rules defined
|
3485
|
+
# by the `InspectTemplate` change.
|
3486
|
+
# Corresponds to the JSON property `inspectTemplateModifiedCadence`
|
3487
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryInspectTemplateModifiedCadence]
|
3488
|
+
attr_accessor :inspect_template_modified_cadence
|
3489
|
+
|
3474
3490
|
# Data changes (non-schema changes) in Cloud SQL tables can't trigger
|
3475
3491
|
# reprofiling. If you set this field, profiles are refreshed at this frequency
|
3476
3492
|
# regardless of whether the underlying tables have changed. Defaults to never.
|
@@ -3489,6 +3505,7 @@ module Google
|
|
3489
3505
|
|
3490
3506
|
# Update properties of this object
|
3491
3507
|
def update!(**args)
|
3508
|
+
@inspect_template_modified_cadence = args[:inspect_template_modified_cadence] if args.key?(:inspect_template_modified_cadence)
|
3492
3509
|
@refresh_frequency = args[:refresh_frequency] if args.key?(:refresh_frequency)
|
3493
3510
|
@schema_modified_cadence = args[:schema_modified_cadence] if args.key?(:schema_modified_cadence)
|
3494
3511
|
end
|
@@ -4320,11 +4337,13 @@ module Google
|
|
4320
4337
|
attr_accessor :file_cluster_type
|
4321
4338
|
|
4322
4339
|
# A sample of file types scanned in this cluster. Empty if no files were scanned.
|
4340
|
+
# File extensions can be derived from the file name or the file content.
|
4323
4341
|
# Corresponds to the JSON property `fileExtensionsScanned`
|
4324
4342
|
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FileExtensionInfo>]
|
4325
4343
|
attr_accessor :file_extensions_scanned
|
4326
4344
|
|
4327
|
-
# A sample of file types seen in this cluster. Empty if no files were seen.
|
4345
|
+
# A sample of file types seen in this cluster. Empty if no files were seen. File
|
4346
|
+
# extensions can be derived from the file name or the file content.
|
4328
4347
|
# Corresponds to the JSON property `fileExtensionsSeen`
|
4329
4348
|
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FileExtensionInfo>]
|
4330
4349
|
attr_accessor :file_extensions_seen
|
@@ -9258,6 +9277,101 @@ module Google
|
|
9258
9277
|
end
|
9259
9278
|
end
|
9260
9279
|
|
9280
|
+
# The tag to attach to profiles matching the condition. At most one `
|
9281
|
+
# TagCondition` can be specified per sensitivity level.
|
9282
|
+
class GooglePrivacyDlpV2TagCondition
|
9283
|
+
include Google::Apis::Core::Hashable
|
9284
|
+
|
9285
|
+
# Score is calculated from of all elements in the data profile. A higher level
|
9286
|
+
# means the data is more sensitive.
|
9287
|
+
# Corresponds to the JSON property `sensitivityScore`
|
9288
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2SensitivityScore]
|
9289
|
+
attr_accessor :sensitivity_score
|
9290
|
+
|
9291
|
+
# A value of a tag.
|
9292
|
+
# Corresponds to the JSON property `tag`
|
9293
|
+
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2TagValue]
|
9294
|
+
attr_accessor :tag
|
9295
|
+
|
9296
|
+
def initialize(**args)
|
9297
|
+
update!(**args)
|
9298
|
+
end
|
9299
|
+
|
9300
|
+
# Update properties of this object
|
9301
|
+
def update!(**args)
|
9302
|
+
@sensitivity_score = args[:sensitivity_score] if args.key?(:sensitivity_score)
|
9303
|
+
@tag = args[:tag] if args.key?(:tag)
|
9304
|
+
end
|
9305
|
+
end
|
9306
|
+
|
9307
|
+
# If set, attaches the [tags] (https://cloud.google.com/resource-manager/docs/
|
9308
|
+
# tags/tags-overview) provided to profiled resources. Tags support [access
|
9309
|
+
# control](https://cloud.google.com/iam/docs/tags-access-control). You can
|
9310
|
+
# conditionally grant or deny access to a resource based on whether the resource
|
9311
|
+
# has a specific tag.
|
9312
|
+
class GooglePrivacyDlpV2TagResources
|
9313
|
+
include Google::Apis::Core::Hashable
|
9314
|
+
|
9315
|
+
# Whether applying a tag to a resource should lower the risk of the profile for
|
9316
|
+
# that resource. For example, in conjunction with an [IAM deny policy](https://
|
9317
|
+
# cloud.google.com/iam/docs/deny-overview), you can deny all principals a
|
9318
|
+
# permission if a tag value is present, mitigating the risk of the resource.
|
9319
|
+
# This also lowers the data risk of resources at the lower levels of the
|
9320
|
+
# resource hierarchy. For example, reducing the data risk of a table data
|
9321
|
+
# profile also reduces the data risk of the constituent column data profiles.
|
9322
|
+
# Corresponds to the JSON property `lowerDataRiskToLow`
|
9323
|
+
# @return [Boolean]
|
9324
|
+
attr_accessor :lower_data_risk_to_low
|
9325
|
+
alias_method :lower_data_risk_to_low?, :lower_data_risk_to_low
|
9326
|
+
|
9327
|
+
# The profile generations for which the tag should be attached to resources. If
|
9328
|
+
# you attach a tag to only new profiles, then if the sensitivity score of a
|
9329
|
+
# profile subsequently changes, its tag doesn't change. By default, this field
|
9330
|
+
# includes only new profiles. To include both new and updated profiles for
|
9331
|
+
# tagging, this field should explicitly include both `PROFILE_GENERATION_NEW`
|
9332
|
+
# and `PROFILE_GENERATION_UPDATE`.
|
9333
|
+
# Corresponds to the JSON property `profileGenerationsToTag`
|
9334
|
+
# @return [Array<String>]
|
9335
|
+
attr_accessor :profile_generations_to_tag
|
9336
|
+
|
9337
|
+
# The tags to associate with different conditions.
|
9338
|
+
# Corresponds to the JSON property `tagConditions`
|
9339
|
+
# @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2TagCondition>]
|
9340
|
+
attr_accessor :tag_conditions
|
9341
|
+
|
9342
|
+
def initialize(**args)
|
9343
|
+
update!(**args)
|
9344
|
+
end
|
9345
|
+
|
9346
|
+
# Update properties of this object
|
9347
|
+
def update!(**args)
|
9348
|
+
@lower_data_risk_to_low = args[:lower_data_risk_to_low] if args.key?(:lower_data_risk_to_low)
|
9349
|
+
@profile_generations_to_tag = args[:profile_generations_to_tag] if args.key?(:profile_generations_to_tag)
|
9350
|
+
@tag_conditions = args[:tag_conditions] if args.key?(:tag_conditions)
|
9351
|
+
end
|
9352
|
+
end
|
9353
|
+
|
9354
|
+
# A value of a tag.
|
9355
|
+
class GooglePrivacyDlpV2TagValue
|
9356
|
+
include Google::Apis::Core::Hashable
|
9357
|
+
|
9358
|
+
# The namespaced name for the tag value to attach to resources. Must be in the
|
9359
|
+
# format ``parent_id`/`tag_key_short_name`/`short_name``, for example, "123456/
|
9360
|
+
# environment/prod".
|
9361
|
+
# Corresponds to the JSON property `namespacedValue`
|
9362
|
+
# @return [String]
|
9363
|
+
attr_accessor :namespaced_value
|
9364
|
+
|
9365
|
+
def initialize(**args)
|
9366
|
+
update!(**args)
|
9367
|
+
end
|
9368
|
+
|
9369
|
+
# Update properties of this object
|
9370
|
+
def update!(**args)
|
9371
|
+
@namespaced_value = args[:namespaced_value] if args.key?(:namespaced_value)
|
9372
|
+
end
|
9373
|
+
end
|
9374
|
+
|
9261
9375
|
# A column with a semantic tag attached.
|
9262
9376
|
class GooglePrivacyDlpV2TaggedField
|
9263
9377
|
include Google::Apis::Core::Hashable
|
@@ -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.72.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 = "
|
25
|
+
REVISION = "20240808"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1612,6 +1612,24 @@ module Google
|
|
1612
1612
|
include Google::Apis::Core::JsonObjectSupport
|
1613
1613
|
end
|
1614
1614
|
|
1615
|
+
class GooglePrivacyDlpV2TagCondition
|
1616
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1617
|
+
|
1618
|
+
include Google::Apis::Core::JsonObjectSupport
|
1619
|
+
end
|
1620
|
+
|
1621
|
+
class GooglePrivacyDlpV2TagResources
|
1622
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1623
|
+
|
1624
|
+
include Google::Apis::Core::JsonObjectSupport
|
1625
|
+
end
|
1626
|
+
|
1627
|
+
class GooglePrivacyDlpV2TagValue
|
1628
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1629
|
+
|
1630
|
+
include Google::Apis::Core::JsonObjectSupport
|
1631
|
+
end
|
1632
|
+
|
1615
1633
|
class GooglePrivacyDlpV2TaggedField
|
1616
1634
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1617
1635
|
|
@@ -2436,6 +2454,8 @@ module Google
|
|
2436
2454
|
|
2437
2455
|
property :pub_sub_notification, as: 'pubSubNotification', class: Google::Apis::DlpV2::GooglePrivacyDlpV2PubSubNotification, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2PubSubNotification::Representation
|
2438
2456
|
|
2457
|
+
property :tag_resources, as: 'tagResources', class: Google::Apis::DlpV2::GooglePrivacyDlpV2TagResources, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2TagResources::Representation
|
2458
|
+
|
2439
2459
|
end
|
2440
2460
|
end
|
2441
2461
|
|
@@ -2791,6 +2811,8 @@ module Google
|
|
2791
2811
|
class GooglePrivacyDlpV2DiscoveryCloudSqlGenerationCadence
|
2792
2812
|
# @private
|
2793
2813
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2814
|
+
property :inspect_template_modified_cadence, as: 'inspectTemplateModifiedCadence', class: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryInspectTemplateModifiedCadence, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryInspectTemplateModifiedCadence::Representation
|
2815
|
+
|
2794
2816
|
property :refresh_frequency, as: 'refreshFrequency'
|
2795
2817
|
property :schema_modified_cadence, as: 'schemaModifiedCadence', class: Google::Apis::DlpV2::GooglePrivacyDlpV2SchemaModifiedCadence, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2SchemaModifiedCadence::Representation
|
2796
2818
|
|
@@ -4547,6 +4569,33 @@ module Google
|
|
4547
4569
|
end
|
4548
4570
|
end
|
4549
4571
|
|
4572
|
+
class GooglePrivacyDlpV2TagCondition
|
4573
|
+
# @private
|
4574
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4575
|
+
property :sensitivity_score, as: 'sensitivityScore', class: Google::Apis::DlpV2::GooglePrivacyDlpV2SensitivityScore, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2SensitivityScore::Representation
|
4576
|
+
|
4577
|
+
property :tag, as: 'tag', class: Google::Apis::DlpV2::GooglePrivacyDlpV2TagValue, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2TagValue::Representation
|
4578
|
+
|
4579
|
+
end
|
4580
|
+
end
|
4581
|
+
|
4582
|
+
class GooglePrivacyDlpV2TagResources
|
4583
|
+
# @private
|
4584
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4585
|
+
property :lower_data_risk_to_low, as: 'lowerDataRiskToLow'
|
4586
|
+
collection :profile_generations_to_tag, as: 'profileGenerationsToTag'
|
4587
|
+
collection :tag_conditions, as: 'tagConditions', class: Google::Apis::DlpV2::GooglePrivacyDlpV2TagCondition, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2TagCondition::Representation
|
4588
|
+
|
4589
|
+
end
|
4590
|
+
end
|
4591
|
+
|
4592
|
+
class GooglePrivacyDlpV2TagValue
|
4593
|
+
# @private
|
4594
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4595
|
+
property :namespaced_value, as: 'namespacedValue'
|
4596
|
+
end
|
4597
|
+
end
|
4598
|
+
|
4550
4599
|
class GooglePrivacyDlpV2TaggedField
|
4551
4600
|
# @private
|
4552
4601
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -64,8 +64,8 @@ module Google
|
|
64
64
|
# @param [String] location_id
|
65
65
|
# Deprecated. This field has no effect.
|
66
66
|
# @param [String] parent
|
67
|
-
# The parent resource name. The format of this value is as follows: locations
|
68
|
-
#
|
67
|
+
# The parent resource name. The format of this value is as follows: `locations/`
|
68
|
+
# location_id``
|
69
69
|
# @param [String] fields
|
70
70
|
# Selector specifying which fields to include in a partial response.
|
71
71
|
# @param [String] quota_user
|
@@ -100,8 +100,8 @@ module Google
|
|
100
100
|
# https://cloud.google.com/sensitive-data-protection/docs/infotypes-reference to
|
101
101
|
# learn more.
|
102
102
|
# @param [String] parent
|
103
|
-
# The parent resource name. The format of this value is as follows: locations
|
104
|
-
#
|
103
|
+
# The parent resource name. The format of this value is as follows: `locations/`
|
104
|
+
# location_id``
|
105
105
|
# @param [String] filter
|
106
106
|
# filter to only return infoTypes supported by certain parts of the API.
|
107
107
|
# Defaults to supported_by=INSPECT.
|
@@ -148,14 +148,14 @@ module Google
|
|
148
148
|
# the scope of the request (project or organization) and whether you have [
|
149
149
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
150
150
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
151
|
-
# projects/`
|
152
|
-
# specified (defaults to global): `projects/`
|
153
|
-
# location specified: `organizations/`
|
151
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
152
|
+
# specified (defaults to global): `projects/`project_id`` + Organizations scope,
|
153
|
+
# location specified: `organizations/`org_id`/locations/`location_id`` +
|
154
154
|
# Organizations scope, no location specified (defaults to global): `
|
155
|
-
# organizations/`
|
156
|
-
# project with the identifier `example-project`, and specifies the `
|
157
|
-
# location for processing data: parent=projects/example-project/
|
158
|
-
# europe-west3
|
155
|
+
# organizations/`org_id`` The following example `parent` string specifies a
|
156
|
+
# parent project with the identifier `example-project`, and specifies the `
|
157
|
+
# europe-west3` location for processing data: parent=projects/example-project/
|
158
|
+
# locations/europe-west3
|
159
159
|
# @param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDeidentifyTemplateRequest] google_privacy_dlp_v2_create_deidentify_template_request_object
|
160
160
|
# @param [String] fields
|
161
161
|
# Selector specifying which fields to include in a partial response.
|
@@ -259,14 +259,14 @@ module Google
|
|
259
259
|
# the scope of the request (project or organization) and whether you have [
|
260
260
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
261
261
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
262
|
-
# projects/`
|
263
|
-
# specified (defaults to global): `projects/`
|
264
|
-
# location specified: `organizations/`
|
262
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
263
|
+
# specified (defaults to global): `projects/`project_id`` + Organizations scope,
|
264
|
+
# location specified: `organizations/`org_id`/locations/`location_id`` +
|
265
265
|
# Organizations scope, no location specified (defaults to global): `
|
266
|
-
# organizations/`
|
267
|
-
# project with the identifier `example-project`, and specifies the `
|
268
|
-
# location for processing data: parent=projects/example-project/
|
269
|
-
# europe-west3
|
266
|
+
# organizations/`org_id`` The following example `parent` string specifies a
|
267
|
+
# parent project with the identifier `example-project`, and specifies the `
|
268
|
+
# europe-west3` location for processing data: parent=projects/example-project/
|
269
|
+
# locations/europe-west3
|
270
270
|
# @param [String] location_id
|
271
271
|
# Deprecated. This field has no effect.
|
272
272
|
# @param [String] order_by
|
@@ -358,14 +358,14 @@ module Google
|
|
358
358
|
# the scope of the request (project or organization) and whether you have [
|
359
359
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
360
360
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
361
|
-
# projects/`
|
362
|
-
# specified (defaults to global): `projects/`
|
363
|
-
# location specified: `organizations/`
|
361
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
362
|
+
# specified (defaults to global): `projects/`project_id`` + Organizations scope,
|
363
|
+
# location specified: `organizations/`org_id`/locations/`location_id`` +
|
364
364
|
# Organizations scope, no location specified (defaults to global): `
|
365
|
-
# organizations/`
|
366
|
-
# project with the identifier `example-project`, and specifies the `
|
367
|
-
# location for processing data: parent=projects/example-project/
|
368
|
-
# europe-west3
|
365
|
+
# organizations/`org_id`` The following example `parent` string specifies a
|
366
|
+
# parent project with the identifier `example-project`, and specifies the `
|
367
|
+
# europe-west3` location for processing data: parent=projects/example-project/
|
368
|
+
# locations/europe-west3
|
369
369
|
# @param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateInspectTemplateRequest] google_privacy_dlp_v2_create_inspect_template_request_object
|
370
370
|
# @param [String] fields
|
371
371
|
# Selector specifying which fields to include in a partial response.
|
@@ -469,14 +469,14 @@ module Google
|
|
469
469
|
# the scope of the request (project or organization) and whether you have [
|
470
470
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
471
471
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
472
|
-
# projects/`
|
473
|
-
# specified (defaults to global): `projects/`
|
474
|
-
# location specified: `organizations/`
|
472
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
473
|
+
# specified (defaults to global): `projects/`project_id`` + Organizations scope,
|
474
|
+
# location specified: `organizations/`org_id`/locations/`location_id`` +
|
475
475
|
# Organizations scope, no location specified (defaults to global): `
|
476
|
-
# organizations/`
|
477
|
-
# project with the identifier `example-project`, and specifies the `
|
478
|
-
# location for processing data: parent=projects/example-project/
|
479
|
-
# europe-west3
|
476
|
+
# organizations/`org_id`` The following example `parent` string specifies a
|
477
|
+
# parent project with the identifier `example-project`, and specifies the `
|
478
|
+
# europe-west3` location for processing data: parent=projects/example-project/
|
479
|
+
# locations/europe-west3
|
480
480
|
# @param [String] location_id
|
481
481
|
# Deprecated. This field has no effect.
|
482
482
|
# @param [String] order_by
|
@@ -663,8 +663,8 @@ module Google
|
|
663
663
|
# @param [String] parent
|
664
664
|
# Required. Parent resource name. The format of this value varies depending on
|
665
665
|
# the scope of the request (project or organization): + Projects scope: `
|
666
|
-
# projects/`
|
667
|
-
# organizations/`
|
666
|
+
# projects/`project_id`/locations/`location_id`` + Organizations scope: `
|
667
|
+
# organizations/`org_id`/locations/`location_id``
|
668
668
|
# @param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateConnectionRequest] google_privacy_dlp_v2_create_connection_request_object
|
669
669
|
# @param [String] fields
|
670
670
|
# Selector specifying which fields to include in a partial response.
|
@@ -884,14 +884,14 @@ module Google
|
|
884
884
|
# the scope of the request (project or organization) and whether you have [
|
885
885
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
886
886
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
887
|
-
# projects/`
|
888
|
-
# specified (defaults to global): `projects/`
|
889
|
-
# location specified: `organizations/`
|
887
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
888
|
+
# specified (defaults to global): `projects/`project_id`` + Organizations scope,
|
889
|
+
# location specified: `organizations/`org_id`/locations/`location_id`` +
|
890
890
|
# Organizations scope, no location specified (defaults to global): `
|
891
|
-
# organizations/`
|
892
|
-
# project with the identifier `example-project`, and specifies the `
|
893
|
-
# location for processing data: parent=projects/example-project/
|
894
|
-
# europe-west3
|
891
|
+
# organizations/`org_id`` The following example `parent` string specifies a
|
892
|
+
# parent project with the identifier `example-project`, and specifies the `
|
893
|
+
# europe-west3` location for processing data: parent=projects/example-project/
|
894
|
+
# locations/europe-west3
|
895
895
|
# @param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDeidentifyTemplateRequest] google_privacy_dlp_v2_create_deidentify_template_request_object
|
896
896
|
# @param [String] fields
|
897
897
|
# Selector specifying which fields to include in a partial response.
|
@@ -995,14 +995,14 @@ module Google
|
|
995
995
|
# the scope of the request (project or organization) and whether you have [
|
996
996
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
997
997
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
998
|
-
# projects/`
|
999
|
-
# specified (defaults to global): `projects/`
|
1000
|
-
# location specified: `organizations/`
|
998
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
999
|
+
# specified (defaults to global): `projects/`project_id`` + Organizations scope,
|
1000
|
+
# location specified: `organizations/`org_id`/locations/`location_id`` +
|
1001
1001
|
# Organizations scope, no location specified (defaults to global): `
|
1002
|
-
# organizations/`
|
1003
|
-
# project with the identifier `example-project`, and specifies the `
|
1004
|
-
# location for processing data: parent=projects/example-project/
|
1005
|
-
# europe-west3
|
1002
|
+
# organizations/`org_id`` The following example `parent` string specifies a
|
1003
|
+
# parent project with the identifier `example-project`, and specifies the `
|
1004
|
+
# europe-west3` location for processing data: parent=projects/example-project/
|
1005
|
+
# locations/europe-west3
|
1006
1006
|
# @param [String] location_id
|
1007
1007
|
# Deprecated. This field has no effect.
|
1008
1008
|
# @param [String] order_by
|
@@ -1090,8 +1090,8 @@ module Google
|
|
1090
1090
|
# @param [String] parent
|
1091
1091
|
# Required. Parent resource name. The format of this value varies depending on
|
1092
1092
|
# the scope of the request (project or organization): + Projects scope: `
|
1093
|
-
# projects/`
|
1094
|
-
# organizations/`
|
1093
|
+
# projects/`project_id`/locations/`location_id`` + Organizations scope: `
|
1094
|
+
# organizations/`org_id`/locations/`location_id`` The following example `parent`
|
1095
1095
|
# string specifies a parent project with the identifier `example-project`, and
|
1096
1096
|
# specifies the `europe-west3` location for processing data: parent=projects/
|
1097
1097
|
# example-project/locations/europe-west3
|
@@ -1190,7 +1190,7 @@ module Google
|
|
1190
1190
|
# Lists discovery configurations.
|
1191
1191
|
# @param [String] parent
|
1192
1192
|
# Required. Parent resource name. The format of this value is as follows: `
|
1193
|
-
# projects/`
|
1193
|
+
# projects/`project_id`/locations/`location_id`` The following example `parent`
|
1194
1194
|
# string specifies a parent project with the identifier `example-project`, and
|
1195
1195
|
# specifies the `europe-west3` location for processing data: parent=projects/
|
1196
1196
|
# example-project/locations/europe-west3
|
@@ -1278,8 +1278,8 @@ module Google
|
|
1278
1278
|
# Required. Parent resource name. The format of this value varies depending on
|
1279
1279
|
# whether you have [specified a processing location](https://cloud.google.com/
|
1280
1280
|
# sensitive-data-protection/docs/specifying-location): + Projects scope,
|
1281
|
-
# location specified: `projects/`
|
1282
|
-
# scope, no location specified (defaults to global): `projects/`
|
1281
|
+
# location specified: `projects/`project_id`/locations/`location_id`` + Projects
|
1282
|
+
# scope, no location specified (defaults to global): `projects/`project_id`` The
|
1283
1283
|
# following example `parent` string specifies a parent project with the
|
1284
1284
|
# identifier `example-project`, and specifies the `europe-west3` location for
|
1285
1285
|
# processing data: parent=projects/example-project/locations/europe-west3
|
@@ -1487,14 +1487,14 @@ module Google
|
|
1487
1487
|
# the scope of the request (project or organization) and whether you have [
|
1488
1488
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
1489
1489
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
1490
|
-
# projects/`
|
1491
|
-
# specified (defaults to global): `projects/`
|
1492
|
-
# location specified: `organizations/`
|
1490
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
1491
|
+
# specified (defaults to global): `projects/`project_id`` + Organizations scope,
|
1492
|
+
# location specified: `organizations/`org_id`/locations/`location_id`` +
|
1493
1493
|
# Organizations scope, no location specified (defaults to global): `
|
1494
|
-
# organizations/`
|
1495
|
-
# project with the identifier `example-project`, and specifies the `
|
1496
|
-
# location for processing data: parent=projects/example-project/
|
1497
|
-
# europe-west3
|
1494
|
+
# organizations/`org_id`` The following example `parent` string specifies a
|
1495
|
+
# parent project with the identifier `example-project`, and specifies the `
|
1496
|
+
# europe-west3` location for processing data: parent=projects/example-project/
|
1497
|
+
# locations/europe-west3
|
1498
1498
|
# @param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateInspectTemplateRequest] google_privacy_dlp_v2_create_inspect_template_request_object
|
1499
1499
|
# @param [String] fields
|
1500
1500
|
# Selector specifying which fields to include in a partial response.
|
@@ -1598,14 +1598,14 @@ module Google
|
|
1598
1598
|
# the scope of the request (project or organization) and whether you have [
|
1599
1599
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
1600
1600
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
1601
|
-
# projects/`
|
1602
|
-
# specified (defaults to global): `projects/`
|
1603
|
-
# location specified: `organizations/`
|
1601
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
1602
|
+
# specified (defaults to global): `projects/`project_id`` + Organizations scope,
|
1603
|
+
# location specified: `organizations/`org_id`/locations/`location_id`` +
|
1604
1604
|
# Organizations scope, no location specified (defaults to global): `
|
1605
|
-
# organizations/`
|
1606
|
-
# project with the identifier `example-project`, and specifies the `
|
1607
|
-
# location for processing data: parent=projects/example-project/
|
1608
|
-
# europe-west3
|
1605
|
+
# organizations/`org_id`` The following example `parent` string specifies a
|
1606
|
+
# parent project with the identifier `example-project`, and specifies the `
|
1607
|
+
# europe-west3` location for processing data: parent=projects/example-project/
|
1608
|
+
# locations/europe-west3
|
1609
1609
|
# @param [String] location_id
|
1610
1610
|
# Deprecated. This field has no effect.
|
1611
1611
|
# @param [String] order_by
|
@@ -1696,8 +1696,8 @@ module Google
|
|
1696
1696
|
# Required. Parent resource name. The format of this value varies depending on
|
1697
1697
|
# whether you have [specified a processing location](https://cloud.google.com/
|
1698
1698
|
# sensitive-data-protection/docs/specifying-location): + Projects scope,
|
1699
|
-
# location specified: `projects/`
|
1700
|
-
# scope, no location specified (defaults to global): `projects/`
|
1699
|
+
# location specified: `projects/`project_id`/locations/`location_id`` + Projects
|
1700
|
+
# scope, no location specified (defaults to global): `projects/`project_id`` The
|
1701
1701
|
# following example `parent` string specifies a parent project with the
|
1702
1702
|
# identifier `example-project`, and specifies the `europe-west3` location for
|
1703
1703
|
# processing data: parent=projects/example-project/locations/europe-west3
|
@@ -1801,8 +1801,8 @@ module Google
|
|
1801
1801
|
# Required. Parent resource name. The format of this value varies depending on
|
1802
1802
|
# whether you have [specified a processing location](https://cloud.google.com/
|
1803
1803
|
# sensitive-data-protection/docs/specifying-location): + Projects scope,
|
1804
|
-
# location specified: `projects/`
|
1805
|
-
# scope, no location specified (defaults to global): `projects/`
|
1804
|
+
# location specified: `projects/`project_id`/locations/`location_id`` + Projects
|
1805
|
+
# scope, no location specified (defaults to global): `projects/`project_id`` The
|
1806
1806
|
# following example `parent` string specifies a parent project with the
|
1807
1807
|
# identifier `example-project`, and specifies the `europe-west3` location for
|
1808
1808
|
# processing data: parent=projects/example-project/locations/europe-west3
|
@@ -2006,14 +2006,14 @@ module Google
|
|
2006
2006
|
# the scope of the request (project or organization) and whether you have [
|
2007
2007
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
2008
2008
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
2009
|
-
# projects/`
|
2010
|
-
# specified (defaults to global): `projects/`
|
2011
|
-
# location specified: `organizations/`
|
2009
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
2010
|
+
# specified (defaults to global): `projects/`project_id`` + Organizations scope,
|
2011
|
+
# location specified: `organizations/`org_id`/locations/`location_id`` +
|
2012
2012
|
# Organizations scope, no location specified (defaults to global): `
|
2013
|
-
# organizations/`
|
2014
|
-
# project with the identifier `example-project`, and specifies the `
|
2015
|
-
# location for processing data: parent=projects/example-project/
|
2016
|
-
# europe-west3
|
2013
|
+
# organizations/`org_id`` The following example `parent` string specifies a
|
2014
|
+
# parent project with the identifier `example-project`, and specifies the `
|
2015
|
+
# europe-west3` location for processing data: parent=projects/example-project/
|
2016
|
+
# locations/europe-west3
|
2017
2017
|
# @param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateStoredInfoTypeRequest] google_privacy_dlp_v2_create_stored_info_type_request_object
|
2018
2018
|
# @param [String] fields
|
2019
2019
|
# Selector specifying which fields to include in a partial response.
|
@@ -2117,8 +2117,8 @@ module Google
|
|
2117
2117
|
# the scope of the request (project or organization) and whether you have [
|
2118
2118
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
2119
2119
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
2120
|
-
# projects/`
|
2121
|
-
# specified (defaults to global): `projects/`
|
2120
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
2121
|
+
# specified (defaults to global): `projects/`project_id`` The following example `
|
2122
2122
|
# parent` string specifies a parent project with the identifier `example-project`
|
2123
2123
|
# , and specifies the `europe-west3` location for processing data: parent=
|
2124
2124
|
# projects/example-project/locations/europe-west3
|
@@ -2345,14 +2345,14 @@ module Google
|
|
2345
2345
|
# the scope of the request (project or organization) and whether you have [
|
2346
2346
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
2347
2347
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
2348
|
-
# projects/`
|
2349
|
-
# specified (defaults to global): `projects/`
|
2350
|
-
# location specified: `organizations/`
|
2348
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
2349
|
+
# specified (defaults to global): `projects/`project_id`` + Organizations scope,
|
2350
|
+
# location specified: `organizations/`org_id`/locations/`location_id`` +
|
2351
2351
|
# Organizations scope, no location specified (defaults to global): `
|
2352
|
-
# organizations/`
|
2353
|
-
# project with the identifier `example-project`, and specifies the `
|
2354
|
-
# location for processing data: parent=projects/example-project/
|
2355
|
-
# europe-west3
|
2352
|
+
# organizations/`org_id`` The following example `parent` string specifies a
|
2353
|
+
# parent project with the identifier `example-project`, and specifies the `
|
2354
|
+
# europe-west3` location for processing data: parent=projects/example-project/
|
2355
|
+
# locations/europe-west3
|
2356
2356
|
# @param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateStoredInfoTypeRequest] google_privacy_dlp_v2_create_stored_info_type_request_object
|
2357
2357
|
# @param [String] fields
|
2358
2358
|
# Selector specifying which fields to include in a partial response.
|
@@ -2456,8 +2456,8 @@ module Google
|
|
2456
2456
|
# the scope of the request (project or organization) and whether you have [
|
2457
2457
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
2458
2458
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
2459
|
-
# projects/`
|
2460
|
-
# specified (defaults to global): `projects/`
|
2459
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
2460
|
+
# specified (defaults to global): `projects/`project_id`` The following example `
|
2461
2461
|
# parent` string specifies a parent project with the identifier `example-project`
|
2462
2462
|
# , and specifies the `europe-west3` location for processing data: parent=
|
2463
2463
|
# projects/example-project/locations/europe-west3
|
@@ -2556,8 +2556,8 @@ module Google
|
|
2556
2556
|
# Parent resource name. The format of this value varies depending on whether you
|
2557
2557
|
# have [specified a processing location](https://cloud.google.com/sensitive-data-
|
2558
2558
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
2559
|
-
# projects/`
|
2560
|
-
# specified (defaults to global): `projects/`
|
2559
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
2560
|
+
# specified (defaults to global): `projects/`project_id`` The following example `
|
2561
2561
|
# parent` string specifies a parent project with the identifier `example-project`
|
2562
2562
|
# , and specifies the `europe-west3` location for processing data: parent=
|
2563
2563
|
# projects/example-project/locations/europe-west3
|
@@ -2602,8 +2602,8 @@ module Google
|
|
2602
2602
|
# Parent resource name. The format of this value varies depending on whether you
|
2603
2603
|
# have [specified a processing location](https://cloud.google.com/sensitive-data-
|
2604
2604
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
2605
|
-
# projects/`
|
2606
|
-
# specified (defaults to global): `projects/`
|
2605
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
2606
|
+
# specified (defaults to global): `projects/`project_id`` The following example `
|
2607
2607
|
# parent` string specifies a parent project with the identifier `example-project`
|
2608
2608
|
# , and specifies the `europe-west3` location for processing data: parent=
|
2609
2609
|
# projects/example-project/locations/europe-west3
|
@@ -2644,8 +2644,8 @@ module Google
|
|
2644
2644
|
# Required. Parent resource name. The format of this value varies depending on
|
2645
2645
|
# whether you have [specified a processing location](https://cloud.google.com/
|
2646
2646
|
# sensitive-data-protection/docs/specifying-location): + Projects scope,
|
2647
|
-
# location specified: `projects/`
|
2648
|
-
# scope, no location specified (defaults to global): `projects/`
|
2647
|
+
# location specified: `projects/`project_id`/locations/`location_id`` + Projects
|
2648
|
+
# scope, no location specified (defaults to global): `projects/`project_id`` The
|
2649
2649
|
# following example `parent` string specifies a parent project with the
|
2650
2650
|
# identifier `example-project`, and specifies the `europe-west3` location for
|
2651
2651
|
# processing data: parent=projects/example-project/locations/europe-west3
|
@@ -2687,14 +2687,14 @@ module Google
|
|
2687
2687
|
# the scope of the request (project or organization) and whether you have [
|
2688
2688
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
2689
2689
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
2690
|
-
# projects/`
|
2691
|
-
# specified (defaults to global): `projects/`
|
2692
|
-
# location specified: `organizations/`
|
2690
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
2691
|
+
# specified (defaults to global): `projects/`project_id`` + Organizations scope,
|
2692
|
+
# location specified: `organizations/`org_id`/locations/`location_id`` +
|
2693
2693
|
# Organizations scope, no location specified (defaults to global): `
|
2694
|
-
# organizations/`
|
2695
|
-
# project with the identifier `example-project`, and specifies the `
|
2696
|
-
# location for processing data: parent=projects/example-project/
|
2697
|
-
# europe-west3
|
2694
|
+
# organizations/`org_id`` The following example `parent` string specifies a
|
2695
|
+
# parent project with the identifier `example-project`, and specifies the `
|
2696
|
+
# europe-west3` location for processing data: parent=projects/example-project/
|
2697
|
+
# locations/europe-west3
|
2698
2698
|
# @param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDeidentifyTemplateRequest] google_privacy_dlp_v2_create_deidentify_template_request_object
|
2699
2699
|
# @param [String] fields
|
2700
2700
|
# Selector specifying which fields to include in a partial response.
|
@@ -2798,14 +2798,14 @@ module Google
|
|
2798
2798
|
# the scope of the request (project or organization) and whether you have [
|
2799
2799
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
2800
2800
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
2801
|
-
# projects/`
|
2802
|
-
# specified (defaults to global): `projects/`
|
2803
|
-
# location specified: `organizations/`
|
2801
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
2802
|
+
# specified (defaults to global): `projects/`project_id`` + Organizations scope,
|
2803
|
+
# location specified: `organizations/`org_id`/locations/`location_id`` +
|
2804
2804
|
# Organizations scope, no location specified (defaults to global): `
|
2805
|
-
# organizations/`
|
2806
|
-
# project with the identifier `example-project`, and specifies the `
|
2807
|
-
# location for processing data: parent=projects/example-project/
|
2808
|
-
# europe-west3
|
2805
|
+
# organizations/`org_id`` The following example `parent` string specifies a
|
2806
|
+
# parent project with the identifier `example-project`, and specifies the `
|
2807
|
+
# europe-west3` location for processing data: parent=projects/example-project/
|
2808
|
+
# locations/europe-west3
|
2809
2809
|
# @param [String] location_id
|
2810
2810
|
# Deprecated. This field has no effect.
|
2811
2811
|
# @param [String] order_by
|
@@ -2936,8 +2936,8 @@ module Google
|
|
2936
2936
|
# Required. Parent resource name. The format of this value varies depending on
|
2937
2937
|
# whether you have [specified a processing location](https://cloud.google.com/
|
2938
2938
|
# sensitive-data-protection/docs/specifying-location): + Projects scope,
|
2939
|
-
# location specified: `projects/`
|
2940
|
-
# scope, no location specified (defaults to global): `projects/`
|
2939
|
+
# location specified: `projects/`project_id`/locations/`location_id`` + Projects
|
2940
|
+
# scope, no location specified (defaults to global): `projects/`project_id`` The
|
2941
2941
|
# following example `parent` string specifies a parent project with the
|
2942
2942
|
# identifier `example-project`, and specifies the `europe-west3` location for
|
2943
2943
|
# processing data: parent=projects/example-project/locations/europe-west3
|
@@ -3045,8 +3045,8 @@ module Google
|
|
3045
3045
|
# Required. Parent resource name. The format of this value varies depending on
|
3046
3046
|
# whether you have [specified a processing location](https://cloud.google.com/
|
3047
3047
|
# sensitive-data-protection/docs/specifying-location): + Projects scope,
|
3048
|
-
# location specified: `projects/`
|
3049
|
-
# scope, no location specified (defaults to global): `projects/`
|
3048
|
+
# location specified: `projects/`project_id`/locations/`location_id`` + Projects
|
3049
|
+
# scope, no location specified (defaults to global): `projects/`project_id`` The
|
3050
3050
|
# following example `parent` string specifies a parent project with the
|
3051
3051
|
# identifier `example-project`, and specifies the `europe-west3` location for
|
3052
3052
|
# processing data: parent=projects/example-project/locations/europe-west3
|
@@ -3126,8 +3126,8 @@ module Google
|
|
3126
3126
|
# Parent resource name. The format of this value varies depending on whether you
|
3127
3127
|
# have [specified a processing location](https://cloud.google.com/sensitive-data-
|
3128
3128
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
3129
|
-
# projects/`
|
3130
|
-
# specified (defaults to global): `projects/`
|
3129
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
3130
|
+
# specified (defaults to global): `projects/`project_id`` The following example `
|
3131
3131
|
# parent` string specifies a parent project with the identifier `example-project`
|
3132
3132
|
# , and specifies the `europe-west3` location for processing data: parent=
|
3133
3133
|
# projects/example-project/locations/europe-west3
|
@@ -3169,14 +3169,14 @@ module Google
|
|
3169
3169
|
# the scope of the request (project or organization) and whether you have [
|
3170
3170
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
3171
3171
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
3172
|
-
# projects/`
|
3173
|
-
# specified (defaults to global): `projects/`
|
3174
|
-
# location specified: `organizations/`
|
3172
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
3173
|
+
# specified (defaults to global): `projects/`project_id`` + Organizations scope,
|
3174
|
+
# location specified: `organizations/`org_id`/locations/`location_id`` +
|
3175
3175
|
# Organizations scope, no location specified (defaults to global): `
|
3176
|
-
# organizations/`
|
3177
|
-
# project with the identifier `example-project`, and specifies the `
|
3178
|
-
# location for processing data: parent=projects/example-project/
|
3179
|
-
# europe-west3
|
3176
|
+
# organizations/`org_id`` The following example `parent` string specifies a
|
3177
|
+
# parent project with the identifier `example-project`, and specifies the `
|
3178
|
+
# europe-west3` location for processing data: parent=projects/example-project/
|
3179
|
+
# locations/europe-west3
|
3180
3180
|
# @param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateInspectTemplateRequest] google_privacy_dlp_v2_create_inspect_template_request_object
|
3181
3181
|
# @param [String] fields
|
3182
3182
|
# Selector specifying which fields to include in a partial response.
|
@@ -3280,14 +3280,14 @@ module Google
|
|
3280
3280
|
# the scope of the request (project or organization) and whether you have [
|
3281
3281
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
3282
3282
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
3283
|
-
# projects/`
|
3284
|
-
# specified (defaults to global): `projects/`
|
3285
|
-
# location specified: `organizations/`
|
3283
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
3284
|
+
# specified (defaults to global): `projects/`project_id`` + Organizations scope,
|
3285
|
+
# location specified: `organizations/`org_id`/locations/`location_id`` +
|
3286
3286
|
# Organizations scope, no location specified (defaults to global): `
|
3287
|
-
# organizations/`
|
3288
|
-
# project with the identifier `example-project`, and specifies the `
|
3289
|
-
# location for processing data: parent=projects/example-project/
|
3290
|
-
# europe-west3
|
3287
|
+
# organizations/`org_id`` The following example `parent` string specifies a
|
3288
|
+
# parent project with the identifier `example-project`, and specifies the `
|
3289
|
+
# europe-west3` location for processing data: parent=projects/example-project/
|
3290
|
+
# locations/europe-west3
|
3291
3291
|
# @param [String] location_id
|
3292
3292
|
# Deprecated. This field has no effect.
|
3293
3293
|
# @param [String] order_by
|
@@ -3413,8 +3413,8 @@ module Google
|
|
3413
3413
|
# Required. Parent resource name. The format of this value varies depending on
|
3414
3414
|
# whether you have [specified a processing location](https://cloud.google.com/
|
3415
3415
|
# sensitive-data-protection/docs/specifying-location): + Projects scope,
|
3416
|
-
# location specified: `projects/`
|
3417
|
-
# scope, no location specified (defaults to global): `projects/`
|
3416
|
+
# location specified: `projects/`project_id`/locations/`location_id`` + Projects
|
3417
|
+
# scope, no location specified (defaults to global): `projects/`project_id`` The
|
3418
3418
|
# following example `parent` string specifies a parent project with the
|
3419
3419
|
# identifier `example-project`, and specifies the `europe-west3` location for
|
3420
3420
|
# processing data: parent=projects/example-project/locations/europe-west3
|
@@ -3518,8 +3518,8 @@ module Google
|
|
3518
3518
|
# Required. Parent resource name. The format of this value varies depending on
|
3519
3519
|
# whether you have [specified a processing location](https://cloud.google.com/
|
3520
3520
|
# sensitive-data-protection/docs/specifying-location): + Projects scope,
|
3521
|
-
# location specified: `projects/`
|
3522
|
-
# scope, no location specified (defaults to global): `projects/`
|
3521
|
+
# location specified: `projects/`project_id`/locations/`location_id`` + Projects
|
3522
|
+
# scope, no location specified (defaults to global): `projects/`project_id`` The
|
3523
3523
|
# following example `parent` string specifies a parent project with the
|
3524
3524
|
# identifier `example-project`, and specifies the `europe-west3` location for
|
3525
3525
|
# processing data: parent=projects/example-project/locations/europe-west3
|
@@ -3728,8 +3728,8 @@ module Google
|
|
3728
3728
|
# @param [String] parent
|
3729
3729
|
# Required. Parent resource name. The format of this value varies depending on
|
3730
3730
|
# the scope of the request (project or organization): + Projects scope: `
|
3731
|
-
# projects/`
|
3732
|
-
# organizations/`
|
3731
|
+
# projects/`project_id`/locations/`location_id`` + Organizations scope: `
|
3732
|
+
# organizations/`org_id`/locations/`location_id``
|
3733
3733
|
# @param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateConnectionRequest] google_privacy_dlp_v2_create_connection_request_object
|
3734
3734
|
# @param [String] fields
|
3735
3735
|
# Selector specifying which fields to include in a partial response.
|
@@ -3951,8 +3951,8 @@ module Google
|
|
3951
3951
|
# Parent resource name. The format of this value varies depending on whether you
|
3952
3952
|
# have [specified a processing location](https://cloud.google.com/sensitive-data-
|
3953
3953
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
3954
|
-
# projects/`
|
3955
|
-
# specified (defaults to global): `projects/`
|
3954
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
3955
|
+
# specified (defaults to global): `projects/`project_id`` The following example `
|
3956
3956
|
# parent` string specifies a parent project with the identifier `example-project`
|
3957
3957
|
# , and specifies the `europe-west3` location for processing data: parent=
|
3958
3958
|
# projects/example-project/locations/europe-west3
|
@@ -3997,8 +3997,8 @@ module Google
|
|
3997
3997
|
# Parent resource name. The format of this value varies depending on whether you
|
3998
3998
|
# have [specified a processing location](https://cloud.google.com/sensitive-data-
|
3999
3999
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
4000
|
-
# projects/`
|
4001
|
-
# specified (defaults to global): `projects/`
|
4000
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
4001
|
+
# specified (defaults to global): `projects/`project_id`` The following example `
|
4002
4002
|
# parent` string specifies a parent project with the identifier `example-project`
|
4003
4003
|
# , and specifies the `europe-west3` location for processing data: parent=
|
4004
4004
|
# projects/example-project/locations/europe-west3
|
@@ -4039,8 +4039,8 @@ module Google
|
|
4039
4039
|
# Required. Parent resource name. The format of this value varies depending on
|
4040
4040
|
# whether you have [specified a processing location](https://cloud.google.com/
|
4041
4041
|
# sensitive-data-protection/docs/specifying-location): + Projects scope,
|
4042
|
-
# location specified: `projects/`
|
4043
|
-
# scope, no location specified (defaults to global): `projects/`
|
4042
|
+
# location specified: `projects/`project_id`/locations/`location_id`` + Projects
|
4043
|
+
# scope, no location specified (defaults to global): `projects/`project_id`` The
|
4044
4044
|
# following example `parent` string specifies a parent project with the
|
4045
4045
|
# identifier `example-project`, and specifies the `europe-west3` location for
|
4046
4046
|
# processing data: parent=projects/example-project/locations/europe-west3
|
@@ -4082,14 +4082,14 @@ module Google
|
|
4082
4082
|
# the scope of the request (project or organization) and whether you have [
|
4083
4083
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
4084
4084
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
4085
|
-
# projects/`
|
4086
|
-
# specified (defaults to global): `projects/`
|
4087
|
-
# location specified: `organizations/`
|
4085
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
4086
|
+
# specified (defaults to global): `projects/`project_id`` + Organizations scope,
|
4087
|
+
# location specified: `organizations/`org_id`/locations/`location_id`` +
|
4088
4088
|
# Organizations scope, no location specified (defaults to global): `
|
4089
|
-
# organizations/`
|
4090
|
-
# project with the identifier `example-project`, and specifies the `
|
4091
|
-
# location for processing data: parent=projects/example-project/
|
4092
|
-
# europe-west3
|
4089
|
+
# organizations/`org_id`` The following example `parent` string specifies a
|
4090
|
+
# parent project with the identifier `example-project`, and specifies the `
|
4091
|
+
# europe-west3` location for processing data: parent=projects/example-project/
|
4092
|
+
# locations/europe-west3
|
4093
4093
|
# @param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateDeidentifyTemplateRequest] google_privacy_dlp_v2_create_deidentify_template_request_object
|
4094
4094
|
# @param [String] fields
|
4095
4095
|
# Selector specifying which fields to include in a partial response.
|
@@ -4193,14 +4193,14 @@ module Google
|
|
4193
4193
|
# the scope of the request (project or organization) and whether you have [
|
4194
4194
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
4195
4195
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
4196
|
-
# projects/`
|
4197
|
-
# specified (defaults to global): `projects/`
|
4198
|
-
# location specified: `organizations/`
|
4196
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
4197
|
+
# specified (defaults to global): `projects/`project_id`` + Organizations scope,
|
4198
|
+
# location specified: `organizations/`org_id`/locations/`location_id`` +
|
4199
4199
|
# Organizations scope, no location specified (defaults to global): `
|
4200
|
-
# organizations/`
|
4201
|
-
# project with the identifier `example-project`, and specifies the `
|
4202
|
-
# location for processing data: parent=projects/example-project/
|
4203
|
-
# europe-west3
|
4200
|
+
# organizations/`org_id`` The following example `parent` string specifies a
|
4201
|
+
# parent project with the identifier `example-project`, and specifies the `
|
4202
|
+
# europe-west3` location for processing data: parent=projects/example-project/
|
4203
|
+
# locations/europe-west3
|
4204
4204
|
# @param [String] location_id
|
4205
4205
|
# Deprecated. This field has no effect.
|
4206
4206
|
# @param [String] order_by
|
@@ -4288,8 +4288,8 @@ module Google
|
|
4288
4288
|
# @param [String] parent
|
4289
4289
|
# Required. Parent resource name. The format of this value varies depending on
|
4290
4290
|
# the scope of the request (project or organization): + Projects scope: `
|
4291
|
-
# projects/`
|
4292
|
-
# organizations/`
|
4291
|
+
# projects/`project_id`/locations/`location_id`` + Organizations scope: `
|
4292
|
+
# organizations/`org_id`/locations/`location_id`` The following example `parent`
|
4293
4293
|
# string specifies a parent project with the identifier `example-project`, and
|
4294
4294
|
# specifies the `europe-west3` location for processing data: parent=projects/
|
4295
4295
|
# example-project/locations/europe-west3
|
@@ -4388,7 +4388,7 @@ module Google
|
|
4388
4388
|
# Lists discovery configurations.
|
4389
4389
|
# @param [String] parent
|
4390
4390
|
# Required. Parent resource name. The format of this value is as follows: `
|
4391
|
-
# projects/`
|
4391
|
+
# projects/`project_id`/locations/`location_id`` The following example `parent`
|
4392
4392
|
# string specifies a parent project with the identifier `example-project`, and
|
4393
4393
|
# specifies the `europe-west3` location for processing data: parent=projects/
|
4394
4394
|
# example-project/locations/europe-west3
|
@@ -4515,8 +4515,8 @@ module Google
|
|
4515
4515
|
# Required. Parent resource name. The format of this value varies depending on
|
4516
4516
|
# whether you have [specified a processing location](https://cloud.google.com/
|
4517
4517
|
# sensitive-data-protection/docs/specifying-location): + Projects scope,
|
4518
|
-
# location specified: `projects/`
|
4519
|
-
# scope, no location specified (defaults to global): `projects/`
|
4518
|
+
# location specified: `projects/`project_id`/locations/`location_id`` + Projects
|
4519
|
+
# scope, no location specified (defaults to global): `projects/`project_id`` The
|
4520
4520
|
# following example `parent` string specifies a parent project with the
|
4521
4521
|
# identifier `example-project`, and specifies the `europe-west3` location for
|
4522
4522
|
# processing data: parent=projects/example-project/locations/europe-west3
|
@@ -4693,8 +4693,8 @@ module Google
|
|
4693
4693
|
# Required. Parent resource name. The format of this value varies depending on
|
4694
4694
|
# whether you have [specified a processing location](https://cloud.google.com/
|
4695
4695
|
# sensitive-data-protection/docs/specifying-location): + Projects scope,
|
4696
|
-
# location specified: `projects/`
|
4697
|
-
# scope, no location specified (defaults to global): `projects/`
|
4696
|
+
# location specified: `projects/`project_id`/locations/`location_id`` + Projects
|
4697
|
+
# scope, no location specified (defaults to global): `projects/`project_id`` The
|
4698
4698
|
# following example `parent` string specifies a parent project with the
|
4699
4699
|
# identifier `example-project`, and specifies the `europe-west3` location for
|
4700
4700
|
# processing data: parent=projects/example-project/locations/europe-west3
|
@@ -4904,8 +4904,8 @@ module Google
|
|
4904
4904
|
# Parent resource name. The format of this value varies depending on whether you
|
4905
4905
|
# have [specified a processing location](https://cloud.google.com/sensitive-data-
|
4906
4906
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
4907
|
-
# projects/`
|
4908
|
-
# specified (defaults to global): `projects/`
|
4907
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
4908
|
+
# specified (defaults to global): `projects/`project_id`` The following example `
|
4909
4909
|
# parent` string specifies a parent project with the identifier `example-project`
|
4910
4910
|
# , and specifies the `europe-west3` location for processing data: parent=
|
4911
4911
|
# projects/example-project/locations/europe-west3
|
@@ -4947,14 +4947,14 @@ module Google
|
|
4947
4947
|
# the scope of the request (project or organization) and whether you have [
|
4948
4948
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
4949
4949
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
4950
|
-
# projects/`
|
4951
|
-
# specified (defaults to global): `projects/`
|
4952
|
-
# location specified: `organizations/`
|
4950
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
4951
|
+
# specified (defaults to global): `projects/`project_id`` + Organizations scope,
|
4952
|
+
# location specified: `organizations/`org_id`/locations/`location_id`` +
|
4953
4953
|
# Organizations scope, no location specified (defaults to global): `
|
4954
|
-
# organizations/`
|
4955
|
-
# project with the identifier `example-project`, and specifies the `
|
4956
|
-
# location for processing data: parent=projects/example-project/
|
4957
|
-
# europe-west3
|
4954
|
+
# organizations/`org_id`` The following example `parent` string specifies a
|
4955
|
+
# parent project with the identifier `example-project`, and specifies the `
|
4956
|
+
# europe-west3` location for processing data: parent=projects/example-project/
|
4957
|
+
# locations/europe-west3
|
4958
4958
|
# @param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateInspectTemplateRequest] google_privacy_dlp_v2_create_inspect_template_request_object
|
4959
4959
|
# @param [String] fields
|
4960
4960
|
# Selector specifying which fields to include in a partial response.
|
@@ -5058,14 +5058,14 @@ module Google
|
|
5058
5058
|
# the scope of the request (project or organization) and whether you have [
|
5059
5059
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
5060
5060
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
5061
|
-
# projects/`
|
5062
|
-
# specified (defaults to global): `projects/`
|
5063
|
-
# location specified: `organizations/`
|
5061
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
5062
|
+
# specified (defaults to global): `projects/`project_id`` + Organizations scope,
|
5063
|
+
# location specified: `organizations/`org_id`/locations/`location_id`` +
|
5064
5064
|
# Organizations scope, no location specified (defaults to global): `
|
5065
|
-
# organizations/`
|
5066
|
-
# project with the identifier `example-project`, and specifies the `
|
5067
|
-
# location for processing data: parent=projects/example-project/
|
5068
|
-
# europe-west3
|
5065
|
+
# organizations/`org_id`` The following example `parent` string specifies a
|
5066
|
+
# parent project with the identifier `example-project`, and specifies the `
|
5067
|
+
# europe-west3` location for processing data: parent=projects/example-project/
|
5068
|
+
# locations/europe-west3
|
5069
5069
|
# @param [String] location_id
|
5070
5070
|
# Deprecated. This field has no effect.
|
5071
5071
|
# @param [String] order_by
|
@@ -5191,8 +5191,8 @@ module Google
|
|
5191
5191
|
# Required. Parent resource name. The format of this value varies depending on
|
5192
5192
|
# whether you have [specified a processing location](https://cloud.google.com/
|
5193
5193
|
# sensitive-data-protection/docs/specifying-location): + Projects scope,
|
5194
|
-
# location specified: `projects/`
|
5195
|
-
# scope, no location specified (defaults to global): `projects/`
|
5194
|
+
# location specified: `projects/`project_id`/locations/`location_id`` + Projects
|
5195
|
+
# scope, no location specified (defaults to global): `projects/`project_id`` The
|
5196
5196
|
# following example `parent` string specifies a parent project with the
|
5197
5197
|
# identifier `example-project`, and specifies the `europe-west3` location for
|
5198
5198
|
# processing data: parent=projects/example-project/locations/europe-west3
|
@@ -5332,8 +5332,8 @@ module Google
|
|
5332
5332
|
# Required. Parent resource name. The format of this value varies depending on
|
5333
5333
|
# whether you have [specified a processing location](https://cloud.google.com/
|
5334
5334
|
# sensitive-data-protection/docs/specifying-location): + Projects scope,
|
5335
|
-
# location specified: `projects/`
|
5336
|
-
# scope, no location specified (defaults to global): `projects/`
|
5335
|
+
# location specified: `projects/`project_id`/locations/`location_id`` + Projects
|
5336
|
+
# scope, no location specified (defaults to global): `projects/`project_id`` The
|
5337
5337
|
# following example `parent` string specifies a parent project with the
|
5338
5338
|
# identifier `example-project`, and specifies the `europe-west3` location for
|
5339
5339
|
# processing data: parent=projects/example-project/locations/europe-west3
|
@@ -5537,14 +5537,14 @@ module Google
|
|
5537
5537
|
# the scope of the request (project or organization) and whether you have [
|
5538
5538
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
5539
5539
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
5540
|
-
# projects/`
|
5541
|
-
# specified (defaults to global): `projects/`
|
5542
|
-
# location specified: `organizations/`
|
5540
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
5541
|
+
# specified (defaults to global): `projects/`project_id`` + Organizations scope,
|
5542
|
+
# location specified: `organizations/`org_id`/locations/`location_id`` +
|
5543
5543
|
# Organizations scope, no location specified (defaults to global): `
|
5544
|
-
# organizations/`
|
5545
|
-
# project with the identifier `example-project`, and specifies the `
|
5546
|
-
# location for processing data: parent=projects/example-project/
|
5547
|
-
# europe-west3
|
5544
|
+
# organizations/`org_id`` The following example `parent` string specifies a
|
5545
|
+
# parent project with the identifier `example-project`, and specifies the `
|
5546
|
+
# europe-west3` location for processing data: parent=projects/example-project/
|
5547
|
+
# locations/europe-west3
|
5548
5548
|
# @param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateStoredInfoTypeRequest] google_privacy_dlp_v2_create_stored_info_type_request_object
|
5549
5549
|
# @param [String] fields
|
5550
5550
|
# Selector specifying which fields to include in a partial response.
|
@@ -5648,8 +5648,8 @@ module Google
|
|
5648
5648
|
# the scope of the request (project or organization) and whether you have [
|
5649
5649
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
5650
5650
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
5651
|
-
# projects/`
|
5652
|
-
# specified (defaults to global): `projects/`
|
5651
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
5652
|
+
# specified (defaults to global): `projects/`project_id`` The following example `
|
5653
5653
|
# parent` string specifies a parent project with the identifier `example-project`
|
5654
5654
|
# , and specifies the `europe-west3` location for processing data: parent=
|
5655
5655
|
# projects/example-project/locations/europe-west3
|
@@ -5876,14 +5876,14 @@ module Google
|
|
5876
5876
|
# the scope of the request (project or organization) and whether you have [
|
5877
5877
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
5878
5878
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
5879
|
-
# projects/`
|
5880
|
-
# specified (defaults to global): `projects/`
|
5881
|
-
# location specified: `organizations/`
|
5879
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
5880
|
+
# specified (defaults to global): `projects/`project_id`` + Organizations scope,
|
5881
|
+
# location specified: `organizations/`org_id`/locations/`location_id`` +
|
5882
5882
|
# Organizations scope, no location specified (defaults to global): `
|
5883
|
-
# organizations/`
|
5884
|
-
# project with the identifier `example-project`, and specifies the `
|
5885
|
-
# location for processing data: parent=projects/example-project/
|
5886
|
-
# europe-west3
|
5883
|
+
# organizations/`org_id`` The following example `parent` string specifies a
|
5884
|
+
# parent project with the identifier `example-project`, and specifies the `
|
5885
|
+
# europe-west3` location for processing data: parent=projects/example-project/
|
5886
|
+
# locations/europe-west3
|
5887
5887
|
# @param [Google::Apis::DlpV2::GooglePrivacyDlpV2CreateStoredInfoTypeRequest] google_privacy_dlp_v2_create_stored_info_type_request_object
|
5888
5888
|
# @param [String] fields
|
5889
5889
|
# Selector specifying which fields to include in a partial response.
|
@@ -5987,8 +5987,8 @@ module Google
|
|
5987
5987
|
# the scope of the request (project or organization) and whether you have [
|
5988
5988
|
# specified a processing location](https://cloud.google.com/sensitive-data-
|
5989
5989
|
# protection/docs/specifying-location): + Projects scope, location specified: `
|
5990
|
-
# projects/`
|
5991
|
-
# specified (defaults to global): `projects/`
|
5990
|
+
# projects/`project_id`/locations/`location_id`` + Projects scope, no location
|
5991
|
+
# specified (defaults to global): `projects/`project_id`` The following example `
|
5992
5992
|
# parent` string specifies a parent project with the identifier `example-project`
|
5993
5993
|
# , and specifies the `europe-west3` location for processing data: parent=
|
5994
5994
|
# projects/example-project/locations/europe-west3
|
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.
|
4
|
+
version: 0.72.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-
|
11
|
+
date: 2024-08-18 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dlp_v2/v0.72.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: []
|