@google-cloud/dlp 6.2.0 → 6.4.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.
@@ -2211,7 +2211,7 @@ export namespace google {
2211
2211
  type?: (google.privacy.dlp.v2.ByteContentItem.BytesType|keyof typeof google.privacy.dlp.v2.ByteContentItem.BytesType|null);
2212
2212
 
2213
2213
  /** ByteContentItem data */
2214
- data?: (Uint8Array|string|null);
2214
+ data?: (Uint8Array|Buffer|string|null);
2215
2215
  }
2216
2216
 
2217
2217
  /** Represents a ByteContentItem. */
@@ -2227,7 +2227,7 @@ export namespace google {
2227
2227
  public type: (google.privacy.dlp.v2.ByteContentItem.BytesType|keyof typeof google.privacy.dlp.v2.ByteContentItem.BytesType);
2228
2228
 
2229
2229
  /** ByteContentItem data. */
2230
- public data: (Uint8Array|string);
2230
+ public data: (Uint8Array|Buffer|string);
2231
2231
 
2232
2232
  /**
2233
2233
  * Creates a new ByteContentItem instance using the specified properties.
@@ -4479,7 +4479,7 @@ export namespace google {
4479
4479
  interface IRedactImageResponse {
4480
4480
 
4481
4481
  /** RedactImageResponse redactedImage */
4482
- redactedImage?: (Uint8Array|string|null);
4482
+ redactedImage?: (Uint8Array|Buffer|string|null);
4483
4483
 
4484
4484
  /** RedactImageResponse extractedText */
4485
4485
  extractedText?: (string|null);
@@ -4498,7 +4498,7 @@ export namespace google {
4498
4498
  constructor(properties?: google.privacy.dlp.v2.IRedactImageResponse);
4499
4499
 
4500
4500
  /** RedactImageResponse redactedImage. */
4501
- public redactedImage: (Uint8Array|string);
4501
+ public redactedImage: (Uint8Array|Buffer|string);
4502
4502
 
4503
4503
  /** RedactImageResponse extractedText. */
4504
4504
  public extractedText: string;
@@ -6471,6 +6471,119 @@ export namespace google {
6471
6471
  }
6472
6472
  }
6473
6473
 
6474
+ /** Properties of a LocationSupport. */
6475
+ interface ILocationSupport {
6476
+
6477
+ /** LocationSupport regionalizationScope */
6478
+ regionalizationScope?: (google.privacy.dlp.v2.LocationSupport.RegionalizationScope|keyof typeof google.privacy.dlp.v2.LocationSupport.RegionalizationScope|null);
6479
+
6480
+ /** LocationSupport locations */
6481
+ locations?: (string[]|null);
6482
+ }
6483
+
6484
+ /** Represents a LocationSupport. */
6485
+ class LocationSupport implements ILocationSupport {
6486
+
6487
+ /**
6488
+ * Constructs a new LocationSupport.
6489
+ * @param [properties] Properties to set
6490
+ */
6491
+ constructor(properties?: google.privacy.dlp.v2.ILocationSupport);
6492
+
6493
+ /** LocationSupport regionalizationScope. */
6494
+ public regionalizationScope: (google.privacy.dlp.v2.LocationSupport.RegionalizationScope|keyof typeof google.privacy.dlp.v2.LocationSupport.RegionalizationScope);
6495
+
6496
+ /** LocationSupport locations. */
6497
+ public locations: string[];
6498
+
6499
+ /**
6500
+ * Creates a new LocationSupport instance using the specified properties.
6501
+ * @param [properties] Properties to set
6502
+ * @returns LocationSupport instance
6503
+ */
6504
+ public static create(properties?: google.privacy.dlp.v2.ILocationSupport): google.privacy.dlp.v2.LocationSupport;
6505
+
6506
+ /**
6507
+ * Encodes the specified LocationSupport message. Does not implicitly {@link google.privacy.dlp.v2.LocationSupport.verify|verify} messages.
6508
+ * @param message LocationSupport message or plain object to encode
6509
+ * @param [writer] Writer to encode to
6510
+ * @returns Writer
6511
+ */
6512
+ public static encode(message: google.privacy.dlp.v2.ILocationSupport, writer?: $protobuf.Writer): $protobuf.Writer;
6513
+
6514
+ /**
6515
+ * Encodes the specified LocationSupport message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.LocationSupport.verify|verify} messages.
6516
+ * @param message LocationSupport message or plain object to encode
6517
+ * @param [writer] Writer to encode to
6518
+ * @returns Writer
6519
+ */
6520
+ public static encodeDelimited(message: google.privacy.dlp.v2.ILocationSupport, writer?: $protobuf.Writer): $protobuf.Writer;
6521
+
6522
+ /**
6523
+ * Decodes a LocationSupport message from the specified reader or buffer.
6524
+ * @param reader Reader or buffer to decode from
6525
+ * @param [length] Message length if known beforehand
6526
+ * @returns LocationSupport
6527
+ * @throws {Error} If the payload is not a reader or valid buffer
6528
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6529
+ */
6530
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.LocationSupport;
6531
+
6532
+ /**
6533
+ * Decodes a LocationSupport message from the specified reader or buffer, length delimited.
6534
+ * @param reader Reader or buffer to decode from
6535
+ * @returns LocationSupport
6536
+ * @throws {Error} If the payload is not a reader or valid buffer
6537
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6538
+ */
6539
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.LocationSupport;
6540
+
6541
+ /**
6542
+ * Verifies a LocationSupport message.
6543
+ * @param message Plain object to verify
6544
+ * @returns `null` if valid, otherwise the reason why it is not
6545
+ */
6546
+ public static verify(message: { [k: string]: any }): (string|null);
6547
+
6548
+ /**
6549
+ * Creates a LocationSupport message from a plain object. Also converts values to their respective internal types.
6550
+ * @param object Plain object
6551
+ * @returns LocationSupport
6552
+ */
6553
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.LocationSupport;
6554
+
6555
+ /**
6556
+ * Creates a plain object from a LocationSupport message. Also converts values to other types if specified.
6557
+ * @param message LocationSupport
6558
+ * @param [options] Conversion options
6559
+ * @returns Plain object
6560
+ */
6561
+ public static toObject(message: google.privacy.dlp.v2.LocationSupport, options?: $protobuf.IConversionOptions): { [k: string]: any };
6562
+
6563
+ /**
6564
+ * Converts this LocationSupport to JSON.
6565
+ * @returns JSON object
6566
+ */
6567
+ public toJSON(): { [k: string]: any };
6568
+
6569
+ /**
6570
+ * Gets the default type url for LocationSupport
6571
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6572
+ * @returns The default type url
6573
+ */
6574
+ public static getTypeUrl(typeUrlPrefix?: string): string;
6575
+ }
6576
+
6577
+ namespace LocationSupport {
6578
+
6579
+ /** RegionalizationScope enum. */
6580
+ enum RegionalizationScope {
6581
+ REGIONALIZATION_SCOPE_UNSPECIFIED = 0,
6582
+ REGIONAL = 1,
6583
+ ANY_LOCATION = 2
6584
+ }
6585
+ }
6586
+
6474
6587
  /** Properties of an InfoTypeDescription. */
6475
6588
  interface IInfoTypeDescription {
6476
6589
 
@@ -6486,6 +6599,9 @@ export namespace google {
6486
6599
  /** InfoTypeDescription description */
6487
6600
  description?: (string|null);
6488
6601
 
6602
+ /** InfoTypeDescription locationSupport */
6603
+ locationSupport?: (google.privacy.dlp.v2.ILocationSupport|null);
6604
+
6489
6605
  /** InfoTypeDescription example */
6490
6606
  example?: (string|null);
6491
6607
 
@@ -6523,6 +6639,9 @@ export namespace google {
6523
6639
  /** InfoTypeDescription description. */
6524
6640
  public description: string;
6525
6641
 
6642
+ /** InfoTypeDescription locationSupport. */
6643
+ public locationSupport?: (google.privacy.dlp.v2.ILocationSupport|null);
6644
+
6526
6645
  /** InfoTypeDescription example. */
6527
6646
  public example: string;
6528
6647
 
@@ -6737,6 +6856,7 @@ export namespace google {
6737
6856
  ARGENTINA = 2,
6738
6857
  ARMENIA = 51,
6739
6858
  AUSTRALIA = 3,
6859
+ AUSTRIA = 53,
6740
6860
  AZERBAIJAN = 48,
6741
6861
  BELARUS = 50,
6742
6862
  BELGIUM = 4,
@@ -13776,7 +13896,7 @@ export namespace google {
13776
13896
  interface IUnwrappedCryptoKey {
13777
13897
 
13778
13898
  /** UnwrappedCryptoKey key */
13779
- key?: (Uint8Array|string|null);
13899
+ key?: (Uint8Array|Buffer|string|null);
13780
13900
  }
13781
13901
 
13782
13902
  /** Represents an UnwrappedCryptoKey. */
@@ -13789,7 +13909,7 @@ export namespace google {
13789
13909
  constructor(properties?: google.privacy.dlp.v2.IUnwrappedCryptoKey);
13790
13910
 
13791
13911
  /** UnwrappedCryptoKey key. */
13792
- public key: (Uint8Array|string);
13912
+ public key: (Uint8Array|Buffer|string);
13793
13913
 
13794
13914
  /**
13795
13915
  * Creates a new UnwrappedCryptoKey instance using the specified properties.
@@ -13873,7 +13993,7 @@ export namespace google {
13873
13993
  interface IKmsWrappedCryptoKey {
13874
13994
 
13875
13995
  /** KmsWrappedCryptoKey wrappedKey */
13876
- wrappedKey?: (Uint8Array|string|null);
13996
+ wrappedKey?: (Uint8Array|Buffer|string|null);
13877
13997
 
13878
13998
  /** KmsWrappedCryptoKey cryptoKeyName */
13879
13999
  cryptoKeyName?: (string|null);
@@ -13889,7 +14009,7 @@ export namespace google {
13889
14009
  constructor(properties?: google.privacy.dlp.v2.IKmsWrappedCryptoKey);
13890
14010
 
13891
14011
  /** KmsWrappedCryptoKey wrappedKey. */
13892
- public wrappedKey: (Uint8Array|string);
14012
+ public wrappedKey: (Uint8Array|Buffer|string);
13893
14013
 
13894
14014
  /** KmsWrappedCryptoKey cryptoKeyName. */
13895
14015
  public cryptoKeyName: string;
@@ -32898,6 +33018,9 @@ export namespace google {
32898
33018
 
32899
33019
  /** TableDataProfile relatedResources */
32900
33020
  relatedResources?: (google.privacy.dlp.v2.IRelatedResource[]|null);
33021
+
33022
+ /** TableDataProfile domains */
33023
+ domains?: (google.privacy.dlp.v2.IDomain[]|null);
32901
33024
  }
32902
33025
 
32903
33026
  /** Represents a TableDataProfile. */
@@ -32996,6 +33119,9 @@ export namespace google {
32996
33119
  /** TableDataProfile relatedResources. */
32997
33120
  public relatedResources: google.privacy.dlp.v2.IRelatedResource[];
32998
33121
 
33122
+ /** TableDataProfile domains. */
33123
+ public domains: google.privacy.dlp.v2.IDomain[];
33124
+
32999
33125
  /**
33000
33126
  * Creates a new TableDataProfile instance using the specified properties.
33001
33127
  * @param [properties] Properties to set
@@ -33753,6 +33879,9 @@ export namespace google {
33753
33879
 
33754
33880
  /** FileStoreDataProfile relatedResources */
33755
33881
  relatedResources?: (google.privacy.dlp.v2.IRelatedResource[]|null);
33882
+
33883
+ /** FileStoreDataProfile domains */
33884
+ domains?: (google.privacy.dlp.v2.IDomain[]|null);
33756
33885
  }
33757
33886
 
33758
33887
  /** Represents a FileStoreDataProfile. */
@@ -33842,6 +33971,9 @@ export namespace google {
33842
33971
  /** FileStoreDataProfile relatedResources. */
33843
33972
  public relatedResources: google.privacy.dlp.v2.IRelatedResource[];
33844
33973
 
33974
+ /** FileStoreDataProfile domains. */
33975
+ public domains: google.privacy.dlp.v2.IDomain[];
33976
+
33845
33977
  /**
33846
33978
  * Creates a new FileStoreDataProfile instance using the specified properties.
33847
33979
  * @param [properties] Properties to set
@@ -37226,6 +37358,9 @@ export namespace google {
37226
37358
 
37227
37359
  /** ProcessingLocation imageFallbackLocation */
37228
37360
  imageFallbackLocation?: (google.privacy.dlp.v2.ProcessingLocation.IImageFallbackLocation|null);
37361
+
37362
+ /** ProcessingLocation documentFallbackLocation */
37363
+ documentFallbackLocation?: (google.privacy.dlp.v2.ProcessingLocation.IDocumentFallbackLocation|null);
37229
37364
  }
37230
37365
 
37231
37366
  /** Represents a ProcessingLocation. */
@@ -37240,6 +37375,9 @@ export namespace google {
37240
37375
  /** ProcessingLocation imageFallbackLocation. */
37241
37376
  public imageFallbackLocation?: (google.privacy.dlp.v2.ProcessingLocation.IImageFallbackLocation|null);
37242
37377
 
37378
+ /** ProcessingLocation documentFallbackLocation. */
37379
+ public documentFallbackLocation?: (google.privacy.dlp.v2.ProcessingLocation.IDocumentFallbackLocation|null);
37380
+
37243
37381
  /**
37244
37382
  * Creates a new ProcessingLocation instance using the specified properties.
37245
37383
  * @param [properties] Properties to set
@@ -37604,6 +37742,330 @@ export namespace google {
37604
37742
  */
37605
37743
  public static getTypeUrl(typeUrlPrefix?: string): string;
37606
37744
  }
37745
+
37746
+ /** Properties of a DocumentFallbackLocation. */
37747
+ interface IDocumentFallbackLocation {
37748
+
37749
+ /** DocumentFallbackLocation multiRegionProcessing */
37750
+ multiRegionProcessing?: (google.privacy.dlp.v2.ProcessingLocation.IMultiRegionProcessing|null);
37751
+
37752
+ /** DocumentFallbackLocation globalProcessing */
37753
+ globalProcessing?: (google.privacy.dlp.v2.ProcessingLocation.IGlobalProcessing|null);
37754
+ }
37755
+
37756
+ /** Represents a DocumentFallbackLocation. */
37757
+ class DocumentFallbackLocation implements IDocumentFallbackLocation {
37758
+
37759
+ /**
37760
+ * Constructs a new DocumentFallbackLocation.
37761
+ * @param [properties] Properties to set
37762
+ */
37763
+ constructor(properties?: google.privacy.dlp.v2.ProcessingLocation.IDocumentFallbackLocation);
37764
+
37765
+ /** DocumentFallbackLocation multiRegionProcessing. */
37766
+ public multiRegionProcessing?: (google.privacy.dlp.v2.ProcessingLocation.IMultiRegionProcessing|null);
37767
+
37768
+ /** DocumentFallbackLocation globalProcessing. */
37769
+ public globalProcessing?: (google.privacy.dlp.v2.ProcessingLocation.IGlobalProcessing|null);
37770
+
37771
+ /**
37772
+ * Creates a new DocumentFallbackLocation instance using the specified properties.
37773
+ * @param [properties] Properties to set
37774
+ * @returns DocumentFallbackLocation instance
37775
+ */
37776
+ public static create(properties?: google.privacy.dlp.v2.ProcessingLocation.IDocumentFallbackLocation): google.privacy.dlp.v2.ProcessingLocation.DocumentFallbackLocation;
37777
+
37778
+ /**
37779
+ * Encodes the specified DocumentFallbackLocation message. Does not implicitly {@link google.privacy.dlp.v2.ProcessingLocation.DocumentFallbackLocation.verify|verify} messages.
37780
+ * @param message DocumentFallbackLocation message or plain object to encode
37781
+ * @param [writer] Writer to encode to
37782
+ * @returns Writer
37783
+ */
37784
+ public static encode(message: google.privacy.dlp.v2.ProcessingLocation.IDocumentFallbackLocation, writer?: $protobuf.Writer): $protobuf.Writer;
37785
+
37786
+ /**
37787
+ * Encodes the specified DocumentFallbackLocation message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.ProcessingLocation.DocumentFallbackLocation.verify|verify} messages.
37788
+ * @param message DocumentFallbackLocation message or plain object to encode
37789
+ * @param [writer] Writer to encode to
37790
+ * @returns Writer
37791
+ */
37792
+ public static encodeDelimited(message: google.privacy.dlp.v2.ProcessingLocation.IDocumentFallbackLocation, writer?: $protobuf.Writer): $protobuf.Writer;
37793
+
37794
+ /**
37795
+ * Decodes a DocumentFallbackLocation message from the specified reader or buffer.
37796
+ * @param reader Reader or buffer to decode from
37797
+ * @param [length] Message length if known beforehand
37798
+ * @returns DocumentFallbackLocation
37799
+ * @throws {Error} If the payload is not a reader or valid buffer
37800
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
37801
+ */
37802
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.ProcessingLocation.DocumentFallbackLocation;
37803
+
37804
+ /**
37805
+ * Decodes a DocumentFallbackLocation message from the specified reader or buffer, length delimited.
37806
+ * @param reader Reader or buffer to decode from
37807
+ * @returns DocumentFallbackLocation
37808
+ * @throws {Error} If the payload is not a reader or valid buffer
37809
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
37810
+ */
37811
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.ProcessingLocation.DocumentFallbackLocation;
37812
+
37813
+ /**
37814
+ * Verifies a DocumentFallbackLocation message.
37815
+ * @param message Plain object to verify
37816
+ * @returns `null` if valid, otherwise the reason why it is not
37817
+ */
37818
+ public static verify(message: { [k: string]: any }): (string|null);
37819
+
37820
+ /**
37821
+ * Creates a DocumentFallbackLocation message from a plain object. Also converts values to their respective internal types.
37822
+ * @param object Plain object
37823
+ * @returns DocumentFallbackLocation
37824
+ */
37825
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.ProcessingLocation.DocumentFallbackLocation;
37826
+
37827
+ /**
37828
+ * Creates a plain object from a DocumentFallbackLocation message. Also converts values to other types if specified.
37829
+ * @param message DocumentFallbackLocation
37830
+ * @param [options] Conversion options
37831
+ * @returns Plain object
37832
+ */
37833
+ public static toObject(message: google.privacy.dlp.v2.ProcessingLocation.DocumentFallbackLocation, options?: $protobuf.IConversionOptions): { [k: string]: any };
37834
+
37835
+ /**
37836
+ * Converts this DocumentFallbackLocation to JSON.
37837
+ * @returns JSON object
37838
+ */
37839
+ public toJSON(): { [k: string]: any };
37840
+
37841
+ /**
37842
+ * Gets the default type url for DocumentFallbackLocation
37843
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
37844
+ * @returns The default type url
37845
+ */
37846
+ public static getTypeUrl(typeUrlPrefix?: string): string;
37847
+ }
37848
+ }
37849
+
37850
+ /** Properties of a SaveToGcsFindingsOutput. */
37851
+ interface ISaveToGcsFindingsOutput {
37852
+
37853
+ /** SaveToGcsFindingsOutput findings */
37854
+ findings?: (google.privacy.dlp.v2.IFinding[]|null);
37855
+ }
37856
+
37857
+ /** Represents a SaveToGcsFindingsOutput. */
37858
+ class SaveToGcsFindingsOutput implements ISaveToGcsFindingsOutput {
37859
+
37860
+ /**
37861
+ * Constructs a new SaveToGcsFindingsOutput.
37862
+ * @param [properties] Properties to set
37863
+ */
37864
+ constructor(properties?: google.privacy.dlp.v2.ISaveToGcsFindingsOutput);
37865
+
37866
+ /** SaveToGcsFindingsOutput findings. */
37867
+ public findings: google.privacy.dlp.v2.IFinding[];
37868
+
37869
+ /**
37870
+ * Creates a new SaveToGcsFindingsOutput instance using the specified properties.
37871
+ * @param [properties] Properties to set
37872
+ * @returns SaveToGcsFindingsOutput instance
37873
+ */
37874
+ public static create(properties?: google.privacy.dlp.v2.ISaveToGcsFindingsOutput): google.privacy.dlp.v2.SaveToGcsFindingsOutput;
37875
+
37876
+ /**
37877
+ * Encodes the specified SaveToGcsFindingsOutput message. Does not implicitly {@link google.privacy.dlp.v2.SaveToGcsFindingsOutput.verify|verify} messages.
37878
+ * @param message SaveToGcsFindingsOutput message or plain object to encode
37879
+ * @param [writer] Writer to encode to
37880
+ * @returns Writer
37881
+ */
37882
+ public static encode(message: google.privacy.dlp.v2.ISaveToGcsFindingsOutput, writer?: $protobuf.Writer): $protobuf.Writer;
37883
+
37884
+ /**
37885
+ * Encodes the specified SaveToGcsFindingsOutput message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.SaveToGcsFindingsOutput.verify|verify} messages.
37886
+ * @param message SaveToGcsFindingsOutput message or plain object to encode
37887
+ * @param [writer] Writer to encode to
37888
+ * @returns Writer
37889
+ */
37890
+ public static encodeDelimited(message: google.privacy.dlp.v2.ISaveToGcsFindingsOutput, writer?: $protobuf.Writer): $protobuf.Writer;
37891
+
37892
+ /**
37893
+ * Decodes a SaveToGcsFindingsOutput message from the specified reader or buffer.
37894
+ * @param reader Reader or buffer to decode from
37895
+ * @param [length] Message length if known beforehand
37896
+ * @returns SaveToGcsFindingsOutput
37897
+ * @throws {Error} If the payload is not a reader or valid buffer
37898
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
37899
+ */
37900
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.SaveToGcsFindingsOutput;
37901
+
37902
+ /**
37903
+ * Decodes a SaveToGcsFindingsOutput message from the specified reader or buffer, length delimited.
37904
+ * @param reader Reader or buffer to decode from
37905
+ * @returns SaveToGcsFindingsOutput
37906
+ * @throws {Error} If the payload is not a reader or valid buffer
37907
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
37908
+ */
37909
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.SaveToGcsFindingsOutput;
37910
+
37911
+ /**
37912
+ * Verifies a SaveToGcsFindingsOutput message.
37913
+ * @param message Plain object to verify
37914
+ * @returns `null` if valid, otherwise the reason why it is not
37915
+ */
37916
+ public static verify(message: { [k: string]: any }): (string|null);
37917
+
37918
+ /**
37919
+ * Creates a SaveToGcsFindingsOutput message from a plain object. Also converts values to their respective internal types.
37920
+ * @param object Plain object
37921
+ * @returns SaveToGcsFindingsOutput
37922
+ */
37923
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.SaveToGcsFindingsOutput;
37924
+
37925
+ /**
37926
+ * Creates a plain object from a SaveToGcsFindingsOutput message. Also converts values to other types if specified.
37927
+ * @param message SaveToGcsFindingsOutput
37928
+ * @param [options] Conversion options
37929
+ * @returns Plain object
37930
+ */
37931
+ public static toObject(message: google.privacy.dlp.v2.SaveToGcsFindingsOutput, options?: $protobuf.IConversionOptions): { [k: string]: any };
37932
+
37933
+ /**
37934
+ * Converts this SaveToGcsFindingsOutput to JSON.
37935
+ * @returns JSON object
37936
+ */
37937
+ public toJSON(): { [k: string]: any };
37938
+
37939
+ /**
37940
+ * Gets the default type url for SaveToGcsFindingsOutput
37941
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
37942
+ * @returns The default type url
37943
+ */
37944
+ public static getTypeUrl(typeUrlPrefix?: string): string;
37945
+ }
37946
+
37947
+ /** Properties of a Domain. */
37948
+ interface IDomain {
37949
+
37950
+ /** Domain category */
37951
+ category?: (google.privacy.dlp.v2.Domain.Category|keyof typeof google.privacy.dlp.v2.Domain.Category|null);
37952
+
37953
+ /** Domain signals */
37954
+ signals?: (google.privacy.dlp.v2.Domain.Signal[]|null);
37955
+ }
37956
+
37957
+ /** Represents a Domain. */
37958
+ class Domain implements IDomain {
37959
+
37960
+ /**
37961
+ * Constructs a new Domain.
37962
+ * @param [properties] Properties to set
37963
+ */
37964
+ constructor(properties?: google.privacy.dlp.v2.IDomain);
37965
+
37966
+ /** Domain category. */
37967
+ public category: (google.privacy.dlp.v2.Domain.Category|keyof typeof google.privacy.dlp.v2.Domain.Category);
37968
+
37969
+ /** Domain signals. */
37970
+ public signals: google.privacy.dlp.v2.Domain.Signal[];
37971
+
37972
+ /**
37973
+ * Creates a new Domain instance using the specified properties.
37974
+ * @param [properties] Properties to set
37975
+ * @returns Domain instance
37976
+ */
37977
+ public static create(properties?: google.privacy.dlp.v2.IDomain): google.privacy.dlp.v2.Domain;
37978
+
37979
+ /**
37980
+ * Encodes the specified Domain message. Does not implicitly {@link google.privacy.dlp.v2.Domain.verify|verify} messages.
37981
+ * @param message Domain message or plain object to encode
37982
+ * @param [writer] Writer to encode to
37983
+ * @returns Writer
37984
+ */
37985
+ public static encode(message: google.privacy.dlp.v2.IDomain, writer?: $protobuf.Writer): $protobuf.Writer;
37986
+
37987
+ /**
37988
+ * Encodes the specified Domain message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.Domain.verify|verify} messages.
37989
+ * @param message Domain message or plain object to encode
37990
+ * @param [writer] Writer to encode to
37991
+ * @returns Writer
37992
+ */
37993
+ public static encodeDelimited(message: google.privacy.dlp.v2.IDomain, writer?: $protobuf.Writer): $protobuf.Writer;
37994
+
37995
+ /**
37996
+ * Decodes a Domain message from the specified reader or buffer.
37997
+ * @param reader Reader or buffer to decode from
37998
+ * @param [length] Message length if known beforehand
37999
+ * @returns Domain
38000
+ * @throws {Error} If the payload is not a reader or valid buffer
38001
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
38002
+ */
38003
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.Domain;
38004
+
38005
+ /**
38006
+ * Decodes a Domain message from the specified reader or buffer, length delimited.
38007
+ * @param reader Reader or buffer to decode from
38008
+ * @returns Domain
38009
+ * @throws {Error} If the payload is not a reader or valid buffer
38010
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
38011
+ */
38012
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.Domain;
38013
+
38014
+ /**
38015
+ * Verifies a Domain message.
38016
+ * @param message Plain object to verify
38017
+ * @returns `null` if valid, otherwise the reason why it is not
38018
+ */
38019
+ public static verify(message: { [k: string]: any }): (string|null);
38020
+
38021
+ /**
38022
+ * Creates a Domain message from a plain object. Also converts values to their respective internal types.
38023
+ * @param object Plain object
38024
+ * @returns Domain
38025
+ */
38026
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.Domain;
38027
+
38028
+ /**
38029
+ * Creates a plain object from a Domain message. Also converts values to other types if specified.
38030
+ * @param message Domain
38031
+ * @param [options] Conversion options
38032
+ * @returns Plain object
38033
+ */
38034
+ public static toObject(message: google.privacy.dlp.v2.Domain, options?: $protobuf.IConversionOptions): { [k: string]: any };
38035
+
38036
+ /**
38037
+ * Converts this Domain to JSON.
38038
+ * @returns JSON object
38039
+ */
38040
+ public toJSON(): { [k: string]: any };
38041
+
38042
+ /**
38043
+ * Gets the default type url for Domain
38044
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
38045
+ * @returns The default type url
38046
+ */
38047
+ public static getTypeUrl(typeUrlPrefix?: string): string;
38048
+ }
38049
+
38050
+ namespace Domain {
38051
+
38052
+ /** Category enum. */
38053
+ enum Category {
38054
+ CATEGORY_UNSPECIFIED = 0,
38055
+ AI = 1,
38056
+ CODE = 2
38057
+ }
38058
+
38059
+ /** Signal enum. */
38060
+ enum Signal {
38061
+ SIGNAL_UNSPECIFIED = 0,
38062
+ MODEL = 1,
38063
+ TEXT_EMBEDDING = 2,
38064
+ VERTEX_PLUGIN = 3,
38065
+ VECTOR_PLUGIN = 4,
38066
+ SOURCE_CODE = 5,
38067
+ SERVICE = 6
38068
+ }
37607
38069
  }
37608
38070
 
37609
38071
  /** Properties of an InfoType. */
@@ -41792,6 +42254,9 @@ export namespace google {
41792
42254
 
41793
42255
  /** CommonLanguageSettings destinations */
41794
42256
  destinations?: (google.api.ClientLibraryDestination[]|null);
42257
+
42258
+ /** CommonLanguageSettings selectiveGapicGeneration */
42259
+ selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
41795
42260
  }
41796
42261
 
41797
42262
  /** Represents a CommonLanguageSettings. */
@@ -41809,6 +42274,9 @@ export namespace google {
41809
42274
  /** CommonLanguageSettings destinations. */
41810
42275
  public destinations: google.api.ClientLibraryDestination[];
41811
42276
 
42277
+ /** CommonLanguageSettings selectiveGapicGeneration. */
42278
+ public selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
42279
+
41812
42280
  /**
41813
42281
  * Creates a new CommonLanguageSettings instance using the specified properties.
41814
42282
  * @param [properties] Properties to set
@@ -42076,6 +42544,9 @@ export namespace google {
42076
42544
 
42077
42545
  /** Publishing protoReferenceDocumentationUri */
42078
42546
  protoReferenceDocumentationUri?: (string|null);
42547
+
42548
+ /** Publishing restReferenceDocumentationUri */
42549
+ restReferenceDocumentationUri?: (string|null);
42079
42550
  }
42080
42551
 
42081
42552
  /** Represents a Publishing. */
@@ -42117,6 +42588,9 @@ export namespace google {
42117
42588
  /** Publishing protoReferenceDocumentationUri. */
42118
42589
  public protoReferenceDocumentationUri: string;
42119
42590
 
42591
+ /** Publishing restReferenceDocumentationUri. */
42592
+ public restReferenceDocumentationUri: string;
42593
+
42120
42594
  /**
42121
42595
  * Creates a new Publishing instance using the specified properties.
42122
42596
  * @param [properties] Properties to set
@@ -42503,6 +42977,9 @@ export namespace google {
42503
42977
 
42504
42978
  /** PythonSettings common */
42505
42979
  common?: (google.api.ICommonLanguageSettings|null);
42980
+
42981
+ /** PythonSettings experimentalFeatures */
42982
+ experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
42506
42983
  }
42507
42984
 
42508
42985
  /** Represents a PythonSettings. */
@@ -42517,6 +42994,9 @@ export namespace google {
42517
42994
  /** PythonSettings common. */
42518
42995
  public common?: (google.api.ICommonLanguageSettings|null);
42519
42996
 
42997
+ /** PythonSettings experimentalFeatures. */
42998
+ public experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
42999
+
42520
43000
  /**
42521
43001
  * Creates a new PythonSettings instance using the specified properties.
42522
43002
  * @param [properties] Properties to set
@@ -42595,6 +43075,118 @@ export namespace google {
42595
43075
  public static getTypeUrl(typeUrlPrefix?: string): string;
42596
43076
  }
42597
43077
 
43078
+ namespace PythonSettings {
43079
+
43080
+ /** Properties of an ExperimentalFeatures. */
43081
+ interface IExperimentalFeatures {
43082
+
43083
+ /** ExperimentalFeatures restAsyncIoEnabled */
43084
+ restAsyncIoEnabled?: (boolean|null);
43085
+
43086
+ /** ExperimentalFeatures protobufPythonicTypesEnabled */
43087
+ protobufPythonicTypesEnabled?: (boolean|null);
43088
+
43089
+ /** ExperimentalFeatures unversionedPackageDisabled */
43090
+ unversionedPackageDisabled?: (boolean|null);
43091
+ }
43092
+
43093
+ /** Represents an ExperimentalFeatures. */
43094
+ class ExperimentalFeatures implements IExperimentalFeatures {
43095
+
43096
+ /**
43097
+ * Constructs a new ExperimentalFeatures.
43098
+ * @param [properties] Properties to set
43099
+ */
43100
+ constructor(properties?: google.api.PythonSettings.IExperimentalFeatures);
43101
+
43102
+ /** ExperimentalFeatures restAsyncIoEnabled. */
43103
+ public restAsyncIoEnabled: boolean;
43104
+
43105
+ /** ExperimentalFeatures protobufPythonicTypesEnabled. */
43106
+ public protobufPythonicTypesEnabled: boolean;
43107
+
43108
+ /** ExperimentalFeatures unversionedPackageDisabled. */
43109
+ public unversionedPackageDisabled: boolean;
43110
+
43111
+ /**
43112
+ * Creates a new ExperimentalFeatures instance using the specified properties.
43113
+ * @param [properties] Properties to set
43114
+ * @returns ExperimentalFeatures instance
43115
+ */
43116
+ public static create(properties?: google.api.PythonSettings.IExperimentalFeatures): google.api.PythonSettings.ExperimentalFeatures;
43117
+
43118
+ /**
43119
+ * Encodes the specified ExperimentalFeatures message. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
43120
+ * @param message ExperimentalFeatures message or plain object to encode
43121
+ * @param [writer] Writer to encode to
43122
+ * @returns Writer
43123
+ */
43124
+ public static encode(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
43125
+
43126
+ /**
43127
+ * Encodes the specified ExperimentalFeatures message, length delimited. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
43128
+ * @param message ExperimentalFeatures message or plain object to encode
43129
+ * @param [writer] Writer to encode to
43130
+ * @returns Writer
43131
+ */
43132
+ public static encodeDelimited(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
43133
+
43134
+ /**
43135
+ * Decodes an ExperimentalFeatures message from the specified reader or buffer.
43136
+ * @param reader Reader or buffer to decode from
43137
+ * @param [length] Message length if known beforehand
43138
+ * @returns ExperimentalFeatures
43139
+ * @throws {Error} If the payload is not a reader or valid buffer
43140
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
43141
+ */
43142
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings.ExperimentalFeatures;
43143
+
43144
+ /**
43145
+ * Decodes an ExperimentalFeatures message from the specified reader or buffer, length delimited.
43146
+ * @param reader Reader or buffer to decode from
43147
+ * @returns ExperimentalFeatures
43148
+ * @throws {Error} If the payload is not a reader or valid buffer
43149
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
43150
+ */
43151
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings.ExperimentalFeatures;
43152
+
43153
+ /**
43154
+ * Verifies an ExperimentalFeatures message.
43155
+ * @param message Plain object to verify
43156
+ * @returns `null` if valid, otherwise the reason why it is not
43157
+ */
43158
+ public static verify(message: { [k: string]: any }): (string|null);
43159
+
43160
+ /**
43161
+ * Creates an ExperimentalFeatures message from a plain object. Also converts values to their respective internal types.
43162
+ * @param object Plain object
43163
+ * @returns ExperimentalFeatures
43164
+ */
43165
+ public static fromObject(object: { [k: string]: any }): google.api.PythonSettings.ExperimentalFeatures;
43166
+
43167
+ /**
43168
+ * Creates a plain object from an ExperimentalFeatures message. Also converts values to other types if specified.
43169
+ * @param message ExperimentalFeatures
43170
+ * @param [options] Conversion options
43171
+ * @returns Plain object
43172
+ */
43173
+ public static toObject(message: google.api.PythonSettings.ExperimentalFeatures, options?: $protobuf.IConversionOptions): { [k: string]: any };
43174
+
43175
+ /**
43176
+ * Converts this ExperimentalFeatures to JSON.
43177
+ * @returns JSON object
43178
+ */
43179
+ public toJSON(): { [k: string]: any };
43180
+
43181
+ /**
43182
+ * Gets the default type url for ExperimentalFeatures
43183
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
43184
+ * @returns The default type url
43185
+ */
43186
+ public static getTypeUrl(typeUrlPrefix?: string): string;
43187
+ }
43188
+ }
43189
+
42598
43190
  /** Properties of a NodeSettings. */
42599
43191
  interface INodeSettings {
42600
43192
 
@@ -42921,6 +43513,9 @@ export namespace google {
42921
43513
 
42922
43514
  /** GoSettings common */
42923
43515
  common?: (google.api.ICommonLanguageSettings|null);
43516
+
43517
+ /** GoSettings renamedServices */
43518
+ renamedServices?: ({ [k: string]: string }|null);
42924
43519
  }
42925
43520
 
42926
43521
  /** Represents a GoSettings. */
@@ -42935,6 +43530,9 @@ export namespace google {
42935
43530
  /** GoSettings common. */
42936
43531
  public common?: (google.api.ICommonLanguageSettings|null);
42937
43532
 
43533
+ /** GoSettings renamedServices. */
43534
+ public renamedServices: { [k: string]: string };
43535
+
42938
43536
  /**
42939
43537
  * Creates a new GoSettings instance using the specified properties.
42940
43538
  * @param [properties] Properties to set
@@ -43259,6 +43857,109 @@ export namespace google {
43259
43857
  PACKAGE_MANAGER = 20
43260
43858
  }
43261
43859
 
43860
+ /** Properties of a SelectiveGapicGeneration. */
43861
+ interface ISelectiveGapicGeneration {
43862
+
43863
+ /** SelectiveGapicGeneration methods */
43864
+ methods?: (string[]|null);
43865
+
43866
+ /** SelectiveGapicGeneration generateOmittedAsInternal */
43867
+ generateOmittedAsInternal?: (boolean|null);
43868
+ }
43869
+
43870
+ /** Represents a SelectiveGapicGeneration. */
43871
+ class SelectiveGapicGeneration implements ISelectiveGapicGeneration {
43872
+
43873
+ /**
43874
+ * Constructs a new SelectiveGapicGeneration.
43875
+ * @param [properties] Properties to set
43876
+ */
43877
+ constructor(properties?: google.api.ISelectiveGapicGeneration);
43878
+
43879
+ /** SelectiveGapicGeneration methods. */
43880
+ public methods: string[];
43881
+
43882
+ /** SelectiveGapicGeneration generateOmittedAsInternal. */
43883
+ public generateOmittedAsInternal: boolean;
43884
+
43885
+ /**
43886
+ * Creates a new SelectiveGapicGeneration instance using the specified properties.
43887
+ * @param [properties] Properties to set
43888
+ * @returns SelectiveGapicGeneration instance
43889
+ */
43890
+ public static create(properties?: google.api.ISelectiveGapicGeneration): google.api.SelectiveGapicGeneration;
43891
+
43892
+ /**
43893
+ * Encodes the specified SelectiveGapicGeneration message. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
43894
+ * @param message SelectiveGapicGeneration message or plain object to encode
43895
+ * @param [writer] Writer to encode to
43896
+ * @returns Writer
43897
+ */
43898
+ public static encode(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
43899
+
43900
+ /**
43901
+ * Encodes the specified SelectiveGapicGeneration message, length delimited. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
43902
+ * @param message SelectiveGapicGeneration message or plain object to encode
43903
+ * @param [writer] Writer to encode to
43904
+ * @returns Writer
43905
+ */
43906
+ public static encodeDelimited(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
43907
+
43908
+ /**
43909
+ * Decodes a SelectiveGapicGeneration message from the specified reader or buffer.
43910
+ * @param reader Reader or buffer to decode from
43911
+ * @param [length] Message length if known beforehand
43912
+ * @returns SelectiveGapicGeneration
43913
+ * @throws {Error} If the payload is not a reader or valid buffer
43914
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
43915
+ */
43916
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.SelectiveGapicGeneration;
43917
+
43918
+ /**
43919
+ * Decodes a SelectiveGapicGeneration message from the specified reader or buffer, length delimited.
43920
+ * @param reader Reader or buffer to decode from
43921
+ * @returns SelectiveGapicGeneration
43922
+ * @throws {Error} If the payload is not a reader or valid buffer
43923
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
43924
+ */
43925
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.SelectiveGapicGeneration;
43926
+
43927
+ /**
43928
+ * Verifies a SelectiveGapicGeneration message.
43929
+ * @param message Plain object to verify
43930
+ * @returns `null` if valid, otherwise the reason why it is not
43931
+ */
43932
+ public static verify(message: { [k: string]: any }): (string|null);
43933
+
43934
+ /**
43935
+ * Creates a SelectiveGapicGeneration message from a plain object. Also converts values to their respective internal types.
43936
+ * @param object Plain object
43937
+ * @returns SelectiveGapicGeneration
43938
+ */
43939
+ public static fromObject(object: { [k: string]: any }): google.api.SelectiveGapicGeneration;
43940
+
43941
+ /**
43942
+ * Creates a plain object from a SelectiveGapicGeneration message. Also converts values to other types if specified.
43943
+ * @param message SelectiveGapicGeneration
43944
+ * @param [options] Conversion options
43945
+ * @returns Plain object
43946
+ */
43947
+ public static toObject(message: google.api.SelectiveGapicGeneration, options?: $protobuf.IConversionOptions): { [k: string]: any };
43948
+
43949
+ /**
43950
+ * Converts this SelectiveGapicGeneration to JSON.
43951
+ * @returns JSON object
43952
+ */
43953
+ public toJSON(): { [k: string]: any };
43954
+
43955
+ /**
43956
+ * Gets the default type url for SelectiveGapicGeneration
43957
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
43958
+ * @returns The default type url
43959
+ */
43960
+ public static getTypeUrl(typeUrlPrefix?: string): string;
43961
+ }
43962
+
43262
43963
  /** LaunchStage enum. */
43263
43964
  enum LaunchStage {
43264
43965
  LAUNCH_STAGE_UNSPECIFIED = 0,
@@ -43640,6 +44341,7 @@ export namespace google {
43640
44341
  /** Edition enum. */
43641
44342
  enum Edition {
43642
44343
  EDITION_UNKNOWN = 0,
44344
+ EDITION_LEGACY = 900,
43643
44345
  EDITION_PROTO2 = 998,
43644
44346
  EDITION_PROTO3 = 999,
43645
44347
  EDITION_2023 = 1000,
@@ -43670,6 +44372,9 @@ export namespace google {
43670
44372
  /** FileDescriptorProto weakDependency */
43671
44373
  weakDependency?: (number[]|null);
43672
44374
 
44375
+ /** FileDescriptorProto optionDependency */
44376
+ optionDependency?: (string[]|null);
44377
+
43673
44378
  /** FileDescriptorProto messageType */
43674
44379
  messageType?: (google.protobuf.IDescriptorProto[]|null);
43675
44380
 
@@ -43719,6 +44424,9 @@ export namespace google {
43719
44424
  /** FileDescriptorProto weakDependency. */
43720
44425
  public weakDependency: number[];
43721
44426
 
44427
+ /** FileDescriptorProto optionDependency. */
44428
+ public optionDependency: string[];
44429
+
43722
44430
  /** FileDescriptorProto messageType. */
43723
44431
  public messageType: google.protobuf.IDescriptorProto[];
43724
44432
 
@@ -43853,6 +44561,9 @@ export namespace google {
43853
44561
 
43854
44562
  /** DescriptorProto reservedName */
43855
44563
  reservedName?: (string[]|null);
44564
+
44565
+ /** DescriptorProto visibility */
44566
+ visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
43856
44567
  }
43857
44568
 
43858
44569
  /** Represents a DescriptorProto. */
@@ -43894,6 +44605,9 @@ export namespace google {
43894
44605
  /** DescriptorProto reservedName. */
43895
44606
  public reservedName: string[];
43896
44607
 
44608
+ /** DescriptorProto visibility. */
44609
+ public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
44610
+
43897
44611
  /**
43898
44612
  * Creates a new DescriptorProto instance using the specified properties.
43899
44613
  * @param [properties] Properties to set
@@ -44741,6 +45455,9 @@ export namespace google {
44741
45455
 
44742
45456
  /** EnumDescriptorProto reservedName */
44743
45457
  reservedName?: (string[]|null);
45458
+
45459
+ /** EnumDescriptorProto visibility */
45460
+ visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
44744
45461
  }
44745
45462
 
44746
45463
  /** Represents an EnumDescriptorProto. */
@@ -44767,6 +45484,9 @@ export namespace google {
44767
45484
  /** EnumDescriptorProto reservedName. */
44768
45485
  public reservedName: string[];
44769
45486
 
45487
+ /** EnumDescriptorProto visibility. */
45488
+ public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
45489
+
44770
45490
  /**
44771
45491
  * Creates a new EnumDescriptorProto instance using the specified properties.
44772
45492
  * @param [properties] Properties to set
@@ -45701,6 +46421,9 @@ export namespace google {
45701
46421
  /** FieldOptions features */
45702
46422
  features?: (google.protobuf.IFeatureSet|null);
45703
46423
 
46424
+ /** FieldOptions featureSupport */
46425
+ featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
46426
+
45704
46427
  /** FieldOptions uninterpretedOption */
45705
46428
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
45706
46429
 
@@ -45756,6 +46479,9 @@ export namespace google {
45756
46479
  /** FieldOptions features. */
45757
46480
  public features?: (google.protobuf.IFeatureSet|null);
45758
46481
 
46482
+ /** FieldOptions featureSupport. */
46483
+ public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
46484
+
45759
46485
  /** FieldOptions uninterpretedOption. */
45760
46486
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
45761
46487
 
@@ -45976,6 +46702,121 @@ export namespace google {
45976
46702
  */
45977
46703
  public static getTypeUrl(typeUrlPrefix?: string): string;
45978
46704
  }
46705
+
46706
+ /** Properties of a FeatureSupport. */
46707
+ interface IFeatureSupport {
46708
+
46709
+ /** FeatureSupport editionIntroduced */
46710
+ editionIntroduced?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
46711
+
46712
+ /** FeatureSupport editionDeprecated */
46713
+ editionDeprecated?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
46714
+
46715
+ /** FeatureSupport deprecationWarning */
46716
+ deprecationWarning?: (string|null);
46717
+
46718
+ /** FeatureSupport editionRemoved */
46719
+ editionRemoved?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
46720
+ }
46721
+
46722
+ /** Represents a FeatureSupport. */
46723
+ class FeatureSupport implements IFeatureSupport {
46724
+
46725
+ /**
46726
+ * Constructs a new FeatureSupport.
46727
+ * @param [properties] Properties to set
46728
+ */
46729
+ constructor(properties?: google.protobuf.FieldOptions.IFeatureSupport);
46730
+
46731
+ /** FeatureSupport editionIntroduced. */
46732
+ public editionIntroduced: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
46733
+
46734
+ /** FeatureSupport editionDeprecated. */
46735
+ public editionDeprecated: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
46736
+
46737
+ /** FeatureSupport deprecationWarning. */
46738
+ public deprecationWarning: string;
46739
+
46740
+ /** FeatureSupport editionRemoved. */
46741
+ public editionRemoved: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
46742
+
46743
+ /**
46744
+ * Creates a new FeatureSupport instance using the specified properties.
46745
+ * @param [properties] Properties to set
46746
+ * @returns FeatureSupport instance
46747
+ */
46748
+ public static create(properties?: google.protobuf.FieldOptions.IFeatureSupport): google.protobuf.FieldOptions.FeatureSupport;
46749
+
46750
+ /**
46751
+ * Encodes the specified FeatureSupport message. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
46752
+ * @param message FeatureSupport message or plain object to encode
46753
+ * @param [writer] Writer to encode to
46754
+ * @returns Writer
46755
+ */
46756
+ public static encode(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
46757
+
46758
+ /**
46759
+ * Encodes the specified FeatureSupport message, length delimited. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
46760
+ * @param message FeatureSupport message or plain object to encode
46761
+ * @param [writer] Writer to encode to
46762
+ * @returns Writer
46763
+ */
46764
+ public static encodeDelimited(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
46765
+
46766
+ /**
46767
+ * Decodes a FeatureSupport message from the specified reader or buffer.
46768
+ * @param reader Reader or buffer to decode from
46769
+ * @param [length] Message length if known beforehand
46770
+ * @returns FeatureSupport
46771
+ * @throws {Error} If the payload is not a reader or valid buffer
46772
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
46773
+ */
46774
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions.FeatureSupport;
46775
+
46776
+ /**
46777
+ * Decodes a FeatureSupport message from the specified reader or buffer, length delimited.
46778
+ * @param reader Reader or buffer to decode from
46779
+ * @returns FeatureSupport
46780
+ * @throws {Error} If the payload is not a reader or valid buffer
46781
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
46782
+ */
46783
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions.FeatureSupport;
46784
+
46785
+ /**
46786
+ * Verifies a FeatureSupport message.
46787
+ * @param message Plain object to verify
46788
+ * @returns `null` if valid, otherwise the reason why it is not
46789
+ */
46790
+ public static verify(message: { [k: string]: any }): (string|null);
46791
+
46792
+ /**
46793
+ * Creates a FeatureSupport message from a plain object. Also converts values to their respective internal types.
46794
+ * @param object Plain object
46795
+ * @returns FeatureSupport
46796
+ */
46797
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.FeatureSupport;
46798
+
46799
+ /**
46800
+ * Creates a plain object from a FeatureSupport message. Also converts values to other types if specified.
46801
+ * @param message FeatureSupport
46802
+ * @param [options] Conversion options
46803
+ * @returns Plain object
46804
+ */
46805
+ public static toObject(message: google.protobuf.FieldOptions.FeatureSupport, options?: $protobuf.IConversionOptions): { [k: string]: any };
46806
+
46807
+ /**
46808
+ * Converts this FeatureSupport to JSON.
46809
+ * @returns JSON object
46810
+ */
46811
+ public toJSON(): { [k: string]: any };
46812
+
46813
+ /**
46814
+ * Gets the default type url for FeatureSupport
46815
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
46816
+ * @returns The default type url
46817
+ */
46818
+ public static getTypeUrl(typeUrlPrefix?: string): string;
46819
+ }
45979
46820
  }
45980
46821
 
45981
46822
  /** Properties of an OneofOptions. */
@@ -46214,6 +47055,9 @@ export namespace google {
46214
47055
  /** EnumValueOptions debugRedact */
46215
47056
  debugRedact?: (boolean|null);
46216
47057
 
47058
+ /** EnumValueOptions featureSupport */
47059
+ featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
47060
+
46217
47061
  /** EnumValueOptions uninterpretedOption */
46218
47062
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
46219
47063
  }
@@ -46236,6 +47080,9 @@ export namespace google {
46236
47080
  /** EnumValueOptions debugRedact. */
46237
47081
  public debugRedact: boolean;
46238
47082
 
47083
+ /** EnumValueOptions featureSupport. */
47084
+ public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
47085
+
46239
47086
  /** EnumValueOptions uninterpretedOption. */
46240
47087
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
46241
47088
 
@@ -46334,6 +47181,9 @@ export namespace google {
46334
47181
 
46335
47182
  /** ServiceOptions .google.api.oauthScopes */
46336
47183
  ".google.api.oauthScopes"?: (string|null);
47184
+
47185
+ /** ServiceOptions .google.api.apiVersion */
47186
+ ".google.api.apiVersion"?: (string|null);
46337
47187
  }
46338
47188
 
46339
47189
  /** Represents a ServiceOptions. */
@@ -46582,7 +47432,7 @@ export namespace google {
46582
47432
  doubleValue?: (number|null);
46583
47433
 
46584
47434
  /** UninterpretedOption stringValue */
46585
- stringValue?: (Uint8Array|string|null);
47435
+ stringValue?: (Uint8Array|Buffer|string|null);
46586
47436
 
46587
47437
  /** UninterpretedOption aggregateValue */
46588
47438
  aggregateValue?: (string|null);
@@ -46613,7 +47463,7 @@ export namespace google {
46613
47463
  public doubleValue: number;
46614
47464
 
46615
47465
  /** UninterpretedOption stringValue. */
46616
- public stringValue: (Uint8Array|string);
47466
+ public stringValue: (Uint8Array|Buffer|string);
46617
47467
 
46618
47468
  /** UninterpretedOption aggregateValue. */
46619
47469
  public aggregateValue: string;
@@ -46822,6 +47672,12 @@ export namespace google {
46822
47672
 
46823
47673
  /** FeatureSet jsonFormat */
46824
47674
  jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
47675
+
47676
+ /** FeatureSet enforceNamingStyle */
47677
+ enforceNamingStyle?: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle|null);
47678
+
47679
+ /** FeatureSet defaultSymbolVisibility */
47680
+ defaultSymbolVisibility?: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|null);
46825
47681
  }
46826
47682
 
46827
47683
  /** Represents a FeatureSet. */
@@ -46851,6 +47707,12 @@ export namespace google {
46851
47707
  /** FeatureSet jsonFormat. */
46852
47708
  public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
46853
47709
 
47710
+ /** FeatureSet enforceNamingStyle. */
47711
+ public enforceNamingStyle: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle);
47712
+
47713
+ /** FeatureSet defaultSymbolVisibility. */
47714
+ public defaultSymbolVisibility: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility);
47715
+
46854
47716
  /**
46855
47717
  * Creates a new FeatureSet instance using the specified properties.
46856
47718
  * @param [properties] Properties to set
@@ -46973,6 +47835,116 @@ export namespace google {
46973
47835
  ALLOW = 1,
46974
47836
  LEGACY_BEST_EFFORT = 2
46975
47837
  }
47838
+
47839
+ /** EnforceNamingStyle enum. */
47840
+ enum EnforceNamingStyle {
47841
+ ENFORCE_NAMING_STYLE_UNKNOWN = 0,
47842
+ STYLE2024 = 1,
47843
+ STYLE_LEGACY = 2
47844
+ }
47845
+
47846
+ /** Properties of a VisibilityFeature. */
47847
+ interface IVisibilityFeature {
47848
+ }
47849
+
47850
+ /** Represents a VisibilityFeature. */
47851
+ class VisibilityFeature implements IVisibilityFeature {
47852
+
47853
+ /**
47854
+ * Constructs a new VisibilityFeature.
47855
+ * @param [properties] Properties to set
47856
+ */
47857
+ constructor(properties?: google.protobuf.FeatureSet.IVisibilityFeature);
47858
+
47859
+ /**
47860
+ * Creates a new VisibilityFeature instance using the specified properties.
47861
+ * @param [properties] Properties to set
47862
+ * @returns VisibilityFeature instance
47863
+ */
47864
+ public static create(properties?: google.protobuf.FeatureSet.IVisibilityFeature): google.protobuf.FeatureSet.VisibilityFeature;
47865
+
47866
+ /**
47867
+ * Encodes the specified VisibilityFeature message. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
47868
+ * @param message VisibilityFeature message or plain object to encode
47869
+ * @param [writer] Writer to encode to
47870
+ * @returns Writer
47871
+ */
47872
+ public static encode(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
47873
+
47874
+ /**
47875
+ * Encodes the specified VisibilityFeature message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
47876
+ * @param message VisibilityFeature message or plain object to encode
47877
+ * @param [writer] Writer to encode to
47878
+ * @returns Writer
47879
+ */
47880
+ public static encodeDelimited(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
47881
+
47882
+ /**
47883
+ * Decodes a VisibilityFeature message from the specified reader or buffer.
47884
+ * @param reader Reader or buffer to decode from
47885
+ * @param [length] Message length if known beforehand
47886
+ * @returns VisibilityFeature
47887
+ * @throws {Error} If the payload is not a reader or valid buffer
47888
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
47889
+ */
47890
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet.VisibilityFeature;
47891
+
47892
+ /**
47893
+ * Decodes a VisibilityFeature message from the specified reader or buffer, length delimited.
47894
+ * @param reader Reader or buffer to decode from
47895
+ * @returns VisibilityFeature
47896
+ * @throws {Error} If the payload is not a reader or valid buffer
47897
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
47898
+ */
47899
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet.VisibilityFeature;
47900
+
47901
+ /**
47902
+ * Verifies a VisibilityFeature message.
47903
+ * @param message Plain object to verify
47904
+ * @returns `null` if valid, otherwise the reason why it is not
47905
+ */
47906
+ public static verify(message: { [k: string]: any }): (string|null);
47907
+
47908
+ /**
47909
+ * Creates a VisibilityFeature message from a plain object. Also converts values to their respective internal types.
47910
+ * @param object Plain object
47911
+ * @returns VisibilityFeature
47912
+ */
47913
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet.VisibilityFeature;
47914
+
47915
+ /**
47916
+ * Creates a plain object from a VisibilityFeature message. Also converts values to other types if specified.
47917
+ * @param message VisibilityFeature
47918
+ * @param [options] Conversion options
47919
+ * @returns Plain object
47920
+ */
47921
+ public static toObject(message: google.protobuf.FeatureSet.VisibilityFeature, options?: $protobuf.IConversionOptions): { [k: string]: any };
47922
+
47923
+ /**
47924
+ * Converts this VisibilityFeature to JSON.
47925
+ * @returns JSON object
47926
+ */
47927
+ public toJSON(): { [k: string]: any };
47928
+
47929
+ /**
47930
+ * Gets the default type url for VisibilityFeature
47931
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
47932
+ * @returns The default type url
47933
+ */
47934
+ public static getTypeUrl(typeUrlPrefix?: string): string;
47935
+ }
47936
+
47937
+ namespace VisibilityFeature {
47938
+
47939
+ /** DefaultSymbolVisibility enum. */
47940
+ enum DefaultSymbolVisibility {
47941
+ DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0,
47942
+ EXPORT_ALL = 1,
47943
+ EXPORT_TOP_LEVEL = 2,
47944
+ LOCAL_ALL = 3,
47945
+ STRICT = 4
47946
+ }
47947
+ }
46976
47948
  }
46977
47949
 
46978
47950
  /** Properties of a FeatureSetDefaults. */
@@ -47092,8 +48064,11 @@ export namespace google {
47092
48064
  /** FeatureSetEditionDefault edition */
47093
48065
  edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
47094
48066
 
47095
- /** FeatureSetEditionDefault features */
47096
- features?: (google.protobuf.IFeatureSet|null);
48067
+ /** FeatureSetEditionDefault overridableFeatures */
48068
+ overridableFeatures?: (google.protobuf.IFeatureSet|null);
48069
+
48070
+ /** FeatureSetEditionDefault fixedFeatures */
48071
+ fixedFeatures?: (google.protobuf.IFeatureSet|null);
47097
48072
  }
47098
48073
 
47099
48074
  /** Represents a FeatureSetEditionDefault. */
@@ -47108,8 +48083,11 @@ export namespace google {
47108
48083
  /** FeatureSetEditionDefault edition. */
47109
48084
  public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
47110
48085
 
47111
- /** FeatureSetEditionDefault features. */
47112
- public features?: (google.protobuf.IFeatureSet|null);
48086
+ /** FeatureSetEditionDefault overridableFeatures. */
48087
+ public overridableFeatures?: (google.protobuf.IFeatureSet|null);
48088
+
48089
+ /** FeatureSetEditionDefault fixedFeatures. */
48090
+ public fixedFeatures?: (google.protobuf.IFeatureSet|null);
47113
48091
 
47114
48092
  /**
47115
48093
  * Creates a new FeatureSetEditionDefault instance using the specified properties.
@@ -47642,6 +48620,13 @@ export namespace google {
47642
48620
  }
47643
48621
  }
47644
48622
 
48623
+ /** SymbolVisibility enum. */
48624
+ enum SymbolVisibility {
48625
+ VISIBILITY_UNSET = 0,
48626
+ VISIBILITY_LOCAL = 1,
48627
+ VISIBILITY_EXPORT = 2
48628
+ }
48629
+
47645
48630
  /** Properties of a Duration. */
47646
48631
  interface IDuration {
47647
48632
 
@@ -48043,7 +49028,7 @@ export namespace google {
48043
49028
  type_url?: (string|null);
48044
49029
 
48045
49030
  /** Any value */
48046
- value?: (Uint8Array|string|null);
49031
+ value?: (Uint8Array|Buffer|string|null);
48047
49032
  }
48048
49033
 
48049
49034
  /** Represents an Any. */
@@ -48059,7 +49044,7 @@ export namespace google {
48059
49044
  public type_url: string;
48060
49045
 
48061
49046
  /** Any value. */
48062
- public value: (Uint8Array|string);
49047
+ public value: (Uint8Array|Buffer|string);
48063
49048
 
48064
49049
  /**
48065
49050
  * Creates a new Any instance using the specified properties.