google-apis-dlp_v2 0.68.0 → 0.69.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: 6129450312fb03d5caf6f84a14ed47db4a89f96fa147c9116b4a4a98855c5677
4
- data.tar.gz: f9e5169aaf7412e9f7581a4cde46f985480582602968d62faf4a4730cc174de1
3
+ metadata.gz: 456235150646e8158cc09d3cb0d30cd1bac1ec0f1792bfb7b5a2e536f5417a25
4
+ data.tar.gz: b1498ab12ec7be5699b6e39de6771e4918ecf7b6ec4a3b629eba2860be4e19db
5
5
  SHA512:
6
- metadata.gz: 42c95340d26d9d4aaf21df72d313259c8243ebe8636d1e38272a035302e6a0b1891a39308f8ec7281044e9e2b8eebe5a5953ed22b92394bd398eb3cb58e293df
7
- data.tar.gz: 3792e225fe3474e28d480b3aec5efdffb5e9598a50befbff1311f8e2a7790d0d1e9470f0360d66f29c6e81be5b7b8d4154e3148bbe2f337643c7e3162445c3d2
6
+ metadata.gz: 7b2179fb581c8ff886a5ab63d33c71ec7c12fd2682931756f5c0da211350efb9e71f95234e60a026401a7e34627539febddcb633ea24cb6e76e25f32c0884cba
7
+ data.tar.gz: 14647f7e8896e4aa37ca0e429974ecfe588443cdf2f69d40e66e1b6608f06659801bc1921f1dd60dfe54fc09dbc78289008640dc20aecfa6a1ddb9d9c800a36a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dlp_v2
2
2
 
3
+ ### v0.69.0 (2024-07-25)
4
+
5
+ * Regenerated from discovery document revision 20240707
6
+
3
7
  ### v0.68.0 (2024-06-30)
4
8
 
5
9
  * Regenerated from discovery document revision 20240624
@@ -188,6 +188,19 @@ module Google
188
188
  end
189
189
  end
190
190
 
191
+ # Match discovery resources not covered by any other filter.
192
+ class GooglePrivacyDlpV2AllOtherResources
193
+ include Google::Apis::Core::Hashable
194
+
195
+ def initialize(**args)
196
+ update!(**args)
197
+ end
198
+
199
+ # Update properties of this object
200
+ def update!(**args)
201
+ end
202
+ end
203
+
191
204
  # Apply to all text.
192
205
  class GooglePrivacyDlpV2AllText
193
206
  include Google::Apis::Core::Hashable
@@ -1042,6 +1055,47 @@ module Google
1042
1055
  end
1043
1056
  end
1044
1057
 
1058
+ # Target used to match against for discovery with Cloud Storage buckets.
1059
+ class GooglePrivacyDlpV2CloudStorageDiscoveryTarget
1060
+ include Google::Apis::Core::Hashable
1061
+
1062
+ # Requirements that must be true before a file store is scanned in discovery for
1063
+ # the first time. There is an AND relationship between the top-level attributes.
1064
+ # Corresponds to the JSON property `conditions`
1065
+ # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryFileStoreConditions]
1066
+ attr_accessor :conditions
1067
+
1068
+ # Do not profile the tables.
1069
+ # Corresponds to the JSON property `disabled`
1070
+ # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2Disabled]
1071
+ attr_accessor :disabled
1072
+
1073
+ # Determines which buckets will have profiles generated within an organization
1074
+ # or project. Includes the ability to filter by regular expression patterns on
1075
+ # project ID and bucket name.
1076
+ # Corresponds to the JSON property `filter`
1077
+ # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryCloudStorageFilter]
1078
+ attr_accessor :filter
1079
+
1080
+ # How often existing buckets should have their profiles refreshed. New buckets
1081
+ # are scanned as quickly as possible depending on system capacity.
1082
+ # Corresponds to the JSON property `generationCadence`
1083
+ # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryCloudStorageGenerationCadence]
1084
+ attr_accessor :generation_cadence
1085
+
1086
+ def initialize(**args)
1087
+ update!(**args)
1088
+ end
1089
+
1090
+ # Update properties of this object
1091
+ def update!(**args)
1092
+ @conditions = args[:conditions] if args.key?(:conditions)
1093
+ @disabled = args[:disabled] if args.key?(:disabled)
1094
+ @filter = args[:filter] if args.key?(:filter)
1095
+ @generation_cadence = args[:generation_cadence] if args.key?(:generation_cadence)
1096
+ end
1097
+ end
1098
+
1045
1099
  # Message representing a set of files in Cloud Storage.
1046
1100
  class GooglePrivacyDlpV2CloudStorageFileSet
1047
1101
  include Google::Apis::Core::Hashable
@@ -1150,6 +1204,36 @@ module Google
1150
1204
  end
1151
1205
  end
1152
1206
 
1207
+ # A pattern to match against one or more file stores. At least one pattern must
1208
+ # be specified. Regular expressions use RE2 [syntax](https://github.com/google/
1209
+ # re2/wiki/Syntax); a guide can be found under the google/re2 repository on
1210
+ # GitHub.
1211
+ class GooglePrivacyDlpV2CloudStorageRegex
1212
+ include Google::Apis::Core::Hashable
1213
+
1214
+ # Optional. Regex to test the bucket name against. If empty, all buckets match.
1215
+ # Example: "marketing2021" or "(marketing)\d`4`" will both match the bucket gs://
1216
+ # marketing2021
1217
+ # Corresponds to the JSON property `bucketNameRegex`
1218
+ # @return [String]
1219
+ attr_accessor :bucket_name_regex
1220
+
1221
+ # Optional. For organizations, if unset, will match all projects.
1222
+ # Corresponds to the JSON property `projectIdRegex`
1223
+ # @return [String]
1224
+ attr_accessor :project_id_regex
1225
+
1226
+ def initialize(**args)
1227
+ update!(**args)
1228
+ end
1229
+
1230
+ # Update properties of this object
1231
+ def update!(**args)
1232
+ @bucket_name_regex = args[:bucket_name_regex] if args.key?(:bucket_name_regex)
1233
+ @project_id_regex = args[:project_id_regex] if args.key?(:project_id_regex)
1234
+ end
1235
+ end
1236
+
1153
1237
  # Message representing a set of files in a Cloud Storage bucket. Regular
1154
1238
  # expressions are used to allow fine-grained control over which files in the
1155
1239
  # bucket to include. Included files are those that match at least one item in `
@@ -1209,6 +1293,32 @@ module Google
1209
1293
  end
1210
1294
  end
1211
1295
 
1296
+ # Identifies a single Cloud Storage bucket.
1297
+ class GooglePrivacyDlpV2CloudStorageResourceReference
1298
+ include Google::Apis::Core::Hashable
1299
+
1300
+ # Required. The bucket to scan.
1301
+ # Corresponds to the JSON property `bucketName`
1302
+ # @return [String]
1303
+ attr_accessor :bucket_name
1304
+
1305
+ # Required. If within a project-level config, then this must match the config's
1306
+ # project id.
1307
+ # Corresponds to the JSON property `projectId`
1308
+ # @return [String]
1309
+ attr_accessor :project_id
1310
+
1311
+ def initialize(**args)
1312
+ update!(**args)
1313
+ end
1314
+
1315
+ # Update properties of this object
1316
+ def update!(**args)
1317
+ @bucket_name = args[:bucket_name] if args.key?(:bucket_name)
1318
+ @project_id = args[:project_id] if args.key?(:project_id)
1319
+ end
1320
+ end
1321
+
1212
1322
  # Represents a color in the RGB color space.
