@google-cloud/dlp 6.3.0 → 6.5.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.
- package/README.md +83 -167
- package/build/protos/google/privacy/dlp/v2/dlp.proto +305 -74
- package/build/protos/protos.d.ts +691 -2
- package/build/protos/protos.js +1842 -5
- package/build/protos/protos.json +147 -1
- package/build/src/v2/dlp_service_client.d.ts +248 -126
- package/build/src/v2/dlp_service_client.js +154 -84
- package/package.json +1 -1
|
@@ -2323,6 +2323,8 @@ class DlpServiceClient {
|
|
|
2323
2323
|
* - 'error_count' - Number of errors that have occurred while running.
|
|
2324
2324
|
* * The operator must be `=` or `!=` for status and inspected_storage.
|
|
2325
2325
|
*
|
|
2326
|
+
* The syntax is based on https://google.aip.dev/160.
|
|
2327
|
+
*
|
|
2326
2328
|
* Examples:
|
|
2327
2329
|
*
|
|
2328
2330
|
* * inspected_storage = cloud_storage AND status = HEALTHY
|
|
@@ -2422,6 +2424,8 @@ class DlpServiceClient {
|
|
|
2422
2424
|
* - 'error_count' - Number of errors that have occurred while running.
|
|
2423
2425
|
* * The operator must be `=` or `!=` for status and inspected_storage.
|
|
2424
2426
|
*
|
|
2427
|
+
* The syntax is based on https://google.aip.dev/160.
|
|
2428
|
+
*
|
|
2425
2429
|
* Examples:
|
|
2426
2430
|
*
|
|
2427
2431
|
* * inspected_storage = cloud_storage AND status = HEALTHY
|
|
@@ -2685,6 +2689,8 @@ class DlpServiceClient {
|
|
|
2685
2689
|
* - 'start_time` - Corresponds to the time the job finished.
|
|
2686
2690
|
* * The operator must be `=` or `!=`.
|
|
2687
2691
|
*
|
|
2692
|
+
* The syntax is based on https://google.aip.dev/160.
|
|
2693
|
+
*
|
|
2688
2694
|
* Examples:
|
|
2689
2695
|
*
|
|
2690
2696
|
* * inspected_storage = cloud_storage AND state = done
|
|
@@ -2784,6 +2790,8 @@ class DlpServiceClient {
|
|
|
2784
2790
|
* - 'start_time` - Corresponds to the time the job finished.
|
|
2785
2791
|
* * The operator must be `=` or `!=`.
|
|
2786
2792
|
*
|
|
2793
|
+
* The syntax is based on https://google.aip.dev/160.
|
|
2794
|
+
*
|
|
2787
2795
|
* Examples:
|
|
2788
2796
|
*
|
|
2789
2797
|
* * inspected_storage = cloud_storage AND state = done
|
|
@@ -3064,13 +3072,13 @@ class DlpServiceClient {
|
|
|
3064
3072
|
* * `project_id`
|
|
3065
3073
|
* * `sensitivity_level desc`
|
|
3066
3074
|
*
|
|
3067
|
-
* Supported fields
|
|
3075
|
+
* Supported fields:
|
|
3068
3076
|
*
|
|
3069
3077
|
* - `project_id`: Google Cloud project ID
|
|
3070
|
-
* - `sensitivity_level`: How sensitive the data in a project is, at most
|
|
3071
|
-
* - `data_risk_level`: How much risk is associated with this data
|
|
3072
|
-
* - `profile_last_generated`:
|
|
3073
|
-
*
|
|
3078
|
+
* - `sensitivity_level`: How sensitive the data in a project is, at most
|
|
3079
|
+
* - `data_risk_level`: How much risk is associated with this data
|
|
3080
|
+
* - `profile_last_generated`: Date and time (in epoch seconds) the profile
|
|
3081
|
+
* was last generated
|
|
3074
3082
|
* @param {string} request.filter
|
|
3075
3083
|
* Allows filtering.
|
|
3076
3084
|
*
|
|
@@ -3080,17 +3088,24 @@ class DlpServiceClient {
|
|
|
3080
3088
|
* * Restrictions can be combined by `AND` or `OR` logical operators. A
|
|
3081
3089
|
* sequence of restrictions implicitly uses `AND`.
|
|
3082
3090
|
* * A restriction has the form of `{field} {operator} {value}`.
|
|
3083
|
-
* * Supported fields
|
|
3084
|
-
* - `
|
|
3085
|
-
* - `
|
|
3086
|
-
* - `
|
|
3091
|
+
* * Supported fields:
|
|
3092
|
+
* - `project_id`: the Google Cloud project ID
|
|
3093
|
+
* - `sensitivity_level`: HIGH|MODERATE|LOW
|
|
3094
|
+
* - `data_risk_level`: HIGH|MODERATE|LOW
|
|
3095
|
+
* - `status_code`: an RPC status code as defined in
|
|
3087
3096
|
* https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto
|
|
3088
|
-
*
|
|
3097
|
+
* - `profile_last_generated`: Date and time the profile was last
|
|
3098
|
+
* generated
|
|
3099
|
+
* * The operator must be `=` or `!=`. The `profile_last_generated` filter
|
|
3100
|
+
* also supports `<` and `>`.
|
|
3101
|
+
*
|
|
3102
|
+
* The syntax is based on https://google.aip.dev/160.
|
|
3089
3103
|
*
|
|
3090
3104
|
* Examples:
|
|
3091
3105
|
*
|
|
3092
3106
|
* * `project_id = 12345 AND status_code = 1`
|
|
3093
3107
|
* * `project_id = 12345 AND sensitivity_level = HIGH`
|
|
3108
|
+
* * `profile_last_generated < "2025-01-01T00:00:00.000Z"`
|
|
3094
3109
|
*
|
|
3095
3110
|
* The length of this field should be no more than 500 characters.
|
|
3096
3111
|
* @param {object} [options]
|
|
@@ -3141,13 +3156,13 @@ class DlpServiceClient {
|
|
|
3141
3156
|
* * `project_id`
|
|
3142
3157
|
* * `sensitivity_level desc`
|
|
3143
3158
|
*
|
|
3144
|
-
* Supported fields
|
|
3159
|
+
* Supported fields:
|
|
3145
3160
|
*
|
|
3146
3161
|
* - `project_id`: Google Cloud project ID
|
|
3147
|
-
* - `sensitivity_level`: How sensitive the data in a project is, at most
|
|
3148
|
-
* - `data_risk_level`: How much risk is associated with this data
|
|
3149
|
-
* - `profile_last_generated`:
|
|
3150
|
-
*
|
|
3162
|
+
* - `sensitivity_level`: How sensitive the data in a project is, at most
|
|
3163
|
+
* - `data_risk_level`: How much risk is associated with this data
|
|
3164
|
+
* - `profile_last_generated`: Date and time (in epoch seconds) the profile
|
|
3165
|
+
* was last generated
|
|
3151
3166
|
* @param {string} request.filter
|
|
3152
3167
|
* Allows filtering.
|
|
3153
3168
|
*
|
|
@@ -3157,17 +3172,24 @@ class DlpServiceClient {
|
|
|
3157
3172
|
* * Restrictions can be combined by `AND` or `OR` logical operators. A
|
|
3158
3173
|
* sequence of restrictions implicitly uses `AND`.
|
|
3159
3174
|
* * A restriction has the form of `{field} {operator} {value}`.
|
|
3160
|
-
* * Supported fields
|
|
3161
|
-
* - `
|
|
3162
|
-
* - `
|
|
3163
|
-
* - `
|
|
3175
|
+
* * Supported fields:
|
|
3176
|
+
* - `project_id`: the Google Cloud project ID
|
|
3177
|
+
* - `sensitivity_level`: HIGH|MODERATE|LOW
|
|
3178
|
+
* - `data_risk_level`: HIGH|MODERATE|LOW
|
|
3179
|
+
* - `status_code`: an RPC status code as defined in
|
|
3164
3180
|
* https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto
|
|
3165
|
-
*
|
|
3181
|
+
* - `profile_last_generated`: Date and time the profile was last
|
|
3182
|
+
* generated
|
|
3183
|
+
* * The operator must be `=` or `!=`. The `profile_last_generated` filter
|
|
3184
|
+
* also supports `<` and `>`.
|
|
3185
|
+
*
|
|
3186
|
+
* The syntax is based on https://google.aip.dev/160.
|
|
3166
3187
|
*
|
|
3167
3188
|
* Examples:
|
|
3168
3189
|
*
|
|
3169
3190
|
* * `project_id = 12345 AND status_code = 1`
|
|
3170
3191
|
* * `project_id = 12345 AND sensitivity_level = HIGH`
|
|
3192
|
+
* * `profile_last_generated < "2025-01-01T00:00:00.000Z"`
|
|
3171
3193
|
*
|
|
3172
3194
|
* The length of this field should be no more than 500 characters.
|
|
3173
3195
|
* @param {object} [options]
|
|
@@ -3272,22 +3294,29 @@ class DlpServiceClient {
|
|
|
3272
3294
|
* * Restrictions can be combined by `AND` or `OR` logical operators. A
|
|
3273
3295
|
* sequence of restrictions implicitly uses `AND`.
|
|
3274
3296
|
* * A restriction has the form of `{field} {operator} {value}`.
|
|
3275
|
-
* * Supported fields
|
|
3276
|
-
* - `project_id
|
|
3277
|
-
* - `dataset_id
|
|
3278
|
-
* - `table_id
|
|
3279
|
-
* - `sensitivity_level
|
|
3280
|
-
* - `data_risk_level
|
|
3297
|
+
* * Supported fields:
|
|
3298
|
+
* - `project_id`: The Google Cloud project ID
|
|
3299
|
+
* - `dataset_id`: The BigQuery dataset ID
|
|
3300
|
+
* - `table_id`: The ID of the BigQuery table
|
|
3301
|
+
* - `sensitivity_level`: HIGH|MODERATE|LOW
|
|
3302
|
+
* - `data_risk_level`: HIGH|MODERATE|LOW
|
|
3281
3303
|
* - `resource_visibility`: PUBLIC|RESTRICTED
|
|
3282
|
-
* - `status_code
|
|
3304
|
+
* - `status_code`: an RPC status code as defined in
|
|
3283
3305
|
* https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto
|
|
3284
|
-
*
|
|
3306
|
+
* - `profile_last_generated`: Date and time the profile was last
|
|
3307
|
+
* generated
|
|
3308
|
+
*
|
|
3309
|
+
* * The operator must be `=` or `!=`. The `profile_last_generated` filter
|
|
3310
|
+
* also supports `<` and `>`.
|
|
3311
|
+
*
|
|
3312
|
+
* The syntax is based on https://google.aip.dev/160.
|
|
3285
3313
|
*
|
|
3286
3314
|
* Examples:
|
|
3287
3315
|
*
|
|
3288
3316
|
* * `project_id = 12345 AND status_code = 1`
|
|
3289
3317
|
* * `project_id = 12345 AND sensitivity_level = HIGH`
|
|
3290
3318
|
* * `project_id = 12345 AND resource_visibility = PUBLIC`
|
|
3319
|
+
* * `profile_last_generated < "2025-01-01T00:00:00.000Z"`
|
|
3291
3320
|
*
|
|
3292
3321
|
* The length of this field should be no more than 500 characters.
|
|
3293
3322
|
* @param {object} [options]
|
|
@@ -3362,22 +3391,29 @@ class DlpServiceClient {
|
|
|
3362
3391
|
* * Restrictions can be combined by `AND` or `OR` logical operators. A
|
|
3363
3392
|
* sequence of restrictions implicitly uses `AND`.
|
|
3364
3393
|
* * A restriction has the form of `{field} {operator} {value}`.
|
|
3365
|
-
* * Supported fields
|
|
3366
|
-
* - `project_id
|
|
3367
|
-
* - `dataset_id
|
|
3368
|
-
* - `table_id
|
|
3369
|
-
* - `sensitivity_level
|
|
3370
|
-
* - `data_risk_level
|
|
3394
|
+
* * Supported fields:
|
|
3395
|
+
* - `project_id`: The Google Cloud project ID
|
|
3396
|
+
* - `dataset_id`: The BigQuery dataset ID
|
|
3397
|
+
* - `table_id`: The ID of the BigQuery table
|
|
3398
|
+
* - `sensitivity_level`: HIGH|MODERATE|LOW
|
|
3399
|
+
* - `data_risk_level`: HIGH|MODERATE|LOW
|
|
3371
3400
|
* - `resource_visibility`: PUBLIC|RESTRICTED
|
|
3372
|
-
* - `status_code
|
|
3401
|
+
* - `status_code`: an RPC status code as defined in
|
|
3373
3402
|
* https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto
|
|
3374
|
-
*
|
|
3403
|
+
* - `profile_last_generated`: Date and time the profile was last
|
|
3404
|
+
* generated
|
|
3405
|
+
*
|
|
3406
|
+
* * The operator must be `=` or `!=`. The `profile_last_generated` filter
|
|
3407
|
+
* also supports `<` and `>`.
|
|
3408
|
+
*
|
|
3409
|
+
* The syntax is based on https://google.aip.dev/160.
|
|
3375
3410
|
*
|
|
3376
3411
|
* Examples:
|
|
3377
3412
|
*
|
|
3378
3413
|
* * `project_id = 12345 AND status_code = 1`
|
|
3379
3414
|
* * `project_id = 12345 AND sensitivity_level = HIGH`
|
|
3380
3415
|
* * `project_id = 12345 AND resource_visibility = PUBLIC`
|
|
3416
|
+
* * `profile_last_generated < "2025-01-01T00:00:00.000Z"`
|
|
3381
3417
|
*
|
|
3382
3418
|
* The length of this field should be no more than 500 characters.
|
|
3383
3419
|
* @param {object} [options]
|
|
@@ -3480,26 +3516,32 @@ class DlpServiceClient {
|
|
|
3480
3516
|
* * Restrictions can be combined by `AND` or `OR` logical operators. A
|
|
3481
3517
|
* sequence of restrictions implicitly uses `AND`.
|
|
3482
3518
|
* * A restriction has the form of `{field} {operator} {value}`.
|
|
3483
|
-
* * Supported fields
|
|
3484
|
-
* - `table_data_profile_name
|
|
3485
|
-
* profile
|
|
3486
|
-
* - `project_id
|
|
3487
|
-
* - `dataset_id
|
|
3488
|
-
* - `table_id
|
|
3489
|
-
* - `field_id
|
|
3490
|
-
* - `info_type
|
|
3491
|
-
* - `sensitivity_level
|
|
3492
|
-
* - `data_risk_level`: How much risk is associated with this data
|
|
3493
|
-
* - `status_code
|
|
3519
|
+
* * Supported fields:
|
|
3520
|
+
* - `table_data_profile_name`: The name of the related table data
|
|
3521
|
+
* profile
|
|
3522
|
+
* - `project_id`: The Google Cloud project ID (REQUIRED)
|
|
3523
|
+
* - `dataset_id`: The BigQuery dataset ID (REQUIRED)
|
|
3524
|
+
* - `table_id`: The BigQuery table ID (REQUIRED)
|
|
3525
|
+
* - `field_id`: The ID of the BigQuery field
|
|
3526
|
+
* - `info_type`: The infotype detected in the resource
|
|
3527
|
+
* - `sensitivity_level`: HIGH|MEDIUM|LOW
|
|
3528
|
+
* - `data_risk_level`: How much risk is associated with this data
|
|
3529
|
+
* - `status_code`: An RPC status code as defined in
|
|
3494
3530
|
* https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto
|
|
3531
|
+
* - `profile_last_generated`: Date and time the profile was last
|
|
3532
|
+
* generated
|
|
3495
3533
|
* * The operator must be `=` for project_id, dataset_id, and table_id. Other
|
|
3496
|
-
* filters also support `!=`.
|
|
3534
|
+
* filters also support `!=`. The `profile_last_generated` filter also
|
|
3535
|
+
* supports `<` and `>`.
|
|
3536
|
+
*
|
|
3537
|
+
* The syntax is based on https://google.aip.dev/160.
|
|
3497
3538
|
*
|
|
3498
3539
|
* Examples:
|
|
3499
3540
|
*
|
|
3500
3541
|
* * project_id = 12345 AND status_code = 1
|
|
3501
3542
|
* * project_id = 12345 AND sensitivity_level = HIGH
|
|
3502
3543
|
* * project_id = 12345 AND info_type = STREET_ADDRESS
|
|
3544
|
+
* * profile_last_generated < "2025-01-01T00:00:00.000Z"
|
|
3503
3545
|
*
|
|
3504
3546
|
* The length of this field should be no more than 500 characters.
|
|
3505
3547
|
* @param {object} [options]
|
|
@@ -3572,26 +3614,32 @@ class DlpServiceClient {
|
|
|
3572
3614
|
* * Restrictions can be combined by `AND` or `OR` logical operators. A
|
|
3573
3615
|
* sequence of restrictions implicitly uses `AND`.
|
|
3574
3616
|
* * A restriction has the form of `{field} {operator} {value}`.
|
|
3575
|
-
* * Supported fields
|
|
3576
|
-
* - `table_data_profile_name
|
|
3577
|
-
* profile
|
|
3578
|
-
* - `project_id
|
|
3579
|
-
* - `dataset_id
|
|
3580
|
-
* - `table_id
|
|
3581
|
-
* - `field_id
|
|
3582
|
-
* - `info_type
|
|
3583
|
-
* - `sensitivity_level
|
|
3584
|
-
* - `data_risk_level`: How much risk is associated with this data
|
|
3585
|
-
* - `status_code
|
|
3617
|
+
* * Supported fields:
|
|
3618
|
+
* - `table_data_profile_name`: The name of the related table data
|
|
3619
|
+
* profile
|
|
3620
|
+
* - `project_id`: The Google Cloud project ID (REQUIRED)
|
|
3621
|
+
* - `dataset_id`: The BigQuery dataset ID (REQUIRED)
|
|
3622
|
+
* - `table_id`: The BigQuery table ID (REQUIRED)
|
|
3623
|
+
* - `field_id`: The ID of the BigQuery field
|
|
3624
|
+
* - `info_type`: The infotype detected in the resource
|
|
3625
|
+
* - `sensitivity_level`: HIGH|MEDIUM|LOW
|
|
3626
|
+
* - `data_risk_level`: How much risk is associated with this data
|
|
3627
|
+
* - `status_code`: An RPC status code as defined in
|
|
3586
3628
|
* https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto
|
|
3629
|
+
* - `profile_last_generated`: Date and time the profile was last
|
|
3630
|
+
* generated
|
|
3587
3631
|
* * The operator must be `=` for project_id, dataset_id, and table_id. Other
|
|
3588
|
-
* filters also support `!=`.
|
|
3632
|
+
* filters also support `!=`. The `profile_last_generated` filter also
|
|
3633
|
+
* supports `<` and `>`.
|
|
3634
|
+
*
|
|
3635
|
+
* The syntax is based on https://google.aip.dev/160.
|
|
3589
3636
|
*
|
|
3590
3637
|
* Examples:
|
|
3591
3638
|
*
|
|
3592
3639
|
* * project_id = 12345 AND status_code = 1
|
|
3593
3640
|
* * project_id = 12345 AND sensitivity_level = HIGH
|
|
3594
3641
|
* * project_id = 12345 AND info_type = STREET_ADDRESS
|
|
3642
|
+
* * profile_last_generated < "2025-01-01T00:00:00.000Z"
|
|
3595
3643
|
*
|
|
3596
3644
|
* The length of this field should be no more than 500 characters.
|
|
3597
3645
|
* @param {object} [options]
|
|
@@ -3696,20 +3744,26 @@ class DlpServiceClient {
|
|
|
3696
3744
|
* * Restrictions can be combined by `AND` or `OR` logical operators. A
|
|
3697
3745
|
* sequence of restrictions implicitly uses `AND`.
|
|
3698
3746
|
* * A restriction has the form of `{field} {operator} {value}`.
|
|
3699
|
-
* * Supported fields
|
|
3700
|
-
* - `project_id
|
|
3701
|
-
* - `account_id
|
|
3702
|
-
* - `file_store_path
|
|
3703
|
-
* - `data_source_type
|
|
3704
|
-
* "google/storage/bucket"
|
|
3705
|
-
* - `data_storage_location
|
|
3706
|
-
* stored, like "us-central1"
|
|
3707
|
-
* - `sensitivity_level
|
|
3708
|
-
* - `data_risk_level
|
|
3747
|
+
* * Supported fields:
|
|
3748
|
+
* - `project_id`: The Google Cloud project ID
|
|
3749
|
+
* - `account_id`: The AWS account ID
|
|
3750
|
+
* - `file_store_path`: The path like "gs://bucket"
|
|
3751
|
+
* - `data_source_type`: The profile's data source type, like
|
|
3752
|
+
* "google/storage/bucket"
|
|
3753
|
+
* - `data_storage_location`: The location where the file store's data is
|
|
3754
|
+
* stored, like "us-central1"
|
|
3755
|
+
* - `sensitivity_level`: HIGH|MODERATE|LOW
|
|
3756
|
+
* - `data_risk_level`: HIGH|MODERATE|LOW
|
|
3709
3757
|
* - `resource_visibility`: PUBLIC|RESTRICTED
|
|
3710
|
-
* - `status_code
|
|
3758
|
+
* - `status_code`: an RPC status code as defined in
|
|
3711
3759
|
* https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto
|
|
3712
|
-
*
|
|
3760
|
+
* - `profile_last_generated`: Date and time the profile was last
|
|
3761
|
+
* generated
|
|
3762
|
+
*
|
|
3763
|
+
* * The operator must be `=` or `!=`. The `profile_last_generated` filter
|
|
3764
|
+
* also supports `<` and `>`.
|
|
3765
|
+
*
|
|
3766
|
+
* The syntax is based on https://google.aip.dev/160.
|
|
3713
3767
|
*
|
|
3714
3768
|
* Examples:
|
|
3715
3769
|
*
|
|
@@ -3717,6 +3771,7 @@ class DlpServiceClient {
|
|
|
3717
3771
|
* * `project_id = 12345 AND sensitivity_level = HIGH`
|
|
3718
3772
|
* * `project_id = 12345 AND resource_visibility = PUBLIC`
|
|
3719
3773
|
* * `file_store_path = "gs://mybucket"`
|
|
3774
|
+
* * `profile_last_generated < "2025-01-01T00:00:00.000Z"`
|
|
3720
3775
|
*
|
|
3721
3776
|
* The length of this field should be no more than 500 characters.
|
|
3722
3777
|
* @param {object} [options]
|
|
@@ -3791,20 +3846,26 @@ class DlpServiceClient {
|
|
|
3791
3846
|
* * Restrictions can be combined by `AND` or `OR` logical operators. A
|
|
3792
3847
|
* sequence of restrictions implicitly uses `AND`.
|
|
3793
3848
|
* * A restriction has the form of `{field} {operator} {value}`.
|
|
3794
|
-
* * Supported fields
|
|
3795
|
-
* - `project_id
|
|
3796
|
-
* - `account_id
|
|
3797
|
-
* - `file_store_path
|
|
3798
|
-
* - `data_source_type
|
|
3799
|
-
* "google/storage/bucket"
|
|
3800
|
-
* - `data_storage_location
|
|
3801
|
-
* stored, like "us-central1"
|
|
3802
|
-
* - `sensitivity_level
|
|
3803
|
-
* - `data_risk_level
|
|
3849
|
+
* * Supported fields:
|
|
3850
|
+
* - `project_id`: The Google Cloud project ID
|
|
3851
|
+
* - `account_id`: The AWS account ID
|
|
3852
|
+
* - `file_store_path`: The path like "gs://bucket"
|
|
3853
|
+
* - `data_source_type`: The profile's data source type, like
|
|
3854
|
+
* "google/storage/bucket"
|
|
3855
|
+
* - `data_storage_location`: The location where the file store's data is
|
|
3856
|
+
* stored, like "us-central1"
|
|
3857
|
+
* - `sensitivity_level`: HIGH|MODERATE|LOW
|
|
3858
|
+
* - `data_risk_level`: HIGH|MODERATE|LOW
|
|
3804
3859
|
* - `resource_visibility`: PUBLIC|RESTRICTED
|
|
3805
|
-
* - `status_code
|
|
3860
|
+
* - `status_code`: an RPC status code as defined in
|
|
3806
3861
|
* https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto
|
|
3807
|
-
*
|
|
3862
|
+
* - `profile_last_generated`: Date and time the profile was last
|
|
3863
|
+
* generated
|
|
3864
|
+
*
|
|
3865
|
+
* * The operator must be `=` or `!=`. The `profile_last_generated` filter
|
|
3866
|
+
* also supports `<` and `>`.
|
|
3867
|
+
*
|
|
3868
|
+
* The syntax is based on https://google.aip.dev/160.
|
|
3808
3869
|
*
|
|
3809
3870
|
* Examples:
|
|
3810
3871
|
*
|
|
@@ -3812,6 +3873,7 @@ class DlpServiceClient {
|
|
|
3812
3873
|
* * `project_id = 12345 AND sensitivity_level = HIGH`
|
|
3813
3874
|
* * `project_id = 12345 AND resource_visibility = PUBLIC`
|
|
3814
3875
|
* * `file_store_path = "gs://mybucket"`
|
|
3876
|
+
* * `profile_last_generated < "2025-01-01T00:00:00.000Z"`
|
|
3815
3877
|
*
|
|
3816
3878
|
* The length of this field should be no more than 500 characters.
|
|
3817
3879
|
* @param {object} [options]
|
|
@@ -3886,6 +3948,8 @@ class DlpServiceClient {
|
|
|
3886
3948
|
* results. If set, all other request fields must match the original request.
|
|
3887
3949
|
* @param {string} [request.filter]
|
|
3888
3950
|
* Optional. Supported field/value: `state` - MISSING|AVAILABLE|ERROR
|
|
3951
|
+
*
|
|
3952
|
+
* The syntax is based on https://google.aip.dev/160.
|
|
3889
3953
|
* @param {object} [options]
|
|
3890
3954
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
3891
3955
|
* @returns {Stream}
|
|
@@ -3928,6 +3992,8 @@ class DlpServiceClient {
|
|
|
3928
3992
|
* results. If set, all other request fields must match the original request.
|
|
3929
3993
|
* @param {string} [request.filter]
|
|
3930
3994
|
* Optional. Supported field/value: `state` - MISSING|AVAILABLE|ERROR
|
|
3995
|
+
*
|
|
3996
|
+
* The syntax is based on https://google.aip.dev/160.
|
|
3931
3997
|
* @param {object} [options]
|
|
3932
3998
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
3933
3999
|
* @returns {Object}
|
|
@@ -4000,6 +4066,8 @@ class DlpServiceClient {
|
|
|
4000
4066
|
* results. If set, all other request fields must match the original request.
|
|
4001
4067
|
* @param {string} [request.filter]
|
|
4002
4068
|
* Optional. Supported field/value: - `state` - MISSING|AVAILABLE|ERROR
|
|
4069
|
+
*
|
|
4070
|
+
* The syntax is based on https://google.aip.dev/160.
|
|
4003
4071
|
* @param {object} [options]
|
|
4004
4072
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
4005
4073
|
* @returns {Stream}
|
|
@@ -4042,6 +4110,8 @@ class DlpServiceClient {
|
|
|
4042
4110
|
* results. If set, all other request fields must match the original request.
|
|
4043
4111
|
* @param {string} [request.filter]
|
|
4044
4112
|
* Optional. Supported field/value: - `state` - MISSING|AVAILABLE|ERROR
|
|
4113
|
+
*
|
|
4114
|
+
* The syntax is based on https://google.aip.dev/160.
|
|
4045
4115
|
* @param {object} [options]
|
|
4046
4116
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
4047
4117
|
* @returns {Object}
|