@google-cloud/dlp 4.4.3 → 5.0.1

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/CHANGELOG.md CHANGED
@@ -4,6 +4,30 @@
4
4
 
5
5
  [1]: https://www.npmjs.com/package/PACKAGE NAME?activeTab=versions
6
6
 
7
+ ## [5.0.1](https://github.com/googleapis/google-cloud-node/compare/dlp-v5.0.0...dlp-v5.0.1) (2023-09-06)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * [Many APIs] simplify logic for HTTP/1.1 REST fallback option ([#4589](https://github.com/googleapis/google-cloud-node/issues/4589)) ([07967ad](https://github.com/googleapis/google-cloud-node/commit/07967add1b5fc28b548cf74721b595ea0ba90d5b))
13
+
14
+ ## [5.0.0](https://github.com/googleapis/google-cloud-node/compare/dlp-v4.4.3...dlp-v5.0.0) (2023-08-06)
15
+
16
+
17
+ ### ⚠ BREAKING CHANGES
18
+
19
+ * migrate to Node 14 ([#4443](https://github.com/googleapis/google-cloud-node/issues/4443))
20
+
21
+ ### Bug Fixes
22
+
23
+ * [Many APIs] fix typings for IAM methods ([#4466](https://github.com/googleapis/google-cloud-node/issues/4466)) ([fa1520c](https://github.com/googleapis/google-cloud-node/commit/fa1520c3eb526efd3523d9cea349ed31683d5889))
24
+ * **deps:** Update dependency @google-cloud/pubsub to v4 ([#4490](https://github.com/googleapis/google-cloud-node/issues/4490)) ([9c47713](https://github.com/googleapis/google-cloud-node/commit/9c477133e3de3f5fdb7f4a57417a821770a5acb3))
25
+
26
+
27
+ ### Miscellaneous Chores
28
+
29
+ * Migrate to Node 14 ([#4443](https://github.com/googleapis/google-cloud-node/issues/4443)) ([2260f12](https://github.com/googleapis/google-cloud-node/commit/2260f12543d171bda95345e53475f5f0fdc45770))
30
+
7
31
  ## [4.4.3](https://github.com/googleapis/google-cloud-node/compare/dlp-v4.4.2...dlp-v4.4.3) (2023-06-28)
8
32
 
9
33
 
package/README.md CHANGED
@@ -168,7 +168,7 @@ also contains samples.
168
168
 
169
169
  ## Supported Node.js Versions
170
170
 
171
- Our client libraries follow the [Node.js release schedule](https://nodejs.org/en/about/releases/).
171
+ Our client libraries follow the [Node.js release schedule](https://github.com/nodejs/release#release-schedule).
172
172
  Libraries are compatible with all current _active_ and _maintenance_ versions of
173
173
  Node.js.
174
174
  If you are using an end-of-life version of Node.js, we recommend that you update
@@ -65,8 +65,7 @@ export declare class DlpServiceClient {
65
65
  * API remote host.
66
66
  * @param {gax.ClientConfig} [options.clientConfig] - Client configuration override.
67
67
  * Follows the structure of {@link gapicConfig}.
68
- * @param {boolean | "rest"} [options.fallback] - Use HTTP fallback mode.
69
- * Pass "rest" to use HTTP/1.1 REST API instead of gRPC.
68
+ * @param {boolean} [options.fallback] - Use HTTP/1.1 REST mode.
70
69
  * For more information, please check the
71
70
  * {@link https://github.com/googleapis/gax-nodejs/blob/main/client-libraries.md#http11-rest-api-mode documentation}.
72
71
  * @param {gax} [gaxInstance]: loaded instance of `google-gax`. Useful if you
@@ -74,7 +73,7 @@ export declare class DlpServiceClient {
74
73
  * HTTP implementation. Load only fallback version and pass it to the constructor:
75
74
  * ```
76
75
  * const gax = require('google-gax/build/src/fallback'); // avoids loading google-gax with gRPC
77
- * const client = new DlpServiceClient({fallback: 'rest'}, gax);
76
+ * const client = new DlpServiceClient({fallback: true}, gax);
78
77
  * ```
79
78
  */
80
79
  constructor(opts?: ClientOptions, gaxInstance?: typeof gax | typeof gax.fallback);
@@ -162,9 +161,8 @@ export declare class DlpServiceClient {
162
161
  * @param {object} [options]
163
162
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
164
163
  * @returns {Promise} - The promise which resolves to an array.
165
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.InspectContentResponse | InspectContentResponse}.
166
- * Please see the
167
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
164
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.InspectContentResponse|InspectContentResponse}.
165
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
168
166
  * for more details and examples.
169
167
  * @example <caption>include:samples/generated/v2/dlp_service.inspect_content.js</caption>
170
168
  * region_tag:dlp_v2_generated_DlpService_InspectContent_async
@@ -219,9 +217,8 @@ export declare class DlpServiceClient {
219
217
  * @param {object} [options]
220
218
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
221
219
  * @returns {Promise} - The promise which resolves to an array.
222
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.RedactImageResponse | RedactImageResponse}.
223
- * Please see the
224
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
220
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.RedactImageResponse|RedactImageResponse}.
221
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
225
222
  * for more details and examples.
226
223
  * @example <caption>include:samples/generated/v2/dlp_service.redact_image.js</caption>
227
224
  * region_tag:dlp_v2_generated_DlpService_RedactImage_async
@@ -274,10 +271,10 @@ export declare class DlpServiceClient {
274
271
  * The item to de-identify. Will be treated as text.
275
272
  *
276
273
  * This value must be of type
277
- * {@link google.privacy.dlp.v2.Table|Table} if your
278
- * {@link google.privacy.dlp.v2.DeidentifyContentRequest.deidentify_config|deidentify_config}
274
+ * {@link protos.google.privacy.dlp.v2.Table|Table} if your
275
+ * {@link protos.google.privacy.dlp.v2.DeidentifyContentRequest.deidentify_config|deidentify_config}
279
276
  * is a
280
- * {@link google.privacy.dlp.v2.RecordTransformations|RecordTransformations}
277
+ * {@link protos.google.privacy.dlp.v2.RecordTransformations|RecordTransformations}
281
278
  * object.
282
279
  * @param {string} request.inspectTemplateName
283
280
  * Template to use. Any configuration directly specified in
@@ -296,9 +293,8 @@ export declare class DlpServiceClient {
296
293
  * @param {object} [options]
297
294
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
298
295
  * @returns {Promise} - The promise which resolves to an array.
299
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.DeidentifyContentResponse | DeidentifyContentResponse}.
300
- * Please see the
301
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
296
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.DeidentifyContentResponse|DeidentifyContentResponse}.
297
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
302
298
  * for more details and examples.
303
299
  * @example <caption>include:samples/generated/v2/dlp_service.deidentify_content.js</caption>
304
300
  * region_tag:dlp_v2_generated_DlpService_DeidentifyContent_async
@@ -369,9 +365,8 @@ export declare class DlpServiceClient {
369
365
  * @param {object} [options]
370
366
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
371
367
  * @returns {Promise} - The promise which resolves to an array.
372
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.ReidentifyContentResponse | ReidentifyContentResponse}.
373
- * Please see the
374
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
368
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.ReidentifyContentResponse|ReidentifyContentResponse}.
369
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
375
370
  * for more details and examples.
376
371
  * @example <caption>include:samples/generated/v2/dlp_service.reidentify_content.js</caption>
377
372
  * region_tag:dlp_v2_generated_DlpService_ReidentifyContent_async
@@ -408,9 +403,8 @@ export declare class DlpServiceClient {
408
403
  * @param {object} [options]
409
404
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
410
405
  * @returns {Promise} - The promise which resolves to an array.
411
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.ListInfoTypesResponse | ListInfoTypesResponse}.
412
- * Please see the
413
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
406
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.ListInfoTypesResponse|ListInfoTypesResponse}.
407
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
414
408
  * for more details and examples.
415
409
  * @example <caption>include:samples/generated/v2/dlp_service.list_info_types.js</caption>
416
410
  * region_tag:dlp_v2_generated_DlpService_ListInfoTypes_async
@@ -462,9 +456,8 @@ export declare class DlpServiceClient {
462
456
  * @param {object} [options]
463
457
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
464
458
  * @returns {Promise} - The promise which resolves to an array.
465
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.InspectTemplate | InspectTemplate}.
466
- * Please see the
467
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
459
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.InspectTemplate|InspectTemplate}.
460
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
468
461
  * for more details and examples.
469
462
  * @example <caption>include:samples/generated/v2/dlp_service.create_inspect_template.js</caption>
470
463
  * region_tag:dlp_v2_generated_DlpService_CreateInspectTemplate_async
@@ -493,9 +486,8 @@ export declare class DlpServiceClient {
493
486
  * @param {object} [options]
494
487
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
495
488
  * @returns {Promise} - The promise which resolves to an array.
496
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.InspectTemplate | InspectTemplate}.
497
- * Please see the
498
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
489
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.InspectTemplate|InspectTemplate}.
490
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
499
491
  * for more details and examples.
500
492
  * @example <caption>include:samples/generated/v2/dlp_service.update_inspect_template.js</caption>
501
493
  * region_tag:dlp_v2_generated_DlpService_UpdateInspectTemplate_async
@@ -520,9 +512,8 @@ export declare class DlpServiceClient {
520
512
  * @param {object} [options]
521
513
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
522
514
  * @returns {Promise} - The promise which resolves to an array.
523
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.InspectTemplate | InspectTemplate}.
524
- * Please see the
525
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
515
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.InspectTemplate|InspectTemplate}.
516
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
526
517
  * for more details and examples.
527
518
  * @example <caption>include:samples/generated/v2/dlp_service.get_inspect_template.js</caption>
528
519
  * region_tag:dlp_v2_generated_DlpService_GetInspectTemplate_async
@@ -547,9 +538,8 @@ export declare class DlpServiceClient {
547
538
  * @param {object} [options]
548
539
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
549
540
  * @returns {Promise} - The promise which resolves to an array.
550
- * The first element of the array is an object representing {@link google.protobuf.Empty | Empty}.
551
- * Please see the
552
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
541
+ * The first element of the array is an object representing {@link protos.google.protobuf.Empty|Empty}.
542
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
553
543
  * for more details and examples.
554
544
  * @example <caption>include:samples/generated/v2/dlp_service.delete_inspect_template.js</caption>
555
545
  * region_tag:dlp_v2_generated_DlpService_DeleteInspectTemplate_async
@@ -602,9 +592,8 @@ export declare class DlpServiceClient {
602
592
  * @param {object} [options]
603
593
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
604
594
  * @returns {Promise} - The promise which resolves to an array.
605
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.DeidentifyTemplate | DeidentifyTemplate}.
606
- * Please see the
607
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
595
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.DeidentifyTemplate|DeidentifyTemplate}.
596
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
608
597
  * for more details and examples.
609
598
  * @example <caption>include:samples/generated/v2/dlp_service.create_deidentify_template.js</caption>
610
599
  * region_tag:dlp_v2_generated_DlpService_CreateDeidentifyTemplate_async
@@ -634,9 +623,8 @@ export declare class DlpServiceClient {
634
623
  * @param {object} [options]
635
624
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
636
625
  * @returns {Promise} - The promise which resolves to an array.
637
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.DeidentifyTemplate | DeidentifyTemplate}.
638
- * Please see the
639
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
626
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.DeidentifyTemplate|DeidentifyTemplate}.
627
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
640
628
  * for more details and examples.
641
629
  * @example <caption>include:samples/generated/v2/dlp_service.update_deidentify_template.js</caption>
642
630
  * region_tag:dlp_v2_generated_DlpService_UpdateDeidentifyTemplate_async
@@ -662,9 +650,8 @@ export declare class DlpServiceClient {
662
650
  * @param {object} [options]
663
651
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
664
652
  * @returns {Promise} - The promise which resolves to an array.
665
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.DeidentifyTemplate | DeidentifyTemplate}.
666
- * Please see the
667
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
653
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.DeidentifyTemplate|DeidentifyTemplate}.
654
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
668
655
  * for more details and examples.
669
656
  * @example <caption>include:samples/generated/v2/dlp_service.get_deidentify_template.js</caption>
670
657
  * region_tag:dlp_v2_generated_DlpService_GetDeidentifyTemplate_async
@@ -690,9 +677,8 @@ export declare class DlpServiceClient {
690
677
  * @param {object} [options]
691
678
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
692
679
  * @returns {Promise} - The promise which resolves to an array.
693
- * The first element of the array is an object representing {@link google.protobuf.Empty | Empty}.
694
- * Please see the
695
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
680
+ * The first element of the array is an object representing {@link protos.google.protobuf.Empty|Empty}.
681
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
696
682
  * for more details and examples.
697
683
  * @example <caption>include:samples/generated/v2/dlp_service.delete_deidentify_template.js</caption>
698
684
  * region_tag:dlp_v2_generated_DlpService_DeleteDeidentifyTemplate_async
@@ -740,9 +726,8 @@ export declare class DlpServiceClient {
740
726
  * @param {object} [options]
741
727
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
742
728
  * @returns {Promise} - The promise which resolves to an array.
743
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.JobTrigger | JobTrigger}.
744
- * Please see the
745
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
729
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.JobTrigger|JobTrigger}.
730
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
746
731
  * for more details and examples.
747
732
  * @example <caption>include:samples/generated/v2/dlp_service.create_job_trigger.js</caption>
748
733
  * region_tag:dlp_v2_generated_DlpService_CreateJobTrigger_async
@@ -770,9 +755,8 @@ export declare class DlpServiceClient {
770
755
  * @param {object} [options]
771
756
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
772
757
  * @returns {Promise} - The promise which resolves to an array.
773
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.JobTrigger | JobTrigger}.
774
- * Please see the
775
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
758
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.JobTrigger|JobTrigger}.
759
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
776
760
  * for more details and examples.
777
761
  * @example <caption>include:samples/generated/v2/dlp_service.update_job_trigger.js</caption>
778
762
  * region_tag:dlp_v2_generated_DlpService_UpdateJobTrigger_async
@@ -799,9 +783,8 @@ export declare class DlpServiceClient {
799
783
  * @param {object} [options]
800
784
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
801
785
  * @returns {Promise} - The promise which resolves to an array.
802
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.HybridInspectResponse | HybridInspectResponse}.
803
- * Please see the
804
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
786
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.HybridInspectResponse|HybridInspectResponse}.
787
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
805
788
  * for more details and examples.
806
789
  * @example <caption>include:samples/generated/v2/dlp_service.hybrid_inspect_job_trigger.js</caption>
807
790
  * region_tag:dlp_v2_generated_DlpService_HybridInspectJobTrigger_async
@@ -825,9 +808,8 @@ export declare class DlpServiceClient {
825
808
  * @param {object} [options]
826
809
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
827
810
  * @returns {Promise} - The promise which resolves to an array.
828
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.JobTrigger | JobTrigger}.
829
- * Please see the
830
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
811
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.JobTrigger|JobTrigger}.
812
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
831
813
  * for more details and examples.
832
814
  * @example <caption>include:samples/generated/v2/dlp_service.get_job_trigger.js</caption>
833
815
  * region_tag:dlp_v2_generated_DlpService_GetJobTrigger_async
@@ -851,9 +833,8 @@ export declare class DlpServiceClient {
851
833
  * @param {object} [options]
852
834
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
853
835
  * @returns {Promise} - The promise which resolves to an array.
854
- * The first element of the array is an object representing {@link google.protobuf.Empty | Empty}.
855
- * Please see the
856
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
836
+ * The first element of the array is an object representing {@link protos.google.protobuf.Empty|Empty}.
837
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
857
838
  * for more details and examples.
858
839
  * @example <caption>include:samples/generated/v2/dlp_service.delete_job_trigger.js</caption>
859
840
  * region_tag:dlp_v2_generated_DlpService_DeleteJobTrigger_async
@@ -877,9 +858,8 @@ export declare class DlpServiceClient {
877
858
  * @param {object} [options]
878
859
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
879
860
  * @returns {Promise} - The promise which resolves to an array.
880
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.DlpJob | DlpJob}.
881
- * Please see the
882
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
861
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.DlpJob|DlpJob}.
862
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
883
863
  * for more details and examples.
884
864
  * @example <caption>include:samples/generated/v2/dlp_service.activate_job_trigger.js</caption>
885
865
  * region_tag:dlp_v2_generated_DlpService_ActivateJobTrigger_async
@@ -934,9 +914,8 @@ export declare class DlpServiceClient {
934
914
  * @param {object} [options]
935
915
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
936
916
  * @returns {Promise} - The promise which resolves to an array.
937
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.DlpJob | DlpJob}.
938
- * Please see the
939
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
917
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.DlpJob|DlpJob}.
918
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
940
919
  * for more details and examples.