1213
1323
  class GooglePrivacyDlpV2Color
1214
1324
  include Google::Apis::Core::Hashable
@@ -2193,7 +2303,7 @@ module Google
2193
2303
  # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ColumnDataProfile]
2194
2304
  attr_accessor :column_profile
2195
2305
 
2196
- # The profile for a file store. * Google Cloud Storage: maps 1:1 with a bucket.
2306
+ # The profile for a file store. * Cloud Storage: maps 1:1 with a bucket.
2197
2307
  # Corresponds to the JSON property `fileStoreProfile`
2198
2308
  # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FileStoreDataProfile]
2199
2309
  attr_accessor :file_store_profile
@@ -2323,7 +2433,7 @@ module Google
2323
2433
  class GooglePrivacyDlpV2DataProfileLocation
2324
2434
  include Google::Apis::Core::Hashable
2325
2435
 
2326
- # The ID of the Folder within an organization to scan.
2436
+ # The ID of the folder within an organization to scan.
2327
2437
  # Corresponds to the JSON property `folderId`
2328
2438
  # @return [Fixnum]
2329
2439
  attr_accessor :folder_id
@@ -2374,7 +2484,7 @@ module Google
2374
2484
  # @return [String]
2375
2485
  attr_accessor :event
2376
2486
 
2377
- # The profile for a file store. * Google Cloud Storage: maps 1:1 with a bucket.
2487
+ # The profile for a file store. * Cloud Storage: maps 1:1 with a bucket.
2378
2488
  # Corresponds to the JSON property `fileStoreProfile`
2379
2489
  # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FileStoreDataProfile]
2380
2490
  attr_accessor :file_store_profile
@@ -2715,7 +2825,7 @@ module Google
2715
2825
  include Google::Apis::Core::Hashable
2716
2826
 
2717
2827
  # Required. User settable Cloud Storage bucket and folders to store de-
2718
- # identified files. This field must be set for cloud storage deidentification.
2828
+ # identified files. This field must be set for Cloud Storage deidentification.
2719
2829
  # The output Cloud Storage bucket must be different from the input bucket. De-
2720
2830
  # identified files will overwrite files in the output path. Form of: gs://bucket/
2721
2831
  # folder/ or gs://bucket
@@ -2724,11 +2834,11 @@ module Google
2724
2834
  attr_accessor :cloud_storage_output
2725
2835
 
2726
2836
  # List of user-specified file type groups to transform. If specified, only the
2727
- # files with these filetypes will be transformed. If empty, all supported files
2837
+ # files with these file types will be transformed. If empty, all supported files
2728
2838
  # will be transformed. Supported types may be automatically added over time. If
2729
2839
  # a file type is set in this field that isn't supported by the Deidentify action
2730
2840
  # then the job will fail and will not be successfully created/started. Currently
2731
- # the only filetypes supported are: IMAGES, TEXT_FILES, CSV, TSV.
2841
+ # the only file types supported are: IMAGES, TEXT_FILES, CSV, TSV.
2732
2842
  # Corresponds to the JSON property `fileTypesToTransform`
2733
2843
  # @return [Array<String>]
2734
2844
  attr_accessor :file_types_to_transform
@@ -3384,6 +3494,99 @@ module Google
3384
3494
  end
3385
3495
  end
3386
3496
 
3497
+ # Requirements that must be true before a Cloud Storage bucket or object is
3498
+ # scanned in discovery for the first time. There is an AND relationship between
3499
+ # the top-level attributes.
3500
+ class GooglePrivacyDlpV2DiscoveryCloudStorageConditions
3501
+ include Google::Apis::Core::Hashable
3502
+
3503
+ # Required. Only objects with the specified attributes will be scanned. Defaults
3504
+ # to [ALL_SUPPORTED_BUCKETS] if unset.
3505
+ # Corresponds to the JSON property `includedBucketAttributes`
3506
+ # @return [Array<String>]
3507
+ attr_accessor :included_bucket_attributes
3508
+
3509
+ # Required. Only objects with the specified attributes will be scanned. If an
3510
+ # object has one of the specified attributes but is inside an excluded bucket,
3511
+ # it will not be scanned. Defaults to [ALL_SUPPORTED_OBJECTS]. A profile will be
3512
+ # created even if no objects match the included_object_attributes.
3513
+ # Corresponds to the JSON property `includedObjectAttributes`
3514
+ # @return [Array<String>]
3515
+ attr_accessor :included_object_attributes
3516
+
3517
+ def initialize(**args)
3518
+ update!(**args)
3519
+ end
3520
+
3521
+ # Update properties of this object
3522
+ def update!(**args)
3523
+ @included_bucket_attributes = args[:included_bucket_attributes] if args.key?(:included_bucket_attributes)
3524
+ @included_object_attributes = args[:included_object_attributes] if args.key?(:included_object_attributes)
3525
+ end
3526
+ end
3527
+
3528
+ # Determines which buckets will have profiles generated within an organization
3529
+ # or project. Includes the ability to filter by regular expression patterns on
3530
+ # project ID and bucket name.
3531
+ class GooglePrivacyDlpV2DiscoveryCloudStorageFilter
3532
+ include Google::Apis::Core::Hashable
3533
+
3534
+ # Identifies a single Cloud Storage bucket.
3535
+ # Corresponds to the JSON property `cloudStorageResourceReference`
3536
+ # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CloudStorageResourceReference]
3537
+ attr_accessor :cloud_storage_resource_reference
3538
+
3539
+ # Match file stores (e.g. buckets) using regex filters.
3540
+ # Corresponds to the JSON property `collection`
3541
+ # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FileStoreCollection]
3542
+ attr_accessor :collection
3543
+
3544
+ # Match discovery resources not covered by any other filter.
3545
+ # Corresponds to the JSON property `others`
3546
+ # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2AllOtherResources]
3547
+ attr_accessor :others
3548
+
3549
+ def initialize(**args)
3550
+ update!(**args)
3551
+ end
3552
+
3553
+ # Update properties of this object
3554
+ def update!(**args)
3555
+ @cloud_storage_resource_reference = args[:cloud_storage_resource_reference] if args.key?(:cloud_storage_resource_reference)
3556
+ @collection = args[:collection] if args.key?(:collection)
3557
+ @others = args[:others] if args.key?(:others)
3558
+ end
3559
+ end
3560
+
3561
+ # How often existing buckets should have their profiles refreshed. New buckets
3562
+ # are scanned as quickly as possible depending on system capacity.
3563
+ class GooglePrivacyDlpV2DiscoveryCloudStorageGenerationCadence
3564
+ include Google::Apis::Core::Hashable
3565
+
3566
+ # The cadence at which to update data profiles when the inspection rules defined
3567
+ # by the `InspectTemplate` change.
3568
+ # Corresponds to the JSON property `inspectTemplateModifiedCadence`
3569
+ # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryInspectTemplateModifiedCadence]
3570
+ attr_accessor :inspect_template_modified_cadence
3571
+
3572
+ # Optional. Data changes in Cloud Storage can't trigger reprofiling. If you set
3573
+ # this field, profiles are refreshed at this frequency regardless of whether the
3574
+ # underlying buckets have changed. Defaults to never.
3575
+ # Corresponds to the JSON property `refreshFrequency`
3576
+ # @return [String]
3577
+ attr_accessor :refresh_frequency
3578
+
3579
+ def initialize(**args)
3580
+ update!(**args)
3581
+ end
3582
+
3583
+ # Update properties of this object
3584
+ def update!(**args)
3585
+ @inspect_template_modified_cadence = args[:inspect_template_modified_cadence] if args.key?(:inspect_template_modified_cadence)
3586
+ @refresh_frequency = args[:refresh_frequency] if args.key?(:refresh_frequency)
3587
+ end
3588
+ end
3589
+
3387
3590
  # Configuration for discovery to scan resources for profile generation. Only one
