@google-cloud/dlp 5.6.0 → 5.8.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/CHANGELOG.md +14 -0
- package/README.md +3 -0
- package/build/protos/google/privacy/dlp/v2/dlp.proto +760 -90
- package/build/protos/google/privacy/dlp/v2/storage.proto +14 -0
- package/build/protos/protos.d.ts +2717 -5
- package/build/protos/protos.js +14026 -6882
- package/build/protos/protos.json +782 -89
- package/build/src/v2/dlp_service_client.d.ts +459 -108
- package/build/src/v2/dlp_service_client.js +392 -54
- package/build/src/v2/dlp_service_client_config.json +12 -0
- package/package.json +2 -2
package/build/protos/protos.d.ts
CHANGED
|
@@ -620,6 +620,48 @@ export namespace google {
|
|
|
620
620
|
*/
|
|
621
621
|
public getProjectDataProfile(request: google.privacy.dlp.v2.IGetProjectDataProfileRequest): Promise<google.privacy.dlp.v2.ProjectDataProfile>;
|
|
622
622
|
|
|
623
|
+
/**
|
|
624
|
+
* Calls ListFileStoreDataProfiles.
|
|
625
|
+
* @param request ListFileStoreDataProfilesRequest message or plain object
|
|
626
|
+
* @param callback Node-style callback called with the error, if any, and ListFileStoreDataProfilesResponse
|
|
627
|
+
*/
|
|
628
|
+
public listFileStoreDataProfiles(request: google.privacy.dlp.v2.IListFileStoreDataProfilesRequest, callback: google.privacy.dlp.v2.DlpService.ListFileStoreDataProfilesCallback): void;
|
|
629
|
+
|
|
630
|
+
/**
|
|
631
|
+
* Calls ListFileStoreDataProfiles.
|
|
632
|
+
* @param request ListFileStoreDataProfilesRequest message or plain object
|
|
633
|
+
* @returns Promise
|
|
634
|
+
*/
|
|
635
|
+
public listFileStoreDataProfiles(request: google.privacy.dlp.v2.IListFileStoreDataProfilesRequest): Promise<google.privacy.dlp.v2.ListFileStoreDataProfilesResponse>;
|
|
636
|
+
|
|
637
|
+
/**
|
|
638
|
+
* Calls GetFileStoreDataProfile.
|
|
639
|
+
* @param request GetFileStoreDataProfileRequest message or plain object
|
|
640
|
+
* @param callback Node-style callback called with the error, if any, and FileStoreDataProfile
|
|
641
|
+
*/
|
|
642
|
+
public getFileStoreDataProfile(request: google.privacy.dlp.v2.IGetFileStoreDataProfileRequest, callback: google.privacy.dlp.v2.DlpService.GetFileStoreDataProfileCallback): void;
|
|
643
|
+
|
|
644
|
+
/**
|
|
645
|
+
* Calls GetFileStoreDataProfile.
|
|
646
|
+
* @param request GetFileStoreDataProfileRequest message or plain object
|
|
647
|
+
* @returns Promise
|
|
648
|
+
*/
|
|
649
|
+
public getFileStoreDataProfile(request: google.privacy.dlp.v2.IGetFileStoreDataProfileRequest): Promise<google.privacy.dlp.v2.FileStoreDataProfile>;
|
|
650
|
+
|
|
651
|
+
/**
|
|
652
|
+
* Calls DeleteFileStoreDataProfile.
|
|
653
|
+
* @param request DeleteFileStoreDataProfileRequest message or plain object
|
|
654
|
+
* @param callback Node-style callback called with the error, if any, and Empty
|
|
655
|
+
*/
|
|
656
|
+
public deleteFileStoreDataProfile(request: google.privacy.dlp.v2.IDeleteFileStoreDataProfileRequest, callback: google.privacy.dlp.v2.DlpService.DeleteFileStoreDataProfileCallback): void;
|
|
657
|
+
|
|
658
|
+
/**
|
|
659
|
+
* Calls DeleteFileStoreDataProfile.
|
|
660
|
+
* @param request DeleteFileStoreDataProfileRequest message or plain object
|
|
661
|
+
* @returns Promise
|
|
662
|
+
*/
|
|
663
|
+
public deleteFileStoreDataProfile(request: google.privacy.dlp.v2.IDeleteFileStoreDataProfileRequest): Promise<google.protobuf.Empty>;
|
|
664
|
+
|
|
623
665
|
/**
|
|
624
666
|
* Calls GetTableDataProfile.
|
|
625
667
|
* @param request GetTableDataProfileRequest message or plain object
|
|
@@ -1064,6 +1106,27 @@ export namespace google {
|
|
|
1064
1106
|
*/
|
|
1065
1107
|
type GetProjectDataProfileCallback = (error: (Error|null), response?: google.privacy.dlp.v2.ProjectDataProfile) => void;
|
|
1066
1108
|
|
|
1109
|
+
/**
|
|
1110
|
+
* Callback as used by {@link google.privacy.dlp.v2.DlpService|listFileStoreDataProfiles}.
|
|
1111
|
+
* @param error Error, if any
|
|
1112
|
+
* @param [response] ListFileStoreDataProfilesResponse
|
|
1113
|
+
*/
|
|
1114
|
+
type ListFileStoreDataProfilesCallback = (error: (Error|null), response?: google.privacy.dlp.v2.ListFileStoreDataProfilesResponse) => void;
|
|
1115
|
+
|
|
1116
|
+
/**
|
|
1117
|
+
* Callback as used by {@link google.privacy.dlp.v2.DlpService|getFileStoreDataProfile}.
|
|
1118
|
+
* @param error Error, if any
|
|
1119
|
+
* @param [response] FileStoreDataProfile
|
|
1120
|
+
*/
|
|
1121
|
+
type GetFileStoreDataProfileCallback = (error: (Error|null), response?: google.privacy.dlp.v2.FileStoreDataProfile) => void;
|
|
1122
|
+
|
|
1123
|
+
/**
|
|
1124
|
+
* Callback as used by {@link google.privacy.dlp.v2.DlpService|deleteFileStoreDataProfile}.
|
|
1125
|
+
* @param error Error, if any
|
|
1126
|
+
* @param [response] Empty
|
|
1127
|
+
*/
|
|
1128
|
+
type DeleteFileStoreDataProfileCallback = (error: (Error|null), response?: google.protobuf.Empty) => void;
|
|
1129
|
+
|
|
1067
1130
|
/**
|
|
1068
1131
|
* Callback as used by {@link google.privacy.dlp.v2.DlpService|getTableDataProfile}.
|
|
1069
1132
|
* @param error Error, if any
|
|
@@ -2261,7 +2324,10 @@ export namespace google {
|
|
|
2261
2324
|
EXCEL_DOCUMENT = 10,
|
|
2262
2325
|
AVRO = 11,
|
|
2263
2326
|
CSV = 12,
|
|
2264
|
-
TSV = 13
|
|
2327
|
+
TSV = 13,
|
|
2328
|
+
AUDIO = 15,
|
|
2329
|
+
VIDEO = 16,
|
|
2330
|
+
EXECUTABLE = 17
|
|
2265
2331
|
}
|
|
2266
2332
|
}
|
|
2267
2333
|
|
|
@@ -5767,6 +5833,9 @@ export namespace google {
|
|
|
5767
5833
|
|
|
5768
5834
|
/** DataProfileBigQueryRowSchema columnProfile */
|
|
5769
5835
|
columnProfile?: (google.privacy.dlp.v2.IColumnDataProfile|null);
|
|
5836
|
+
|
|
5837
|
+
/** DataProfileBigQueryRowSchema fileStoreProfile */
|
|
5838
|
+
fileStoreProfile?: (google.privacy.dlp.v2.IFileStoreDataProfile|null);
|
|
5770
5839
|
}
|
|
5771
5840
|
|
|
5772
5841
|
/** Represents a DataProfileBigQueryRowSchema. */
|
|
@@ -5784,8 +5853,11 @@ export namespace google {
|
|
|
5784
5853
|
/** DataProfileBigQueryRowSchema columnProfile. */
|
|
5785
5854
|
public columnProfile?: (google.privacy.dlp.v2.IColumnDataProfile|null);
|
|
5786
5855
|
|
|
5856
|
+
/** DataProfileBigQueryRowSchema fileStoreProfile. */
|
|
5857
|
+
public fileStoreProfile?: (google.privacy.dlp.v2.IFileStoreDataProfile|null);
|
|
5858
|
+
|
|
5787
5859
|
/** DataProfileBigQueryRowSchema dataProfile. */
|
|
5788
|
-
public dataProfile?: ("tableProfile"|"columnProfile");
|
|
5860
|
+
public dataProfile?: ("tableProfile"|"columnProfile"|"fileStoreProfile");
|
|
5789
5861
|
|
|
5790
5862
|
/**
|
|
5791
5863
|
* Creates a new DataProfileBigQueryRowSchema instance using the specified properties.
|
|
@@ -6650,7 +6722,10 @@ export namespace google {
|
|
|
6650
6722
|
LOCATION_UNSPECIFIED = 0,
|
|
6651
6723
|
GLOBAL = 1,
|
|
6652
6724
|
ARGENTINA = 2,
|
|
6725
|
+
ARMENIA = 51,
|
|
6653
6726
|
AUSTRALIA = 3,
|
|
6727
|
+
AZERBAIJAN = 48,
|
|
6728
|
+
BELARUS = 50,
|
|
6654
6729
|
BELGIUM = 4,
|
|
6655
6730
|
BRAZIL = 5,
|
|
6656
6731
|
CANADA = 6,
|
|
@@ -16452,6 +16527,9 @@ export namespace google {
|
|
|
16452
16527
|
|
|
16453
16528
|
/** Error timestamps */
|
|
16454
16529
|
timestamps?: (google.protobuf.ITimestamp[]|null);
|
|
16530
|
+
|
|
16531
|
+
/** Error extraInfo */
|
|
16532
|
+
extraInfo?: (google.privacy.dlp.v2.Error.ErrorExtraInfo|keyof typeof google.privacy.dlp.v2.Error.ErrorExtraInfo|null);
|
|
16455
16533
|
}
|
|
16456
16534
|
|
|
16457
16535
|
/** Represents an Error. */
|
|
@@ -16469,6 +16547,9 @@ export namespace google {
|
|
|
16469
16547
|
/** Error timestamps. */
|
|
16470
16548
|
public timestamps: google.protobuf.ITimestamp[];
|
|
16471
16549
|
|
|
16550
|
+
/** Error extraInfo. */
|
|
16551
|
+
public extraInfo: (google.privacy.dlp.v2.Error.ErrorExtraInfo|keyof typeof google.privacy.dlp.v2.Error.ErrorExtraInfo);
|
|
16552
|
+
|
|
16472
16553
|
/**
|
|
16473
16554
|
* Creates a new Error instance using the specified properties.
|
|
16474
16555
|
* @param [properties] Properties to set
|
|
@@ -16547,6 +16628,16 @@ export namespace google {
|
|
|
16547
16628
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
16548
16629
|
}
|
|
16549
16630
|
|
|
16631
|
+
namespace Error {
|
|
16632
|
+
|
|
16633
|
+
/** ErrorExtraInfo enum. */
|
|
16634
|
+
enum ErrorExtraInfo {
|
|
16635
|
+
ERROR_INFO_UNSPECIFIED = 0,
|
|
16636
|
+
IMAGE_SCAN_UNAVAILABLE_IN_REGION = 1,
|
|
16637
|
+
FILE_STORE_CLUSTER_UNSUPPORTED = 2
|
|
16638
|
+
}
|
|
16639
|
+
}
|
|
16640
|
+
|
|
16550
16641
|
/** Properties of a JobTrigger. */
|
|
16551
16642
|
interface IJobTrigger {
|
|
16552
16643
|
|
|
@@ -20330,7 +20421,8 @@ export namespace google {
|
|
|
20330
20421
|
enum DetailLevel {
|
|
20331
20422
|
DETAIL_LEVEL_UNSPECIFIED = 0,
|
|
20332
20423
|
TABLE_PROFILE = 1,
|
|
20333
|
-
RESOURCE_NAME = 2
|
|
20424
|
+
RESOURCE_NAME = 2,
|
|
20425
|
+
FILE_STORE_PROFILE = 3
|
|
20334
20426
|
}
|
|
20335
20427
|
}
|
|
20336
20428
|
|
|
@@ -21259,6 +21351,12 @@ export namespace google {
|
|
|
21259
21351
|
|
|
21260
21352
|
/** DiscoveryTarget cloudSqlTarget */
|
|
21261
21353
|
cloudSqlTarget?: (google.privacy.dlp.v2.ICloudSqlDiscoveryTarget|null);
|
|
21354
|
+
|
|
21355
|
+
/** DiscoveryTarget secretsTarget */
|
|
21356
|
+
secretsTarget?: (google.privacy.dlp.v2.ISecretsDiscoveryTarget|null);
|
|
21357
|
+
|
|
21358
|
+
/** DiscoveryTarget cloudStorageTarget */
|
|
21359
|
+
cloudStorageTarget?: (google.privacy.dlp.v2.ICloudStorageDiscoveryTarget|null);
|
|
21262
21360
|
}
|
|
21263
21361
|
|
|
21264
21362
|
/** Represents a DiscoveryTarget. */
|
|
@@ -21276,8 +21374,14 @@ export namespace google {
|
|
|
21276
21374
|
/** DiscoveryTarget cloudSqlTarget. */
|
|
21277
21375
|
public cloudSqlTarget?: (google.privacy.dlp.v2.ICloudSqlDiscoveryTarget|null);
|
|
21278
21376
|
|
|
21377
|
+
/** DiscoveryTarget secretsTarget. */
|
|
21378
|
+
public secretsTarget?: (google.privacy.dlp.v2.ISecretsDiscoveryTarget|null);
|
|
21379
|
+
|
|
21380
|
+
/** DiscoveryTarget cloudStorageTarget. */
|
|
21381
|
+
public cloudStorageTarget?: (google.privacy.dlp.v2.ICloudStorageDiscoveryTarget|null);
|
|
21382
|
+
|
|
21279
21383
|
/** DiscoveryTarget target. */
|
|
21280
|
-
public target?: ("bigQueryTarget"|"cloudSqlTarget");
|
|
21384
|
+
public target?: ("bigQueryTarget"|"cloudSqlTarget"|"secretsTarget"|"cloudStorageTarget");
|
|
21281
21385
|
|
|
21282
21386
|
/**
|
|
21283
21387
|
* Creates a new DiscoveryTarget instance using the specified properties.
|
|
@@ -21483,6 +21587,9 @@ export namespace google {
|
|
|
21483
21587
|
|
|
21484
21588
|
/** DiscoveryBigQueryFilter otherTables */
|
|
21485
21589
|
otherTables?: (google.privacy.dlp.v2.DiscoveryBigQueryFilter.IAllOtherBigQueryTables|null);
|
|
21590
|
+
|
|
21591
|
+
/** DiscoveryBigQueryFilter tableReference */
|
|
21592
|
+
tableReference?: (google.privacy.dlp.v2.ITableReference|null);
|
|
21486
21593
|
}
|
|
21487
21594
|
|
|
21488
21595
|
/** Represents a DiscoveryBigQueryFilter. */
|
|
@@ -21500,8 +21607,11 @@ export namespace google {
|
|
|
21500
21607
|
/** DiscoveryBigQueryFilter otherTables. */
|
|
21501
21608
|
public otherTables?: (google.privacy.dlp.v2.DiscoveryBigQueryFilter.IAllOtherBigQueryTables|null);
|
|
21502
21609
|
|
|
21610
|
+
/** DiscoveryBigQueryFilter tableReference. */
|
|
21611
|
+
public tableReference?: (google.privacy.dlp.v2.ITableReference|null);
|
|
21612
|
+
|
|
21503
21613
|
/** DiscoveryBigQueryFilter filter. */
|
|
21504
|
-
public filter?: ("tables"|"otherTables");
|
|
21614
|
+
public filter?: ("tables"|"otherTables"|"tableReference");
|
|
21505
21615
|
|
|
21506
21616
|
/**
|
|
21507
21617
|
* Creates a new DiscoveryBigQueryFilter instance using the specified properties.
|
|
@@ -22007,6 +22117,9 @@ export namespace google {
|
|
|
22007
22117
|
|
|
22008
22118
|
/** DiscoveryGenerationCadence tableModifiedCadence */
|
|
22009
22119
|
tableModifiedCadence?: (google.privacy.dlp.v2.IDiscoveryTableModifiedCadence|null);
|
|
22120
|
+
|
|
22121
|
+
/** DiscoveryGenerationCadence inspectTemplateModifiedCadence */
|
|
22122
|
+
inspectTemplateModifiedCadence?: (google.privacy.dlp.v2.IDiscoveryInspectTemplateModifiedCadence|null);
|
|
22010
22123
|
}
|
|
22011
22124
|
|
|
22012
22125
|
/** Represents a DiscoveryGenerationCadence. */
|
|
@@ -22024,6 +22137,9 @@ export namespace google {
|
|
|
22024
22137
|
/** DiscoveryGenerationCadence tableModifiedCadence. */
|
|
22025
22138
|
public tableModifiedCadence?: (google.privacy.dlp.v2.IDiscoveryTableModifiedCadence|null);
|
|
22026
22139
|
|
|
22140
|
+
/** DiscoveryGenerationCadence inspectTemplateModifiedCadence. */
|
|
22141
|
+
public inspectTemplateModifiedCadence?: (google.privacy.dlp.v2.IDiscoveryInspectTemplateModifiedCadence|null);
|
|
22142
|
+
|
|
22027
22143
|
/**
|
|
22028
22144
|
* Creates a new DiscoveryGenerationCadence instance using the specified properties.
|
|
22029
22145
|
* @param [properties] Properties to set
|
|
@@ -22321,6 +22437,103 @@ export namespace google {
|
|
|
22321
22437
|
SCHEMA_REMOVED_COLUMNS = 2
|
|
22322
22438
|
}
|
|
22323
22439
|
|
|
22440
|
+
/** Properties of a DiscoveryInspectTemplateModifiedCadence. */
|
|
22441
|
+
interface IDiscoveryInspectTemplateModifiedCadence {
|
|
22442
|
+
|
|
22443
|
+
/** DiscoveryInspectTemplateModifiedCadence frequency */
|
|
22444
|
+
frequency?: (google.privacy.dlp.v2.DataProfileUpdateFrequency|keyof typeof google.privacy.dlp.v2.DataProfileUpdateFrequency|null);
|
|
22445
|
+
}
|
|
22446
|
+
|
|
22447
|
+
/** Represents a DiscoveryInspectTemplateModifiedCadence. */
|
|
22448
|
+
class DiscoveryInspectTemplateModifiedCadence implements IDiscoveryInspectTemplateModifiedCadence {
|
|
22449
|
+
|
|
22450
|
+
/**
|
|
22451
|
+
* Constructs a new DiscoveryInspectTemplateModifiedCadence.
|
|
22452
|
+
* @param [properties] Properties to set
|
|
22453
|
+
*/
|
|
22454
|
+
constructor(properties?: google.privacy.dlp.v2.IDiscoveryInspectTemplateModifiedCadence);
|
|
22455
|
+
|
|
22456
|
+
/** DiscoveryInspectTemplateModifiedCadence frequency. */
|
|
22457
|
+
public frequency: (google.privacy.dlp.v2.DataProfileUpdateFrequency|keyof typeof google.privacy.dlp.v2.DataProfileUpdateFrequency);
|
|
22458
|
+
|
|
22459
|
+
/**
|
|
22460
|
+
* Creates a new DiscoveryInspectTemplateModifiedCadence instance using the specified properties.
|
|
22461
|
+
* @param [properties] Properties to set
|
|
22462
|
+
* @returns DiscoveryInspectTemplateModifiedCadence instance
|
|
22463
|
+
*/
|
|
22464
|
+
public static create(properties?: google.privacy.dlp.v2.IDiscoveryInspectTemplateModifiedCadence): google.privacy.dlp.v2.DiscoveryInspectTemplateModifiedCadence;
|
|
22465
|
+
|
|
22466
|
+
/**
|
|
22467
|
+
* Encodes the specified DiscoveryInspectTemplateModifiedCadence message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryInspectTemplateModifiedCadence.verify|verify} messages.
|
|
22468
|
+
* @param message DiscoveryInspectTemplateModifiedCadence message or plain object to encode
|
|
22469
|
+
* @param [writer] Writer to encode to
|
|
22470
|
+
* @returns Writer
|
|
22471
|
+
*/
|
|
22472
|
+
public static encode(message: google.privacy.dlp.v2.IDiscoveryInspectTemplateModifiedCadence, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
22473
|
+
|
|
22474
|
+
/**
|
|
22475
|
+
* Encodes the specified DiscoveryInspectTemplateModifiedCadence message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryInspectTemplateModifiedCadence.verify|verify} messages.
|
|
22476
|
+
* @param message DiscoveryInspectTemplateModifiedCadence message or plain object to encode
|
|
22477
|
+
* @param [writer] Writer to encode to
|
|
22478
|
+
* @returns Writer
|
|
22479
|
+
*/
|
|
22480
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoveryInspectTemplateModifiedCadence, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
22481
|
+
|
|
22482
|
+
/**
|
|
22483
|
+
* Decodes a DiscoveryInspectTemplateModifiedCadence message from the specified reader or buffer.
|
|
22484
|
+
* @param reader Reader or buffer to decode from
|
|
22485
|
+
* @param [length] Message length if known beforehand
|
|
22486
|
+
* @returns DiscoveryInspectTemplateModifiedCadence
|
|
22487
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
22488
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
22489
|
+
*/
|
|
22490
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryInspectTemplateModifiedCadence;
|
|
22491
|
+
|
|
22492
|
+
/**
|
|
22493
|
+
* Decodes a DiscoveryInspectTemplateModifiedCadence message from the specified reader or buffer, length delimited.
|
|
22494
|
+
* @param reader Reader or buffer to decode from
|
|
22495
|
+
* @returns DiscoveryInspectTemplateModifiedCadence
|
|
22496
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
22497
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
22498
|
+
*/
|
|
22499
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryInspectTemplateModifiedCadence;
|
|
22500
|
+
|
|
22501
|
+
/**
|
|
22502
|
+
* Verifies a DiscoveryInspectTemplateModifiedCadence message.
|
|
22503
|
+
* @param message Plain object to verify
|
|
22504
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
22505
|
+
*/
|
|
22506
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
22507
|
+
|
|
22508
|
+
/**
|
|
22509
|
+
* Creates a DiscoveryInspectTemplateModifiedCadence message from a plain object. Also converts values to their respective internal types.
|
|
22510
|
+
* @param object Plain object
|
|
22511
|
+
* @returns DiscoveryInspectTemplateModifiedCadence
|
|
22512
|
+
*/
|
|
22513
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryInspectTemplateModifiedCadence;
|
|
22514
|
+
|
|
22515
|
+
/**
|
|
22516
|
+
* Creates a plain object from a DiscoveryInspectTemplateModifiedCadence message. Also converts values to other types if specified.
|
|
22517
|
+
* @param message DiscoveryInspectTemplateModifiedCadence
|
|
22518
|
+
* @param [options] Conversion options
|
|
22519
|
+
* @returns Plain object
|
|
22520
|
+
*/
|
|
22521
|
+
public static toObject(message: google.privacy.dlp.v2.DiscoveryInspectTemplateModifiedCadence, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
22522
|
+
|
|
22523
|
+
/**
|
|
22524
|
+
* Converts this DiscoveryInspectTemplateModifiedCadence to JSON.
|
|
22525
|
+
* @returns JSON object
|
|
22526
|
+
*/
|
|
22527
|
+
public toJSON(): { [k: string]: any };
|
|
22528
|
+
|
|
22529
|
+
/**
|
|
22530
|
+
* Gets the default type url for DiscoveryInspectTemplateModifiedCadence
|
|
22531
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
22532
|
+
* @returns The default type url
|
|
22533
|
+
*/
|
|
22534
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
22535
|
+
}
|
|
22536
|
+
|
|
22324
22537
|
/** Properties of a CloudSqlDiscoveryTarget. */
|
|
22325
22538
|
interface ICloudSqlDiscoveryTarget {
|
|
22326
22539
|
|
|
@@ -22962,6 +23175,12 @@ export namespace google {
|
|
|
22962
23175
|
|
|
22963
23176
|
/** DatabaseResourceReference instance */
|
|
22964
23177
|
instance?: (string|null);
|
|
23178
|
+
|
|
23179
|
+
/** DatabaseResourceReference database */
|
|
23180
|
+
database?: (string|null);
|
|
23181
|
+
|
|
23182
|
+
/** DatabaseResourceReference databaseResource */
|
|
23183
|
+
databaseResource?: (string|null);
|
|
22965
23184
|
}
|
|
22966
23185
|
|
|
22967
23186
|
/** Represents a DatabaseResourceReference. */
|
|
@@ -22979,6 +23198,12 @@ export namespace google {
|
|
|
22979
23198
|
/** DatabaseResourceReference instance. */
|
|
22980
23199
|
public instance: string;
|
|
22981
23200
|
|
|
23201
|
+
/** DatabaseResourceReference database. */
|
|
23202
|
+
public database: string;
|
|
23203
|
+
|
|
23204
|
+
/** DatabaseResourceReference databaseResource. */
|
|
23205
|
+
public databaseResource: string;
|
|
23206
|
+
|
|
22982
23207
|
/**
|
|
22983
23208
|
* Creates a new DatabaseResourceReference instance using the specified properties.
|
|
22984
23209
|
* @param [properties] Properties to set
|
|
@@ -23397,6 +23622,1172 @@ export namespace google {
|
|
|
23397
23622
|
}
|
|
23398
23623
|
}
|
|
23399
23624
|
|
|
23625
|
+
/** Properties of a SecretsDiscoveryTarget. */
|
|
23626
|
+
interface ISecretsDiscoveryTarget {
|
|
23627
|
+
}
|
|
23628
|
+
|
|
23629
|
+
/** Represents a SecretsDiscoveryTarget. */
|
|
23630
|
+
class SecretsDiscoveryTarget implements ISecretsDiscoveryTarget {
|
|
23631
|
+
|
|
23632
|
+
/**
|
|
23633
|
+
* Constructs a new SecretsDiscoveryTarget.
|
|
23634
|
+
* @param [properties] Properties to set
|
|
23635
|
+
*/
|
|
23636
|
+
constructor(properties?: google.privacy.dlp.v2.ISecretsDiscoveryTarget);
|
|
23637
|
+
|
|
23638
|
+
/**
|
|
23639
|
+
* Creates a new SecretsDiscoveryTarget instance using the specified properties.
|
|
23640
|
+
* @param [properties] Properties to set
|
|
23641
|
+
* @returns SecretsDiscoveryTarget instance
|
|
23642
|
+
*/
|
|
23643
|
+
public static create(properties?: google.privacy.dlp.v2.ISecretsDiscoveryTarget): google.privacy.dlp.v2.SecretsDiscoveryTarget;
|
|
23644
|
+
|
|
23645
|
+
/**
|
|
23646
|
+
* Encodes the specified SecretsDiscoveryTarget message. Does not implicitly {@link google.privacy.dlp.v2.SecretsDiscoveryTarget.verify|verify} messages.
|
|
23647
|
+
* @param message SecretsDiscoveryTarget message or plain object to encode
|
|
23648
|
+
* @param [writer] Writer to encode to
|
|
23649
|
+
* @returns Writer
|
|
23650
|
+
*/
|
|
23651
|
+
public static encode(message: google.privacy.dlp.v2.ISecretsDiscoveryTarget, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
23652
|
+
|
|
23653
|
+
/**
|
|
23654
|
+
* Encodes the specified SecretsDiscoveryTarget message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.SecretsDiscoveryTarget.verify|verify} messages.
|
|
23655
|
+
* @param message SecretsDiscoveryTarget message or plain object to encode
|
|
23656
|
+
* @param [writer] Writer to encode to
|
|
23657
|
+
* @returns Writer
|
|
23658
|
+
*/
|
|
23659
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.ISecretsDiscoveryTarget, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
23660
|
+
|
|
23661
|
+
/**
|
|
23662
|
+
* Decodes a SecretsDiscoveryTarget message from the specified reader or buffer.
|
|
23663
|
+
* @param reader Reader or buffer to decode from
|
|
23664
|
+
* @param [length] Message length if known beforehand
|
|
23665
|
+
* @returns SecretsDiscoveryTarget
|
|
23666
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
23667
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
23668
|
+
*/
|
|
23669
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.SecretsDiscoveryTarget;
|
|
23670
|
+
|
|
23671
|
+
/**
|
|
23672
|
+
* Decodes a SecretsDiscoveryTarget message from the specified reader or buffer, length delimited.
|
|
23673
|
+
* @param reader Reader or buffer to decode from
|
|
23674
|
+
* @returns SecretsDiscoveryTarget
|
|
23675
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
23676
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
23677
|
+
*/
|
|
23678
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.SecretsDiscoveryTarget;
|
|
23679
|
+
|
|
23680
|
+
/**
|
|
23681
|
+
* Verifies a SecretsDiscoveryTarget message.
|
|
23682
|
+
* @param message Plain object to verify
|
|
23683
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
23684
|
+
*/
|
|
23685
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
23686
|
+
|
|
23687
|
+
/**
|
|
23688
|
+
* Creates a SecretsDiscoveryTarget message from a plain object. Also converts values to their respective internal types.
|
|
23689
|
+
* @param object Plain object
|
|
23690
|
+
* @returns SecretsDiscoveryTarget
|
|
23691
|
+
*/
|
|
23692
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.SecretsDiscoveryTarget;
|
|
23693
|
+
|
|
23694
|
+
/**
|
|
23695
|
+
* Creates a plain object from a SecretsDiscoveryTarget message. Also converts values to other types if specified.
|
|
23696
|
+
* @param message SecretsDiscoveryTarget
|
|
23697
|
+
* @param [options] Conversion options
|
|
23698
|
+
* @returns Plain object
|
|
23699
|
+
*/
|
|
23700
|
+
public static toObject(message: google.privacy.dlp.v2.SecretsDiscoveryTarget, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
23701
|
+
|
|
23702
|
+
/**
|
|
23703
|
+
* Converts this SecretsDiscoveryTarget to JSON.
|
|
23704
|
+
* @returns JSON object
|
|
23705
|
+
*/
|
|
23706
|
+
public toJSON(): { [k: string]: any };
|
|
23707
|
+
|
|
23708
|
+
/**
|
|
23709
|
+
* Gets the default type url for SecretsDiscoveryTarget
|
|
23710
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
23711
|
+
* @returns The default type url
|
|
23712
|
+
*/
|
|
23713
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
23714
|
+
}
|
|
23715
|
+
|
|
23716
|
+
/** Properties of a CloudStorageDiscoveryTarget. */
|
|
23717
|
+
interface ICloudStorageDiscoveryTarget {
|
|
23718
|
+
|
|
23719
|
+
/** CloudStorageDiscoveryTarget filter */
|
|
23720
|
+
filter?: (google.privacy.dlp.v2.IDiscoveryCloudStorageFilter|null);
|
|
23721
|
+
|
|
23722
|
+
/** CloudStorageDiscoveryTarget conditions */
|
|
23723
|
+
conditions?: (google.privacy.dlp.v2.IDiscoveryFileStoreConditions|null);
|
|
23724
|
+
|
|
23725
|
+
/** CloudStorageDiscoveryTarget generationCadence */
|
|
23726
|
+
generationCadence?: (google.privacy.dlp.v2.IDiscoveryCloudStorageGenerationCadence|null);
|
|
23727
|
+
|
|
23728
|
+
/** CloudStorageDiscoveryTarget disabled */
|
|
23729
|
+
disabled?: (google.privacy.dlp.v2.IDisabled|null);
|
|
23730
|
+
}
|
|
23731
|
+
|
|
23732
|
+
/** Represents a CloudStorageDiscoveryTarget. */
|
|
23733
|
+
class CloudStorageDiscoveryTarget implements ICloudStorageDiscoveryTarget {
|
|
23734
|
+
|
|
23735
|
+
/**
|
|
23736
|
+
* Constructs a new CloudStorageDiscoveryTarget.
|
|
23737
|
+
* @param [properties] Properties to set
|
|
23738
|
+
*/
|
|
23739
|
+
constructor(properties?: google.privacy.dlp.v2.ICloudStorageDiscoveryTarget);
|
|
23740
|
+
|
|
23741
|
+
/** CloudStorageDiscoveryTarget filter. */
|
|
23742
|
+
public filter?: (google.privacy.dlp.v2.IDiscoveryCloudStorageFilter|null);
|
|
23743
|
+
|
|
23744
|
+
/** CloudStorageDiscoveryTarget conditions. */
|
|
23745
|
+
public conditions?: (google.privacy.dlp.v2.IDiscoveryFileStoreConditions|null);
|
|
23746
|
+
|
|
23747
|
+
/** CloudStorageDiscoveryTarget generationCadence. */
|
|
23748
|
+
public generationCadence?: (google.privacy.dlp.v2.IDiscoveryCloudStorageGenerationCadence|null);
|
|
23749
|
+
|
|
23750
|
+
/** CloudStorageDiscoveryTarget disabled. */
|
|
23751
|
+
public disabled?: (google.privacy.dlp.v2.IDisabled|null);
|
|
23752
|
+
|
|
23753
|
+
/** CloudStorageDiscoveryTarget cadence. */
|
|
23754
|
+
public cadence?: ("generationCadence"|"disabled");
|
|
23755
|
+
|
|
23756
|
+
/**
|
|
23757
|
+
* Creates a new CloudStorageDiscoveryTarget instance using the specified properties.
|
|
23758
|
+
* @param [properties] Properties to set
|
|
23759
|
+
* @returns CloudStorageDiscoveryTarget instance
|
|
23760
|
+
*/
|
|
23761
|
+
public static create(properties?: google.privacy.dlp.v2.ICloudStorageDiscoveryTarget): google.privacy.dlp.v2.CloudStorageDiscoveryTarget;
|
|
23762
|
+
|
|
23763
|
+
/**
|
|
23764
|
+
* Encodes the specified CloudStorageDiscoveryTarget message. Does not implicitly {@link google.privacy.dlp.v2.CloudStorageDiscoveryTarget.verify|verify} messages.
|
|
23765
|
+
* @param message CloudStorageDiscoveryTarget message or plain object to encode
|
|
23766
|
+
* @param [writer] Writer to encode to
|
|
23767
|
+
* @returns Writer
|
|
23768
|
+
*/
|
|
23769
|
+
public static encode(message: google.privacy.dlp.v2.ICloudStorageDiscoveryTarget, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
23770
|
+
|
|
23771
|
+
/**
|
|
23772
|
+
* Encodes the specified CloudStorageDiscoveryTarget message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.CloudStorageDiscoveryTarget.verify|verify} messages.
|
|
23773
|
+
* @param message CloudStorageDiscoveryTarget message or plain object to encode
|
|
23774
|
+
* @param [writer] Writer to encode to
|
|
23775
|
+
* @returns Writer
|
|
23776
|
+
*/
|
|
23777
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.ICloudStorageDiscoveryTarget, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
23778
|
+
|
|
23779
|
+
/**
|
|
23780
|
+
* Decodes a CloudStorageDiscoveryTarget message from the specified reader or buffer.
|
|
23781
|
+
* @param reader Reader or buffer to decode from
|
|
23782
|
+
* @param [length] Message length if known beforehand
|
|
23783
|
+
* @returns CloudStorageDiscoveryTarget
|
|
23784
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
23785
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
23786
|
+
*/
|
|
23787
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.CloudStorageDiscoveryTarget;
|
|
23788
|
+
|
|
23789
|
+
/**
|
|
23790
|
+
* Decodes a CloudStorageDiscoveryTarget message from the specified reader or buffer, length delimited.
|
|
23791
|
+
* @param reader Reader or buffer to decode from
|
|
23792
|
+
* @returns CloudStorageDiscoveryTarget
|
|
23793
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
23794
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
23795
|
+
*/
|
|
23796
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.CloudStorageDiscoveryTarget;
|
|
23797
|
+
|
|
23798
|
+
/**
|
|
23799
|
+
* Verifies a CloudStorageDiscoveryTarget message.
|
|
23800
|
+
* @param message Plain object to verify
|
|
23801
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
23802
|
+
*/
|
|
23803
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
23804
|
+
|
|
23805
|
+
/**
|
|
23806
|
+
* Creates a CloudStorageDiscoveryTarget message from a plain object. Also converts values to their respective internal types.
|
|
23807
|
+
* @param object Plain object
|
|
23808
|
+
* @returns CloudStorageDiscoveryTarget
|
|
23809
|
+
*/
|
|
23810
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.CloudStorageDiscoveryTarget;
|
|
23811
|
+
|
|
23812
|
+
/**
|
|
23813
|
+
* Creates a plain object from a CloudStorageDiscoveryTarget message. Also converts values to other types if specified.
|
|
23814
|
+
* @param message CloudStorageDiscoveryTarget
|
|
23815
|
+
* @param [options] Conversion options
|
|
23816
|
+
* @returns Plain object
|
|
23817
|
+
*/
|
|
23818
|
+
public static toObject(message: google.privacy.dlp.v2.CloudStorageDiscoveryTarget, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
23819
|
+
|
|
23820
|
+
/**
|
|
23821
|
+
* Converts this CloudStorageDiscoveryTarget to JSON.
|
|
23822
|
+
* @returns JSON object
|
|
23823
|
+
*/
|
|
23824
|
+
public toJSON(): { [k: string]: any };
|
|
23825
|
+
|
|
23826
|
+
/**
|
|
23827
|
+
* Gets the default type url for CloudStorageDiscoveryTarget
|
|
23828
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
23829
|
+
* @returns The default type url
|
|
23830
|
+
*/
|
|
23831
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
23832
|
+
}
|
|
23833
|
+
|
|
23834
|
+
/** Properties of a DiscoveryCloudStorageFilter. */
|
|
23835
|
+
interface IDiscoveryCloudStorageFilter {
|
|
23836
|
+
|
|
23837
|
+
/** DiscoveryCloudStorageFilter collection */
|
|
23838
|
+
collection?: (google.privacy.dlp.v2.IFileStoreCollection|null);
|
|
23839
|
+
|
|
23840
|
+
/** DiscoveryCloudStorageFilter cloudStorageResourceReference */
|
|
23841
|
+
cloudStorageResourceReference?: (google.privacy.dlp.v2.ICloudStorageResourceReference|null);
|
|
23842
|
+
|
|
23843
|
+
/** DiscoveryCloudStorageFilter others */
|
|
23844
|
+
others?: (google.privacy.dlp.v2.IAllOtherResources|null);
|
|
23845
|
+
}
|
|
23846
|
+
|
|
23847
|
+
/** Represents a DiscoveryCloudStorageFilter. */
|
|
23848
|
+
class DiscoveryCloudStorageFilter implements IDiscoveryCloudStorageFilter {
|
|
23849
|
+
|
|
23850
|
+
/**
|
|
23851
|
+
* Constructs a new DiscoveryCloudStorageFilter.
|
|
23852
|
+
* @param [properties] Properties to set
|
|
23853
|
+
*/
|
|
23854
|
+
constructor(properties?: google.privacy.dlp.v2.IDiscoveryCloudStorageFilter);
|
|
23855
|
+
|
|
23856
|
+
/** DiscoveryCloudStorageFilter collection. */
|
|
23857
|
+
public collection?: (google.privacy.dlp.v2.IFileStoreCollection|null);
|
|
23858
|
+
|
|
23859
|
+
/** DiscoveryCloudStorageFilter cloudStorageResourceReference. */
|
|
23860
|
+
public cloudStorageResourceReference?: (google.privacy.dlp.v2.ICloudStorageResourceReference|null);
|
|
23861
|
+
|
|
23862
|
+
/** DiscoveryCloudStorageFilter others. */
|
|
23863
|
+
public others?: (google.privacy.dlp.v2.IAllOtherResources|null);
|
|
23864
|
+
|
|
23865
|
+
/** DiscoveryCloudStorageFilter filter. */
|
|
23866
|
+
public filter?: ("collection"|"cloudStorageResourceReference"|"others");
|
|
23867
|
+
|
|
23868
|
+
/**
|
|
23869
|
+
* Creates a new DiscoveryCloudStorageFilter instance using the specified properties.
|
|
23870
|
+
* @param [properties] Properties to set
|
|
23871
|
+
* @returns DiscoveryCloudStorageFilter instance
|
|
23872
|
+
*/
|
|
23873
|
+
public static create(properties?: google.privacy.dlp.v2.IDiscoveryCloudStorageFilter): google.privacy.dlp.v2.DiscoveryCloudStorageFilter;
|
|
23874
|
+
|
|
23875
|
+
/**
|
|
23876
|
+
* Encodes the specified DiscoveryCloudStorageFilter message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryCloudStorageFilter.verify|verify} messages.
|
|
23877
|
+
* @param message DiscoveryCloudStorageFilter message or plain object to encode
|
|
23878
|
+
* @param [writer] Writer to encode to
|
|
23879
|
+
* @returns Writer
|
|
23880
|
+
*/
|
|
23881
|
+
public static encode(message: google.privacy.dlp.v2.IDiscoveryCloudStorageFilter, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
23882
|
+
|
|
23883
|
+
/**
|
|
23884
|
+
* Encodes the specified DiscoveryCloudStorageFilter message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryCloudStorageFilter.verify|verify} messages.
|
|
23885
|
+
* @param message DiscoveryCloudStorageFilter message or plain object to encode
|
|
23886
|
+
* @param [writer] Writer to encode to
|
|
23887
|
+
* @returns Writer
|
|
23888
|
+
*/
|
|
23889
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoveryCloudStorageFilter, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
23890
|
+
|
|
23891
|
+
/**
|
|
23892
|
+
* Decodes a DiscoveryCloudStorageFilter message from the specified reader or buffer.
|
|
23893
|
+
* @param reader Reader or buffer to decode from
|
|
23894
|
+
* @param [length] Message length if known beforehand
|
|
23895
|
+
* @returns DiscoveryCloudStorageFilter
|
|
23896
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
23897
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
23898
|
+
*/
|
|
23899
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryCloudStorageFilter;
|
|
23900
|
+
|
|
23901
|
+
/**
|
|
23902
|
+
* Decodes a DiscoveryCloudStorageFilter message from the specified reader or buffer, length delimited.
|
|
23903
|
+
* @param reader Reader or buffer to decode from
|
|
23904
|
+
* @returns DiscoveryCloudStorageFilter
|
|
23905
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
23906
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
23907
|
+
*/
|
|
23908
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryCloudStorageFilter;
|
|
23909
|
+
|
|
23910
|
+
/**
|
|
23911
|
+
* Verifies a DiscoveryCloudStorageFilter message.
|
|
23912
|
+
* @param message Plain object to verify
|
|
23913
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
23914
|
+
*/
|
|
23915
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
23916
|
+
|
|
23917
|
+
/**
|
|
23918
|
+
* Creates a DiscoveryCloudStorageFilter message from a plain object. Also converts values to their respective internal types.
|
|
23919
|
+
* @param object Plain object
|
|
23920
|
+
* @returns DiscoveryCloudStorageFilter
|
|
23921
|
+
*/
|
|
23922
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryCloudStorageFilter;
|
|
23923
|
+
|
|
23924
|
+
/**
|
|
23925
|
+
* Creates a plain object from a DiscoveryCloudStorageFilter message. Also converts values to other types if specified.
|
|
23926
|
+
* @param message DiscoveryCloudStorageFilter
|
|
23927
|
+
* @param [options] Conversion options
|
|
23928
|
+
* @returns Plain object
|
|
23929
|
+
*/
|
|
23930
|
+
public static toObject(message: google.privacy.dlp.v2.DiscoveryCloudStorageFilter, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
23931
|
+
|
|
23932
|
+
/**
|
|
23933
|
+
* Converts this DiscoveryCloudStorageFilter to JSON.
|
|
23934
|
+
* @returns JSON object
|
|
23935
|
+
*/
|
|
23936
|
+
public toJSON(): { [k: string]: any };
|
|
23937
|
+
|
|
23938
|
+
/**
|
|
23939
|
+
* Gets the default type url for DiscoveryCloudStorageFilter
|
|
23940
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
23941
|
+
* @returns The default type url
|
|
23942
|
+
*/
|
|
23943
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
23944
|
+
}
|
|
23945
|
+
|
|
23946
|
+
/** Properties of a FileStoreCollection. */
|
|
23947
|
+
interface IFileStoreCollection {
|
|
23948
|
+
|
|
23949
|
+
/** FileStoreCollection includeRegexes */
|
|
23950
|
+
includeRegexes?: (google.privacy.dlp.v2.IFileStoreRegexes|null);
|
|
23951
|
+
}
|
|
23952
|
+
|
|
23953
|
+
/** Represents a FileStoreCollection. */
|
|
23954
|
+
class FileStoreCollection implements IFileStoreCollection {
|
|
23955
|
+
|
|
23956
|
+
/**
|
|
23957
|
+
* Constructs a new FileStoreCollection.
|
|
23958
|
+
* @param [properties] Properties to set
|
|
23959
|
+
*/
|
|
23960
|
+
constructor(properties?: google.privacy.dlp.v2.IFileStoreCollection);
|
|
23961
|
+
|
|
23962
|
+
/** FileStoreCollection includeRegexes. */
|
|
23963
|
+
public includeRegexes?: (google.privacy.dlp.v2.IFileStoreRegexes|null);
|
|
23964
|
+
|
|
23965
|
+
/** FileStoreCollection pattern. */
|
|
23966
|
+
public pattern?: "includeRegexes";
|
|
23967
|
+
|
|
23968
|
+
/**
|
|
23969
|
+
* Creates a new FileStoreCollection instance using the specified properties.
|
|
23970
|
+
* @param [properties] Properties to set
|
|
23971
|
+
* @returns FileStoreCollection instance
|
|
23972
|
+
*/
|
|
23973
|
+
public static create(properties?: google.privacy.dlp.v2.IFileStoreCollection): google.privacy.dlp.v2.FileStoreCollection;
|
|
23974
|
+
|
|
23975
|
+
/**
|
|
23976
|
+
* Encodes the specified FileStoreCollection message. Does not implicitly {@link google.privacy.dlp.v2.FileStoreCollection.verify|verify} messages.
|
|
23977
|
+
* @param message FileStoreCollection message or plain object to encode
|
|
23978
|
+
* @param [writer] Writer to encode to
|
|
23979
|
+
* @returns Writer
|
|
23980
|
+
*/
|
|
23981
|
+
public static encode(message: google.privacy.dlp.v2.IFileStoreCollection, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
23982
|
+
|
|
23983
|
+
/**
|
|
23984
|
+
* Encodes the specified FileStoreCollection message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.FileStoreCollection.verify|verify} messages.
|
|
23985
|
+
* @param message FileStoreCollection message or plain object to encode
|
|
23986
|
+
* @param [writer] Writer to encode to
|
|
23987
|
+
* @returns Writer
|
|
23988
|
+
*/
|
|
23989
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IFileStoreCollection, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
23990
|
+
|
|
23991
|
+
/**
|
|
23992
|
+
* Decodes a FileStoreCollection message from the specified reader or buffer.
|
|
23993
|
+
* @param reader Reader or buffer to decode from
|
|
23994
|
+
* @param [length] Message length if known beforehand
|
|
23995
|
+
* @returns FileStoreCollection
|
|
23996
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
23997
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
23998
|
+
*/
|
|
23999
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.FileStoreCollection;
|
|
24000
|
+
|
|
24001
|
+
/**
|
|
24002
|
+
* Decodes a FileStoreCollection message from the specified reader or buffer, length delimited.
|
|
24003
|
+
* @param reader Reader or buffer to decode from
|
|
24004
|
+
* @returns FileStoreCollection
|
|
24005
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
24006
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
24007
|
+
*/
|
|
24008
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.FileStoreCollection;
|
|
24009
|
+
|
|
24010
|
+
/**
|
|
24011
|
+
* Verifies a FileStoreCollection message.
|
|
24012
|
+
* @param message Plain object to verify
|
|
24013
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
24014
|
+
*/
|
|
24015
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
24016
|
+
|
|
24017
|
+
/**
|
|
24018
|
+
* Creates a FileStoreCollection message from a plain object. Also converts values to their respective internal types.
|
|
24019
|
+
* @param object Plain object
|
|
24020
|
+
* @returns FileStoreCollection
|
|
24021
|
+
*/
|
|
24022
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.FileStoreCollection;
|
|
24023
|
+
|
|
24024
|
+
/**
|
|
24025
|
+
* Creates a plain object from a FileStoreCollection message. Also converts values to other types if specified.
|
|
24026
|
+
* @param message FileStoreCollection
|
|
24027
|
+
* @param [options] Conversion options
|
|
24028
|
+
* @returns Plain object
|
|
24029
|
+
*/
|
|
24030
|
+
public static toObject(message: google.privacy.dlp.v2.FileStoreCollection, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
24031
|
+
|
|
24032
|
+
/**
|
|
24033
|
+
* Converts this FileStoreCollection to JSON.
|
|
24034
|
+
* @returns JSON object
|
|
24035
|
+
*/
|
|
24036
|
+
public toJSON(): { [k: string]: any };
|
|
24037
|
+
|
|
24038
|
+
/**
|
|
24039
|
+
* Gets the default type url for FileStoreCollection
|
|
24040
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
24041
|
+
* @returns The default type url
|
|
24042
|
+
*/
|
|
24043
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
24044
|
+
}
|
|
24045
|
+
|
|
24046
|
+
/** Properties of a FileStoreRegexes. */
|
|
24047
|
+
interface IFileStoreRegexes {
|
|
24048
|
+
|
|
24049
|
+
/** FileStoreRegexes patterns */
|
|
24050
|
+
patterns?: (google.privacy.dlp.v2.IFileStoreRegex[]|null);
|
|
24051
|
+
}
|
|
24052
|
+
|
|
24053
|
+
/** Represents a FileStoreRegexes. */
|
|
24054
|
+
class FileStoreRegexes implements IFileStoreRegexes {
|
|
24055
|
+
|
|
24056
|
+
/**
|
|
24057
|
+
* Constructs a new FileStoreRegexes.
|
|
24058
|
+
* @param [properties] Properties to set
|
|
24059
|
+
*/
|
|
24060
|
+
constructor(properties?: google.privacy.dlp.v2.IFileStoreRegexes);
|
|
24061
|
+
|
|
24062
|
+
/** FileStoreRegexes patterns. */
|
|
24063
|
+
public patterns: google.privacy.dlp.v2.IFileStoreRegex[];
|
|
24064
|
+
|
|
24065
|
+
/**
|
|
24066
|
+
* Creates a new FileStoreRegexes instance using the specified properties.
|
|
24067
|
+
* @param [properties] Properties to set
|
|
24068
|
+
* @returns FileStoreRegexes instance
|
|
24069
|
+
*/
|
|
24070
|
+
public static create(properties?: google.privacy.dlp.v2.IFileStoreRegexes): google.privacy.dlp.v2.FileStoreRegexes;
|
|
24071
|
+
|
|
24072
|
+
/**
|
|
24073
|
+
* Encodes the specified FileStoreRegexes message. Does not implicitly {@link google.privacy.dlp.v2.FileStoreRegexes.verify|verify} messages.
|
|
24074
|
+
* @param message FileStoreRegexes message or plain object to encode
|
|
24075
|
+
* @param [writer] Writer to encode to
|
|
24076
|
+
* @returns Writer
|
|
24077
|
+
*/
|
|
24078
|
+
public static encode(message: google.privacy.dlp.v2.IFileStoreRegexes, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
24079
|
+
|
|
24080
|
+
/**
|
|
24081
|
+
* Encodes the specified FileStoreRegexes message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.FileStoreRegexes.verify|verify} messages.
|
|
24082
|
+
* @param message FileStoreRegexes message or plain object to encode
|
|
24083
|
+
* @param [writer] Writer to encode to
|
|
24084
|
+
* @returns Writer
|
|
24085
|
+
*/
|
|
24086
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IFileStoreRegexes, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
24087
|
+
|
|
24088
|
+
/**
|
|
24089
|
+
* Decodes a FileStoreRegexes message from the specified reader or buffer.
|
|
24090
|
+
* @param reader Reader or buffer to decode from
|
|
24091
|
+
* @param [length] Message length if known beforehand
|
|
24092
|
+
* @returns FileStoreRegexes
|
|
24093
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
24094
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
24095
|
+
*/
|
|
24096
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.FileStoreRegexes;
|
|
24097
|
+
|
|
24098
|
+
/**
|
|
24099
|
+
* Decodes a FileStoreRegexes message from the specified reader or buffer, length delimited.
|
|
24100
|
+
* @param reader Reader or buffer to decode from
|
|
24101
|
+
* @returns FileStoreRegexes
|
|
24102
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
24103
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
24104
|
+
*/
|
|
24105
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.FileStoreRegexes;
|
|
24106
|
+
|
|
24107
|
+
/**
|
|
24108
|
+
* Verifies a FileStoreRegexes message.
|
|
24109
|
+
* @param message Plain object to verify
|
|
24110
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
24111
|
+
*/
|
|
24112
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
24113
|
+
|
|
24114
|
+
/**
|
|
24115
|
+
* Creates a FileStoreRegexes message from a plain object. Also converts values to their respective internal types.
|
|
24116
|
+
* @param object Plain object
|
|
24117
|
+
* @returns FileStoreRegexes
|
|
24118
|
+
*/
|
|
24119
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.FileStoreRegexes;
|
|
24120
|
+
|
|
24121
|
+
/**
|
|
24122
|
+
* Creates a plain object from a FileStoreRegexes message. Also converts values to other types if specified.
|
|
24123
|
+
* @param message FileStoreRegexes
|
|
24124
|
+
* @param [options] Conversion options
|
|
24125
|
+
* @returns Plain object
|
|
24126
|
+
*/
|
|
24127
|
+
public static toObject(message: google.privacy.dlp.v2.FileStoreRegexes, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
24128
|
+
|
|
24129
|
+
/**
|
|
24130
|
+
* Converts this FileStoreRegexes to JSON.
|
|
24131
|
+
* @returns JSON object
|
|
24132
|
+
*/
|
|
24133
|
+
public toJSON(): { [k: string]: any };
|
|
24134
|
+
|
|
24135
|
+
/**
|
|
24136
|
+
* Gets the default type url for FileStoreRegexes
|
|
24137
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
24138
|
+
* @returns The default type url
|
|
24139
|
+
*/
|
|
24140
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
24141
|
+
}
|
|
24142
|
+
|
|
24143
|
+
/** Properties of a FileStoreRegex. */
|
|
24144
|
+
interface IFileStoreRegex {
|
|
24145
|
+
|
|
24146
|
+
/** FileStoreRegex cloudStorageRegex */
|
|
24147
|
+
cloudStorageRegex?: (google.privacy.dlp.v2.ICloudStorageRegex|null);
|
|
24148
|
+
}
|
|
24149
|
+
|
|
24150
|
+
/** Represents a FileStoreRegex. */
|
|
24151
|
+
class FileStoreRegex implements IFileStoreRegex {
|
|
24152
|
+
|
|
24153
|
+
/**
|
|
24154
|
+
* Constructs a new FileStoreRegex.
|
|
24155
|
+
* @param [properties] Properties to set
|
|
24156
|
+
*/
|
|
24157
|
+
constructor(properties?: google.privacy.dlp.v2.IFileStoreRegex);
|
|
24158
|
+
|
|
24159
|
+
/** FileStoreRegex cloudStorageRegex. */
|
|
24160
|
+
public cloudStorageRegex?: (google.privacy.dlp.v2.ICloudStorageRegex|null);
|
|
24161
|
+
|
|
24162
|
+
/** FileStoreRegex resourceRegex. */
|
|
24163
|
+
public resourceRegex?: "cloudStorageRegex";
|
|
24164
|
+
|
|
24165
|
+
/**
|
|
24166
|
+
* Creates a new FileStoreRegex instance using the specified properties.
|
|
24167
|
+
* @param [properties] Properties to set
|
|
24168
|
+
* @returns FileStoreRegex instance
|
|
24169
|
+
*/
|
|
24170
|
+
public static create(properties?: google.privacy.dlp.v2.IFileStoreRegex): google.privacy.dlp.v2.FileStoreRegex;
|
|
24171
|
+
|
|
24172
|
+
/**
|
|
24173
|
+
* Encodes the specified FileStoreRegex message. Does not implicitly {@link google.privacy.dlp.v2.FileStoreRegex.verify|verify} messages.
|
|
24174
|
+
* @param message FileStoreRegex message or plain object to encode
|
|
24175
|
+
* @param [writer] Writer to encode to
|
|
24176
|
+
* @returns Writer
|
|
24177
|
+
*/
|
|
24178
|
+
public static encode(message: google.privacy.dlp.v2.IFileStoreRegex, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
24179
|
+
|
|
24180
|
+
/**
|
|
24181
|
+
* Encodes the specified FileStoreRegex message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.FileStoreRegex.verify|verify} messages.
|
|
24182
|
+
* @param message FileStoreRegex message or plain object to encode
|
|
24183
|
+
* @param [writer] Writer to encode to
|
|
24184
|
+
* @returns Writer
|
|
24185
|
+
*/
|
|
24186
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IFileStoreRegex, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
24187
|
+
|
|
24188
|
+
/**
|
|
24189
|
+
* Decodes a FileStoreRegex message from the specified reader or buffer.
|
|
24190
|
+
* @param reader Reader or buffer to decode from
|
|
24191
|
+
* @param [length] Message length if known beforehand
|
|
24192
|
+
* @returns FileStoreRegex
|
|
24193
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
24194
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
24195
|
+
*/
|
|
24196
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.FileStoreRegex;
|
|
24197
|
+
|
|
24198
|
+
/**
|
|
24199
|
+
* Decodes a FileStoreRegex message from the specified reader or buffer, length delimited.
|
|
24200
|
+
* @param reader Reader or buffer to decode from
|
|
24201
|
+
* @returns FileStoreRegex
|
|
24202
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
24203
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
24204
|
+
*/
|
|
24205
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.FileStoreRegex;
|
|
24206
|
+
|
|
24207
|
+
/**
|
|
24208
|
+
* Verifies a FileStoreRegex message.
|
|
24209
|
+
* @param message Plain object to verify
|
|
24210
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
24211
|
+
*/
|
|
24212
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
24213
|
+
|
|
24214
|
+
/**
|
|
24215
|
+
* Creates a FileStoreRegex message from a plain object. Also converts values to their respective internal types.
|
|
24216
|
+
* @param object Plain object
|
|
24217
|
+
* @returns FileStoreRegex
|
|
24218
|
+
*/
|
|
24219
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.FileStoreRegex;
|
|
24220
|
+
|
|
24221
|
+
/**
|
|
24222
|
+
* Creates a plain object from a FileStoreRegex message. Also converts values to other types if specified.
|
|
24223
|
+
* @param message FileStoreRegex
|
|
24224
|
+
* @param [options] Conversion options
|
|
24225
|
+
* @returns Plain object
|
|
24226
|
+
*/
|
|
24227
|
+
public static toObject(message: google.privacy.dlp.v2.FileStoreRegex, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
24228
|
+
|
|
24229
|
+
/**
|
|
24230
|
+
* Converts this FileStoreRegex to JSON.
|
|
24231
|
+
* @returns JSON object
|
|
24232
|
+
*/
|
|
24233
|
+
public toJSON(): { [k: string]: any };
|
|
24234
|
+
|
|
24235
|
+
/**
|
|
24236
|
+
* Gets the default type url for FileStoreRegex
|
|
24237
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
24238
|
+
* @returns The default type url
|
|
24239
|
+
*/
|
|
24240
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
24241
|
+
}
|
|
24242
|
+
|
|
24243
|
+
/** Properties of a CloudStorageRegex. */
|
|
24244
|
+
interface ICloudStorageRegex {
|
|
24245
|
+
|
|
24246
|
+
/** CloudStorageRegex projectIdRegex */
|
|
24247
|
+
projectIdRegex?: (string|null);
|
|
24248
|
+
|
|
24249
|
+
/** CloudStorageRegex bucketNameRegex */
|
|
24250
|
+
bucketNameRegex?: (string|null);
|
|
24251
|
+
}
|
|
24252
|
+
|
|
24253
|
+
/** Represents a CloudStorageRegex. */
|
|
24254
|
+
class CloudStorageRegex implements ICloudStorageRegex {
|
|
24255
|
+
|
|
24256
|
+
/**
|
|
24257
|
+
* Constructs a new CloudStorageRegex.
|
|
24258
|
+
* @param [properties] Properties to set
|
|
24259
|
+
*/
|
|
24260
|
+
constructor(properties?: google.privacy.dlp.v2.ICloudStorageRegex);
|
|
24261
|
+
|
|
24262
|
+
/** CloudStorageRegex projectIdRegex. */
|
|
24263
|
+
public projectIdRegex: string;
|
|
24264
|
+
|
|
24265
|
+
/** CloudStorageRegex bucketNameRegex. */
|
|
24266
|
+
public bucketNameRegex: string;
|
|
24267
|
+
|
|
24268
|
+
/**
|
|
24269
|
+
* Creates a new CloudStorageRegex instance using the specified properties.
|
|
24270
|
+
* @param [properties] Properties to set
|
|
24271
|
+
* @returns CloudStorageRegex instance
|
|
24272
|
+
*/
|
|
24273
|
+
public static create(properties?: google.privacy.dlp.v2.ICloudStorageRegex): google.privacy.dlp.v2.CloudStorageRegex;
|
|
24274
|
+
|
|
24275
|
+
/**
|
|
24276
|
+
* Encodes the specified CloudStorageRegex message. Does not implicitly {@link google.privacy.dlp.v2.CloudStorageRegex.verify|verify} messages.
|
|
24277
|
+
* @param message CloudStorageRegex message or plain object to encode
|
|
24278
|
+
* @param [writer] Writer to encode to
|
|
24279
|
+
* @returns Writer
|
|
24280
|
+
*/
|
|
24281
|
+
public static encode(message: google.privacy.dlp.v2.ICloudStorageRegex, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
24282
|
+
|
|
24283
|
+
/**
|
|
24284
|
+
* Encodes the specified CloudStorageRegex message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.CloudStorageRegex.verify|verify} messages.
|
|
24285
|
+
* @param message CloudStorageRegex message or plain object to encode
|
|
24286
|
+
* @param [writer] Writer to encode to
|
|
24287
|
+
* @returns Writer
|
|
24288
|
+
*/
|
|
24289
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.ICloudStorageRegex, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
24290
|
+
|
|
24291
|
+
/**
|
|
24292
|
+
* Decodes a CloudStorageRegex message from the specified reader or buffer.
|
|
24293
|
+
* @param reader Reader or buffer to decode from
|
|
24294
|
+
* @param [length] Message length if known beforehand
|
|
24295
|
+
* @returns CloudStorageRegex
|
|
24296
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
24297
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
24298
|
+
*/
|
|
24299
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.CloudStorageRegex;
|
|
24300
|
+
|
|
24301
|
+
/**
|
|
24302
|
+
* Decodes a CloudStorageRegex message from the specified reader or buffer, length delimited.
|
|
24303
|
+
* @param reader Reader or buffer to decode from
|
|
24304
|
+
* @returns CloudStorageRegex
|
|
24305
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
24306
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
24307
|
+
*/
|
|
24308
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.CloudStorageRegex;
|
|
24309
|
+
|
|
24310
|
+
/**
|
|
24311
|
+
* Verifies a CloudStorageRegex message.
|
|
24312
|
+
* @param message Plain object to verify
|
|
24313
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
24314
|
+
*/
|
|
24315
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
24316
|
+
|
|
24317
|
+
/**
|
|
24318
|
+
* Creates a CloudStorageRegex message from a plain object. Also converts values to their respective internal types.
|
|
24319
|
+
* @param object Plain object
|
|
24320
|
+
* @returns CloudStorageRegex
|
|
24321
|
+
*/
|
|
24322
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.CloudStorageRegex;
|
|
24323
|
+
|
|
24324
|
+
/**
|
|
24325
|
+
* Creates a plain object from a CloudStorageRegex message. Also converts values to other types if specified.
|
|
24326
|
+
* @param message CloudStorageRegex
|
|
24327
|
+
* @param [options] Conversion options
|
|
24328
|
+
* @returns Plain object
|
|
24329
|
+
*/
|
|
24330
|
+
public static toObject(message: google.privacy.dlp.v2.CloudStorageRegex, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
24331
|
+
|
|
24332
|
+
/**
|
|
24333
|
+
* Converts this CloudStorageRegex to JSON.
|
|
24334
|
+
* @returns JSON object
|
|
24335
|
+
*/
|
|
24336
|
+
public toJSON(): { [k: string]: any };
|
|
24337
|
+
|
|
24338
|
+
/**
|
|
24339
|
+
* Gets the default type url for CloudStorageRegex
|
|
24340
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
24341
|
+
* @returns The default type url
|
|
24342
|
+
*/
|
|
24343
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
24344
|
+
}
|
|
24345
|
+
|
|
24346
|
+
/** Properties of a CloudStorageResourceReference. */
|
|
24347
|
+
interface ICloudStorageResourceReference {
|
|
24348
|
+
|
|
24349
|
+
/** CloudStorageResourceReference bucketName */
|
|
24350
|
+
bucketName?: (string|null);
|
|
24351
|
+
|
|
24352
|
+
/** CloudStorageResourceReference projectId */
|
|
24353
|
+
projectId?: (string|null);
|
|
24354
|
+
}
|
|
24355
|
+
|
|
24356
|
+
/** Represents a CloudStorageResourceReference. */
|
|
24357
|
+
class CloudStorageResourceReference implements ICloudStorageResourceReference {
|
|
24358
|
+
|
|
24359
|
+
/**
|
|
24360
|
+
* Constructs a new CloudStorageResourceReference.
|
|
24361
|
+
* @param [properties] Properties to set
|
|
24362
|
+
*/
|
|
24363
|
+
constructor(properties?: google.privacy.dlp.v2.ICloudStorageResourceReference);
|
|
24364
|
+
|
|
24365
|
+
/** CloudStorageResourceReference bucketName. */
|
|
24366
|
+
public bucketName: string;
|
|
24367
|
+
|
|
24368
|
+
/** CloudStorageResourceReference projectId. */
|
|
24369
|
+
public projectId: string;
|
|
24370
|
+
|
|
24371
|
+
/**
|
|
24372
|
+
* Creates a new CloudStorageResourceReference instance using the specified properties.
|
|
24373
|
+
* @param [properties] Properties to set
|
|
24374
|
+
* @returns CloudStorageResourceReference instance
|
|
24375
|
+
*/
|
|
24376
|
+
public static create(properties?: google.privacy.dlp.v2.ICloudStorageResourceReference): google.privacy.dlp.v2.CloudStorageResourceReference;
|
|
24377
|
+
|
|
24378
|
+
/**
|
|
24379
|
+
* Encodes the specified CloudStorageResourceReference message. Does not implicitly {@link google.privacy.dlp.v2.CloudStorageResourceReference.verify|verify} messages.
|
|
24380
|
+
* @param message CloudStorageResourceReference message or plain object to encode
|
|
24381
|
+
* @param [writer] Writer to encode to
|
|
24382
|
+
* @returns Writer
|
|
24383
|
+
*/
|
|
24384
|
+
public static encode(message: google.privacy.dlp.v2.ICloudStorageResourceReference, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
24385
|
+
|
|
24386
|
+
/**
|
|
24387
|
+
* Encodes the specified CloudStorageResourceReference message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.CloudStorageResourceReference.verify|verify} messages.
|
|
24388
|
+
* @param message CloudStorageResourceReference message or plain object to encode
|
|
24389
|
+
* @param [writer] Writer to encode to
|
|
24390
|
+
* @returns Writer
|
|
24391
|
+
*/
|
|
24392
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.ICloudStorageResourceReference, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
24393
|
+
|
|
24394
|
+
/**
|
|
24395
|
+
* Decodes a CloudStorageResourceReference message from the specified reader or buffer.
|
|
24396
|
+
* @param reader Reader or buffer to decode from
|
|
24397
|
+
* @param [length] Message length if known beforehand
|
|
24398
|
+
* @returns CloudStorageResourceReference
|
|
24399
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
24400
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
24401
|
+
*/
|
|
24402
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.CloudStorageResourceReference;
|
|
24403
|
+
|
|
24404
|
+
/**
|
|
24405
|
+
* Decodes a CloudStorageResourceReference message from the specified reader or buffer, length delimited.
|
|
24406
|
+
* @param reader Reader or buffer to decode from
|
|
24407
|
+
* @returns CloudStorageResourceReference
|
|
24408
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
24409
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
24410
|
+
*/
|
|
24411
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.CloudStorageResourceReference;
|
|
24412
|
+
|
|
24413
|
+
/**
|
|
24414
|
+
* Verifies a CloudStorageResourceReference message.
|
|
24415
|
+
* @param message Plain object to verify
|
|
24416
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
24417
|
+
*/
|
|
24418
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
24419
|
+
|
|
24420
|
+
/**
|
|
24421
|
+
* Creates a CloudStorageResourceReference message from a plain object. Also converts values to their respective internal types.
|
|
24422
|
+
* @param object Plain object
|
|
24423
|
+
* @returns CloudStorageResourceReference
|
|
24424
|
+
*/
|
|
24425
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.CloudStorageResourceReference;
|
|
24426
|
+
|
|
24427
|
+
/**
|
|
24428
|
+
* Creates a plain object from a CloudStorageResourceReference message. Also converts values to other types if specified.
|
|
24429
|
+
* @param message CloudStorageResourceReference
|
|
24430
|
+
* @param [options] Conversion options
|
|
24431
|
+
* @returns Plain object
|
|
24432
|
+
*/
|
|
24433
|
+
public static toObject(message: google.privacy.dlp.v2.CloudStorageResourceReference, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
24434
|
+
|
|
24435
|
+
/**
|
|
24436
|
+
* Converts this CloudStorageResourceReference to JSON.
|
|
24437
|
+
* @returns JSON object
|
|
24438
|
+
*/
|
|
24439
|
+
public toJSON(): { [k: string]: any };
|
|
24440
|
+
|
|
24441
|
+
/**
|
|
24442
|
+
* Gets the default type url for CloudStorageResourceReference
|
|
24443
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
24444
|
+
* @returns The default type url
|
|
24445
|
+
*/
|
|
24446
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
24447
|
+
}
|
|
24448
|
+
|
|
24449
|
+
/** Properties of a DiscoveryCloudStorageGenerationCadence. */
|
|
24450
|
+
interface IDiscoveryCloudStorageGenerationCadence {
|
|
24451
|
+
|
|
24452
|
+
/** DiscoveryCloudStorageGenerationCadence refreshFrequency */
|
|
24453
|
+
refreshFrequency?: (google.privacy.dlp.v2.DataProfileUpdateFrequency|keyof typeof google.privacy.dlp.v2.DataProfileUpdateFrequency|null);
|
|
24454
|
+
|
|
24455
|
+
/** DiscoveryCloudStorageGenerationCadence inspectTemplateModifiedCadence */
|
|
24456
|
+
inspectTemplateModifiedCadence?: (google.privacy.dlp.v2.IDiscoveryInspectTemplateModifiedCadence|null);
|
|
24457
|
+
}
|
|
24458
|
+
|
|
24459
|
+
/** Represents a DiscoveryCloudStorageGenerationCadence. */
|
|
24460
|
+
class DiscoveryCloudStorageGenerationCadence implements IDiscoveryCloudStorageGenerationCadence {
|
|
24461
|
+
|
|
24462
|
+
/**
|
|
24463
|
+
* Constructs a new DiscoveryCloudStorageGenerationCadence.
|
|
24464
|
+
* @param [properties] Properties to set
|
|
24465
|
+
*/
|
|
24466
|
+
constructor(properties?: google.privacy.dlp.v2.IDiscoveryCloudStorageGenerationCadence);
|
|
24467
|
+
|
|
24468
|
+
/** DiscoveryCloudStorageGenerationCadence refreshFrequency. */
|
|
24469
|
+
public refreshFrequency: (google.privacy.dlp.v2.DataProfileUpdateFrequency|keyof typeof google.privacy.dlp.v2.DataProfileUpdateFrequency);
|
|
24470
|
+
|
|
24471
|
+
/** DiscoveryCloudStorageGenerationCadence inspectTemplateModifiedCadence. */
|
|
24472
|
+
public inspectTemplateModifiedCadence?: (google.privacy.dlp.v2.IDiscoveryInspectTemplateModifiedCadence|null);
|
|
24473
|
+
|
|
24474
|
+
/**
|
|
24475
|
+
* Creates a new DiscoveryCloudStorageGenerationCadence instance using the specified properties.
|
|
24476
|
+
* @param [properties] Properties to set
|
|
24477
|
+
* @returns DiscoveryCloudStorageGenerationCadence instance
|
|
24478
|
+
*/
|
|
24479
|
+
public static create(properties?: google.privacy.dlp.v2.IDiscoveryCloudStorageGenerationCadence): google.privacy.dlp.v2.DiscoveryCloudStorageGenerationCadence;
|
|
24480
|
+
|
|
24481
|
+
/**
|
|
24482
|
+
* Encodes the specified DiscoveryCloudStorageGenerationCadence message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryCloudStorageGenerationCadence.verify|verify} messages.
|
|
24483
|
+
* @param message DiscoveryCloudStorageGenerationCadence message or plain object to encode
|
|
24484
|
+
* @param [writer] Writer to encode to
|
|
24485
|
+
* @returns Writer
|
|
24486
|
+
*/
|
|
24487
|
+
public static encode(message: google.privacy.dlp.v2.IDiscoveryCloudStorageGenerationCadence, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
24488
|
+
|
|
24489
|
+
/**
|
|
24490
|
+
* Encodes the specified DiscoveryCloudStorageGenerationCadence message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryCloudStorageGenerationCadence.verify|verify} messages.
|
|
24491
|
+
* @param message DiscoveryCloudStorageGenerationCadence message or plain object to encode
|
|
24492
|
+
* @param [writer] Writer to encode to
|
|
24493
|
+
* @returns Writer
|
|
24494
|
+
*/
|
|
24495
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoveryCloudStorageGenerationCadence, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
24496
|
+
|
|
24497
|
+
/**
|
|
24498
|
+
* Decodes a DiscoveryCloudStorageGenerationCadence message from the specified reader or buffer.
|
|
24499
|
+
* @param reader Reader or buffer to decode from
|
|
24500
|
+
* @param [length] Message length if known beforehand
|
|
24501
|
+
* @returns DiscoveryCloudStorageGenerationCadence
|
|
24502
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
24503
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
24504
|
+
*/
|
|
24505
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryCloudStorageGenerationCadence;
|
|
24506
|
+
|
|
24507
|
+
/**
|
|
24508
|
+
* Decodes a DiscoveryCloudStorageGenerationCadence message from the specified reader or buffer, length delimited.
|
|
24509
|
+
* @param reader Reader or buffer to decode from
|
|
24510
|
+
* @returns DiscoveryCloudStorageGenerationCadence
|
|
24511
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
24512
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
24513
|
+
*/
|
|
24514
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryCloudStorageGenerationCadence;
|
|
24515
|
+
|
|
24516
|
+
/**
|
|
24517
|
+
* Verifies a DiscoveryCloudStorageGenerationCadence message.
|
|
24518
|
+
* @param message Plain object to verify
|
|
24519
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
24520
|
+
*/
|
|
24521
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
24522
|
+
|
|
24523
|
+
/**
|
|
24524
|
+
* Creates a DiscoveryCloudStorageGenerationCadence message from a plain object. Also converts values to their respective internal types.
|
|
24525
|
+
* @param object Plain object
|
|
24526
|
+
* @returns DiscoveryCloudStorageGenerationCadence
|
|
24527
|
+
*/
|
|
24528
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryCloudStorageGenerationCadence;
|
|
24529
|
+
|
|
24530
|
+
/**
|
|
24531
|
+
* Creates a plain object from a DiscoveryCloudStorageGenerationCadence message. Also converts values to other types if specified.
|
|
24532
|
+
* @param message DiscoveryCloudStorageGenerationCadence
|
|
24533
|
+
* @param [options] Conversion options
|
|
24534
|
+
* @returns Plain object
|
|
24535
|
+
*/
|
|
24536
|
+
public static toObject(message: google.privacy.dlp.v2.DiscoveryCloudStorageGenerationCadence, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
24537
|
+
|
|
24538
|
+
/**
|
|
24539
|
+
* Converts this DiscoveryCloudStorageGenerationCadence to JSON.
|
|
24540
|
+
* @returns JSON object
|
|
24541
|
+
*/
|
|
24542
|
+
public toJSON(): { [k: string]: any };
|
|
24543
|
+
|
|
24544
|
+
/**
|
|
24545
|
+
* Gets the default type url for DiscoveryCloudStorageGenerationCadence
|
|
24546
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
24547
|
+
* @returns The default type url
|
|
24548
|
+
*/
|
|
24549
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
24550
|
+
}
|
|
24551
|
+
|
|
24552
|
+
/** Properties of a DiscoveryCloudStorageConditions. */
|
|
24553
|
+
interface IDiscoveryCloudStorageConditions {
|
|
24554
|
+
|
|
24555
|
+
/** DiscoveryCloudStorageConditions includedObjectAttributes */
|
|
24556
|
+
includedObjectAttributes?: (google.privacy.dlp.v2.DiscoveryCloudStorageConditions.CloudStorageObjectAttribute[]|null);
|
|
24557
|
+
|
|
24558
|
+
/** DiscoveryCloudStorageConditions includedBucketAttributes */
|
|
24559
|
+
includedBucketAttributes?: (google.privacy.dlp.v2.DiscoveryCloudStorageConditions.CloudStorageBucketAttribute[]|null);
|
|
24560
|
+
}
|
|
24561
|
+
|
|
24562
|
+
/** Represents a DiscoveryCloudStorageConditions. */
|
|
24563
|
+
class DiscoveryCloudStorageConditions implements IDiscoveryCloudStorageConditions {
|
|
24564
|
+
|
|
24565
|
+
/**
|
|
24566
|
+
* Constructs a new DiscoveryCloudStorageConditions.
|
|
24567
|
+
* @param [properties] Properties to set
|
|
24568
|
+
*/
|
|
24569
|
+
constructor(properties?: google.privacy.dlp.v2.IDiscoveryCloudStorageConditions);
|
|
24570
|
+
|
|
24571
|
+
/** DiscoveryCloudStorageConditions includedObjectAttributes. */
|
|
24572
|
+
public includedObjectAttributes: google.privacy.dlp.v2.DiscoveryCloudStorageConditions.CloudStorageObjectAttribute[];
|
|
24573
|
+
|
|
24574
|
+
/** DiscoveryCloudStorageConditions includedBucketAttributes. */
|
|
24575
|
+
public includedBucketAttributes: google.privacy.dlp.v2.DiscoveryCloudStorageConditions.CloudStorageBucketAttribute[];
|
|
24576
|
+
|
|
24577
|
+
/**
|
|
24578
|
+
* Creates a new DiscoveryCloudStorageConditions instance using the specified properties.
|
|
24579
|
+
* @param [properties] Properties to set
|
|
24580
|
+
* @returns DiscoveryCloudStorageConditions instance
|
|
24581
|
+
*/
|
|
24582
|
+
public static create(properties?: google.privacy.dlp.v2.IDiscoveryCloudStorageConditions): google.privacy.dlp.v2.DiscoveryCloudStorageConditions;
|
|
24583
|
+
|
|
24584
|
+
/**
|
|
24585
|
+
* Encodes the specified DiscoveryCloudStorageConditions message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryCloudStorageConditions.verify|verify} messages.
|
|
24586
|
+
* @param message DiscoveryCloudStorageConditions message or plain object to encode
|
|
24587
|
+
* @param [writer] Writer to encode to
|
|
24588
|
+
* @returns Writer
|
|
24589
|
+
*/
|
|
24590
|
+
public static encode(message: google.privacy.dlp.v2.IDiscoveryCloudStorageConditions, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
24591
|
+
|
|
24592
|
+
/**
|
|
24593
|
+
* Encodes the specified DiscoveryCloudStorageConditions message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryCloudStorageConditions.verify|verify} messages.
|
|
24594
|
+
* @param message DiscoveryCloudStorageConditions message or plain object to encode
|
|
24595
|
+
* @param [writer] Writer to encode to
|
|
24596
|
+
* @returns Writer
|
|
24597
|
+
*/
|
|
24598
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoveryCloudStorageConditions, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
24599
|
+
|
|
24600
|
+
/**
|
|
24601
|
+
* Decodes a DiscoveryCloudStorageConditions message from the specified reader or buffer.
|
|
24602
|
+
* @param reader Reader or buffer to decode from
|
|
24603
|
+
* @param [length] Message length if known beforehand
|
|
24604
|
+
* @returns DiscoveryCloudStorageConditions
|
|
24605
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
24606
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
24607
|
+
*/
|
|
24608
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryCloudStorageConditions;
|
|
24609
|
+
|
|
24610
|
+
/**
|
|
24611
|
+
* Decodes a DiscoveryCloudStorageConditions message from the specified reader or buffer, length delimited.
|
|
24612
|
+
* @param reader Reader or buffer to decode from
|
|
24613
|
+
* @returns DiscoveryCloudStorageConditions
|
|
24614
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
24615
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
24616
|
+
*/
|
|
24617
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryCloudStorageConditions;
|
|
24618
|
+
|
|
24619
|
+
/**
|
|
24620
|
+
* Verifies a DiscoveryCloudStorageConditions message.
|
|
24621
|
+
* @param message Plain object to verify
|
|
24622
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
24623
|
+
*/
|
|
24624
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
24625
|
+
|
|
24626
|
+
/**
|
|
24627
|
+
* Creates a DiscoveryCloudStorageConditions message from a plain object. Also converts values to their respective internal types.
|
|
24628
|
+
* @param object Plain object
|
|
24629
|
+
* @returns DiscoveryCloudStorageConditions
|
|
24630
|
+
*/
|
|
24631
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryCloudStorageConditions;
|
|
24632
|
+
|
|
24633
|
+
/**
|
|
24634
|
+
* Creates a plain object from a DiscoveryCloudStorageConditions message. Also converts values to other types if specified.
|
|
24635
|
+
* @param message DiscoveryCloudStorageConditions
|
|
24636
|
+
* @param [options] Conversion options
|
|
24637
|
+
* @returns Plain object
|
|
24638
|
+
*/
|
|
24639
|
+
public static toObject(message: google.privacy.dlp.v2.DiscoveryCloudStorageConditions, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
24640
|
+
|
|
24641
|
+
/**
|
|
24642
|
+
* Converts this DiscoveryCloudStorageConditions to JSON.
|
|
24643
|
+
* @returns JSON object
|
|
24644
|
+
*/
|
|
24645
|
+
public toJSON(): { [k: string]: any };
|
|
24646
|
+
|
|
24647
|
+
/**
|
|
24648
|
+
* Gets the default type url for DiscoveryCloudStorageConditions
|
|
24649
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
24650
|
+
* @returns The default type url
|
|
24651
|
+
*/
|
|
24652
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
24653
|
+
}
|
|
24654
|
+
|
|
24655
|
+
namespace DiscoveryCloudStorageConditions {
|
|
24656
|
+
|
|
24657
|
+
/** CloudStorageObjectAttribute enum. */
|
|
24658
|
+
enum CloudStorageObjectAttribute {
|
|
24659
|
+
CLOUD_STORAGE_OBJECT_ATTRIBUTE_UNSPECIFIED = 0,
|
|
24660
|
+
ALL_SUPPORTED_OBJECTS = 1,
|
|
24661
|
+
STANDARD = 2,
|
|
24662
|
+
NEARLINE = 3,
|
|
24663
|
+
COLDLINE = 4,
|
|
24664
|
+
ARCHIVE = 5,
|
|
24665
|
+
REGIONAL = 6,
|
|
24666
|
+
MULTI_REGIONAL = 7,
|
|
24667
|
+
DURABLE_REDUCED_AVAILABILITY = 8
|
|
24668
|
+
}
|
|
24669
|
+
|
|
24670
|
+
/** CloudStorageBucketAttribute enum. */
|
|
24671
|
+
enum CloudStorageBucketAttribute {
|
|
24672
|
+
CLOUD_STORAGE_BUCKET_ATTRIBUTE_UNSPECIFIED = 0,
|
|
24673
|
+
ALL_SUPPORTED_BUCKETS = 1,
|
|
24674
|
+
AUTOCLASS_DISABLED = 2,
|
|
24675
|
+
AUTOCLASS_ENABLED = 3
|
|
24676
|
+
}
|
|
24677
|
+
}
|
|
24678
|
+
|
|
24679
|
+
/** Properties of a DiscoveryFileStoreConditions. */
|
|
24680
|
+
interface IDiscoveryFileStoreConditions {
|
|
24681
|
+
|
|
24682
|
+
/** DiscoveryFileStoreConditions createdAfter */
|
|
24683
|
+
createdAfter?: (google.protobuf.ITimestamp|null);
|
|
24684
|
+
|
|
24685
|
+
/** DiscoveryFileStoreConditions minAge */
|
|
24686
|
+
minAge?: (google.protobuf.IDuration|null);
|
|
24687
|
+
|
|
24688
|
+
/** DiscoveryFileStoreConditions cloudStorageConditions */
|
|
24689
|
+
cloudStorageConditions?: (google.privacy.dlp.v2.IDiscoveryCloudStorageConditions|null);
|
|
24690
|
+
}
|
|
24691
|
+
|
|
24692
|
+
/** Represents a DiscoveryFileStoreConditions. */
|
|
24693
|
+
class DiscoveryFileStoreConditions implements IDiscoveryFileStoreConditions {
|
|
24694
|
+
|
|
24695
|
+
/**
|
|
24696
|
+
* Constructs a new DiscoveryFileStoreConditions.
|
|
24697
|
+
* @param [properties] Properties to set
|
|
24698
|
+
*/
|
|
24699
|
+
constructor(properties?: google.privacy.dlp.v2.IDiscoveryFileStoreConditions);
|
|
24700
|
+
|
|
24701
|
+
/** DiscoveryFileStoreConditions createdAfter. */
|
|
24702
|
+
public createdAfter?: (google.protobuf.ITimestamp|null);
|
|
24703
|
+
|
|
24704
|
+
/** DiscoveryFileStoreConditions minAge. */
|
|
24705
|
+
public minAge?: (google.protobuf.IDuration|null);
|
|
24706
|
+
|
|
24707
|
+
/** DiscoveryFileStoreConditions cloudStorageConditions. */
|
|
24708
|
+
public cloudStorageConditions?: (google.privacy.dlp.v2.IDiscoveryCloudStorageConditions|null);
|
|
24709
|
+
|
|
24710
|
+
/** DiscoveryFileStoreConditions conditions. */
|
|
24711
|
+
public conditions?: "cloudStorageConditions";
|
|
24712
|
+
|
|
24713
|
+
/**
|
|
24714
|
+
* Creates a new DiscoveryFileStoreConditions instance using the specified properties.
|
|
24715
|
+
* @param [properties] Properties to set
|
|
24716
|
+
* @returns DiscoveryFileStoreConditions instance
|
|
24717
|
+
*/
|
|
24718
|
+
public static create(properties?: google.privacy.dlp.v2.IDiscoveryFileStoreConditions): google.privacy.dlp.v2.DiscoveryFileStoreConditions;
|
|
24719
|
+
|
|
24720
|
+
/**
|
|
24721
|
+
* Encodes the specified DiscoveryFileStoreConditions message. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryFileStoreConditions.verify|verify} messages.
|
|
24722
|
+
* @param message DiscoveryFileStoreConditions message or plain object to encode
|
|
24723
|
+
* @param [writer] Writer to encode to
|
|
24724
|
+
* @returns Writer
|
|
24725
|
+
*/
|
|
24726
|
+
public static encode(message: google.privacy.dlp.v2.IDiscoveryFileStoreConditions, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
24727
|
+
|
|
24728
|
+
/**
|
|
24729
|
+
* Encodes the specified DiscoveryFileStoreConditions message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DiscoveryFileStoreConditions.verify|verify} messages.
|
|
24730
|
+
* @param message DiscoveryFileStoreConditions message or plain object to encode
|
|
24731
|
+
* @param [writer] Writer to encode to
|
|
24732
|
+
* @returns Writer
|
|
24733
|
+
*/
|
|
24734
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IDiscoveryFileStoreConditions, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
24735
|
+
|
|
24736
|
+
/**
|
|
24737
|
+
* Decodes a DiscoveryFileStoreConditions message from the specified reader or buffer.
|
|
24738
|
+
* @param reader Reader or buffer to decode from
|
|
24739
|
+
* @param [length] Message length if known beforehand
|
|
24740
|
+
* @returns DiscoveryFileStoreConditions
|
|
24741
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
24742
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
24743
|
+
*/
|
|
24744
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DiscoveryFileStoreConditions;
|
|
24745
|
+
|
|
24746
|
+
/**
|
|
24747
|
+
* Decodes a DiscoveryFileStoreConditions message from the specified reader or buffer, length delimited.
|
|
24748
|
+
* @param reader Reader or buffer to decode from
|
|
24749
|
+
* @returns DiscoveryFileStoreConditions
|
|
24750
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
24751
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
24752
|
+
*/
|
|
24753
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DiscoveryFileStoreConditions;
|
|
24754
|
+
|
|
24755
|
+
/**
|
|
24756
|
+
* Verifies a DiscoveryFileStoreConditions message.
|
|
24757
|
+
* @param message Plain object to verify
|
|
24758
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
24759
|
+
*/
|
|
24760
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
24761
|
+
|
|
24762
|
+
/**
|
|
24763
|
+
* Creates a DiscoveryFileStoreConditions message from a plain object. Also converts values to their respective internal types.
|
|
24764
|
+
* @param object Plain object
|
|
24765
|
+
* @returns DiscoveryFileStoreConditions
|
|
24766
|
+
*/
|
|
24767
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DiscoveryFileStoreConditions;
|
|
24768
|
+
|
|
24769
|
+
/**
|
|
24770
|
+
* Creates a plain object from a DiscoveryFileStoreConditions message. Also converts values to other types if specified.
|
|
24771
|
+
* @param message DiscoveryFileStoreConditions
|
|
24772
|
+
* @param [options] Conversion options
|
|
24773
|
+
* @returns Plain object
|
|
24774
|
+
*/
|
|
24775
|
+
public static toObject(message: google.privacy.dlp.v2.DiscoveryFileStoreConditions, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
24776
|
+
|
|
24777
|
+
/**
|
|
24778
|
+
* Converts this DiscoveryFileStoreConditions to JSON.
|
|
24779
|
+
* @returns JSON object
|
|
24780
|
+
*/
|
|
24781
|
+
public toJSON(): { [k: string]: any };
|
|
24782
|
+
|
|
24783
|
+
/**
|
|
24784
|
+
* Gets the default type url for DiscoveryFileStoreConditions
|
|
24785
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
24786
|
+
* @returns The default type url
|
|
24787
|
+
*/
|
|
24788
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
24789
|
+
}
|
|
24790
|
+
|
|
23400
24791
|
/** Properties of a DiscoveryStartingLocation. */
|
|
23401
24792
|
interface IDiscoveryStartingLocation {
|
|
23402
24793
|
|
|
@@ -23503,6 +24894,97 @@ export namespace google {
|
|
|
23503
24894
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
23504
24895
|
}
|
|
23505
24896
|
|
|
24897
|
+
/** Properties of an AllOtherResources. */
|
|
24898
|
+
interface IAllOtherResources {
|
|
24899
|
+
}
|
|
24900
|
+
|
|
24901
|
+
/** Represents an AllOtherResources. */
|
|
24902
|
+
class AllOtherResources implements IAllOtherResources {
|
|
24903
|
+
|
|
24904
|
+
/**
|
|
24905
|
+
* Constructs a new AllOtherResources.
|
|
24906
|
+
* @param [properties] Properties to set
|
|
24907
|
+
*/
|
|
24908
|
+
constructor(properties?: google.privacy.dlp.v2.IAllOtherResources);
|
|
24909
|
+
|
|
24910
|
+
/**
|
|
24911
|
+
* Creates a new AllOtherResources instance using the specified properties.
|
|
24912
|
+
* @param [properties] Properties to set
|
|
24913
|
+
* @returns AllOtherResources instance
|
|
24914
|
+
*/
|
|
24915
|
+
public static create(properties?: google.privacy.dlp.v2.IAllOtherResources): google.privacy.dlp.v2.AllOtherResources;
|
|
24916
|
+
|
|
24917
|
+
/**
|
|
24918
|
+
* Encodes the specified AllOtherResources message. Does not implicitly {@link google.privacy.dlp.v2.AllOtherResources.verify|verify} messages.
|
|
24919
|
+
* @param message AllOtherResources message or plain object to encode
|
|
24920
|
+
* @param [writer] Writer to encode to
|
|
24921
|
+
* @returns Writer
|
|
24922
|
+
*/
|
|
24923
|
+
public static encode(message: google.privacy.dlp.v2.IAllOtherResources, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
24924
|
+
|
|
24925
|
+
/**
|
|
24926
|
+
* Encodes the specified AllOtherResources message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.AllOtherResources.verify|verify} messages.
|
|
24927
|
+
* @param message AllOtherResources message or plain object to encode
|
|
24928
|
+
* @param [writer] Writer to encode to
|
|
24929
|
+
* @returns Writer
|
|
24930
|
+
*/
|
|
24931
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IAllOtherResources, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
24932
|
+
|
|
24933
|
+
/**
|
|
24934
|
+
* Decodes an AllOtherResources message from the specified reader or buffer.
|
|
24935
|
+
* @param reader Reader or buffer to decode from
|
|
24936
|
+
* @param [length] Message length if known beforehand
|
|
24937
|
+
* @returns AllOtherResources
|
|
24938
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
24939
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
24940
|
+
*/
|
|
24941
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.AllOtherResources;
|
|
24942
|
+
|
|
24943
|
+
/**
|
|
24944
|
+
* Decodes an AllOtherResources message from the specified reader or buffer, length delimited.
|
|
24945
|
+
* @param reader Reader or buffer to decode from
|
|
24946
|
+
* @returns AllOtherResources
|
|
24947
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
24948
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
24949
|
+
*/
|
|
24950
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.AllOtherResources;
|
|
24951
|
+
|
|
24952
|
+
/**
|
|
24953
|
+
* Verifies an AllOtherResources message.
|
|
24954
|
+
* @param message Plain object to verify
|
|
24955
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
24956
|
+
*/
|
|
24957
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
24958
|
+
|
|
24959
|
+
/**
|
|
24960
|
+
* Creates an AllOtherResources message from a plain object. Also converts values to their respective internal types.
|
|
24961
|
+
* @param object Plain object
|
|
24962
|
+
* @returns AllOtherResources
|
|
24963
|
+
*/
|
|
24964
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.AllOtherResources;
|
|
24965
|
+
|
|
24966
|
+
/**
|
|
24967
|
+
* Creates a plain object from an AllOtherResources message. Also converts values to other types if specified.
|
|
24968
|
+
* @param message AllOtherResources
|
|
24969
|
+
* @param [options] Conversion options
|
|
24970
|
+
* @returns Plain object
|
|
24971
|
+
*/
|
|
24972
|
+
public static toObject(message: google.privacy.dlp.v2.AllOtherResources, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
24973
|
+
|
|
24974
|
+
/**
|
|
24975
|
+
* Converts this AllOtherResources to JSON.
|
|
24976
|
+
* @returns JSON object
|
|
24977
|
+
*/
|
|
24978
|
+
public toJSON(): { [k: string]: any };
|
|
24979
|
+
|
|
24980
|
+
/**
|
|
24981
|
+
* Gets the default type url for AllOtherResources
|
|
24982
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
24983
|
+
* @returns The default type url
|
|
24984
|
+
*/
|
|
24985
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
24986
|
+
}
|
|
24987
|
+
|
|
23506
24988
|
/** Properties of a DlpJob. */
|
|
23507
24989
|
interface IDlpJob {
|
|
23508
24990
|
|
|
@@ -27606,6 +29088,7 @@ export namespace google {
|
|
|
27606
29088
|
enum DataRiskLevelScore {
|
|
27607
29089
|
RISK_SCORE_UNSPECIFIED = 0,
|
|
27608
29090
|
RISK_LOW = 10,
|
|
29091
|
+
RISK_UNKNOWN = 12,
|
|
27609
29092
|
RISK_MODERATE = 20,
|
|
27610
29093
|
RISK_HIGH = 30
|
|
27611
29094
|
}
|
|
@@ -27631,6 +29114,12 @@ export namespace google {
|
|
|
27631
29114
|
|
|
27632
29115
|
/** ProjectDataProfile profileStatus */
|
|
27633
29116
|
profileStatus?: (google.privacy.dlp.v2.IProfileStatus|null);
|
|
29117
|
+
|
|
29118
|
+
/** ProjectDataProfile tableDataProfileCount */
|
|
29119
|
+
tableDataProfileCount?: (number|Long|string|null);
|
|
29120
|
+
|
|
29121
|
+
/** ProjectDataProfile fileStoreDataProfileCount */
|
|
29122
|
+
fileStoreDataProfileCount?: (number|Long|string|null);
|
|
27634
29123
|
}
|
|
27635
29124
|
|
|
27636
29125
|
/** Represents a ProjectDataProfile. */
|
|
@@ -27660,6 +29149,12 @@ export namespace google {
|
|
|
27660
29149
|
/** ProjectDataProfile profileStatus. */
|
|
27661
29150
|
public profileStatus?: (google.privacy.dlp.v2.IProfileStatus|null);
|
|
27662
29151
|
|
|
29152
|
+
/** ProjectDataProfile tableDataProfileCount. */
|
|
29153
|
+
public tableDataProfileCount: (number|Long|string);
|
|
29154
|
+
|
|
29155
|
+
/** ProjectDataProfile fileStoreDataProfileCount. */
|
|
29156
|
+
public fileStoreDataProfileCount: (number|Long|string);
|
|
29157
|
+
|
|
27663
29158
|
/**
|
|
27664
29159
|
* Creates a new ProjectDataProfile instance using the specified properties.
|
|
27665
29160
|
* @param [properties] Properties to set
|
|
@@ -28713,6 +30208,578 @@ export namespace google {
|
|
|
28713
30208
|
}
|
|
28714
30209
|
}
|
|
28715
30210
|
|
|
30211
|
+
/** Properties of a FileStoreDataProfile. */
|
|
30212
|
+
interface IFileStoreDataProfile {
|
|
30213
|
+
|
|
30214
|
+
/** FileStoreDataProfile name */
|
|
30215
|
+
name?: (string|null);
|
|
30216
|
+
|
|
30217
|
+
/** FileStoreDataProfile dataSourceType */
|
|
30218
|
+
dataSourceType?: (google.privacy.dlp.v2.IDataSourceType|null);
|
|
30219
|
+
|
|
30220
|
+
/** FileStoreDataProfile projectDataProfile */
|
|
30221
|
+
projectDataProfile?: (string|null);
|
|
30222
|
+
|
|
30223
|
+
/** FileStoreDataProfile projectId */
|
|
30224
|
+
projectId?: (string|null);
|
|
30225
|
+
|
|
30226
|
+
/** FileStoreDataProfile fileStoreLocation */
|
|
30227
|
+
fileStoreLocation?: (string|null);
|
|
30228
|
+
|
|
30229
|
+
/** FileStoreDataProfile dataStorageLocations */
|
|
30230
|
+
dataStorageLocations?: (string[]|null);
|
|
30231
|
+
|
|
30232
|
+
/** FileStoreDataProfile locationType */
|
|
30233
|
+
locationType?: (string|null);
|
|
30234
|
+
|
|
30235
|
+
/** FileStoreDataProfile fileStorePath */
|
|
30236
|
+
fileStorePath?: (string|null);
|
|
30237
|
+
|
|
30238
|
+
/** FileStoreDataProfile fullResource */
|
|
30239
|
+
fullResource?: (string|null);
|
|
30240
|
+
|
|
30241
|
+
/** FileStoreDataProfile configSnapshot */
|
|
30242
|
+
configSnapshot?: (google.privacy.dlp.v2.IDataProfileConfigSnapshot|null);
|
|
30243
|
+
|
|
30244
|
+
/** FileStoreDataProfile profileStatus */
|
|
30245
|
+
profileStatus?: (google.privacy.dlp.v2.IProfileStatus|null);
|
|
30246
|
+
|
|
30247
|
+
/** FileStoreDataProfile state */
|
|
30248
|
+
state?: (google.privacy.dlp.v2.FileStoreDataProfile.State|keyof typeof google.privacy.dlp.v2.FileStoreDataProfile.State|null);
|
|
30249
|
+
|
|
30250
|
+
/** FileStoreDataProfile profileLastGenerated */
|
|
30251
|
+
profileLastGenerated?: (google.protobuf.ITimestamp|null);
|
|
30252
|
+
|
|
30253
|
+
/** FileStoreDataProfile resourceVisibility */
|
|
30254
|
+
resourceVisibility?: (google.privacy.dlp.v2.ResourceVisibility|keyof typeof google.privacy.dlp.v2.ResourceVisibility|null);
|
|
30255
|
+
|
|
30256
|
+
/** FileStoreDataProfile sensitivityScore */
|
|
30257
|
+
sensitivityScore?: (google.privacy.dlp.v2.ISensitivityScore|null);
|
|
30258
|
+
|
|
30259
|
+
/** FileStoreDataProfile dataRiskLevel */
|
|
30260
|
+
dataRiskLevel?: (google.privacy.dlp.v2.IDataRiskLevel|null);
|
|
30261
|
+
|
|
30262
|
+
/** FileStoreDataProfile createTime */
|
|
30263
|
+
createTime?: (google.protobuf.ITimestamp|null);
|
|
30264
|
+
|
|
30265
|
+
/** FileStoreDataProfile lastModifiedTime */
|
|
30266
|
+
lastModifiedTime?: (google.protobuf.ITimestamp|null);
|
|
30267
|
+
|
|
30268
|
+
/** FileStoreDataProfile fileClusterSummaries */
|
|
30269
|
+
fileClusterSummaries?: (google.privacy.dlp.v2.IFileClusterSummary[]|null);
|
|
30270
|
+
|
|
30271
|
+
/** FileStoreDataProfile resourceAttributes */
|
|
30272
|
+
resourceAttributes?: ({ [k: string]: google.privacy.dlp.v2.IValue }|null);
|
|
30273
|
+
|
|
30274
|
+
/** FileStoreDataProfile resourceLabels */
|
|
30275
|
+
resourceLabels?: ({ [k: string]: string }|null);
|
|
30276
|
+
|
|
30277
|
+
/** FileStoreDataProfile fileStoreInfoTypeSummaries */
|
|
30278
|
+
fileStoreInfoTypeSummaries?: (google.privacy.dlp.v2.IFileStoreInfoTypeSummary[]|null);
|
|
30279
|
+
|
|
30280
|
+
/** FileStoreDataProfile fileStoreIsEmpty */
|
|
30281
|
+
fileStoreIsEmpty?: (boolean|null);
|
|
30282
|
+
}
|
|
30283
|
+
|
|
30284
|
+
/** Represents a FileStoreDataProfile. */
|
|
30285
|
+
class FileStoreDataProfile implements IFileStoreDataProfile {
|
|
30286
|
+
|
|
30287
|
+
/**
|
|
30288
|
+
* Constructs a new FileStoreDataProfile.
|
|
30289
|
+
* @param [properties] Properties to set
|
|
30290
|
+
*/
|
|
30291
|
+
constructor(properties?: google.privacy.dlp.v2.IFileStoreDataProfile);
|
|
30292
|
+
|
|
30293
|
+
/** FileStoreDataProfile name. */
|
|
30294
|
+
public name: string;
|
|
30295
|
+
|
|
30296
|
+
/** FileStoreDataProfile dataSourceType. */
|
|
30297
|
+
public dataSourceType?: (google.privacy.dlp.v2.IDataSourceType|null);
|
|
30298
|
+
|
|
30299
|
+
/** FileStoreDataProfile projectDataProfile. */
|
|
30300
|
+
public projectDataProfile: string;
|
|
30301
|
+
|
|
30302
|
+
/** FileStoreDataProfile projectId. */
|
|
30303
|
+
public projectId: string;
|
|
30304
|
+
|
|
30305
|
+
/** FileStoreDataProfile fileStoreLocation. */
|
|
30306
|
+
public fileStoreLocation: string;
|
|
30307
|
+
|
|
30308
|
+
/** FileStoreDataProfile dataStorageLocations. */
|
|
30309
|
+
public dataStorageLocations: string[];
|
|
30310
|
+
|
|
30311
|
+
/** FileStoreDataProfile locationType. */
|
|
30312
|
+
public locationType: string;
|
|
30313
|
+
|
|
30314
|
+
/** FileStoreDataProfile fileStorePath. */
|
|
30315
|
+
public fileStorePath: string;
|
|
30316
|
+
|
|
30317
|
+
/** FileStoreDataProfile fullResource. */
|
|
30318
|
+
public fullResource: string;
|
|
30319
|
+
|
|
30320
|
+
/** FileStoreDataProfile configSnapshot. */
|
|
30321
|
+
public configSnapshot?: (google.privacy.dlp.v2.IDataProfileConfigSnapshot|null);
|
|
30322
|
+
|
|
30323
|
+
/** FileStoreDataProfile profileStatus. */
|
|
30324
|
+
public profileStatus?: (google.privacy.dlp.v2.IProfileStatus|null);
|
|
30325
|
+
|
|
30326
|
+
/** FileStoreDataProfile state. */
|
|
30327
|
+
public state: (google.privacy.dlp.v2.FileStoreDataProfile.State|keyof typeof google.privacy.dlp.v2.FileStoreDataProfile.State);
|
|
30328
|
+
|
|
30329
|
+
/** FileStoreDataProfile profileLastGenerated. */
|
|
30330
|
+
public profileLastGenerated?: (google.protobuf.ITimestamp|null);
|
|
30331
|
+
|
|
30332
|
+
/** FileStoreDataProfile resourceVisibility. */
|
|
30333
|
+
public resourceVisibility: (google.privacy.dlp.v2.ResourceVisibility|keyof typeof google.privacy.dlp.v2.ResourceVisibility);
|
|
30334
|
+
|
|
30335
|
+
/** FileStoreDataProfile sensitivityScore. */
|
|
30336
|
+
public sensitivityScore?: (google.privacy.dlp.v2.ISensitivityScore|null);
|
|
30337
|
+
|
|
30338
|
+
/** FileStoreDataProfile dataRiskLevel. */
|
|
30339
|
+
public dataRiskLevel?: (google.privacy.dlp.v2.IDataRiskLevel|null);
|
|
30340
|
+
|
|
30341
|
+
/** FileStoreDataProfile createTime. */
|
|
30342
|
+
public createTime?: (google.protobuf.ITimestamp|null);
|
|
30343
|
+
|
|
30344
|
+
/** FileStoreDataProfile lastModifiedTime. */
|
|
30345
|
+
public lastModifiedTime?: (google.protobuf.ITimestamp|null);
|
|
30346
|
+
|
|
30347
|
+
/** FileStoreDataProfile fileClusterSummaries. */
|
|
30348
|
+
public fileClusterSummaries: google.privacy.dlp.v2.IFileClusterSummary[];
|
|
30349
|
+
|
|
30350
|
+
/** FileStoreDataProfile resourceAttributes. */
|
|
30351
|
+
public resourceAttributes: { [k: string]: google.privacy.dlp.v2.IValue };
|
|
30352
|
+
|
|
30353
|
+
/** FileStoreDataProfile resourceLabels. */
|
|
30354
|
+
public resourceLabels: { [k: string]: string };
|
|
30355
|
+
|
|
30356
|
+
/** FileStoreDataProfile fileStoreInfoTypeSummaries. */
|
|
30357
|
+
public fileStoreInfoTypeSummaries: google.privacy.dlp.v2.IFileStoreInfoTypeSummary[];
|
|
30358
|
+
|
|
30359
|
+
/** FileStoreDataProfile fileStoreIsEmpty. */
|
|
30360
|
+
public fileStoreIsEmpty: boolean;
|
|
30361
|
+
|
|
30362
|
+
/**
|
|
30363
|
+
* Creates a new FileStoreDataProfile instance using the specified properties.
|
|
30364
|
+
* @param [properties] Properties to set
|
|
30365
|
+
* @returns FileStoreDataProfile instance
|
|
30366
|
+
*/
|
|
30367
|
+
public static create(properties?: google.privacy.dlp.v2.IFileStoreDataProfile): google.privacy.dlp.v2.FileStoreDataProfile;
|
|
30368
|
+
|
|
30369
|
+
/**
|
|
30370
|
+
* Encodes the specified FileStoreDataProfile message. Does not implicitly {@link google.privacy.dlp.v2.FileStoreDataProfile.verify|verify} messages.
|
|
30371
|
+
* @param message FileStoreDataProfile message or plain object to encode
|
|
30372
|
+
* @param [writer] Writer to encode to
|
|
30373
|
+
* @returns Writer
|
|
30374
|
+
*/
|
|
30375
|
+
public static encode(message: google.privacy.dlp.v2.IFileStoreDataProfile, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
30376
|
+
|
|
30377
|
+
/**
|
|
30378
|
+
* Encodes the specified FileStoreDataProfile message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.FileStoreDataProfile.verify|verify} messages.
|
|
30379
|
+
* @param message FileStoreDataProfile message or plain object to encode
|
|
30380
|
+
* @param [writer] Writer to encode to
|
|
30381
|
+
* @returns Writer
|
|
30382
|
+
*/
|
|
30383
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IFileStoreDataProfile, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
30384
|
+
|
|
30385
|
+
/**
|
|
30386
|
+
* Decodes a FileStoreDataProfile message from the specified reader or buffer.
|
|
30387
|
+
* @param reader Reader or buffer to decode from
|
|
30388
|
+
* @param [length] Message length if known beforehand
|
|
30389
|
+
* @returns FileStoreDataProfile
|
|
30390
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
30391
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
30392
|
+
*/
|
|
30393
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.FileStoreDataProfile;
|
|
30394
|
+
|
|
30395
|
+
/**
|
|
30396
|
+
* Decodes a FileStoreDataProfile message from the specified reader or buffer, length delimited.
|
|
30397
|
+
* @param reader Reader or buffer to decode from
|
|
30398
|
+
* @returns FileStoreDataProfile
|
|
30399
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
30400
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
30401
|
+
*/
|
|
30402
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.FileStoreDataProfile;
|
|
30403
|
+
|
|
30404
|
+
/**
|
|
30405
|
+
* Verifies a FileStoreDataProfile message.
|
|
30406
|
+
* @param message Plain object to verify
|
|
30407
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
30408
|
+
*/
|
|
30409
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
30410
|
+
|
|
30411
|
+
/**
|
|
30412
|
+
* Creates a FileStoreDataProfile message from a plain object. Also converts values to their respective internal types.
|
|
30413
|
+
* @param object Plain object
|
|
30414
|
+
* @returns FileStoreDataProfile
|
|
30415
|
+
*/
|
|
30416
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.FileStoreDataProfile;
|
|
30417
|
+
|
|
30418
|
+
/**
|
|
30419
|
+
* Creates a plain object from a FileStoreDataProfile message. Also converts values to other types if specified.
|
|
30420
|
+
* @param message FileStoreDataProfile
|
|
30421
|
+
* @param [options] Conversion options
|
|
30422
|
+
* @returns Plain object
|
|
30423
|
+
*/
|
|
30424
|
+
public static toObject(message: google.privacy.dlp.v2.FileStoreDataProfile, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
30425
|
+
|
|
30426
|
+
/**
|
|
30427
|
+
* Converts this FileStoreDataProfile to JSON.
|
|
30428
|
+
* @returns JSON object
|
|
30429
|
+
*/
|
|
30430
|
+
public toJSON(): { [k: string]: any };
|
|
30431
|
+
|
|
30432
|
+
/**
|
|
30433
|
+
* Gets the default type url for FileStoreDataProfile
|
|
30434
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
30435
|
+
* @returns The default type url
|
|
30436
|
+
*/
|
|
30437
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
30438
|
+
}
|
|
30439
|
+
|
|
30440
|
+
namespace FileStoreDataProfile {
|
|
30441
|
+
|
|
30442
|
+
/** State enum. */
|
|
30443
|
+
enum State {
|
|
30444
|
+
STATE_UNSPECIFIED = 0,
|
|
30445
|
+
RUNNING = 1,
|
|
30446
|
+
DONE = 2
|
|
30447
|
+
}
|
|
30448
|
+
}
|
|
30449
|
+
|
|
30450
|
+
/** Properties of a FileStoreInfoTypeSummary. */
|
|
30451
|
+
interface IFileStoreInfoTypeSummary {
|
|
30452
|
+
|
|
30453
|
+
/** FileStoreInfoTypeSummary infoType */
|
|
30454
|
+
infoType?: (google.privacy.dlp.v2.IInfoType|null);
|
|
30455
|
+
}
|
|
30456
|
+
|
|
30457
|
+
/** Represents a FileStoreInfoTypeSummary. */
|
|
30458
|
+
class FileStoreInfoTypeSummary implements IFileStoreInfoTypeSummary {
|
|
30459
|
+
|
|
30460
|
+
/**
|
|
30461
|
+
* Constructs a new FileStoreInfoTypeSummary.
|
|
30462
|
+
* @param [properties] Properties to set
|
|
30463
|
+
*/
|
|
30464
|
+
constructor(properties?: google.privacy.dlp.v2.IFileStoreInfoTypeSummary);
|
|
30465
|
+
|
|
30466
|
+
/** FileStoreInfoTypeSummary infoType. */
|
|
30467
|
+
public infoType?: (google.privacy.dlp.v2.IInfoType|null);
|
|
30468
|
+
|
|
30469
|
+
/**
|
|
30470
|
+
* Creates a new FileStoreInfoTypeSummary instance using the specified properties.
|
|
30471
|
+
* @param [properties] Properties to set
|
|
30472
|
+
* @returns FileStoreInfoTypeSummary instance
|
|
30473
|
+
*/
|
|
30474
|
+
public static create(properties?: google.privacy.dlp.v2.IFileStoreInfoTypeSummary): google.privacy.dlp.v2.FileStoreInfoTypeSummary;
|
|
30475
|
+
|
|
30476
|
+
/**
|
|
30477
|
+
* Encodes the specified FileStoreInfoTypeSummary message. Does not implicitly {@link google.privacy.dlp.v2.FileStoreInfoTypeSummary.verify|verify} messages.
|
|
30478
|
+
* @param message FileStoreInfoTypeSummary message or plain object to encode
|
|
30479
|
+
* @param [writer] Writer to encode to
|
|
30480
|
+
* @returns Writer
|
|
30481
|
+
*/
|
|
30482
|
+
public static encode(message: google.privacy.dlp.v2.IFileStoreInfoTypeSummary, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
30483
|
+
|
|
30484
|
+
/**
|
|
30485
|
+
* Encodes the specified FileStoreInfoTypeSummary message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.FileStoreInfoTypeSummary.verify|verify} messages.
|
|
30486
|
+
* @param message FileStoreInfoTypeSummary message or plain object to encode
|
|
30487
|
+
* @param [writer] Writer to encode to
|
|
30488
|
+
* @returns Writer
|
|
30489
|
+
*/
|
|
30490
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IFileStoreInfoTypeSummary, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
30491
|
+
|
|
30492
|
+
/**
|
|
30493
|
+
* Decodes a FileStoreInfoTypeSummary message from the specified reader or buffer.
|
|
30494
|
+
* @param reader Reader or buffer to decode from
|
|
30495
|
+
* @param [length] Message length if known beforehand
|
|
30496
|
+
* @returns FileStoreInfoTypeSummary
|
|
30497
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
30498
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
30499
|
+
*/
|
|
30500
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.FileStoreInfoTypeSummary;
|
|
30501
|
+
|
|
30502
|
+
/**
|
|
30503
|
+
* Decodes a FileStoreInfoTypeSummary message from the specified reader or buffer, length delimited.
|
|
30504
|
+
* @param reader Reader or buffer to decode from
|
|
30505
|
+
* @returns FileStoreInfoTypeSummary
|
|
30506
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
30507
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
30508
|
+
*/
|
|
30509
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.FileStoreInfoTypeSummary;
|
|
30510
|
+
|
|
30511
|
+
/**
|
|
30512
|
+
* Verifies a FileStoreInfoTypeSummary message.
|
|
30513
|
+
* @param message Plain object to verify
|
|
30514
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
30515
|
+
*/
|
|
30516
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
30517
|
+
|
|
30518
|
+
/**
|
|
30519
|
+
* Creates a FileStoreInfoTypeSummary message from a plain object. Also converts values to their respective internal types.
|
|
30520
|
+
* @param object Plain object
|
|
30521
|
+
* @returns FileStoreInfoTypeSummary
|
|
30522
|
+
*/
|
|
30523
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.FileStoreInfoTypeSummary;
|
|
30524
|
+
|
|
30525
|
+
/**
|
|
30526
|
+
* Creates a plain object from a FileStoreInfoTypeSummary message. Also converts values to other types if specified.
|
|
30527
|
+
* @param message FileStoreInfoTypeSummary
|
|
30528
|
+
* @param [options] Conversion options
|
|
30529
|
+
* @returns Plain object
|
|
30530
|
+
*/
|
|
30531
|
+
public static toObject(message: google.privacy.dlp.v2.FileStoreInfoTypeSummary, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
30532
|
+
|
|
30533
|
+
/**
|
|
30534
|
+
* Converts this FileStoreInfoTypeSummary to JSON.
|
|
30535
|
+
* @returns JSON object
|
|
30536
|
+
*/
|
|
30537
|
+
public toJSON(): { [k: string]: any };
|
|
30538
|
+
|
|
30539
|
+
/**
|
|
30540
|
+
* Gets the default type url for FileStoreInfoTypeSummary
|
|
30541
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
30542
|
+
* @returns The default type url
|
|
30543
|
+
*/
|
|
30544
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
30545
|
+
}
|
|
30546
|
+
|
|
30547
|
+
/** Properties of a FileExtensionInfo. */
|
|
30548
|
+
interface IFileExtensionInfo {
|
|
30549
|
+
|
|
30550
|
+
/** FileExtensionInfo fileExtension */
|
|
30551
|
+
fileExtension?: (string|null);
|
|
30552
|
+
}
|
|
30553
|
+
|
|
30554
|
+
/** Represents a FileExtensionInfo. */
|
|
30555
|
+
class FileExtensionInfo implements IFileExtensionInfo {
|
|
30556
|
+
|
|
30557
|
+
/**
|
|
30558
|
+
* Constructs a new FileExtensionInfo.
|
|
30559
|
+
* @param [properties] Properties to set
|
|
30560
|
+
*/
|
|
30561
|
+
constructor(properties?: google.privacy.dlp.v2.IFileExtensionInfo);
|
|
30562
|
+
|
|
30563
|
+
/** FileExtensionInfo fileExtension. */
|
|
30564
|
+
public fileExtension: string;
|
|
30565
|
+
|
|
30566
|
+
/**
|
|
30567
|
+
* Creates a new FileExtensionInfo instance using the specified properties.
|
|
30568
|
+
* @param [properties] Properties to set
|
|
30569
|
+
* @returns FileExtensionInfo instance
|
|
30570
|
+
*/
|
|
30571
|
+
public static create(properties?: google.privacy.dlp.v2.IFileExtensionInfo): google.privacy.dlp.v2.FileExtensionInfo;
|
|
30572
|
+
|
|
30573
|
+
/**
|
|
30574
|
+
* Encodes the specified FileExtensionInfo message. Does not implicitly {@link google.privacy.dlp.v2.FileExtensionInfo.verify|verify} messages.
|
|
30575
|
+
* @param message FileExtensionInfo message or plain object to encode
|
|
30576
|
+
* @param [writer] Writer to encode to
|
|
30577
|
+
* @returns Writer
|
|
30578
|
+
*/
|
|
30579
|
+
public static encode(message: google.privacy.dlp.v2.IFileExtensionInfo, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
30580
|
+
|
|
30581
|
+
/**
|
|
30582
|
+
* Encodes the specified FileExtensionInfo message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.FileExtensionInfo.verify|verify} messages.
|
|
30583
|
+
* @param message FileExtensionInfo message or plain object to encode
|
|
30584
|
+
* @param [writer] Writer to encode to
|
|
30585
|
+
* @returns Writer
|
|
30586
|
+
*/
|
|
30587
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IFileExtensionInfo, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
30588
|
+
|
|
30589
|
+
/**
|
|
30590
|
+
* Decodes a FileExtensionInfo message from the specified reader or buffer.
|
|
30591
|
+
* @param reader Reader or buffer to decode from
|
|
30592
|
+
* @param [length] Message length if known beforehand
|
|
30593
|
+
* @returns FileExtensionInfo
|
|
30594
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
30595
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
30596
|
+
*/
|
|
30597
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.FileExtensionInfo;
|
|
30598
|
+
|
|
30599
|
+
/**
|
|
30600
|
+
* Decodes a FileExtensionInfo message from the specified reader or buffer, length delimited.
|
|
30601
|
+
* @param reader Reader or buffer to decode from
|
|
30602
|
+
* @returns FileExtensionInfo
|
|
30603
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
30604
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
30605
|
+
*/
|
|
30606
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.FileExtensionInfo;
|
|
30607
|
+
|
|
30608
|
+
/**
|
|
30609
|
+
* Verifies a FileExtensionInfo message.
|
|
30610
|
+
* @param message Plain object to verify
|
|
30611
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
30612
|
+
*/
|
|
30613
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
30614
|
+
|
|
30615
|
+
/**
|
|
30616
|
+
* Creates a FileExtensionInfo message from a plain object. Also converts values to their respective internal types.
|
|
30617
|
+
* @param object Plain object
|
|
30618
|
+
* @returns FileExtensionInfo
|
|
30619
|
+
*/
|
|
30620
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.FileExtensionInfo;
|
|
30621
|
+
|
|
30622
|
+
/**
|
|
30623
|
+
* Creates a plain object from a FileExtensionInfo message. Also converts values to other types if specified.
|
|
30624
|
+
* @param message FileExtensionInfo
|
|
30625
|
+
* @param [options] Conversion options
|
|
30626
|
+
* @returns Plain object
|
|
30627
|
+
*/
|
|
30628
|
+
public static toObject(message: google.privacy.dlp.v2.FileExtensionInfo, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
30629
|
+
|
|
30630
|
+
/**
|
|
30631
|
+
* Converts this FileExtensionInfo to JSON.
|
|
30632
|
+
* @returns JSON object
|
|
30633
|
+
*/
|
|
30634
|
+
public toJSON(): { [k: string]: any };
|
|
30635
|
+
|
|
30636
|
+
/**
|
|
30637
|
+
* Gets the default type url for FileExtensionInfo
|
|
30638
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
30639
|
+
* @returns The default type url
|
|
30640
|
+
*/
|
|
30641
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
30642
|
+
}
|
|
30643
|
+
|
|
30644
|
+
/** Properties of a FileClusterSummary. */
|
|
30645
|
+
interface IFileClusterSummary {
|
|
30646
|
+
|
|
30647
|
+
/** FileClusterSummary fileClusterType */
|
|
30648
|
+
fileClusterType?: (google.privacy.dlp.v2.IFileClusterType|null);
|
|
30649
|
+
|
|
30650
|
+
/** FileClusterSummary fileStoreInfoTypeSummaries */
|
|
30651
|
+
fileStoreInfoTypeSummaries?: (google.privacy.dlp.v2.IFileStoreInfoTypeSummary[]|null);
|
|
30652
|
+
|
|
30653
|
+
/** FileClusterSummary sensitivityScore */
|
|
30654
|
+
sensitivityScore?: (google.privacy.dlp.v2.ISensitivityScore|null);
|
|
30655
|
+
|
|
30656
|
+
/** FileClusterSummary dataRiskLevel */
|
|
30657
|
+
dataRiskLevel?: (google.privacy.dlp.v2.IDataRiskLevel|null);
|
|
30658
|
+
|
|
30659
|
+
/** FileClusterSummary errors */
|
|
30660
|
+
errors?: (google.privacy.dlp.v2.IError[]|null);
|
|
30661
|
+
|
|
30662
|
+
/** FileClusterSummary fileExtensionsScanned */
|
|
30663
|
+
fileExtensionsScanned?: (google.privacy.dlp.v2.IFileExtensionInfo[]|null);
|
|
30664
|
+
|
|
30665
|
+
/** FileClusterSummary fileExtensionsSeen */
|
|
30666
|
+
fileExtensionsSeen?: (google.privacy.dlp.v2.IFileExtensionInfo[]|null);
|
|
30667
|
+
|
|
30668
|
+
/** FileClusterSummary noFilesExist */
|
|
30669
|
+
noFilesExist?: (boolean|null);
|
|
30670
|
+
}
|
|
30671
|
+
|
|
30672
|
+
/** Represents a FileClusterSummary. */
|
|
30673
|
+
class FileClusterSummary implements IFileClusterSummary {
|
|
30674
|
+
|
|
30675
|
+
/**
|
|
30676
|
+
* Constructs a new FileClusterSummary.
|
|
30677
|
+
* @param [properties] Properties to set
|
|
30678
|
+
*/
|
|
30679
|
+
constructor(properties?: google.privacy.dlp.v2.IFileClusterSummary);
|
|
30680
|
+
|
|
30681
|
+
/** FileClusterSummary fileClusterType. */
|
|
30682
|
+
public fileClusterType?: (google.privacy.dlp.v2.IFileClusterType|null);
|
|
30683
|
+
|
|
30684
|
+
/** FileClusterSummary fileStoreInfoTypeSummaries. */
|
|
30685
|
+
public fileStoreInfoTypeSummaries: google.privacy.dlp.v2.IFileStoreInfoTypeSummary[];
|
|
30686
|
+
|
|
30687
|
+
/** FileClusterSummary sensitivityScore. */
|
|
30688
|
+
public sensitivityScore?: (google.privacy.dlp.v2.ISensitivityScore|null);
|
|
30689
|
+
|
|
30690
|
+
/** FileClusterSummary dataRiskLevel. */
|
|
30691
|
+
public dataRiskLevel?: (google.privacy.dlp.v2.IDataRiskLevel|null);
|
|
30692
|
+
|
|
30693
|
+
/** FileClusterSummary errors. */
|
|
30694
|
+
public errors: google.privacy.dlp.v2.IError[];
|
|
30695
|
+
|
|
30696
|
+
/** FileClusterSummary fileExtensionsScanned. */
|
|
30697
|
+
public fileExtensionsScanned: google.privacy.dlp.v2.IFileExtensionInfo[];
|
|
30698
|
+
|
|
30699
|
+
/** FileClusterSummary fileExtensionsSeen. */
|
|
30700
|
+
public fileExtensionsSeen: google.privacy.dlp.v2.IFileExtensionInfo[];
|
|
30701
|
+
|
|
30702
|
+
/** FileClusterSummary noFilesExist. */
|
|
30703
|
+
public noFilesExist: boolean;
|
|
30704
|
+
|
|
30705
|
+
/**
|
|
30706
|
+
* Creates a new FileClusterSummary instance using the specified properties.
|
|
30707
|
+
* @param [properties] Properties to set
|
|
30708
|
+
* @returns FileClusterSummary instance
|
|
30709
|
+
*/
|
|
30710
|
+
public static create(properties?: google.privacy.dlp.v2.IFileClusterSummary): google.privacy.dlp.v2.FileClusterSummary;
|
|
30711
|
+
|
|
30712
|
+
/**
|
|
30713
|
+
* Encodes the specified FileClusterSummary message. Does not implicitly {@link google.privacy.dlp.v2.FileClusterSummary.verify|verify} messages.
|
|
30714
|
+
* @param message FileClusterSummary message or plain object to encode
|
|
30715
|
+
* @param [writer] Writer to encode to
|
|
30716
|
+
* @returns Writer
|
|
30717
|
+
*/
|
|
30718
|
+
public static encode(message: google.privacy.dlp.v2.IFileClusterSummary, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
30719
|
+
|
|
30720
|
+
/**
|
|
30721
|
+
* Encodes the specified FileClusterSummary message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.FileClusterSummary.verify|verify} messages.
|
|
30722
|
+
* @param message FileClusterSummary message or plain object to encode
|
|
30723
|
+
* @param [writer] Writer to encode to
|
|
30724
|
+
* @returns Writer
|
|
30725
|
+
*/
|
|
30726
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IFileClusterSummary, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
30727
|
+
|
|
30728
|
+
/**
|
|
30729
|
+
* Decodes a FileClusterSummary message from the specified reader or buffer.
|
|
30730
|
+
* @param reader Reader or buffer to decode from
|
|
30731
|
+
* @param [length] Message length if known beforehand
|
|
30732
|
+
* @returns FileClusterSummary
|
|
30733
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
30734
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
30735
|
+
*/
|
|
30736
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.FileClusterSummary;
|
|
30737
|
+
|
|
30738
|
+
/**
|
|
30739
|
+
* Decodes a FileClusterSummary message from the specified reader or buffer, length delimited.
|
|
30740
|
+
* @param reader Reader or buffer to decode from
|
|
30741
|
+
* @returns FileClusterSummary
|
|
30742
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
30743
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
30744
|
+
*/
|
|
30745
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.FileClusterSummary;
|
|
30746
|
+
|
|
30747
|
+
/**
|
|
30748
|
+
* Verifies a FileClusterSummary message.
|
|
30749
|
+
* @param message Plain object to verify
|
|
30750
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
30751
|
+
*/
|
|
30752
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
30753
|
+
|
|
30754
|
+
/**
|
|
30755
|
+
* Creates a FileClusterSummary message from a plain object. Also converts values to their respective internal types.
|
|
30756
|
+
* @param object Plain object
|
|
30757
|
+
* @returns FileClusterSummary
|
|
30758
|
+
*/
|
|
30759
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.FileClusterSummary;
|
|
30760
|
+
|
|
30761
|
+
/**
|
|
30762
|
+
* Creates a plain object from a FileClusterSummary message. Also converts values to other types if specified.
|
|
30763
|
+
* @param message FileClusterSummary
|
|
30764
|
+
* @param [options] Conversion options
|
|
30765
|
+
* @returns Plain object
|
|
30766
|
+
*/
|
|
30767
|
+
public static toObject(message: google.privacy.dlp.v2.FileClusterSummary, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
30768
|
+
|
|
30769
|
+
/**
|
|
30770
|
+
* Converts this FileClusterSummary to JSON.
|
|
30771
|
+
* @returns JSON object
|
|
30772
|
+
*/
|
|
30773
|
+
public toJSON(): { [k: string]: any };
|
|
30774
|
+
|
|
30775
|
+
/**
|
|
30776
|
+
* Gets the default type url for FileClusterSummary
|
|
30777
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
30778
|
+
* @returns The default type url
|
|
30779
|
+
*/
|
|
30780
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
30781
|
+
}
|
|
30782
|
+
|
|
28716
30783
|
/** Properties of a GetProjectDataProfileRequest. */
|
|
28717
30784
|
interface IGetProjectDataProfileRequest {
|
|
28718
30785
|
|
|
@@ -28810,6 +30877,424 @@ export namespace google {
|
|
|
28810
30877
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
28811
30878
|
}
|
|
28812
30879
|
|
|
30880
|
+
/** Properties of a GetFileStoreDataProfileRequest. */
|
|
30881
|
+
interface IGetFileStoreDataProfileRequest {
|
|
30882
|
+
|
|
30883
|
+
/** GetFileStoreDataProfileRequest name */
|
|
30884
|
+
name?: (string|null);
|
|
30885
|
+
}
|
|
30886
|
+
|
|
30887
|
+
/** Represents a GetFileStoreDataProfileRequest. */
|
|
30888
|
+
class GetFileStoreDataProfileRequest implements IGetFileStoreDataProfileRequest {
|
|
30889
|
+
|
|
30890
|
+
/**
|
|
30891
|
+
* Constructs a new GetFileStoreDataProfileRequest.
|
|
30892
|
+
* @param [properties] Properties to set
|
|
30893
|
+
*/
|
|
30894
|
+
constructor(properties?: google.privacy.dlp.v2.IGetFileStoreDataProfileRequest);
|
|
30895
|
+
|
|
30896
|
+
/** GetFileStoreDataProfileRequest name. */
|
|
30897
|
+
public name: string;
|
|
30898
|
+
|
|
30899
|
+
/**
|
|
30900
|
+
* Creates a new GetFileStoreDataProfileRequest instance using the specified properties.
|
|
30901
|
+
* @param [properties] Properties to set
|
|
30902
|
+
* @returns GetFileStoreDataProfileRequest instance
|
|
30903
|
+
*/
|
|
30904
|
+
public static create(properties?: google.privacy.dlp.v2.IGetFileStoreDataProfileRequest): google.privacy.dlp.v2.GetFileStoreDataProfileRequest;
|
|
30905
|
+
|
|
30906
|
+
/**
|
|
30907
|
+
* Encodes the specified GetFileStoreDataProfileRequest message. Does not implicitly {@link google.privacy.dlp.v2.GetFileStoreDataProfileRequest.verify|verify} messages.
|
|
30908
|
+
* @param message GetFileStoreDataProfileRequest message or plain object to encode
|
|
30909
|
+
* @param [writer] Writer to encode to
|
|
30910
|
+
* @returns Writer
|
|
30911
|
+
*/
|
|
30912
|
+
public static encode(message: google.privacy.dlp.v2.IGetFileStoreDataProfileRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
30913
|
+
|
|
30914
|
+
/**
|
|
30915
|
+
* Encodes the specified GetFileStoreDataProfileRequest message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.GetFileStoreDataProfileRequest.verify|verify} messages.
|
|
30916
|
+
* @param message GetFileStoreDataProfileRequest message or plain object to encode
|
|
30917
|
+
* @param [writer] Writer to encode to
|
|
30918
|
+
* @returns Writer
|
|
30919
|
+
*/
|
|
30920
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IGetFileStoreDataProfileRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
30921
|
+
|
|
30922
|
+
/**
|
|
30923
|
+
* Decodes a GetFileStoreDataProfileRequest message from the specified reader or buffer.
|
|
30924
|
+
* @param reader Reader or buffer to decode from
|
|
30925
|
+
* @param [length] Message length if known beforehand
|
|
30926
|
+
* @returns GetFileStoreDataProfileRequest
|
|
30927
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
30928
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
30929
|
+
*/
|
|
30930
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.GetFileStoreDataProfileRequest;
|
|
30931
|
+
|
|
30932
|
+
/**
|
|
30933
|
+
* Decodes a GetFileStoreDataProfileRequest message from the specified reader or buffer, length delimited.
|
|
30934
|
+
* @param reader Reader or buffer to decode from
|
|
30935
|
+
* @returns GetFileStoreDataProfileRequest
|
|
30936
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
30937
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
30938
|
+
*/
|
|
30939
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.GetFileStoreDataProfileRequest;
|
|
30940
|
+
|
|
30941
|
+
/**
|
|
30942
|
+
* Verifies a GetFileStoreDataProfileRequest message.
|
|
30943
|
+
* @param message Plain object to verify
|
|
30944
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
30945
|
+
*/
|
|
30946
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
30947
|
+
|
|
30948
|
+
/**
|
|
30949
|
+
* Creates a GetFileStoreDataProfileRequest message from a plain object. Also converts values to their respective internal types.
|
|
30950
|
+
* @param object Plain object
|
|
30951
|
+
* @returns GetFileStoreDataProfileRequest
|
|
30952
|
+
*/
|
|
30953
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.GetFileStoreDataProfileRequest;
|
|
30954
|
+
|
|
30955
|
+
/**
|
|
30956
|
+
* Creates a plain object from a GetFileStoreDataProfileRequest message. Also converts values to other types if specified.
|
|
30957
|
+
* @param message GetFileStoreDataProfileRequest
|
|
30958
|
+
* @param [options] Conversion options
|
|
30959
|
+
* @returns Plain object
|
|
30960
|
+
*/
|
|
30961
|
+
public static toObject(message: google.privacy.dlp.v2.GetFileStoreDataProfileRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
30962
|
+
|
|
30963
|
+
/**
|
|
30964
|
+
* Converts this GetFileStoreDataProfileRequest to JSON.
|
|
30965
|
+
* @returns JSON object
|
|
30966
|
+
*/
|
|
30967
|
+
public toJSON(): { [k: string]: any };
|
|
30968
|
+
|
|
30969
|
+
/**
|
|
30970
|
+
* Gets the default type url for GetFileStoreDataProfileRequest
|
|
30971
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
30972
|
+
* @returns The default type url
|
|
30973
|
+
*/
|
|
30974
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
30975
|
+
}
|
|
30976
|
+
|
|
30977
|
+
/** Properties of a ListFileStoreDataProfilesRequest. */
|
|
30978
|
+
interface IListFileStoreDataProfilesRequest {
|
|
30979
|
+
|
|
30980
|
+
/** ListFileStoreDataProfilesRequest parent */
|
|
30981
|
+
parent?: (string|null);
|
|
30982
|
+
|
|
30983
|
+
/** ListFileStoreDataProfilesRequest pageToken */
|
|
30984
|
+
pageToken?: (string|null);
|
|
30985
|
+
|
|
30986
|
+
/** ListFileStoreDataProfilesRequest pageSize */
|
|
30987
|
+
pageSize?: (number|null);
|
|
30988
|
+
|
|
30989
|
+
/** ListFileStoreDataProfilesRequest orderBy */
|
|
30990
|
+
orderBy?: (string|null);
|
|
30991
|
+
|
|
30992
|
+
/** ListFileStoreDataProfilesRequest filter */
|
|
30993
|
+
filter?: (string|null);
|
|
30994
|
+
}
|
|
30995
|
+
|
|
30996
|
+
/** Represents a ListFileStoreDataProfilesRequest. */
|
|
30997
|
+
class ListFileStoreDataProfilesRequest implements IListFileStoreDataProfilesRequest {
|
|
30998
|
+
|
|
30999
|
+
/**
|
|
31000
|
+
* Constructs a new ListFileStoreDataProfilesRequest.
|
|
31001
|
+
* @param [properties] Properties to set
|
|
31002
|
+
*/
|
|
31003
|
+
constructor(properties?: google.privacy.dlp.v2.IListFileStoreDataProfilesRequest);
|
|
31004
|
+
|
|
31005
|
+
/** ListFileStoreDataProfilesRequest parent. */
|
|
31006
|
+
public parent: string;
|
|
31007
|
+
|
|
31008
|
+
/** ListFileStoreDataProfilesRequest pageToken. */
|
|
31009
|
+
public pageToken: string;
|
|
31010
|
+
|
|
31011
|
+
/** ListFileStoreDataProfilesRequest pageSize. */
|
|
31012
|
+
public pageSize: number;
|
|
31013
|
+
|
|
31014
|
+
/** ListFileStoreDataProfilesRequest orderBy. */
|
|
31015
|
+
public orderBy: string;
|
|
31016
|
+
|
|
31017
|
+
/** ListFileStoreDataProfilesRequest filter. */
|
|
31018
|
+
public filter: string;
|
|
31019
|
+
|
|
31020
|
+
/**
|
|
31021
|
+
* Creates a new ListFileStoreDataProfilesRequest instance using the specified properties.
|
|
31022
|
+
* @param [properties] Properties to set
|
|
31023
|
+
* @returns ListFileStoreDataProfilesRequest instance
|
|
31024
|
+
*/
|
|
31025
|
+
public static create(properties?: google.privacy.dlp.v2.IListFileStoreDataProfilesRequest): google.privacy.dlp.v2.ListFileStoreDataProfilesRequest;
|
|
31026
|
+
|
|
31027
|
+
/**
|
|
31028
|
+
* Encodes the specified ListFileStoreDataProfilesRequest message. Does not implicitly {@link google.privacy.dlp.v2.ListFileStoreDataProfilesRequest.verify|verify} messages.
|
|
31029
|
+
* @param message ListFileStoreDataProfilesRequest message or plain object to encode
|
|
31030
|
+
* @param [writer] Writer to encode to
|
|
31031
|
+
* @returns Writer
|
|
31032
|
+
*/
|
|
31033
|
+
public static encode(message: google.privacy.dlp.v2.IListFileStoreDataProfilesRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
31034
|
+
|
|
31035
|
+
/**
|
|
31036
|
+
* Encodes the specified ListFileStoreDataProfilesRequest message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.ListFileStoreDataProfilesRequest.verify|verify} messages.
|
|
31037
|
+
* @param message ListFileStoreDataProfilesRequest message or plain object to encode
|
|
31038
|
+
* @param [writer] Writer to encode to
|
|
31039
|
+
* @returns Writer
|
|
31040
|
+
*/
|
|
31041
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IListFileStoreDataProfilesRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
31042
|
+
|
|
31043
|
+
/**
|
|
31044
|
+
* Decodes a ListFileStoreDataProfilesRequest message from the specified reader or buffer.
|
|
31045
|
+
* @param reader Reader or buffer to decode from
|
|
31046
|
+
* @param [length] Message length if known beforehand
|
|
31047
|
+
* @returns ListFileStoreDataProfilesRequest
|
|
31048
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
31049
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
31050
|
+
*/
|
|
31051
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.ListFileStoreDataProfilesRequest;
|
|
31052
|
+
|
|
31053
|
+
/**
|
|
31054
|
+
* Decodes a ListFileStoreDataProfilesRequest message from the specified reader or buffer, length delimited.
|
|
31055
|
+
* @param reader Reader or buffer to decode from
|
|
31056
|
+
* @returns ListFileStoreDataProfilesRequest
|
|
31057
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
31058
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
31059
|
+
*/
|
|
31060
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.ListFileStoreDataProfilesRequest;
|
|
31061
|
+
|
|
31062
|
+
/**
|
|
31063
|
+
* Verifies a ListFileStoreDataProfilesRequest message.
|
|
31064
|
+
* @param message Plain object to verify
|
|
31065
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
31066
|
+
*/
|
|
31067
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
31068
|
+
|
|
31069
|
+
/**
|
|
31070
|
+
* Creates a ListFileStoreDataProfilesRequest message from a plain object. Also converts values to their respective internal types.
|
|
31071
|
+
* @param object Plain object
|
|
31072
|
+
* @returns ListFileStoreDataProfilesRequest
|
|
31073
|
+
*/
|
|
31074
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.ListFileStoreDataProfilesRequest;
|
|
31075
|
+
|
|
31076
|
+
/**
|
|
31077
|
+
* Creates a plain object from a ListFileStoreDataProfilesRequest message. Also converts values to other types if specified.
|
|
31078
|
+
* @param message ListFileStoreDataProfilesRequest
|
|
31079
|
+
* @param [options] Conversion options
|
|
31080
|
+
* @returns Plain object
|
|
31081
|
+
*/
|
|
31082
|
+
public static toObject(message: google.privacy.dlp.v2.ListFileStoreDataProfilesRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
31083
|
+
|
|
31084
|
+
/**
|
|
31085
|
+
* Converts this ListFileStoreDataProfilesRequest to JSON.
|
|
31086
|
+
* @returns JSON object
|
|
31087
|
+
*/
|
|
31088
|
+
public toJSON(): { [k: string]: any };
|
|
31089
|
+
|
|
31090
|
+
/**
|
|
31091
|
+
* Gets the default type url for ListFileStoreDataProfilesRequest
|
|
31092
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
31093
|
+
* @returns The default type url
|
|
31094
|
+
*/
|
|
31095
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
31096
|
+
}
|
|
31097
|
+
|
|
31098
|
+
/** Properties of a ListFileStoreDataProfilesResponse. */
|
|
31099
|
+
interface IListFileStoreDataProfilesResponse {
|
|
31100
|
+
|
|
31101
|
+
/** ListFileStoreDataProfilesResponse fileStoreDataProfiles */
|
|
31102
|
+
fileStoreDataProfiles?: (google.privacy.dlp.v2.IFileStoreDataProfile[]|null);
|
|
31103
|
+
|
|
31104
|
+
/** ListFileStoreDataProfilesResponse nextPageToken */
|
|
31105
|
+
nextPageToken?: (string|null);
|
|
31106
|
+
}
|
|
31107
|
+
|
|
31108
|
+
/** Represents a ListFileStoreDataProfilesResponse. */
|
|
31109
|
+
class ListFileStoreDataProfilesResponse implements IListFileStoreDataProfilesResponse {
|
|
31110
|
+
|
|
31111
|
+
/**
|
|
31112
|
+
* Constructs a new ListFileStoreDataProfilesResponse.
|
|
31113
|
+
* @param [properties] Properties to set
|
|
31114
|
+
*/
|
|
31115
|
+
constructor(properties?: google.privacy.dlp.v2.IListFileStoreDataProfilesResponse);
|
|
31116
|
+
|
|
31117
|
+
/** ListFileStoreDataProfilesResponse fileStoreDataProfiles. */
|
|
31118
|
+
public fileStoreDataProfiles: google.privacy.dlp.v2.IFileStoreDataProfile[];
|
|
31119
|
+
|
|
31120
|
+
/** ListFileStoreDataProfilesResponse nextPageToken. */
|
|
31121
|
+
public nextPageToken: string;
|
|
31122
|
+
|
|
31123
|
+
/**
|
|
31124
|
+
* Creates a new ListFileStoreDataProfilesResponse instance using the specified properties.
|
|
31125
|
+
* @param [properties] Properties to set
|
|
31126
|
+
* @returns ListFileStoreDataProfilesResponse instance
|
|
31127
|
+
*/
|
|
31128
|
+
public static create(properties?: google.privacy.dlp.v2.IListFileStoreDataProfilesResponse): google.privacy.dlp.v2.ListFileStoreDataProfilesResponse;
|
|
31129
|
+
|
|
31130
|
+
/**
|
|
31131
|
+
* Encodes the specified ListFileStoreDataProfilesResponse message. Does not implicitly {@link google.privacy.dlp.v2.ListFileStoreDataProfilesResponse.verify|verify} messages.
|
|
31132
|
+
* @param message ListFileStoreDataProfilesResponse message or plain object to encode
|
|
31133
|
+
* @param [writer] Writer to encode to
|
|
31134
|
+
* @returns Writer
|
|
31135
|
+
*/
|
|
31136
|
+
public static encode(message: google.privacy.dlp.v2.IListFileStoreDataProfilesResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
31137
|
+
|
|
31138
|
+
/**
|
|
31139
|
+
* Encodes the specified ListFileStoreDataProfilesResponse message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.ListFileStoreDataProfilesResponse.verify|verify} messages.
|
|
31140
|
+
* @param message ListFileStoreDataProfilesResponse message or plain object to encode
|
|
31141
|
+
* @param [writer] Writer to encode to
|
|
31142
|
+
* @returns Writer
|
|
31143
|
+
*/
|
|
31144
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IListFileStoreDataProfilesResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
31145
|
+
|
|
31146
|
+
/**
|
|
31147
|
+
* Decodes a ListFileStoreDataProfilesResponse message from the specified reader or buffer.
|
|
31148
|
+
* @param reader Reader or buffer to decode from
|
|
31149
|
+
* @param [length] Message length if known beforehand
|
|
31150
|
+
* @returns ListFileStoreDataProfilesResponse
|
|
31151
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
31152
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
31153
|
+
*/
|
|
31154
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.ListFileStoreDataProfilesResponse;
|
|
31155
|
+
|
|
31156
|
+
/**
|
|
31157
|
+
* Decodes a ListFileStoreDataProfilesResponse message from the specified reader or buffer, length delimited.
|
|
31158
|
+
* @param reader Reader or buffer to decode from
|
|
31159
|
+
* @returns ListFileStoreDataProfilesResponse
|
|
31160
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
31161
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
31162
|
+
*/
|
|
31163
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.ListFileStoreDataProfilesResponse;
|
|
31164
|
+
|
|
31165
|
+
/**
|
|
31166
|
+
* Verifies a ListFileStoreDataProfilesResponse message.
|
|
31167
|
+
* @param message Plain object to verify
|
|
31168
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
31169
|
+
*/
|
|
31170
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
31171
|
+
|
|
31172
|
+
/**
|
|
31173
|
+
* Creates a ListFileStoreDataProfilesResponse message from a plain object. Also converts values to their respective internal types.
|
|
31174
|
+
* @param object Plain object
|
|
31175
|
+
* @returns ListFileStoreDataProfilesResponse
|
|
31176
|
+
*/
|
|
31177
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.ListFileStoreDataProfilesResponse;
|
|
31178
|
+
|
|
31179
|
+
/**
|
|
31180
|
+
* Creates a plain object from a ListFileStoreDataProfilesResponse message. Also converts values to other types if specified.
|
|
31181
|
+
* @param message ListFileStoreDataProfilesResponse
|
|
31182
|
+
* @param [options] Conversion options
|
|
31183
|
+
* @returns Plain object
|
|
31184
|
+
*/
|
|
31185
|
+
public static toObject(message: google.privacy.dlp.v2.ListFileStoreDataProfilesResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
31186
|
+
|
|
31187
|
+
/**
|
|
31188
|
+
* Converts this ListFileStoreDataProfilesResponse to JSON.
|
|
31189
|
+
* @returns JSON object
|
|
31190
|
+
*/
|
|
31191
|
+
public toJSON(): { [k: string]: any };
|
|
31192
|
+
|
|
31193
|
+
/**
|
|
31194
|
+
* Gets the default type url for ListFileStoreDataProfilesResponse
|
|
31195
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
31196
|
+
* @returns The default type url
|
|
31197
|
+
*/
|
|
31198
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
31199
|
+
}
|
|
31200
|
+
|
|
31201
|
+
/** Properties of a DeleteFileStoreDataProfileRequest. */
|
|
31202
|
+
interface IDeleteFileStoreDataProfileRequest {
|
|
31203
|
+
|
|
31204
|
+
/** DeleteFileStoreDataProfileRequest name */
|
|
31205
|
+
name?: (string|null);
|
|
31206
|
+
}
|
|
31207
|
+
|
|
31208
|
+
/** Represents a DeleteFileStoreDataProfileRequest. */
|
|
31209
|
+
class DeleteFileStoreDataProfileRequest implements IDeleteFileStoreDataProfileRequest {
|
|
31210
|
+
|
|
31211
|
+
/**
|
|
31212
|
+
* Constructs a new DeleteFileStoreDataProfileRequest.
|
|
31213
|
+
* @param [properties] Properties to set
|
|
31214
|
+
*/
|
|
31215
|
+
constructor(properties?: google.privacy.dlp.v2.IDeleteFileStoreDataProfileRequest);
|
|
31216
|
+
|
|
31217
|
+
/** DeleteFileStoreDataProfileRequest name. */
|
|
31218
|
+
public name: string;
|
|
31219
|
+
|
|
31220
|
+
/**
|
|
31221
|
+
* Creates a new DeleteFileStoreDataProfileRequest instance using the specified properties.
|
|
31222
|
+
* @param [properties] Properties to set
|
|
31223
|
+
* @returns DeleteFileStoreDataProfileRequest instance
|
|
31224
|
+
*/
|
|
31225
|
+
public static create(properties?: google.privacy.dlp.v2.IDeleteFileStoreDataProfileRequest): google.privacy.dlp.v2.DeleteFileStoreDataProfileRequest;
|
|
31226
|
+
|
|
31227
|
+
/**
|
|
31228
|
+
* Encodes the specified DeleteFileStoreDataProfileRequest message. Does not implicitly {@link google.privacy.dlp.v2.DeleteFileStoreDataProfileRequest.verify|verify} messages.
|
|
31229
|
+
* @param message DeleteFileStoreDataProfileRequest message or plain object to encode
|
|
31230
|
+
* @param [writer] Writer to encode to
|
|
31231
|
+
* @returns Writer
|
|
31232
|
+
*/
|
|
31233
|
+
public static encode(message: google.privacy.dlp.v2.IDeleteFileStoreDataProfileRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
31234
|
+
|
|
31235
|
+
/**
|
|
31236
|
+
* Encodes the specified DeleteFileStoreDataProfileRequest message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DeleteFileStoreDataProfileRequest.verify|verify} messages.
|
|
31237
|
+
* @param message DeleteFileStoreDataProfileRequest message or plain object to encode
|
|
31238
|
+
* @param [writer] Writer to encode to
|
|
31239
|
+
* @returns Writer
|
|
31240
|
+
*/
|
|
31241
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IDeleteFileStoreDataProfileRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
31242
|
+
|
|
31243
|
+
/**
|
|
31244
|
+
* Decodes a DeleteFileStoreDataProfileRequest message from the specified reader or buffer.
|
|
31245
|
+
* @param reader Reader or buffer to decode from
|
|
31246
|
+
* @param [length] Message length if known beforehand
|
|
31247
|
+
* @returns DeleteFileStoreDataProfileRequest
|
|
31248
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
31249
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
31250
|
+
*/
|
|
31251
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DeleteFileStoreDataProfileRequest;
|
|
31252
|
+
|
|
31253
|
+
/**
|
|
31254
|
+
* Decodes a DeleteFileStoreDataProfileRequest message from the specified reader or buffer, length delimited.
|
|
31255
|
+
* @param reader Reader or buffer to decode from
|
|
31256
|
+
* @returns DeleteFileStoreDataProfileRequest
|
|
31257
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
31258
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
31259
|
+
*/
|
|
31260
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DeleteFileStoreDataProfileRequest;
|
|
31261
|
+
|
|
31262
|
+
/**
|
|
31263
|
+
* Verifies a DeleteFileStoreDataProfileRequest message.
|
|
31264
|
+
* @param message Plain object to verify
|
|
31265
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
31266
|
+
*/
|
|
31267
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
31268
|
+
|
|
31269
|
+
/**
|
|
31270
|
+
* Creates a DeleteFileStoreDataProfileRequest message from a plain object. Also converts values to their respective internal types.
|
|
31271
|
+
* @param object Plain object
|
|
31272
|
+
* @returns DeleteFileStoreDataProfileRequest
|
|
31273
|
+
*/
|
|
31274
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DeleteFileStoreDataProfileRequest;
|
|
31275
|
+
|
|
31276
|
+
/**
|
|
31277
|
+
* Creates a plain object from a DeleteFileStoreDataProfileRequest message. Also converts values to other types if specified.
|
|
31278
|
+
* @param message DeleteFileStoreDataProfileRequest
|
|
31279
|
+
* @param [options] Conversion options
|
|
31280
|
+
* @returns Plain object
|
|
31281
|
+
*/
|
|
31282
|
+
public static toObject(message: google.privacy.dlp.v2.DeleteFileStoreDataProfileRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
31283
|
+
|
|
31284
|
+
/**
|
|
31285
|
+
* Converts this DeleteFileStoreDataProfileRequest to JSON.
|
|
31286
|
+
* @returns JSON object
|
|
31287
|
+
*/
|
|
31288
|
+
public toJSON(): { [k: string]: any };
|
|
31289
|
+
|
|
31290
|
+
/**
|
|
31291
|
+
* Gets the default type url for DeleteFileStoreDataProfileRequest
|
|
31292
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
31293
|
+
* @returns The default type url
|
|
31294
|
+
*/
|
|
31295
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
31296
|
+
}
|
|
31297
|
+
|
|
28813
31298
|
/** Properties of a GetTableDataProfileRequest. */
|
|
28814
31299
|
interface IGetTableDataProfileRequest {
|
|
28815
31300
|
|
|
@@ -29336,6 +31821,9 @@ export namespace google {
|
|
|
29336
31821
|
/** DataProfilePubSubMessage profile */
|
|
29337
31822
|
profile?: (google.privacy.dlp.v2.ITableDataProfile|null);
|
|
29338
31823
|
|
|
31824
|
+
/** DataProfilePubSubMessage fileStoreProfile */
|
|
31825
|
+
fileStoreProfile?: (google.privacy.dlp.v2.IFileStoreDataProfile|null);
|
|
31826
|
+
|
|
29339
31827
|
/** DataProfilePubSubMessage event */
|
|
29340
31828
|
event?: (google.privacy.dlp.v2.DataProfileAction.EventType|keyof typeof google.privacy.dlp.v2.DataProfileAction.EventType|null);
|
|
29341
31829
|
}
|
|
@@ -29352,6 +31840,9 @@ export namespace google {
|
|
|
29352
31840
|
/** DataProfilePubSubMessage profile. */
|
|
29353
31841
|
public profile?: (google.privacy.dlp.v2.ITableDataProfile|null);
|
|
29354
31842
|
|
|
31843
|
+
/** DataProfilePubSubMessage fileStoreProfile. */
|
|
31844
|
+
public fileStoreProfile?: (google.privacy.dlp.v2.IFileStoreDataProfile|null);
|
|
31845
|
+
|
|
29355
31846
|
/** DataProfilePubSubMessage event. */
|
|
29356
31847
|
public event: (google.privacy.dlp.v2.DataProfileAction.EventType|keyof typeof google.privacy.dlp.v2.DataProfileAction.EventType);
|
|
29357
31848
|
|
|
@@ -30923,6 +33414,123 @@ export namespace google {
|
|
|
30923
33414
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
30924
33415
|
}
|
|
30925
33416
|
|
|
33417
|
+
/** Properties of a FileClusterType. */
|
|
33418
|
+
interface IFileClusterType {
|
|
33419
|
+
|
|
33420
|
+
/** FileClusterType cluster */
|
|
33421
|
+
cluster?: (google.privacy.dlp.v2.FileClusterType.Cluster|keyof typeof google.privacy.dlp.v2.FileClusterType.Cluster|null);
|
|
33422
|
+
}
|
|
33423
|
+
|
|
33424
|
+
/** Represents a FileClusterType. */
|
|
33425
|
+
class FileClusterType implements IFileClusterType {
|
|
33426
|
+
|
|
33427
|
+
/**
|
|
33428
|
+
* Constructs a new FileClusterType.
|
|
33429
|
+
* @param [properties] Properties to set
|
|
33430
|
+
*/
|
|
33431
|
+
constructor(properties?: google.privacy.dlp.v2.IFileClusterType);
|
|
33432
|
+
|
|
33433
|
+
/** FileClusterType cluster. */
|
|
33434
|
+
public cluster?: (google.privacy.dlp.v2.FileClusterType.Cluster|keyof typeof google.privacy.dlp.v2.FileClusterType.Cluster|null);
|
|
33435
|
+
|
|
33436
|
+
/** FileClusterType fileClusterType. */
|
|
33437
|
+
public fileClusterType?: "cluster";
|
|
33438
|
+
|
|
33439
|
+
/**
|
|
33440
|
+
* Creates a new FileClusterType instance using the specified properties.
|
|
33441
|
+
* @param [properties] Properties to set
|
|
33442
|
+
* @returns FileClusterType instance
|
|
33443
|
+
*/
|
|
33444
|
+
public static create(properties?: google.privacy.dlp.v2.IFileClusterType): google.privacy.dlp.v2.FileClusterType;
|
|
33445
|
+
|
|
33446
|
+
/**
|
|
33447
|
+
* Encodes the specified FileClusterType message. Does not implicitly {@link google.privacy.dlp.v2.FileClusterType.verify|verify} messages.
|
|
33448
|
+
* @param message FileClusterType message or plain object to encode
|
|
33449
|
+
* @param [writer] Writer to encode to
|
|
33450
|
+
* @returns Writer
|
|
33451
|
+
*/
|
|
33452
|
+
public static encode(message: google.privacy.dlp.v2.IFileClusterType, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
33453
|
+
|
|
33454
|
+
/**
|
|
33455
|
+
* Encodes the specified FileClusterType message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.FileClusterType.verify|verify} messages.
|
|
33456
|
+
* @param message FileClusterType message or plain object to encode
|
|
33457
|
+
* @param [writer] Writer to encode to
|
|
33458
|
+
* @returns Writer
|
|
33459
|
+
*/
|
|
33460
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IFileClusterType, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
33461
|
+
|
|
33462
|
+
/**
|
|
33463
|
+
* Decodes a FileClusterType message from the specified reader or buffer.
|
|
33464
|
+
* @param reader Reader or buffer to decode from
|
|
33465
|
+
* @param [length] Message length if known beforehand
|
|
33466
|
+
* @returns FileClusterType
|
|
33467
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
33468
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
33469
|
+
*/
|
|
33470
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.FileClusterType;
|
|
33471
|
+
|
|
33472
|
+
/**
|
|
33473
|
+
* Decodes a FileClusterType message from the specified reader or buffer, length delimited.
|
|
33474
|
+
* @param reader Reader or buffer to decode from
|
|
33475
|
+
* @returns FileClusterType
|
|
33476
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
33477
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
33478
|
+
*/
|
|
33479
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.FileClusterType;
|
|
33480
|
+
|
|
33481
|
+
/**
|
|
33482
|
+
* Verifies a FileClusterType message.
|
|
33483
|
+
* @param message Plain object to verify
|
|
33484
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
33485
|
+
*/
|
|
33486
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
33487
|
+
|
|
33488
|
+
/**
|
|
33489
|
+
* Creates a FileClusterType message from a plain object. Also converts values to their respective internal types.
|
|
33490
|
+
* @param object Plain object
|
|
33491
|
+
* @returns FileClusterType
|
|
33492
|
+
*/
|
|
33493
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.FileClusterType;
|
|
33494
|
+
|
|
33495
|
+
/**
|
|
33496
|
+
* Creates a plain object from a FileClusterType message. Also converts values to other types if specified.
|
|
33497
|
+
* @param message FileClusterType
|
|
33498
|
+
* @param [options] Conversion options
|
|
33499
|
+
* @returns Plain object
|
|
33500
|
+
*/
|
|
33501
|
+
public static toObject(message: google.privacy.dlp.v2.FileClusterType, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
33502
|
+
|
|
33503
|
+
/**
|
|
33504
|
+
* Converts this FileClusterType to JSON.
|
|
33505
|
+
* @returns JSON object
|
|
33506
|
+
*/
|
|
33507
|
+
public toJSON(): { [k: string]: any };
|
|
33508
|
+
|
|
33509
|
+
/**
|
|
33510
|
+
* Gets the default type url for FileClusterType
|
|
33511
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
33512
|
+
* @returns The default type url
|
|
33513
|
+
*/
|
|
33514
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
33515
|
+
}
|
|
33516
|
+
|
|
33517
|
+
namespace FileClusterType {
|
|
33518
|
+
|
|
33519
|
+
/** Cluster enum. */
|
|
33520
|
+
enum Cluster {
|
|
33521
|
+
CLUSTER_UNSPECIFIED = 0,
|
|
33522
|
+
CLUSTER_UNKNOWN = 1,
|
|
33523
|
+
CLUSTER_TEXT = 2,
|
|
33524
|
+
CLUSTER_STRUCTURED_DATA = 3,
|
|
33525
|
+
CLUSTER_SOURCE_CODE = 4,
|
|
33526
|
+
CLUSTER_RICH_DOCUMENT = 5,
|
|
33527
|
+
CLUSTER_IMAGE = 6,
|
|
33528
|
+
CLUSTER_ARCHIVE = 7,
|
|
33529
|
+
CLUSTER_MULTIMEDIA = 8,
|
|
33530
|
+
CLUSTER_EXECUTABLE = 9
|
|
33531
|
+
}
|
|
33532
|
+
}
|
|
33533
|
+
|
|
30926
33534
|
/** Properties of an InfoType. */
|
|
30927
33535
|
interface IInfoType {
|
|
30928
33536
|
|
|
@@ -31135,6 +33743,7 @@ export namespace google {
|
|
|
31135
33743
|
enum SensitivityScoreLevel {
|
|
31136
33744
|
SENSITIVITY_SCORE_UNSPECIFIED = 0,
|
|
31137
33745
|
SENSITIVITY_LOW = 10,
|
|
33746
|
+
SENSITIVITY_UNKNOWN = 12,
|
|
31138
33747
|
SENSITIVITY_MODERATE = 20,
|
|
31139
33748
|
SENSITIVITY_HIGH = 30
|
|
31140
33749
|
}
|
|
@@ -34328,6 +36937,109 @@ export namespace google {
|
|
|
34328
36937
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
34329
36938
|
}
|
|
34330
36939
|
|
|
36940
|
+
/** Properties of a TableReference. */
|
|
36941
|
+
interface ITableReference {
|
|
36942
|
+
|
|
36943
|
+
/** TableReference datasetId */
|
|
36944
|
+
datasetId?: (string|null);
|
|
36945
|
+
|
|
36946
|
+
/** TableReference tableId */
|
|
36947
|
+
tableId?: (string|null);
|
|
36948
|
+
}
|
|
36949
|
+
|
|
36950
|
+
/** Represents a TableReference. */
|
|
36951
|
+
class TableReference implements ITableReference {
|
|
36952
|
+
|
|
36953
|
+
/**
|
|
36954
|
+
* Constructs a new TableReference.
|
|
36955
|
+
* @param [properties] Properties to set
|
|
36956
|
+
*/
|
|
36957
|
+
constructor(properties?: google.privacy.dlp.v2.ITableReference);
|
|
36958
|
+
|
|
36959
|
+
/** TableReference datasetId. */
|
|
36960
|
+
public datasetId: string;
|
|
36961
|
+
|
|
36962
|
+
/** TableReference tableId. */
|
|
36963
|
+
public tableId: string;
|
|
36964
|
+
|
|
36965
|
+
/**
|
|
36966
|
+
* Creates a new TableReference instance using the specified properties.
|
|
36967
|
+
* @param [properties] Properties to set
|
|
36968
|
+
* @returns TableReference instance
|
|
36969
|
+
*/
|
|
36970
|
+
public static create(properties?: google.privacy.dlp.v2.ITableReference): google.privacy.dlp.v2.TableReference;
|
|
36971
|
+
|
|
36972
|
+
/**
|
|
36973
|
+
* Encodes the specified TableReference message. Does not implicitly {@link google.privacy.dlp.v2.TableReference.verify|verify} messages.
|
|
36974
|
+
* @param message TableReference message or plain object to encode
|
|
36975
|
+
* @param [writer] Writer to encode to
|
|
36976
|
+
* @returns Writer
|
|
36977
|
+
*/
|
|
36978
|
+
public static encode(message: google.privacy.dlp.v2.ITableReference, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
36979
|
+
|
|
36980
|
+
/**
|
|
36981
|
+
* Encodes the specified TableReference message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.TableReference.verify|verify} messages.
|
|
36982
|
+
* @param message TableReference message or plain object to encode
|
|
36983
|
+
* @param [writer] Writer to encode to
|
|
36984
|
+
* @returns Writer
|
|
36985
|
+
*/
|
|
36986
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.ITableReference, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
36987
|
+
|
|
36988
|
+
/**
|
|
36989
|
+
* Decodes a TableReference message from the specified reader or buffer.
|
|
36990
|
+
* @param reader Reader or buffer to decode from
|
|
36991
|
+
* @param [length] Message length if known beforehand
|
|
36992
|
+
* @returns TableReference
|
|
36993
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
36994
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
36995
|
+
*/
|
|
36996
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.TableReference;
|
|
36997
|
+
|
|
36998
|
+
/**
|
|
36999
|
+
* Decodes a TableReference message from the specified reader or buffer, length delimited.
|
|
37000
|
+
* @param reader Reader or buffer to decode from
|
|
37001
|
+
* @returns TableReference
|
|
37002
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
37003
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
37004
|
+
*/
|
|
37005
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.TableReference;
|
|
37006
|
+
|
|
37007
|
+
/**
|
|
37008
|
+
* Verifies a TableReference message.
|
|
37009
|
+
* @param message Plain object to verify
|
|
37010
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
37011
|
+
*/
|
|
37012
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
37013
|
+
|
|
37014
|
+
/**
|
|
37015
|
+
* Creates a TableReference message from a plain object. Also converts values to their respective internal types.
|
|
37016
|
+
* @param object Plain object
|
|
37017
|
+
* @returns TableReference
|
|
37018
|
+
*/
|
|
37019
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.TableReference;
|
|
37020
|
+
|
|
37021
|
+
/**
|
|
37022
|
+
* Creates a plain object from a TableReference message. Also converts values to other types if specified.
|
|
37023
|
+
* @param message TableReference
|
|
37024
|
+
* @param [options] Conversion options
|
|
37025
|
+
* @returns Plain object
|
|
37026
|
+
*/
|
|
37027
|
+
public static toObject(message: google.privacy.dlp.v2.TableReference, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
37028
|
+
|
|
37029
|
+
/**
|
|
37030
|
+
* Converts this TableReference to JSON.
|
|
37031
|
+
* @returns JSON object
|
|
37032
|
+
*/
|
|
37033
|
+
public toJSON(): { [k: string]: any };
|
|
37034
|
+
|
|
37035
|
+
/**
|
|
37036
|
+
* Gets the default type url for TableReference
|
|
37037
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
37038
|
+
* @returns The default type url
|
|
37039
|
+
*/
|
|
37040
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
37041
|
+
}
|
|
37042
|
+
|
|
34331
37043
|
/** Properties of a BigQueryField. */
|
|
34332
37044
|
interface IBigQueryField {
|
|
34333
37045
|
|