@google-cloud/dlp 6.4.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 +178 -55
- package/build/protos/protos.d.ts +330 -520
- package/build/protos/protos.js +1031 -1904
- package/build/protos/protos.json +83 -194
- package/build/src/v2/dlp_service_client.d.ts +242 -126
- package/build/src/v2/dlp_service_client.js +150 -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,23 +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
|
|
3306
|
+
* - `profile_last_generated`: Date and time the profile was last
|
|
3307
|
+
* generated
|
|
3284
3308
|
*
|
|
3285
|
-
* * The operator must be `=` or `!=`.
|
|
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.
|
|
3286
3313
|
*
|
|
3287
3314
|
* Examples:
|
|
3288
3315
|
*
|
|
3289
3316
|
* * `project_id = 12345 AND status_code = 1`
|
|
3290
3317
|
* * `project_id = 12345 AND sensitivity_level = HIGH`
|
|
3291
3318
|
* * `project_id = 12345 AND resource_visibility = PUBLIC`
|
|
3319
|
+
* * `profile_last_generated < "2025-01-01T00:00:00.000Z"`
|
|
3292
3320
|
*
|
|
3293
3321
|
* The length of this field should be no more than 500 characters.
|
|
3294
3322
|
* @param {object} [options]
|
|
@@ -3363,23 +3391,29 @@ class DlpServiceClient {
|
|
|
3363
3391
|
* * Restrictions can be combined by `AND` or `OR` logical operators. A
|
|
3364
3392
|
* sequence of restrictions implicitly uses `AND`.
|
|
3365
3393
|
* * A restriction has the form of `{field} {operator} {value}`.
|
|
3366
|
-
* * Supported fields
|
|
3367
|
-
* - `project_id
|
|
3368
|
-
* - `dataset_id
|
|
3369
|
-
* - `table_id
|
|
3370
|
-
* - `sensitivity_level
|
|
3371
|
-
* - `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
|
|
3372
3400
|
* - `resource_visibility`: PUBLIC|RESTRICTED
|
|
3373
|
-
* - `status_code
|
|
3401
|
+
* - `status_code`: an RPC status code as defined in
|
|
3374
3402
|
* https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto
|
|
3403
|
+
* - `profile_last_generated`: Date and time the profile was last
|
|
3404
|
+
* generated
|
|
3375
3405
|
*
|
|
3376
|
-
* * The operator must be `=` or `!=`.
|
|
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.
|
|
3377
3410
|
*
|
|
3378
3411
|
* Examples:
|
|
3379
3412
|
*
|
|
3380
3413
|
* * `project_id = 12345 AND status_code = 1`
|
|
3381
3414
|
* * `project_id = 12345 AND sensitivity_level = HIGH`
|
|
3382
3415
|
* * `project_id = 12345 AND resource_visibility = PUBLIC`
|
|
3416
|
+
* * `profile_last_generated < "2025-01-01T00:00:00.000Z"`
|
|
3383
3417
|
*
|
|
3384
3418
|
* The length of this field should be no more than 500 characters.
|
|
3385
3419
|
* @param {object} [options]
|
|
@@ -3482,26 +3516,32 @@ class DlpServiceClient {
|
|
|
3482
3516
|
* * Restrictions can be combined by `AND` or `OR` logical operators. A
|
|
3483
3517
|
* sequence of restrictions implicitly uses `AND`.
|
|
3484
3518
|
* * A restriction has the form of `{field} {operator} {value}`.
|
|
3485
|
-
* * Supported fields
|
|
3486
|
-
* - `table_data_profile_name
|
|
3487
|
-
* profile
|
|
3488
|
-
* - `project_id
|
|
3489
|
-
* - `dataset_id
|
|
3490
|
-
* - `table_id
|
|
3491
|
-
* - `field_id
|
|
3492
|
-
* - `info_type
|
|
3493
|
-
* - `sensitivity_level
|
|
3494
|
-
* - `data_risk_level`: How much risk is associated with this data
|
|
3495
|
-
* - `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
|
|
3496
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
|
|
3497
3533
|
* * The operator must be `=` for project_id, dataset_id, and table_id. Other
|
|
3498
|
-
* 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.
|
|
3499
3538
|
*
|
|
3500
3539
|
* Examples:
|
|
3501
3540
|
*
|
|
3502
3541
|
* * project_id = 12345 AND status_code = 1
|
|
3503
3542
|
* * project_id = 12345 AND sensitivity_level = HIGH
|
|
3504
3543
|
* * project_id = 12345 AND info_type = STREET_ADDRESS
|
|
3544
|
+
* * profile_last_generated < "2025-01-01T00:00:00.000Z"
|
|
3505
3545
|
*
|
|
3506
3546
|
* The length of this field should be no more than 500 characters.
|
|
3507
3547
|
* @param {object} [options]
|
|
@@ -3574,26 +3614,32 @@ class DlpServiceClient {
|
|
|
3574
3614
|
* * Restrictions can be combined by `AND` or `OR` logical operators. A
|
|
3575
3615
|
* sequence of restrictions implicitly uses `AND`.
|
|
3576
3616
|
* * A restriction has the form of `{field} {operator} {value}`.
|
|
3577
|
-
* * Supported fields
|
|
3578
|
-
* - `table_data_profile_name
|
|
3579
|
-
* profile
|
|
3580
|
-
* - `project_id
|
|
3581
|
-
* - `dataset_id
|
|
3582
|
-
* - `table_id
|
|
3583
|
-
* - `field_id
|
|
3584
|
-
* - `info_type
|
|
3585
|
-
* - `sensitivity_level
|
|
3586
|
-
* - `data_risk_level`: How much risk is associated with this data
|
|
3587
|
-
* - `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
|
|
3588
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
|
|
3589
3631
|
* * The operator must be `=` for project_id, dataset_id, and table_id. Other
|
|
3590
|
-
* 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.
|
|
3591
3636
|
*
|
|
3592
3637
|
* Examples:
|
|
3593
3638
|
*
|
|
3594
3639
|
* * project_id = 12345 AND status_code = 1
|
|
3595
3640
|
* * project_id = 12345 AND sensitivity_level = HIGH
|
|
3596
3641
|
* * project_id = 12345 AND info_type = STREET_ADDRESS
|
|
3642
|
+
* * profile_last_generated < "2025-01-01T00:00:00.000Z"
|
|
3597
3643
|
*
|
|
3598
3644
|
* The length of this field should be no more than 500 characters.
|
|
3599
3645
|
* @param {object} [options]
|
|
@@ -3698,21 +3744,26 @@ class DlpServiceClient {
|
|
|
3698
3744
|
* * Restrictions can be combined by `AND` or `OR` logical operators. A
|
|
3699
3745
|
* sequence of restrictions implicitly uses `AND`.
|
|
3700
3746
|
* * A restriction has the form of `{field} {operator} {value}`.
|
|
3701
|
-
* * Supported fields
|
|
3702
|
-
* - `project_id
|
|
3703
|
-
* - `account_id
|
|
3704
|
-
* - `file_store_path
|
|
3705
|
-
* - `data_source_type
|
|
3706
|
-
* "google/storage/bucket"
|
|
3707
|
-
* - `data_storage_location
|
|
3708
|
-
* stored, like "us-central1"
|
|
3709
|
-
* - `sensitivity_level
|
|
3710
|
-
* - `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
|
|
3711
3757
|
* - `resource_visibility`: PUBLIC|RESTRICTED
|
|
3712
|
-
* - `status_code
|
|
3758
|
+
* - `status_code`: an RPC status code as defined in
|
|
3713
3759
|
* https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto
|
|
3760
|
+
* - `profile_last_generated`: Date and time the profile was last
|
|
3761
|
+
* generated
|
|
3714
3762
|
*
|
|
3715
|
-
* * The operator must be `=` or `!=`.
|
|
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.
|
|
3716
3767
|
*
|
|
3717
3768
|
* Examples:
|
|
3718
3769
|
*
|
|
@@ -3720,6 +3771,7 @@ class DlpServiceClient {
|
|
|
3720
3771
|
* * `project_id = 12345 AND sensitivity_level = HIGH`
|
|
3721
3772
|
* * `project_id = 12345 AND resource_visibility = PUBLIC`
|
|
3722
3773
|
* * `file_store_path = "gs://mybucket"`
|
|
3774
|
+
* * `profile_last_generated < "2025-01-01T00:00:00.000Z"`
|
|
3723
3775
|
*
|
|
3724
3776
|
* The length of this field should be no more than 500 characters.
|
|
3725
3777
|
* @param {object} [options]
|
|
@@ -3794,21 +3846,26 @@ class DlpServiceClient {
|
|
|
3794
3846
|
* * Restrictions can be combined by `AND` or `OR` logical operators. A
|
|
3795
3847
|
* sequence of restrictions implicitly uses `AND`.
|
|
3796
3848
|
* * A restriction has the form of `{field} {operator} {value}`.
|
|
3797
|
-
* * Supported fields
|
|
3798
|
-
* - `project_id
|
|
3799
|
-
* - `account_id
|
|
3800
|
-
* - `file_store_path
|
|
3801
|
-
* - `data_source_type
|
|
3802
|
-
* "google/storage/bucket"
|
|
3803
|
-
* - `data_storage_location
|
|
3804
|
-
* stored, like "us-central1"
|
|
3805
|
-
* - `sensitivity_level
|
|
3806
|
-
* - `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
|
|
3807
3859
|
* - `resource_visibility`: PUBLIC|RESTRICTED
|
|
3808
|
-
* - `status_code
|
|
3860
|
+
* - `status_code`: an RPC status code as defined in
|
|
3809
3861
|
* https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto
|
|
3862
|
+
* - `profile_last_generated`: Date and time the profile was last
|
|
3863
|
+
* generated
|
|
3810
3864
|
*
|
|
3811
|
-
* * The operator must be `=` or `!=`.
|
|
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.
|
|
3812
3869
|
*
|
|
3813
3870
|
* Examples:
|
|
3814
3871
|
*
|
|
@@ -3816,6 +3873,7 @@ class DlpServiceClient {
|
|
|
3816
3873
|
* * `project_id = 12345 AND sensitivity_level = HIGH`
|
|
3817
3874
|
* * `project_id = 12345 AND resource_visibility = PUBLIC`
|
|
3818
3875
|
* * `file_store_path = "gs://mybucket"`
|
|
3876
|
+
* * `profile_last_generated < "2025-01-01T00:00:00.000Z"`
|
|
3819
3877
|
*
|
|
3820
3878
|
* The length of this field should be no more than 500 characters.
|
|
3821
3879
|
* @param {object} [options]
|
|
@@ -3890,6 +3948,8 @@ class DlpServiceClient {
|
|
|
3890
3948
|
* results. If set, all other request fields must match the original request.
|
|
3891
3949
|
* @param {string} [request.filter]
|
|
3892
3950
|
* Optional. Supported field/value: `state` - MISSING|AVAILABLE|ERROR
|
|
3951
|
+
*
|
|
3952
|
+
* The syntax is based on https://google.aip.dev/160.
|
|
3893
3953
|
* @param {object} [options]
|
|
3894
3954
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
3895
3955
|
* @returns {Stream}
|
|
@@ -3932,6 +3992,8 @@ class DlpServiceClient {
|
|
|
3932
3992
|
* results. If set, all other request fields must match the original request.
|
|
3933
3993
|
* @param {string} [request.filter]
|
|
3934
3994
|
* Optional. Supported field/value: `state` - MISSING|AVAILABLE|ERROR
|
|
3995
|
+
*
|
|
3996
|
+
* The syntax is based on https://google.aip.dev/160.
|
|
3935
3997
|
* @param {object} [options]
|
|
3936
3998
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
3937
3999
|
* @returns {Object}
|
|
@@ -4004,6 +4066,8 @@ class DlpServiceClient {
|
|
|
4004
4066
|
* results. If set, all other request fields must match the original request.
|
|
4005
4067
|
* @param {string} [request.filter]
|
|
4006
4068
|
* Optional. Supported field/value: - `state` - MISSING|AVAILABLE|ERROR
|
|
4069
|
+
*
|
|
4070
|
+
* The syntax is based on https://google.aip.dev/160.
|
|
4007
4071
|
* @param {object} [options]
|
|
4008
4072
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
4009
4073
|
* @returns {Stream}
|
|
@@ -4046,6 +4110,8 @@ class DlpServiceClient {
|
|
|
4046
4110
|
* results. If set, all other request fields must match the original request.
|
|
4047
4111
|
* @param {string} [request.filter]
|
|
4048
4112
|
* Optional. Supported field/value: - `state` - MISSING|AVAILABLE|ERROR
|
|
4113
|
+
*
|
|
4114
|
+
* The syntax is based on https://google.aip.dev/160.
|
|
4049
4115
|
* @param {object} [options]
|
|
4050
4116
|
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
|
4051
4117
|
* @returns {Object}
|