3388
3591
  # discovery configuration may exist per organization, folder, or project. The
3389
3592
  # generated data profiles are retained according to the [data retention policy] (
@@ -3481,12 +3684,54 @@ module Google
3481
3684
  end
3482
3685
  end
3483
3686
 
3687
+ # Requirements that must be true before a file store is scanned in discovery for
3688
+ # the first time. There is an AND relationship between the top-level attributes.
3689
+ class GooglePrivacyDlpV2DiscoveryFileStoreConditions
3690
+ include Google::Apis::Core::Hashable
3691
+
3692
+ # Requirements that must be true before a Cloud Storage bucket or object is
3693
+ # scanned in discovery for the first time. There is an AND relationship between
3694
+ # the top-level attributes.
3695
+ # Corresponds to the JSON property `cloudStorageConditions`
3696
+ # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryCloudStorageConditions]
3697
+ attr_accessor :cloud_storage_conditions
3698
+
3699
+ # Optional. File store must have been created after this date. Used to avoid
3700
+ # backfilling.
3701
+ # Corresponds to the JSON property `createdAfter`
3702
+ # @return [String]
3703
+ attr_accessor :created_after
3704
+
3705
+ # Optional. Minimum age a file store must have. If set, the value must be 1 hour
3706
+ # or greater.
3707
+ # Corresponds to the JSON property `minAge`
3708
+ # @return [String]
3709
+ attr_accessor :min_age
3710
+
3711
+ def initialize(**args)
3712
+ update!(**args)
3713
+ end
3714
+
3715
+ # Update properties of this object
3716
+ def update!(**args)
3717
+ @cloud_storage_conditions = args[:cloud_storage_conditions] if args.key?(:cloud_storage_conditions)
3718
+ @created_after = args[:created_after] if args.key?(:created_after)
3719
+ @min_age = args[:min_age] if args.key?(:min_age)
3720
+ end
3721
+ end
3722
+
3484
3723
  # What must take place for a profile to be updated and how frequently it should
3485
3724
  # occur. New tables are scanned as quickly as possible depending on system
3486
3725
  # capacity.
3487
3726
  class GooglePrivacyDlpV2DiscoveryGenerationCadence
3488
3727
  include Google::Apis::Core::Hashable
3489
3728
 
3729
+ # The cadence at which to update data profiles when the inspection rules defined
3730
+ # by the `InspectTemplate` change.
3731
+ # Corresponds to the JSON property `inspectTemplateModifiedCadence`
3732
+ # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryInspectTemplateModifiedCadence]
3733
+ attr_accessor :inspect_template_modified_cadence
3734
+
3490
3735
  # The cadence at which to update data profiles when a schema is modified.
3491
3736
  # Corresponds to the JSON property `schemaModifiedCadence`
3492
3737
  # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoverySchemaModifiedCadence]
@@ -3503,11 +3748,33 @@ module Google
3503
3748
 
3504
3749
  # Update properties of this object
3505
3750
  def update!(**args)
3751
+ @inspect_template_modified_cadence = args[:inspect_template_modified_cadence] if args.key?(:inspect_template_modified_cadence)
3506
3752
  @schema_modified_cadence = args[:schema_modified_cadence] if args.key?(:schema_modified_cadence)
3507
3753
  @table_modified_cadence = args[:table_modified_cadence] if args.key?(:table_modified_cadence)
3508
3754
  end
3509
3755
  end
3510
3756
 
3757
+ # The cadence at which to update data profiles when the inspection rules defined
3758
+ # by the `InspectTemplate` change.
3759
+ class GooglePrivacyDlpV2DiscoveryInspectTemplateModifiedCadence
3760
+ include Google::Apis::Core::Hashable
3761
+
3762
+ # How frequently data profiles can be updated when the template is modified.
3763
+ # Defaults to never.
3764
+ # Corresponds to the JSON property `frequency`
3765
+ # @return [String]
3766
+ attr_accessor :frequency
3767
+
3768
+ def initialize(**args)
3769
+ update!(**args)
3770
+ end
3771
+
3772
+ # Update properties of this object
3773
+ def update!(**args)
3774
+ @frequency = args[:frequency] if args.key?(:frequency)
3775
+ end
3776
+ end
3777
+
3511
3778
  # The cadence at which to update data profiles when a schema is modified.
3512
3779
  class GooglePrivacyDlpV2DiscoverySchemaModifiedCadence
3513
3780
  include Google::Apis::Core::Hashable
@@ -3540,7 +3807,7 @@ module Google
3540
3807
  class GooglePrivacyDlpV2DiscoveryStartingLocation
3541
3808
  include Google::Apis::Core::Hashable
3542
3809
 
3543
- # The ID of the Folder within an organization to scan.
3810
+ # The ID of the folder within an organization to scan.
3544
3811
  # Corresponds to the JSON property `folderId`
3545
3812
  # @return [Fixnum]
3546
3813
  attr_accessor :folder_id
@@ -3602,6 +3869,11 @@ module Google
3602
3869
  # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CloudSqlDiscoveryTarget]
3603
3870
  attr_accessor :cloud_sql_target
3604
3871
 
3872
+ # Target used to match against for discovery with Cloud Storage buckets.
3873
+ # Corresponds to the JSON property `cloudStorageTarget`
3874
+ # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CloudStorageDiscoveryTarget]
3875
+ attr_accessor :cloud_storage_target
3876
+
3605
3877
  # Discovery target for credentials and secrets in cloud resource metadata. This
3606
3878
  # target does not include any filtering or frequency controls. Cloud DLP will
3607
3879
  # scan cloud resource metadata for secrets daily. No inspect template should be
@@ -3622,6 +3894,7 @@ module Google
3622
3894
  def update!(**args)
3623
3895
  @big_query_target = args[:big_query_target] if args.key?(:big_query_target)
3624
3896
  @cloud_sql_target = args[:cloud_sql_target] if args.key?(:cloud_sql_target)
3897
+ @cloud_storage_target = args[:cloud_storage_target] if args.key?(:cloud_storage_target)
3625
3898
  @secrets_target = args[:secrets_target] if args.key?(:secrets_target)
3626
3899
  end
3627
3900
  end
@@ -4028,7 +4301,7 @@ module Google
4028
4301
  # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2DataRiskLevel]
4029
4302
  attr_accessor :data_risk_level
4030
4303
 
4031
- # A list of Errors detected while scanning this cluster. The list is truncated
4304
+ # A list of errors detected while scanning this cluster. The list is truncated
4032
4305
  # to 10 per cluster.
4033
4306
  # Corresponds to the JSON property `errors`
4034
4307
  # @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Error>]
@@ -4172,7 +4445,27 @@ module Google
4172
4445
  end
4173
4446
  end
4174
4447
 
4175
- # The profile for a file store. * Google Cloud Storage: maps 1:1 with a bucket.
4448
+ # Match file stores (e.g. buckets) using regex filters.
4449
+ class GooglePrivacyDlpV2FileStoreCollection
4450
+ include Google::Apis::Core::Hashable
4451
+
4452
+ # A collection of regular expressions to determine what file store to match
4453
+ # against.
4454
+ # Corresponds to the JSON property `includeRegexes`
4455
+ # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2FileStoreRegexes]
4456
+ attr_accessor :include_regexes
4457
+
4458
+ def initialize(**args)
4459
+ update!(**args)
4460
+ end
4461
+
4462
+ # Update properties of this object
4463
+ def update!(**args)
4464
+ @include_regexes = args[:include_regexes] if args.key?(:include_regexes)
4465
+ end
4466
+ end
4467
+
4468
+ # The profile for a file store. * Cloud Storage: maps 1:1 with a bucket.
4176
4469
  class GooglePrivacyDlpV2FileStoreDataProfile