941
920
  * @example <caption>include:samples/generated/v2/dlp_service.create_dlp_job.js</caption>
942
921
  * region_tag:dlp_v2_generated_DlpService_CreateDlpJob_async
@@ -960,9 +939,8 @@ export declare class DlpServiceClient {
960
939
  * @param {object} [options]
961
940
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
962
941
  * @returns {Promise} - The promise which resolves to an array.
963
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.DlpJob | DlpJob}.
964
- * Please see the
965
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
942
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.DlpJob|DlpJob}.
943
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
966
944
  * for more details and examples.
967
945
  * @example <caption>include:samples/generated/v2/dlp_service.get_dlp_job.js</caption>
968
946
  * region_tag:dlp_v2_generated_DlpService_GetDlpJob_async
@@ -988,9 +966,8 @@ export declare class DlpServiceClient {
988
966
  * @param {object} [options]
989
967
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
990
968
  * @returns {Promise} - The promise which resolves to an array.
991
- * The first element of the array is an object representing {@link google.protobuf.Empty | Empty}.
992
- * Please see the
993
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
969
+ * The first element of the array is an object representing {@link protos.google.protobuf.Empty|Empty}.
970
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
994
971
  * for more details and examples.
995
972
  * @example <caption>include:samples/generated/v2/dlp_service.delete_dlp_job.js</caption>
996
973
  * region_tag:dlp_v2_generated_DlpService_DeleteDlpJob_async
@@ -1016,9 +993,8 @@ export declare class DlpServiceClient {
1016
993
  * @param {object} [options]
1017
994
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1018
995
  * @returns {Promise} - The promise which resolves to an array.
1019
- * The first element of the array is an object representing {@link google.protobuf.Empty | Empty}.
1020
- * Please see the
1021
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
996
+ * The first element of the array is an object representing {@link protos.google.protobuf.Empty|Empty}.
997
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
1022
998
  * for more details and examples.
1023
999
  * @example <caption>include:samples/generated/v2/dlp_service.cancel_dlp_job.js</caption>
1024
1000
  * region_tag:dlp_v2_generated_DlpService_CancelDlpJob_async
@@ -1070,9 +1046,8 @@ export declare class DlpServiceClient {
1070
1046
  * @param {object} [options]
1071
1047
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1072
1048
  * @returns {Promise} - The promise which resolves to an array.
1073
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.StoredInfoType | StoredInfoType}.
1074
- * Please see the
1075
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
1049
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.StoredInfoType|StoredInfoType}.
1050
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
1076
1051
  * for more details and examples.
1077
1052
  * @example <caption>include:samples/generated/v2/dlp_service.create_stored_info_type.js</caption>
1078
1053
  * region_tag:dlp_v2_generated_DlpService_CreateStoredInfoType_async
@@ -1105,9 +1080,8 @@ export declare class DlpServiceClient {
1105
1080
  * @param {object} [options]
1106
1081
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1107
1082
  * @returns {Promise} - The promise which resolves to an array.
1108
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.StoredInfoType | StoredInfoType}.
1109
- * Please see the
1110
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
1083
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.StoredInfoType|StoredInfoType}.
1084
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
1111
1085
  * for more details and examples.
