@google-cloud/dlp 5.0.0 → 5.1.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.
@@ -354,6 +354,76 @@ export namespace google {
354
354
  */
355
355
  public activateJobTrigger(request: google.privacy.dlp.v2.IActivateJobTriggerRequest): Promise<google.privacy.dlp.v2.DlpJob>;
356
356
 
357
+ /**
358
+ * Calls CreateDiscoveryConfig.
359
+ * @param request CreateDiscoveryConfigRequest message or plain object
360
+ * @param callback Node-style callback called with the error, if any, and DiscoveryConfig
361
+ */
362
+ public createDiscoveryConfig(request: google.privacy.dlp.v2.ICreateDiscoveryConfigRequest, callback: google.privacy.dlp.v2.DlpService.CreateDiscoveryConfigCallback): void;
363
+
364
+ /**
365
+ * Calls CreateDiscoveryConfig.
366
+ * @param request CreateDiscoveryConfigRequest message or plain object
367
+ * @returns Promise
368
+ */
369
+ public createDiscoveryConfig(request: google.privacy.dlp.v2.ICreateDiscoveryConfigRequest): Promise<google.privacy.dlp.v2.DiscoveryConfig>;
370
+
371
+ /**
372
+ * Calls UpdateDiscoveryConfig.
373
+ * @param request UpdateDiscoveryConfigRequest message or plain object
374
+ * @param callback Node-style callback called with the error, if any, and DiscoveryConfig
375
+ */
376
+ public updateDiscoveryConfig(request: google.privacy.dlp.v2.IUpdateDiscoveryConfigRequest, callback: google.privacy.dlp.v2.DlpService.UpdateDiscoveryConfigCallback): void;
377
+
378
+ /**
379
+ * Calls UpdateDiscoveryConfig.
380
+ * @param request UpdateDiscoveryConfigRequest message or plain object
381
+ * @returns Promise
382
+ */
383
+ public updateDiscoveryConfig(request: google.privacy.dlp.v2.IUpdateDiscoveryConfigRequest): Promise<google.privacy.dlp.v2.DiscoveryConfig>;
384
+
385
+ /**
386
+ * Calls GetDiscoveryConfig.
387
+ * @param request GetDiscoveryConfigRequest message or plain object
388
+ * @param callback Node-style callback called with the error, if any, and DiscoveryConfig
389
+ */
390
+ public getDiscoveryConfig(request: google.privacy.dlp.v2.IGetDiscoveryConfigRequest, callback: google.privacy.dlp.v2.DlpService.GetDiscoveryConfigCallback): void;
391
+
392
+ /**
393
+ * Calls GetDiscoveryConfig.
394
+ * @param request GetDiscoveryConfigRequest message or plain object
395
+ * @returns Promise
396
+ */
397
+ public getDiscoveryConfig(request: google.privacy.dlp.v2.IGetDiscoveryConfigRequest): Promise<google.privacy.dlp.v2.DiscoveryConfig>;
398
+
399
+ /**
400
+ * Calls ListDiscoveryConfigs.
401
+ * @param request ListDiscoveryConfigsRequest message or plain object
402
+ * @param callback Node-style callback called with the error, if any, and ListDiscoveryConfigsResponse
403
+ */
404
+ public listDiscoveryConfigs(request: google.privacy.dlp.v2.IListDiscoveryConfigsRequest, callback: google.privacy.dlp.v2.DlpService.ListDiscoveryConfigsCallback): void;
405
+
406
+ /**
407
+ * Calls ListDiscoveryConfigs.
408
+ * @param request ListDiscoveryConfigsRequest message or plain object
409
+ * @returns Promise
410
+ */
411
+ public listDiscoveryConfigs(request: google.privacy.dlp.v2.IListDiscoveryConfigsRequest): Promise<google.privacy.dlp.v2.ListDiscoveryConfigsResponse>;
412
+
413
+ /**
414
+ * Calls DeleteDiscoveryConfig.
415
+ * @param request DeleteDiscoveryConfigRequest message or plain object
416
+ * @param callback Node-style callback called with the error, if any, and Empty
417
+ */
418
+ public deleteDiscoveryConfig(request: google.privacy.dlp.v2.IDeleteDiscoveryConfigRequest, callback: google.privacy.dlp.v2.DlpService.DeleteDiscoveryConfigCallback): void;
419
+
420
+ /**
421
+ * Calls DeleteDiscoveryConfig.
422
+ * @param request DeleteDiscoveryConfigRequest message or plain object
423
+ * @returns Promise
424
+ */
425
+ public deleteDiscoveryConfig(request: google.privacy.dlp.v2.IDeleteDiscoveryConfigRequest): Promise<google.protobuf.Empty>;
426
+
357
427
  /**
358
428
  * Calls CreateDlpJob.
359
429
  * @param request CreateDlpJobRequest message or plain object
@@ -679,6 +749,41 @@ export namespace google {
679
749
  */
680
750
  type ActivateJobTriggerCallback = (error: (Error|null), response?: google.privacy.dlp.v2.DlpJob) => void;
681
751
 
752
+ /**
753
+ * Callback as used by {@link google.privacy.dlp.v2.DlpService|createDiscoveryConfig}.
754
+ * @param error Error, if any
755
+ * @param [response] DiscoveryConfig
756
+ */
757
+ type CreateDiscoveryConfigCallback = (error: (Error|null), response?: google.privacy.dlp.v2.DiscoveryConfig) => void;
758
+
759
+ /**
760
+ * Callback as used by {@link google.privacy.dlp.v2.DlpService|updateDiscoveryConfig}.
761
+ * @param error Error, if any
762
+ * @param [response] DiscoveryConfig
763
+ */
764
+ type UpdateDiscoveryConfigCallback = (error: (Error|null), response?: google.privacy.dlp.v2.DiscoveryConfig) => void;
765
+
766
+ /**
767
+ * Callback as used by {@link google.privacy.dlp.v2.DlpService|getDiscoveryConfig}.
768
+ * @param error Error, if any
769
+ * @param [response] DiscoveryConfig
770
+ */
771
+ type GetDiscoveryConfigCallback = (error: (Error|null), response?: google.privacy.dlp.v2.DiscoveryConfig) => void;
772
+
773
+ /**
774
+ * Callback as used by {@link google.privacy.dlp.v2.DlpService|listDiscoveryConfigs}.
775
+ * @param error Error, if any
776
+ * @param [response] ListDiscoveryConfigsResponse
777
+ */
778
+ type ListDiscoveryConfigsCallback = (error: (Error|null), response?: google.privacy.dlp.v2.ListDiscoveryConfigsResponse) => void;
779
+
780
+ /**
781
+ * Callback as used by {@link google.privacy.dlp.v2.DlpService|deleteDiscoveryConfig}.
782
+ * @param error Error, if any
783
+ * @param [response] Empty
784
+ */
785
+ type DeleteDiscoveryConfigCallback = (error: (Error|null), response?: google.protobuf.Empty) => void;
786
+
682
787
  /**
683
788
  * Callback as used by {@link google.privacy.dlp.v2.DlpService|createDlpJob}.
684
789
  * @param error Error, if any
@@ -1306,6 +1411,9 @@ export namespace google {
1306
1411
  /** InspectConfig minLikelihood */
1307
1412
  minLikelihood?: (google.privacy.dlp.v2.Likelihood|keyof typeof google.privacy.dlp.v2.Likelihood|null);
1308
1413
 
1414
+ /** InspectConfig minLikelihoodPerInfoType */
1415
+ minLikelihoodPerInfoType?: (google.privacy.dlp.v2.InspectConfig.IInfoTypeLikelihood[]|null);
1416
+
1309
1417
  /** InspectConfig limits */
1310
1418
  limits?: (google.privacy.dlp.v2.InspectConfig.IFindingLimits|null);
1311
1419
 
@@ -1340,6 +1448,9 @@ export namespace google {
1340
1448
  /** InspectConfig minLikelihood. */
1341
1449
  public minLikelihood: (google.privacy.dlp.v2.Likelihood|keyof typeof google.privacy.dlp.v2.Likelihood);
1342
1450
 
1451
+ /** InspectConfig minLikelihoodPerInfoType. */
1452
+ public minLikelihoodPerInfoType: google.privacy.dlp.v2.InspectConfig.IInfoTypeLikelihood[];
1453
+
1343
1454
  /** InspectConfig limits. */
1344
1455
  public limits?: (google.privacy.dlp.v2.InspectConfig.IFindingLimits|null);
1345
1456
 
@@ -1438,6 +1549,109 @@ export namespace google {
1438
1549
 
1439
1550
  namespace InspectConfig {
1440
1551
 
1552
+ /** Properties of an InfoTypeLikelihood. */
1553
+ interface IInfoTypeLikelihood {
1554
+
1555
+ /** InfoTypeLikelihood infoType */
1556
+ infoType?: (google.privacy.dlp.v2.IInfoType|null);
1557
+
1558
+ /** InfoTypeLikelihood minLikelihood */
1559
+ minLikelihood?: (google.privacy.dlp.v2.Likelihood|keyof typeof google.privacy.dlp.v2.Likelihood|null);
1560
+ }
1561
+
1562
+ /** Represents an InfoTypeLikelihood. */
1563
+ class InfoTypeLikelihood implements IInfoTypeLikelihood {
1564
+
1565
+ /**
1566
+ * Constructs a new InfoTypeLikelihood.
1567
+ * @param [properties] Properties to set
1568
+ */
1569
+ constructor(properties?: google.privacy.dlp.v2.InspectConfig.IInfoTypeLikelihood);
1570
+
1571
+ /** InfoTypeLikelihood infoType. */
1572
+ public infoType?: (google.privacy.dlp.v2.IInfoType|null);
1573
+
1574
+ /** InfoTypeLikelihood minLikelihood. */
1575
+ public minLikelihood: (google.privacy.dlp.v2.Likelihood|keyof typeof google.privacy.dlp.v2.Likelihood);
1576
+
1577
+ /**
1578
+ * Creates a new InfoTypeLikelihood instance using the specified properties.
1579
+ * @param [properties] Properties to set
1580
+ * @returns InfoTypeLikelihood instance
1581
+ */
1582
+ public static create(properties?: google.privacy.dlp.v2.InspectConfig.IInfoTypeLikelihood): google.privacy.dlp.v2.InspectConfig.InfoTypeLikelihood;
1583
+
1584
+ /**
1585
+ * Encodes the specified InfoTypeLikelihood message. Does not implicitly {@link google.privacy.dlp.v2.InspectConfig.InfoTypeLikelihood.verify|verify} messages.
1586
+ * @param message InfoTypeLikelihood message or plain object to encode
1587
+ * @param [writer] Writer to encode to
1588
+ * @returns Writer
1589
+ */
1590
+ public static encode(message: google.privacy.dlp.v2.InspectConfig.IInfoTypeLikelihood, writer?: $protobuf.Writer): $protobuf.Writer;
1591
+
1592
+ /**
1593
+ * Encodes the specified InfoTypeLikelihood message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.InspectConfig.InfoTypeLikelihood.verify|verify} messages.
1594
+ * @param message InfoTypeLikelihood message or plain object to encode
1595
+ * @param [writer] Writer to encode to
1596
+ * @returns Writer
1597
+ */
1598
+ public static encodeDelimited(message: google.privacy.dlp.v2.InspectConfig.IInfoTypeLikelihood, writer?: $protobuf.Writer): $protobuf.Writer;
1599
+
1600
+ /**
1601
+ * Decodes an InfoTypeLikelihood message from the specified reader or buffer.
1602
+ * @param reader Reader or buffer to decode from
1603
+ * @param [length] Message length if known beforehand
1604
+ * @returns InfoTypeLikelihood
1605
+ * @throws {Error} If the payload is not a reader or valid buffer
1606
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1607
+ */
1608
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.InspectConfig.InfoTypeLikelihood;
1609
+
1610
+ /**
1611
+ * Decodes an InfoTypeLikelihood message from the specified reader or buffer, length delimited.
1612
+ * @param reader Reader or buffer to decode from
1613
+ * @returns InfoTypeLikelihood
1614
+ * @throws {Error} If the payload is not a reader or valid buffer
1615
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
1616
+ */
1617
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.InspectConfig.InfoTypeLikelihood;
1618
+
1619
+ /**
1620
+ * Verifies an InfoTypeLikelihood message.
1621
+ * @param message Plain object to verify
1622
+ * @returns `null` if valid, otherwise the reason why it is not
1623
+ */
1624
+ public static verify(message: { [k: string]: any }): (string|null);
1625
+
1626
+ /**
1627
+ * Creates an InfoTypeLikelihood message from a plain object. Also converts values to their respective internal types.
1628
+ * @param object Plain object
1629
+ * @returns InfoTypeLikelihood
1630
+ */
1631
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.InspectConfig.InfoTypeLikelihood;
1632
+
1633
+ /**
1634
+ * Creates a plain object from an InfoTypeLikelihood message. Also converts values to other types if specified.
1635
+ * @param message InfoTypeLikelihood
1636
+ * @param [options] Conversion options
1637
+ * @returns Plain object
1638
+ */
1639
+ public static toObject(message: google.privacy.dlp.v2.InspectConfig.InfoTypeLikelihood, options?: $protobuf.IConversionOptions): { [k: string]: any };
1640
+
1641
+ /**
1642
+ * Converts this InfoTypeLikelihood to JSON.
1643
+ * @returns JSON object
1644
+ */
1645
+ public toJSON(): { [k: string]: any };
1646
+
1647
+ /**
1648
+ * Gets the default type url for InfoTypeLikelihood
1649
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
1650
+ * @returns The default type url
1651
+ */
1652
+ public static getTypeUrl(typeUrlPrefix?: string): string;
1653
+ }
1654
+
1441
1655
  /** Properties of a FindingLimits. */
1442
1656
  interface IFindingLimits {
1443
1657
 
@@ -5266,6 +5480,112 @@ export namespace google {
5266
5480
  }
5267
5481
  }
5268
5482
 
5483
+ /** Properties of a DataProfileBigQueryRowSchema. */
5484
+ interface IDataProfileBigQueryRowSchema {
5485
+
5486
+ /** DataProfileBigQueryRowSchema tableProfile */
5487
+ tableProfile?: (google.privacy.dlp.v2.ITableDataProfile|null);
5488
+
5489
+ /** DataProfileBigQueryRowSchema columnProfile */
5490
+ columnProfile?: (google.privacy.dlp.v2.IColumnDataProfile|null);
5491
+ }
5492
+
5493
+ /** Represents a DataProfileBigQueryRowSchema. */
5494
+ class DataProfileBigQueryRowSchema implements IDataProfileBigQueryRowSchema {
5495
+
5496
+ /**
5497
+ * Constructs a new DataProfileBigQueryRowSchema.
5498
+ * @param [properties] Properties to set
5499
+ */
5500
+ constructor(properties?: google.privacy.dlp.v2.IDataProfileBigQueryRowSchema);
5501
+
5502
+ /** DataProfileBigQueryRowSchema tableProfile. */
5503
+ public tableProfile?: (google.privacy.dlp.v2.ITableDataProfile|null);
5504
+
5505
+ /** DataProfileBigQueryRowSchema columnProfile. */
5506
+ public columnProfile?: (google.privacy.dlp.v2.IColumnDataProfile|null);
5507
+
5508
+ /** DataProfileBigQueryRowSchema dataProfile. */
5509
+ public dataProfile?: ("tableProfile"|"columnProfile");
5510
+
5511
+ /**
5512
+ * Creates a new DataProfileBigQueryRowSchema instance using the specified properties.
5513
+ * @param [properties] Properties to set
5514
+ * @returns DataProfileBigQueryRowSchema instance
5515
+ */
5516
+ public static create(properties?: google.privacy.dlp.v2.IDataProfileBigQueryRowSchema): google.privacy.dlp.v2.DataProfileBigQueryRowSchema;
5517
+
5518
+ /**
5519
+ * Encodes the specified DataProfileBigQueryRowSchema message. Does not implicitly {@link google.privacy.dlp.v2.DataProfileBigQueryRowSchema.verify|verify} messages.
5520
+ * @param message DataProfileBigQueryRowSchema message or plain object to encode
5521
+ * @param [writer] Writer to encode to
5522
+ * @returns Writer
5523
+ */
5524
+ public static encode(message: google.privacy.dlp.v2.IDataProfileBigQueryRowSchema, writer?: $protobuf.Writer): $protobuf.Writer;
5525
+
5526
+ /**
5527
+ * Encodes the specified DataProfileBigQueryRowSchema message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DataProfileBigQueryRowSchema.verify|verify} messages.
5528
+ * @param message DataProfileBigQueryRowSchema message or plain object to encode
5529
+ * @param [writer] Writer to encode to
5530
+ * @returns Writer
5531
+ */
5532
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDataProfileBigQueryRowSchema, writer?: $protobuf.Writer): $protobuf.Writer;
5533
+
5534
+ /**
5535
+ * Decodes a DataProfileBigQueryRowSchema message from the specified reader or buffer.
5536
+ * @param reader Reader or buffer to decode from
5537
+ * @param [length] Message length if known beforehand
5538
+ * @returns DataProfileBigQueryRowSchema
5539
+ * @throws {Error} If the payload is not a reader or valid buffer
5540
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5541
+ */
5542
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DataProfileBigQueryRowSchema;
5543
+
5544
+ /**
5545
+ * Decodes a DataProfileBigQueryRowSchema message from the specified reader or buffer, length delimited.
5546
+ * @param reader Reader or buffer to decode from
5547
+ * @returns DataProfileBigQueryRowSchema
5548
+ * @throws {Error} If the payload is not a reader or valid buffer
5549
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5550
+ */
5551
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DataProfileBigQueryRowSchema;
5552
+
5553
+ /**
5554
+ * Verifies a DataProfileBigQueryRowSchema message.
5555
+ * @param message Plain object to verify
5556
+ * @returns `null` if valid, otherwise the reason why it is not
5557
+ */
5558
+ public static verify(message: { [k: string]: any }): (string|null);
5559
+
5560
+ /**
5561
+ * Creates a DataProfileBigQueryRowSchema message from a plain object. Also converts values to their respective internal types.
5562
+ * @param object Plain object
5563
+ * @returns DataProfileBigQueryRowSchema
5564
+ */
5565
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DataProfileBigQueryRowSchema;
5566
+
5567
+ /**
5568
+ * Creates a plain object from a DataProfileBigQueryRowSchema message. Also converts values to other types if specified.
5569
+ * @param message DataProfileBigQueryRowSchema
5570
+ * @param [options] Conversion options
5571
+ * @returns Plain object
5572
+ */
5573
+ public static toObject(message: google.privacy.dlp.v2.DataProfileBigQueryRowSchema, options?: $protobuf.IConversionOptions): { [k: string]: any };
5574
+
5575
+ /**
5576
+ * Converts this DataProfileBigQueryRowSchema to JSON.
5577
+ * @returns JSON object
5578
+ */
5579
+ public toJSON(): { [k: string]: any };
5580
+
5581
+ /**
5582
+ * Gets the default type url for DataProfileBigQueryRowSchema
5583
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5584
+ * @returns The default type url
5585
+ */
5586
+ public static getTypeUrl(typeUrlPrefix?: string): string;
5587
+ }
5588
+
5269
5589
  /** Properties of a HybridInspectStatistics. */
5270
5590
  interface IHybridInspectStatistics {
5271
5591
 
@@ -5375,6 +5695,430 @@ export namespace google {
5375
5695
  public static getTypeUrl(typeUrlPrefix?: string): string;
5376
5696
  }
5377
5697
 
5698
+ /** Properties of an ActionDetails. */
5699
+ interface IActionDetails {
5700
+
5701
+ /** ActionDetails deidentifyDetails */
5702
+ deidentifyDetails?: (google.privacy.dlp.v2.IDeidentifyDataSourceDetails|null);
5703
+ }
5704
+
5705
+ /** Represents an ActionDetails. */
5706
+ class ActionDetails implements IActionDetails {
5707
+
5708
+ /**
5709
+ * Constructs a new ActionDetails.
5710
+ * @param [properties] Properties to set
5711
+ */
5712
+ constructor(properties?: google.privacy.dlp.v2.IActionDetails);
5713
+
5714
+ /** ActionDetails deidentifyDetails. */
5715
+ public deidentifyDetails?: (google.privacy.dlp.v2.IDeidentifyDataSourceDetails|null);
5716
+
5717
+ /** ActionDetails details. */
5718
+ public details?: "deidentifyDetails";
5719
+
5720
+ /**
5721
+ * Creates a new ActionDetails instance using the specified properties.
5722
+ * @param [properties] Properties to set
5723
+ * @returns ActionDetails instance
5724
+ */
5725
+ public static create(properties?: google.privacy.dlp.v2.IActionDetails): google.privacy.dlp.v2.ActionDetails;
5726
+
5727
+ /**
5728
+ * Encodes the specified ActionDetails message. Does not implicitly {@link google.privacy.dlp.v2.ActionDetails.verify|verify} messages.
5729
+ * @param message ActionDetails message or plain object to encode
5730
+ * @param [writer] Writer to encode to
5731
+ * @returns Writer
5732
+ */
5733
+ public static encode(message: google.privacy.dlp.v2.IActionDetails, writer?: $protobuf.Writer): $protobuf.Writer;
5734
+
5735
+ /**
5736
+ * Encodes the specified ActionDetails message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.ActionDetails.verify|verify} messages.
5737
+ * @param message ActionDetails message or plain object to encode
5738
+ * @param [writer] Writer to encode to
5739
+ * @returns Writer
5740
+ */
5741
+ public static encodeDelimited(message: google.privacy.dlp.v2.IActionDetails, writer?: $protobuf.Writer): $protobuf.Writer;
5742
+
5743
+ /**
5744
+ * Decodes an ActionDetails message from the specified reader or buffer.
5745
+ * @param reader Reader or buffer to decode from
5746
+ * @param [length] Message length if known beforehand
5747
+ * @returns ActionDetails
5748
+ * @throws {Error} If the payload is not a reader or valid buffer
5749
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5750
+ */
5751
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.ActionDetails;
5752
+
5753
+ /**
5754
+ * Decodes an ActionDetails message from the specified reader or buffer, length delimited.
5755
+ * @param reader Reader or buffer to decode from
5756
+ * @returns ActionDetails
5757
+ * @throws {Error} If the payload is not a reader or valid buffer
5758
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5759
+ */
5760
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.ActionDetails;
5761
+
5762
+ /**
5763
+ * Verifies an ActionDetails message.
5764
+ * @param message Plain object to verify
5765
+ * @returns `null` if valid, otherwise the reason why it is not
5766
+ */
5767
+ public static verify(message: { [k: string]: any }): (string|null);
5768
+
5769
+ /**
5770
+ * Creates an ActionDetails message from a plain object. Also converts values to their respective internal types.
5771
+ * @param object Plain object
5772
+ * @returns ActionDetails
5773
+ */
5774
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.ActionDetails;
5775
+
5776
+ /**
5777
+ * Creates a plain object from an ActionDetails message. Also converts values to other types if specified.
5778
+ * @param message ActionDetails
5779
+ * @param [options] Conversion options
5780
+ * @returns Plain object
5781
+ */
5782
+ public static toObject(message: google.privacy.dlp.v2.ActionDetails, options?: $protobuf.IConversionOptions): { [k: string]: any };
5783
+
5784
+ /**
5785
+ * Converts this ActionDetails to JSON.
5786
+ * @returns JSON object
5787
+ */
5788
+ public toJSON(): { [k: string]: any };
5789
+
5790
+ /**
5791
+ * Gets the default type url for ActionDetails
5792
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5793
+ * @returns The default type url
5794
+ */
5795
+ public static getTypeUrl(typeUrlPrefix?: string): string;
5796
+ }
5797
+
5798
+ /** Properties of a DeidentifyDataSourceStats. */
5799
+ interface IDeidentifyDataSourceStats {
5800
+
5801
+ /** DeidentifyDataSourceStats transformedBytes */
5802
+ transformedBytes?: (number|Long|string|null);
5803
+
5804
+ /** DeidentifyDataSourceStats transformationCount */
5805
+ transformationCount?: (number|Long|string|null);
5806
+
5807
+ /** DeidentifyDataSourceStats transformationErrorCount */
5808
+ transformationErrorCount?: (number|Long|string|null);
5809
+ }
5810
+
5811
+ /** Represents a DeidentifyDataSourceStats. */
5812
+ class DeidentifyDataSourceStats implements IDeidentifyDataSourceStats {
5813
+
5814
+ /**
5815
+ * Constructs a new DeidentifyDataSourceStats.
5816
+ * @param [properties] Properties to set
5817
+ */
5818
+ constructor(properties?: google.privacy.dlp.v2.IDeidentifyDataSourceStats);
5819
+
5820
+ /** DeidentifyDataSourceStats transformedBytes. */
5821
+ public transformedBytes: (number|Long|string);
5822
+
5823
+ /** DeidentifyDataSourceStats transformationCount. */
5824
+ public transformationCount: (number|Long|string);
5825
+
5826
+ /** DeidentifyDataSourceStats transformationErrorCount. */
5827
+ public transformationErrorCount: (number|Long|string);
5828
+
5829
+ /**
5830
+ * Creates a new DeidentifyDataSourceStats instance using the specified properties.
5831
+ * @param [properties] Properties to set
5832
+ * @returns DeidentifyDataSourceStats instance
5833
+ */
5834
+ public static create(properties?: google.privacy.dlp.v2.IDeidentifyDataSourceStats): google.privacy.dlp.v2.DeidentifyDataSourceStats;
5835
+
5836
+ /**
5837
+ * Encodes the specified DeidentifyDataSourceStats message. Does not implicitly {@link google.privacy.dlp.v2.DeidentifyDataSourceStats.verify|verify} messages.
5838
+ * @param message DeidentifyDataSourceStats message or plain object to encode
5839
+ * @param [writer] Writer to encode to
5840
+ * @returns Writer
5841
+ */
5842
+ public static encode(message: google.privacy.dlp.v2.IDeidentifyDataSourceStats, writer?: $protobuf.Writer): $protobuf.Writer;
5843
+
5844
+ /**
5845
+ * Encodes the specified DeidentifyDataSourceStats message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DeidentifyDataSourceStats.verify|verify} messages.
5846
+ * @param message DeidentifyDataSourceStats message or plain object to encode
5847
+ * @param [writer] Writer to encode to
5848
+ * @returns Writer
5849
+ */
5850
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDeidentifyDataSourceStats, writer?: $protobuf.Writer): $protobuf.Writer;
5851
+
5852
+ /**
5853
+ * Decodes a DeidentifyDataSourceStats message from the specified reader or buffer.
5854
+ * @param reader Reader or buffer to decode from
5855
+ * @param [length] Message length if known beforehand
5856
+ * @returns DeidentifyDataSourceStats
5857
+ * @throws {Error} If the payload is not a reader or valid buffer
5858
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5859
+ */
5860
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DeidentifyDataSourceStats;
5861
+
5862
+ /**
5863
+ * Decodes a DeidentifyDataSourceStats message from the specified reader or buffer, length delimited.
5864
+ * @param reader Reader or buffer to decode from
5865
+ * @returns DeidentifyDataSourceStats
5866
+ * @throws {Error} If the payload is not a reader or valid buffer
5867
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5868
+ */
5869
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DeidentifyDataSourceStats;
5870
+
5871
+ /**
5872
+ * Verifies a DeidentifyDataSourceStats message.
5873
+ * @param message Plain object to verify
5874
+ * @returns `null` if valid, otherwise the reason why it is not
5875
+ */
5876
+ public static verify(message: { [k: string]: any }): (string|null);
5877
+
5878
+ /**
5879
+ * Creates a DeidentifyDataSourceStats message from a plain object. Also converts values to their respective internal types.
5880
+ * @param object Plain object
5881
+ * @returns DeidentifyDataSourceStats
5882
+ */
5883
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DeidentifyDataSourceStats;
5884
+
5885
+ /**
5886
+ * Creates a plain object from a DeidentifyDataSourceStats message. Also converts values to other types if specified.
5887
+ * @param message DeidentifyDataSourceStats
5888
+ * @param [options] Conversion options
5889
+ * @returns Plain object
5890
+ */
5891
+ public static toObject(message: google.privacy.dlp.v2.DeidentifyDataSourceStats, options?: $protobuf.IConversionOptions): { [k: string]: any };
5892
+
5893
+ /**
5894
+ * Converts this DeidentifyDataSourceStats to JSON.
5895
+ * @returns JSON object
5896
+ */
5897
+ public toJSON(): { [k: string]: any };
5898
+
5899
+ /**
5900
+ * Gets the default type url for DeidentifyDataSourceStats
5901
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5902
+ * @returns The default type url
5903
+ */
5904
+ public static getTypeUrl(typeUrlPrefix?: string): string;
5905
+ }
5906
+
5907
+ /** Properties of a DeidentifyDataSourceDetails. */
5908
+ interface IDeidentifyDataSourceDetails {
5909
+
5910
+ /** DeidentifyDataSourceDetails requestedOptions */
5911
+ requestedOptions?: (google.privacy.dlp.v2.DeidentifyDataSourceDetails.IRequestedDeidentifyOptions|null);
5912
+
5913
+ /** DeidentifyDataSourceDetails deidentifyStats */
5914
+ deidentifyStats?: (google.privacy.dlp.v2.IDeidentifyDataSourceStats|null);
5915
+ }
5916
+
5917
+ /** Represents a DeidentifyDataSourceDetails. */
5918
+ class DeidentifyDataSourceDetails implements IDeidentifyDataSourceDetails {
5919
+
5920
+ /**
5921
+ * Constructs a new DeidentifyDataSourceDetails.
5922
+ * @param [properties] Properties to set
5923
+ */
5924
+ constructor(properties?: google.privacy.dlp.v2.IDeidentifyDataSourceDetails);
5925
+
5926
+ /** DeidentifyDataSourceDetails requestedOptions. */
5927
+ public requestedOptions?: (google.privacy.dlp.v2.DeidentifyDataSourceDetails.IRequestedDeidentifyOptions|null);
5928
+
5929
+ /** DeidentifyDataSourceDetails deidentifyStats. */
5930
+ public deidentifyStats?: (google.privacy.dlp.v2.IDeidentifyDataSourceStats|null);
5931
+
5932
+ /**
5933
+ * Creates a new DeidentifyDataSourceDetails instance using the specified properties.
5934
+ * @param [properties] Properties to set
5935
+ * @returns DeidentifyDataSourceDetails instance
5936
+ */
5937
+ public static create(properties?: google.privacy.dlp.v2.IDeidentifyDataSourceDetails): google.privacy.dlp.v2.DeidentifyDataSourceDetails;
5938
+
5939
+ /**
5940
+ * Encodes the specified DeidentifyDataSourceDetails message. Does not implicitly {@link google.privacy.dlp.v2.DeidentifyDataSourceDetails.verify|verify} messages.
5941
+ * @param message DeidentifyDataSourceDetails message or plain object to encode
5942
+ * @param [writer] Writer to encode to
5943
+ * @returns Writer
5944
+ */
5945
+ public static encode(message: google.privacy.dlp.v2.IDeidentifyDataSourceDetails, writer?: $protobuf.Writer): $protobuf.Writer;
5946
+
5947
+ /**
5948
+ * Encodes the specified DeidentifyDataSourceDetails message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DeidentifyDataSourceDetails.verify|verify} messages.
5949
+ * @param message DeidentifyDataSourceDetails message or plain object to encode
5950
+ * @param [writer] Writer to encode to
5951
+ * @returns Writer
5952
+ */
5953
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDeidentifyDataSourceDetails, writer?: $protobuf.Writer): $protobuf.Writer;
5954
+
5955
+ /**
5956
+ * Decodes a DeidentifyDataSourceDetails message from the specified reader or buffer.
5957
+ * @param reader Reader or buffer to decode from
5958
+ * @param [length] Message length if known beforehand
5959
+ * @returns DeidentifyDataSourceDetails
5960
+ * @throws {Error} If the payload is not a reader or valid buffer
5961
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5962
+ */
5963
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DeidentifyDataSourceDetails;
5964
+
5965
+ /**
5966
+ * Decodes a DeidentifyDataSourceDetails message from the specified reader or buffer, length delimited.
5967
+ * @param reader Reader or buffer to decode from
5968
+ * @returns DeidentifyDataSourceDetails
5969
+ * @throws {Error} If the payload is not a reader or valid buffer
5970
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5971
+ */
5972
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DeidentifyDataSourceDetails;
5973
+
5974
+ /**
5975
+ * Verifies a DeidentifyDataSourceDetails message.
5976
+ * @param message Plain object to verify
5977
+ * @returns `null` if valid, otherwise the reason why it is not
5978
+ */
5979
+ public static verify(message: { [k: string]: any }): (string|null);
5980
+
5981
+ /**
5982
+ * Creates a DeidentifyDataSourceDetails message from a plain object. Also converts values to their respective internal types.
5983
+ * @param object Plain object
5984
+ * @returns DeidentifyDataSourceDetails
5985
+ */
5986
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DeidentifyDataSourceDetails;
5987
+
5988
+ /**
5989
+ * Creates a plain object from a DeidentifyDataSourceDetails message. Also converts values to other types if specified.
5990
+ * @param message DeidentifyDataSourceDetails
5991
+ * @param [options] Conversion options
5992
+ * @returns Plain object
5993
+ */
5994
+ public static toObject(message: google.privacy.dlp.v2.DeidentifyDataSourceDetails, options?: $protobuf.IConversionOptions): { [k: string]: any };
5995
+
5996
+ /**
5997
+ * Converts this DeidentifyDataSourceDetails to JSON.
5998
+ * @returns JSON object
5999
+ */
6000
+ public toJSON(): { [k: string]: any };
6001
+
6002
+ /**
6003
+ * Gets the default type url for DeidentifyDataSourceDetails
6004
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6005
+ * @returns The default type url
6006
+ */
6007
+ public static getTypeUrl(typeUrlPrefix?: string): string;
6008
+ }
6009
+
6010
+ namespace DeidentifyDataSourceDetails {
6011
+
6012
+ /** Properties of a RequestedDeidentifyOptions. */
6013
+ interface IRequestedDeidentifyOptions {
6014
+
6015
+ /** RequestedDeidentifyOptions snapshotDeidentifyTemplate */
6016
+ snapshotDeidentifyTemplate?: (google.privacy.dlp.v2.IDeidentifyTemplate|null);
6017
+
6018
+ /** RequestedDeidentifyOptions snapshotStructuredDeidentifyTemplate */
6019
+ snapshotStructuredDeidentifyTemplate?: (google.privacy.dlp.v2.IDeidentifyTemplate|null);
6020
+
6021
+ /** RequestedDeidentifyOptions snapshotImageRedactTemplate */
6022
+ snapshotImageRedactTemplate?: (google.privacy.dlp.v2.IDeidentifyTemplate|null);
6023
+ }
6024
+
6025
+ /** Represents a RequestedDeidentifyOptions. */
6026
+ class RequestedDeidentifyOptions implements IRequestedDeidentifyOptions {
6027
+
6028
+ /**
6029
+ * Constructs a new RequestedDeidentifyOptions.
6030
+ * @param [properties] Properties to set
6031
+ */
6032
+ constructor(properties?: google.privacy.dlp.v2.DeidentifyDataSourceDetails.IRequestedDeidentifyOptions);
6033
+
6034
+ /** RequestedDeidentifyOptions snapshotDeidentifyTemplate. */
6035
+ public snapshotDeidentifyTemplate?: (google.privacy.dlp.v2.IDeidentifyTemplate|null);
6036
+
6037
+ /** RequestedDeidentifyOptions snapshotStructuredDeidentifyTemplate. */
6038
+ public snapshotStructuredDeidentifyTemplate?: (google.privacy.dlp.v2.IDeidentifyTemplate|null);
6039
+
6040
+ /** RequestedDeidentifyOptions snapshotImageRedactTemplate. */
6041
+ public snapshotImageRedactTemplate?: (google.privacy.dlp.v2.IDeidentifyTemplate|null);
6042
+
6043
+ /**
6044
+ * Creates a new RequestedDeidentifyOptions instance using the specified properties.
6045
+ * @param [properties] Properties to set
6046
+ * @returns RequestedDeidentifyOptions instance
6047
+ */
6048
+ public static create(properties?: google.privacy.dlp.v2.DeidentifyDataSourceDetails.IRequestedDeidentifyOptions): google.privacy.dlp.v2.DeidentifyDataSourceDetails.RequestedDeidentifyOptions;
6049
+
6050
+ /**
6051
+ * Encodes the specified RequestedDeidentifyOptions message. Does not implicitly {@link google.privacy.dlp.v2.DeidentifyDataSourceDetails.RequestedDeidentifyOptions.verify|verify} messages.
6052
+ * @param message RequestedDeidentifyOptions message or plain object to encode
6053
+ * @param [writer] Writer to encode to
6054
+ * @returns Writer
6055
+ */
6056
+ public static encode(message: google.privacy.dlp.v2.DeidentifyDataSourceDetails.IRequestedDeidentifyOptions, writer?: $protobuf.Writer): $protobuf.Writer;
6057
+
6058
+ /**
6059
+ * Encodes the specified RequestedDeidentifyOptions message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DeidentifyDataSourceDetails.RequestedDeidentifyOptions.verify|verify} messages.
6060
+ * @param message RequestedDeidentifyOptions message or plain object to encode
6061
+ * @param [writer] Writer to encode to
6062
+ * @returns Writer
6063
+ */
6064
+ public static encodeDelimited(message: google.privacy.dlp.v2.DeidentifyDataSourceDetails.IRequestedDeidentifyOptions, writer?: $protobuf.Writer): $protobuf.Writer;
6065
+
6066
+ /**
6067
+ * Decodes a RequestedDeidentifyOptions message from the specified reader or buffer.
6068
+ * @param reader Reader or buffer to decode from
6069
+ * @param [length] Message length if known beforehand
6070
+ * @returns RequestedDeidentifyOptions
6071
+ * @throws {Error} If the payload is not a reader or valid buffer
6072
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6073
+ */
6074
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DeidentifyDataSourceDetails.RequestedDeidentifyOptions;
6075
+
6076
+ /**
6077
+ * Decodes a RequestedDeidentifyOptions message from the specified reader or buffer, length delimited.
6078
+ * @param reader Reader or buffer to decode from
6079
+ * @returns RequestedDeidentifyOptions
6080
+ * @throws {Error} If the payload is not a reader or valid buffer
6081
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6082
+ */
6083
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DeidentifyDataSourceDetails.RequestedDeidentifyOptions;
6084
+
6085
+ /**
6086
+ * Verifies a RequestedDeidentifyOptions message.
6087
+ * @param message Plain object to verify
6088
+ * @returns `null` if valid, otherwise the reason why it is not
6089
+ */
6090
+ public static verify(message: { [k: string]: any }): (string|null);
6091
+
6092
+ /**
6093
+ * Creates a RequestedDeidentifyOptions message from a plain object. Also converts values to their respective internal types.
6094
+ * @param object Plain object
6095
+ * @returns RequestedDeidentifyOptions
6096
+ */
6097
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DeidentifyDataSourceDetails.RequestedDeidentifyOptions;
6098
+
6099
+ /**
6100
+ * Creates a plain object from a RequestedDeidentifyOptions message. Also converts values to other types if specified.
6101
+ * @param message RequestedDeidentifyOptions
6102
+ * @param [options] Conversion options
6103
+ * @returns Plain object
6104
+ */
6105
+ public static toObject(message: google.privacy.dlp.v2.DeidentifyDataSourceDetails.RequestedDeidentifyOptions, options?: $protobuf.IConversionOptions): { [k: string]: any };
6106
+
6107
+ /**
6108
+ * Converts this RequestedDeidentifyOptions to JSON.
6109
+ * @returns JSON object
6110
+ */
6111
+ public toJSON(): { [k: string]: any };
6112
+
6113
+ /**
6114
+ * Gets the default type url for RequestedDeidentifyOptions
6115
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6116
+ * @returns The default type url
6117
+ */
6118
+ public static getTypeUrl(typeUrlPrefix?: string): string;
6119
+ }
6120
+ }
6121
+
5378
6122
  /** Properties of an InfoTypeDescription. */
5379
6123
  interface IInfoTypeDescription {
5380
6124
 
@@ -5395,6 +6139,9 @@ export namespace google {
5395
6139
 
5396
6140
  /** InfoTypeDescription categories */
5397
6141
  categories?: (google.privacy.dlp.v2.IInfoTypeCategory[]|null);
6142
+
6143
+ /** InfoTypeDescription sensitivityScore */
6144
+ sensitivityScore?: (google.privacy.dlp.v2.ISensitivityScore|null);
5398
6145
  }
5399
6146
 
5400
6147
  /** Represents an InfoTypeDescription. */
@@ -5424,6 +6171,9 @@ export namespace google {
5424
6171
  /** InfoTypeDescription categories. */
5425
6172
  public categories: google.privacy.dlp.v2.IInfoTypeCategory[];
5426
6173
 
6174
+ /** InfoTypeDescription sensitivityScore. */
6175
+ public sensitivityScore?: (google.privacy.dlp.v2.ISensitivityScore|null);
6176
+
5427
6177
  /**
5428
6178
  * Creates a new InfoTypeDescription instance using the specified properties.
5429
6179
  * @param [properties] Properties to set
@@ -5628,6 +6378,7 @@ export namespace google {
5628
6378
  CHILE = 7,
5629
6379
  CHINA = 8,
5630
6380
  COLOMBIA = 9,
6381
+ CROATIA = 42,
5631
6382
  DENMARK = 10,
5632
6383
  FRANCE = 11,
5633
6384
  FINLAND = 12,
@@ -5642,6 +6393,7 @@ export namespace google {
5642
6393
  KOREA = 21,
5643
6394
  MEXICO = 22,
5644
6395
  THE_NETHERLANDS = 23,
6396
+ NEW_ZEALAND = 41,
5645
6397
  NORWAY = 24,
5646
6398
  PARAGUAY = 25,
5647
6399
  PERU = 26,
@@ -5651,6 +6403,7 @@ export namespace google {
5651
6403
  SOUTH_AFRICA = 30,
5652
6404
  SPAIN = 31,
5653
6405
  SWEDEN = 32,
6406
+ SWITZERLAND = 43,
5654
6407
  TAIWAN = 33,
5655
6408
  THAILAND = 34,
5656
6409
  TURKEY = 35,
@@ -5658,8 +6411,7 @@ export namespace google {
5658
6411
  UNITED_STATES = 37,
5659
6412
  URUGUAY = 38,
5660
6413
  VENEZUELA = 39,
5661
- INTERNAL = 40,
5662
- NEW_ZEALAND = 41
6414
+ INTERNAL = 40
5663
6415
  }
5664
6416
 
5665
6417
  /** IndustryCategory enum. */
@@ -17767,6 +18519,636 @@ export namespace google {
17767
18519
  public static getTypeUrl(typeUrlPrefix?: string): string;
17768
18520
  }
17769
18521
 
18522
+ /** Properties of a CreateDiscoveryConfigRequest. */
18523
+ interface ICreateDiscoveryConfigRequest {
18524
+
18525
+ /** CreateDiscoveryConfigRequest parent */
18526
+ parent?: (string|null);
18527
+
18528
+ /** CreateDiscoveryConfigRequest discoveryConfig */
18529
+ discoveryConfig?: (google.privacy.dlp.v2.IDiscoveryConfig|null);
18530
+
18531
+ /** CreateDiscoveryConfigRequest configId */
18532
+ configId?: (string|null);
18533
+ }
18534
+
18535
+ /** Represents a CreateDiscoveryConfigRequest. */
18536
+ class CreateDiscoveryConfigRequest implements ICreateDiscoveryConfigRequest {
18537
+
18538
+ /**
18539
+ * Constructs a new CreateDiscoveryConfigRequest.
18540
+ * @param [properties] Properties to set
18541
+ */
18542
+ constructor(properties?: google.privacy.dlp.v2.ICreateDiscoveryConfigRequest);
18543
+
18544
+ /** CreateDiscoveryConfigRequest parent. */
18545
+ public parent: string;
18546
+
18547
+ /** CreateDiscoveryConfigRequest discoveryConfig. */
18548
+ public discoveryConfig?: (google.privacy.dlp.v2.IDiscoveryConfig|null);
18549
+
18550
+ /** CreateDiscoveryConfigRequest configId. */
18551
+ public configId: string;
18552
+
18553
+ /**
18554
+ * Creates a new CreateDiscoveryConfigRequest instance using the specified properties.
18555
+ * @param [properties] Properties to set
18556
+ * @returns CreateDiscoveryConfigRequest instance
18557
+ */
18558
+ public static create(properties?: google.privacy.dlp.v2.ICreateDiscoveryConfigRequest): google.privacy.dlp.v2.CreateDiscoveryConfigRequest;
18559
+
18560
+ /**
18561
+ * Encodes the specified CreateDiscoveryConfigRequest message. Does not implicitly {@link google.privacy.dlp.v2.CreateDiscoveryConfigRequest.verify|verify} messages.
18562
+ * @param message CreateDiscoveryConfigRequest message or plain object to encode
18563
+ * @param [writer] Writer to encode to
18564
+ * @returns Writer
18565
+ */
18566
+ public static encode(message: google.privacy.dlp.v2.ICreateDiscoveryConfigRequest, writer?: $protobuf.Writer): $protobuf.Writer;
18567
+
18568
+ /**
18569
+ * Encodes the specified CreateDiscoveryConfigRequest message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.CreateDiscoveryConfigRequest.verify|verify} messages.
18570
+ * @param message CreateDiscoveryConfigRequest message or plain object to encode
18571
+ * @param [writer] Writer to encode to
18572
+ * @returns Writer
18573
+ */
18574
+ public static encodeDelimited(message: google.privacy.dlp.v2.ICreateDiscoveryConfigRequest, writer?: $protobuf.Writer): $protobuf.Writer;
18575
+
18576
+ /**
18577
+ * Decodes a CreateDiscoveryConfigRequest message from the specified reader or buffer.
18578
+ * @param reader Reader or buffer to decode from
18579
+ * @param [length] Message length if known beforehand
18580
+ * @returns CreateDiscoveryConfigRequest
18581
+ * @throws {Error} If the payload is not a reader or valid buffer
18582
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
18583
+ */
18584
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.CreateDiscoveryConfigRequest;
18585
+
18586
+ /**
18587
+ * Decodes a CreateDiscoveryConfigRequest message from the specified reader or buffer, length delimited.
18588
+ * @param reader Reader or buffer to decode from
18589
+ * @returns CreateDiscoveryConfigRequest
18590
+ * @throws {Error} If the payload is not a reader or valid buffer
18591
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
18592
+ */
18593
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.CreateDiscoveryConfigRequest;
18594
+
18595
+ /**
18596
+ * Verifies a CreateDiscoveryConfigRequest message.
18597
+ * @param message Plain object to verify
18598
+ * @returns `null` if valid, otherwise the reason why it is not
18599
+ */
18600
+ public static verify(message: { [k: string]: any }): (string|null);
18601
+
18602
+ /**
18603
+ * Creates a CreateDiscoveryConfigRequest message from a plain object. Also converts values to their respective internal types.
18604
+ * @param object Plain object
18605
+ * @returns CreateDiscoveryConfigRequest
18606
+ */
18607
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.CreateDiscoveryConfigRequest;
18608
+
18609
+ /**
18610
+ * Creates a plain object from a CreateDiscoveryConfigRequest message. Also converts values to other types if specified.
18611
+ * @param message CreateDiscoveryConfigRequest
18612
+ * @param [options] Conversion options
18613
+ * @returns Plain object
18614
+ */
18615
+ public static toObject(message: google.privacy.dlp.v2.CreateDiscoveryConfigRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
18616
+
18617
+ /**
18618
+ * Converts this CreateDiscoveryConfigRequest to JSON.
18619
+ * @returns JSON object
18620
+ */
18621
+ public toJSON(): { [k: string]: any };
18622
+
18623
+ /**
18624
+ * Gets the default type url for CreateDiscoveryConfigRequest
18625
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
18626
+ * @returns The default type url
18627
+ */
18628
+ public static getTypeUrl(typeUrlPrefix?: string): string;
18629
+ }
18630
+
18631
+ /** Properties of an UpdateDiscoveryConfigRequest. */
18632
+ interface IUpdateDiscoveryConfigRequest {
18633
+
18634
+ /** UpdateDiscoveryConfigRequest name */
18635
+ name?: (string|null);
18636
+
18637
+ /** UpdateDiscoveryConfigRequest discoveryConfig */
18638
+ discoveryConfig?: (google.privacy.dlp.v2.IDiscoveryConfig|null);
18639
+
18640
+ /** UpdateDiscoveryConfigRequest updateMask */
18641
+ updateMask?: (google.protobuf.IFieldMask|null);
18642
+ }
18643
+
18644
+ /** Represents an UpdateDiscoveryConfigRequest. */
18645
+ class UpdateDiscoveryConfigRequest implements IUpdateDiscoveryConfigRequest {
18646
+
18647
+ /**
18648
+ * Constructs a new UpdateDiscoveryConfigRequest.
18649
+ * @param [properties] Properties to set
18650
+ */
18651
+ constructor(properties?: google.privacy.dlp.v2.IUpdateDiscoveryConfigRequest);
18652
+
18653
+ /** UpdateDiscoveryConfigRequest name. */
18654
+ public name: string;
18655
+
18656
+ /** UpdateDiscoveryConfigRequest discoveryConfig. */
18657
+ public discoveryConfig?: (google.privacy.dlp.v2.IDiscoveryConfig|null);
18658
+
18659
+ /** UpdateDiscoveryConfigRequest updateMask. */
18660
+ public updateMask?: (google.protobuf.IFieldMask|null);
18661
+
18662
+ /**
18663
+ * Creates a new UpdateDiscoveryConfigRequest instance using the specified properties.
18664
+ * @param [properties] Properties to set
18665
+ * @returns UpdateDiscoveryConfigRequest instance
18666
+ */
18667
+ public static create(properties?: google.privacy.dlp.v2.IUpdateDiscoveryConfigRequest): google.privacy.dlp.v2.UpdateDiscoveryConfigRequest;
18668
+
18669
+ /**
18670
+ * Encodes the specified UpdateDiscoveryConfigRequest message. Does not implicitly {@link google.privacy.dlp.v2.UpdateDiscoveryConfigRequest.verify|verify} messages.
18671
+ * @param message UpdateDiscoveryConfigRequest message or plain object to encode
18672
+ * @param [writer] Writer to encode to
18673
+ * @returns Writer
18674
+ */
18675
+ public static encode(message: google.privacy.dlp.v2.IUpdateDiscoveryConfigRequest, writer?: $protobuf.Writer): $protobuf.Writer;
18676
+
18677
+ /**
18678
+ * Encodes the specified UpdateDiscoveryConfigRequest message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.UpdateDiscoveryConfigRequest.verify|verify} messages.
18679
+ * @param message UpdateDiscoveryConfigRequest message or plain object to encode
18680
+ * @param [writer] Writer to encode to
18681
+ * @returns Writer
18682
+ */
18683
+ public static encodeDelimited(message: google.privacy.dlp.v2.IUpdateDiscoveryConfigRequest, writer?: $protobuf.Writer): $protobuf.Writer;
18684
+
18685
+ /**
18686
+ * Decodes an UpdateDiscoveryConfigRequest message from the specified reader or buffer.
18687
+ * @param reader Reader or buffer to decode from
18688
+ * @param [length] Message length if known beforehand
18689
+ * @returns UpdateDiscoveryConfigRequest
18690
+ * @throws {Error} If the payload is not a reader or valid buffer
18691
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
18692
+ */
18693
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.UpdateDiscoveryConfigRequest;
18694
+
18695
+ /**
18696
+ * Decodes an UpdateDiscoveryConfigRequest message from the specified reader or buffer, length delimited.
18697
+ * @param reader Reader or buffer to decode from
18698
+ * @returns UpdateDiscoveryConfigRequest
18699
+ * @throws {Error} If the payload is not a reader or valid buffer
18700
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
18701
+ */
18702
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.UpdateDiscoveryConfigRequest;
18703
+
18704
+ /**
18705
+ * Verifies an UpdateDiscoveryConfigRequest message.
18706
+ * @param message Plain object to verify
18707
+ * @returns `null` if valid, otherwise the reason why it is not
18708
+ */
18709
+ public static verify(message: { [k: string]: any }): (string|null);
18710
+
18711
+ /**
18712
+ * Creates an UpdateDiscoveryConfigRequest message from a plain object. Also converts values to their respective internal types.
18713
+ * @param object Plain object
18714
+ * @returns UpdateDiscoveryConfigRequest
18715
+ */
18716
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.UpdateDiscoveryConfigRequest;
18717
+
18718
+ /**
18719
+ * Creates a plain object from an UpdateDiscoveryConfigRequest message. Also converts values to other types if specified.
18720
+ * @param message UpdateDiscoveryConfigRequest
18721
+ * @param [options] Conversion options
18722
+ * @returns Plain object
18723
+ */
18724
+ public static toObject(message: google.privacy.dlp.v2.UpdateDiscoveryConfigRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
18725
+
18726
+ /**
18727
+ * Converts this UpdateDiscoveryConfigRequest to JSON.
18728
+ * @returns JSON object
18729
+ */
18730
+ public toJSON(): { [k: string]: any };
18731
+
18732
+ /**
18733
+ * Gets the default type url for UpdateDiscoveryConfigRequest
18734
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
18735
+ * @returns The default type url
18736
+ */
18737
+ public static getTypeUrl(typeUrlPrefix?: string): string;
18738
+ }
18739
+
18740
+ /** Properties of a GetDiscoveryConfigRequest. */
18741
+ interface IGetDiscoveryConfigRequest {
18742
+
18743
+ /** GetDiscoveryConfigRequest name */
18744
+ name?: (string|null);
18745
+ }
18746
+
18747
+ /** Represents a GetDiscoveryConfigRequest. */
18748
+ class GetDiscoveryConfigRequest implements IGetDiscoveryConfigRequest {
18749
+
18750
+ /**
18751
+ * Constructs a new GetDiscoveryConfigRequest.
18752
+ * @param [properties] Properties to set
18753
+ */
18754
+ constructor(properties?: google.privacy.dlp.v2.IGetDiscoveryConfigRequest);
18755
+
18756
+ /** GetDiscoveryConfigRequest name. */
18757
+ public name: string;
18758
+
18759
+ /**
18760
+ * Creates a new GetDiscoveryConfigRequest instance using the specified properties.
18761
+ * @param [properties] Properties to set
18762
+ * @returns GetDiscoveryConfigRequest instance
18763
+ */
18764
+ public static create(properties?: google.privacy.dlp.v2.IGetDiscoveryConfigRequest): google.privacy.dlp.v2.GetDiscoveryConfigRequest;
18765
+
18766
+ /**
18767
+ * Encodes the specified GetDiscoveryConfigRequest message. Does not implicitly {@link google.privacy.dlp.v2.GetDiscoveryConfigRequest.verify|verify} messages.
18768
+ * @param message GetDiscoveryConfigRequest message or plain object to encode
18769
+ * @param [writer] Writer to encode to
18770
+ * @returns Writer
18771
+ */
18772
+ public static encode(message: google.privacy.dlp.v2.IGetDiscoveryConfigRequest, writer?: $protobuf.Writer): $protobuf.Writer;
18773
+
18774
+ /**
18775
+ * Encodes the specified GetDiscoveryConfigRequest message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.GetDiscoveryConfigRequest.verify|verify} messages.
18776
+ * @param message GetDiscoveryConfigRequest message or plain object to encode
18777
+ * @param [writer] Writer to encode to
18778
+ * @returns Writer
18779
+ */
18780
+ public static encodeDelimited(message: google.privacy.dlp.v2.IGetDiscoveryConfigRequest, writer?: $protobuf.Writer): $protobuf.Writer;
18781
+
18782
+ /**
18783
+ * Decodes a GetDiscoveryConfigRequest message from the specified reader or buffer.
18784
+ * @param reader Reader or buffer to decode from
18785
+ * @param [length] Message length if known beforehand
18786
+ * @returns GetDiscoveryConfigRequest
18787
+ * @throws {Error} If the payload is not a reader or valid buffer
18788
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
18789
+ */
18790
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.GetDiscoveryConfigRequest;
18791
+
18792
+ /**
18793
+ * Decodes a GetDiscoveryConfigRequest message from the specified reader or buffer, length delimited.
18794
+ * @param reader Reader or buffer to decode from
18795
+ * @returns GetDiscoveryConfigRequest
18796
+ * @throws {Error} If the payload is not a reader or valid buffer
18797
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
18798
+ */
18799
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.GetDiscoveryConfigRequest;
18800
+
18801
+ /**
18802
+ * Verifies a GetDiscoveryConfigRequest message.
18803
+ * @param message Plain object to verify
18804
+ * @returns `null` if valid, otherwise the reason why it is not
18805
+ */
18806
+ public static verify(message: { [k: string]: any }): (string|null);
18807
+
18808
+ /**
18809
+ * Creates a GetDiscoveryConfigRequest message from a plain object. Also converts values to their respective internal types.
18810
+ * @param object Plain object
18811
+ * @returns GetDiscoveryConfigRequest
18812
+ */
18813
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.GetDiscoveryConfigRequest;
18814
+
18815
+ /**
18816
+ * Creates a plain object from a GetDiscoveryConfigRequest message. Also converts values to other types if specified.
18817
+ * @param message GetDiscoveryConfigRequest
18818
+ * @param [options] Conversion options
18819
+ * @returns Plain object
18820
+ */
18821
+ public static toObject(message: google.privacy.dlp.v2.GetDiscoveryConfigRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
18822
+
18823
+ /**
18824
+ * Converts this GetDiscoveryConfigRequest to JSON.
18825
+ * @returns JSON object
18826
+ */
18827
+ public toJSON(): { [k: string]: any };
18828
+
18829
+ /**
18830
+ * Gets the default type url for GetDiscoveryConfigRequest
18831
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
18832
+ * @returns The default type url
18833
+ */
18834
+ public static getTypeUrl(typeUrlPrefix?: string): string;
18835
+ }
18836
+
18837
+ /** Properties of a ListDiscoveryConfigsRequest. */
18838
+ interface IListDiscoveryConfigsRequest {
18839
+
18840
+ /** ListDiscoveryConfigsRequest parent */
18841
+ parent?: (string|null);
18842
+
18843
+ /** ListDiscoveryConfigsRequest pageToken */
18844
+ pageToken?: (string|null);
18845
+
18846
+ /** ListDiscoveryConfigsRequest pageSize */
18847
+ pageSize?: (number|null);
18848
+
18849
+ /** ListDiscoveryConfigsRequest orderBy */
18850
+ orderBy?: (string|null);
18851
+ }
18852
+
18853
+ /** Represents a ListDiscoveryConfigsRequest. */
18854
+ class ListDiscoveryConfigsRequest implements IListDiscoveryConfigsRequest {
18855
+
18856
+ /**
18857
+ * Constructs a new ListDiscoveryConfigsRequest.
18858
+ * @param [properties] Properties to set
18859
+ */
18860
+ constructor(properties?: google.privacy.dlp.v2.IListDiscoveryConfigsRequest);
18861
+
18862
+ /** ListDiscoveryConfigsRequest parent. */
18863
+ public parent: string;
18864
+
18865
+ /** ListDiscoveryConfigsRequest pageToken. */
18866
+ public pageToken: string;
18867
+
18868
+ /** ListDiscoveryConfigsRequest pageSize. */
18869
+ public pageSize: number;
18870
+
18871
+ /** ListDiscoveryConfigsRequest orderBy. */
18872
+ public orderBy: string;
18873
+
18874
+ /**
18875
+ * Creates a new ListDiscoveryConfigsRequest instance using the specified properties.
18876
+ * @param [properties] Properties to set
18877
+ * @returns ListDiscoveryConfigsRequest instance
18878
+ */
18879
+ public static create(properties?: google.privacy.dlp.v2.IListDiscoveryConfigsRequest): google.privacy.dlp.v2.ListDiscoveryConfigsRequest;
18880
+
18881
+ /**
18882
+ * Encodes the specified ListDiscoveryConfigsRequest message. Does not implicitly {@link google.privacy.dlp.v2.ListDiscoveryConfigsRequest.verify|verify} messages.
18883
+ * @param message ListDiscoveryConfigsRequest message or plain object to encode
18884
+ * @param [writer] Writer to encode to
18885
+ * @returns Writer
18886
+ */
18887
+ public static encode(message: google.privacy.dlp.v2.IListDiscoveryConfigsRequest, writer?: $protobuf.Writer): $protobuf.Writer;
18888
+
18889
+ /**
18890
+ * Encodes the specified ListDiscoveryConfigsRequest message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.ListDiscoveryConfigsRequest.verify|verify} messages.
18891
+ * @param message ListDiscoveryConfigsRequest message or plain object to encode
18892
+ * @param [writer] Writer to encode to
18893
+ * @returns Writer
18894
+ */
18895
+ public static encodeDelimited(message: google.privacy.dlp.v2.IListDiscoveryConfigsRequest, writer?: $protobuf.Writer): $protobuf.Writer;
18896
+
18897
+ /**
18898
+ * Decodes a ListDiscoveryConfigsRequest message from the specified reader or buffer.
18899
+ * @param reader Reader or buffer to decode from
18900
+ * @param [length] Message length if known beforehand
18901
+ * @returns ListDiscoveryConfigsRequest
18902
+ * @throws {Error} If the payload is not a reader or valid buffer
18903
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
18904
+ */
18905
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.ListDiscoveryConfigsRequest;
18906
+
18907
+ /**
18908
+ * Decodes a ListDiscoveryConfigsRequest message from the specified reader or buffer, length delimited.
18909
+ * @param reader Reader or buffer to decode from
18910
+ * @returns ListDiscoveryConfigsRequest
18911
+ * @throws {Error} If the payload is not a reader or valid buffer
18912
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
18913
+ */
18914
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.ListDiscoveryConfigsRequest;
18915
+
18916
+ /**
18917
+ * Verifies a ListDiscoveryConfigsRequest message.
18918
+ * @param message Plain object to verify
18919
+ * @returns `null` if valid, otherwise the reason why it is not
18920
+ */
18921
+ public static verify(message: { [k: string]: any }): (string|null);
18922
+
18923
+ /**
18924
+ * Creates a ListDiscoveryConfigsRequest message from a plain object. Also converts values to their respective internal types.
18925
+ * @param object Plain object
18926
+ * @returns ListDiscoveryConfigsRequest
18927
+ */
18928
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.ListDiscoveryConfigsRequest;
18929
+
18930
+ /**
18931
+ * Creates a plain object from a ListDiscoveryConfigsRequest message. Also converts values to other types if specified.
18932
+ * @param message ListDiscoveryConfigsRequest
18933
+ * @param [options] Conversion options
18934
+ * @returns Plain object
18935
+ */
18936
+ public static toObject(message: google.privacy.dlp.v2.ListDiscoveryConfigsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
18937
+
18938
+ /**
18939
+ * Converts this ListDiscoveryConfigsRequest to JSON.
18940
+ * @returns JSON object
18941
+ */
18942
+ public toJSON(): { [k: string]: any };
18943
+
18944
+ /**
18945
+ * Gets the default type url for ListDiscoveryConfigsRequest
18946
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
18947
+ * @returns The default type url
18948
+ */
18949
+ public static getTypeUrl(typeUrlPrefix?: string): string;
18950
+ }
18951
+
18952
+ /** Properties of a ListDiscoveryConfigsResponse. */
18953
+ interface IListDiscoveryConfigsResponse {
18954
+
18955
+ /** ListDiscoveryConfigsResponse discoveryConfigs */
18956
+ discoveryConfigs?: (google.privacy.dlp.v2.IDiscoveryConfig[]|null);
18957
+
18958
+ /** ListDiscoveryConfigsResponse nextPageToken */
18959
+ nextPageToken?: (string|null);
18960
+ }
18961
+
18962
+ /** Represents a ListDiscoveryConfigsResponse. */
18963
+ class ListDiscoveryConfigsResponse implements IListDiscoveryConfigsResponse {
18964
+
18965
+ /**
18966
+ * Constructs a new ListDiscoveryConfigsResponse.
18967
+ * @param [properties] Properties to set
18968
+ */
18969
+ constructor(properties?: google.privacy.dlp.v2.IListDiscoveryConfigsResponse);
18970
+
18971
+ /** ListDiscoveryConfigsResponse discoveryConfigs. */
18972
+ public discoveryConfigs: google.privacy.dlp.v2.IDiscoveryConfig[];
18973
+
18974
+ /** ListDiscoveryConfigsResponse nextPageToken. */
18975
+ public nextPageToken: string;
18976
+
18977
+ /**
18978
+ * Creates a new ListDiscoveryConfigsResponse instance using the specified properties.
18979
+ * @param [properties] Properties to set
18980
+ * @returns ListDiscoveryConfigsResponse instance
18981
+ */
18982
+ public static create(properties?: google.privacy.dlp.v2.IListDiscoveryConfigsResponse): google.privacy.dlp.v2.ListDiscoveryConfigsResponse;
18983
+
18984
+ /**
18985
+ * Encodes the specified ListDiscoveryConfigsResponse message. Does not implicitly {@link google.privacy.dlp.v2.ListDiscoveryConfigsResponse.verify|verify} messages.
18986
+ * @param message ListDiscoveryConfigsResponse message or plain object to encode
18987
+ * @param [writer] Writer to encode to
18988
+ * @returns Writer
18989
+ */
18990
+ public static encode(message: google.privacy.dlp.v2.IListDiscoveryConfigsResponse, writer?: $protobuf.Writer): $protobuf.Writer;
18991
+
18992
+ /**
18993
+ * Encodes the specified ListDiscoveryConfigsResponse message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.ListDiscoveryConfigsResponse.verify|verify} messages.
18994
+ * @param message ListDiscoveryConfigsResponse message or plain object to encode
18995
+ * @param [writer] Writer to encode to
18996
+ * @returns Writer
18997
+ */
18998
+ public static encodeDelimited(message: google.privacy.dlp.v2.IListDiscoveryConfigsResponse, writer?: $protobuf.Writer): $protobuf.Writer;
18999
+
19000
+ /**
19001
+ * Decodes a ListDiscoveryConfigsResponse message from the specified reader or buffer.
19002
+ * @param reader Reader or buffer to decode from
19003
+ * @param [length] Message length if known beforehand
19004
+ * @returns ListDiscoveryConfigsResponse
19005
+ * @throws {Error} If the payload is not a reader or valid buffer
19006
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
19007
+ */
19008
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.ListDiscoveryConfigsResponse;
19009
+
19010
+ /**
19011
+ * Decodes a ListDiscoveryConfigsResponse message from the specified reader or buffer, length delimited.
19012
+ * @param reader Reader or buffer to decode from
19013
+ * @returns ListDiscoveryConfigsResponse
19014
+ * @throws {Error} If the payload is not a reader or valid buffer
19015
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
19016
+ */
19017
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.ListDiscoveryConfigsResponse;
19018
+
19019
+ /**
19020
+ * Verifies a ListDiscoveryConfigsResponse message.
19021
+ * @param message Plain object to verify
19022
+ * @returns `null` if valid, otherwise the reason why it is not
19023
+ */
19024
+ public static verify(message: { [k: string]: any }): (string|null);
19025
+
19026
+ /**
19027
+ * Creates a ListDiscoveryConfigsResponse message from a plain object. Also converts values to their respective internal types.
19028
+ * @param object Plain object
19029
+ * @returns ListDiscoveryConfigsResponse
19030
+ */
19031
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.ListDiscoveryConfigsResponse;
19032
+
19033
+ /**
19034
+ * Creates a plain object from a ListDiscoveryConfigsResponse message. Also converts values to other types if specified.
19035
+ * @param message ListDiscoveryConfigsResponse
19036
+ * @param [options] Conversion options
19037
+ * @returns Plain object
19038
+ */
19039
+ public static toObject(message: google.privacy.dlp.v2.ListDiscoveryConfigsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
19040
+
19041
+ /**
19042
+ * Converts this ListDiscoveryConfigsResponse to JSON.
19043
+ * @returns JSON object
19044
+ */
19045
+ public toJSON(): { [k: string]: any };
19046
+
19047
+ /**
19048
+ * Gets the default type url for ListDiscoveryConfigsResponse
19049
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
19050
+ * @returns The default type url
19051
+ */
19052
+ public static getTypeUrl(typeUrlPrefix?: string): string;
19053
+ }
19054
+
19055
+ /** Properties of a DeleteDiscoveryConfigRequest. */
19056
+ interface IDeleteDiscoveryConfigRequest {
19057
+
19058
+ /** DeleteDiscoveryConfigRequest name */
19059
+ name?: (string|null);
19060
+ }
19061
+
19062
+ /** Represents a DeleteDiscoveryConfigRequest. */
19063
+ class DeleteDiscoveryConfigRequest implements IDeleteDiscoveryConfigRequest {
19064
+
19065
+ /**
19066
+ * Constructs a new DeleteDiscoveryConfigRequest.
19067
+ * @param [properties] Properties to set
19068
+ */
19069
+ constructor(properties?: google.privacy.dlp.v2.IDeleteDiscoveryConfigRequest);
19070
+
19071
+ /** DeleteDiscoveryConfigRequest name. */
19072
+ public name: string;
19073
+
19074
+ /**
19075
+ * Creates a new DeleteDiscoveryConfigRequest instance using the specified properties.
19076
+ * @param [properties] Properties to set
19077
+ * @returns DeleteDiscoveryConfigRequest instance
19078
+ */
19079
+ public static create(properties?: google.privacy.dlp.v2.IDeleteDiscoveryConfigRequest): google.privacy.dlp.v2.DeleteDiscoveryConfigRequest;
19080
+
19081
+ /**
19082
+ * Encodes the specified DeleteDiscoveryConfigRequest message. Does not implicitly {@link google.privacy.dlp.v2.DeleteDiscoveryConfigRequest.verify|verify} messages.
19083
+ * @param message DeleteDiscoveryConfigRequest message or plain object to encode
19084
+ * @param [writer] Writer to encode to
19085
+ * @returns Writer
19086
+ */
19087
+ public static encode(message: google.privacy.dlp.v2.IDeleteDiscoveryConfigRequest, writer?: $protobuf.Writer): $protobuf.Writer;
19088
+
19089
+ /**
19090
+ * Encodes the specified DeleteDiscoveryConfigRequest message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DeleteDiscoveryConfigRequest.verify|verify} messages.
19091
+ * @param message DeleteDiscoveryConfigRequest message or plain object to encode
19092
+ * @param [writer] Writer to encode to
19093
+ * @returns Writer
19094
+ */
19095
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDeleteDiscoveryConfigRequest, writer?: $protobuf.Writer): $protobuf.Writer;
19096
+
19097
+ /**
19098
+ * Decodes a DeleteDiscoveryConfigRequest message from the specified reader or buffer.
19099
+ * @param reader Reader or buffer to decode from
19100
+ * @param [length] Message length if known beforehand
19101
+ * @returns DeleteDiscoveryConfigRequest
19102
+ * @throws {Error} If the payload is not a reader or valid buffer
19103
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
19104
+ */
19105
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DeleteDiscoveryConfigRequest;
19106
+
19107
+ /**
19108
+ * Decodes a DeleteDiscoveryConfigRequest message from the specified reader or buffer, length delimited.
19109
+ * @param reader Reader or buffer to decode from
19110
+ * @returns DeleteDiscoveryConfigRequest
19111
+ * @throws {Error} If the payload is not a reader or valid buffer
19112
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
19113
+ */
19114
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DeleteDiscoveryConfigRequest;
19115
+
19116
+ /**
19117
+ * Verifies a DeleteDiscoveryConfigRequest message.
19118
+ * @param message Plain object to verify
19119
+ * @returns `null` if valid, otherwise the reason why it is not
19120
+ */
19121
+ public static verify(message: { [k: string]: any }): (string|null);
19122
+
19123
+ /**
19124
+ * Creates a DeleteDiscoveryConfigRequest message from a plain object. Also converts values to their respective internal types.
19125
+ * @param object Plain object
19126
+ * @returns DeleteDiscoveryConfigRequest
19127
+ */
19128
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DeleteDiscoveryConfigRequest;
19129
+
19130
+ /**
19131
+ * Creates a plain object from a DeleteDiscoveryConfigRequest message. Also converts values to other types if specified.
19132
+ * @param message DeleteDiscoveryConfigRequest
19133
+ * @param [options] Conversion options
19134
+ * @returns Plain object
19135
+ */
19136
+ public static toObject(message: google.privacy.dlp.v2.DeleteDiscoveryConfigRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
19137
+
19138
+ /**
19139
+ * Converts this DeleteDiscoveryConfigRequest to JSON.
19140
+ * @returns JSON object
19141
+ */
19142
+ public toJSON(): { [k: string]: any };
19143
+
19144
+ /**
19145
+ * Gets the default type url for DeleteDiscoveryConfigRequest
19146
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
19147
+ * @returns The default type url
19148
+ */
19149
+ public static getTypeUrl(typeUrlPrefix?: string): string;
19150
+ }
19151
+
17770
19152
  /** Properties of a CreateDlpJobRequest. */
17771
19153
  interface ICreateDlpJobRequest {
17772
19154
 
@@ -18794,106 +20176,1962 @@ export namespace google {
18794
20176
  public static getTypeUrl(typeUrlPrefix?: string): string;
18795
20177
  }
18796
20178
 
20179
+ /** Properties of a BigQueryRegex. */
20180
+ interface IBigQueryRegex {
20181
+
20182
+ /** BigQueryRegex projectIdRegex */
20183
+ projectIdRegex?: (string|null);
20184
+
20185
+ /** BigQueryRegex datasetIdRegex */
20186
+ datasetIdRegex?: (string|null);
20187
+
20188
+ /** BigQueryRegex tableIdRegex */
20189
+ tableIdRegex?: (string|null);
20190
+ }
20191
+
20192
+ /** Represents a BigQueryRegex. */
20193
+ class BigQueryRegex implements IBigQueryRegex {
20194
+
20195
+ /**
20196
+ * Constructs a new BigQueryRegex.
20197
+ * @param [properties] Properties to set
20198
+ */
20199
+ constructor(properties?: google.privacy.dlp.v2.IBigQueryRegex);
20200
+
20201
+ /** BigQueryRegex projectIdRegex. */
20202
+ public projectIdRegex: string;
20203
+
20204
+ /** BigQueryRegex datasetIdRegex. */
20205
+ public datasetIdRegex: string;
20206
+
20207
+ /** BigQueryRegex tableIdRegex. */
20208
+ public tableIdRegex: string;
20209
+
20210
+ /**
20211
+ * Creates a new BigQueryRegex instance using the specified properties.
20212
+ * @param [properties] Properties to set
20213
+ * @returns BigQueryRegex instance
20214
+ */
20215
+ public static create(properties?: google.privacy.dlp.v2.IBigQueryRegex): google.privacy.dlp.v2.BigQueryRegex;
20216
+
20217
+ /**
20218
+ * Encodes the specified BigQueryRegex message. Does not implicitly {@link google.privacy.dlp.v2.BigQueryRegex.verify|verify} messages.
20219
+ * @param message BigQueryRegex message or plain object to encode
20220
+ * @param [writer] Writer to encode to
20221
+ * @returns Writer
20222
+ */
20223
+ public static encode(message: google.privacy.dlp.v2.IBigQueryRegex, writer?: $protobuf.Writer): $protobuf.Writer;
20224
+
20225
+ /**
20226
+ * Encodes the specified BigQueryRegex message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.BigQueryRegex.verify|verify} messages.
20227
+ * @param message BigQueryRegex message or plain object to encode
20228
+ * @param [writer] Writer to encode to
20229
+ * @returns Writer
20230
+ */
20231
+ public static encodeDelimited(message: google.privacy.dlp.v2.IBigQueryRegex, writer?: $protobuf.Writer): $protobuf.Writer;
20232
+
20233
+ /**
20234
+ * Decodes a BigQueryRegex message from the specified reader or buffer.
20235
+ * @param reader Reader or buffer to decode from
20236
+ * @param [length] Message length if known beforehand
20237
+ * @returns BigQueryRegex
20238
+ * @throws {Error} If the payload is not a reader or valid buffer
20239
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
20240
+ */
20241
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.BigQueryRegex;
20242
+
20243
+ /**
20244
+ * Decodes a BigQueryRegex message from the specified reader or buffer, length delimited.
20245
+ * @param reader Reader or buffer to decode from
20246
+ * @returns BigQueryRegex
20247
+ * @throws {Error} If the payload is not a reader or valid buffer
20248
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
20249
+ */
20250
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.BigQueryRegex;
20251
+
20252
+ /**
20253
+ * Verifies a BigQueryRegex message.
20254
+ * @param message Plain object to verify
20255
+ * @returns `null` if valid, otherwise the reason why it is not
20256
+ */
20257
+ public static verify(message: { [k: string]: any }): (string|null);
20258
+
20259
+ /**
20260
+ * Creates a BigQueryRegex message from a plain object. Also converts values to their respective internal types.
20261
+ * @param object Plain object
20262
+ * @returns BigQueryRegex
20263
+ */
20264
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.BigQueryRegex;
20265
+
20266
+ /**
20267
+ * Creates a plain object from a BigQueryRegex message. Also converts values to other types if specified.
20268
+ * @param message BigQueryRegex
20269
+ * @param [options] Conversion options
20270
+ * @returns Plain object
20271
+ */
20272
+ public static toObject(message: google.privacy.dlp.v2.BigQueryRegex, options?: $protobuf.IConversionOptions): { [k: string]: any };
20273
+
20274
+ /**
20275
+ * Converts this BigQueryRegex to JSON.
20276
+ * @returns JSON object
20277
+ */
20278
+ public toJSON(): { [k: string]: any };
20279
+
20280
+ /**
20281
+ * Gets the default type url for BigQueryRegex
20282
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
20283
+ * @returns The default type url
20284
+ */
20285
+ public static getTypeUrl(typeUrlPrefix?: string): string;
20286
+ }
20287
+
20288
+ /** Properties of a BigQueryRegexes. */
20289
+ interface IBigQueryRegexes {
20290
+
20291
+ /** BigQueryRegexes patterns */
20292
+ patterns?: (google.privacy.dlp.v2.IBigQueryRegex[]|null);
20293
+ }
20294
+
20295
+ /** Represents a BigQueryRegexes. */
20296
+ class BigQueryRegexes implements IBigQueryRegexes {
20297
+
20298
+ /**
20299
+ * Constructs a new BigQueryRegexes.
20300
+ * @param [properties] Properties to set
20301
+ */
20302
+ constructor(properties?: google.privacy.dlp.v2.IBigQueryRegexes);
20303
+
20304
+ /** BigQueryRegexes patterns. */
20305
+ public patterns: google.privacy.dlp.v2.IBigQueryRegex[];
20306
+
20307
+ /**
20308
+ * Creates a new BigQueryRegexes instance using the specified properties.
20309
+ * @param [properties] Properties to set
20310
+ * @returns BigQueryRegexes instance
20311
+ */
20312
+ public static create(properties?: google.privacy.dlp.v2.IBigQueryRegexes): google.privacy.dlp.v2.BigQueryRegexes;
20313
+
20314
+ /**
20315
+ * Encodes the specified BigQueryRegexes message. Does not implicitly {@link google.privacy.dlp.v2.BigQueryRegexes.verify|verify} messages.
20316
+ * @param message BigQueryRegexes message or plain object to encode
20317
+ * @param [writer] Writer to encode to
20318
+ * @returns Writer
20319
+ */
20320
+ public static encode(message: google.privacy.dlp.v2.IBigQueryRegexes, writer?: $protobuf.Writer): $protobuf.Writer;
20321
+
20322
+ /**
20323
+ * Encodes the specified BigQueryRegexes message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.BigQueryRegexes.verify|verify} messages.
20324
+ * @param message BigQueryRegexes message or plain object to encode
20325
+ * @param [writer] Writer to encode to
20326
+ * @returns Writer
20327
+ */
20328
+ public static encodeDelimited(message: google.privacy.dlp.v2.IBigQueryRegexes, writer?: $protobuf.Writer): $protobuf.Writer;
20329
+
20330
+ /**
20331
+ * Decodes a BigQueryRegexes message from the specified reader or buffer.
20332
+ * @param reader Reader or buffer to decode from
20333
+ * @param [length] Message length if known beforehand
20334
+ * @returns BigQueryRegexes
20335
+ * @throws {Error} If the payload is not a reader or valid buffer
20336
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
20337
+ */
20338
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.BigQueryRegexes;
20339
+
20340
+ /**
20341
+ * Decodes a BigQueryRegexes message from the specified reader or buffer, length delimited.
20342
+ * @param reader Reader or buffer to decode from
20343
+ * @returns BigQueryRegexes
20344
+ * @throws {Error} If the payload is not a reader or valid buffer
20345
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
20346
+ */
20347
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.BigQueryRegexes;
20348
+
20349
+ /**
20350
+ * Verifies a BigQueryRegexes message.
20351
+ * @param message Plain object to verify
20352
+ * @returns `null` if valid, otherwise the reason why it is not
20353
+ */
20354
+ public static verify(message: { [k: string]: any }): (string|null);
20355
+
20356
+ /**
20357
+ * Creates a BigQueryRegexes message from a plain object. Also converts values to their respective internal types.
20358
+ * @param object Plain object
20359
+ * @returns BigQueryRegexes
20360
+ */
20361
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.BigQueryRegexes;
20362
+
20363
+ /**
20364
+ * Creates a plain object from a BigQueryRegexes message. Also converts values to other types if specified.
20365
+ * @param message BigQueryRegexes
20366
+ * @param [options] Conversion options
20367
+ * @returns Plain object
20368
+ */
20369
+ public static toObject(message: google.privacy.dlp.v2.BigQueryRegexes, options?: $protobuf.IConversionOptions): { [k: string]: any };
20370
+
20371
+ /**
20372
+ * Converts this BigQueryRegexes to JSON.
20373
+ * @returns JSON object
20374
+ */
20375
+ public toJSON(): { [k: string]: any };
20376
+
20377
+ /**
20378
+ * Gets the default type url for BigQueryRegexes
20379
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
20380
+ * @returns The default type url
20381
+ */
20382
+ public static getTypeUrl(typeUrlPrefix?: string): string;
20383
+ }
20384
+
20385
+ /** Properties of a BigQueryTableTypes. */
20386
+ interface IBigQueryTableTypes {
20387
+
20388
+ /** BigQueryTableTypes types */
20389
+ types?: (google.privacy.dlp.v2.BigQueryTableType[]|null);
20390
+ }
20391
+
20392
+ /** Represents a BigQueryTableTypes. */
20393
+ class BigQueryTableTypes implements IBigQueryTableTypes {
20394
+
20395
+ /**
20396
+ * Constructs a new BigQueryTableTypes.
20397
+ * @param [properties] Properties to set
20398
+ */
20399
+ constructor(properties?: google.privacy.dlp.v2.IBigQueryTableTypes);
20400
+
20401
+ /** BigQueryTableTypes types. */
20402
+ public types: google.privacy.dlp.v2.BigQueryTableType[];
20403
+
20404
+ /**
20405
+ * Creates a new BigQueryTableTypes instance using the specified properties.
20406
+ * @param [properties] Properties to set
20407
+ * @returns BigQueryTableTypes instance
20408
+ */
20409
+ public static create(properties?: google.privacy.dlp.v2.IBigQueryTableTypes): google.privacy.dlp.v2.BigQueryTableTypes;
20410
+
20411
+ /**
20412
+ * Encodes the specified BigQueryTableTypes message. Does not implicitly {@link google.privacy.dlp.v2.BigQueryTableTypes.verify|verify} messages.
20413
+ * @param message BigQueryTableTypes message or plain object to encode
20414
+ * @param [writer] Writer to encode to
20415
+ * @returns Writer
20416
+ */
20417
+ public static encode(message: google.privacy.dlp.v2.IBigQueryTableTypes, writer?: $protobuf.Writer): $protobuf.Writer;
20418
+
20419
+ /**
20420
+ * Encodes the specified BigQueryTableTypes message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.BigQueryTableTypes.verify|verify} messages.
20421
+ * @param message BigQueryTableTypes message or plain object to encode
20422
+ * @param [writer] Writer to encode to
20423
+ * @returns Writer
20424
+ */
20425
+ public static encodeDelimited(message: google.privacy.dlp.v2.IBigQueryTableTypes, writer?: $protobuf.Writer): $protobuf.Writer;
20426
+
20427
+ /**
20428
+ * Decodes a BigQueryTableTypes message from the specified reader or buffer.
20429
+ * @param reader Reader or buffer to decode from
20430
+ * @param [length] Message length if known beforehand
20431
+ * @returns BigQueryTableTypes
20432
+ * @throws {Error} If the payload is not a reader or valid buffer
20433
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
20434
+ */
20435
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.BigQueryTableTypes;
20436
+
20437
+ /**
20438
+ * Decodes a BigQueryTableTypes message from the specified reader or buffer, length delimited.
20439
+ * @param reader Reader or buffer to decode from
20440
+ * @returns BigQueryTableTypes
20441
+ * @throws {Error} If the payload is not a reader or valid buffer
20442
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
20443
+ */
20444
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.BigQueryTableTypes;
20445
+
20446
+ /**
20447
+ * Verifies a BigQueryTableTypes message.
20448
+ * @param message Plain object to verify
20449
+ * @returns `null` if valid, otherwise the reason why it is not
20450
+ */
20451
+ public static verify(message: { [k: string]: any }): (string|null);
20452
+
20453
+ /**
20454
+ * Creates a BigQueryTableTypes message from a plain object. Also converts values to their respective internal types.
20455
+ * @param object Plain object
20456
+ * @returns BigQueryTableTypes
20457
+ */
20458
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.BigQueryTableTypes;
20459
+
20460
+ /**
20461
+ * Creates a plain object from a BigQueryTableTypes message. Also converts values to other types if specified.
20462
+ * @param message BigQueryTableTypes
20463
+ * @param [options] Conversion options
20464
+ * @returns Plain object
20465
+ */
20466
+ public static toObject(message: google.privacy.dlp.v2.BigQueryTableTypes, options?: $protobuf.IConversionOptions): { [k: string]: any };
20467
+
20468
+ /**
20469
+ * Converts this BigQueryTableTypes to JSON.
20470
+ * @returns JSON object
20471
+ */
20472
+ public toJSON(): { [k: string]: any };
20473
+
20474
+ /**
20475
+ * Gets the default type url for BigQueryTableTypes
20476
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
20477
+ * @returns The default type url
20478
+ */
20479
+ public static getTypeUrl(typeUrlPrefix?: string): string;
20480
+ }
20481
+
20482
+ /** BigQueryTableTypeCollection enum. */
20483
+ enum BigQueryTableTypeCollection {
20484
+ BIG_QUERY_COLLECTION_UNSPECIFIED = 0,
20485
+ BIG_QUERY_COLLECTION_ALL_TYPES = 1,
20486
+ BIG_QUERY_COLLECTION_ONLY_SUPPORTED_TYPES = 2
20487
+ }
20488
+
20489
+ /** BigQueryTableType enum. */
20490
+ enum BigQueryTableType {
20491
+ BIG_QUERY_TABLE_TYPE_UNSPECIFIED = 0,
20492
+ BIG_QUERY_TABLE_TYPE_TABLE = 1,
20493
+ BIG_QUERY_TABLE_TYPE_EXTERNAL_BIG_LAKE = 2
20494
+ }
20495
+
20496
+ /** DataProfileUpdateFrequency enum. */
20497
+ enum DataProfileUpdateFrequency {
20498
+ UPDATE_FREQUENCY_UNSPECIFIED = 0,
20499
+ UPDATE_FREQUENCY_NEVER = 1,
20500
+ UPDATE_FREQUENCY_DAILY = 2,
20501
+ UPDATE_FREQUENCY_MONTHLY = 4
20502
+ }
20503
+
20504
+ /** Properties of a Disabled. */
20505
+ interface IDisabled {
20506
+ }
20507
+
20508
+ /** Represents a Disabled. */
20509
+ class Disabled implements IDisabled {
20510
+
20511
+ /**
20512
+ * Constructs a new Disabled.
20513
+ * @param [properties] Properties to set
20514
+ */
20515
+ constructor(properties?: google.privacy.dlp.v2.IDisabled);
20516
+
20517
+ /**
20518
+ * Creates a new Disabled instance using the specified properties.
20519
+ * @param [properties] Properties to set
20520
+ * @returns Disabled instance
20521
+ */
20522
+ public static create(properties?: google.privacy.dlp.v2.IDisabled): google.privacy.dlp.v2.Disabled;
20523
+
20524
+ /**
20525
+ * Encodes the specified Disabled message. Does not implicitly {@link google.privacy.dlp.v2.Disabled.verify|verify} messages.
20526
+ * @param message Disabled message or plain object to encode
20527
+ * @param [writer] Writer to encode to
20528
+ * @returns Writer
20529
+ */
20530
+ public static encode(message: google.privacy.dlp.v2.IDisabled, writer?: $protobuf.Writer): $protobuf.Writer;
20531
+
20532
+ /**
20533
+ * Encodes the specified Disabled message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.Disabled.verify|verify} messages.
20534
+ * @param message Disabled message or plain object to encode
20535
+ * @param [writer] Writer to encode to
20536
+ * @returns Writer
20537
+ */
20538
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDisabled, writer?: $protobuf.Writer): $protobuf.Writer;
20539
+
20540
+ /**
20541
+ * Decodes a Disabled message from the specified reader or buffer.
20542
+ * @param reader Reader or buffer to decode from
20543
+ * @param [length] Message length if known beforehand
20544
+ * @returns Disabled
20545
+ * @throws {Error} If the payload is not a reader or valid buffer
20546
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
20547
+ */
20548
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.Disabled;
20549
+
20550
+ /**
20551
+ * Decodes a Disabled message from the specified reader or buffer, length delimited.
20552
+ * @param reader Reader or buffer to decode from
20553
+ * @returns Disabled
20554
+ * @throws {Error} If the payload is not a reader or valid buffer
20555
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
20556
+ */
20557
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.Disabled;
20558
+
20559
+ /**
20560
+ * Verifies a Disabled message.
20561
+ * @param message Plain object to verify
20562
+ * @returns `null` if valid, otherwise the reason why it is not
20563
+ */
20564
+ public static verify(message: { [k: string]: any }): (string|null);
20565
+
20566
+ /**
20567
+ * Creates a Disabled message from a plain object. Also converts values to their respective internal types.
20568
+ * @param object Plain object
20569
+ * @returns Disabled
20570
+ */
20571
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.Disabled;
20572
+
20573
+ /**
20574
+ * Creates a plain object from a Disabled message. Also converts values to other types if specified.
20575
+ * @param message Disabled
20576
+ * @param [options] Conversion options
20577
+ * @returns Plain object
20578
+ */
20579
+ public static toObject(message: google.privacy.dlp.v2.Disabled, options?: $protobuf.IConversionOptions): { [k: string]: any };
20580
+
20581
+ /**
20582
+ * Converts this Disabled to JSON.
20583
+ * @returns JSON object
20584
+ */
20585
+ public toJSON(): { [k: string]: any };
20586
+
20587
+ /**
20588
+ * Gets the default type url for Disabled
20589
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
20590
+ * @returns The default type url
20591
+ */
20592
+ public static getTypeUrl(typeUrlPrefix?: string): string;
20593
+ }
20594
+
18797
20595
  /** Properties of a DataProfileLocation. */
18798
20596
  interface IDataProfileLocation {
18799
20597
 
18800
- /** DataProfileLocation organizationId */
20598
+ /** DataProfileLocation organizationId */
20599
+ organizationId?: (number|Long|string|null);
20600
+
20601
+ /** DataProfileLocation folderId */
20602
+ folderId?: (number|Long|string|null);
20603
+ }
20604
+
20605
+ /** Represents a DataProfileLocation. */
20606
+ class DataProfileLocation implements IDataProfileLocation {
20607
+
20608
+ /**
20609
+ * Constructs a new DataProfileLocation.
20610
+ * @param [properties] Properties to set
20611
+ */
20612
+ constructor(properties?: google.privacy.dlp.v2.IDataProfileLocation);
20613
+
20614
+ /** DataProfileLocation organizationId. */
20615
+ public organizationId?: (number|Long|string|null);
20616
+
20617
+ /** DataProfileLocation folderId. */
20618
+ public folderId?: (number|Long|string|null);
20619
+
20620
+ /** DataProfileLocation location. */
20621
+ public location?: ("organizationId"|"folderId");
20622
+
20623
+ /**
20624
+ * Creates a new DataProfileLocation instance using the specified properties.
20625
+ * @param [properties] Properties to set
20626
+ * @returns DataProfileLocation instance
20627
+ */
20628
+ public static create(properties?: google.privacy.dlp.v2.IDataProfileLocation): google.privacy.dlp.v2.DataProfileLocation;
20629
+
20630
+ /**
20631
+ * Encodes the specified DataProfileLocation message. Does not implicitly {@link google.privacy.dlp.v2.DataProfileLocation.verify|verify} messages.
20632
+ * @param message DataProfileLocation message or plain object to encode
20633
+ * @param [writer] Writer to encode to
20634
+ * @returns Writer
20635
+ */
20636
+ public static encode(message: google.privacy.dlp.v2.IDataProfileLocation, writer?: $protobuf.Writer): $protobuf.Writer;
20637
+
20638
+ /**
20639
+ * Encodes the specified DataProfileLocation message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DataProfileLocation.verify|verify} messages.
20640
+ * @param message DataProfileLocation message or plain object to encode
20641
+ * @param [writer] Writer to encode to
20642
+ * @returns Writer
20643
+ */
20644
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDataProfileLocation, writer?: $protobuf.Writer): $protobuf.Writer;
20645
+
20646
+ /**
20647
+ * Decodes a DataProfileLocation message from the specified reader or buffer.
20648
+ * @param reader Reader or buffer to decode from
20649
+ * @param [length] Message length if known beforehand
20650
+ * @returns DataProfileLocation
20651
+ * @throws {Error} If the payload is not a reader or valid buffer
20652
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
20653
+ */
20654
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DataProfileLocation;
20655
+
20656
+ /**
20657
+ * Decodes a DataProfileLocation message from the specified reader or buffer, length delimited.
20658
+ * @param reader Reader or buffer to decode from
20659
+ * @returns DataProfileLocation
20660
+ * @throws {Error} If the payload is not a reader or valid buffer
20661
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
20662
+ */
20663
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DataProfileLocation;
20664
+
20665
+ /**
20666
+ * Verifies a DataProfileLocation message.
20667
+ * @param message Plain object to verify
20668
+ * @returns `null` if valid, otherwise the reason why it is not
20669
+ */
20670
+ public static verify(message: { [k: string]: any }): (string|null);
20671
+
20672
+ /**
20673
+ * Creates a DataProfileLocation message from a plain object. Also converts values to their respective internal types.
20674
+ * @param object Plain object
20675
+ * @returns DataProfileLocation
20676
+ */
20677
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DataProfileLocation;
20678
+
20679
+ /**
20680
+ * Creates a plain object from a DataProfileLocation message. Also converts values to other types if specified.
20681
+ * @param message DataProfileLocation
20682
+ * @param [options] Conversion options
20683
+ * @returns Plain object
20684
+ */
20685
+ public static toObject(message: google.privacy.dlp.v2.DataProfileLocation, options?: $protobuf.IConversionOptions): { [k: string]: any };
20686
+
20687
+ /**
20688
+ * Converts this DataProfileLocation to JSON.
20689
+ * @returns JSON object
20690
+ */
20691
+ public toJSON(): { [k: string]: any };
20692
+
20693
+ /**
20694
+ * Gets the default type url for DataProfileLocation
20695
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
20696
+ * @returns The default type url
20697
+ */
20698
+ public static getTypeUrl(typeUrlPrefix?: string): string;
20699
+ }
20700
+
20701
+ /** Properties of a DiscoveryConfig. */
20702
+ interface IDiscoveryConfig {
20703
+
20704
+ /** DiscoveryConfig name */
20705
+ name?: (string|null);
20706
+
20707
+ /** DiscoveryConfig displayName */
20708
+ displayName?: (string|null);
20709
+
20710
+ /** DiscoveryConfig orgConfig */
20711
+ orgConfig?: (google.privacy.dlp.v2.DiscoveryConfig.IOrgConfig|null);
20712
+
20713
+ /** DiscoveryConfig inspectTemplates */
20714
+ inspectTemplates?: (string[]|null);
20715
+
20716
+ /** DiscoveryConfig actions */
20717
+ actions?: (google.privacy.dlp.v2.IDataProfileAction[]|null);
20718
+
20719
+ /** DiscoveryConfig targets */
20720
+ targets?: (google.privacy.dlp.v2.IDiscoveryTarget[]|null);
20721
+
20722
+ /** DiscoveryConfig errors */
20723
+ errors?: (google.privacy.dlp.v2.IError[]|null);
20724
+
20725
+ /** DiscoveryConfig createTime */
20726
+ createTime?: (google.protobuf.ITimestamp|null);
20727
+
20728
+ /** DiscoveryConfig updateTime */
20729
+ updateTime?: (google.protobuf.ITimestamp|null);
20730
+
20731
+ /** DiscoveryConfig lastRunTime */
20732
+ lastRunTime?: (google.protobuf.ITimestamp|null);
20733
+
20734
+ /** DiscoveryConfig status */
20735
+ status?: (google.privacy.dlp.v2.DiscoveryConfig.Status|keyof typeof google.privacy.dlp.v2.DiscoveryConfig.Status|null);
20736
+ }
20737
+
20738
+ /** Represents a DiscoveryConfig. */
20739
+ class DiscoveryConfig implements IDiscoveryConfig {
20740
+
20741
+ /**
20742
+ * Constructs a new DiscoveryConfig.
20743
+ * @param [properties] Properties to set
20744
+ */
20745
+ constructor(properties?: google.privacy.dlp.v2.IDiscoveryConfig);
20746
+
20747
+ /** DiscoveryConfig name. */
20748
+ public name: string;
20749
+
20750
+ /** DiscoveryConfig displayName. */
20751
+ public displayName: string;
20752
+
20753
+ /** DiscoveryConfig orgConfig. */
20754
+ public orgConfig?: (google.privacy.dlp.v2.DiscoveryConfig.IOrgConfig|null);
20755
+
20756
+ /** DiscoveryConfig inspectTemplates. */
20757
+ public inspectTemplates: string[];
20758
+
20759
+ /** DiscoveryConfig actions. */
20760
+ public actions: google.privacy.dlp.v2.IDataProfileAction[];
20761
+
20762
+ /** DiscoveryConfig targets. */
20763
+ public targets: google.privacy.dlp.v2.IDiscoveryTarget[];
20764
+
20765
+ /** DiscoveryConfig errors. */
20766
+ public errors: google.privacy.dlp.v2.IError[];
20767
+
20768
+ /** DiscoveryConfig createTime. */
20769
+ public createTime?: (google.protobuf.ITimestamp|null);
20770
+
20771
+ /** DiscoveryConfig updateTime. */
20772
+ public updateTime?: (google.protobuf.ITimestamp|null);
20773
+
20774
+ /** DiscoveryConfig lastRunTime. */
20775
+ public lastRunTime?: (google.protobuf.ITimestamp|null);
20776
+
20777
+ /** DiscoveryConfig status. */
20778
+ public status: (google.privacy.dlp.v2.DiscoveryConfig.Status|keyof typeof google.privacy.dlp.v2.DiscoveryConfig.Status);
20779
+
20780
+ /**
20781
+ * Creates a new DiscoveryConfig instance using the specified properties.
20782
+ * @param [properties] Properties to set
20783
+ * @returns DiscoveryConfig instance
20784
+ */
20785
+ public static create(properties?: google.privacy.dlp.v2.IDiscoveryConfig): google.privacy.dlp.v2.DiscoveryConfig;
20786
+
20787
+ /**
20788
+ * Encodes the specified DiscoveryConfig message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryConfig.verify|verify} messages.
20789
+ * @param message DiscoveryConfig message or plain object to encode
20790
+ * @param [writer] Writer to encode to
20791
+ * @returns Writer
20792
+ */
20793
+ public static encode(message: google.privacy.dlp.v2.IDiscoveryConfig, writer?: $protobuf.Writer): $protobuf.Writer;
20794
+
20795
+ /**
20796
+ * Encodes the specified DiscoveryConfig message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryConfig.verify|verify} messages.
20797
+ * @param message DiscoveryConfig message or plain object to encode
20798
+ * @param [writer] Writer to encode to
20799
+ * @returns Writer
20800
+ */
20801
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoveryConfig, writer?: $protobuf.Writer): $protobuf.Writer;
20802
+
20803
+ /**
20804
+ * Decodes a DiscoveryConfig message from the specified reader or buffer.
20805
+ * @param reader Reader or buffer to decode from
20806
+ * @param [length] Message length if known beforehand
20807
+ * @returns DiscoveryConfig
20808
+ * @throws {Error} If the payload is not a reader or valid buffer
20809
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
20810
+ */
20811
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryConfig;
20812
+
20813
+ /**
20814
+ * Decodes a DiscoveryConfig message from the specified reader or buffer, length delimited.
20815
+ * @param reader Reader or buffer to decode from
20816
+ * @returns DiscoveryConfig
20817
+ * @throws {Error} If the payload is not a reader or valid buffer
20818
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
20819
+ */
20820
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryConfig;
20821
+
20822
+ /**
20823
+ * Verifies a DiscoveryConfig message.
20824
+ * @param message Plain object to verify
20825
+ * @returns `null` if valid, otherwise the reason why it is not
20826
+ */
20827
+ public static verify(message: { [k: string]: any }): (string|null);
20828
+
20829
+ /**
20830
+ * Creates a DiscoveryConfig message from a plain object. Also converts values to their respective internal types.
20831
+ * @param object Plain object
20832
+ * @returns DiscoveryConfig
20833
+ */
20834
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryConfig;
20835
+
20836
+ /**
20837
+ * Creates a plain object from a DiscoveryConfig message. Also converts values to other types if specified.
20838
+ * @param message DiscoveryConfig
20839
+ * @param [options] Conversion options
20840
+ * @returns Plain object
20841
+ */
20842
+ public static toObject(message: google.privacy.dlp.v2.DiscoveryConfig, options?: $protobuf.IConversionOptions): { [k: string]: any };
20843
+
20844
+ /**
20845
+ * Converts this DiscoveryConfig to JSON.
20846
+ * @returns JSON object
20847
+ */
20848
+ public toJSON(): { [k: string]: any };
20849
+
20850
+ /**
20851
+ * Gets the default type url for DiscoveryConfig
20852
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
20853
+ * @returns The default type url
20854
+ */
20855
+ public static getTypeUrl(typeUrlPrefix?: string): string;
20856
+ }
20857
+
20858
+ namespace DiscoveryConfig {
20859
+
20860
+ /** Properties of an OrgConfig. */
20861
+ interface IOrgConfig {
20862
+
20863
+ /** OrgConfig location */
20864
+ location?: (google.privacy.dlp.v2.IDiscoveryStartingLocation|null);
20865
+
20866
+ /** OrgConfig projectId */
20867
+ projectId?: (string|null);
20868
+ }
20869
+
20870
+ /** Represents an OrgConfig. */
20871
+ class OrgConfig implements IOrgConfig {
20872
+
20873
+ /**
20874
+ * Constructs a new OrgConfig.
20875
+ * @param [properties] Properties to set
20876
+ */
20877
+ constructor(properties?: google.privacy.dlp.v2.DiscoveryConfig.IOrgConfig);
20878
+
20879
+ /** OrgConfig location. */
20880
+ public location?: (google.privacy.dlp.v2.IDiscoveryStartingLocation|null);
20881
+
20882
+ /** OrgConfig projectId. */
20883
+ public projectId: string;
20884
+
20885
+ /**
20886
+ * Creates a new OrgConfig instance using the specified properties.
20887
+ * @param [properties] Properties to set
20888
+ * @returns OrgConfig instance
20889
+ */
20890
+ public static create(properties?: google.privacy.dlp.v2.DiscoveryConfig.IOrgConfig): google.privacy.dlp.v2.DiscoveryConfig.OrgConfig;
20891
+
20892
+ /**
20893
+ * Encodes the specified OrgConfig message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryConfig.OrgConfig.verify|verify} messages.
20894
+ * @param message OrgConfig message or plain object to encode
20895
+ * @param [writer] Writer to encode to
20896
+ * @returns Writer
20897
+ */
20898
+ public static encode(message: google.privacy.dlp.v2.DiscoveryConfig.IOrgConfig, writer?: $protobuf.Writer): $protobuf.Writer;
20899
+
20900
+ /**
20901
+ * Encodes the specified OrgConfig message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryConfig.OrgConfig.verify|verify} messages.
20902
+ * @param message OrgConfig message or plain object to encode
20903
+ * @param [writer] Writer to encode to
20904
+ * @returns Writer
20905
+ */
20906
+ public static encodeDelimited(message: google.privacy.dlp.v2.DiscoveryConfig.IOrgConfig, writer?: $protobuf.Writer): $protobuf.Writer;
20907
+
20908
+ /**
20909
+ * Decodes an OrgConfig message from the specified reader or buffer.
20910
+ * @param reader Reader or buffer to decode from
20911
+ * @param [length] Message length if known beforehand
20912
+ * @returns OrgConfig
20913
+ * @throws {Error} If the payload is not a reader or valid buffer
20914
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
20915
+ */
20916
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryConfig.OrgConfig;
20917
+
20918
+ /**
20919
+ * Decodes an OrgConfig message from the specified reader or buffer, length delimited.
20920
+ * @param reader Reader or buffer to decode from
20921
+ * @returns OrgConfig
20922
+ * @throws {Error} If the payload is not a reader or valid buffer
20923
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
20924
+ */
20925
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryConfig.OrgConfig;
20926
+
20927
+ /**
20928
+ * Verifies an OrgConfig message.
20929
+ * @param message Plain object to verify
20930
+ * @returns `null` if valid, otherwise the reason why it is not
20931
+ */
20932
+ public static verify(message: { [k: string]: any }): (string|null);
20933
+
20934
+ /**
20935
+ * Creates an OrgConfig message from a plain object. Also converts values to their respective internal types.
20936
+ * @param object Plain object
20937
+ * @returns OrgConfig
20938
+ */
20939
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryConfig.OrgConfig;
20940
+
20941
+ /**
20942
+ * Creates a plain object from an OrgConfig message. Also converts values to other types if specified.
20943
+ * @param message OrgConfig
20944
+ * @param [options] Conversion options
20945
+ * @returns Plain object
20946
+ */
20947
+ public static toObject(message: google.privacy.dlp.v2.DiscoveryConfig.OrgConfig, options?: $protobuf.IConversionOptions): { [k: string]: any };
20948
+
20949
+ /**
20950
+ * Converts this OrgConfig to JSON.
20951
+ * @returns JSON object
20952
+ */
20953
+ public toJSON(): { [k: string]: any };
20954
+
20955
+ /**
20956
+ * Gets the default type url for OrgConfig
20957
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
20958
+ * @returns The default type url
20959
+ */
20960
+ public static getTypeUrl(typeUrlPrefix?: string): string;
20961
+ }
20962
+
20963
+ /** Status enum. */
20964
+ enum Status {
20965
+ STATUS_UNSPECIFIED = 0,
20966
+ RUNNING = 1,
20967
+ PAUSED = 2
20968
+ }
20969
+ }
20970
+
20971
+ /** Properties of a DiscoveryTarget. */
20972
+ interface IDiscoveryTarget {
20973
+
20974
+ /** DiscoveryTarget bigQueryTarget */
20975
+ bigQueryTarget?: (google.privacy.dlp.v2.IBigQueryDiscoveryTarget|null);
20976
+ }
20977
+
20978
+ /** Represents a DiscoveryTarget. */
20979
+ class DiscoveryTarget implements IDiscoveryTarget {
20980
+
20981
+ /**
20982
+ * Constructs a new DiscoveryTarget.
20983
+ * @param [properties] Properties to set
20984
+ */
20985
+ constructor(properties?: google.privacy.dlp.v2.IDiscoveryTarget);
20986
+
20987
+ /** DiscoveryTarget bigQueryTarget. */
20988
+ public bigQueryTarget?: (google.privacy.dlp.v2.IBigQueryDiscoveryTarget|null);
20989
+
20990
+ /** DiscoveryTarget target. */
20991
+ public target?: "bigQueryTarget";
20992
+
20993
+ /**
20994
+ * Creates a new DiscoveryTarget instance using the specified properties.
20995
+ * @param [properties] Properties to set
20996
+ * @returns DiscoveryTarget instance
20997
+ */
20998
+ public static create(properties?: google.privacy.dlp.v2.IDiscoveryTarget): google.privacy.dlp.v2.DiscoveryTarget;
20999
+
21000
+ /**
21001
+ * Encodes the specified DiscoveryTarget message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryTarget.verify|verify} messages.
21002
+ * @param message DiscoveryTarget message or plain object to encode
21003
+ * @param [writer] Writer to encode to
21004
+ * @returns Writer
21005
+ */
21006
+ public static encode(message: google.privacy.dlp.v2.IDiscoveryTarget, writer?: $protobuf.Writer): $protobuf.Writer;
21007
+
21008
+ /**
21009
+ * Encodes the specified DiscoveryTarget message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryTarget.verify|verify} messages.
21010
+ * @param message DiscoveryTarget message or plain object to encode
21011
+ * @param [writer] Writer to encode to
21012
+ * @returns Writer
21013
+ */
21014
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoveryTarget, writer?: $protobuf.Writer): $protobuf.Writer;
21015
+
21016
+ /**
21017
+ * Decodes a DiscoveryTarget message from the specified reader or buffer.
21018
+ * @param reader Reader or buffer to decode from
21019
+ * @param [length] Message length if known beforehand
21020
+ * @returns DiscoveryTarget
21021
+ * @throws {Error} If the payload is not a reader or valid buffer
21022
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21023
+ */
21024
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryTarget;
21025
+
21026
+ /**
21027
+ * Decodes a DiscoveryTarget message from the specified reader or buffer, length delimited.
21028
+ * @param reader Reader or buffer to decode from
21029
+ * @returns DiscoveryTarget
21030
+ * @throws {Error} If the payload is not a reader or valid buffer
21031
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21032
+ */
21033
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryTarget;
21034
+
21035
+ /**
21036
+ * Verifies a DiscoveryTarget message.
21037
+ * @param message Plain object to verify
21038
+ * @returns `null` if valid, otherwise the reason why it is not
21039
+ */
21040
+ public static verify(message: { [k: string]: any }): (string|null);
21041
+
21042
+ /**
21043
+ * Creates a DiscoveryTarget message from a plain object. Also converts values to their respective internal types.
21044
+ * @param object Plain object
21045
+ * @returns DiscoveryTarget
21046
+ */
21047
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryTarget;
21048
+
21049
+ /**
21050
+ * Creates a plain object from a DiscoveryTarget message. Also converts values to other types if specified.
21051
+ * @param message DiscoveryTarget
21052
+ * @param [options] Conversion options
21053
+ * @returns Plain object
21054
+ */
21055
+ public static toObject(message: google.privacy.dlp.v2.DiscoveryTarget, options?: $protobuf.IConversionOptions): { [k: string]: any };
21056
+
21057
+ /**
21058
+ * Converts this DiscoveryTarget to JSON.
21059
+ * @returns JSON object
21060
+ */
21061
+ public toJSON(): { [k: string]: any };
21062
+
21063
+ /**
21064
+ * Gets the default type url for DiscoveryTarget
21065
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
21066
+ * @returns The default type url
21067
+ */
21068
+ public static getTypeUrl(typeUrlPrefix?: string): string;
21069
+ }
21070
+
21071
+ /** Properties of a BigQueryDiscoveryTarget. */
21072
+ interface IBigQueryDiscoveryTarget {
21073
+
21074
+ /** BigQueryDiscoveryTarget filter */
21075
+ filter?: (google.privacy.dlp.v2.IDiscoveryBigQueryFilter|null);
21076
+
21077
+ /** BigQueryDiscoveryTarget conditions */
21078
+ conditions?: (google.privacy.dlp.v2.IDiscoveryBigQueryConditions|null);
21079
+
21080
+ /** BigQueryDiscoveryTarget cadence */
21081
+ cadence?: (google.privacy.dlp.v2.IDiscoveryGenerationCadence|null);
21082
+
21083
+ /** BigQueryDiscoveryTarget disabled */
21084
+ disabled?: (google.privacy.dlp.v2.IDisabled|null);
21085
+ }
21086
+
21087
+ /** Represents a BigQueryDiscoveryTarget. */
21088
+ class BigQueryDiscoveryTarget implements IBigQueryDiscoveryTarget {
21089
+
21090
+ /**
21091
+ * Constructs a new BigQueryDiscoveryTarget.
21092
+ * @param [properties] Properties to set
21093
+ */
21094
+ constructor(properties?: google.privacy.dlp.v2.IBigQueryDiscoveryTarget);
21095
+
21096
+ /** BigQueryDiscoveryTarget filter. */
21097
+ public filter?: (google.privacy.dlp.v2.IDiscoveryBigQueryFilter|null);
21098
+
21099
+ /** BigQueryDiscoveryTarget conditions. */
21100
+ public conditions?: (google.privacy.dlp.v2.IDiscoveryBigQueryConditions|null);
21101
+
21102
+ /** BigQueryDiscoveryTarget cadence. */
21103
+ public cadence?: (google.privacy.dlp.v2.IDiscoveryGenerationCadence|null);
21104
+
21105
+ /** BigQueryDiscoveryTarget disabled. */
21106
+ public disabled?: (google.privacy.dlp.v2.IDisabled|null);
21107
+
21108
+ /** BigQueryDiscoveryTarget frequency. */
21109
+ public frequency?: ("cadence"|"disabled");
21110
+
21111
+ /**
21112
+ * Creates a new BigQueryDiscoveryTarget instance using the specified properties.
21113
+ * @param [properties] Properties to set
21114
+ * @returns BigQueryDiscoveryTarget instance
21115
+ */
21116
+ public static create(properties?: google.privacy.dlp.v2.IBigQueryDiscoveryTarget): google.privacy.dlp.v2.BigQueryDiscoveryTarget;
21117
+
21118
+ /**
21119
+ * Encodes the specified BigQueryDiscoveryTarget message. Does not implicitly {@link google.privacy.dlp.v2.BigQueryDiscoveryTarget.verify|verify} messages.
21120
+ * @param message BigQueryDiscoveryTarget message or plain object to encode
21121
+ * @param [writer] Writer to encode to
21122
+ * @returns Writer
21123
+ */
21124
+ public static encode(message: google.privacy.dlp.v2.IBigQueryDiscoveryTarget, writer?: $protobuf.Writer): $protobuf.Writer;
21125
+
21126
+ /**
21127
+ * Encodes the specified BigQueryDiscoveryTarget message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.BigQueryDiscoveryTarget.verify|verify} messages.
21128
+ * @param message BigQueryDiscoveryTarget message or plain object to encode
21129
+ * @param [writer] Writer to encode to
21130
+ * @returns Writer
21131
+ */
21132
+ public static encodeDelimited(message: google.privacy.dlp.v2.IBigQueryDiscoveryTarget, writer?: $protobuf.Writer): $protobuf.Writer;
21133
+
21134
+ /**
21135
+ * Decodes a BigQueryDiscoveryTarget message from the specified reader or buffer.
21136
+ * @param reader Reader or buffer to decode from
21137
+ * @param [length] Message length if known beforehand
21138
+ * @returns BigQueryDiscoveryTarget
21139
+ * @throws {Error} If the payload is not a reader or valid buffer
21140
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21141
+ */
21142
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.BigQueryDiscoveryTarget;
21143
+
21144
+ /**
21145
+ * Decodes a BigQueryDiscoveryTarget message from the specified reader or buffer, length delimited.
21146
+ * @param reader Reader or buffer to decode from
21147
+ * @returns BigQueryDiscoveryTarget
21148
+ * @throws {Error} If the payload is not a reader or valid buffer
21149
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21150
+ */
21151
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.BigQueryDiscoveryTarget;
21152
+
21153
+ /**
21154
+ * Verifies a BigQueryDiscoveryTarget message.
21155
+ * @param message Plain object to verify
21156
+ * @returns `null` if valid, otherwise the reason why it is not
21157
+ */
21158
+ public static verify(message: { [k: string]: any }): (string|null);
21159
+
21160
+ /**
21161
+ * Creates a BigQueryDiscoveryTarget message from a plain object. Also converts values to their respective internal types.
21162
+ * @param object Plain object
21163
+ * @returns BigQueryDiscoveryTarget
21164
+ */
21165
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.BigQueryDiscoveryTarget;
21166
+
21167
+ /**
21168
+ * Creates a plain object from a BigQueryDiscoveryTarget message. Also converts values to other types if specified.
21169
+ * @param message BigQueryDiscoveryTarget
21170
+ * @param [options] Conversion options
21171
+ * @returns Plain object
21172
+ */
21173
+ public static toObject(message: google.privacy.dlp.v2.BigQueryDiscoveryTarget, options?: $protobuf.IConversionOptions): { [k: string]: any };
21174
+
21175
+ /**
21176
+ * Converts this BigQueryDiscoveryTarget to JSON.
21177
+ * @returns JSON object
21178
+ */
21179
+ public toJSON(): { [k: string]: any };
21180
+
21181
+ /**
21182
+ * Gets the default type url for BigQueryDiscoveryTarget
21183
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
21184
+ * @returns The default type url
21185
+ */
21186
+ public static getTypeUrl(typeUrlPrefix?: string): string;
21187
+ }
21188
+
21189
+ /** Properties of a DiscoveryBigQueryFilter. */
21190
+ interface IDiscoveryBigQueryFilter {
21191
+
21192
+ /** DiscoveryBigQueryFilter tables */
21193
+ tables?: (google.privacy.dlp.v2.IBigQueryTableCollection|null);
21194
+
21195
+ /** DiscoveryBigQueryFilter otherTables */
21196
+ otherTables?: (google.privacy.dlp.v2.DiscoveryBigQueryFilter.IAllOtherBigQueryTables|null);
21197
+ }
21198
+
21199
+ /** Represents a DiscoveryBigQueryFilter. */
21200
+ class DiscoveryBigQueryFilter implements IDiscoveryBigQueryFilter {
21201
+
21202
+ /**
21203
+ * Constructs a new DiscoveryBigQueryFilter.
21204
+ * @param [properties] Properties to set
21205
+ */
21206
+ constructor(properties?: google.privacy.dlp.v2.IDiscoveryBigQueryFilter);
21207
+
21208
+ /** DiscoveryBigQueryFilter tables. */
21209
+ public tables?: (google.privacy.dlp.v2.IBigQueryTableCollection|null);
21210
+
21211
+ /** DiscoveryBigQueryFilter otherTables. */
21212
+ public otherTables?: (google.privacy.dlp.v2.DiscoveryBigQueryFilter.IAllOtherBigQueryTables|null);
21213
+
21214
+ /** DiscoveryBigQueryFilter filter. */
21215
+ public filter?: ("tables"|"otherTables");
21216
+
21217
+ /**
21218
+ * Creates a new DiscoveryBigQueryFilter instance using the specified properties.
21219
+ * @param [properties] Properties to set
21220
+ * @returns DiscoveryBigQueryFilter instance
21221
+ */
21222
+ public static create(properties?: google.privacy.dlp.v2.IDiscoveryBigQueryFilter): google.privacy.dlp.v2.DiscoveryBigQueryFilter;
21223
+
21224
+ /**
21225
+ * Encodes the specified DiscoveryBigQueryFilter message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryBigQueryFilter.verify|verify} messages.
21226
+ * @param message DiscoveryBigQueryFilter message or plain object to encode
21227
+ * @param [writer] Writer to encode to
21228
+ * @returns Writer
21229
+ */
21230
+ public static encode(message: google.privacy.dlp.v2.IDiscoveryBigQueryFilter, writer?: $protobuf.Writer): $protobuf.Writer;
21231
+
21232
+ /**
21233
+ * Encodes the specified DiscoveryBigQueryFilter message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryBigQueryFilter.verify|verify} messages.
21234
+ * @param message DiscoveryBigQueryFilter message or plain object to encode
21235
+ * @param [writer] Writer to encode to
21236
+ * @returns Writer
21237
+ */
21238
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoveryBigQueryFilter, writer?: $protobuf.Writer): $protobuf.Writer;
21239
+
21240
+ /**
21241
+ * Decodes a DiscoveryBigQueryFilter message from the specified reader or buffer.
21242
+ * @param reader Reader or buffer to decode from
21243
+ * @param [length] Message length if known beforehand
21244
+ * @returns DiscoveryBigQueryFilter
21245
+ * @throws {Error} If the payload is not a reader or valid buffer
21246
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21247
+ */
21248
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryBigQueryFilter;
21249
+
21250
+ /**
21251
+ * Decodes a DiscoveryBigQueryFilter message from the specified reader or buffer, length delimited.
21252
+ * @param reader Reader or buffer to decode from
21253
+ * @returns DiscoveryBigQueryFilter
21254
+ * @throws {Error} If the payload is not a reader or valid buffer
21255
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21256
+ */
21257
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryBigQueryFilter;
21258
+
21259
+ /**
21260
+ * Verifies a DiscoveryBigQueryFilter message.
21261
+ * @param message Plain object to verify
21262
+ * @returns `null` if valid, otherwise the reason why it is not
21263
+ */
21264
+ public static verify(message: { [k: string]: any }): (string|null);
21265
+
21266
+ /**
21267
+ * Creates a DiscoveryBigQueryFilter message from a plain object. Also converts values to their respective internal types.
21268
+ * @param object Plain object
21269
+ * @returns DiscoveryBigQueryFilter
21270
+ */
21271
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryBigQueryFilter;
21272
+
21273
+ /**
21274
+ * Creates a plain object from a DiscoveryBigQueryFilter message. Also converts values to other types if specified.
21275
+ * @param message DiscoveryBigQueryFilter
21276
+ * @param [options] Conversion options
21277
+ * @returns Plain object
21278
+ */
21279
+ public static toObject(message: google.privacy.dlp.v2.DiscoveryBigQueryFilter, options?: $protobuf.IConversionOptions): { [k: string]: any };
21280
+
21281
+ /**
21282
+ * Converts this DiscoveryBigQueryFilter to JSON.
21283
+ * @returns JSON object
21284
+ */
21285
+ public toJSON(): { [k: string]: any };
21286
+
21287
+ /**
21288
+ * Gets the default type url for DiscoveryBigQueryFilter
21289
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
21290
+ * @returns The default type url
21291
+ */
21292
+ public static getTypeUrl(typeUrlPrefix?: string): string;
21293
+ }
21294
+
21295
+ namespace DiscoveryBigQueryFilter {
21296
+
21297
+ /** Properties of an AllOtherBigQueryTables. */
21298
+ interface IAllOtherBigQueryTables {
21299
+ }
21300
+
21301
+ /** Represents an AllOtherBigQueryTables. */
21302
+ class AllOtherBigQueryTables implements IAllOtherBigQueryTables {
21303
+
21304
+ /**
21305
+ * Constructs a new AllOtherBigQueryTables.
21306
+ * @param [properties] Properties to set
21307
+ */
21308
+ constructor(properties?: google.privacy.dlp.v2.DiscoveryBigQueryFilter.IAllOtherBigQueryTables);
21309
+
21310
+ /**
21311
+ * Creates a new AllOtherBigQueryTables instance using the specified properties.
21312
+ * @param [properties] Properties to set
21313
+ * @returns AllOtherBigQueryTables instance
21314
+ */
21315
+ public static create(properties?: google.privacy.dlp.v2.DiscoveryBigQueryFilter.IAllOtherBigQueryTables): google.privacy.dlp.v2.DiscoveryBigQueryFilter.AllOtherBigQueryTables;
21316
+
21317
+ /**
21318
+ * Encodes the specified AllOtherBigQueryTables message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryBigQueryFilter.AllOtherBigQueryTables.verify|verify} messages.
21319
+ * @param message AllOtherBigQueryTables message or plain object to encode
21320
+ * @param [writer] Writer to encode to
21321
+ * @returns Writer
21322
+ */
21323
+ public static encode(message: google.privacy.dlp.v2.DiscoveryBigQueryFilter.IAllOtherBigQueryTables, writer?: $protobuf.Writer): $protobuf.Writer;
21324
+
21325
+ /**
21326
+ * Encodes the specified AllOtherBigQueryTables message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryBigQueryFilter.AllOtherBigQueryTables.verify|verify} messages.
21327
+ * @param message AllOtherBigQueryTables message or plain object to encode
21328
+ * @param [writer] Writer to encode to
21329
+ * @returns Writer
21330
+ */
21331
+ public static encodeDelimited(message: google.privacy.dlp.v2.DiscoveryBigQueryFilter.IAllOtherBigQueryTables, writer?: $protobuf.Writer): $protobuf.Writer;
21332
+
21333
+ /**
21334
+ * Decodes an AllOtherBigQueryTables message from the specified reader or buffer.
21335
+ * @param reader Reader or buffer to decode from
21336
+ * @param [length] Message length if known beforehand
21337
+ * @returns AllOtherBigQueryTables
21338
+ * @throws {Error} If the payload is not a reader or valid buffer
21339
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21340
+ */
21341
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryBigQueryFilter.AllOtherBigQueryTables;
21342
+
21343
+ /**
21344
+ * Decodes an AllOtherBigQueryTables message from the specified reader or buffer, length delimited.
21345
+ * @param reader Reader or buffer to decode from
21346
+ * @returns AllOtherBigQueryTables
21347
+ * @throws {Error} If the payload is not a reader or valid buffer
21348
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21349
+ */
21350
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryBigQueryFilter.AllOtherBigQueryTables;
21351
+
21352
+ /**
21353
+ * Verifies an AllOtherBigQueryTables message.
21354
+ * @param message Plain object to verify
21355
+ * @returns `null` if valid, otherwise the reason why it is not
21356
+ */
21357
+ public static verify(message: { [k: string]: any }): (string|null);
21358
+
21359
+ /**
21360
+ * Creates an AllOtherBigQueryTables message from a plain object. Also converts values to their respective internal types.
21361
+ * @param object Plain object
21362
+ * @returns AllOtherBigQueryTables
21363
+ */
21364
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryBigQueryFilter.AllOtherBigQueryTables;
21365
+
21366
+ /**
21367
+ * Creates a plain object from an AllOtherBigQueryTables message. Also converts values to other types if specified.
21368
+ * @param message AllOtherBigQueryTables
21369
+ * @param [options] Conversion options
21370
+ * @returns Plain object
21371
+ */
21372
+ public static toObject(message: google.privacy.dlp.v2.DiscoveryBigQueryFilter.AllOtherBigQueryTables, options?: $protobuf.IConversionOptions): { [k: string]: any };
21373
+
21374
+ /**
21375
+ * Converts this AllOtherBigQueryTables to JSON.
21376
+ * @returns JSON object
21377
+ */
21378
+ public toJSON(): { [k: string]: any };
21379
+
21380
+ /**
21381
+ * Gets the default type url for AllOtherBigQueryTables
21382
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
21383
+ * @returns The default type url
21384
+ */
21385
+ public static getTypeUrl(typeUrlPrefix?: string): string;
21386
+ }
21387
+ }
21388
+
21389
+ /** Properties of a BigQueryTableCollection. */
21390
+ interface IBigQueryTableCollection {
21391
+
21392
+ /** BigQueryTableCollection includeRegexes */
21393
+ includeRegexes?: (google.privacy.dlp.v2.IBigQueryRegexes|null);
21394
+ }
21395
+
21396
+ /** Represents a BigQueryTableCollection. */
21397
+ class BigQueryTableCollection implements IBigQueryTableCollection {
21398
+
21399
+ /**
21400
+ * Constructs a new BigQueryTableCollection.
21401
+ * @param [properties] Properties to set
21402
+ */
21403
+ constructor(properties?: google.privacy.dlp.v2.IBigQueryTableCollection);
21404
+
21405
+ /** BigQueryTableCollection includeRegexes. */
21406
+ public includeRegexes?: (google.privacy.dlp.v2.IBigQueryRegexes|null);
21407
+
21408
+ /** BigQueryTableCollection pattern. */
21409
+ public pattern?: "includeRegexes";
21410
+
21411
+ /**
21412
+ * Creates a new BigQueryTableCollection instance using the specified properties.
21413
+ * @param [properties] Properties to set
21414
+ * @returns BigQueryTableCollection instance
21415
+ */
21416
+ public static create(properties?: google.privacy.dlp.v2.IBigQueryTableCollection): google.privacy.dlp.v2.BigQueryTableCollection;
21417
+
21418
+ /**
21419
+ * Encodes the specified BigQueryTableCollection message. Does not implicitly {@link google.privacy.dlp.v2.BigQueryTableCollection.verify|verify} messages.
21420
+ * @param message BigQueryTableCollection message or plain object to encode
21421
+ * @param [writer] Writer to encode to
21422
+ * @returns Writer
21423
+ */
21424
+ public static encode(message: google.privacy.dlp.v2.IBigQueryTableCollection, writer?: $protobuf.Writer): $protobuf.Writer;
21425
+
21426
+ /**
21427
+ * Encodes the specified BigQueryTableCollection message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.BigQueryTableCollection.verify|verify} messages.
21428
+ * @param message BigQueryTableCollection message or plain object to encode
21429
+ * @param [writer] Writer to encode to
21430
+ * @returns Writer
21431
+ */
21432
+ public static encodeDelimited(message: google.privacy.dlp.v2.IBigQueryTableCollection, writer?: $protobuf.Writer): $protobuf.Writer;
21433
+
21434
+ /**
21435
+ * Decodes a BigQueryTableCollection message from the specified reader or buffer.
21436
+ * @param reader Reader or buffer to decode from
21437
+ * @param [length] Message length if known beforehand
21438
+ * @returns BigQueryTableCollection
21439
+ * @throws {Error} If the payload is not a reader or valid buffer
21440
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21441
+ */
21442
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.BigQueryTableCollection;
21443
+
21444
+ /**
21445
+ * Decodes a BigQueryTableCollection message from the specified reader or buffer, length delimited.
21446
+ * @param reader Reader or buffer to decode from
21447
+ * @returns BigQueryTableCollection
21448
+ * @throws {Error} If the payload is not a reader or valid buffer
21449
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21450
+ */
21451
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.BigQueryTableCollection;
21452
+
21453
+ /**
21454
+ * Verifies a BigQueryTableCollection message.
21455
+ * @param message Plain object to verify
21456
+ * @returns `null` if valid, otherwise the reason why it is not
21457
+ */
21458
+ public static verify(message: { [k: string]: any }): (string|null);
21459
+
21460
+ /**
21461
+ * Creates a BigQueryTableCollection message from a plain object. Also converts values to their respective internal types.
21462
+ * @param object Plain object
21463
+ * @returns BigQueryTableCollection
21464
+ */
21465
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.BigQueryTableCollection;
21466
+
21467
+ /**
21468
+ * Creates a plain object from a BigQueryTableCollection message. Also converts values to other types if specified.
21469
+ * @param message BigQueryTableCollection
21470
+ * @param [options] Conversion options
21471
+ * @returns Plain object
21472
+ */
21473
+ public static toObject(message: google.privacy.dlp.v2.BigQueryTableCollection, options?: $protobuf.IConversionOptions): { [k: string]: any };
21474
+
21475
+ /**
21476
+ * Converts this BigQueryTableCollection to JSON.
21477
+ * @returns JSON object
21478
+ */
21479
+ public toJSON(): { [k: string]: any };
21480
+
21481
+ /**
21482
+ * Gets the default type url for BigQueryTableCollection
21483
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
21484
+ * @returns The default type url
21485
+ */
21486
+ public static getTypeUrl(typeUrlPrefix?: string): string;
21487
+ }
21488
+
21489
+ /** Properties of a DiscoveryBigQueryConditions. */
21490
+ interface IDiscoveryBigQueryConditions {
21491
+
21492
+ /** DiscoveryBigQueryConditions createdAfter */
21493
+ createdAfter?: (google.protobuf.ITimestamp|null);
21494
+
21495
+ /** DiscoveryBigQueryConditions types */
21496
+ types?: (google.privacy.dlp.v2.IBigQueryTableTypes|null);
21497
+
21498
+ /** DiscoveryBigQueryConditions typeCollection */
21499
+ typeCollection?: (google.privacy.dlp.v2.BigQueryTableTypeCollection|keyof typeof google.privacy.dlp.v2.BigQueryTableTypeCollection|null);
21500
+
21501
+ /** DiscoveryBigQueryConditions orConditions */
21502
+ orConditions?: (google.privacy.dlp.v2.DiscoveryBigQueryConditions.IOrConditions|null);
21503
+ }
21504
+
21505
+ /** Represents a DiscoveryBigQueryConditions. */
21506
+ class DiscoveryBigQueryConditions implements IDiscoveryBigQueryConditions {
21507
+
21508
+ /**
21509
+ * Constructs a new DiscoveryBigQueryConditions.
21510
+ * @param [properties] Properties to set
21511
+ */
21512
+ constructor(properties?: google.privacy.dlp.v2.IDiscoveryBigQueryConditions);
21513
+
21514
+ /** DiscoveryBigQueryConditions createdAfter. */
21515
+ public createdAfter?: (google.protobuf.ITimestamp|null);
21516
+
21517
+ /** DiscoveryBigQueryConditions types. */
21518
+ public types?: (google.privacy.dlp.v2.IBigQueryTableTypes|null);
21519
+
21520
+ /** DiscoveryBigQueryConditions typeCollection. */
21521
+ public typeCollection?: (google.privacy.dlp.v2.BigQueryTableTypeCollection|keyof typeof google.privacy.dlp.v2.BigQueryTableTypeCollection|null);
21522
+
21523
+ /** DiscoveryBigQueryConditions orConditions. */
21524
+ public orConditions?: (google.privacy.dlp.v2.DiscoveryBigQueryConditions.IOrConditions|null);
21525
+
21526
+ /** DiscoveryBigQueryConditions includedTypes. */
21527
+ public includedTypes?: ("types"|"typeCollection");
21528
+
21529
+ /**
21530
+ * Creates a new DiscoveryBigQueryConditions instance using the specified properties.
21531
+ * @param [properties] Properties to set
21532
+ * @returns DiscoveryBigQueryConditions instance
21533
+ */
21534
+ public static create(properties?: google.privacy.dlp.v2.IDiscoveryBigQueryConditions): google.privacy.dlp.v2.DiscoveryBigQueryConditions;
21535
+
21536
+ /**
21537
+ * Encodes the specified DiscoveryBigQueryConditions message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryBigQueryConditions.verify|verify} messages.
21538
+ * @param message DiscoveryBigQueryConditions message or plain object to encode
21539
+ * @param [writer] Writer to encode to
21540
+ * @returns Writer
21541
+ */
21542
+ public static encode(message: google.privacy.dlp.v2.IDiscoveryBigQueryConditions, writer?: $protobuf.Writer): $protobuf.Writer;
21543
+
21544
+ /**
21545
+ * Encodes the specified DiscoveryBigQueryConditions message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryBigQueryConditions.verify|verify} messages.
21546
+ * @param message DiscoveryBigQueryConditions message or plain object to encode
21547
+ * @param [writer] Writer to encode to
21548
+ * @returns Writer
21549
+ */
21550
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoveryBigQueryConditions, writer?: $protobuf.Writer): $protobuf.Writer;
21551
+
21552
+ /**
21553
+ * Decodes a DiscoveryBigQueryConditions message from the specified reader or buffer.
21554
+ * @param reader Reader or buffer to decode from
21555
+ * @param [length] Message length if known beforehand
21556
+ * @returns DiscoveryBigQueryConditions
21557
+ * @throws {Error} If the payload is not a reader or valid buffer
21558
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21559
+ */
21560
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryBigQueryConditions;
21561
+
21562
+ /**
21563
+ * Decodes a DiscoveryBigQueryConditions message from the specified reader or buffer, length delimited.
21564
+ * @param reader Reader or buffer to decode from
21565
+ * @returns DiscoveryBigQueryConditions
21566
+ * @throws {Error} If the payload is not a reader or valid buffer
21567
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21568
+ */
21569
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryBigQueryConditions;
21570
+
21571
+ /**
21572
+ * Verifies a DiscoveryBigQueryConditions message.
21573
+ * @param message Plain object to verify
21574
+ * @returns `null` if valid, otherwise the reason why it is not
21575
+ */
21576
+ public static verify(message: { [k: string]: any }): (string|null);
21577
+
21578
+ /**
21579
+ * Creates a DiscoveryBigQueryConditions message from a plain object. Also converts values to their respective internal types.
21580
+ * @param object Plain object
21581
+ * @returns DiscoveryBigQueryConditions
21582
+ */
21583
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryBigQueryConditions;
21584
+
21585
+ /**
21586
+ * Creates a plain object from a DiscoveryBigQueryConditions message. Also converts values to other types if specified.
21587
+ * @param message DiscoveryBigQueryConditions
21588
+ * @param [options] Conversion options
21589
+ * @returns Plain object
21590
+ */
21591
+ public static toObject(message: google.privacy.dlp.v2.DiscoveryBigQueryConditions, options?: $protobuf.IConversionOptions): { [k: string]: any };
21592
+
21593
+ /**
21594
+ * Converts this DiscoveryBigQueryConditions to JSON.
21595
+ * @returns JSON object
21596
+ */
21597
+ public toJSON(): { [k: string]: any };
21598
+
21599
+ /**
21600
+ * Gets the default type url for DiscoveryBigQueryConditions
21601
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
21602
+ * @returns The default type url
21603
+ */
21604
+ public static getTypeUrl(typeUrlPrefix?: string): string;
21605
+ }
21606
+
21607
+ namespace DiscoveryBigQueryConditions {
21608
+
21609
+ /** Properties of an OrConditions. */
21610
+ interface IOrConditions {
21611
+
21612
+ /** OrConditions minRowCount */
21613
+ minRowCount?: (number|null);
21614
+
21615
+ /** OrConditions minAge */
21616
+ minAge?: (google.protobuf.IDuration|null);
21617
+ }
21618
+
21619
+ /** Represents an OrConditions. */
21620
+ class OrConditions implements IOrConditions {
21621
+
21622
+ /**
21623
+ * Constructs a new OrConditions.
21624
+ * @param [properties] Properties to set
21625
+ */
21626
+ constructor(properties?: google.privacy.dlp.v2.DiscoveryBigQueryConditions.IOrConditions);
21627
+
21628
+ /** OrConditions minRowCount. */
21629
+ public minRowCount: number;
21630
+
21631
+ /** OrConditions minAge. */
21632
+ public minAge?: (google.protobuf.IDuration|null);
21633
+
21634
+ /**
21635
+ * Creates a new OrConditions instance using the specified properties.
21636
+ * @param [properties] Properties to set
21637
+ * @returns OrConditions instance
21638
+ */
21639
+ public static create(properties?: google.privacy.dlp.v2.DiscoveryBigQueryConditions.IOrConditions): google.privacy.dlp.v2.DiscoveryBigQueryConditions.OrConditions;
21640
+
21641
+ /**
21642
+ * Encodes the specified OrConditions message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryBigQueryConditions.OrConditions.verify|verify} messages.
21643
+ * @param message OrConditions message or plain object to encode
21644
+ * @param [writer] Writer to encode to
21645
+ * @returns Writer
21646
+ */
21647
+ public static encode(message: google.privacy.dlp.v2.DiscoveryBigQueryConditions.IOrConditions, writer?: $protobuf.Writer): $protobuf.Writer;
21648
+
21649
+ /**
21650
+ * Encodes the specified OrConditions message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryBigQueryConditions.OrConditions.verify|verify} messages.
21651
+ * @param message OrConditions message or plain object to encode
21652
+ * @param [writer] Writer to encode to
21653
+ * @returns Writer
21654
+ */
21655
+ public static encodeDelimited(message: google.privacy.dlp.v2.DiscoveryBigQueryConditions.IOrConditions, writer?: $protobuf.Writer): $protobuf.Writer;
21656
+
21657
+ /**
21658
+ * Decodes an OrConditions message from the specified reader or buffer.
21659
+ * @param reader Reader or buffer to decode from
21660
+ * @param [length] Message length if known beforehand
21661
+ * @returns OrConditions
21662
+ * @throws {Error} If the payload is not a reader or valid buffer
21663
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21664
+ */
21665
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryBigQueryConditions.OrConditions;
21666
+
21667
+ /**
21668
+ * Decodes an OrConditions message from the specified reader or buffer, length delimited.
21669
+ * @param reader Reader or buffer to decode from
21670
+ * @returns OrConditions
21671
+ * @throws {Error} If the payload is not a reader or valid buffer
21672
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21673
+ */
21674
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryBigQueryConditions.OrConditions;
21675
+
21676
+ /**
21677
+ * Verifies an OrConditions message.
21678
+ * @param message Plain object to verify
21679
+ * @returns `null` if valid, otherwise the reason why it is not
21680
+ */
21681
+ public static verify(message: { [k: string]: any }): (string|null);
21682
+
21683
+ /**
21684
+ * Creates an OrConditions message from a plain object. Also converts values to their respective internal types.
21685
+ * @param object Plain object
21686
+ * @returns OrConditions
21687
+ */
21688
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryBigQueryConditions.OrConditions;
21689
+
21690
+ /**
21691
+ * Creates a plain object from an OrConditions message. Also converts values to other types if specified.
21692
+ * @param message OrConditions
21693
+ * @param [options] Conversion options
21694
+ * @returns Plain object
21695
+ */
21696
+ public static toObject(message: google.privacy.dlp.v2.DiscoveryBigQueryConditions.OrConditions, options?: $protobuf.IConversionOptions): { [k: string]: any };
21697
+
21698
+ /**
21699
+ * Converts this OrConditions to JSON.
21700
+ * @returns JSON object
21701
+ */
21702
+ public toJSON(): { [k: string]: any };
21703
+
21704
+ /**
21705
+ * Gets the default type url for OrConditions
21706
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
21707
+ * @returns The default type url
21708
+ */
21709
+ public static getTypeUrl(typeUrlPrefix?: string): string;
21710
+ }
21711
+ }
21712
+
21713
+ /** Properties of a DiscoveryGenerationCadence. */
21714
+ interface IDiscoveryGenerationCadence {
21715
+
21716
+ /** DiscoveryGenerationCadence schemaModifiedCadence */
21717
+ schemaModifiedCadence?: (google.privacy.dlp.v2.IDiscoverySchemaModifiedCadence|null);
21718
+
21719
+ /** DiscoveryGenerationCadence tableModifiedCadence */
21720
+ tableModifiedCadence?: (google.privacy.dlp.v2.IDiscoveryTableModifiedCadence|null);
21721
+ }
21722
+
21723
+ /** Represents a DiscoveryGenerationCadence. */
21724
+ class DiscoveryGenerationCadence implements IDiscoveryGenerationCadence {
21725
+
21726
+ /**
21727
+ * Constructs a new DiscoveryGenerationCadence.
21728
+ * @param [properties] Properties to set
21729
+ */
21730
+ constructor(properties?: google.privacy.dlp.v2.IDiscoveryGenerationCadence);
21731
+
21732
+ /** DiscoveryGenerationCadence schemaModifiedCadence. */
21733
+ public schemaModifiedCadence?: (google.privacy.dlp.v2.IDiscoverySchemaModifiedCadence|null);
21734
+
21735
+ /** DiscoveryGenerationCadence tableModifiedCadence. */
21736
+ public tableModifiedCadence?: (google.privacy.dlp.v2.IDiscoveryTableModifiedCadence|null);
21737
+
21738
+ /**
21739
+ * Creates a new DiscoveryGenerationCadence instance using the specified properties.
21740
+ * @param [properties] Properties to set
21741
+ * @returns DiscoveryGenerationCadence instance
21742
+ */
21743
+ public static create(properties?: google.privacy.dlp.v2.IDiscoveryGenerationCadence): google.privacy.dlp.v2.DiscoveryGenerationCadence;
21744
+
21745
+ /**
21746
+ * Encodes the specified DiscoveryGenerationCadence message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryGenerationCadence.verify|verify} messages.
21747
+ * @param message DiscoveryGenerationCadence message or plain object to encode
21748
+ * @param [writer] Writer to encode to
21749
+ * @returns Writer
21750
+ */
21751
+ public static encode(message: google.privacy.dlp.v2.IDiscoveryGenerationCadence, writer?: $protobuf.Writer): $protobuf.Writer;
21752
+
21753
+ /**
21754
+ * Encodes the specified DiscoveryGenerationCadence message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryGenerationCadence.verify|verify} messages.
21755
+ * @param message DiscoveryGenerationCadence message or plain object to encode
21756
+ * @param [writer] Writer to encode to
21757
+ * @returns Writer
21758
+ */
21759
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoveryGenerationCadence, writer?: $protobuf.Writer): $protobuf.Writer;
21760
+
21761
+ /**
21762
+ * Decodes a DiscoveryGenerationCadence message from the specified reader or buffer.
21763
+ * @param reader Reader or buffer to decode from
21764
+ * @param [length] Message length if known beforehand
21765
+ * @returns DiscoveryGenerationCadence
21766
+ * @throws {Error} If the payload is not a reader or valid buffer
21767
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21768
+ */
21769
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryGenerationCadence;
21770
+
21771
+ /**
21772
+ * Decodes a DiscoveryGenerationCadence message from the specified reader or buffer, length delimited.
21773
+ * @param reader Reader or buffer to decode from
21774
+ * @returns DiscoveryGenerationCadence
21775
+ * @throws {Error} If the payload is not a reader or valid buffer
21776
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21777
+ */
21778
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryGenerationCadence;
21779
+
21780
+ /**
21781
+ * Verifies a DiscoveryGenerationCadence message.
21782
+ * @param message Plain object to verify
21783
+ * @returns `null` if valid, otherwise the reason why it is not
21784
+ */
21785
+ public static verify(message: { [k: string]: any }): (string|null);
21786
+
21787
+ /**
21788
+ * Creates a DiscoveryGenerationCadence message from a plain object. Also converts values to their respective internal types.
21789
+ * @param object Plain object
21790
+ * @returns DiscoveryGenerationCadence
21791
+ */
21792
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryGenerationCadence;
21793
+
21794
+ /**
21795
+ * Creates a plain object from a DiscoveryGenerationCadence message. Also converts values to other types if specified.
21796
+ * @param message DiscoveryGenerationCadence
21797
+ * @param [options] Conversion options
21798
+ * @returns Plain object
21799
+ */
21800
+ public static toObject(message: google.privacy.dlp.v2.DiscoveryGenerationCadence, options?: $protobuf.IConversionOptions): { [k: string]: any };
21801
+
21802
+ /**
21803
+ * Converts this DiscoveryGenerationCadence to JSON.
21804
+ * @returns JSON object
21805
+ */
21806
+ public toJSON(): { [k: string]: any };
21807
+
21808
+ /**
21809
+ * Gets the default type url for DiscoveryGenerationCadence
21810
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
21811
+ * @returns The default type url
21812
+ */
21813
+ public static getTypeUrl(typeUrlPrefix?: string): string;
21814
+ }
21815
+
21816
+ /** Properties of a DiscoveryTableModifiedCadence. */
21817
+ interface IDiscoveryTableModifiedCadence {
21818
+
21819
+ /** DiscoveryTableModifiedCadence types */
21820
+ types?: (google.privacy.dlp.v2.BigQueryTableModification[]|null);
21821
+
21822
+ /** DiscoveryTableModifiedCadence frequency */
21823
+ frequency?: (google.privacy.dlp.v2.DataProfileUpdateFrequency|keyof typeof google.privacy.dlp.v2.DataProfileUpdateFrequency|null);
21824
+ }
21825
+
21826
+ /** Represents a DiscoveryTableModifiedCadence. */
21827
+ class DiscoveryTableModifiedCadence implements IDiscoveryTableModifiedCadence {
21828
+
21829
+ /**
21830
+ * Constructs a new DiscoveryTableModifiedCadence.
21831
+ * @param [properties] Properties to set
21832
+ */
21833
+ constructor(properties?: google.privacy.dlp.v2.IDiscoveryTableModifiedCadence);
21834
+
21835
+ /** DiscoveryTableModifiedCadence types. */
21836
+ public types: google.privacy.dlp.v2.BigQueryTableModification[];
21837
+
21838
+ /** DiscoveryTableModifiedCadence frequency. */
21839
+ public frequency: (google.privacy.dlp.v2.DataProfileUpdateFrequency|keyof typeof google.privacy.dlp.v2.DataProfileUpdateFrequency);
21840
+
21841
+ /**
21842
+ * Creates a new DiscoveryTableModifiedCadence instance using the specified properties.
21843
+ * @param [properties] Properties to set
21844
+ * @returns DiscoveryTableModifiedCadence instance
21845
+ */
21846
+ public static create(properties?: google.privacy.dlp.v2.IDiscoveryTableModifiedCadence): google.privacy.dlp.v2.DiscoveryTableModifiedCadence;
21847
+
21848
+ /**
21849
+ * Encodes the specified DiscoveryTableModifiedCadence message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryTableModifiedCadence.verify|verify} messages.
21850
+ * @param message DiscoveryTableModifiedCadence message or plain object to encode
21851
+ * @param [writer] Writer to encode to
21852
+ * @returns Writer
21853
+ */
21854
+ public static encode(message: google.privacy.dlp.v2.IDiscoveryTableModifiedCadence, writer?: $protobuf.Writer): $protobuf.Writer;
21855
+
21856
+ /**
21857
+ * Encodes the specified DiscoveryTableModifiedCadence message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryTableModifiedCadence.verify|verify} messages.
21858
+ * @param message DiscoveryTableModifiedCadence message or plain object to encode
21859
+ * @param [writer] Writer to encode to
21860
+ * @returns Writer
21861
+ */
21862
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoveryTableModifiedCadence, writer?: $protobuf.Writer): $protobuf.Writer;
21863
+
21864
+ /**
21865
+ * Decodes a DiscoveryTableModifiedCadence message from the specified reader or buffer.
21866
+ * @param reader Reader or buffer to decode from
21867
+ * @param [length] Message length if known beforehand
21868
+ * @returns DiscoveryTableModifiedCadence
21869
+ * @throws {Error} If the payload is not a reader or valid buffer
21870
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21871
+ */
21872
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryTableModifiedCadence;
21873
+
21874
+ /**
21875
+ * Decodes a DiscoveryTableModifiedCadence message from the specified reader or buffer, length delimited.
21876
+ * @param reader Reader or buffer to decode from
21877
+ * @returns DiscoveryTableModifiedCadence
21878
+ * @throws {Error} If the payload is not a reader or valid buffer
21879
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21880
+ */
21881
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryTableModifiedCadence;
21882
+
21883
+ /**
21884
+ * Verifies a DiscoveryTableModifiedCadence message.
21885
+ * @param message Plain object to verify
21886
+ * @returns `null` if valid, otherwise the reason why it is not
21887
+ */
21888
+ public static verify(message: { [k: string]: any }): (string|null);
21889
+
21890
+ /**
21891
+ * Creates a DiscoveryTableModifiedCadence message from a plain object. Also converts values to their respective internal types.
21892
+ * @param object Plain object
21893
+ * @returns DiscoveryTableModifiedCadence
21894
+ */
21895
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryTableModifiedCadence;
21896
+
21897
+ /**
21898
+ * Creates a plain object from a DiscoveryTableModifiedCadence message. Also converts values to other types if specified.
21899
+ * @param message DiscoveryTableModifiedCadence
21900
+ * @param [options] Conversion options
21901
+ * @returns Plain object
21902
+ */
21903
+ public static toObject(message: google.privacy.dlp.v2.DiscoveryTableModifiedCadence, options?: $protobuf.IConversionOptions): { [k: string]: any };
21904
+
21905
+ /**
21906
+ * Converts this DiscoveryTableModifiedCadence to JSON.
21907
+ * @returns JSON object
21908
+ */
21909
+ public toJSON(): { [k: string]: any };
21910
+
21911
+ /**
21912
+ * Gets the default type url for DiscoveryTableModifiedCadence
21913
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
21914
+ * @returns The default type url
21915
+ */
21916
+ public static getTypeUrl(typeUrlPrefix?: string): string;
21917
+ }
21918
+
21919
+ /** BigQueryTableModification enum. */
21920
+ enum BigQueryTableModification {
21921
+ TABLE_MODIFICATION_UNSPECIFIED = 0,
21922
+ TABLE_MODIFIED_TIMESTAMP = 1
21923
+ }
21924
+
21925
+ /** Properties of a DiscoverySchemaModifiedCadence. */
21926
+ interface IDiscoverySchemaModifiedCadence {
21927
+
21928
+ /** DiscoverySchemaModifiedCadence types */
21929
+ types?: (google.privacy.dlp.v2.BigQuerySchemaModification[]|null);
21930
+
21931
+ /** DiscoverySchemaModifiedCadence frequency */
21932
+ frequency?: (google.privacy.dlp.v2.DataProfileUpdateFrequency|keyof typeof google.privacy.dlp.v2.DataProfileUpdateFrequency|null);
21933
+ }
21934
+
21935
+ /** Represents a DiscoverySchemaModifiedCadence. */
21936
+ class DiscoverySchemaModifiedCadence implements IDiscoverySchemaModifiedCadence {
21937
+
21938
+ /**
21939
+ * Constructs a new DiscoverySchemaModifiedCadence.
21940
+ * @param [properties] Properties to set
21941
+ */
21942
+ constructor(properties?: google.privacy.dlp.v2.IDiscoverySchemaModifiedCadence);
21943
+
21944
+ /** DiscoverySchemaModifiedCadence types. */
21945
+ public types: google.privacy.dlp.v2.BigQuerySchemaModification[];
21946
+
21947
+ /** DiscoverySchemaModifiedCadence frequency. */
21948
+ public frequency: (google.privacy.dlp.v2.DataProfileUpdateFrequency|keyof typeof google.privacy.dlp.v2.DataProfileUpdateFrequency);
21949
+
21950
+ /**
21951
+ * Creates a new DiscoverySchemaModifiedCadence instance using the specified properties.
21952
+ * @param [properties] Properties to set
21953
+ * @returns DiscoverySchemaModifiedCadence instance
21954
+ */
21955
+ public static create(properties?: google.privacy.dlp.v2.IDiscoverySchemaModifiedCadence): google.privacy.dlp.v2.DiscoverySchemaModifiedCadence;
21956
+
21957
+ /**
21958
+ * Encodes the specified DiscoverySchemaModifiedCadence message. Does not implicitly {@link google.privacy.dlp.v2.DiscoverySchemaModifiedCadence.verify|verify} messages.
21959
+ * @param message DiscoverySchemaModifiedCadence message or plain object to encode
21960
+ * @param [writer] Writer to encode to
21961
+ * @returns Writer
21962
+ */
21963
+ public static encode(message: google.privacy.dlp.v2.IDiscoverySchemaModifiedCadence, writer?: $protobuf.Writer): $protobuf.Writer;
21964
+
21965
+ /**
21966
+ * Encodes the specified DiscoverySchemaModifiedCadence message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoverySchemaModifiedCadence.verify|verify} messages.
21967
+ * @param message DiscoverySchemaModifiedCadence message or plain object to encode
21968
+ * @param [writer] Writer to encode to
21969
+ * @returns Writer
21970
+ */
21971
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoverySchemaModifiedCadence, writer?: $protobuf.Writer): $protobuf.Writer;
21972
+
21973
+ /**
21974
+ * Decodes a DiscoverySchemaModifiedCadence message from the specified reader or buffer.
21975
+ * @param reader Reader or buffer to decode from
21976
+ * @param [length] Message length if known beforehand
21977
+ * @returns DiscoverySchemaModifiedCadence
21978
+ * @throws {Error} If the payload is not a reader or valid buffer
21979
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21980
+ */
21981
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoverySchemaModifiedCadence;
21982
+
21983
+ /**
21984
+ * Decodes a DiscoverySchemaModifiedCadence message from the specified reader or buffer, length delimited.
21985
+ * @param reader Reader or buffer to decode from
21986
+ * @returns DiscoverySchemaModifiedCadence
21987
+ * @throws {Error} If the payload is not a reader or valid buffer
21988
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
21989
+ */
21990
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoverySchemaModifiedCadence;
21991
+
21992
+ /**
21993
+ * Verifies a DiscoverySchemaModifiedCadence message.
21994
+ * @param message Plain object to verify
21995
+ * @returns `null` if valid, otherwise the reason why it is not
21996
+ */
21997
+ public static verify(message: { [k: string]: any }): (string|null);
21998
+
21999
+ /**
22000
+ * Creates a DiscoverySchemaModifiedCadence message from a plain object. Also converts values to their respective internal types.
22001
+ * @param object Plain object
22002
+ * @returns DiscoverySchemaModifiedCadence
22003
+ */
22004
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoverySchemaModifiedCadence;
22005
+
22006
+ /**
22007
+ * Creates a plain object from a DiscoverySchemaModifiedCadence message. Also converts values to other types if specified.
22008
+ * @param message DiscoverySchemaModifiedCadence
22009
+ * @param [options] Conversion options
22010
+ * @returns Plain object
22011
+ */
22012
+ public static toObject(message: google.privacy.dlp.v2.DiscoverySchemaModifiedCadence, options?: $protobuf.IConversionOptions): { [k: string]: any };
22013
+
22014
+ /**
22015
+ * Converts this DiscoverySchemaModifiedCadence to JSON.
22016
+ * @returns JSON object
22017
+ */
22018
+ public toJSON(): { [k: string]: any };
22019
+
22020
+ /**
22021
+ * Gets the default type url for DiscoverySchemaModifiedCadence
22022
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
22023
+ * @returns The default type url
22024
+ */
22025
+ public static getTypeUrl(typeUrlPrefix?: string): string;
22026
+ }
22027
+
22028
+ /** BigQuerySchemaModification enum. */
22029
+ enum BigQuerySchemaModification {
22030
+ SCHEMA_MODIFICATION_UNSPECIFIED = 0,
22031
+ SCHEMA_NEW_COLUMNS = 1,
22032
+ SCHEMA_REMOVED_COLUMNS = 2
22033
+ }
22034
+
22035
+ /** Properties of a DiscoveryStartingLocation. */
22036
+ interface IDiscoveryStartingLocation {
22037
+
22038
+ /** DiscoveryStartingLocation organizationId */
18801
22039
  organizationId?: (number|Long|string|null);
18802
22040
 
18803
- /** DataProfileLocation folderId */
22041
+ /** DiscoveryStartingLocation folderId */
18804
22042
  folderId?: (number|Long|string|null);
18805
22043
  }
18806
22044
 
18807
- /** Represents a DataProfileLocation. */
18808
- class DataProfileLocation implements IDataProfileLocation {
22045
+ /** Represents a DiscoveryStartingLocation. */
22046
+ class DiscoveryStartingLocation implements IDiscoveryStartingLocation {
18809
22047
 
18810
22048
  /**
18811
- * Constructs a new DataProfileLocation.
22049
+ * Constructs a new DiscoveryStartingLocation.
18812
22050
  * @param [properties] Properties to set
18813
22051
  */
18814
- constructor(properties?: google.privacy.dlp.v2.IDataProfileLocation);
22052
+ constructor(properties?: google.privacy.dlp.v2.IDiscoveryStartingLocation);
18815
22053
 
18816
- /** DataProfileLocation organizationId. */
22054
+ /** DiscoveryStartingLocation organizationId. */
18817
22055
  public organizationId?: (number|Long|string|null);
18818
22056
 
18819
- /** DataProfileLocation folderId. */
22057
+ /** DiscoveryStartingLocation folderId. */
18820
22058
  public folderId?: (number|Long|string|null);
18821
22059
 
18822
- /** DataProfileLocation location. */
22060
+ /** DiscoveryStartingLocation location. */
18823
22061
  public location?: ("organizationId"|"folderId");
18824
22062
 
18825
22063
  /**
18826
- * Creates a new DataProfileLocation instance using the specified properties.
22064
+ * Creates a new DiscoveryStartingLocation instance using the specified properties.
18827
22065
  * @param [properties] Properties to set
18828
- * @returns DataProfileLocation instance
22066
+ * @returns DiscoveryStartingLocation instance
18829
22067
  */
18830
- public static create(properties?: google.privacy.dlp.v2.IDataProfileLocation): google.privacy.dlp.v2.DataProfileLocation;
22068
+ public static create(properties?: google.privacy.dlp.v2.IDiscoveryStartingLocation): google.privacy.dlp.v2.DiscoveryStartingLocation;
18831
22069
 
18832
22070
  /**
18833
- * Encodes the specified DataProfileLocation message. Does not implicitly {@link google.privacy.dlp.v2.DataProfileLocation.verify|verify} messages.
18834
- * @param message DataProfileLocation message or plain object to encode
22071
+ * Encodes the specified DiscoveryStartingLocation message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryStartingLocation.verify|verify} messages.
22072
+ * @param message DiscoveryStartingLocation message or plain object to encode
18835
22073
  * @param [writer] Writer to encode to
18836
22074
  * @returns Writer
18837
22075
  */
18838
- public static encode(message: google.privacy.dlp.v2.IDataProfileLocation, writer?: $protobuf.Writer): $protobuf.Writer;
22076
+ public static encode(message: google.privacy.dlp.v2.IDiscoveryStartingLocation, writer?: $protobuf.Writer): $protobuf.Writer;
18839
22077
 
18840
22078
  /**
18841
- * Encodes the specified DataProfileLocation message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DataProfileLocation.verify|verify} messages.
18842
- * @param message DataProfileLocation message or plain object to encode
22079
+ * Encodes the specified DiscoveryStartingLocation message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryStartingLocation.verify|verify} messages.
22080
+ * @param message DiscoveryStartingLocation message or plain object to encode
18843
22081
  * @param [writer] Writer to encode to
18844
22082
  * @returns Writer
18845
22083
  */
18846
- public static encodeDelimited(message: google.privacy.dlp.v2.IDataProfileLocation, writer?: $protobuf.Writer): $protobuf.Writer;
22084
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoveryStartingLocation, writer?: $protobuf.Writer): $protobuf.Writer;
18847
22085
 
18848
22086
  /**
18849
- * Decodes a DataProfileLocation message from the specified reader or buffer.
22087
+ * Decodes a DiscoveryStartingLocation message from the specified reader or buffer.
18850
22088
  * @param reader Reader or buffer to decode from
18851
22089
  * @param [length] Message length if known beforehand
18852
- * @returns DataProfileLocation
22090
+ * @returns DiscoveryStartingLocation
18853
22091
  * @throws {Error} If the payload is not a reader or valid buffer
18854
22092
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
18855
22093
  */
18856
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DataProfileLocation;
22094
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryStartingLocation;
18857
22095
 
18858
22096
  /**
18859
- * Decodes a DataProfileLocation message from the specified reader or buffer, length delimited.
22097
+ * Decodes a DiscoveryStartingLocation message from the specified reader or buffer, length delimited.
18860
22098
  * @param reader Reader or buffer to decode from
18861
- * @returns DataProfileLocation
22099
+ * @returns DiscoveryStartingLocation
18862
22100
  * @throws {Error} If the payload is not a reader or valid buffer
18863
22101
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
18864
22102
  */
18865
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DataProfileLocation;
22103
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryStartingLocation;
18866
22104
 
18867
22105
  /**
18868
- * Verifies a DataProfileLocation message.
22106
+ * Verifies a DiscoveryStartingLocation message.
18869
22107
  * @param message Plain object to verify
18870
22108
  * @returns `null` if valid, otherwise the reason why it is not
18871
22109
  */
18872
22110
  public static verify(message: { [k: string]: any }): (string|null);
18873
22111
 
18874
22112
  /**
18875
- * Creates a DataProfileLocation message from a plain object. Also converts values to their respective internal types.
22113
+ * Creates a DiscoveryStartingLocation message from a plain object. Also converts values to their respective internal types.
18876
22114
  * @param object Plain object
18877
- * @returns DataProfileLocation
22115
+ * @returns DiscoveryStartingLocation
18878
22116
  */
18879
- public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DataProfileLocation;
22117
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryStartingLocation;
18880
22118
 
18881
22119
  /**
18882
- * Creates a plain object from a DataProfileLocation message. Also converts values to other types if specified.
18883
- * @param message DataProfileLocation
22120
+ * Creates a plain object from a DiscoveryStartingLocation message. Also converts values to other types if specified.
22121
+ * @param message DiscoveryStartingLocation
18884
22122
  * @param [options] Conversion options
18885
22123
  * @returns Plain object
18886
22124
  */
18887
- public static toObject(message: google.privacy.dlp.v2.DataProfileLocation, options?: $protobuf.IConversionOptions): { [k: string]: any };
22125
+ public static toObject(message: google.privacy.dlp.v2.DiscoveryStartingLocation, options?: $protobuf.IConversionOptions): { [k: string]: any };
18888
22126
 
18889
22127
  /**
18890
- * Converts this DataProfileLocation to JSON.
22128
+ * Converts this DiscoveryStartingLocation to JSON.
18891
22129
  * @returns JSON object
18892
22130
  */
18893
22131
  public toJSON(): { [k: string]: any };
18894
22132
 
18895
22133
  /**
18896
- * Gets the default type url for DataProfileLocation
22134
+ * Gets the default type url for DiscoveryStartingLocation
18897
22135
  * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
18898
22136
  * @returns The default type url
18899
22137
  */
@@ -18927,11 +22165,17 @@ export namespace google {
18927
22165
  /** DlpJob endTime */
18928
22166
  endTime?: (google.protobuf.ITimestamp|null);
18929
22167
 
22168
+ /** DlpJob lastModified */
22169
+ lastModified?: (google.protobuf.ITimestamp|null);
22170
+
18930
22171
  /** DlpJob jobTriggerName */
18931
22172
  jobTriggerName?: (string|null);
18932
22173
 
18933
22174
  /** DlpJob errors */
18934
22175
  errors?: (google.privacy.dlp.v2.IError[]|null);
22176
+
22177
+ /** DlpJob actionDetails */
22178
+ actionDetails?: (google.privacy.dlp.v2.IActionDetails[]|null);
18935
22179
  }
18936
22180
 
18937
22181
  /** Represents a DlpJob. */
@@ -18967,12 +22211,18 @@ export namespace google {
18967
22211
  /** DlpJob endTime. */
18968
22212
  public endTime?: (google.protobuf.ITimestamp|null);
18969
22213
 
22214
+ /** DlpJob lastModified. */
22215
+ public lastModified?: (google.protobuf.ITimestamp|null);
22216
+
18970
22217
  /** DlpJob jobTriggerName. */
18971
22218
  public jobTriggerName: string;
18972
22219
 
18973
22220
  /** DlpJob errors. */
18974
22221
  public errors: google.privacy.dlp.v2.IError[];
18975
22222
 
22223
+ /** DlpJob actionDetails. */
22224
+ public actionDetails: google.privacy.dlp.v2.IActionDetails[];
22225
+
18976
22226
  /** DlpJob details. */
18977
22227
  public details?: ("riskDetails"|"inspectDetails");
18978
22228
 
@@ -22906,6 +26156,9 @@ export namespace google {
22906
26156
 
22907
26157
  /** OtherInfoTypeSummary estimatedPrevalence */
22908
26158
  estimatedPrevalence?: (number|null);
26159
+
26160
+ /** OtherInfoTypeSummary excludedFromAnalysis */
26161
+ excludedFromAnalysis?: (boolean|null);
22909
26162
  }
22910
26163
 
22911
26164
  /** Represents an OtherInfoTypeSummary. */
@@ -22923,6 +26176,9 @@ export namespace google {
22923
26176
  /** OtherInfoTypeSummary estimatedPrevalence. */
22924
26177
  public estimatedPrevalence: number;
22925
26178
 
26179
+ /** OtherInfoTypeSummary excludedFromAnalysis. */
26180
+ public excludedFromAnalysis: boolean;
26181
+
22926
26182
  /**
22927
26183
  * Creates a new OtherInfoTypeSummary instance using the specified properties.
22928
26184
  * @param [properties] Properties to set
@@ -23001,6 +26257,269 @@ export namespace google {
23001
26257
  public static getTypeUrl(typeUrlPrefix?: string): string;
23002
26258
  }
23003
26259
 
26260
+ /** NullPercentageLevel enum. */
26261
+ enum NullPercentageLevel {
26262
+ NULL_PERCENTAGE_LEVEL_UNSPECIFIED = 0,
26263
+ NULL_PERCENTAGE_VERY_LOW = 1,
26264
+ NULL_PERCENTAGE_LOW = 2,
26265
+ NULL_PERCENTAGE_MEDIUM = 3,
26266
+ NULL_PERCENTAGE_HIGH = 4
26267
+ }
26268
+
26269
+ /** UniquenessScoreLevel enum. */
26270
+ enum UniquenessScoreLevel {
26271
+ UNIQUENESS_SCORE_LEVEL_UNSPECIFIED = 0,
26272
+ UNIQUENESS_SCORE_LOW = 1,
26273
+ UNIQUENESS_SCORE_MEDIUM = 2,
26274
+ UNIQUENESS_SCORE_HIGH = 3
26275
+ }
26276
+
26277
+ /** Properties of a ColumnDataProfile. */
26278
+ interface IColumnDataProfile {
26279
+
26280
+ /** ColumnDataProfile name */
26281
+ name?: (string|null);
26282
+
26283
+ /** ColumnDataProfile profileStatus */
26284
+ profileStatus?: (google.privacy.dlp.v2.IProfileStatus|null);
26285
+
26286
+ /** ColumnDataProfile state */
26287
+ state?: (google.privacy.dlp.v2.ColumnDataProfile.State|keyof typeof google.privacy.dlp.v2.ColumnDataProfile.State|null);
26288
+
26289
+ /** ColumnDataProfile profileLastGenerated */
26290
+ profileLastGenerated?: (google.protobuf.ITimestamp|null);
26291
+
26292
+ /** ColumnDataProfile tableDataProfile */
26293
+ tableDataProfile?: (string|null);
26294
+
26295
+ /** ColumnDataProfile tableFullResource */
26296
+ tableFullResource?: (string|null);
26297
+
26298
+ /** ColumnDataProfile datasetProjectId */
26299
+ datasetProjectId?: (string|null);
26300
+
26301
+ /** ColumnDataProfile datasetLocation */
26302
+ datasetLocation?: (string|null);
26303
+
26304
+ /** ColumnDataProfile datasetId */
26305
+ datasetId?: (string|null);
26306
+
26307
+ /** ColumnDataProfile tableId */
26308
+ tableId?: (string|null);
26309
+
26310
+ /** ColumnDataProfile column */
26311
+ column?: (string|null);
26312
+
26313
+ /** ColumnDataProfile sensitivityScore */
26314
+ sensitivityScore?: (google.privacy.dlp.v2.ISensitivityScore|null);
26315
+
26316
+ /** ColumnDataProfile dataRiskLevel */
26317
+ dataRiskLevel?: (google.privacy.dlp.v2.IDataRiskLevel|null);
26318
+
26319
+ /** ColumnDataProfile columnInfoType */
26320
+ columnInfoType?: (google.privacy.dlp.v2.IInfoTypeSummary|null);
26321
+
26322
+ /** ColumnDataProfile otherMatches */
26323
+ otherMatches?: (google.privacy.dlp.v2.IOtherInfoTypeSummary[]|null);
26324
+
26325
+ /** ColumnDataProfile estimatedNullPercentage */
26326
+ estimatedNullPercentage?: (google.privacy.dlp.v2.NullPercentageLevel|keyof typeof google.privacy.dlp.v2.NullPercentageLevel|null);
26327
+
26328
+ /** ColumnDataProfile estimatedUniquenessScore */
26329
+ estimatedUniquenessScore?: (google.privacy.dlp.v2.UniquenessScoreLevel|keyof typeof google.privacy.dlp.v2.UniquenessScoreLevel|null);
26330
+
26331
+ /** ColumnDataProfile freeTextScore */
26332
+ freeTextScore?: (number|null);
26333
+
26334
+ /** ColumnDataProfile columnType */
26335
+ columnType?: (google.privacy.dlp.v2.ColumnDataProfile.ColumnDataType|keyof typeof google.privacy.dlp.v2.ColumnDataProfile.ColumnDataType|null);
26336
+
26337
+ /** ColumnDataProfile policyState */
26338
+ policyState?: (google.privacy.dlp.v2.ColumnDataProfile.ColumnPolicyState|keyof typeof google.privacy.dlp.v2.ColumnDataProfile.ColumnPolicyState|null);
26339
+ }
26340
+
26341
+ /** Represents a ColumnDataProfile. */
26342
+ class ColumnDataProfile implements IColumnDataProfile {
26343
+
26344
+ /**
26345
+ * Constructs a new ColumnDataProfile.
26346
+ * @param [properties] Properties to set
26347
+ */
26348
+ constructor(properties?: google.privacy.dlp.v2.IColumnDataProfile);
26349
+
26350
+ /** ColumnDataProfile name. */
26351
+ public name: string;
26352
+
26353
+ /** ColumnDataProfile profileStatus. */
26354
+ public profileStatus?: (google.privacy.dlp.v2.IProfileStatus|null);
26355
+
26356
+ /** ColumnDataProfile state. */
26357
+ public state: (google.privacy.dlp.v2.ColumnDataProfile.State|keyof typeof google.privacy.dlp.v2.ColumnDataProfile.State);
26358
+
26359
+ /** ColumnDataProfile profileLastGenerated. */
26360
+ public profileLastGenerated?: (google.protobuf.ITimestamp|null);
26361
+
26362
+ /** ColumnDataProfile tableDataProfile. */
26363
+ public tableDataProfile: string;
26364
+
26365
+ /** ColumnDataProfile tableFullResource. */
26366
+ public tableFullResource: string;
26367
+
26368
+ /** ColumnDataProfile datasetProjectId. */
26369
+ public datasetProjectId: string;
26370
+
26371
+ /** ColumnDataProfile datasetLocation. */
26372
+ public datasetLocation: string;
26373
+
26374
+ /** ColumnDataProfile datasetId. */
26375
+ public datasetId: string;
26376
+
26377
+ /** ColumnDataProfile tableId. */
26378
+ public tableId: string;
26379
+
26380
+ /** ColumnDataProfile column. */
26381
+ public column: string;
26382
+
26383
+ /** ColumnDataProfile sensitivityScore. */
26384
+ public sensitivityScore?: (google.privacy.dlp.v2.ISensitivityScore|null);
26385
+
26386
+ /** ColumnDataProfile dataRiskLevel. */
26387
+ public dataRiskLevel?: (google.privacy.dlp.v2.IDataRiskLevel|null);
26388
+
26389
+ /** ColumnDataProfile columnInfoType. */
26390
+ public columnInfoType?: (google.privacy.dlp.v2.IInfoTypeSummary|null);
26391
+
26392
+ /** ColumnDataProfile otherMatches. */
26393
+ public otherMatches: google.privacy.dlp.v2.IOtherInfoTypeSummary[];
26394
+
26395
+ /** ColumnDataProfile estimatedNullPercentage. */
26396
+ public estimatedNullPercentage: (google.privacy.dlp.v2.NullPercentageLevel|keyof typeof google.privacy.dlp.v2.NullPercentageLevel);
26397
+
26398
+ /** ColumnDataProfile estimatedUniquenessScore. */
26399
+ public estimatedUniquenessScore: (google.privacy.dlp.v2.UniquenessScoreLevel|keyof typeof google.privacy.dlp.v2.UniquenessScoreLevel);
26400
+
26401
+ /** ColumnDataProfile freeTextScore. */
26402
+ public freeTextScore: number;
26403
+
26404
+ /** ColumnDataProfile columnType. */
26405
+ public columnType: (google.privacy.dlp.v2.ColumnDataProfile.ColumnDataType|keyof typeof google.privacy.dlp.v2.ColumnDataProfile.ColumnDataType);
26406
+
26407
+ /** ColumnDataProfile policyState. */
26408
+ public policyState: (google.privacy.dlp.v2.ColumnDataProfile.ColumnPolicyState|keyof typeof google.privacy.dlp.v2.ColumnDataProfile.ColumnPolicyState);
26409
+
26410
+ /**
26411
+ * Creates a new ColumnDataProfile instance using the specified properties.
26412
+ * @param [properties] Properties to set
26413
+ * @returns ColumnDataProfile instance
26414
+ */
26415
+ public static create(properties?: google.privacy.dlp.v2.IColumnDataProfile): google.privacy.dlp.v2.ColumnDataProfile;
26416
+
26417
+ /**
26418
+ * Encodes the specified ColumnDataProfile message. Does not implicitly {@link google.privacy.dlp.v2.ColumnDataProfile.verify|verify} messages.
26419
+ * @param message ColumnDataProfile message or plain object to encode
26420
+ * @param [writer] Writer to encode to
26421
+ * @returns Writer
26422
+ */
26423
+ public static encode(message: google.privacy.dlp.v2.IColumnDataProfile, writer?: $protobuf.Writer): $protobuf.Writer;
26424
+
26425
+ /**
26426
+ * Encodes the specified ColumnDataProfile message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.ColumnDataProfile.verify|verify} messages.
26427
+ * @param message ColumnDataProfile message or plain object to encode
26428
+ * @param [writer] Writer to encode to
26429
+ * @returns Writer
26430
+ */
26431
+ public static encodeDelimited(message: google.privacy.dlp.v2.IColumnDataProfile, writer?: $protobuf.Writer): $protobuf.Writer;
26432
+
26433
+ /**
26434
+ * Decodes a ColumnDataProfile message from the specified reader or buffer.
26435
+ * @param reader Reader or buffer to decode from
26436
+ * @param [length] Message length if known beforehand
26437
+ * @returns ColumnDataProfile
26438
+ * @throws {Error} If the payload is not a reader or valid buffer
26439
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26440
+ */
26441
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.ColumnDataProfile;
26442
+
26443
+ /**
26444
+ * Decodes a ColumnDataProfile message from the specified reader or buffer, length delimited.
26445
+ * @param reader Reader or buffer to decode from
26446
+ * @returns ColumnDataProfile
26447
+ * @throws {Error} If the payload is not a reader or valid buffer
26448
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
26449
+ */
26450
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.ColumnDataProfile;
26451
+
26452
+ /**
26453
+ * Verifies a ColumnDataProfile message.
26454
+ * @param message Plain object to verify
26455
+ * @returns `null` if valid, otherwise the reason why it is not
26456
+ */
26457
+ public static verify(message: { [k: string]: any }): (string|null);
26458
+
26459
+ /**
26460
+ * Creates a ColumnDataProfile message from a plain object. Also converts values to their respective internal types.
26461
+ * @param object Plain object
26462
+ * @returns ColumnDataProfile
26463
+ */
26464
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.ColumnDataProfile;
26465
+
26466
+ /**
26467
+ * Creates a plain object from a ColumnDataProfile message. Also converts values to other types if specified.
26468
+ * @param message ColumnDataProfile
26469
+ * @param [options] Conversion options
26470
+ * @returns Plain object
26471
+ */
26472
+ public static toObject(message: google.privacy.dlp.v2.ColumnDataProfile, options?: $protobuf.IConversionOptions): { [k: string]: any };
26473
+
26474
+ /**
26475
+ * Converts this ColumnDataProfile to JSON.
26476
+ * @returns JSON object
26477
+ */
26478
+ public toJSON(): { [k: string]: any };
26479
+
26480
+ /**
26481
+ * Gets the default type url for ColumnDataProfile
26482
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
26483
+ * @returns The default type url
26484
+ */
26485
+ public static getTypeUrl(typeUrlPrefix?: string): string;
26486
+ }
26487
+
26488
+ namespace ColumnDataProfile {
26489
+
26490
+ /** State enum. */
26491
+ enum State {
26492
+ STATE_UNSPECIFIED = 0,
26493
+ RUNNING = 1,
26494
+ DONE = 2
26495
+ }
26496
+
26497
+ /** ColumnDataType enum. */
26498
+ enum ColumnDataType {
26499
+ COLUMN_DATA_TYPE_UNSPECIFIED = 0,
26500
+ TYPE_INT64 = 1,
26501
+ TYPE_BOOL = 2,
26502
+ TYPE_FLOAT64 = 3,
26503
+ TYPE_STRING = 4,
26504
+ TYPE_BYTES = 5,
26505
+ TYPE_TIMESTAMP = 6,
26506
+ TYPE_DATE = 7,
26507
+ TYPE_TIME = 8,
26508
+ TYPE_DATETIME = 9,
26509
+ TYPE_GEOGRAPHY = 10,
26510
+ TYPE_NUMERIC = 11,
26511
+ TYPE_RECORD = 12,
26512
+ TYPE_BIGNUMERIC = 13,
26513
+ TYPE_JSON = 14
26514
+ }
26515
+
26516
+ /** ColumnPolicyState enum. */
26517
+ enum ColumnPolicyState {
26518
+ COLUMN_POLICY_STATE_UNSPECIFIED = 0,
26519
+ COLUMN_POLICY_TAGGED = 1
26520
+ }
26521
+ }
26522
+
23004
26523
  /** Properties of a DataProfilePubSubCondition. */
23005
26524
  interface IDataProfilePubSubCondition {
23006
26525
 
@@ -23438,6 +26957,9 @@ export namespace google {
23438
26957
 
23439
26958
  /** InfoType version */
23440
26959
  version?: (string|null);
26960
+
26961
+ /** InfoType sensitivityScore */
26962
+ sensitivityScore?: (google.privacy.dlp.v2.ISensitivityScore|null);
23441
26963
  }
23442
26964
 
23443
26965
  /** Represents an InfoType. */
@@ -23455,6 +26977,9 @@ export namespace google {
23455
26977
  /** InfoType version. */
23456
26978
  public version: string;
23457
26979
 
26980
+ /** InfoType sensitivityScore. */
26981
+ public sensitivityScore?: (google.privacy.dlp.v2.ISensitivityScore|null);
26982
+
23458
26983
  /**
23459
26984
  * Creates a new InfoType instance using the specified properties.
23460
26985
  * @param [properties] Properties to set
@@ -23780,6 +27305,9 @@ export namespace google {
23780
27305
 
23781
27306
  /** CustomInfoType exclusionType */
23782
27307
  exclusionType?: (google.privacy.dlp.v2.CustomInfoType.ExclusionType|keyof typeof google.privacy.dlp.v2.CustomInfoType.ExclusionType|null);
27308
+
27309
+ /** CustomInfoType sensitivityScore */
27310
+ sensitivityScore?: (google.privacy.dlp.v2.ISensitivityScore|null);
23783
27311
  }
23784
27312
 
23785
27313
  /** Represents a CustomInfoType. */
@@ -23815,6 +27343,9 @@ export namespace google {
23815
27343
  /** CustomInfoType exclusionType. */
23816
27344
  public exclusionType: (google.privacy.dlp.v2.CustomInfoType.ExclusionType|keyof typeof google.privacy.dlp.v2.CustomInfoType.ExclusionType);
23817
27345
 
27346
+ /** CustomInfoType sensitivityScore. */
27347
+ public sensitivityScore?: (google.privacy.dlp.v2.ISensitivityScore|null);
27348
+
23818
27349
  /** CustomInfoType type. */
23819
27350
  public type?: ("dictionary"|"regex"|"surrogateType"|"storedType");
23820
27351
 
@@ -27775,6 +31306,9 @@ export namespace google {
27775
31306
 
27776
31307
  /** Publishing librarySettings */
27777
31308
  librarySettings?: (google.api.IClientLibrarySettings[]|null);
31309
+
31310
+ /** Publishing protoReferenceDocumentationUri */
31311
+ protoReferenceDocumentationUri?: (string|null);
27778
31312
  }
27779
31313
 
27780
31314
  /** Represents a Publishing. */
@@ -27813,6 +31347,9 @@ export namespace google {
27813
31347
  /** Publishing librarySettings. */
27814
31348
  public librarySettings: google.api.IClientLibrarySettings[];
27815
31349
 
31350
+ /** Publishing protoReferenceDocumentationUri. */
31351
+ public protoReferenceDocumentationUri: string;
31352
+
27816
31353
  /**
27817
31354
  * Creates a new Publishing instance using the specified properties.
27818
31355
  * @param [properties] Properties to set
@@ -28393,6 +31930,21 @@ export namespace google {
28393
31930
 
28394
31931
  /** DotnetSettings common */
28395
31932
  common?: (google.api.ICommonLanguageSettings|null);
31933
+
31934
+ /** DotnetSettings renamedServices */
31935
+ renamedServices?: ({ [k: string]: string }|null);
31936
+
31937
+ /** DotnetSettings renamedResources */
31938
+ renamedResources?: ({ [k: string]: string }|null);
31939
+
31940
+ /** DotnetSettings ignoredResources */
31941
+ ignoredResources?: (string[]|null);
31942
+
31943
+ /** DotnetSettings forcedNamespaceAliases */
31944
+ forcedNamespaceAliases?: (string[]|null);
31945
+
31946
+ /** DotnetSettings handwrittenSignatures */
31947
+ handwrittenSignatures?: (string[]|null);
28396
31948
  }
28397
31949
 
28398
31950
  /** Represents a DotnetSettings. */
@@ -28407,6 +31959,21 @@ export namespace google {
28407
31959
  /** DotnetSettings common. */
28408
31960
  public common?: (google.api.ICommonLanguageSettings|null);
28409
31961
 
31962
+ /** DotnetSettings renamedServices. */
31963
+ public renamedServices: { [k: string]: string };
31964
+
31965
+ /** DotnetSettings renamedResources. */
31966
+ public renamedResources: { [k: string]: string };
31967
+
31968
+ /** DotnetSettings ignoredResources. */
31969
+ public ignoredResources: string[];
31970
+
31971
+ /** DotnetSettings forcedNamespaceAliases. */
31972
+ public forcedNamespaceAliases: string[];
31973
+
31974
+ /** DotnetSettings handwrittenSignatures. */
31975
+ public handwrittenSignatures: string[];
31976
+
28410
31977
  /**
28411
31978
  * Creates a new DotnetSettings instance using the specified properties.
28412
31979
  * @param [properties] Properties to set
@@ -28906,7 +32473,10 @@ export namespace google {
28906
32473
  CLOUD = 1,
28907
32474
  ADS = 2,
28908
32475
  PHOTOS = 3,
28909
- STREET_VIEW = 4
32476
+ STREET_VIEW = 4,
32477
+ SHOPPING = 5,
32478
+ GEO = 6,
32479
+ GENERATIVE_AI = 7
28910
32480
  }
28911
32481
 
28912
32482
  /** ClientLibraryDestination enum. */
@@ -29833,6 +33403,15 @@ export namespace google {
29833
33403
 
29834
33404
  /** ExtensionRangeOptions uninterpretedOption */
29835
33405
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
33406
+
33407
+ /** ExtensionRangeOptions declaration */
33408
+ declaration?: (google.protobuf.ExtensionRangeOptions.IDeclaration[]|null);
33409
+
33410
+ /** ExtensionRangeOptions features */
33411
+ features?: (google.protobuf.IFeatureSet|null);
33412
+
33413
+ /** ExtensionRangeOptions verification */
33414
+ verification?: (google.protobuf.ExtensionRangeOptions.VerificationState|keyof typeof google.protobuf.ExtensionRangeOptions.VerificationState|null);
29836
33415
  }
29837
33416
 
29838
33417
  /** Represents an ExtensionRangeOptions. */
@@ -29847,6 +33426,15 @@ export namespace google {
29847
33426
  /** ExtensionRangeOptions uninterpretedOption. */
29848
33427
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
29849
33428
 
33429
+ /** ExtensionRangeOptions declaration. */
33430
+ public declaration: google.protobuf.ExtensionRangeOptions.IDeclaration[];
33431
+
33432
+ /** ExtensionRangeOptions features. */
33433
+ public features?: (google.protobuf.IFeatureSet|null);
33434
+
33435
+ /** ExtensionRangeOptions verification. */
33436
+ public verification: (google.protobuf.ExtensionRangeOptions.VerificationState|keyof typeof google.protobuf.ExtensionRangeOptions.VerificationState);
33437
+
29850
33438
  /**
29851
33439
  * Creates a new ExtensionRangeOptions instance using the specified properties.
29852
33440
  * @param [properties] Properties to set
@@ -29925,6 +33513,136 @@ export namespace google {
29925
33513
  public static getTypeUrl(typeUrlPrefix?: string): string;
29926
33514
  }
29927
33515
 
33516
+ namespace ExtensionRangeOptions {
33517
+
33518
+ /** Properties of a Declaration. */
33519
+ interface IDeclaration {
33520
+
33521
+ /** Declaration number */
33522
+ number?: (number|null);
33523
+
33524
+ /** Declaration fullName */
33525
+ fullName?: (string|null);
33526
+
33527
+ /** Declaration type */
33528
+ type?: (string|null);
33529
+
33530
+ /** Declaration reserved */
33531
+ reserved?: (boolean|null);
33532
+
33533
+ /** Declaration repeated */
33534
+ repeated?: (boolean|null);
33535
+ }
33536
+
33537
+ /** Represents a Declaration. */
33538
+ class Declaration implements IDeclaration {
33539
+
33540
+ /**
33541
+ * Constructs a new Declaration.
33542
+ * @param [properties] Properties to set
33543
+ */
33544
+ constructor(properties?: google.protobuf.ExtensionRangeOptions.IDeclaration);
33545
+
33546
+ /** Declaration number. */
33547
+ public number: number;
33548
+
33549
+ /** Declaration fullName. */
33550
+ public fullName: string;
33551
+
33552
+ /** Declaration type. */
33553
+ public type: string;
33554
+
33555
+ /** Declaration reserved. */
33556
+ public reserved: boolean;
33557
+
33558
+ /** Declaration repeated. */
33559
+ public repeated: boolean;
33560
+
33561
+ /**
33562
+ * Creates a new Declaration instance using the specified properties.
33563
+ * @param [properties] Properties to set
33564
+ * @returns Declaration instance
33565
+ */
33566
+ public static create(properties?: google.protobuf.ExtensionRangeOptions.IDeclaration): google.protobuf.ExtensionRangeOptions.Declaration;
33567
+
33568
+ /**
33569
+ * Encodes the specified Declaration message. Does not implicitly {@link google.protobuf.ExtensionRangeOptions.Declaration.verify|verify} messages.
33570
+ * @param message Declaration message or plain object to encode
33571
+ * @param [writer] Writer to encode to
33572
+ * @returns Writer
33573
+ */
33574
+ public static encode(message: google.protobuf.ExtensionRangeOptions.IDeclaration, writer?: $protobuf.Writer): $protobuf.Writer;
33575
+
33576
+ /**
33577
+ * Encodes the specified Declaration message, length delimited. Does not implicitly {@link google.protobuf.ExtensionRangeOptions.Declaration.verify|verify} messages.
33578
+ * @param message Declaration message or plain object to encode
33579
+ * @param [writer] Writer to encode to
33580
+ * @returns Writer
33581
+ */
33582
+ public static encodeDelimited(message: google.protobuf.ExtensionRangeOptions.IDeclaration, writer?: $protobuf.Writer): $protobuf.Writer;
33583
+
33584
+ /**
33585
+ * Decodes a Declaration message from the specified reader or buffer.
33586
+ * @param reader Reader or buffer to decode from
33587
+ * @param [length] Message length if known beforehand
33588
+ * @returns Declaration
33589
+ * @throws {Error} If the payload is not a reader or valid buffer
33590
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
33591
+ */
33592
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.ExtensionRangeOptions.Declaration;
33593
+
33594
+ /**
33595
+ * Decodes a Declaration message from the specified reader or buffer, length delimited.
33596
+ * @param reader Reader or buffer to decode from
33597
+ * @returns Declaration
33598
+ * @throws {Error} If the payload is not a reader or valid buffer
33599
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
33600
+ */
33601
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.ExtensionRangeOptions.Declaration;
33602
+
33603
+ /**
33604
+ * Verifies a Declaration message.
33605
+ * @param message Plain object to verify
33606
+ * @returns `null` if valid, otherwise the reason why it is not
33607
+ */
33608
+ public static verify(message: { [k: string]: any }): (string|null);
33609
+
33610
+ /**
33611
+ * Creates a Declaration message from a plain object. Also converts values to their respective internal types.
33612
+ * @param object Plain object
33613
+ * @returns Declaration
33614
+ */
33615
+ public static fromObject(object: { [k: string]: any }): google.protobuf.ExtensionRangeOptions.Declaration;
33616
+
33617
+ /**
33618
+ * Creates a plain object from a Declaration message. Also converts values to other types if specified.
33619
+ * @param message Declaration
33620
+ * @param [options] Conversion options
33621
+ * @returns Plain object
33622
+ */
33623
+ public static toObject(message: google.protobuf.ExtensionRangeOptions.Declaration, options?: $protobuf.IConversionOptions): { [k: string]: any };
33624
+
33625
+ /**
33626
+ * Converts this Declaration to JSON.
33627
+ * @returns JSON object
33628
+ */
33629
+ public toJSON(): { [k: string]: any };
33630
+
33631
+ /**
33632
+ * Gets the default type url for Declaration
33633
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
33634
+ * @returns The default type url
33635
+ */
33636
+ public static getTypeUrl(typeUrlPrefix?: string): string;
33637
+ }
33638
+
33639
+ /** VerificationState enum. */
33640
+ enum VerificationState {
33641
+ DECLARATION = 0,
33642
+ UNVERIFIED = 1
33643
+ }
33644
+ }
33645
+
29928
33646
  /** Properties of a FieldDescriptorProto. */
29929
33647
  interface IFieldDescriptorProto {
29930
33648
 
@@ -30852,6 +34570,9 @@ export namespace google {
30852
34570
  /** FileOptions rubyPackage */
30853
34571
  rubyPackage?: (string|null);
30854
34572
 
34573
+ /** FileOptions features */
34574
+ features?: (google.protobuf.IFeatureSet|null);
34575
+
30855
34576
  /** FileOptions uninterpretedOption */
30856
34577
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
30857
34578
 
@@ -30928,6 +34649,9 @@ export namespace google {
30928
34649
  /** FileOptions rubyPackage. */
30929
34650
  public rubyPackage: string;
30930
34651
 
34652
+ /** FileOptions features. */
34653
+ public features?: (google.protobuf.IFeatureSet|null);
34654
+
30931
34655
  /** FileOptions uninterpretedOption. */
30932
34656
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
30933
34657
 
@@ -31037,6 +34761,9 @@ export namespace google {
31037
34761
  /** MessageOptions deprecatedLegacyJsonFieldConflicts */
31038
34762
  deprecatedLegacyJsonFieldConflicts?: (boolean|null);
31039
34763
 
34764
+ /** MessageOptions features */
34765
+ features?: (google.protobuf.IFeatureSet|null);
34766
+
31040
34767
  /** MessageOptions uninterpretedOption */
31041
34768
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
31042
34769
 
@@ -31068,6 +34795,9 @@ export namespace google {
31068
34795
  /** MessageOptions deprecatedLegacyJsonFieldConflicts. */
31069
34796
  public deprecatedLegacyJsonFieldConflicts: boolean;
31070
34797
 
34798
+ /** MessageOptions features. */
34799
+ public features?: (google.protobuf.IFeatureSet|null);
34800
+
31071
34801
  /** MessageOptions uninterpretedOption. */
31072
34802
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
31073
34803
 
@@ -31179,8 +34909,14 @@ export namespace google {
31179
34909
  /** FieldOptions retention */
31180
34910
  retention?: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention|null);
31181
34911
 
31182
- /** FieldOptions target */
31183
- target?: (google.protobuf.FieldOptions.OptionTargetType|keyof typeof google.protobuf.FieldOptions.OptionTargetType|null);
34912
+ /** FieldOptions targets */
34913
+ targets?: (google.protobuf.FieldOptions.OptionTargetType[]|null);
34914
+
34915
+ /** FieldOptions editionDefaults */
34916
+ editionDefaults?: (google.protobuf.FieldOptions.IEditionDefault[]|null);
34917
+
34918
+ /** FieldOptions features */
34919
+ features?: (google.protobuf.IFeatureSet|null);
31184
34920
 
31185
34921
  /** FieldOptions uninterpretedOption */
31186
34922
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
@@ -31228,8 +34964,14 @@ export namespace google {
31228
34964
  /** FieldOptions retention. */
31229
34965
  public retention: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention);
31230
34966
 
31231
- /** FieldOptions target. */
31232
- public target: (google.protobuf.FieldOptions.OptionTargetType|keyof typeof google.protobuf.FieldOptions.OptionTargetType);
34967
+ /** FieldOptions targets. */
34968
+ public targets: google.protobuf.FieldOptions.OptionTargetType[];
34969
+
34970
+ /** FieldOptions editionDefaults. */
34971
+ public editionDefaults: google.protobuf.FieldOptions.IEditionDefault[];
34972
+
34973
+ /** FieldOptions features. */
34974
+ public features?: (google.protobuf.IFeatureSet|null);
31233
34975
 
31234
34976
  /** FieldOptions uninterpretedOption. */
31235
34977
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
@@ -31348,11 +35090,117 @@ export namespace google {
31348
35090
  TARGET_TYPE_SERVICE = 8,
31349
35091
  TARGET_TYPE_METHOD = 9
31350
35092
  }
35093
+
35094
+ /** Properties of an EditionDefault. */
35095
+ interface IEditionDefault {
35096
+
35097
+ /** EditionDefault edition */
35098
+ edition?: (string|null);
35099
+
35100
+ /** EditionDefault value */
35101
+ value?: (string|null);
35102
+ }
35103
+
35104
+ /** Represents an EditionDefault. */
35105
+ class EditionDefault implements IEditionDefault {
35106
+
35107
+ /**
35108
+ * Constructs a new EditionDefault.
35109
+ * @param [properties] Properties to set
35110
+ */
35111
+ constructor(properties?: google.protobuf.FieldOptions.IEditionDefault);
35112
+
35113
+ /** EditionDefault edition. */
35114
+ public edition: string;
35115
+
35116
+ /** EditionDefault value. */
35117
+ public value: string;
35118
+
35119
+ /**
35120
+ * Creates a new EditionDefault instance using the specified properties.
35121
+ * @param [properties] Properties to set
35122
+ * @returns EditionDefault instance
35123
+ */
35124
+ public static create(properties?: google.protobuf.FieldOptions.IEditionDefault): google.protobuf.FieldOptions.EditionDefault;
35125
+
35126
+ /**
35127
+ * Encodes the specified EditionDefault message. Does not implicitly {@link google.protobuf.FieldOptions.EditionDefault.verify|verify} messages.
35128
+ * @param message EditionDefault message or plain object to encode
35129
+ * @param [writer] Writer to encode to
35130
+ * @returns Writer
35131
+ */
35132
+ public static encode(message: google.protobuf.FieldOptions.IEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
35133
+
35134
+ /**
35135
+ * Encodes the specified EditionDefault message, length delimited. Does not implicitly {@link google.protobuf.FieldOptions.EditionDefault.verify|verify} messages.
35136
+ * @param message EditionDefault message or plain object to encode
35137
+ * @param [writer] Writer to encode to
35138
+ * @returns Writer
35139
+ */
35140
+ public static encodeDelimited(message: google.protobuf.FieldOptions.IEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
35141
+
35142
+ /**
35143
+ * Decodes an EditionDefault message from the specified reader or buffer.
35144
+ * @param reader Reader or buffer to decode from
35145
+ * @param [length] Message length if known beforehand
35146
+ * @returns EditionDefault
35147
+ * @throws {Error} If the payload is not a reader or valid buffer
35148
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
35149
+ */
35150
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions.EditionDefault;
35151
+
35152
+ /**
35153
+ * Decodes an EditionDefault message from the specified reader or buffer, length delimited.
35154
+ * @param reader Reader or buffer to decode from
35155
+ * @returns EditionDefault
35156
+ * @throws {Error} If the payload is not a reader or valid buffer
35157
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
35158
+ */
35159
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions.EditionDefault;
35160
+
35161
+ /**
35162
+ * Verifies an EditionDefault message.
35163
+ * @param message Plain object to verify
35164
+ * @returns `null` if valid, otherwise the reason why it is not
35165
+ */
35166
+ public static verify(message: { [k: string]: any }): (string|null);
35167
+
35168
+ /**
35169
+ * Creates an EditionDefault message from a plain object. Also converts values to their respective internal types.
35170
+ * @param object Plain object
35171
+ * @returns EditionDefault
35172
+ */
35173
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.EditionDefault;
35174
+
35175
+ /**
35176
+ * Creates a plain object from an EditionDefault message. Also converts values to other types if specified.
35177
+ * @param message EditionDefault
35178
+ * @param [options] Conversion options
35179
+ * @returns Plain object
35180
+ */
35181
+ public static toObject(message: google.protobuf.FieldOptions.EditionDefault, options?: $protobuf.IConversionOptions): { [k: string]: any };
35182
+
35183
+ /**
35184
+ * Converts this EditionDefault to JSON.
35185
+ * @returns JSON object
35186
+ */
35187
+ public toJSON(): { [k: string]: any };
35188
+
35189
+ /**
35190
+ * Gets the default type url for EditionDefault
35191
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
35192
+ * @returns The default type url
35193
+ */
35194
+ public static getTypeUrl(typeUrlPrefix?: string): string;
35195
+ }
31351
35196
  }
31352
35197
 
31353
35198
  /** Properties of an OneofOptions. */
31354
35199
  interface IOneofOptions {
31355
35200
 
35201
+ /** OneofOptions features */
35202
+ features?: (google.protobuf.IFeatureSet|null);
35203
+
31356
35204
  /** OneofOptions uninterpretedOption */
31357
35205
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
31358
35206
  }
@@ -31366,6 +35214,9 @@ export namespace google {
31366
35214
  */
31367
35215
  constructor(properties?: google.protobuf.IOneofOptions);
31368
35216
 
35217
+ /** OneofOptions features. */
35218
+ public features?: (google.protobuf.IFeatureSet|null);
35219
+
31369
35220
  /** OneofOptions uninterpretedOption. */
31370
35221
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
31371
35222
 
@@ -31459,6 +35310,9 @@ export namespace google {
31459
35310
  /** EnumOptions deprecatedLegacyJsonFieldConflicts */
31460
35311
  deprecatedLegacyJsonFieldConflicts?: (boolean|null);
31461
35312
 
35313
+ /** EnumOptions features */
35314
+ features?: (google.protobuf.IFeatureSet|null);
35315
+
31462
35316
  /** EnumOptions uninterpretedOption */
31463
35317
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
31464
35318
  }
@@ -31481,6 +35335,9 @@ export namespace google {
31481
35335
  /** EnumOptions deprecatedLegacyJsonFieldConflicts. */
31482
35336
  public deprecatedLegacyJsonFieldConflicts: boolean;
31483
35337
 
35338
+ /** EnumOptions features. */
35339
+ public features?: (google.protobuf.IFeatureSet|null);
35340
+
31484
35341
  /** EnumOptions uninterpretedOption. */
31485
35342
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
31486
35343
 
@@ -31568,6 +35425,12 @@ export namespace google {
31568
35425
  /** EnumValueOptions deprecated */
31569
35426
  deprecated?: (boolean|null);
31570
35427
 
35428
+ /** EnumValueOptions features */
35429
+ features?: (google.protobuf.IFeatureSet|null);
35430
+
35431
+ /** EnumValueOptions debugRedact */
35432
+ debugRedact?: (boolean|null);
35433
+
31571
35434
  /** EnumValueOptions uninterpretedOption */
31572
35435
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
31573
35436
  }
@@ -31584,6 +35447,12 @@ export namespace google {
31584
35447
  /** EnumValueOptions deprecated. */
31585
35448
  public deprecated: boolean;
31586
35449
 
35450
+ /** EnumValueOptions features. */
35451
+ public features?: (google.protobuf.IFeatureSet|null);
35452
+
35453
+ /** EnumValueOptions debugRedact. */
35454
+ public debugRedact: boolean;
35455
+
31587
35456
  /** EnumValueOptions uninterpretedOption. */
31588
35457
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
31589
35458
 
@@ -31668,6 +35537,9 @@ export namespace google {
31668
35537
  /** Properties of a ServiceOptions. */
31669
35538
  interface IServiceOptions {
31670
35539
 
35540
+ /** ServiceOptions features */
35541
+ features?: (google.protobuf.IFeatureSet|null);
35542
+
31671
35543
  /** ServiceOptions deprecated */
31672
35544
  deprecated?: (boolean|null);
31673
35545
 
@@ -31690,6 +35562,9 @@ export namespace google {
31690
35562
  */
31691
35563
  constructor(properties?: google.protobuf.IServiceOptions);
31692
35564
 
35565
+ /** ServiceOptions features. */
35566
+ public features?: (google.protobuf.IFeatureSet|null);
35567
+
31693
35568
  /** ServiceOptions deprecated. */
31694
35569
  public deprecated: boolean;
31695
35570
 
@@ -31783,6 +35658,9 @@ export namespace google {
31783
35658
  /** MethodOptions idempotencyLevel */
31784
35659
  idempotencyLevel?: (google.protobuf.MethodOptions.IdempotencyLevel|keyof typeof google.protobuf.MethodOptions.IdempotencyLevel|null);
31785
35660
 
35661
+ /** MethodOptions features */
35662
+ features?: (google.protobuf.IFeatureSet|null);
35663
+
31786
35664
  /** MethodOptions uninterpretedOption */
31787
35665
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
31788
35666
 
@@ -31808,6 +35686,9 @@ export namespace google {
31808
35686
  /** MethodOptions idempotencyLevel. */
31809
35687
  public idempotencyLevel: (google.protobuf.MethodOptions.IdempotencyLevel|keyof typeof google.protobuf.MethodOptions.IdempotencyLevel);
31810
35688
 
35689
+ /** MethodOptions features. */
35690
+ public features?: (google.protobuf.IFeatureSet|null);
35691
+
31811
35692
  /** MethodOptions uninterpretedOption. */
31812
35693
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
31813
35694
 
@@ -32138,6 +36019,186 @@ export namespace google {
32138
36019
  }
32139
36020
  }
32140
36021
 
36022
+ /** Properties of a FeatureSet. */
36023
+ interface IFeatureSet {
36024
+
36025
+ /** FeatureSet fieldPresence */
36026
+ fieldPresence?: (google.protobuf.FeatureSet.FieldPresence|keyof typeof google.protobuf.FeatureSet.FieldPresence|null);
36027
+
36028
+ /** FeatureSet enumType */
36029
+ enumType?: (google.protobuf.FeatureSet.EnumType|keyof typeof google.protobuf.FeatureSet.EnumType|null);
36030
+
36031
+ /** FeatureSet repeatedFieldEncoding */
36032
+ repeatedFieldEncoding?: (google.protobuf.FeatureSet.RepeatedFieldEncoding|keyof typeof google.protobuf.FeatureSet.RepeatedFieldEncoding|null);
36033
+
36034
+ /** FeatureSet stringFieldValidation */
36035
+ stringFieldValidation?: (google.protobuf.FeatureSet.StringFieldValidation|keyof typeof google.protobuf.FeatureSet.StringFieldValidation|null);
36036
+
36037
+ /** FeatureSet messageEncoding */
36038
+ messageEncoding?: (google.protobuf.FeatureSet.MessageEncoding|keyof typeof google.protobuf.FeatureSet.MessageEncoding|null);
36039
+
36040
+ /** FeatureSet jsonFormat */
36041
+ jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
36042
+
36043
+ /** FeatureSet rawFeatures */
36044
+ rawFeatures?: (google.protobuf.IFeatureSet|null);
36045
+ }
36046
+
36047
+ /** Represents a FeatureSet. */
36048
+ class FeatureSet implements IFeatureSet {
36049
+
36050
+ /**
36051
+ * Constructs a new FeatureSet.
36052
+ * @param [properties] Properties to set
36053
+ */
36054
+ constructor(properties?: google.protobuf.IFeatureSet);
36055
+
36056
+ /** FeatureSet fieldPresence. */
36057
+ public fieldPresence: (google.protobuf.FeatureSet.FieldPresence|keyof typeof google.protobuf.FeatureSet.FieldPresence);
36058
+
36059
+ /** FeatureSet enumType. */
36060
+ public enumType: (google.protobuf.FeatureSet.EnumType|keyof typeof google.protobuf.FeatureSet.EnumType);
36061
+
36062
+ /** FeatureSet repeatedFieldEncoding. */
36063
+ public repeatedFieldEncoding: (google.protobuf.FeatureSet.RepeatedFieldEncoding|keyof typeof google.protobuf.FeatureSet.RepeatedFieldEncoding);
36064
+
36065
+ /** FeatureSet stringFieldValidation. */
36066
+ public stringFieldValidation: (google.protobuf.FeatureSet.StringFieldValidation|keyof typeof google.protobuf.FeatureSet.StringFieldValidation);
36067
+
36068
+ /** FeatureSet messageEncoding. */
36069
+ public messageEncoding: (google.protobuf.FeatureSet.MessageEncoding|keyof typeof google.protobuf.FeatureSet.MessageEncoding);
36070
+
36071
+ /** FeatureSet jsonFormat. */
36072
+ public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
36073
+
36074
+ /** FeatureSet rawFeatures. */
36075
+ public rawFeatures?: (google.protobuf.IFeatureSet|null);
36076
+
36077
+ /**
36078
+ * Creates a new FeatureSet instance using the specified properties.
36079
+ * @param [properties] Properties to set
36080
+ * @returns FeatureSet instance
36081
+ */
36082
+ public static create(properties?: google.protobuf.IFeatureSet): google.protobuf.FeatureSet;
36083
+
36084
+ /**
36085
+ * Encodes the specified FeatureSet message. Does not implicitly {@link google.protobuf.FeatureSet.verify|verify} messages.
36086
+ * @param message FeatureSet message or plain object to encode
36087
+ * @param [writer] Writer to encode to
36088
+ * @returns Writer
36089
+ */
36090
+ public static encode(message: google.protobuf.IFeatureSet, writer?: $protobuf.Writer): $protobuf.Writer;
36091
+
36092
+ /**
36093
+ * Encodes the specified FeatureSet message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.verify|verify} messages.
36094
+ * @param message FeatureSet message or plain object to encode
36095
+ * @param [writer] Writer to encode to
36096
+ * @returns Writer
36097
+ */
36098
+ public static encodeDelimited(message: google.protobuf.IFeatureSet, writer?: $protobuf.Writer): $protobuf.Writer;
36099
+
36100
+ /**
36101
+ * Decodes a FeatureSet message from the specified reader or buffer.
36102
+ * @param reader Reader or buffer to decode from
36103
+ * @param [length] Message length if known beforehand
36104
+ * @returns FeatureSet
36105
+ * @throws {Error} If the payload is not a reader or valid buffer
36106
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
36107
+ */
36108
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet;
36109
+
36110
+ /**
36111
+ * Decodes a FeatureSet message from the specified reader or buffer, length delimited.
36112
+ * @param reader Reader or buffer to decode from
36113
+ * @returns FeatureSet
36114
+ * @throws {Error} If the payload is not a reader or valid buffer
36115
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
36116
+ */
36117
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet;
36118
+
36119
+ /**
36120
+ * Verifies a FeatureSet message.
36121
+ * @param message Plain object to verify
36122
+ * @returns `null` if valid, otherwise the reason why it is not
36123
+ */
36124
+ public static verify(message: { [k: string]: any }): (string|null);
36125
+
36126
+ /**
36127
+ * Creates a FeatureSet message from a plain object. Also converts values to their respective internal types.
36128
+ * @param object Plain object
36129
+ * @returns FeatureSet
36130
+ */
36131
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet;
36132
+
36133
+ /**
36134
+ * Creates a plain object from a FeatureSet message. Also converts values to other types if specified.
36135
+ * @param message FeatureSet
36136
+ * @param [options] Conversion options
36137
+ * @returns Plain object
36138
+ */
36139
+ public static toObject(message: google.protobuf.FeatureSet, options?: $protobuf.IConversionOptions): { [k: string]: any };
36140
+
36141
+ /**
36142
+ * Converts this FeatureSet to JSON.
36143
+ * @returns JSON object
36144
+ */
36145
+ public toJSON(): { [k: string]: any };
36146
+
36147
+ /**
36148
+ * Gets the default type url for FeatureSet
36149
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
36150
+ * @returns The default type url
36151
+ */
36152
+ public static getTypeUrl(typeUrlPrefix?: string): string;
36153
+ }
36154
+
36155
+ namespace FeatureSet {
36156
+
36157
+ /** FieldPresence enum. */
36158
+ enum FieldPresence {
36159
+ FIELD_PRESENCE_UNKNOWN = 0,
36160
+ EXPLICIT = 1,
36161
+ IMPLICIT = 2,
36162
+ LEGACY_REQUIRED = 3
36163
+ }
36164
+
36165
+ /** EnumType enum. */
36166
+ enum EnumType {
36167
+ ENUM_TYPE_UNKNOWN = 0,
36168
+ OPEN = 1,
36169
+ CLOSED = 2
36170
+ }
36171
+
36172
+ /** RepeatedFieldEncoding enum. */
36173
+ enum RepeatedFieldEncoding {
36174
+ REPEATED_FIELD_ENCODING_UNKNOWN = 0,
36175
+ PACKED = 1,
36176
+ EXPANDED = 2
36177
+ }
36178
+
36179
+ /** StringFieldValidation enum. */
36180
+ enum StringFieldValidation {
36181
+ STRING_FIELD_VALIDATION_UNKNOWN = 0,
36182
+ MANDATORY = 1,
36183
+ HINT = 2,
36184
+ NONE = 3
36185
+ }
36186
+
36187
+ /** MessageEncoding enum. */
36188
+ enum MessageEncoding {
36189
+ MESSAGE_ENCODING_UNKNOWN = 0,
36190
+ LENGTH_PREFIXED = 1,
36191
+ DELIMITED = 2
36192
+ }
36193
+
36194
+ /** JsonFormat enum. */
36195
+ enum JsonFormat {
36196
+ JSON_FORMAT_UNKNOWN = 0,
36197
+ ALLOW = 1,
36198
+ LEGACY_BEST_EFFORT = 2
36199
+ }
36200
+ }
36201
+
32141
36202
  /** Properties of a SourceCodeInfo. */
32142
36203
  interface ISourceCodeInfo {
32143
36204