4177
4470
  include Google::Apis::Core::Hashable
4178
4471
 
@@ -4198,9 +4491,9 @@ module Google
4198
4491
  attr_accessor :data_source_type
4199
4492
 
4200
4493
  # For resources that have multiple storage locations, these are those regions.
4201
- # For Google Cloud Storage this is the list of regions chosen for dual-region
4202
- # storage. `file_store_location` will normally be the corresponding multi-region
4203
- # for the list of individual locations. The first region is always picked as the
4494
+ # For Cloud Storage this is the list of regions chosen for dual-region storage. `
4495
+ # file_store_location` will normally be the corresponding multi-region for the
4496
+ # list of individual locations. The first region is always picked as the
4204
4497
  # processing and storage location for the data profile.
4205
4498
  # Corresponds to the JSON property `dataStorageLocations`
4206
4499
  # @return [Array<String>]
@@ -4222,13 +4515,13 @@ module Google
4222
4515
  attr_accessor :file_store_is_empty
4223
4516
  alias_method :file_store_is_empty?, :file_store_is_empty
4224
4517
 
4225
- # The location of the file store. * Google Cloud Storage: https://cloud.google.
4226
- # com/storage/docs/locations#available-locations
4518
+ # The location of the file store. * Cloud Storage: https://cloud.google.com/
4519
+ # storage/docs/locations#available-locations
4227
4520
  # Corresponds to the JSON property `fileStoreLocation`
4228
4521
  # @return [String]
4229
4522
  attr_accessor :file_store_location
4230
4523
 
4231
- # The file store path. * Google Cloud Storage: `gs://`bucket``
4524
+ # The file store path. * Cloud Storage: `gs://`bucket``
4232
4525
  # Corresponds to the JSON property `fileStorePath`
4233
4526
  # @return [String]
4234
4527
  attr_accessor :file_store_path
@@ -4265,7 +4558,7 @@ module Google
4265
4558
  # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ProfileStatus]
4266
4559
  attr_accessor :profile_status
4267
4560
 
4268
- # The resource name to the project data profile for this file store.
4561
+ # The resource name of the project data profile for this file store.
4269
4562
  # Corresponds to the JSON property `projectDataProfile`
4270
4563
  # @return [String]
4271
4564
  attr_accessor :project_data_profile
@@ -4275,10 +4568,10 @@ module Google
4275
4568
  # @return [String]
4276
4569
  attr_accessor :project_id
4277
4570
 
4278
- # Attributes of the resource being profiled. Currently used attributes: -
4279
- # customer_managed_encryption: boolean true: the resource is encrypted with a
4280
- # customer-managed key. false: the resource is encrypted with a provider-managed
4281
- # key.
4571
+ # Attributes of the resource being profiled. Currently used attributes: *
4572
+ # customer_managed_encryption: boolean - true: the resource is encrypted with a
4573
+ # customer-managed key. - false: the resource is encrypted with a provider-
4574
+ # managed key.
4282
4575
  # Corresponds to the JSON property `resourceAttributes`
4283
4576
  # @return [Hash<String,Google::Apis::DlpV2::GooglePrivacyDlpV2Value>]
4284
4577
  attr_accessor :resource_attributes
@@ -4355,6 +4648,50 @@ module Google
4355
4648
  end
4356
4649
  end
4357
4650
 
4651
+ # A pattern to match against one or more file stores.
4652
+ class GooglePrivacyDlpV2FileStoreRegex
4653
+ include Google::Apis::Core::Hashable
4654
+
4655
+ # A pattern to match against one or more file stores. At least one pattern must
4656
+ # be specified. Regular expressions use RE2 [syntax](https://github.com/google/
4657
+ # re2/wiki/Syntax); a guide can be found under the google/re2 repository on
4658
+ # GitHub.
4659
+ # Corresponds to the JSON property `cloudStorageRegex`
4660
+ # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CloudStorageRegex]
4661
+ attr_accessor :cloud_storage_regex
4662
+
4663
+ def initialize(**args)
4664
+ update!(**args)
4665
+ end
4666
+
4667
+ # Update properties of this object
4668
+ def update!(**args)
4669
+ @cloud_storage_regex = args[:cloud_storage_regex] if args.key?(:cloud_storage_regex)
4670
+ end
4671
+ end
4672
+
4673
+ # A collection of regular expressions to determine what file store to match
4674
+ # against.
4675
+ class GooglePrivacyDlpV2FileStoreRegexes
4676
+ include Google::Apis::Core::Hashable
4677
+
4678
+ # Required. The group of regular expression patterns to match against one or
4679
+ # more file stores. Maximum of 100 entries. The sum of all regular expression's
4680
+ # length can't exceed 10 KiB.
4681
+ # Corresponds to the JSON property `patterns`
4682
+ # @return [Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FileStoreRegex>]
4683
+ attr_accessor :patterns
4684
+
4685
+ def initialize(**args)
4686
+ update!(**args)
4687
+ end
4688
+
4689
+ # Update properties of this object
4690
+ def update!(**args)
4691
+ @patterns = args[:patterns] if args.key?(:patterns)
4692
+ end
4693
+ end
4694
+
4358
4695
  # Represents a piece of potentially sensitive content.
4359
4696
  class GooglePrivacyDlpV2Finding
4360
4697
  include Google::Apis::Core::Hashable
@@ -8761,7 +9098,7 @@ module Google
8761
9098
  # @return [Google::Apis::DlpV2::GooglePrivacyDlpV2ProfileStatus]
8762
9099
  attr_accessor :profile_status
8763
9100
 
8764
- # The resource name to the project data profile for this table.
9101
+ # The resource name of the project data profile for this table.
8765
9102
  # Corresponds to the JSON property `projectDataProfile`
8766
9103
  # @return [String]
8767
9104
  attr_accessor :project_data_profile
@@ -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.68.0"
19
+ GEM_VERSION = "0.69.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240624"
25
+ REVISION = "20240707"
26
26
  end
27
27
  end
28
28
  end
@@ -58,6 +58,12 @@ module Google
58
58
  include Google::Apis::Core::JsonObjectSupport
59
59
  end
60
60
 
61
+ class GooglePrivacyDlpV2AllOtherResources
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
61
67
  class GooglePrivacyDlpV2AllText
62
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
69
 
@@ -208,6 +214,12 @@ module Google
208
214
  include Google::Apis::Core::JsonObjectSupport
209
215
  end
210
216
 
217
+ class GooglePrivacyDlpV2CloudStorageDiscoveryTarget
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
211
223
  class GooglePrivacyDlpV2CloudStorageFileSet
212
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
225
 
@@ -226,12 +238,24 @@ module Google
226
238
  include Google::Apis::Core::JsonObjectSupport
227
239
  end
228
240
 
241
+ class GooglePrivacyDlpV2CloudStorageRegex
242
+ class Representation < Google::Apis::Core::JsonRepresentation; end
243
+
244
+ include Google::Apis::Core::JsonObjectSupport
245
+ end
246
+
229
247
  class GooglePrivacyDlpV2CloudStorageRegexFileSet