1112
1086
  * @example <caption>include:samples/generated/v2/dlp_service.update_stored_info_type.js</caption>
1113
1087
  * region_tag:dlp_v2_generated_DlpService_UpdateStoredInfoType_async
@@ -1133,9 +1107,8 @@ export declare class DlpServiceClient {
1133
1107
  * @param {object} [options]
1134
1108
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1135
1109
  * @returns {Promise} - The promise which resolves to an array.
1136
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.StoredInfoType | StoredInfoType}.
1137
- * Please see the
1138
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
1110
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.StoredInfoType|StoredInfoType}.
1111
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
1139
1112
  * for more details and examples.
1140
1113
  * @example <caption>include:samples/generated/v2/dlp_service.get_stored_info_type.js</caption>
1141
1114
  * region_tag:dlp_v2_generated_DlpService_GetStoredInfoType_async
@@ -1161,9 +1134,8 @@ export declare class DlpServiceClient {
1161
1134
  * @param {object} [options]
1162
1135
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1163
1136
  * @returns {Promise} - The promise which resolves to an array.
1164
- * The first element of the array is an object representing {@link google.protobuf.Empty | Empty}.
1165
- * Please see the
1166
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
1137
+ * The first element of the array is an object representing {@link protos.google.protobuf.Empty|Empty}.
1138
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
1167
1139
  * for more details and examples.
1168
1140
  * @example <caption>include:samples/generated/v2/dlp_service.delete_stored_info_type.js</caption>
1169
1141
  * region_tag:dlp_v2_generated_DlpService_DeleteStoredInfoType_async
@@ -1190,9 +1162,8 @@ export declare class DlpServiceClient {
1190
1162
  * @param {object} [options]
1191
1163
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1192
1164
  * @returns {Promise} - The promise which resolves to an array.
1193
- * The first element of the array is an object representing {@link google.privacy.dlp.v2.HybridInspectResponse | HybridInspectResponse}.
1194
- * Please see the
1195
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
1165
+ * The first element of the array is an object representing {@link protos.google.privacy.dlp.v2.HybridInspectResponse|HybridInspectResponse}.
1166
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
1196
1167
  * for more details and examples.
1197
1168
  * @example <caption>include:samples/generated/v2/dlp_service.hybrid_inspect_dlp_job.js</caption>
1198
1169
  * region_tag:dlp_v2_generated_DlpService_HybridInspectDlpJob_async
@@ -1215,9 +1186,8 @@ export declare class DlpServiceClient {
1215
1186
  * @param {object} [options]
1216
1187
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1217
1188
  * @returns {Promise} - The promise which resolves to an array.
1218
- * The first element of the array is an object representing {@link google.protobuf.Empty | Empty}.
1219
- * Please see the
1220
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
1189
+ * The first element of the array is an object representing {@link protos.google.protobuf.Empty|Empty}.
1190
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
1221
1191
  * for more details and examples.
1222
1192
  * @example <caption>include:samples/generated/v2/dlp_service.finish_dlp_job.js</caption>
1223
1193
  * region_tag:dlp_v2_generated_DlpService_FinishDlpJob_async
@@ -1281,14 +1251,13 @@ export declare class DlpServiceClient {
1281
1251
  * @param {object} [options]
1282
1252
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1283
1253
  * @returns {Promise} - The promise which resolves to an array.
1284
- * The first element of the array is Array of {@link google.privacy.dlp.v2.InspectTemplate | InspectTemplate}.
1254
+ * The first element of the array is Array of {@link protos.google.privacy.dlp.v2.InspectTemplate|InspectTemplate}.
1285
1255
  * The client library will perform auto-pagination by default: it will call the API as many
1286
1256
  * times as needed and will merge results from all the pages into this array.
1287
1257
  * Note that it can affect your quota.
1288
1258
  * We recommend using `listInspectTemplatesAsync()`
1289
1259
  * method described below for async iteration which you can stop as needed.
1290
- * Please see the
1291
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
1260
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
1292
1261
  * for more details and examples.
1293
1262
  */
1294
1263
  listInspectTemplates(request?: protos.google.privacy.dlp.v2.IListInspectTemplatesRequest, options?: CallOptions): Promise<[
@@ -1348,13 +1317,12 @@ export declare class DlpServiceClient {
1348
1317
  * @param {object} [options]
1349
1318
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1350
1319
  * @returns {Stream}
1351
- * An object stream which emits an object representing {@link google.privacy.dlp.v2.InspectTemplate | InspectTemplate} on 'data' event.
1320
+ * An object stream which emits an object representing {@link protos.google.privacy.dlp.v2.InspectTemplate|InspectTemplate} on 'data' event.
1352
1321
  * The client library will perform auto-pagination by default: it will call the API as many
1353
1322
  * times as needed. Note that it can affect your quota.
1354
1323
  * We recommend using `listInspectTemplatesAsync()`
1355
1324
  * method described below for async iteration which you can stop as needed.
1356
- * Please see the
1357
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
1325
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
1358
1326
  * for more details and examples.
1359
1327
  */
1360
1328
  listInspectTemplatesStream(request?: protos.google.privacy.dlp.v2.IListInspectTemplatesRequest, options?: CallOptions): Transform;
@@ -1410,12 +1378,11 @@ export declare class DlpServiceClient {
1410
1378
  * @param {object} [options]
1411
1379
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1412
1380
  * @returns {Object}
1413
- * An iterable Object that allows [async iteration](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols).
1381
+ * An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
1414
1382
  * When you iterate the returned iterable, each element will be an object representing
1415
- * {@link google.privacy.dlp.v2.InspectTemplate | InspectTemplate}. The API will be called under the hood as needed, once per the page,
1383
+ * {@link protos.google.privacy.dlp.v2.InspectTemplate|InspectTemplate}. The API will be called under the hood as needed, once per the page,
1416
1384
  * so you can stop the iteration when you don't need more results.
1417
- * Please see the
1418
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
1385
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
1419
1386
  * for more details and examples.
1420
1387
  * @example <caption>include:samples/generated/v2/dlp_service.list_inspect_templates.js</caption>
1421
1388
  * region_tag:dlp_v2_generated_DlpService_ListInspectTemplates_async
@@ -1474,14 +1441,13 @@ export declare class DlpServiceClient {
1474
1441
  * @param {object} [options]
1475
1442
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1476
1443
  * @returns {Promise} - The promise which resolves to an array.
1477
- * The first element of the array is Array of {@link google.privacy.dlp.v2.DeidentifyTemplate | DeidentifyTemplate}.
1444
+ * The first element of the array is Array of {@link protos.google.privacy.dlp.v2.DeidentifyTemplate|DeidentifyTemplate}.
1478
1445
  * The client library will perform auto-pagination by default: it will call the API as many
1479
1446
  * times as needed and will merge results from all the pages into this array.
1480
1447
  * Note that it can affect your quota.
1481
1448
  * We recommend using `listDeidentifyTemplatesAsync()`
1482
1449
  * method described below for async iteration which you can stop as needed.
1483
- * Please see the
1484
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
1450
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
1485
1451
  * for more details and examples.
1486
1452
  */
1487
1453
  listDeidentifyTemplates(request?: protos.google.privacy.dlp.v2.IListDeidentifyTemplatesRequest, options?: CallOptions): Promise<[
@@ -1541,13 +1507,12 @@ export declare class DlpServiceClient {
1541
1507
  * @param {object} [options]
1542
1508
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1543
1509
  * @returns {Stream}
1544
- * An object stream which emits an object representing {@link google.privacy.dlp.v2.DeidentifyTemplate | DeidentifyTemplate} on 'data' event.
1510
+ * An object stream which emits an object representing {@link protos.google.privacy.dlp.v2.DeidentifyTemplate|DeidentifyTemplate} on 'data' event.
1545
1511
  * The client library will perform auto-pagination by default: it will call the API as many
1546
1512
  * times as needed. Note that it can affect your quota.
1547
1513
  * We recommend using `listDeidentifyTemplatesAsync()`
1548
1514
  * method described below for async iteration which you can stop as needed.
1549
- * Please see the
1550
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
1515
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
1551
1516
  * for more details and examples.
1552
1517
  */
1553
1518
  listDeidentifyTemplatesStream(request?: protos.google.privacy.dlp.v2.IListDeidentifyTemplatesRequest, options?: CallOptions): Transform;
@@ -1603,12 +1568,11 @@ export declare class DlpServiceClient {
1603
1568
  * @param {object} [options]
1604
1569
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1605
1570
  * @returns {Object}
1606
- * An iterable Object that allows [async iteration](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols).
1571
+ * An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
1607
1572
  * When you iterate the returned iterable, each element will be an object representing
1608
- * {@link google.privacy.dlp.v2.DeidentifyTemplate | DeidentifyTemplate}. The API will be called under the hood as needed, once per the page,
1573
+ * {@link protos.google.privacy.dlp.v2.DeidentifyTemplate|DeidentifyTemplate}. The API will be called under the hood as needed, once per the page,
1609
1574
  * so you can stop the iteration when you don't need more results.
1610
- * Please see the
1611
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
1575
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
1612
1576
  * for more details and examples.
1613
1577
  * @example <caption>include:samples/generated/v2/dlp_service.list_deidentify_templates.js</caption>
1614
1578
  * region_tag:dlp_v2_generated_DlpService_ListDeidentifyTemplates_async
@@ -1691,14 +1655,13 @@ export declare class DlpServiceClient {
1691
1655
  * @param {object} [options]
1692
1656
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1693
1657
  * @returns {Promise} - The promise which resolves to an array.
1694
- * The first element of the array is Array of {@link google.privacy.dlp.v2.JobTrigger | JobTrigger}.
1658
+ * The first element of the array is Array of {@link protos.google.privacy.dlp.v2.JobTrigger|JobTrigger}.
1695
1659
  * The client library will perform auto-pagination by default: it will call the API as many
1696
1660
  * times as needed and will merge results from all the pages into this array.
1697
1661
  * Note that it can affect your quota.
1698
1662
  * We recommend using `listJobTriggersAsync()`
1699
1663
  * method described below for async iteration which you can stop as needed.
1700
- * Please see the
1701
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
1664
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
1702
1665
  * for more details and examples.
1703
1666
  */
1704
1667
  listJobTriggers(request?: protos.google.privacy.dlp.v2.IListJobTriggersRequest, options?: CallOptions): Promise<[
@@ -1783,13 +1746,12 @@ export declare class DlpServiceClient {
1783
1746
  * @param {object} [options]
1784
1747
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1785
1748
  * @returns {Stream}
1786
- * An object stream which emits an object representing {@link google.privacy.dlp.v2.JobTrigger | JobTrigger} on 'data' event.
1749
+ * An object stream which emits an object representing {@link protos.google.privacy.dlp.v2.JobTrigger|JobTrigger} on 'data' event.
1787
1750
  * The client library will perform auto-pagination by default: it will call the API as many
1788
1751
  * times as needed. Note that it can affect your quota.
1789
1752
  * We recommend using `listJobTriggersAsync()`
1790
1753
  * method described below for async iteration which you can stop as needed.
1791
- * Please see the
1792
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
1754
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
1793
1755
  * for more details and examples.
1794
1756
  */
1795
1757
  listJobTriggersStream(request?: protos.google.privacy.dlp.v2.IListJobTriggersRequest, options?: CallOptions): Transform;
@@ -1870,12 +1832,11 @@ export declare class DlpServiceClient {
1870
1832
  * @param {object} [options]
1871
1833
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1872
1834
  * @returns {Object}
1873
- * An iterable Object that allows [async iteration](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols).
1835
+ * An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
1874
1836
  * When you iterate the returned iterable, each element will be an object representing
1875
- * {@link google.privacy.dlp.v2.JobTrigger | JobTrigger}. The API will be called under the hood as needed, once per the page,
1837
+ * {@link protos.google.privacy.dlp.v2.JobTrigger|JobTrigger}. The API will be called under the hood as needed, once per the page,
1876
1838
  * so you can stop the iteration when you don't need more results.
1877
- * Please see the
1878
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
1839
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
1879
1840
  * for more details and examples.
1880
1841
  * @example <caption>include:samples/generated/v2/dlp_service.list_job_triggers.js</caption>
1881
1842
  * region_tag:dlp_v2_generated_DlpService_ListJobTriggers_async
@@ -1959,14 +1920,13 @@ export declare class DlpServiceClient {
1959
1920
  * @param {object} [options]
1960
1921
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1961
1922
  * @returns {Promise} - The promise which resolves to an array.
1962
- * The first element of the array is Array of {@link google.privacy.dlp.v2.DlpJob | DlpJob}.
1923
+ * The first element of the array is Array of {@link protos.google.privacy.dlp.v2.DlpJob|DlpJob}.
1963
1924
  * The client library will perform auto-pagination by default: it will call the API as many
1964
1925
  * times as needed and will merge results from all the pages into this array.
1965
1926
  * Note that it can affect your quota.
1966
1927
  * We recommend using `listDlpJobsAsync()`
1967
1928
  * method described below for async iteration which you can stop as needed.
1968
- * Please see the
1969
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
1929
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
1970
1930
  * for more details and examples.
1971
1931
  */
1972
1932
  listDlpJobs(request?: protos.google.privacy.dlp.v2.IListDlpJobsRequest, options?: CallOptions): Promise<[
@@ -2051,13 +2011,12 @@ export declare class DlpServiceClient {
2051
2011
  * @param {object} [options]
2052
2012
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
2053
2013
  * @returns {Stream}
2054
- * An object stream which emits an object representing {@link google.privacy.dlp.v2.DlpJob | DlpJob} on 'data' event.
2014
+ * An object stream which emits an object representing {@link protos.google.privacy.dlp.v2.DlpJob|DlpJob} on 'data' event.
2055
2015
  * The client library will perform auto-pagination by default: it will call the API as many
2056
2016
  * times as needed. Note that it can affect your quota.
2057
2017
  * We recommend using `listDlpJobsAsync()`
2058
2018
  * method described below for async iteration which you can stop as needed.
2059
- * Please see the
2060
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
2019
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
2061
2020
  * for more details and examples.
2062
2021
  */
2063
2022
  listDlpJobsStream(request?: protos.google.privacy.dlp.v2.IListDlpJobsRequest, options?: CallOptions): Transform;
@@ -2138,12 +2097,11 @@ export declare class DlpServiceClient {
2138
2097
  * @param {object} [options]
2139
2098
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
2140
2099
  * @returns {Object}
2141
- * An iterable Object that allows [async iteration](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols).
2100
+ * An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
2142
2101
  * When you iterate the returned iterable, each element will be an object representing
2143
- * {@link google.privacy.dlp.v2.DlpJob | DlpJob}. The API will be called under the hood as needed, once per the page,
2102
+ * {@link protos.google.privacy.dlp.v2.DlpJob|DlpJob}. The API will be called under the hood as needed, once per the page,
2144
2103
  * so you can stop the iteration when you don't need more results.
2145
- * Please see the
2146
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
2104
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
2147
2105
  * for more details and examples.
2148
2106
  * @example <caption>include:samples/generated/v2/dlp_service.list_dlp_jobs.js</caption>
2149
2107
  * region_tag:dlp_v2_generated_DlpService_ListDlpJobs_async
@@ -2199,14 +2157,13 @@ export declare class DlpServiceClient {
2199
2157
  * @param {object} [options]
2200
2158
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
2201
2159
  * @returns {Promise} - The promise which resolves to an array.
2202
- * The first element of the array is Array of {@link google.privacy.dlp.v2.StoredInfoType | StoredInfoType}.
2160
+ * The first element of the array is Array of {@link protos.google.privacy.dlp.v2.StoredInfoType|StoredInfoType}.
2203
2161
  * The client library will perform auto-pagination by default: it will call the API as many
2204
2162
  * times as needed and will merge results from all the pages into this array.
2205
2163
  * Note that it can affect your quota.
2206
2164
  * We recommend using `listStoredInfoTypesAsync()`
2207
2165
  * method described below for async iteration which you can stop as needed.
2208
- * Please see the
2209
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
2166
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
2210
2167
  * for more details and examples.
2211
2168
  */
2212
2169
  listStoredInfoTypes(request?: protos.google.privacy.dlp.v2.IListStoredInfoTypesRequest, options?: CallOptions): Promise<[
@@ -2263,13 +2220,12 @@ export declare class DlpServiceClient {
2263
2220
  * @param {object} [options]
2264
2221
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
2265
2222
  * @returns {Stream}
2266
- * An object stream which emits an object representing {@link google.privacy.dlp.v2.StoredInfoType | StoredInfoType} on 'data' event.
2223
+ * An object stream which emits an object representing {@link protos.google.privacy.dlp.v2.StoredInfoType|StoredInfoType} on 'data' event.
2267
2224
  * The client library will perform auto-pagination by default: it will call the API as many
2268
2225
  * times as needed. Note that it can affect your quota.
2269
2226
  * We recommend using `listStoredInfoTypesAsync()`
2270
2227
  * method described below for async iteration which you can stop as needed.
2271
- * Please see the
2272
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
2228
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
2273
2229
  * for more details and examples.
2274
2230
  */
2275
2231
  listStoredInfoTypesStream(request?: protos.google.privacy.dlp.v2.IListStoredInfoTypesRequest, options?: CallOptions): Transform;
@@ -2322,12 +2278,11 @@ export declare class DlpServiceClient {
2322
2278
  * @param {object} [options]
2323
2279
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
2324
2280
  * @returns {Object}
2325
- * An iterable Object that allows [async iteration](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols).
2281
+ * An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
2326
2282
  * When you iterate the returned iterable, each element will be an object representing
2327
- * {@link google.privacy.dlp.v2.StoredInfoType | StoredInfoType}. The API will be called under the hood as needed, once per the page,
2283
+ * {@link protos.google.privacy.dlp.v2.StoredInfoType|StoredInfoType}. The API will be called under the hood as needed, once per the page,
2328
2284
  * so you can stop the iteration when you don't need more results.
2329
- * Please see the
2330
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
2285
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
2331
2286
  * for more details and examples.
2332
2287
  * @example <caption>include:samples/generated/v2/dlp_service.list_stored_info_types.js</caption>
2333
2288
  * region_tag:dlp_v2_generated_DlpService_ListStoredInfoTypes_async
@@ -2344,8 +2299,7 @@ export declare class DlpServiceClient {
2344
2299
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html | CallOptions} for more details.
2345
2300
  * @returns {Promise} - The promise which resolves to an array.
2346
2301
  * The first element of the array is an object representing {@link google.cloud.location.Location | Location}.
2347
- * Please see the
2348
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
2302
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
2349
2303
  * for more details and examples.
2350
2304
  * @example
2351
2305
  * ```
@@ -2370,12 +2324,11 @@ export declare class DlpServiceClient {
2370
2324
  * @param {object} [options]
2371
2325
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
2372
2326
  * @returns {Object}
2373
- * An iterable Object that allows [async iteration](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols).
2327
+ * An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
2374
2328
  * When you iterate the returned iterable, each element will be an object representing
2375
2329
  * {@link google.cloud.location.Location | Location}. The API will be called under the hood as needed, once per the page,
2376
2330
  * so you can stop the iteration when you don't need more results.
2377
- * Please see the
2378
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
2331
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
2379
2332
  * for more details and examples.
2380
2333
  * @example
2381
2334
  * ```
@@ -68,8 +68,7 @@ class DlpServiceClient {
68
68
  * API remote host.
69
69
  * @param {gax.ClientConfig} [options.clientConfig] - Client configuration override.
70
70
  * Follows the structure of {@link gapicConfig}.
71
- * @param {boolean | "rest"} [options.fallback] - Use HTTP fallback mode.
72
- * Pass "rest" to use HTTP/1.1 REST API instead of gRPC.
71
+ * @param {boolean} [options.fallback] - Use HTTP/1.1 REST mode.
73
72
  * For more information, please check the
74
73
  * {@link https://github.com/googleapis/gax-nodejs/blob/main/client-libraries.md#http11-rest-api-mode documentation}.
75
74
  * @param {gax} [gaxInstance]: loaded instance of `google-gax`. Useful if you
@@ -77,7 +76,7 @@ class DlpServiceClient {
77
76
  * HTTP implementation. Load only fallback version and pass it to the constructor:
78
77
  * ```
79
78
  * const gax = require('google-gax/build/src/fallback'); // avoids loading google-gax with gRPC
80
- * const client = new DlpServiceClient({fallback: 'rest'}, gax);
79
+ * const client = new DlpServiceClient({fallback: true}, gax);
81
80
  * ```
82
81
  */
83
82
  constructor(opts, gaxInstance) {
@@ -135,7 +134,7 @@ class DlpServiceClient {
135
134
  if (!opts.fallback) {
136
135
  clientHeader.push(`grpc/${this._gaxGrpc.grpcVersion}`);
137
136
  }
138
- else if (opts.fallback === 'rest') {
137
+ else {
139
138
  clientHeader.push(`rest/${this._gaxGrpc.grpcVersion}`);
140
139
  }
141
140
  if (opts.libName && opts.libVersion) {
@@ -984,13 +983,12 @@ class DlpServiceClient {
984
983
  * @param {object} [options]
985
984
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
986
985
  * @returns {Stream}
987
- * An object stream which emits an object representing {@link google.privacy.dlp.v2.InspectTemplate | InspectTemplate} on 'data' event.
986
+ * An object stream which emits an object representing {@link protos.google.privacy.dlp.v2.InspectTemplate|InspectTemplate} on 'data' event.
988
987
  * The client library will perform auto-pagination by default: it will call the API as many
989
988
  * times as needed. Note that it can affect your quota.
990
989
  * We recommend using `listInspectTemplatesAsync()`
991
990
  * method described below for async iteration which you can stop as needed.
992
- * Please see the
993
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
991
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
994
992
  * for more details and examples.
995
993
  */
996
994
  listInspectTemplatesStream(request, options) {
@@ -1060,12 +1058,11 @@ class DlpServiceClient {
1060
1058
  * @param {object} [options]
1061
1059
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1062
1060
  * @returns {Object}
1063
- * An iterable Object that allows [async iteration](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols).
1061
+ * An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
1064
1062
  * When you iterate the returned iterable, each element will be an object representing
1065
- * {@link google.privacy.dlp.v2.InspectTemplate | InspectTemplate}. The API will be called under the hood as needed, once per the page,
1063
+ * {@link protos.google.privacy.dlp.v2.InspectTemplate|InspectTemplate}. The API will be called under the hood as needed, once per the page,
1066
1064
  * so you can stop the iteration when you don't need more results.
1067
- * Please see the
1068
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
1065
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
1069
1066
  * for more details and examples.
1070
1067
  * @example <caption>include:samples/generated/v2/dlp_service.list_inspect_templates.js</caption>
1071
1068
  * region_tag:dlp_v2_generated_DlpService_ListInspectTemplates_async
@@ -1156,13 +1153,12 @@ class DlpServiceClient {
1156
1153
  * @param {object} [options]
1157
1154
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1158
1155
  * @returns {Stream}
1159
- * An object stream which emits an object representing {@link google.privacy.dlp.v2.DeidentifyTemplate | DeidentifyTemplate} on 'data' event.
1156
+ * An object stream which emits an object representing {@link protos.google.privacy.dlp.v2.DeidentifyTemplate|DeidentifyTemplate} on 'data' event.
1160
1157
  * The client library will perform auto-pagination by default: it will call the API as many
1161
1158
  * times as needed. Note that it can affect your quota.
1162
1159
  * We recommend using `listDeidentifyTemplatesAsync()`
1163
1160
  * method described below for async iteration which you can stop as needed.
1164
- * Please see the
1165
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
1161
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
1166
1162
  * for more details and examples.
1167
1163
  */
1168
1164
  listDeidentifyTemplatesStream(request, options) {
@@ -1232,12 +1228,11 @@ class DlpServiceClient {
1232
1228
  * @param {object} [options]
1233
1229
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1234
1230
  * @returns {Object}
1235
- * An iterable Object that allows [async iteration](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols).
1231
+ * An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
1236
1232
  * When you iterate the returned iterable, each element will be an object representing
1237
- * {@link google.privacy.dlp.v2.DeidentifyTemplate | DeidentifyTemplate}. The API will be called under the hood as needed, once per the page,
1233
+ * {@link protos.google.privacy.dlp.v2.DeidentifyTemplate|DeidentifyTemplate}. The API will be called under the hood as needed, once per the page,
1238
1234
  * so you can stop the iteration when you don't need more results.
1239
- * Please see the
1240
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
1235
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
1241
1236
  * for more details and examples.
1242
1237
  * @example <caption>include:samples/generated/v2/dlp_service.list_deidentify_templates.js</caption>
1243
1238
  * region_tag:dlp_v2_generated_DlpService_ListDeidentifyTemplates_async
@@ -1353,13 +1348,12 @@ class DlpServiceClient {
1353
1348
  * @param {object} [options]
1354
1349
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1355
1350
  * @returns {Stream}
1356
- * An object stream which emits an object representing {@link google.privacy.dlp.v2.JobTrigger | JobTrigger} on 'data' event.
1351
+ * An object stream which emits an object representing {@link protos.google.privacy.dlp.v2.JobTrigger|JobTrigger} on 'data' event.
1357
1352
  * The client library will perform auto-pagination by default: it will call the API as many
1358
1353
  * times as needed. Note that it can affect your quota.
1359
1354
  * We recommend using `listJobTriggersAsync()`
1360
1355
  * method described below for async iteration which you can stop as needed.
1361
- * Please see the
1362
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
1356
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
1363
1357
  * for more details and examples.
1364
1358
  */
1365
1359
  listJobTriggersStream(request, options) {
@@ -1454,12 +1448,11 @@ class DlpServiceClient {
1454
1448
  * @param {object} [options]
1455
1449
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1456
1450
  * @returns {Object}
1457
- * An iterable Object that allows [async iteration](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols).
1451
+ * An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
1458
1452
  * When you iterate the returned iterable, each element will be an object representing
1459
- * {@link google.privacy.dlp.v2.JobTrigger | JobTrigger}. The API will be called under the hood as needed, once per the page,
1453
+ * {@link protos.google.privacy.dlp.v2.JobTrigger|JobTrigger}. The API will be called under the hood as needed, once per the page,
1460
1454
  * so you can stop the iteration when you don't need more results.
1461
- * Please see the
1462
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
1455
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
1463
1456
  * for more details and examples.
1464
1457
  * @example <caption>include:samples/generated/v2/dlp_service.list_job_triggers.js</caption>
1465
1458
  * region_tag:dlp_v2_generated_DlpService_ListJobTriggers_async
@@ -1575,13 +1568,12 @@ class DlpServiceClient {
1575
1568
  * @param {object} [options]
1576
1569
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1577
1570
  * @returns {Stream}
1578
- * An object stream which emits an object representing {@link google.privacy.dlp.v2.DlpJob | DlpJob} on 'data' event.
1571
+ * An object stream which emits an object representing {@link protos.google.privacy.dlp.v2.DlpJob|DlpJob} on 'data' event.
1579
1572
  * The client library will perform auto-pagination by default: it will call the API as many
1580
1573
  * times as needed. Note that it can affect your quota.
1581
1574
  * We recommend using `listDlpJobsAsync()`
1582
1575
  * method described below for async iteration which you can stop as needed.
1583
- * Please see the
1584
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
1576
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
1585
1577
  * for more details and examples.
1586
1578
  */
1587
1579
  listDlpJobsStream(request, options) {
@@ -1676,12 +1668,11 @@ class DlpServiceClient {
1676
1668
  * @param {object} [options]
1677
1669
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1678
1670
  * @returns {Object}
1679
- * An iterable Object that allows [async iteration](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols).
1671
+ * An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
1680
1672
  * When you iterate the returned iterable, each element will be an object representing
1681
- * {@link google.privacy.dlp.v2.DlpJob | DlpJob}. The API will be called under the hood as needed, once per the page,
1673
+ * {@link protos.google.privacy.dlp.v2.DlpJob|DlpJob}. The API will be called under the hood as needed, once per the page,
1682
1674
  * so you can stop the iteration when you don't need more results.
1683
- * Please see the
1684
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
1675
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
1685
1676
  * for more details and examples.
1686
1677
  * @example <caption>include:samples/generated/v2/dlp_service.list_dlp_jobs.js</caption>
1687
1678
  * region_tag:dlp_v2_generated_DlpService_ListDlpJobs_async
@@ -1769,13 +1760,12 @@ class DlpServiceClient {
1769
1760
  * @param {object} [options]
1770
1761
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1771
1762
  * @returns {Stream}
1772
- * An object stream which emits an object representing {@link google.privacy.dlp.v2.StoredInfoType | StoredInfoType} on 'data' event.
1763
+ * An object stream which emits an object representing {@link protos.google.privacy.dlp.v2.StoredInfoType|StoredInfoType} on 'data' event.
1773
1764
  * The client library will perform auto-pagination by default: it will call the API as many
1774
1765
  * times as needed. Note that it can affect your quota.
1775
1766
  * We recommend using `listStoredInfoTypesAsync()`
1776
1767
  * method described below for async iteration which you can stop as needed.
1777
- * Please see the
1778
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
1768
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
1779
1769
  * for more details and examples.
1780
1770
  */
1781
1771
  listStoredInfoTypesStream(request, options) {
@@ -1842,12 +1832,11 @@ class DlpServiceClient {
1842
1832
  * @param {object} [options]
1843
1833
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1844
1834
  * @returns {Object}
1845
- * An iterable Object that allows [async iteration](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols).
1835
+ * An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
1846
1836
  * When you iterate the returned iterable, each element will be an object representing
1847
- * {@link google.privacy.dlp.v2.StoredInfoType | StoredInfoType}. The API will be called under the hood as needed, once per the page,
1837
+ * {@link protos.google.privacy.dlp.v2.StoredInfoType|StoredInfoType}. The API will be called under the hood as needed, once per the page,
1848
1838
  * so you can stop the iteration when you don't need more results.
1849
- * Please see the
1850
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
1839
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
1851
1840
  * for more details and examples.
1852
1841
  * @example <caption>include:samples/generated/v2/dlp_service.list_stored_info_types.js</caption>
1853
1842
  * region_tag:dlp_v2_generated_DlpService_ListStoredInfoTypes_async
@@ -1878,8 +1867,7 @@ class DlpServiceClient {
1878
1867
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html | CallOptions} for more details.
1879
1868
  * @returns {Promise} - The promise which resolves to an array.
1880
1869
  * The first element of the array is an object representing {@link google.cloud.location.Location | Location}.
1881
- * Please see the
1882
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods)
1870
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
1883
1871
  * for more details and examples.
1884
1872
  * @example
1885
1873
  * ```
@@ -1906,12 +1894,11 @@ class DlpServiceClient {
1906
1894
  * @param {object} [options]
1907
1895
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
1908
1896
  * @returns {Object}
1909
- * An iterable Object that allows [async iteration](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols).
1897
+ * An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
1910
1898
  * When you iterate the returned iterable, each element will be an object representing
1911
1899
  * {@link google.cloud.location.Location | Location}. The API will be called under the hood as needed, once per the page,
1912
1900
  * so you can stop the iteration when you don't need more results.
1913
- * Please see the
1914
- * [documentation](https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination)
1901
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
1915
1902
  * for more details and examples.
1916
1903
  * @example
1917
1904
  * ```
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@google-cloud/dlp",
3
3
  "description": "DLP API client for Node.js",
4
- "version": "4.4.3",
4
+ "version": "5.0.1",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Google Inc",
7
7
  "engines": {
8
- "node": ">=12.0.0"
8
+ "node": ">=14.0.0"
9
9
  },
10
10
  "repository": {
11
11
  "type": "git",
@@ -48,27 +48,24 @@
48
48
  "test": "c8 mocha build/test"
49
49
  },
50
50
  "dependencies": {
51
- "google-gax": "^3.5.8"
51
+ "google-gax": "^4.0.3"
52
52
  },
53
53
  "devDependencies": {
54
54
  "@types/mocha": "^9.0.0",
55
- "@types/node": "^18.0.0",
55
+ "@types/node": "^20.4.5",
56
56
  "@types/sinon": "^10.0.0",
57
- "c8": "^7.0.0",
58
- "gts": "^3.1.0",
57
+ "c8": "^8.0.1",
58
+ "gapic-tools": "^0.1.8",
59
+ "gts": "^5.0.0",
59
60
  "jsdoc": "^4.0.0",
60
- "jsdoc-fresh": "^2.0.0",
61
- "jsdoc-region-tag": "^2.0.0",
61
+ "jsdoc-fresh": "^3.0.0",
62
+ "jsdoc-region-tag": "^3.0.0",
62
63
  "linkinator": "4.1.2",
63
64
  "long": "^5.2.3",
64
65
  "mocha": "^9.2.2",
65
- "null-loader": "^4.0.0",
66
66
  "pack-n-play": "^1.0.0-2",
67
67
  "sinon": "^15.0.0",
68
- "ts-loader": "^9.0.0",
69
- "typescript": "^4.6.4",
70
- "webpack": "^5.0.0",
71
- "webpack-cli": "^5.0.0"
68
+ "typescript": "^5.1.6"
72
69
  },
73
70
  "homepage": "https://github.com/googleapis/google-cloud-node/tree/main/packages/google-privacy-dlp"
74
71
  }