@google-cloud/dlp 6.3.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.
- package/build/protos/google/privacy/dlp/v2/dlp.proto +127 -19
- package/build/protos/protos.d.ts +883 -4
- package/build/protos/protos.js +2732 -22
- package/build/protos/protos.json +279 -22
- package/build/src/v2/dlp_service_client.d.ts +6 -0
- package/build/src/v2/dlp_service_client.js +4 -0
- package/package.json +1 -1
package/build/protos/protos.d.ts
CHANGED
|
@@ -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,
|
|
@@ -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,109 @@ 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
|
+
}
|
|
37607
37848
|
}
|
|
37608
37849
|
|
|
37609
37850
|
/** Properties of a SaveToGcsFindingsOutput. */
|
|
@@ -37703,6 +37944,130 @@ export namespace google {
|
|
|
37703
37944
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
37704
37945
|
}
|
|
37705
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
|
+
}
|
|
38069
|
+
}
|
|
38070
|
+
|
|
37706
38071
|
/** Properties of an InfoType. */
|
|
37707
38072
|
interface IInfoType {
|
|
37708
38073
|
|
|
@@ -41889,6 +42254,9 @@ export namespace google {
|
|
|
41889
42254
|
|
|
41890
42255
|
/** CommonLanguageSettings destinations */
|
|
41891
42256
|
destinations?: (google.api.ClientLibraryDestination[]|null);
|
|
42257
|
+
|
|
42258
|
+
/** CommonLanguageSettings selectiveGapicGeneration */
|
|
42259
|
+
selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
|
|
41892
42260
|
}
|
|
41893
42261
|
|
|
41894
42262
|
/** Represents a CommonLanguageSettings. */
|
|
@@ -41906,6 +42274,9 @@ export namespace google {
|
|
|
41906
42274
|
/** CommonLanguageSettings destinations. */
|
|
41907
42275
|
public destinations: google.api.ClientLibraryDestination[];
|
|
41908
42276
|
|
|
42277
|
+
/** CommonLanguageSettings selectiveGapicGeneration. */
|
|
42278
|
+
public selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
|
|
42279
|
+
|
|
41909
42280
|
/**
|
|
41910
42281
|
* Creates a new CommonLanguageSettings instance using the specified properties.
|
|
41911
42282
|
* @param [properties] Properties to set
|
|
@@ -42606,6 +42977,9 @@ export namespace google {
|
|
|
42606
42977
|
|
|
42607
42978
|
/** PythonSettings common */
|
|
42608
42979
|
common?: (google.api.ICommonLanguageSettings|null);
|
|
42980
|
+
|
|
42981
|
+
/** PythonSettings experimentalFeatures */
|
|
42982
|
+
experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
|
|
42609
42983
|
}
|
|
42610
42984
|
|
|
42611
42985
|
/** Represents a PythonSettings. */
|
|
@@ -42620,6 +42994,9 @@ export namespace google {
|
|
|
42620
42994
|
/** PythonSettings common. */
|
|
42621
42995
|
public common?: (google.api.ICommonLanguageSettings|null);
|
|
42622
42996
|
|
|
42997
|
+
/** PythonSettings experimentalFeatures. */
|
|
42998
|
+
public experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
|
|
42999
|
+
|
|
42623
43000
|
/**
|
|
42624
43001
|
* Creates a new PythonSettings instance using the specified properties.
|
|
42625
43002
|
* @param [properties] Properties to set
|
|
@@ -42698,6 +43075,118 @@ export namespace google {
|
|
|
42698
43075
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
42699
43076
|
}
|
|
42700
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
|
+
|
|
42701
43190
|
/** Properties of a NodeSettings. */
|
|
42702
43191
|
interface INodeSettings {
|
|
42703
43192
|
|
|
@@ -43024,6 +43513,9 @@ export namespace google {
|
|
|
43024
43513
|
|
|
43025
43514
|
/** GoSettings common */
|
|
43026
43515
|
common?: (google.api.ICommonLanguageSettings|null);
|
|
43516
|
+
|
|
43517
|
+
/** GoSettings renamedServices */
|
|
43518
|
+
renamedServices?: ({ [k: string]: string }|null);
|
|
43027
43519
|
}
|
|
43028
43520
|
|
|
43029
43521
|
/** Represents a GoSettings. */
|
|
@@ -43038,6 +43530,9 @@ export namespace google {
|
|
|
43038
43530
|
/** GoSettings common. */
|
|
43039
43531
|
public common?: (google.api.ICommonLanguageSettings|null);
|
|
43040
43532
|
|
|
43533
|
+
/** GoSettings renamedServices. */
|
|
43534
|
+
public renamedServices: { [k: string]: string };
|
|
43535
|
+
|
|
43041
43536
|
/**
|
|
43042
43537
|
* Creates a new GoSettings instance using the specified properties.
|
|
43043
43538
|
* @param [properties] Properties to set
|
|
@@ -43362,6 +43857,109 @@ export namespace google {
|
|
|
43362
43857
|
PACKAGE_MANAGER = 20
|
|
43363
43858
|
}
|
|
43364
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
|
+
|
|
43365
43963
|
/** LaunchStage enum. */
|
|
43366
43964
|
enum LaunchStage {
|
|
43367
43965
|
LAUNCH_STAGE_UNSPECIFIED = 0,
|
|
@@ -43743,6 +44341,7 @@ export namespace google {
|
|
|
43743
44341
|
/** Edition enum. */
|
|
43744
44342
|
enum Edition {
|
|
43745
44343
|
EDITION_UNKNOWN = 0,
|
|
44344
|
+
EDITION_LEGACY = 900,
|
|
43746
44345
|
EDITION_PROTO2 = 998,
|
|
43747
44346
|
EDITION_PROTO3 = 999,
|
|
43748
44347
|
EDITION_2023 = 1000,
|
|
@@ -43773,6 +44372,9 @@ export namespace google {
|
|
|
43773
44372
|
/** FileDescriptorProto weakDependency */
|
|
43774
44373
|
weakDependency?: (number[]|null);
|
|
43775
44374
|
|
|
44375
|
+
/** FileDescriptorProto optionDependency */
|
|
44376
|
+
optionDependency?: (string[]|null);
|
|
44377
|
+
|
|
43776
44378
|
/** FileDescriptorProto messageType */
|
|
43777
44379
|
messageType?: (google.protobuf.IDescriptorProto[]|null);
|
|
43778
44380
|
|
|
@@ -43822,6 +44424,9 @@ export namespace google {
|
|
|
43822
44424
|
/** FileDescriptorProto weakDependency. */
|
|
43823
44425
|
public weakDependency: number[];
|
|
43824
44426
|
|
|
44427
|
+
/** FileDescriptorProto optionDependency. */
|
|
44428
|
+
public optionDependency: string[];
|
|
44429
|
+
|
|
43825
44430
|
/** FileDescriptorProto messageType. */
|
|
43826
44431
|
public messageType: google.protobuf.IDescriptorProto[];
|
|
43827
44432
|
|
|
@@ -43956,6 +44561,9 @@ export namespace google {
|
|
|
43956
44561
|
|
|
43957
44562
|
/** DescriptorProto reservedName */
|
|
43958
44563
|
reservedName?: (string[]|null);
|
|
44564
|
+
|
|
44565
|
+
/** DescriptorProto visibility */
|
|
44566
|
+
visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
|
|
43959
44567
|
}
|
|
43960
44568
|
|
|
43961
44569
|
/** Represents a DescriptorProto. */
|
|
@@ -43997,6 +44605,9 @@ export namespace google {
|
|
|
43997
44605
|
/** DescriptorProto reservedName. */
|
|
43998
44606
|
public reservedName: string[];
|
|
43999
44607
|
|
|
44608
|
+
/** DescriptorProto visibility. */
|
|
44609
|
+
public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
|
|
44610
|
+
|
|
44000
44611
|
/**
|
|
44001
44612
|
* Creates a new DescriptorProto instance using the specified properties.
|
|
44002
44613
|
* @param [properties] Properties to set
|
|
@@ -44844,6 +45455,9 @@ export namespace google {
|
|
|
44844
45455
|
|
|
44845
45456
|
/** EnumDescriptorProto reservedName */
|
|
44846
45457
|
reservedName?: (string[]|null);
|
|
45458
|
+
|
|
45459
|
+
/** EnumDescriptorProto visibility */
|
|
45460
|
+
visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
|
|
44847
45461
|
}
|
|
44848
45462
|
|
|
44849
45463
|
/** Represents an EnumDescriptorProto. */
|
|
@@ -44870,6 +45484,9 @@ export namespace google {
|
|
|
44870
45484
|
/** EnumDescriptorProto reservedName. */
|
|
44871
45485
|
public reservedName: string[];
|
|
44872
45486
|
|
|
45487
|
+
/** EnumDescriptorProto visibility. */
|
|
45488
|
+
public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
|
|
45489
|
+
|
|
44873
45490
|
/**
|
|
44874
45491
|
* Creates a new EnumDescriptorProto instance using the specified properties.
|
|
44875
45492
|
* @param [properties] Properties to set
|
|
@@ -45804,6 +46421,9 @@ export namespace google {
|
|
|
45804
46421
|
/** FieldOptions features */
|
|
45805
46422
|
features?: (google.protobuf.IFeatureSet|null);
|
|
45806
46423
|
|
|
46424
|
+
/** FieldOptions featureSupport */
|
|
46425
|
+
featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
|
|
46426
|
+
|
|
45807
46427
|
/** FieldOptions uninterpretedOption */
|
|
45808
46428
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
45809
46429
|
|
|
@@ -45859,6 +46479,9 @@ export namespace google {
|
|
|
45859
46479
|
/** FieldOptions features. */
|
|
45860
46480
|
public features?: (google.protobuf.IFeatureSet|null);
|
|
45861
46481
|
|
|
46482
|
+
/** FieldOptions featureSupport. */
|
|
46483
|
+
public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
|
|
46484
|
+
|
|
45862
46485
|
/** FieldOptions uninterpretedOption. */
|
|
45863
46486
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
45864
46487
|
|
|
@@ -46079,6 +46702,121 @@ export namespace google {
|
|
|
46079
46702
|
*/
|
|
46080
46703
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
46081
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
|
+
}
|
|
46082
46820
|
}
|
|
46083
46821
|
|
|
46084
46822
|
/** Properties of an OneofOptions. */
|
|
@@ -46317,6 +47055,9 @@ export namespace google {
|
|
|
46317
47055
|
/** EnumValueOptions debugRedact */
|
|
46318
47056
|
debugRedact?: (boolean|null);
|
|
46319
47057
|
|
|
47058
|
+
/** EnumValueOptions featureSupport */
|
|
47059
|
+
featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
|
|
47060
|
+
|
|
46320
47061
|
/** EnumValueOptions uninterpretedOption */
|
|
46321
47062
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
46322
47063
|
}
|
|
@@ -46339,6 +47080,9 @@ export namespace google {
|
|
|
46339
47080
|
/** EnumValueOptions debugRedact. */
|
|
46340
47081
|
public debugRedact: boolean;
|
|
46341
47082
|
|
|
47083
|
+
/** EnumValueOptions featureSupport. */
|
|
47084
|
+
public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
|
|
47085
|
+
|
|
46342
47086
|
/** EnumValueOptions uninterpretedOption. */
|
|
46343
47087
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
46344
47088
|
|
|
@@ -46928,6 +47672,12 @@ export namespace google {
|
|
|
46928
47672
|
|
|
46929
47673
|
/** FeatureSet jsonFormat */
|
|
46930
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);
|
|
46931
47681
|
}
|
|
46932
47682
|
|
|
46933
47683
|
/** Represents a FeatureSet. */
|
|
@@ -46957,6 +47707,12 @@ export namespace google {
|
|
|
46957
47707
|
/** FeatureSet jsonFormat. */
|
|
46958
47708
|
public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
|
|
46959
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
|
+
|
|
46960
47716
|
/**
|
|
46961
47717
|
* Creates a new FeatureSet instance using the specified properties.
|
|
46962
47718
|
* @param [properties] Properties to set
|
|
@@ -47079,6 +47835,116 @@ export namespace google {
|
|
|
47079
47835
|
ALLOW = 1,
|
|
47080
47836
|
LEGACY_BEST_EFFORT = 2
|
|
47081
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
|
+
}
|
|
47082
47948
|
}
|
|
47083
47949
|
|
|
47084
47950
|
/** Properties of a FeatureSetDefaults. */
|
|
@@ -47198,8 +48064,11 @@ export namespace google {
|
|
|
47198
48064
|
/** FeatureSetEditionDefault edition */
|
|
47199
48065
|
edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
47200
48066
|
|
|
47201
|
-
/** FeatureSetEditionDefault
|
|
47202
|
-
|
|
48067
|
+
/** FeatureSetEditionDefault overridableFeatures */
|
|
48068
|
+
overridableFeatures?: (google.protobuf.IFeatureSet|null);
|
|
48069
|
+
|
|
48070
|
+
/** FeatureSetEditionDefault fixedFeatures */
|
|
48071
|
+
fixedFeatures?: (google.protobuf.IFeatureSet|null);
|
|
47203
48072
|
}
|
|
47204
48073
|
|
|
47205
48074
|
/** Represents a FeatureSetEditionDefault. */
|
|
@@ -47214,8 +48083,11 @@ export namespace google {
|
|
|
47214
48083
|
/** FeatureSetEditionDefault edition. */
|
|
47215
48084
|
public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
47216
48085
|
|
|
47217
|
-
/** FeatureSetEditionDefault
|
|
47218
|
-
public
|
|
48086
|
+
/** FeatureSetEditionDefault overridableFeatures. */
|
|
48087
|
+
public overridableFeatures?: (google.protobuf.IFeatureSet|null);
|
|
48088
|
+
|
|
48089
|
+
/** FeatureSetEditionDefault fixedFeatures. */
|
|
48090
|
+
public fixedFeatures?: (google.protobuf.IFeatureSet|null);
|
|
47219
48091
|
|
|
47220
48092
|
/**
|
|
47221
48093
|
* Creates a new FeatureSetEditionDefault instance using the specified properties.
|
|
@@ -47748,6 +48620,13 @@ export namespace google {
|
|
|
47748
48620
|
}
|
|
47749
48621
|
}
|
|
47750
48622
|
|
|
48623
|
+
/** SymbolVisibility enum. */
|
|
48624
|
+
enum SymbolVisibility {
|
|
48625
|
+
VISIBILITY_UNSET = 0,
|
|
48626
|
+
VISIBILITY_LOCAL = 1,
|
|
48627
|
+
VISIBILITY_EXPORT = 2
|
|
48628
|
+
}
|
|
48629
|
+
|
|
47751
48630
|
/** Properties of a Duration. */
|
|
47752
48631
|
interface IDuration {
|
|
47753
48632
|
|