230
248
  class Representation < Google::Apis::Core::JsonRepresentation; end
231
249
 
232
250
  include Google::Apis::Core::JsonObjectSupport
233
251
  end
234
252
 
253
+ class GooglePrivacyDlpV2CloudStorageResourceReference
254
+ class Representation < Google::Apis::Core::JsonRepresentation; end
255
+
256
+ include Google::Apis::Core::JsonObjectSupport
257
+ end
258
+
235
259
  class GooglePrivacyDlpV2Color
236
260
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
261
 
@@ -568,18 +592,48 @@ module Google
568
592
  include Google::Apis::Core::JsonObjectSupport
569
593
  end
570
594
 
595
+ class GooglePrivacyDlpV2DiscoveryCloudStorageConditions
596
+ class Representation < Google::Apis::Core::JsonRepresentation; end
597
+
598
+ include Google::Apis::Core::JsonObjectSupport
599
+ end
600
+
601
+ class GooglePrivacyDlpV2DiscoveryCloudStorageFilter
602
+ class Representation < Google::Apis::Core::JsonRepresentation; end
603
+
604
+ include Google::Apis::Core::JsonObjectSupport
605
+ end
606
+
607
+ class GooglePrivacyDlpV2DiscoveryCloudStorageGenerationCadence
608
+ class Representation < Google::Apis::Core::JsonRepresentation; end
609
+
610
+ include Google::Apis::Core::JsonObjectSupport
611
+ end
612
+
571
613
  class GooglePrivacyDlpV2DiscoveryConfig
572
614
  class Representation < Google::Apis::Core::JsonRepresentation; end
573
615
 
574
616
  include Google::Apis::Core::JsonObjectSupport
575
617
  end
576
618
 
619
+ class GooglePrivacyDlpV2DiscoveryFileStoreConditions
620
+ class Representation < Google::Apis::Core::JsonRepresentation; end
621
+
622
+ include Google::Apis::Core::JsonObjectSupport
623
+ end
624
+
577
625
  class GooglePrivacyDlpV2DiscoveryGenerationCadence
578
626
  class Representation < Google::Apis::Core::JsonRepresentation; end
579
627
 
580
628
  include Google::Apis::Core::JsonObjectSupport
581
629
  end
582
630
 
631
+ class GooglePrivacyDlpV2DiscoveryInspectTemplateModifiedCadence
632
+ class Representation < Google::Apis::Core::JsonRepresentation; end
633
+
634
+ include Google::Apis::Core::JsonObjectSupport
635
+ end
636
+
583
637
  class GooglePrivacyDlpV2DiscoverySchemaModifiedCadence
584
638
  class Representation < Google::Apis::Core::JsonRepresentation; end
585
639
 
@@ -694,6 +748,12 @@ module Google
694
748
  include Google::Apis::Core::JsonObjectSupport
695
749
  end
696
750
 
751
+ class GooglePrivacyDlpV2FileStoreCollection
752
+ class Representation < Google::Apis::Core::JsonRepresentation; end
753
+
754
+ include Google::Apis::Core::JsonObjectSupport
755
+ end
756
+
697
757
  class GooglePrivacyDlpV2FileStoreDataProfile
698
758
  class Representation < Google::Apis::Core::JsonRepresentation; end
699
759
 
@@ -706,6 +766,18 @@ module Google
706
766
  include Google::Apis::Core::JsonObjectSupport
707
767
  end
708
768
 
769
+ class GooglePrivacyDlpV2FileStoreRegex
770
+ class Representation < Google::Apis::Core::JsonRepresentation; end
771
+
772
+ include Google::Apis::Core::JsonObjectSupport
773
+ end
774
+
775
+ class GooglePrivacyDlpV2FileStoreRegexes
776
+ class Representation < Google::Apis::Core::JsonRepresentation; end
777
+
778
+ include Google::Apis::Core::JsonObjectSupport
779
+ end
780
+
709
781
  class GooglePrivacyDlpV2Finding
710
782
  class Representation < Google::Apis::Core::JsonRepresentation; end
711
783
 
@@ -1778,6 +1850,12 @@ module Google
1778
1850
  end
1779
1851
  end
1780
1852
 
1853
+ class GooglePrivacyDlpV2AllOtherResources
1854
+ # @private
1855
+ class Representation < Google::Apis::Core::JsonRepresentation
1856
+ end
1857
+ end
1858
+
1781
1859
  class GooglePrivacyDlpV2AllText
1782
1860
  # @private
1783
1861
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2035,6 +2113,20 @@ module Google
2035
2113
  end
2036
2114
  end
2037
2115
 
2116
+ class GooglePrivacyDlpV2CloudStorageDiscoveryTarget
2117
+ # @private
2118
+ class Representation < Google::Apis::Core::JsonRepresentation
2119
+ property :conditions, as: 'conditions', class: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryFileStoreConditions, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryFileStoreConditions::Representation
2120
+
2121
+ property :disabled, as: 'disabled', class: Google::Apis::DlpV2::GooglePrivacyDlpV2Disabled, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2Disabled::Representation
2122
+
2123
+ property :filter, as: 'filter', class: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryCloudStorageFilter, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryCloudStorageFilter::Representation
2124
+
2125
+ property :generation_cadence, as: 'generationCadence', class: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryCloudStorageGenerationCadence, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryCloudStorageGenerationCadence::Representation
2126
+
2127
+ end
2128
+ end
2129
+
2038
2130
  class GooglePrivacyDlpV2CloudStorageFileSet
2039
2131
  # @private
2040
2132
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2062,6 +2154,14 @@ module Google
2062
2154
  end
2063
2155
  end
2064
2156
 
2157
+ class GooglePrivacyDlpV2CloudStorageRegex
2158
+ # @private
2159
+ class Representation < Google::Apis::Core::JsonRepresentation
2160
+ property :bucket_name_regex, as: 'bucketNameRegex'
2161
+ property :project_id_regex, as: 'projectIdRegex'
2162
+ end
2163
+ end
2164
+
2065
2165
  class GooglePrivacyDlpV2CloudStorageRegexFileSet
2066
2166
  # @private
2067
2167
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2071,6 +2171,14 @@ module Google
2071
2171
  end
2072
2172
  end
2073
2173
 
2174
+ class GooglePrivacyDlpV2CloudStorageResourceReference
2175
+ # @private
2176
+ class Representation < Google::Apis::Core::JsonRepresentation
2177
+ property :bucket_name, as: 'bucketName'
2178
+ property :project_id, as: 'projectId'
2179
+ end
2180
+ end
2181
+
2074
2182
  class GooglePrivacyDlpV2Color
2075
2183
  # @private
2076
2184
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2689,6 +2797,35 @@ module Google
2689
2797
  end
2690
2798
  end
2691
2799
 
2800
+ class GooglePrivacyDlpV2DiscoveryCloudStorageConditions
2801
+ # @private
2802
+ class Representation < Google::Apis::Core::JsonRepresentation
2803
+ collection :included_bucket_attributes, as: 'includedBucketAttributes'
2804
+ collection :included_object_attributes, as: 'includedObjectAttributes'
2805
+ end
2806
+ end
2807
+
2808
+ class GooglePrivacyDlpV2DiscoveryCloudStorageFilter
2809
+ # @private
2810
+ class Representation < Google::Apis::Core::JsonRepresentation
2811
+ property :cloud_storage_resource_reference, as: 'cloudStorageResourceReference', class: Google::Apis::DlpV2::GooglePrivacyDlpV2CloudStorageResourceReference, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2CloudStorageResourceReference::Representation
2812
+
2813
+ property :collection, as: 'collection', class: Google::Apis::DlpV2::GooglePrivacyDlpV2FileStoreCollection, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2FileStoreCollection::Representation
2814
+
2815
+ property :others, as: 'others', class: Google::Apis::DlpV2::GooglePrivacyDlpV2AllOtherResources, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2AllOtherResources::Representation
2816
+
2817
+ end
2818
+ end
2819
+
2820
+ class GooglePrivacyDlpV2DiscoveryCloudStorageGenerationCadence
2821
+ # @private
2822
+ class Representation < Google::Apis::Core::JsonRepresentation
2823
+ property :inspect_template_modified_cadence, as: 'inspectTemplateModifiedCadence', class: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryInspectTemplateModifiedCadence, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryInspectTemplateModifiedCadence::Representation
2824
+
2825
+ property :refresh_frequency, as: 'refreshFrequency'
2826
+ end
2827
+ end
2828
+
2692
2829
  class GooglePrivacyDlpV2DiscoveryConfig
2693
2830
  # @private
2694
2831
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2710,9 +2847,21 @@ module Google
2710
2847
  end
2711
2848
  end
2712
2849
 
2850
+ class GooglePrivacyDlpV2DiscoveryFileStoreConditions
2851
+ # @private
2852
+ class Representation < Google::Apis::Core::JsonRepresentation
2853
+ property :cloud_storage_conditions, as: 'cloudStorageConditions', class: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryCloudStorageConditions, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryCloudStorageConditions::Representation
2854
+
2855
+ property :created_after, as: 'createdAfter'
2856
+ property :min_age, as: 'minAge'
2857
+ end
2858
+ end
2859
+
2713
2860
  class GooglePrivacyDlpV2DiscoveryGenerationCadence
2714
2861
  # @private
2715
2862
  class Representation < Google::Apis::Core::JsonRepresentation
2863
+ property :inspect_template_modified_cadence, as: 'inspectTemplateModifiedCadence', class: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryInspectTemplateModifiedCadence, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryInspectTemplateModifiedCadence::Representation
2864
+
2716
2865
  property :schema_modified_cadence, as: 'schemaModifiedCadence', class: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoverySchemaModifiedCadence, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoverySchemaModifiedCadence::Representation
2717
2866
 
2718
2867
  property :table_modified_cadence, as: 'tableModifiedCadence', class: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryTableModifiedCadence, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2DiscoveryTableModifiedCadence::Representation
@@ -2720,6 +2869,13 @@ module Google
2720
2869
  end
2721
2870
  end
2722
2871
 
2872
+ class GooglePrivacyDlpV2DiscoveryInspectTemplateModifiedCadence
2873
+ # @private
2874
+ class Representation < Google::Apis::Core::JsonRepresentation
2875
+ property :frequency, as: 'frequency'
2876
+ end
2877
+ end
2878
+
2723
2879
  class GooglePrivacyDlpV2DiscoverySchemaModifiedCadence
2724
2880
  # @private
2725
2881
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2751,6 +2907,8 @@ module Google
2751
2907
 
2752
2908
  property :cloud_sql_target, as: 'cloudSqlTarget', class: Google::Apis::DlpV2::GooglePrivacyDlpV2CloudSqlDiscoveryTarget, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2CloudSqlDiscoveryTarget::Representation
2753
2909
 
2910
+ property :cloud_storage_target, as: 'cloudStorageTarget', class: Google::Apis::DlpV2::GooglePrivacyDlpV2CloudStorageDiscoveryTarget, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2CloudStorageDiscoveryTarget::Representation
2911
+
2754
2912
  property :secrets_target, as: 'secretsTarget', class: Google::Apis::DlpV2::GooglePrivacyDlpV2SecretsDiscoveryTarget, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2SecretsDiscoveryTarget::Representation
2755
2913
 
2756
2914
  end
@@ -2918,6 +3076,14 @@ module Google
2918
3076
  end
2919
3077
  end
2920
3078
 
3079
+ class GooglePrivacyDlpV2FileStoreCollection
3080
+ # @private
3081
+ class Representation < Google::Apis::Core::JsonRepresentation
3082
+ property :include_regexes, as: 'includeRegexes', class: Google::Apis::DlpV2::GooglePrivacyDlpV2FileStoreRegexes, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2FileStoreRegexes::Representation
3083
+
3084
+ end
3085
+ end
3086
+
2921
3087
  class GooglePrivacyDlpV2FileStoreDataProfile
2922
3088
  # @private
2923
3089
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2963,6 +3129,22 @@ module Google
2963
3129
  end
2964
3130
  end
2965
3131
 
3132
+ class GooglePrivacyDlpV2FileStoreRegex
3133
+ # @private
3134
+ class Representation < Google::Apis::Core::JsonRepresentation
3135
+ property :cloud_storage_regex, as: 'cloudStorageRegex', class: Google::Apis::DlpV2::GooglePrivacyDlpV2CloudStorageRegex, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2CloudStorageRegex::Representation
3136
+
3137
+ end
3138
+ end
3139
+
3140
+ class GooglePrivacyDlpV2FileStoreRegexes
3141
+ # @private
3142
+ class Representation < Google::Apis::Core::JsonRepresentation
3143
+ collection :patterns, as: 'patterns', class: Google::Apis::DlpV2::GooglePrivacyDlpV2FileStoreRegex, decorator: Google::Apis::DlpV2::GooglePrivacyDlpV2FileStoreRegex::Representation
3144
+
3145
+ end
3146
+ end
3147
+
2966
3148
  class GooglePrivacyDlpV2Finding
2967
3149
  # @private
2968
3150
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -270,7 +270,7 @@ module Google
270
270
  # @param [String] location_id
271
271
  # Deprecated. This field has no effect.
272
272
  # @param [String] order_by
273
- # Comma separated list of fields to order by, followed by `asc` or `desc`
273
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
274
274
  # postfix. This list is case insensitive. The default sorting order is ascending.
275
275
  # Redundant space characters are insignificant. Example: `name asc,update_time,
276
276
  # create_time desc` Supported fields are: - `create_time`: corresponds to the
@@ -480,7 +480,7 @@ module Google
480
480
  # @param [String] location_id
481
481
  # Deprecated. This field has no effect.
482
482
  # @param [String] order_by
483
- # Comma separated list of fields to order by, followed by `asc` or `desc`
483
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
484
484
  # postfix. This list is case insensitive. The default sorting order is ascending.
485
485
  # Redundant space characters are insignificant. Example: `name asc,update_time,
486
486
  # create_time desc` Supported fields are: - `create_time`: corresponds to the
@@ -614,7 +614,7 @@ module Google
614
614
  # sensitivity_level = HIGH * project_id = 12345 AND info_type = STREET_ADDRESS
615
615
  # The length of this field should be no more than 500 characters.
616
616
  # @param [String] order_by
617
- # Comma separated list of fields to order by, followed by `asc` or `desc`
617
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
618
618
  # postfix. This list is case insensitive. The default sorting order is ascending.
619
619
  # Redundant space characters are insignificant. Only one order field at a time
620
620
  # is allowed. Examples: * `project_id asc` * `table_id` * `sensitivity_level
@@ -962,7 +962,7 @@ module Google
962
962
  # @param [String] location_id
963
963
  # Deprecated. This field has no effect.
964
964
  # @param [String] order_by
965
- # Comma separated list of fields to order by, followed by `asc` or `desc`
965
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
966
966
  # postfix. This list is case insensitive. The default sorting order is ascending.
967
967
  # Redundant space characters are insignificant. Example: `name asc,update_time,
968
968
  # create_time desc` Supported fields are: - `create_time`: corresponds to the
@@ -1151,7 +1151,7 @@ module Google
1151
1151
  # specifies the `europe-west3` location for processing data: parent=projects/
1152
1152
  # example-project/locations/europe-west3
1153
1153
  # @param [String] order_by
1154
- # Comma separated list of config fields to order by, followed by `asc` or `desc`
1154
+ # Comma-separated list of config fields to order by, followed by `asc` or `desc`
1155
1155
  # postfix. This list is case insensitive. The default sorting order is ascending.
1156
1156
  # Redundant space characters are insignificant. Example: `name asc,update_time,
1157
1157
  # create_time desc` Supported fields are: - `last_run_time`: corresponds to the
@@ -1259,7 +1259,7 @@ module Google
1259
1259
  # @param [String] location_id
1260
1260
  # Deprecated. This field has no effect.
1261
1261
  # @param [String] order_by
1262
- # Comma separated list of fields to order by, followed by `asc` or `desc`
1262
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
1263
1263
  # postfix. This list is case insensitive. The default sorting order is ascending.
1264
1264
  # Redundant space characters are insignificant. Example: `name asc, end_time
1265
1265
  # asc, create_time desc` Supported fields are: - `create_time`: corresponds to
@@ -1384,10 +1384,10 @@ module Google
1384
1384
  # com/googleapis/googleapis/blob/master/google/rpc/code.proto * The operator
1385
1385
  # must be `=` or `!=`. Examples: * `project_id = 12345 AND status_code = 1` * `
1386
1386
  # project_id = 12345 AND sensitivity_level = HIGH` * `project_id = 12345 AND
1387
- # resource_visibility = PUBLIC` . * 'file_store_path = "gs://mybucket"` The
1388
- # length of this field should be no more than 500 characters.
1387
+ # resource_visibility = PUBLIC` * `file_store_path = "gs://mybucket"` The length
1388
+ # of this field should be no more than 500 characters.
1389
1389
  # @param [String] order_by
1390
- # Optional. Comma separated list of fields to order by, followed by `asc` or `
1390
+ # Optional. Comma-separated list of fields to order by, followed by `asc` or `
1391
1391
  # desc` postfix. This list is case insensitive. The default sorting order is
1392
1392
  # ascending. Redundant space characters are insignificant. Only one order field
1393
1393
  # at a time is allowed. Examples: * `project_id asc` * `name` * `
@@ -1565,7 +1565,7 @@ module Google
1565
1565
  # @param [String] location_id
1566
1566
  # Deprecated. This field has no effect.
1567
1567
  # @param [String] order_by
1568
- # Comma separated list of fields to order by, followed by `asc` or `desc`
1568
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
1569
1569
  # postfix. This list is case insensitive. The default sorting order is ascending.
1570
1570
  # Redundant space characters are insignificant. Example: `name asc,update_time,
1571
1571
  # create_time desc` Supported fields are: - `create_time`: corresponds to the
@@ -1780,7 +1780,7 @@ module Google
1780
1780
  # @param [String] location_id
1781
1781
  # Deprecated. This field has no effect.
1782
1782
  # @param [String] order_by
1783
- # Comma separated list of triggeredJob fields to order by, followed by `asc` or `
1783
+ # Comma-separated list of triggeredJob fields to order by, followed by `asc` or `
1784
1784
  # desc` postfix. This list is case insensitive. The default sorting order is
1785
1785
  # ascending. Redundant space characters are insignificant. Example: `name asc,
1786
1786
  # update_time, create_time desc` Supported fields are: - `create_time`:
@@ -1910,7 +1910,7 @@ module Google
1910
1910
  # project_id = 12345 AND sensitivity_level = HIGH` The length of this field
1911
1911
  # should be no more than 500 characters.
1912
1912
  # @param [String] order_by
1913
- # Comma separated list of fields to order by, followed by `asc` or `desc`
1913
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
1914
1914
  # postfix. This list is case insensitive. The default sorting order is ascending.
1915
1915
  # Redundant space characters are insignificant. Only one order field at a time
1916
1916
  # is allowed. Examples: * `project_id` * `sensitivity_level desc` Supported
@@ -2081,7 +2081,7 @@ module Google
2081
2081
  # @param [String] location_id
2082
2082
  # Deprecated. This field has no effect.
2083
2083
  # @param [String] order_by
2084
- # Comma separated list of fields to order by, followed by `asc` or `desc`
2084
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
2085
2085
  # postfix. This list is case insensitive. The default sorting order is ascending.
2086
2086
  # Redundant space characters are insignificant. Example: `name asc,
2087
2087
  # display_name, create_time desc` Supported fields are: - `create_time`:
@@ -2245,7 +2245,7 @@ module Google
2245
2245
  # project_id = 12345 AND resource_visibility = PUBLIC` The length of this field
2246
2246
  # should be no more than 500 characters.
2247
2247
  # @param [String] order_by
2248
- # Comma separated list of fields to order by, followed by `asc` or `desc`
2248
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
2249
2249
  # postfix. This list is case insensitive. The default sorting order is ascending.
2250
2250
  # Redundant space characters are insignificant. Only one order field at a time
2251
2251
  # is allowed. Examples: * `project_id asc` * `table_id` * `sensitivity_level
@@ -2420,7 +2420,7 @@ module Google
2420
2420
  # @param [String] location_id
2421
2421
  # Deprecated. This field has no effect.
2422
2422
  # @param [String] order_by
2423
- # Comma separated list of fields to order by, followed by `asc` or `desc`
2423
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
2424
2424
  # postfix. This list is case insensitive. The default sorting order is ascending.
2425
2425
  # Redundant space characters are insignificant. Example: `name asc,
2426
2426
  # display_name, create_time desc` Supported fields are: - `create_time`:
@@ -2765,7 +2765,7 @@ module Google
2765
2765
  # @param [String] location_id
2766
2766
  # Deprecated. This field has no effect.
2767
2767
  # @param [String] order_by
2768
- # Comma separated list of fields to order by, followed by `asc` or `desc`
2768
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
2769
2769
  # postfix. This list is case insensitive. The default sorting order is ascending.
2770
2770
  # Redundant space characters are insignificant. Example: `name asc,update_time,
2771
2771
  # create_time desc` Supported fields are: - `create_time`: corresponds to the
@@ -3026,7 +3026,7 @@ module Google
3026
3026
  # @param [String] location_id
3027
3027
  # Deprecated. This field has no effect.
3028
3028
  # @param [String] order_by
3029
- # Comma separated list of fields to order by, followed by `asc` or `desc`
3029
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
3030
3030
  # postfix. This list is case insensitive. The default sorting order is ascending.
3031
3031
  # Redundant space characters are insignificant. Example: `name asc, end_time
3032
3032
  # asc, create_time desc` Supported fields are: - `create_time`: corresponds to
@@ -3247,7 +3247,7 @@ module Google
3247
3247
  # @param [String] location_id
3248
3248
  # Deprecated. This field has no effect.
3249
3249
  # @param [String] order_by
3250
- # Comma separated list of fields to order by, followed by `asc` or `desc`
3250
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
3251
3251
  # postfix. This list is case insensitive. The default sorting order is ascending.
3252
3252
  # Redundant space characters are insignificant. Example: `name asc,update_time,
3253
3253
  # create_time desc` Supported fields are: - `create_time`: corresponds to the
@@ -3497,7 +3497,7 @@ module Google
3497
3497
  # @param [String] location_id
3498
3498
  # Deprecated. This field has no effect.
3499
3499
  # @param [String] order_by
3500
- # Comma separated list of triggeredJob fields to order by, followed by `asc` or `
3500
+ # Comma-separated list of triggeredJob fields to order by, followed by `asc` or `
3501
3501
  # desc` postfix. This list is case insensitive. The default sorting order is
3502
3502
  # ascending. Redundant space characters are insignificant. Example: `name asc,
3503
3503
  # update_time, create_time desc` Supported fields are: - `create_time`:
@@ -3635,7 +3635,7 @@ module Google
3635
3635
  # sensitivity_level = HIGH * project_id = 12345 AND info_type = STREET_ADDRESS
3636
3636
  # The length of this field should be no more than 500 characters.
3637
3637
  # @param [String] order_by
3638
- # Comma separated list of fields to order by, followed by `asc` or `desc`
3638
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
3639
3639
  # postfix. This list is case insensitive. The default sorting order is ascending.
3640
3640
  # Redundant space characters are insignificant. Only one order field at a time
3641
3641
  # is allowed. Examples: * `project_id asc` * `table_id` * `sensitivity_level
@@ -4156,7 +4156,7 @@ module Google
4156
4156
  # @param [String] location_id
4157
4157
  # Deprecated. This field has no effect.
4158
4158
  # @param [String] order_by
4159
- # Comma separated list of fields to order by, followed by `asc` or `desc`
4159
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
4160
4160
  # postfix. This list is case insensitive. The default sorting order is ascending.
4161
4161
  # Redundant space characters are insignificant. Example: `name asc,update_time,
4162
4162
  # create_time desc` Supported fields are: - `create_time`: corresponds to the
@@ -4345,7 +4345,7 @@ module Google
4345
4345
  # specifies the `europe-west3` location for processing data: parent=projects/
4346
4346
  # example-project/locations/europe-west3
4347
4347
  # @param [String] order_by
4348
- # Comma separated list of config fields to order by, followed by `asc` or `desc`
4348
+ # Comma-separated list of config fields to order by, followed by `asc` or `desc`
4349
4349
  # postfix. This list is case insensitive. The default sorting order is ascending.
4350
4350
  # Redundant space characters are insignificant. Example: `name asc,update_time,
4351
4351
  # create_time desc` Supported fields are: - `last_run_time`: corresponds to the
@@ -4670,7 +4670,7 @@ module Google
4670
4670
  # @param [String] location_id
4671
4671
  # Deprecated. This field has no effect.
4672
4672
  # @param [String] order_by
4673
- # Comma separated list of fields to order by, followed by `asc` or `desc`
4673
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
4674
4674
  # postfix. This list is case insensitive. The default sorting order is ascending.
4675
4675
  # Redundant space characters are insignificant. Example: `name asc, end_time
4676
4676
  # asc, create_time desc` Supported fields are: - `create_time`: corresponds to
@@ -4795,10 +4795,10 @@ module Google
4795
4795
  # com/googleapis/googleapis/blob/master/google/rpc/code.proto * The operator
4796
4796
  # must be `=` or `!=`. Examples: * `project_id = 12345 AND status_code = 1` * `
4797
4797
  # project_id = 12345 AND sensitivity_level = HIGH` * `project_id = 12345 AND
4798
- # resource_visibility = PUBLIC` . * 'file_store_path = "gs://mybucket"` The
4799
- # length of this field should be no more than 500 characters.
4798
+ # resource_visibility = PUBLIC` * `file_store_path = "gs://mybucket"` The length
4799
+ # of this field should be no more than 500 characters.
4800
4800
  # @param [String] order_by
4801
- # Optional. Comma separated list of fields to order by, followed by `asc` or `
4801
+ # Optional. Comma-separated list of fields to order by, followed by `asc` or `
4802
4802
  # desc` postfix. This list is case insensitive. The default sorting order is
4803
4803
  # ascending. Redundant space characters are insignificant. Only one order field
4804
4804
  # at a time is allowed. Examples: * `project_id asc` * `name` * `
@@ -5021,7 +5021,7 @@ module Google
5021
5021
  # @param [String] location_id
5022
5022
  # Deprecated. This field has no effect.
5023
5023
  # @param [String] order_by
5024
- # Comma separated list of fields to order by, followed by `asc` or `desc`
5024
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
5025
5025
  # postfix. This list is case insensitive. The default sorting order is ascending.
5026
5026
  # Redundant space characters are insignificant. Example: `name asc,update_time,
5027
5027
  # create_time desc` Supported fields are: - `create_time`: corresponds to the
@@ -5307,7 +5307,7 @@ module Google
5307
5307
  # @param [String] location_id
5308
5308
  # Deprecated. This field has no effect.
5309
5309
  # @param [String] order_by
5310
- # Comma separated list of triggeredJob fields to order by, followed by `asc` or `
5310
+ # Comma-separated list of triggeredJob fields to order by, followed by `asc` or `
5311
5311
  # desc` postfix. This list is case insensitive. The default sorting order is
5312
5312
  # ascending. Redundant space characters are insignificant. Example: `name asc,
5313
5313
  # update_time, create_time desc` Supported fields are: - `create_time`:
@@ -5437,7 +5437,7 @@ module Google
5437
5437
  # project_id = 12345 AND sensitivity_level = HIGH` The length of this field
5438
5438
  # should be no more than 500 characters.
5439
5439
  # @param [String] order_by
5440
- # Comma separated list of fields to order by, followed by `asc` or `desc`
5440
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
5441
5441
  # postfix. This list is case insensitive. The default sorting order is ascending.
5442
5442
  # Redundant space characters are insignificant. Only one order field at a time
5443
5443
  # is allowed. Examples: * `project_id` * `sensitivity_level desc` Supported
@@ -5608,7 +5608,7 @@ module Google
5608
5608
  # @param [String] location_id
5609
5609
  # Deprecated. This field has no effect.
5610
5610
  # @param [String] order_by
5611
- # Comma separated list of fields to order by, followed by `asc` or `desc`
5611
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
5612
5612
  # postfix. This list is case insensitive. The default sorting order is ascending.
5613
5613
  # Redundant space characters are insignificant. Example: `name asc,
5614
5614
  # display_name, create_time desc` Supported fields are: - `create_time`:
@@ -5772,7 +5772,7 @@ module Google
5772
5772
  # project_id = 12345 AND resource_visibility = PUBLIC` The length of this field
5773
5773
  # should be no more than 500 characters.
5774
5774
  # @param [String] order_by
5775
- # Comma separated list of fields to order by, followed by `asc` or `desc`
5775
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
5776
5776
  # postfix. This list is case insensitive. The default sorting order is ascending.
5777
5777
  # Redundant space characters are insignificant. Only one order field at a time
5778
5778
  # is allowed. Examples: * `project_id asc` * `table_id` * `sensitivity_level
@@ -5947,7 +5947,7 @@ module Google
5947
5947
  # @param [String] location_id
5948
5948
  # Deprecated. This field has no effect.
5949
5949
  # @param [String] order_by
5950
- # Comma separated list of fields to order by, followed by `asc` or `desc`
5950
+ # Comma-separated list of fields to order by, followed by `asc` or `desc`
5951
5951
  # postfix. This list is case insensitive. The default sorting order is ascending.
5952
5952
  # Redundant space characters are insignificant. Example: `name asc,
5953
5953
  # display_name, create_time desc` Supported fields are: - `create_time`:
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.68.0
4
+ version: 0.69.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-06-30 00:00:00.000000000 Z
11
+ date: 2024-07-25 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.68.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dlp_v2/v0.69.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: []