@google-cloud/dlp 5.2.0 → 5.3.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 +7 -0
- package/README.md +6 -0
- package/build/protos/google/privacy/dlp/v2/dlp.proto +598 -106
- package/build/protos/google/privacy/dlp/v2/storage.proto +41 -18
- package/build/protos/protos.d.ts +2107 -16
- package/build/protos/protos.js +10643 -4861
- package/build/protos/protos.json +710 -17
- package/build/src/v2/dlp_service_client.d.ts +1149 -133
- package/build/src/v2/dlp_service_client.js +1049 -85
- package/build/src/v2/dlp_service_client_config.json +30 -0
- package/package.json +3 -3
package/build/protos/protos.d.ts
CHANGED
|
@@ -564,6 +564,90 @@ export namespace google {
|
|
|
564
564
|
*/
|
|
565
565
|
public deleteStoredInfoType(request: google.privacy.dlp.v2.IDeleteStoredInfoTypeRequest): Promise<google.protobuf.Empty>;
|
|
566
566
|
|
|
567
|
+
/**
|
|
568
|
+
* Calls ListProjectDataProfiles.
|
|
569
|
+
* @param request ListProjectDataProfilesRequest message or plain object
|
|
570
|
+
* @param callback Node-style callback called with the error, if any, and ListProjectDataProfilesResponse
|
|
571
|
+
*/
|
|
572
|
+
public listProjectDataProfiles(request: google.privacy.dlp.v2.IListProjectDataProfilesRequest, callback: google.privacy.dlp.v2.DlpService.ListProjectDataProfilesCallback): void;
|
|
573
|
+
|
|
574
|
+
/**
|
|
575
|
+
* Calls ListProjectDataProfiles.
|
|
576
|
+
* @param request ListProjectDataProfilesRequest message or plain object
|
|
577
|
+
* @returns Promise
|
|
578
|
+
*/
|
|
579
|
+
public listProjectDataProfiles(request: google.privacy.dlp.v2.IListProjectDataProfilesRequest): Promise<google.privacy.dlp.v2.ListProjectDataProfilesResponse>;
|
|
580
|
+
|
|
581
|
+
/**
|
|
582
|
+
* Calls ListTableDataProfiles.
|
|
583
|
+
* @param request ListTableDataProfilesRequest message or plain object
|
|
584
|
+
* @param callback Node-style callback called with the error, if any, and ListTableDataProfilesResponse
|
|
585
|
+
*/
|
|
586
|
+
public listTableDataProfiles(request: google.privacy.dlp.v2.IListTableDataProfilesRequest, callback: google.privacy.dlp.v2.DlpService.ListTableDataProfilesCallback): void;
|
|
587
|
+
|
|
588
|
+
/**
|
|
589
|
+
* Calls ListTableDataProfiles.
|
|
590
|
+
* @param request ListTableDataProfilesRequest message or plain object
|
|
591
|
+
* @returns Promise
|
|
592
|
+
*/
|
|
593
|
+
public listTableDataProfiles(request: google.privacy.dlp.v2.IListTableDataProfilesRequest): Promise<google.privacy.dlp.v2.ListTableDataProfilesResponse>;
|
|
594
|
+
|
|
595
|
+
/**
|
|
596
|
+
* Calls ListColumnDataProfiles.
|
|
597
|
+
* @param request ListColumnDataProfilesRequest message or plain object
|
|
598
|
+
* @param callback Node-style callback called with the error, if any, and ListColumnDataProfilesResponse
|
|
599
|
+
*/
|
|
600
|
+
public listColumnDataProfiles(request: google.privacy.dlp.v2.IListColumnDataProfilesRequest, callback: google.privacy.dlp.v2.DlpService.ListColumnDataProfilesCallback): void;
|
|
601
|
+
|
|
602
|
+
/**
|
|
603
|
+
* Calls ListColumnDataProfiles.
|
|
604
|
+
* @param request ListColumnDataProfilesRequest message or plain object
|
|
605
|
+
* @returns Promise
|
|
606
|
+
*/
|
|
607
|
+
public listColumnDataProfiles(request: google.privacy.dlp.v2.IListColumnDataProfilesRequest): Promise<google.privacy.dlp.v2.ListColumnDataProfilesResponse>;
|
|
608
|
+
|
|
609
|
+
/**
|
|
610
|
+
* Calls GetProjectDataProfile.
|
|
611
|
+
* @param request GetProjectDataProfileRequest message or plain object
|
|
612
|
+
* @param callback Node-style callback called with the error, if any, and ProjectDataProfile
|
|
613
|
+
*/
|
|
614
|
+
public getProjectDataProfile(request: google.privacy.dlp.v2.IGetProjectDataProfileRequest, callback: google.privacy.dlp.v2.DlpService.GetProjectDataProfileCallback): void;
|
|
615
|
+
|
|
616
|
+
/**
|
|
617
|
+
* Calls GetProjectDataProfile.
|
|
618
|
+
* @param request GetProjectDataProfileRequest message or plain object
|
|
619
|
+
* @returns Promise
|
|
620
|
+
*/
|
|
621
|
+
public getProjectDataProfile(request: google.privacy.dlp.v2.IGetProjectDataProfileRequest): Promise<google.privacy.dlp.v2.ProjectDataProfile>;
|
|
622
|
+
|
|
623
|
+
/**
|
|
624
|
+
* Calls GetTableDataProfile.
|
|
625
|
+
* @param request GetTableDataProfileRequest message or plain object
|
|
626
|
+
* @param callback Node-style callback called with the error, if any, and TableDataProfile
|
|
627
|
+
*/
|
|
628
|
+
public getTableDataProfile(request: google.privacy.dlp.v2.IGetTableDataProfileRequest, callback: google.privacy.dlp.v2.DlpService.GetTableDataProfileCallback): void;
|
|
629
|
+
|
|
630
|
+
/**
|
|
631
|
+
* Calls GetTableDataProfile.
|
|
632
|
+
* @param request GetTableDataProfileRequest message or plain object
|
|
633
|
+
* @returns Promise
|
|
634
|
+
*/
|
|
635
|
+
public getTableDataProfile(request: google.privacy.dlp.v2.IGetTableDataProfileRequest): Promise<google.privacy.dlp.v2.TableDataProfile>;
|
|
636
|
+
|
|
637
|
+
/**
|
|
638
|
+
* Calls GetColumnDataProfile.
|
|
639
|
+
* @param request GetColumnDataProfileRequest message or plain object
|
|
640
|
+
* @param callback Node-style callback called with the error, if any, and ColumnDataProfile
|
|
641
|
+
*/
|
|
642
|
+
public getColumnDataProfile(request: google.privacy.dlp.v2.IGetColumnDataProfileRequest, callback: google.privacy.dlp.v2.DlpService.GetColumnDataProfileCallback): void;
|
|
643
|
+
|
|
644
|
+
/**
|
|
645
|
+
* Calls GetColumnDataProfile.
|
|
646
|
+
* @param request GetColumnDataProfileRequest message or plain object
|
|
647
|
+
* @returns Promise
|
|
648
|
+
*/
|
|
649
|
+
public getColumnDataProfile(request: google.privacy.dlp.v2.IGetColumnDataProfileRequest): Promise<google.privacy.dlp.v2.ColumnDataProfile>;
|
|
650
|
+
|
|
567
651
|
/**
|
|
568
652
|
* Calls HybridInspectDlpJob.
|
|
569
653
|
* @param request HybridInspectDlpJobRequest message or plain object
|
|
@@ -854,6 +938,48 @@ export namespace google {
|
|
|
854
938
|
*/
|
|
855
939
|
type DeleteStoredInfoTypeCallback = (error: (Error|null), response?: google.protobuf.Empty) => void;
|
|
856
940
|
|
|
941
|
+
/**
|
|
942
|
+
* Callback as used by {@link google.privacy.dlp.v2.DlpService|listProjectDataProfiles}.
|
|
943
|
+
* @param error Error, if any
|
|
944
|
+
* @param [response] ListProjectDataProfilesResponse
|
|
945
|
+
*/
|
|
946
|
+
type ListProjectDataProfilesCallback = (error: (Error|null), response?: google.privacy.dlp.v2.ListProjectDataProfilesResponse) => void;
|
|
947
|
+
|
|
948
|
+
/**
|
|
949
|
+
* Callback as used by {@link google.privacy.dlp.v2.DlpService|listTableDataProfiles}.
|
|
950
|
+
* @param error Error, if any
|
|
951
|
+
* @param [response] ListTableDataProfilesResponse
|
|
952
|
+
*/
|
|
953
|
+
type ListTableDataProfilesCallback = (error: (Error|null), response?: google.privacy.dlp.v2.ListTableDataProfilesResponse) => void;
|
|
954
|
+
|
|
955
|
+
/**
|
|
956
|
+
* Callback as used by {@link google.privacy.dlp.v2.DlpService|listColumnDataProfiles}.
|
|
957
|
+
* @param error Error, if any
|
|
958
|
+
* @param [response] ListColumnDataProfilesResponse
|
|
959
|
+
*/
|
|
960
|
+
type ListColumnDataProfilesCallback = (error: (Error|null), response?: google.privacy.dlp.v2.ListColumnDataProfilesResponse) => void;
|
|
961
|
+
|
|
962
|
+
/**
|
|
963
|
+
* Callback as used by {@link google.privacy.dlp.v2.DlpService|getProjectDataProfile}.
|
|
964
|
+
* @param error Error, if any
|
|
965
|
+
* @param [response] ProjectDataProfile
|
|
966
|
+
*/
|
|
967
|
+
type GetProjectDataProfileCallback = (error: (Error|null), response?: google.privacy.dlp.v2.ProjectDataProfile) => void;
|
|
968
|
+
|
|
969
|
+
/**
|
|
970
|
+
* Callback as used by {@link google.privacy.dlp.v2.DlpService|getTableDataProfile}.
|
|
971
|
+
* @param error Error, if any
|
|
972
|
+
* @param [response] TableDataProfile
|
|
973
|
+
*/
|
|
974
|
+
type GetTableDataProfileCallback = (error: (Error|null), response?: google.privacy.dlp.v2.TableDataProfile) => void;
|
|
975
|
+
|
|
976
|
+
/**
|
|
977
|
+
* Callback as used by {@link google.privacy.dlp.v2.DlpService|getColumnDataProfile}.
|
|
978
|
+
* @param error Error, if any
|
|
979
|
+
* @param [response] ColumnDataProfile
|
|
980
|
+
*/
|
|
981
|
+
type GetColumnDataProfileCallback = (error: (Error|null), response?: google.privacy.dlp.v2.ColumnDataProfile) => void;
|
|
982
|
+
|
|
857
983
|
/**
|
|
858
984
|
* Callback as used by {@link google.privacy.dlp.v2.DlpService|hybridInspectDlpJob}.
|
|
859
985
|
* @param error Error, if any
|
|
@@ -25466,6 +25592,678 @@ export namespace google {
|
|
|
25466
25592
|
INVALID = 4
|
|
25467
25593
|
}
|
|
25468
25594
|
|
|
25595
|
+
/** Properties of a ListProjectDataProfilesRequest. */
|
|
25596
|
+
interface IListProjectDataProfilesRequest {
|
|
25597
|
+
|
|
25598
|
+
/** ListProjectDataProfilesRequest parent */
|
|
25599
|
+
parent?: (string|null);
|
|
25600
|
+
|
|
25601
|
+
/** ListProjectDataProfilesRequest pageToken */
|
|
25602
|
+
pageToken?: (string|null);
|
|
25603
|
+
|
|
25604
|
+
/** ListProjectDataProfilesRequest pageSize */
|
|
25605
|
+
pageSize?: (number|null);
|
|
25606
|
+
|
|
25607
|
+
/** ListProjectDataProfilesRequest orderBy */
|
|
25608
|
+
orderBy?: (string|null);
|
|
25609
|
+
|
|
25610
|
+
/** ListProjectDataProfilesRequest filter */
|
|
25611
|
+
filter?: (string|null);
|
|
25612
|
+
}
|
|
25613
|
+
|
|
25614
|
+
/** Represents a ListProjectDataProfilesRequest. */
|
|
25615
|
+
class ListProjectDataProfilesRequest implements IListProjectDataProfilesRequest {
|
|
25616
|
+
|
|
25617
|
+
/**
|
|
25618
|
+
* Constructs a new ListProjectDataProfilesRequest.
|
|
25619
|
+
* @param [properties] Properties to set
|
|
25620
|
+
*/
|
|
25621
|
+
constructor(properties?: google.privacy.dlp.v2.IListProjectDataProfilesRequest);
|
|
25622
|
+
|
|
25623
|
+
/** ListProjectDataProfilesRequest parent. */
|
|
25624
|
+
public parent: string;
|
|
25625
|
+
|
|
25626
|
+
/** ListProjectDataProfilesRequest pageToken. */
|
|
25627
|
+
public pageToken: string;
|
|
25628
|
+
|
|
25629
|
+
/** ListProjectDataProfilesRequest pageSize. */
|
|
25630
|
+
public pageSize: number;
|
|
25631
|
+
|
|
25632
|
+
/** ListProjectDataProfilesRequest orderBy. */
|
|
25633
|
+
public orderBy: string;
|
|
25634
|
+
|
|
25635
|
+
/** ListProjectDataProfilesRequest filter. */
|
|
25636
|
+
public filter: string;
|
|
25637
|
+
|
|
25638
|
+
/**
|
|
25639
|
+
* Creates a new ListProjectDataProfilesRequest instance using the specified properties.
|
|
25640
|
+
* @param [properties] Properties to set
|
|
25641
|
+
* @returns ListProjectDataProfilesRequest instance
|
|
25642
|
+
*/
|
|
25643
|
+
public static create(properties?: google.privacy.dlp.v2.IListProjectDataProfilesRequest): google.privacy.dlp.v2.ListProjectDataProfilesRequest;
|
|
25644
|
+
|
|
25645
|
+
/**
|
|
25646
|
+
* Encodes the specified ListProjectDataProfilesRequest message. Does not implicitly {@link google.privacy.dlp.v2.ListProjectDataProfilesRequest.verify|verify} messages.
|
|
25647
|
+
* @param message ListProjectDataProfilesRequest message or plain object to encode
|
|
25648
|
+
* @param [writer] Writer to encode to
|
|
25649
|
+
* @returns Writer
|
|
25650
|
+
*/
|
|
25651
|
+
public static encode(message: google.privacy.dlp.v2.IListProjectDataProfilesRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
25652
|
+
|
|
25653
|
+
/**
|
|
25654
|
+
* Encodes the specified ListProjectDataProfilesRequest message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.ListProjectDataProfilesRequest.verify|verify} messages.
|
|
25655
|
+
* @param message ListProjectDataProfilesRequest message or plain object to encode
|
|
25656
|
+
* @param [writer] Writer to encode to
|
|
25657
|
+
* @returns Writer
|
|
25658
|
+
*/
|
|
25659
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IListProjectDataProfilesRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
25660
|
+
|
|
25661
|
+
/**
|
|
25662
|
+
* Decodes a ListProjectDataProfilesRequest message from the specified reader or buffer.
|
|
25663
|
+
* @param reader Reader or buffer to decode from
|
|
25664
|
+
* @param [length] Message length if known beforehand
|
|
25665
|
+
* @returns ListProjectDataProfilesRequest
|
|
25666
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
25667
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
25668
|
+
*/
|
|
25669
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.ListProjectDataProfilesRequest;
|
|
25670
|
+
|
|
25671
|
+
/**
|
|
25672
|
+
* Decodes a ListProjectDataProfilesRequest message from the specified reader or buffer, length delimited.
|
|
25673
|
+
* @param reader Reader or buffer to decode from
|
|
25674
|
+
* @returns ListProjectDataProfilesRequest
|
|
25675
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
25676
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
25677
|
+
*/
|
|
25678
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.ListProjectDataProfilesRequest;
|
|
25679
|
+
|
|
25680
|
+
/**
|
|
25681
|
+
* Verifies a ListProjectDataProfilesRequest message.
|
|
25682
|
+
* @param message Plain object to verify
|
|
25683
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
25684
|
+
*/
|
|
25685
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
25686
|
+
|
|
25687
|
+
/**
|
|
25688
|
+
* Creates a ListProjectDataProfilesRequest message from a plain object. Also converts values to their respective internal types.
|
|
25689
|
+
* @param object Plain object
|
|
25690
|
+
* @returns ListProjectDataProfilesRequest
|
|
25691
|
+
*/
|
|
25692
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.ListProjectDataProfilesRequest;
|
|
25693
|
+
|
|
25694
|
+
/**
|
|
25695
|
+
* Creates a plain object from a ListProjectDataProfilesRequest message. Also converts values to other types if specified.
|
|
25696
|
+
* @param message ListProjectDataProfilesRequest
|
|
25697
|
+
* @param [options] Conversion options
|
|
25698
|
+
* @returns Plain object
|
|
25699
|
+
*/
|
|
25700
|
+
public static toObject(message: google.privacy.dlp.v2.ListProjectDataProfilesRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
25701
|
+
|
|
25702
|
+
/**
|
|
25703
|
+
* Converts this ListProjectDataProfilesRequest to JSON.
|
|
25704
|
+
* @returns JSON object
|
|
25705
|
+
*/
|
|
25706
|
+
public toJSON(): { [k: string]: any };
|
|
25707
|
+
|
|
25708
|
+
/**
|
|
25709
|
+
* Gets the default type url for ListProjectDataProfilesRequest
|
|
25710
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
25711
|
+
* @returns The default type url
|
|
25712
|
+
*/
|
|
25713
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
25714
|
+
}
|
|
25715
|
+
|
|
25716
|
+
/** Properties of a ListProjectDataProfilesResponse. */
|
|
25717
|
+
interface IListProjectDataProfilesResponse {
|
|
25718
|
+
|
|
25719
|
+
/** ListProjectDataProfilesResponse projectDataProfiles */
|
|
25720
|
+
projectDataProfiles?: (google.privacy.dlp.v2.IProjectDataProfile[]|null);
|
|
25721
|
+
|
|
25722
|
+
/** ListProjectDataProfilesResponse nextPageToken */
|
|
25723
|
+
nextPageToken?: (string|null);
|
|
25724
|
+
}
|
|
25725
|
+
|
|
25726
|
+
/** Represents a ListProjectDataProfilesResponse. */
|
|
25727
|
+
class ListProjectDataProfilesResponse implements IListProjectDataProfilesResponse {
|
|
25728
|
+
|
|
25729
|
+
/**
|
|
25730
|
+
* Constructs a new ListProjectDataProfilesResponse.
|
|
25731
|
+
* @param [properties] Properties to set
|
|
25732
|
+
*/
|
|
25733
|
+
constructor(properties?: google.privacy.dlp.v2.IListProjectDataProfilesResponse);
|
|
25734
|
+
|
|
25735
|
+
/** ListProjectDataProfilesResponse projectDataProfiles. */
|
|
25736
|
+
public projectDataProfiles: google.privacy.dlp.v2.IProjectDataProfile[];
|
|
25737
|
+
|
|
25738
|
+
/** ListProjectDataProfilesResponse nextPageToken. */
|
|
25739
|
+
public nextPageToken: string;
|
|
25740
|
+
|
|
25741
|
+
/**
|
|
25742
|
+
* Creates a new ListProjectDataProfilesResponse instance using the specified properties.
|
|
25743
|
+
* @param [properties] Properties to set
|
|
25744
|
+
* @returns ListProjectDataProfilesResponse instance
|
|
25745
|
+
*/
|
|
25746
|
+
public static create(properties?: google.privacy.dlp.v2.IListProjectDataProfilesResponse): google.privacy.dlp.v2.ListProjectDataProfilesResponse;
|
|
25747
|
+
|
|
25748
|
+
/**
|
|
25749
|
+
* Encodes the specified ListProjectDataProfilesResponse message. Does not implicitly {@link google.privacy.dlp.v2.ListProjectDataProfilesResponse.verify|verify} messages.
|
|
25750
|
+
* @param message ListProjectDataProfilesResponse message or plain object to encode
|
|
25751
|
+
* @param [writer] Writer to encode to
|
|
25752
|
+
* @returns Writer
|
|
25753
|
+
*/
|
|
25754
|
+
public static encode(message: google.privacy.dlp.v2.IListProjectDataProfilesResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
25755
|
+
|
|
25756
|
+
/**
|
|
25757
|
+
* Encodes the specified ListProjectDataProfilesResponse message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.ListProjectDataProfilesResponse.verify|verify} messages.
|
|
25758
|
+
* @param message ListProjectDataProfilesResponse message or plain object to encode
|
|
25759
|
+
* @param [writer] Writer to encode to
|
|
25760
|
+
* @returns Writer
|
|
25761
|
+
*/
|
|
25762
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IListProjectDataProfilesResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
25763
|
+
|
|
25764
|
+
/**
|
|
25765
|
+
* Decodes a ListProjectDataProfilesResponse message from the specified reader or buffer.
|
|
25766
|
+
* @param reader Reader or buffer to decode from
|
|
25767
|
+
* @param [length] Message length if known beforehand
|
|
25768
|
+
* @returns ListProjectDataProfilesResponse
|
|
25769
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
25770
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
25771
|
+
*/
|
|
25772
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.ListProjectDataProfilesResponse;
|
|
25773
|
+
|
|
25774
|
+
/**
|
|
25775
|
+
* Decodes a ListProjectDataProfilesResponse message from the specified reader or buffer, length delimited.
|
|
25776
|
+
* @param reader Reader or buffer to decode from
|
|
25777
|
+
* @returns ListProjectDataProfilesResponse
|
|
25778
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
25779
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
25780
|
+
*/
|
|
25781
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.ListProjectDataProfilesResponse;
|
|
25782
|
+
|
|
25783
|
+
/**
|
|
25784
|
+
* Verifies a ListProjectDataProfilesResponse message.
|
|
25785
|
+
* @param message Plain object to verify
|
|
25786
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
25787
|
+
*/
|
|
25788
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
25789
|
+
|
|
25790
|
+
/**
|
|
25791
|
+
* Creates a ListProjectDataProfilesResponse message from a plain object. Also converts values to their respective internal types.
|
|
25792
|
+
* @param object Plain object
|
|
25793
|
+
* @returns ListProjectDataProfilesResponse
|
|
25794
|
+
*/
|
|
25795
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.ListProjectDataProfilesResponse;
|
|
25796
|
+
|
|
25797
|
+
/**
|
|
25798
|
+
* Creates a plain object from a ListProjectDataProfilesResponse message. Also converts values to other types if specified.
|
|
25799
|
+
* @param message ListProjectDataProfilesResponse
|
|
25800
|
+
* @param [options] Conversion options
|
|
25801
|
+
* @returns Plain object
|
|
25802
|
+
*/
|
|
25803
|
+
public static toObject(message: google.privacy.dlp.v2.ListProjectDataProfilesResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
25804
|
+
|
|
25805
|
+
/**
|
|
25806
|
+
* Converts this ListProjectDataProfilesResponse to JSON.
|
|
25807
|
+
* @returns JSON object
|
|
25808
|
+
*/
|
|
25809
|
+
public toJSON(): { [k: string]: any };
|
|
25810
|
+
|
|
25811
|
+
/**
|
|
25812
|
+
* Gets the default type url for ListProjectDataProfilesResponse
|
|
25813
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
25814
|
+
* @returns The default type url
|
|
25815
|
+
*/
|
|
25816
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
25817
|
+
}
|
|
25818
|
+
|
|
25819
|
+
/** Properties of a ListTableDataProfilesRequest. */
|
|
25820
|
+
interface IListTableDataProfilesRequest {
|
|
25821
|
+
|
|
25822
|
+
/** ListTableDataProfilesRequest parent */
|
|
25823
|
+
parent?: (string|null);
|
|
25824
|
+
|
|
25825
|
+
/** ListTableDataProfilesRequest pageToken */
|
|
25826
|
+
pageToken?: (string|null);
|
|
25827
|
+
|
|
25828
|
+
/** ListTableDataProfilesRequest pageSize */
|
|
25829
|
+
pageSize?: (number|null);
|
|
25830
|
+
|
|
25831
|
+
/** ListTableDataProfilesRequest orderBy */
|
|
25832
|
+
orderBy?: (string|null);
|
|
25833
|
+
|
|
25834
|
+
/** ListTableDataProfilesRequest filter */
|
|
25835
|
+
filter?: (string|null);
|
|
25836
|
+
}
|
|
25837
|
+
|
|
25838
|
+
/** Represents a ListTableDataProfilesRequest. */
|
|
25839
|
+
class ListTableDataProfilesRequest implements IListTableDataProfilesRequest {
|
|
25840
|
+
|
|
25841
|
+
/**
|
|
25842
|
+
* Constructs a new ListTableDataProfilesRequest.
|
|
25843
|
+
* @param [properties] Properties to set
|
|
25844
|
+
*/
|
|
25845
|
+
constructor(properties?: google.privacy.dlp.v2.IListTableDataProfilesRequest);
|
|
25846
|
+
|
|
25847
|
+
/** ListTableDataProfilesRequest parent. */
|
|
25848
|
+
public parent: string;
|
|
25849
|
+
|
|
25850
|
+
/** ListTableDataProfilesRequest pageToken. */
|
|
25851
|
+
public pageToken: string;
|
|
25852
|
+
|
|
25853
|
+
/** ListTableDataProfilesRequest pageSize. */
|
|
25854
|
+
public pageSize: number;
|
|
25855
|
+
|
|
25856
|
+
/** ListTableDataProfilesRequest orderBy. */
|
|
25857
|
+
public orderBy: string;
|
|
25858
|
+
|
|
25859
|
+
/** ListTableDataProfilesRequest filter. */
|
|
25860
|
+
public filter: string;
|
|
25861
|
+
|
|
25862
|
+
/**
|
|
25863
|
+
* Creates a new ListTableDataProfilesRequest instance using the specified properties.
|
|
25864
|
+
* @param [properties] Properties to set
|
|
25865
|
+
* @returns ListTableDataProfilesRequest instance
|
|
25866
|
+
*/
|
|
25867
|
+
public static create(properties?: google.privacy.dlp.v2.IListTableDataProfilesRequest): google.privacy.dlp.v2.ListTableDataProfilesRequest;
|
|
25868
|
+
|
|
25869
|
+
/**
|
|
25870
|
+
* Encodes the specified ListTableDataProfilesRequest message. Does not implicitly {@link google.privacy.dlp.v2.ListTableDataProfilesRequest.verify|verify} messages.
|
|
25871
|
+
* @param message ListTableDataProfilesRequest message or plain object to encode
|
|
25872
|
+
* @param [writer] Writer to encode to
|
|
25873
|
+
* @returns Writer
|
|
25874
|
+
*/
|
|
25875
|
+
public static encode(message: google.privacy.dlp.v2.IListTableDataProfilesRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
25876
|
+
|
|
25877
|
+
/**
|
|
25878
|
+
* Encodes the specified ListTableDataProfilesRequest message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.ListTableDataProfilesRequest.verify|verify} messages.
|
|
25879
|
+
* @param message ListTableDataProfilesRequest message or plain object to encode
|
|
25880
|
+
* @param [writer] Writer to encode to
|
|
25881
|
+
* @returns Writer
|
|
25882
|
+
*/
|
|
25883
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IListTableDataProfilesRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
25884
|
+
|
|
25885
|
+
/**
|
|
25886
|
+
* Decodes a ListTableDataProfilesRequest message from the specified reader or buffer.
|
|
25887
|
+
* @param reader Reader or buffer to decode from
|
|
25888
|
+
* @param [length] Message length if known beforehand
|
|
25889
|
+
* @returns ListTableDataProfilesRequest
|
|
25890
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
25891
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
25892
|
+
*/
|
|
25893
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.ListTableDataProfilesRequest;
|
|
25894
|
+
|
|
25895
|
+
/**
|
|
25896
|
+
* Decodes a ListTableDataProfilesRequest message from the specified reader or buffer, length delimited.
|
|
25897
|
+
* @param reader Reader or buffer to decode from
|
|
25898
|
+
* @returns ListTableDataProfilesRequest
|
|
25899
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
25900
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
25901
|
+
*/
|
|
25902
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.ListTableDataProfilesRequest;
|
|
25903
|
+
|
|
25904
|
+
/**
|
|
25905
|
+
* Verifies a ListTableDataProfilesRequest message.
|
|
25906
|
+
* @param message Plain object to verify
|
|
25907
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
25908
|
+
*/
|
|
25909
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
25910
|
+
|
|
25911
|
+
/**
|
|
25912
|
+
* Creates a ListTableDataProfilesRequest message from a plain object. Also converts values to their respective internal types.
|
|
25913
|
+
* @param object Plain object
|
|
25914
|
+
* @returns ListTableDataProfilesRequest
|
|
25915
|
+
*/
|
|
25916
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.ListTableDataProfilesRequest;
|
|
25917
|
+
|
|
25918
|
+
/**
|
|
25919
|
+
* Creates a plain object from a ListTableDataProfilesRequest message. Also converts values to other types if specified.
|
|
25920
|
+
* @param message ListTableDataProfilesRequest
|
|
25921
|
+
* @param [options] Conversion options
|
|
25922
|
+
* @returns Plain object
|
|
25923
|
+
*/
|
|
25924
|
+
public static toObject(message: google.privacy.dlp.v2.ListTableDataProfilesRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
25925
|
+
|
|
25926
|
+
/**
|
|
25927
|
+
* Converts this ListTableDataProfilesRequest to JSON.
|
|
25928
|
+
* @returns JSON object
|
|
25929
|
+
*/
|
|
25930
|
+
public toJSON(): { [k: string]: any };
|
|
25931
|
+
|
|
25932
|
+
/**
|
|
25933
|
+
* Gets the default type url for ListTableDataProfilesRequest
|
|
25934
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
25935
|
+
* @returns The default type url
|
|
25936
|
+
*/
|
|
25937
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
25938
|
+
}
|
|
25939
|
+
|
|
25940
|
+
/** Properties of a ListTableDataProfilesResponse. */
|
|
25941
|
+
interface IListTableDataProfilesResponse {
|
|
25942
|
+
|
|
25943
|
+
/** ListTableDataProfilesResponse tableDataProfiles */
|
|
25944
|
+
tableDataProfiles?: (google.privacy.dlp.v2.ITableDataProfile[]|null);
|
|
25945
|
+
|
|
25946
|
+
/** ListTableDataProfilesResponse nextPageToken */
|
|
25947
|
+
nextPageToken?: (string|null);
|
|
25948
|
+
}
|
|
25949
|
+
|
|
25950
|
+
/** Represents a ListTableDataProfilesResponse. */
|
|
25951
|
+
class ListTableDataProfilesResponse implements IListTableDataProfilesResponse {
|
|
25952
|
+
|
|
25953
|
+
/**
|
|
25954
|
+
* Constructs a new ListTableDataProfilesResponse.
|
|
25955
|
+
* @param [properties] Properties to set
|
|
25956
|
+
*/
|
|
25957
|
+
constructor(properties?: google.privacy.dlp.v2.IListTableDataProfilesResponse);
|
|
25958
|
+
|
|
25959
|
+
/** ListTableDataProfilesResponse tableDataProfiles. */
|
|
25960
|
+
public tableDataProfiles: google.privacy.dlp.v2.ITableDataProfile[];
|
|
25961
|
+
|
|
25962
|
+
/** ListTableDataProfilesResponse nextPageToken. */
|
|
25963
|
+
public nextPageToken: string;
|
|
25964
|
+
|
|
25965
|
+
/**
|
|
25966
|
+
* Creates a new ListTableDataProfilesResponse instance using the specified properties.
|
|
25967
|
+
* @param [properties] Properties to set
|
|
25968
|
+
* @returns ListTableDataProfilesResponse instance
|
|
25969
|
+
*/
|
|
25970
|
+
public static create(properties?: google.privacy.dlp.v2.IListTableDataProfilesResponse): google.privacy.dlp.v2.ListTableDataProfilesResponse;
|
|
25971
|
+
|
|
25972
|
+
/**
|
|
25973
|
+
* Encodes the specified ListTableDataProfilesResponse message. Does not implicitly {@link google.privacy.dlp.v2.ListTableDataProfilesResponse.verify|verify} messages.
|
|
25974
|
+
* @param message ListTableDataProfilesResponse message or plain object to encode
|
|
25975
|
+
* @param [writer] Writer to encode to
|
|
25976
|
+
* @returns Writer
|
|
25977
|
+
*/
|
|
25978
|
+
public static encode(message: google.privacy.dlp.v2.IListTableDataProfilesResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
25979
|
+
|
|
25980
|
+
/**
|
|
25981
|
+
* Encodes the specified ListTableDataProfilesResponse message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.ListTableDataProfilesResponse.verify|verify} messages.
|
|
25982
|
+
* @param message ListTableDataProfilesResponse message or plain object to encode
|
|
25983
|
+
* @param [writer] Writer to encode to
|
|
25984
|
+
* @returns Writer
|
|
25985
|
+
*/
|
|
25986
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IListTableDataProfilesResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
25987
|
+
|
|
25988
|
+
/**
|
|
25989
|
+
* Decodes a ListTableDataProfilesResponse message from the specified reader or buffer.
|
|
25990
|
+
* @param reader Reader or buffer to decode from
|
|
25991
|
+
* @param [length] Message length if known beforehand
|
|
25992
|
+
* @returns ListTableDataProfilesResponse
|
|
25993
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
25994
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
25995
|
+
*/
|
|
25996
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.ListTableDataProfilesResponse;
|
|
25997
|
+
|
|
25998
|
+
/**
|
|
25999
|
+
* Decodes a ListTableDataProfilesResponse message from the specified reader or buffer, length delimited.
|
|
26000
|
+
* @param reader Reader or buffer to decode from
|
|
26001
|
+
* @returns ListTableDataProfilesResponse
|
|
26002
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
26003
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
26004
|
+
*/
|
|
26005
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.ListTableDataProfilesResponse;
|
|
26006
|
+
|
|
26007
|
+
/**
|
|
26008
|
+
* Verifies a ListTableDataProfilesResponse message.
|
|
26009
|
+
* @param message Plain object to verify
|
|
26010
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
26011
|
+
*/
|
|
26012
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
26013
|
+
|
|
26014
|
+
/**
|
|
26015
|
+
* Creates a ListTableDataProfilesResponse message from a plain object. Also converts values to their respective internal types.
|
|
26016
|
+
* @param object Plain object
|
|
26017
|
+
* @returns ListTableDataProfilesResponse
|
|
26018
|
+
*/
|
|
26019
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.ListTableDataProfilesResponse;
|
|
26020
|
+
|
|
26021
|
+
/**
|
|
26022
|
+
* Creates a plain object from a ListTableDataProfilesResponse message. Also converts values to other types if specified.
|
|
26023
|
+
* @param message ListTableDataProfilesResponse
|
|
26024
|
+
* @param [options] Conversion options
|
|
26025
|
+
* @returns Plain object
|
|
26026
|
+
*/
|
|
26027
|
+
public static toObject(message: google.privacy.dlp.v2.ListTableDataProfilesResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
26028
|
+
|
|
26029
|
+
/**
|
|
26030
|
+
* Converts this ListTableDataProfilesResponse to JSON.
|
|
26031
|
+
* @returns JSON object
|
|
26032
|
+
*/
|
|
26033
|
+
public toJSON(): { [k: string]: any };
|
|
26034
|
+
|
|
26035
|
+
/**
|
|
26036
|
+
* Gets the default type url for ListTableDataProfilesResponse
|
|
26037
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
26038
|
+
* @returns The default type url
|
|
26039
|
+
*/
|
|
26040
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
26041
|
+
}
|
|
26042
|
+
|
|
26043
|
+
/** Properties of a ListColumnDataProfilesRequest. */
|
|
26044
|
+
interface IListColumnDataProfilesRequest {
|
|
26045
|
+
|
|
26046
|
+
/** ListColumnDataProfilesRequest parent */
|
|
26047
|
+
parent?: (string|null);
|
|
26048
|
+
|
|
26049
|
+
/** ListColumnDataProfilesRequest pageToken */
|
|
26050
|
+
pageToken?: (string|null);
|
|
26051
|
+
|
|
26052
|
+
/** ListColumnDataProfilesRequest pageSize */
|
|
26053
|
+
pageSize?: (number|null);
|
|
26054
|
+
|
|
26055
|
+
/** ListColumnDataProfilesRequest orderBy */
|
|
26056
|
+
orderBy?: (string|null);
|
|
26057
|
+
|
|
26058
|
+
/** ListColumnDataProfilesRequest filter */
|
|
26059
|
+
filter?: (string|null);
|
|
26060
|
+
}
|
|
26061
|
+
|
|
26062
|
+
/** Represents a ListColumnDataProfilesRequest. */
|
|
26063
|
+
class ListColumnDataProfilesRequest implements IListColumnDataProfilesRequest {
|
|
26064
|
+
|
|
26065
|
+
/**
|
|
26066
|
+
* Constructs a new ListColumnDataProfilesRequest.
|
|
26067
|
+
* @param [properties] Properties to set
|
|
26068
|
+
*/
|
|
26069
|
+
constructor(properties?: google.privacy.dlp.v2.IListColumnDataProfilesRequest);
|
|
26070
|
+
|
|
26071
|
+
/** ListColumnDataProfilesRequest parent. */
|
|
26072
|
+
public parent: string;
|
|
26073
|
+
|
|
26074
|
+
/** ListColumnDataProfilesRequest pageToken. */
|
|
26075
|
+
public pageToken: string;
|
|
26076
|
+
|
|
26077
|
+
/** ListColumnDataProfilesRequest pageSize. */
|
|
26078
|
+
public pageSize: number;
|
|
26079
|
+
|
|
26080
|
+
/** ListColumnDataProfilesRequest orderBy. */
|
|
26081
|
+
public orderBy: string;
|
|
26082
|
+
|
|
26083
|
+
/** ListColumnDataProfilesRequest filter. */
|
|
26084
|
+
public filter: string;
|
|
26085
|
+
|
|
26086
|
+
/**
|
|
26087
|
+
* Creates a new ListColumnDataProfilesRequest instance using the specified properties.
|
|
26088
|
+
* @param [properties] Properties to set
|
|
26089
|
+
* @returns ListColumnDataProfilesRequest instance
|
|
26090
|
+
*/
|
|
26091
|
+
public static create(properties?: google.privacy.dlp.v2.IListColumnDataProfilesRequest): google.privacy.dlp.v2.ListColumnDataProfilesRequest;
|
|
26092
|
+
|
|
26093
|
+
/**
|
|
26094
|
+
* Encodes the specified ListColumnDataProfilesRequest message. Does not implicitly {@link google.privacy.dlp.v2.ListColumnDataProfilesRequest.verify|verify} messages.
|
|
26095
|
+
* @param message ListColumnDataProfilesRequest message or plain object to encode
|
|
26096
|
+
* @param [writer] Writer to encode to
|
|
26097
|
+
* @returns Writer
|
|
26098
|
+
*/
|
|
26099
|
+
public static encode(message: google.privacy.dlp.v2.IListColumnDataProfilesRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
26100
|
+
|
|
26101
|
+
/**
|
|
26102
|
+
* Encodes the specified ListColumnDataProfilesRequest message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.ListColumnDataProfilesRequest.verify|verify} messages.
|
|
26103
|
+
* @param message ListColumnDataProfilesRequest message or plain object to encode
|
|
26104
|
+
* @param [writer] Writer to encode to
|
|
26105
|
+
* @returns Writer
|
|
26106
|
+
*/
|
|
26107
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IListColumnDataProfilesRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
26108
|
+
|
|
26109
|
+
/**
|
|
26110
|
+
* Decodes a ListColumnDataProfilesRequest message from the specified reader or buffer.
|
|
26111
|
+
* @param reader Reader or buffer to decode from
|
|
26112
|
+
* @param [length] Message length if known beforehand
|
|
26113
|
+
* @returns ListColumnDataProfilesRequest
|
|
26114
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
26115
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
26116
|
+
*/
|
|
26117
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.ListColumnDataProfilesRequest;
|
|
26118
|
+
|
|
26119
|
+
/**
|
|
26120
|
+
* Decodes a ListColumnDataProfilesRequest message from the specified reader or buffer, length delimited.
|
|
26121
|
+
* @param reader Reader or buffer to decode from
|
|
26122
|
+
* @returns ListColumnDataProfilesRequest
|
|
26123
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
26124
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
26125
|
+
*/
|
|
26126
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.ListColumnDataProfilesRequest;
|
|
26127
|
+
|
|
26128
|
+
/**
|
|
26129
|
+
* Verifies a ListColumnDataProfilesRequest message.
|
|
26130
|
+
* @param message Plain object to verify
|
|
26131
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
26132
|
+
*/
|
|
26133
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
26134
|
+
|
|
26135
|
+
/**
|
|
26136
|
+
* Creates a ListColumnDataProfilesRequest message from a plain object. Also converts values to their respective internal types.
|
|
26137
|
+
* @param object Plain object
|
|
26138
|
+
* @returns ListColumnDataProfilesRequest
|
|
26139
|
+
*/
|
|
26140
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.ListColumnDataProfilesRequest;
|
|
26141
|
+
|
|
26142
|
+
/**
|
|
26143
|
+
* Creates a plain object from a ListColumnDataProfilesRequest message. Also converts values to other types if specified.
|
|
26144
|
+
* @param message ListColumnDataProfilesRequest
|
|
26145
|
+
* @param [options] Conversion options
|
|
26146
|
+
* @returns Plain object
|
|
26147
|
+
*/
|
|
26148
|
+
public static toObject(message: google.privacy.dlp.v2.ListColumnDataProfilesRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
26149
|
+
|
|
26150
|
+
/**
|
|
26151
|
+
* Converts this ListColumnDataProfilesRequest to JSON.
|
|
26152
|
+
* @returns JSON object
|
|
26153
|
+
*/
|
|
26154
|
+
public toJSON(): { [k: string]: any };
|
|
26155
|
+
|
|
26156
|
+
/**
|
|
26157
|
+
* Gets the default type url for ListColumnDataProfilesRequest
|
|
26158
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
26159
|
+
* @returns The default type url
|
|
26160
|
+
*/
|
|
26161
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
26162
|
+
}
|
|
26163
|
+
|
|
26164
|
+
/** Properties of a ListColumnDataProfilesResponse. */
|
|
26165
|
+
interface IListColumnDataProfilesResponse {
|
|
26166
|
+
|
|
26167
|
+
/** ListColumnDataProfilesResponse columnDataProfiles */
|
|
26168
|
+
columnDataProfiles?: (google.privacy.dlp.v2.IColumnDataProfile[]|null);
|
|
26169
|
+
|
|
26170
|
+
/** ListColumnDataProfilesResponse nextPageToken */
|
|
26171
|
+
nextPageToken?: (string|null);
|
|
26172
|
+
}
|
|
26173
|
+
|
|
26174
|
+
/** Represents a ListColumnDataProfilesResponse. */
|
|
26175
|
+
class ListColumnDataProfilesResponse implements IListColumnDataProfilesResponse {
|
|
26176
|
+
|
|
26177
|
+
/**
|
|
26178
|
+
* Constructs a new ListColumnDataProfilesResponse.
|
|
26179
|
+
* @param [properties] Properties to set
|
|
26180
|
+
*/
|
|
26181
|
+
constructor(properties?: google.privacy.dlp.v2.IListColumnDataProfilesResponse);
|
|
26182
|
+
|
|
26183
|
+
/** ListColumnDataProfilesResponse columnDataProfiles. */
|
|
26184
|
+
public columnDataProfiles: google.privacy.dlp.v2.IColumnDataProfile[];
|
|
26185
|
+
|
|
26186
|
+
/** ListColumnDataProfilesResponse nextPageToken. */
|
|
26187
|
+
public nextPageToken: string;
|
|
26188
|
+
|
|
26189
|
+
/**
|
|
26190
|
+
* Creates a new ListColumnDataProfilesResponse instance using the specified properties.
|
|
26191
|
+
* @param [properties] Properties to set
|
|
26192
|
+
* @returns ListColumnDataProfilesResponse instance
|
|
26193
|
+
*/
|
|
26194
|
+
public static create(properties?: google.privacy.dlp.v2.IListColumnDataProfilesResponse): google.privacy.dlp.v2.ListColumnDataProfilesResponse;
|
|
26195
|
+
|
|
26196
|
+
/**
|
|
26197
|
+
* Encodes the specified ListColumnDataProfilesResponse message. Does not implicitly {@link google.privacy.dlp.v2.ListColumnDataProfilesResponse.verify|verify} messages.
|
|
26198
|
+
* @param message ListColumnDataProfilesResponse message or plain object to encode
|
|
26199
|
+
* @param [writer] Writer to encode to
|
|
26200
|
+
* @returns Writer
|
|
26201
|
+
*/
|
|
26202
|
+
public static encode(message: google.privacy.dlp.v2.IListColumnDataProfilesResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
26203
|
+
|
|
26204
|
+
/**
|
|
26205
|
+
* Encodes the specified ListColumnDataProfilesResponse message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.ListColumnDataProfilesResponse.verify|verify} messages.
|
|
26206
|
+
* @param message ListColumnDataProfilesResponse message or plain object to encode
|
|
26207
|
+
* @param [writer] Writer to encode to
|
|
26208
|
+
* @returns Writer
|
|
26209
|
+
*/
|
|
26210
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IListColumnDataProfilesResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
26211
|
+
|
|
26212
|
+
/**
|
|
26213
|
+
* Decodes a ListColumnDataProfilesResponse message from the specified reader or buffer.
|
|
26214
|
+
* @param reader Reader or buffer to decode from
|
|
26215
|
+
* @param [length] Message length if known beforehand
|
|
26216
|
+
* @returns ListColumnDataProfilesResponse
|
|
26217
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
26218
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
26219
|
+
*/
|
|
26220
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.ListColumnDataProfilesResponse;
|
|
26221
|
+
|
|
26222
|
+
/**
|
|
26223
|
+
* Decodes a ListColumnDataProfilesResponse message from the specified reader or buffer, length delimited.
|
|
26224
|
+
* @param reader Reader or buffer to decode from
|
|
26225
|
+
* @returns ListColumnDataProfilesResponse
|
|
26226
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
26227
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
26228
|
+
*/
|
|
26229
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.ListColumnDataProfilesResponse;
|
|
26230
|
+
|
|
26231
|
+
/**
|
|
26232
|
+
* Verifies a ListColumnDataProfilesResponse message.
|
|
26233
|
+
* @param message Plain object to verify
|
|
26234
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
26235
|
+
*/
|
|
26236
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
26237
|
+
|
|
26238
|
+
/**
|
|
26239
|
+
* Creates a ListColumnDataProfilesResponse message from a plain object. Also converts values to their respective internal types.
|
|
26240
|
+
* @param object Plain object
|
|
26241
|
+
* @returns ListColumnDataProfilesResponse
|
|
26242
|
+
*/
|
|
26243
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.ListColumnDataProfilesResponse;
|
|
26244
|
+
|
|
26245
|
+
/**
|
|
26246
|
+
* Creates a plain object from a ListColumnDataProfilesResponse message. Also converts values to other types if specified.
|
|
26247
|
+
* @param message ListColumnDataProfilesResponse
|
|
26248
|
+
* @param [options] Conversion options
|
|
26249
|
+
* @returns Plain object
|
|
26250
|
+
*/
|
|
26251
|
+
public static toObject(message: google.privacy.dlp.v2.ListColumnDataProfilesResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
26252
|
+
|
|
26253
|
+
/**
|
|
26254
|
+
* Converts this ListColumnDataProfilesResponse to JSON.
|
|
26255
|
+
* @returns JSON object
|
|
26256
|
+
*/
|
|
26257
|
+
public toJSON(): { [k: string]: any };
|
|
26258
|
+
|
|
26259
|
+
/**
|
|
26260
|
+
* Gets the default type url for ListColumnDataProfilesResponse
|
|
26261
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
26262
|
+
* @returns The default type url
|
|
26263
|
+
*/
|
|
26264
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
26265
|
+
}
|
|
26266
|
+
|
|
25469
26267
|
/** Properties of a DataRiskLevel. */
|
|
25470
26268
|
interface IDataRiskLevel {
|
|
25471
26269
|
|
|
@@ -25574,6 +26372,133 @@ export namespace google {
|
|
|
25574
26372
|
}
|
|
25575
26373
|
}
|
|
25576
26374
|
|
|
26375
|
+
/** Properties of a ProjectDataProfile. */
|
|
26376
|
+
interface IProjectDataProfile {
|
|
26377
|
+
|
|
26378
|
+
/** ProjectDataProfile name */
|
|
26379
|
+
name?: (string|null);
|
|
26380
|
+
|
|
26381
|
+
/** ProjectDataProfile projectId */
|
|
26382
|
+
projectId?: (string|null);
|
|
26383
|
+
|
|
26384
|
+
/** ProjectDataProfile profileLastGenerated */
|
|
26385
|
+
profileLastGenerated?: (google.protobuf.ITimestamp|null);
|
|
26386
|
+
|
|
26387
|
+
/** ProjectDataProfile sensitivityScore */
|
|
26388
|
+
sensitivityScore?: (google.privacy.dlp.v2.ISensitivityScore|null);
|
|
26389
|
+
|
|
26390
|
+
/** ProjectDataProfile dataRiskLevel */
|
|
26391
|
+
dataRiskLevel?: (google.privacy.dlp.v2.IDataRiskLevel|null);
|
|
26392
|
+
|
|
26393
|
+
/** ProjectDataProfile profileStatus */
|
|
26394
|
+
profileStatus?: (google.privacy.dlp.v2.IProfileStatus|null);
|
|
26395
|
+
}
|
|
26396
|
+
|
|
26397
|
+
/** Represents a ProjectDataProfile. */
|
|
26398
|
+
class ProjectDataProfile implements IProjectDataProfile {
|
|
26399
|
+
|
|
26400
|
+
/**
|
|
26401
|
+
* Constructs a new ProjectDataProfile.
|
|
26402
|
+
* @param [properties] Properties to set
|
|
26403
|
+
*/
|
|
26404
|
+
constructor(properties?: google.privacy.dlp.v2.IProjectDataProfile);
|
|
26405
|
+
|
|
26406
|
+
/** ProjectDataProfile name. */
|
|
26407
|
+
public name: string;
|
|
26408
|
+
|
|
26409
|
+
/** ProjectDataProfile projectId. */
|
|
26410
|
+
public projectId: string;
|
|
26411
|
+
|
|
26412
|
+
/** ProjectDataProfile profileLastGenerated. */
|
|
26413
|
+
public profileLastGenerated?: (google.protobuf.ITimestamp|null);
|
|
26414
|
+
|
|
26415
|
+
/** ProjectDataProfile sensitivityScore. */
|
|
26416
|
+
public sensitivityScore?: (google.privacy.dlp.v2.ISensitivityScore|null);
|
|
26417
|
+
|
|
26418
|
+
/** ProjectDataProfile dataRiskLevel. */
|
|
26419
|
+
public dataRiskLevel?: (google.privacy.dlp.v2.IDataRiskLevel|null);
|
|
26420
|
+
|
|
26421
|
+
/** ProjectDataProfile profileStatus. */
|
|
26422
|
+
public profileStatus?: (google.privacy.dlp.v2.IProfileStatus|null);
|
|
26423
|
+
|
|
26424
|
+
/**
|
|
26425
|
+
* Creates a new ProjectDataProfile instance using the specified properties.
|
|
26426
|
+
* @param [properties] Properties to set
|
|
26427
|
+
* @returns ProjectDataProfile instance
|
|
26428
|
+
*/
|
|
26429
|
+
public static create(properties?: google.privacy.dlp.v2.IProjectDataProfile): google.privacy.dlp.v2.ProjectDataProfile;
|
|
26430
|
+
|
|
26431
|
+
/**
|
|
26432
|
+
* Encodes the specified ProjectDataProfile message. Does not implicitly {@link google.privacy.dlp.v2.ProjectDataProfile.verify|verify} messages.
|
|
26433
|
+
* @param message ProjectDataProfile message or plain object to encode
|
|
26434
|
+
* @param [writer] Writer to encode to
|
|
26435
|
+
* @returns Writer
|
|
26436
|
+
*/
|
|
26437
|
+
public static encode(message: google.privacy.dlp.v2.IProjectDataProfile, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
26438
|
+
|
|
26439
|
+
/**
|
|
26440
|
+
* Encodes the specified ProjectDataProfile message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.ProjectDataProfile.verify|verify} messages.
|
|
26441
|
+
* @param message ProjectDataProfile message or plain object to encode
|
|
26442
|
+
* @param [writer] Writer to encode to
|
|
26443
|
+
* @returns Writer
|
|
26444
|
+
*/
|
|
26445
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IProjectDataProfile, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
26446
|
+
|
|
26447
|
+
/**
|
|
26448
|
+
* Decodes a ProjectDataProfile message from the specified reader or buffer.
|
|
26449
|
+
* @param reader Reader or buffer to decode from
|
|
26450
|
+
* @param [length] Message length if known beforehand
|
|
26451
|
+
* @returns ProjectDataProfile
|
|
26452
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
26453
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
26454
|
+
*/
|
|
26455
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.ProjectDataProfile;
|
|
26456
|
+
|
|
26457
|
+
/**
|
|
26458
|
+
* Decodes a ProjectDataProfile message from the specified reader or buffer, length delimited.
|
|
26459
|
+
* @param reader Reader or buffer to decode from
|
|
26460
|
+
* @returns ProjectDataProfile
|
|
26461
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
26462
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
26463
|
+
*/
|
|
26464
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.ProjectDataProfile;
|
|
26465
|
+
|
|
26466
|
+
/**
|
|
26467
|
+
* Verifies a ProjectDataProfile message.
|
|
26468
|
+
* @param message Plain object to verify
|
|
26469
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
26470
|
+
*/
|
|
26471
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
26472
|
+
|
|
26473
|
+
/**
|
|
26474
|
+
* Creates a ProjectDataProfile message from a plain object. Also converts values to their respective internal types.
|
|
26475
|
+
* @param object Plain object
|
|
26476
|
+
* @returns ProjectDataProfile
|
|
26477
|
+
*/
|
|
26478
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.ProjectDataProfile;
|
|
26479
|
+
|
|
26480
|
+
/**
|
|
26481
|
+
* Creates a plain object from a ProjectDataProfile message. Also converts values to other types if specified.
|
|
26482
|
+
* @param message ProjectDataProfile
|
|
26483
|
+
* @param [options] Conversion options
|
|
26484
|
+
* @returns Plain object
|
|
26485
|
+
*/
|
|
26486
|
+
public static toObject(message: google.privacy.dlp.v2.ProjectDataProfile, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
26487
|
+
|
|
26488
|
+
/**
|
|
26489
|
+
* Converts this ProjectDataProfile to JSON.
|
|
26490
|
+
* @returns JSON object
|
|
26491
|
+
*/
|
|
26492
|
+
public toJSON(): { [k: string]: any };
|
|
26493
|
+
|
|
26494
|
+
/**
|
|
26495
|
+
* Gets the default type url for ProjectDataProfile
|
|
26496
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
26497
|
+
* @returns The default type url
|
|
26498
|
+
*/
|
|
26499
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
26500
|
+
}
|
|
26501
|
+
|
|
25577
26502
|
/** ResourceVisibility enum. */
|
|
25578
26503
|
enum ResourceVisibility {
|
|
25579
26504
|
RESOURCE_VISIBILITY_UNSPECIFIED = 0,
|
|
@@ -25589,6 +26514,15 @@ export namespace google {
|
|
|
25589
26514
|
|
|
25590
26515
|
/** DataProfileConfigSnapshot dataProfileJob */
|
|
25591
26516
|
dataProfileJob?: (google.privacy.dlp.v2.IDataProfileJobConfig|null);
|
|
26517
|
+
|
|
26518
|
+
/** DataProfileConfigSnapshot discoveryConfig */
|
|
26519
|
+
discoveryConfig?: (google.privacy.dlp.v2.IDiscoveryConfig|null);
|
|
26520
|
+
|
|
26521
|
+
/** DataProfileConfigSnapshot inspectTemplateName */
|
|
26522
|
+
inspectTemplateName?: (string|null);
|
|
26523
|
+
|
|
26524
|
+
/** DataProfileConfigSnapshot inspectTemplateModifiedTime */
|
|
26525
|
+
inspectTemplateModifiedTime?: (google.protobuf.ITimestamp|null);
|
|
25592
26526
|
}
|
|
25593
26527
|
|
|
25594
26528
|
/** Represents a DataProfileConfigSnapshot. */
|
|
@@ -25606,6 +26540,15 @@ export namespace google {
|
|
|
25606
26540
|
/** DataProfileConfigSnapshot dataProfileJob. */
|
|
25607
26541
|
public dataProfileJob?: (google.privacy.dlp.v2.IDataProfileJobConfig|null);
|
|
25608
26542
|
|
|
26543
|
+
/** DataProfileConfigSnapshot discoveryConfig. */
|
|
26544
|
+
public discoveryConfig?: (google.privacy.dlp.v2.IDiscoveryConfig|null);
|
|
26545
|
+
|
|
26546
|
+
/** DataProfileConfigSnapshot inspectTemplateName. */
|
|
26547
|
+
public inspectTemplateName: string;
|
|
26548
|
+
|
|
26549
|
+
/** DataProfileConfigSnapshot inspectTemplateModifiedTime. */
|
|
26550
|
+
public inspectTemplateModifiedTime?: (google.protobuf.ITimestamp|null);
|
|
26551
|
+
|
|
25609
26552
|
/**
|
|
25610
26553
|
* Creates a new DataProfileConfigSnapshot instance using the specified properties.
|
|
25611
26554
|
* @param [properties] Properties to set
|
|
@@ -25690,6 +26633,9 @@ export namespace google {
|
|
|
25690
26633
|
/** TableDataProfile name */
|
|
25691
26634
|
name?: (string|null);
|
|
25692
26635
|
|
|
26636
|
+
/** TableDataProfile dataSourceType */
|
|
26637
|
+
dataSourceType?: (google.privacy.dlp.v2.IDataSourceType|null);
|
|
26638
|
+
|
|
25693
26639
|
/** TableDataProfile projectDataProfile */
|
|
25694
26640
|
projectDataProfile?: (string|null);
|
|
25695
26641
|
|
|
@@ -25775,6 +26721,9 @@ export namespace google {
|
|
|
25775
26721
|
/** TableDataProfile name. */
|
|
25776
26722
|
public name: string;
|
|
25777
26723
|
|
|
26724
|
+
/** TableDataProfile dataSourceType. */
|
|
26725
|
+
public dataSourceType?: (google.privacy.dlp.v2.IDataSourceType|null);
|
|
26726
|
+
|
|
25778
26727
|
/** TableDataProfile projectDataProfile. */
|
|
25779
26728
|
public projectDataProfile: string;
|
|
25780
26729
|
|
|
@@ -26520,6 +27469,297 @@ export namespace google {
|
|
|
26520
27469
|
}
|
|
26521
27470
|
}
|
|
26522
27471
|
|
|
27472
|
+
/** Properties of a GetProjectDataProfileRequest. */
|
|
27473
|
+
interface IGetProjectDataProfileRequest {
|
|
27474
|
+
|
|
27475
|
+
/** GetProjectDataProfileRequest name */
|
|
27476
|
+
name?: (string|null);
|
|
27477
|
+
}
|
|
27478
|
+
|
|
27479
|
+
/** Represents a GetProjectDataProfileRequest. */
|
|
27480
|
+
class GetProjectDataProfileRequest implements IGetProjectDataProfileRequest {
|
|
27481
|
+
|
|
27482
|
+
/**
|
|
27483
|
+
* Constructs a new GetProjectDataProfileRequest.
|
|
27484
|
+
* @param [properties] Properties to set
|
|
27485
|
+
*/
|
|
27486
|
+
constructor(properties?: google.privacy.dlp.v2.IGetProjectDataProfileRequest);
|
|
27487
|
+
|
|
27488
|
+
/** GetProjectDataProfileRequest name. */
|
|
27489
|
+
public name: string;
|
|
27490
|
+
|
|
27491
|
+
/**
|
|
27492
|
+
* Creates a new GetProjectDataProfileRequest instance using the specified properties.
|
|
27493
|
+
* @param [properties] Properties to set
|
|
27494
|
+
* @returns GetProjectDataProfileRequest instance
|
|
27495
|
+
*/
|
|
27496
|
+
public static create(properties?: google.privacy.dlp.v2.IGetProjectDataProfileRequest): google.privacy.dlp.v2.GetProjectDataProfileRequest;
|
|
27497
|
+
|
|
27498
|
+
/**
|
|
27499
|
+
* Encodes the specified GetProjectDataProfileRequest message. Does not implicitly {@link google.privacy.dlp.v2.GetProjectDataProfileRequest.verify|verify} messages.
|
|
27500
|
+
* @param message GetProjectDataProfileRequest message or plain object to encode
|
|
27501
|
+
* @param [writer] Writer to encode to
|
|
27502
|
+
* @returns Writer
|
|
27503
|
+
*/
|
|
27504
|
+
public static encode(message: google.privacy.dlp.v2.IGetProjectDataProfileRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
27505
|
+
|
|
27506
|
+
/**
|
|
27507
|
+
* Encodes the specified GetProjectDataProfileRequest message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.GetProjectDataProfileRequest.verify|verify} messages.
|
|
27508
|
+
* @param message GetProjectDataProfileRequest message or plain object to encode
|
|
27509
|
+
* @param [writer] Writer to encode to
|
|
27510
|
+
* @returns Writer
|
|
27511
|
+
*/
|
|
27512
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IGetProjectDataProfileRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
27513
|
+
|
|
27514
|
+
/**
|
|
27515
|
+
* Decodes a GetProjectDataProfileRequest message from the specified reader or buffer.
|
|
27516
|
+
* @param reader Reader or buffer to decode from
|
|
27517
|
+
* @param [length] Message length if known beforehand
|
|
27518
|
+
* @returns GetProjectDataProfileRequest
|
|
27519
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
27520
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
27521
|
+
*/
|
|
27522
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.GetProjectDataProfileRequest;
|
|
27523
|
+
|
|
27524
|
+
/**
|
|
27525
|
+
* Decodes a GetProjectDataProfileRequest message from the specified reader or buffer, length delimited.
|
|
27526
|
+
* @param reader Reader or buffer to decode from
|
|
27527
|
+
* @returns GetProjectDataProfileRequest
|
|
27528
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
27529
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
27530
|
+
*/
|
|
27531
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.GetProjectDataProfileRequest;
|
|
27532
|
+
|
|
27533
|
+
/**
|
|
27534
|
+
* Verifies a GetProjectDataProfileRequest message.
|
|
27535
|
+
* @param message Plain object to verify
|
|
27536
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
27537
|
+
*/
|
|
27538
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
27539
|
+
|
|
27540
|
+
/**
|
|
27541
|
+
* Creates a GetProjectDataProfileRequest message from a plain object. Also converts values to their respective internal types.
|
|
27542
|
+
* @param object Plain object
|
|
27543
|
+
* @returns GetProjectDataProfileRequest
|
|
27544
|
+
*/
|
|
27545
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.GetProjectDataProfileRequest;
|
|
27546
|
+
|
|
27547
|
+
/**
|
|
27548
|
+
* Creates a plain object from a GetProjectDataProfileRequest message. Also converts values to other types if specified.
|
|
27549
|
+
* @param message GetProjectDataProfileRequest
|
|
27550
|
+
* @param [options] Conversion options
|
|
27551
|
+
* @returns Plain object
|
|
27552
|
+
*/
|
|
27553
|
+
public static toObject(message: google.privacy.dlp.v2.GetProjectDataProfileRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
27554
|
+
|
|
27555
|
+
/**
|
|
27556
|
+
* Converts this GetProjectDataProfileRequest to JSON.
|
|
27557
|
+
* @returns JSON object
|
|
27558
|
+
*/
|
|
27559
|
+
public toJSON(): { [k: string]: any };
|
|
27560
|
+
|
|
27561
|
+
/**
|
|
27562
|
+
* Gets the default type url for GetProjectDataProfileRequest
|
|
27563
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
27564
|
+
* @returns The default type url
|
|
27565
|
+
*/
|
|
27566
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
27567
|
+
}
|
|
27568
|
+
|
|
27569
|
+
/** Properties of a GetTableDataProfileRequest. */
|
|
27570
|
+
interface IGetTableDataProfileRequest {
|
|
27571
|
+
|
|
27572
|
+
/** GetTableDataProfileRequest name */
|
|
27573
|
+
name?: (string|null);
|
|
27574
|
+
}
|
|
27575
|
+
|
|
27576
|
+
/** Represents a GetTableDataProfileRequest. */
|
|
27577
|
+
class GetTableDataProfileRequest implements IGetTableDataProfileRequest {
|
|
27578
|
+
|
|
27579
|
+
/**
|
|
27580
|
+
* Constructs a new GetTableDataProfileRequest.
|
|
27581
|
+
* @param [properties] Properties to set
|
|
27582
|
+
*/
|
|
27583
|
+
constructor(properties?: google.privacy.dlp.v2.IGetTableDataProfileRequest);
|
|
27584
|
+
|
|
27585
|
+
/** GetTableDataProfileRequest name. */
|
|
27586
|
+
public name: string;
|
|
27587
|
+
|
|
27588
|
+
/**
|
|
27589
|
+
* Creates a new GetTableDataProfileRequest instance using the specified properties.
|
|
27590
|
+
* @param [properties] Properties to set
|
|
27591
|
+
* @returns GetTableDataProfileRequest instance
|
|
27592
|
+
*/
|
|
27593
|
+
public static create(properties?: google.privacy.dlp.v2.IGetTableDataProfileRequest): google.privacy.dlp.v2.GetTableDataProfileRequest;
|
|
27594
|
+
|
|
27595
|
+
/**
|
|
27596
|
+
* Encodes the specified GetTableDataProfileRequest message. Does not implicitly {@link google.privacy.dlp.v2.GetTableDataProfileRequest.verify|verify} messages.
|
|
27597
|
+
* @param message GetTableDataProfileRequest message or plain object to encode
|
|
27598
|
+
* @param [writer] Writer to encode to
|
|
27599
|
+
* @returns Writer
|
|
27600
|
+
*/
|
|
27601
|
+
public static encode(message: google.privacy.dlp.v2.IGetTableDataProfileRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
27602
|
+
|
|
27603
|
+
/**
|
|
27604
|
+
* Encodes the specified GetTableDataProfileRequest message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.GetTableDataProfileRequest.verify|verify} messages.
|
|
27605
|
+
* @param message GetTableDataProfileRequest message or plain object to encode
|
|
27606
|
+
* @param [writer] Writer to encode to
|
|
27607
|
+
* @returns Writer
|
|
27608
|
+
*/
|
|
27609
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IGetTableDataProfileRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
27610
|
+
|
|
27611
|
+
/**
|
|
27612
|
+
* Decodes a GetTableDataProfileRequest message from the specified reader or buffer.
|
|
27613
|
+
* @param reader Reader or buffer to decode from
|
|
27614
|
+
* @param [length] Message length if known beforehand
|
|
27615
|
+
* @returns GetTableDataProfileRequest
|
|
27616
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
27617
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
27618
|
+
*/
|
|
27619
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.GetTableDataProfileRequest;
|
|
27620
|
+
|
|
27621
|
+
/**
|
|
27622
|
+
* Decodes a GetTableDataProfileRequest message from the specified reader or buffer, length delimited.
|
|
27623
|
+
* @param reader Reader or buffer to decode from
|
|
27624
|
+
* @returns GetTableDataProfileRequest
|
|
27625
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
27626
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
27627
|
+
*/
|
|
27628
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.GetTableDataProfileRequest;
|
|
27629
|
+
|
|
27630
|
+
/**
|
|
27631
|
+
* Verifies a GetTableDataProfileRequest message.
|
|
27632
|
+
* @param message Plain object to verify
|
|
27633
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
27634
|
+
*/
|
|
27635
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
27636
|
+
|
|
27637
|
+
/**
|
|
27638
|
+
* Creates a GetTableDataProfileRequest message from a plain object. Also converts values to their respective internal types.
|
|
27639
|
+
* @param object Plain object
|
|
27640
|
+
* @returns GetTableDataProfileRequest
|
|
27641
|
+
*/
|
|
27642
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.GetTableDataProfileRequest;
|
|
27643
|
+
|
|
27644
|
+
/**
|
|
27645
|
+
* Creates a plain object from a GetTableDataProfileRequest message. Also converts values to other types if specified.
|
|
27646
|
+
* @param message GetTableDataProfileRequest
|
|
27647
|
+
* @param [options] Conversion options
|
|
27648
|
+
* @returns Plain object
|
|
27649
|
+
*/
|
|
27650
|
+
public static toObject(message: google.privacy.dlp.v2.GetTableDataProfileRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
27651
|
+
|
|
27652
|
+
/**
|
|
27653
|
+
* Converts this GetTableDataProfileRequest to JSON.
|
|
27654
|
+
* @returns JSON object
|
|
27655
|
+
*/
|
|
27656
|
+
public toJSON(): { [k: string]: any };
|
|
27657
|
+
|
|
27658
|
+
/**
|
|
27659
|
+
* Gets the default type url for GetTableDataProfileRequest
|
|
27660
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
27661
|
+
* @returns The default type url
|
|
27662
|
+
*/
|
|
27663
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
27664
|
+
}
|
|
27665
|
+
|
|
27666
|
+
/** Properties of a GetColumnDataProfileRequest. */
|
|
27667
|
+
interface IGetColumnDataProfileRequest {
|
|
27668
|
+
|
|
27669
|
+
/** GetColumnDataProfileRequest name */
|
|
27670
|
+
name?: (string|null);
|
|
27671
|
+
}
|
|
27672
|
+
|
|
27673
|
+
/** Represents a GetColumnDataProfileRequest. */
|
|
27674
|
+
class GetColumnDataProfileRequest implements IGetColumnDataProfileRequest {
|
|
27675
|
+
|
|
27676
|
+
/**
|
|
27677
|
+
* Constructs a new GetColumnDataProfileRequest.
|
|
27678
|
+
* @param [properties] Properties to set
|
|
27679
|
+
*/
|
|
27680
|
+
constructor(properties?: google.privacy.dlp.v2.IGetColumnDataProfileRequest);
|
|
27681
|
+
|
|
27682
|
+
/** GetColumnDataProfileRequest name. */
|
|
27683
|
+
public name: string;
|
|
27684
|
+
|
|
27685
|
+
/**
|
|
27686
|
+
* Creates a new GetColumnDataProfileRequest instance using the specified properties.
|
|
27687
|
+
* @param [properties] Properties to set
|
|
27688
|
+
* @returns GetColumnDataProfileRequest instance
|
|
27689
|
+
*/
|
|
27690
|
+
public static create(properties?: google.privacy.dlp.v2.IGetColumnDataProfileRequest): google.privacy.dlp.v2.GetColumnDataProfileRequest;
|
|
27691
|
+
|
|
27692
|
+
/**
|
|
27693
|
+
* Encodes the specified GetColumnDataProfileRequest message. Does not implicitly {@link google.privacy.dlp.v2.GetColumnDataProfileRequest.verify|verify} messages.
|
|
27694
|
+
* @param message GetColumnDataProfileRequest message or plain object to encode
|
|
27695
|
+
* @param [writer] Writer to encode to
|
|
27696
|
+
* @returns Writer
|
|
27697
|
+
*/
|
|
27698
|
+
public static encode(message: google.privacy.dlp.v2.IGetColumnDataProfileRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
27699
|
+
|
|
27700
|
+
/**
|
|
27701
|
+
* Encodes the specified GetColumnDataProfileRequest message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.GetColumnDataProfileRequest.verify|verify} messages.
|
|
27702
|
+
* @param message GetColumnDataProfileRequest message or plain object to encode
|
|
27703
|
+
* @param [writer] Writer to encode to
|
|
27704
|
+
* @returns Writer
|
|
27705
|
+
*/
|
|
27706
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IGetColumnDataProfileRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
27707
|
+
|
|
27708
|
+
/**
|
|
27709
|
+
* Decodes a GetColumnDataProfileRequest message from the specified reader or buffer.
|
|
27710
|
+
* @param reader Reader or buffer to decode from
|
|
27711
|
+
* @param [length] Message length if known beforehand
|
|
27712
|
+
* @returns GetColumnDataProfileRequest
|
|
27713
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
27714
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
27715
|
+
*/
|
|
27716
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.GetColumnDataProfileRequest;
|
|
27717
|
+
|
|
27718
|
+
/**
|
|
27719
|
+
* Decodes a GetColumnDataProfileRequest message from the specified reader or buffer, length delimited.
|
|
27720
|
+
* @param reader Reader or buffer to decode from
|
|
27721
|
+
* @returns GetColumnDataProfileRequest
|
|
27722
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
27723
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
27724
|
+
*/
|
|
27725
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.GetColumnDataProfileRequest;
|
|
27726
|
+
|
|
27727
|
+
/**
|
|
27728
|
+
* Verifies a GetColumnDataProfileRequest message.
|
|
27729
|
+
* @param message Plain object to verify
|
|
27730
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
27731
|
+
*/
|
|
27732
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
27733
|
+
|
|
27734
|
+
/**
|
|
27735
|
+
* Creates a GetColumnDataProfileRequest message from a plain object. Also converts values to their respective internal types.
|
|
27736
|
+
* @param object Plain object
|
|
27737
|
+
* @returns GetColumnDataProfileRequest
|
|
27738
|
+
*/
|
|
27739
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.GetColumnDataProfileRequest;
|
|
27740
|
+
|
|
27741
|
+
/**
|
|
27742
|
+
* Creates a plain object from a GetColumnDataProfileRequest message. Also converts values to other types if specified.
|
|
27743
|
+
* @param message GetColumnDataProfileRequest
|
|
27744
|
+
* @param [options] Conversion options
|
|
27745
|
+
* @returns Plain object
|
|
27746
|
+
*/
|
|
27747
|
+
public static toObject(message: google.privacy.dlp.v2.GetColumnDataProfileRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
27748
|
+
|
|
27749
|
+
/**
|
|
27750
|
+
* Converts this GetColumnDataProfileRequest to JSON.
|
|
27751
|
+
* @returns JSON object
|
|
27752
|
+
*/
|
|
27753
|
+
public toJSON(): { [k: string]: any };
|
|
27754
|
+
|
|
27755
|
+
/**
|
|
27756
|
+
* Gets the default type url for GetColumnDataProfileRequest
|
|
27757
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
27758
|
+
* @returns The default type url
|
|
27759
|
+
*/
|
|
27760
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
27761
|
+
}
|
|
27762
|
+
|
|
26523
27763
|
/** Properties of a DataProfilePubSubCondition. */
|
|
26524
27764
|
interface IDataProfilePubSubCondition {
|
|
26525
27765
|
|
|
@@ -26949,6 +28189,103 @@ export namespace google {
|
|
|
26949
28189
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
26950
28190
|
}
|
|
26951
28191
|
|
|
28192
|
+
/** Properties of a DataSourceType. */
|
|
28193
|
+
interface IDataSourceType {
|
|
28194
|
+
|
|
28195
|
+
/** DataSourceType dataSource */
|
|
28196
|
+
dataSource?: (string|null);
|
|
28197
|
+
}
|
|
28198
|
+
|
|
28199
|
+
/** Represents a DataSourceType. */
|
|
28200
|
+
class DataSourceType implements IDataSourceType {
|
|
28201
|
+
|
|
28202
|
+
/**
|
|
28203
|
+
* Constructs a new DataSourceType.
|
|
28204
|
+
* @param [properties] Properties to set
|
|
28205
|
+
*/
|
|
28206
|
+
constructor(properties?: google.privacy.dlp.v2.IDataSourceType);
|
|
28207
|
+
|
|
28208
|
+
/** DataSourceType dataSource. */
|
|
28209
|
+
public dataSource: string;
|
|
28210
|
+
|
|
28211
|
+
/**
|
|
28212
|
+
* Creates a new DataSourceType instance using the specified properties.
|
|
28213
|
+
* @param [properties] Properties to set
|
|
28214
|
+
* @returns DataSourceType instance
|
|
28215
|
+
*/
|
|
28216
|
+
public static create(properties?: google.privacy.dlp.v2.IDataSourceType): google.privacy.dlp.v2.DataSourceType;
|
|
28217
|
+
|
|
28218
|
+
/**
|
|
28219
|
+
* Encodes the specified DataSourceType message. Does not implicitly {@link google.privacy.dlp.v2.DataSourceType.verify|verify} messages.
|
|
28220
|
+
* @param message DataSourceType message or plain object to encode
|
|
28221
|
+
* @param [writer] Writer to encode to
|
|
28222
|
+
* @returns Writer
|
|
28223
|
+
*/
|
|
28224
|
+
public static encode(message: google.privacy.dlp.v2.IDataSourceType, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
28225
|
+
|
|
28226
|
+
/**
|
|
28227
|
+
* Encodes the specified DataSourceType message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.DataSourceType.verify|verify} messages.
|
|
28228
|
+
* @param message DataSourceType message or plain object to encode
|
|
28229
|
+
* @param [writer] Writer to encode to
|
|
28230
|
+
* @returns Writer
|
|
28231
|
+
*/
|
|
28232
|
+
public static encodeDelimited(message: google.privacy.dlp.v2.IDataSourceType, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
28233
|
+
|
|
28234
|
+
/**
|
|
28235
|
+
* Decodes a DataSourceType message from the specified reader or buffer.
|
|
28236
|
+
* @param reader Reader or buffer to decode from
|
|
28237
|
+
* @param [length] Message length if known beforehand
|
|
28238
|
+
* @returns DataSourceType
|
|
28239
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28240
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28241
|
+
*/
|
|
28242
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.DataSourceType;
|
|
28243
|
+
|
|
28244
|
+
/**
|
|
28245
|
+
* Decodes a DataSourceType message from the specified reader or buffer, length delimited.
|
|
28246
|
+
* @param reader Reader or buffer to decode from
|
|
28247
|
+
* @returns DataSourceType
|
|
28248
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
28249
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
28250
|
+
*/
|
|
28251
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.DataSourceType;
|
|
28252
|
+
|
|
28253
|
+
/**
|
|
28254
|
+
* Verifies a DataSourceType message.
|
|
28255
|
+
* @param message Plain object to verify
|
|
28256
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
28257
|
+
*/
|
|
28258
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
28259
|
+
|
|
28260
|
+
/**
|
|
28261
|
+
* Creates a DataSourceType message from a plain object. Also converts values to their respective internal types.
|
|
28262
|
+
* @param object Plain object
|
|
28263
|
+
* @returns DataSourceType
|
|
28264
|
+
*/
|
|
28265
|
+
public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.DataSourceType;
|
|
28266
|
+
|
|
28267
|
+
/**
|
|
28268
|
+
* Creates a plain object from a DataSourceType message. Also converts values to other types if specified.
|
|
28269
|
+
* @param message DataSourceType
|
|
28270
|
+
* @param [options] Conversion options
|
|
28271
|
+
* @returns Plain object
|
|
28272
|
+
*/
|
|
28273
|
+
public static toObject(message: google.privacy.dlp.v2.DataSourceType, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
28274
|
+
|
|
28275
|
+
/**
|
|
28276
|
+
* Converts this DataSourceType to JSON.
|
|
28277
|
+
* @returns JSON object
|
|
28278
|
+
*/
|
|
28279
|
+
public toJSON(): { [k: string]: any };
|
|
28280
|
+
|
|
28281
|
+
/**
|
|
28282
|
+
* Gets the default type url for DataSourceType
|
|
28283
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
28284
|
+
* @returns The default type url
|
|
28285
|
+
*/
|
|
28286
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
28287
|
+
}
|
|
28288
|
+
|
|
26952
28289
|
/** Properties of an InfoType. */
|
|
26953
28290
|
interface IInfoType {
|
|
26954
28291
|
|
|
@@ -31306,6 +32643,9 @@ export namespace google {
|
|
|
31306
32643
|
|
|
31307
32644
|
/** Publishing librarySettings */
|
|
31308
32645
|
librarySettings?: (google.api.IClientLibrarySettings[]|null);
|
|
32646
|
+
|
|
32647
|
+
/** Publishing protoReferenceDocumentationUri */
|
|
32648
|
+
protoReferenceDocumentationUri?: (string|null);
|
|
31309
32649
|
}
|
|
31310
32650
|
|
|
31311
32651
|
/** Represents a Publishing. */
|
|
@@ -31344,6 +32684,9 @@ export namespace google {
|
|
|
31344
32684
|
/** Publishing librarySettings. */
|
|
31345
32685
|
public librarySettings: google.api.IClientLibrarySettings[];
|
|
31346
32686
|
|
|
32687
|
+
/** Publishing protoReferenceDocumentationUri. */
|
|
32688
|
+
public protoReferenceDocumentationUri: string;
|
|
32689
|
+
|
|
31347
32690
|
/**
|
|
31348
32691
|
* Creates a new Publishing instance using the specified properties.
|
|
31349
32692
|
* @param [properties] Properties to set
|
|
@@ -31924,6 +33267,21 @@ export namespace google {
|
|
|
31924
33267
|
|
|
31925
33268
|
/** DotnetSettings common */
|
|
31926
33269
|
common?: (google.api.ICommonLanguageSettings|null);
|
|
33270
|
+
|
|
33271
|
+
/** DotnetSettings renamedServices */
|
|
33272
|
+
renamedServices?: ({ [k: string]: string }|null);
|
|
33273
|
+
|
|
33274
|
+
/** DotnetSettings renamedResources */
|
|
33275
|
+
renamedResources?: ({ [k: string]: string }|null);
|
|
33276
|
+
|
|
33277
|
+
/** DotnetSettings ignoredResources */
|
|
33278
|
+
ignoredResources?: (string[]|null);
|
|
33279
|
+
|
|
33280
|
+
/** DotnetSettings forcedNamespaceAliases */
|
|
33281
|
+
forcedNamespaceAliases?: (string[]|null);
|
|
33282
|
+
|
|
33283
|
+
/** DotnetSettings handwrittenSignatures */
|
|
33284
|
+
handwrittenSignatures?: (string[]|null);
|
|
31927
33285
|
}
|
|
31928
33286
|
|
|
31929
33287
|
/** Represents a DotnetSettings. */
|
|
@@ -31938,6 +33296,21 @@ export namespace google {
|
|
|
31938
33296
|
/** DotnetSettings common. */
|
|
31939
33297
|
public common?: (google.api.ICommonLanguageSettings|null);
|
|
31940
33298
|
|
|
33299
|
+
/** DotnetSettings renamedServices. */
|
|
33300
|
+
public renamedServices: { [k: string]: string };
|
|
33301
|
+
|
|
33302
|
+
/** DotnetSettings renamedResources. */
|
|
33303
|
+
public renamedResources: { [k: string]: string };
|
|
33304
|
+
|
|
33305
|
+
/** DotnetSettings ignoredResources. */
|
|
33306
|
+
public ignoredResources: string[];
|
|
33307
|
+
|
|
33308
|
+
/** DotnetSettings forcedNamespaceAliases. */
|
|
33309
|
+
public forcedNamespaceAliases: string[];
|
|
33310
|
+
|
|
33311
|
+
/** DotnetSettings handwrittenSignatures. */
|
|
33312
|
+
public handwrittenSignatures: string[];
|
|
33313
|
+
|
|
31941
33314
|
/**
|
|
31942
33315
|
* Creates a new DotnetSettings instance using the specified properties.
|
|
31943
33316
|
* @param [properties] Properties to set
|
|
@@ -32218,6 +33591,9 @@ export namespace google {
|
|
|
32218
33591
|
|
|
32219
33592
|
/** MethodSettings longRunning */
|
|
32220
33593
|
longRunning?: (google.api.MethodSettings.ILongRunning|null);
|
|
33594
|
+
|
|
33595
|
+
/** MethodSettings autoPopulatedFields */
|
|
33596
|
+
autoPopulatedFields?: (string[]|null);
|
|
32221
33597
|
}
|
|
32222
33598
|
|
|
32223
33599
|
/** Represents a MethodSettings. */
|
|
@@ -32235,6 +33611,9 @@ export namespace google {
|
|
|
32235
33611
|
/** MethodSettings longRunning. */
|
|
32236
33612
|
public longRunning?: (google.api.MethodSettings.ILongRunning|null);
|
|
32237
33613
|
|
|
33614
|
+
/** MethodSettings autoPopulatedFields. */
|
|
33615
|
+
public autoPopulatedFields: string[];
|
|
33616
|
+
|
|
32238
33617
|
/**
|
|
32239
33618
|
* Creates a new MethodSettings instance using the specified properties.
|
|
32240
33619
|
* @param [properties] Properties to set
|
|
@@ -32437,7 +33816,10 @@ export namespace google {
|
|
|
32437
33816
|
CLOUD = 1,
|
|
32438
33817
|
ADS = 2,
|
|
32439
33818
|
PHOTOS = 3,
|
|
32440
|
-
STREET_VIEW = 4
|
|
33819
|
+
STREET_VIEW = 4,
|
|
33820
|
+
SHOPPING = 5,
|
|
33821
|
+
GEO = 6,
|
|
33822
|
+
GENERATIVE_AI = 7
|
|
32441
33823
|
}
|
|
32442
33824
|
|
|
32443
33825
|
/** ClientLibraryDestination enum. */
|
|
@@ -32468,7 +33850,8 @@ export namespace google {
|
|
|
32468
33850
|
INPUT_ONLY = 4,
|
|
32469
33851
|
IMMUTABLE = 5,
|
|
32470
33852
|
UNORDERED_LIST = 6,
|
|
32471
|
-
NON_EMPTY_DEFAULT = 7
|
|
33853
|
+
NON_EMPTY_DEFAULT = 7,
|
|
33854
|
+
IDENTIFIER = 8
|
|
32472
33855
|
}
|
|
32473
33856
|
|
|
32474
33857
|
/** Properties of a ResourceDescriptor. */
|
|
@@ -32824,6 +34207,21 @@ export namespace google {
|
|
|
32824
34207
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
32825
34208
|
}
|
|
32826
34209
|
|
|
34210
|
+
/** Edition enum. */
|
|
34211
|
+
enum Edition {
|
|
34212
|
+
EDITION_UNKNOWN = 0,
|
|
34213
|
+
EDITION_PROTO2 = 998,
|
|
34214
|
+
EDITION_PROTO3 = 999,
|
|
34215
|
+
EDITION_2023 = 1000,
|
|
34216
|
+
EDITION_2024 = 1001,
|
|
34217
|
+
EDITION_1_TEST_ONLY = 1,
|
|
34218
|
+
EDITION_2_TEST_ONLY = 2,
|
|
34219
|
+
EDITION_99997_TEST_ONLY = 99997,
|
|
34220
|
+
EDITION_99998_TEST_ONLY = 99998,
|
|
34221
|
+
EDITION_99999_TEST_ONLY = 99999,
|
|
34222
|
+
EDITION_MAX = 2147483647
|
|
34223
|
+
}
|
|
34224
|
+
|
|
32827
34225
|
/** Properties of a FileDescriptorProto. */
|
|
32828
34226
|
interface IFileDescriptorProto {
|
|
32829
34227
|
|
|
@@ -32864,7 +34262,7 @@ export namespace google {
|
|
|
32864
34262
|
syntax?: (string|null);
|
|
32865
34263
|
|
|
32866
34264
|
/** FileDescriptorProto edition */
|
|
32867
|
-
edition?: (
|
|
34265
|
+
edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
32868
34266
|
}
|
|
32869
34267
|
|
|
32870
34268
|
/** Represents a FileDescriptorProto. */
|
|
@@ -32913,7 +34311,7 @@ export namespace google {
|
|
|
32913
34311
|
public syntax: string;
|
|
32914
34312
|
|
|
32915
34313
|
/** FileDescriptorProto edition. */
|
|
32916
|
-
public edition:
|
|
34314
|
+
public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
32917
34315
|
|
|
32918
34316
|
/**
|
|
32919
34317
|
* Creates a new FileDescriptorProto instance using the specified properties.
|
|
@@ -33364,6 +34762,15 @@ export namespace google {
|
|
|
33364
34762
|
|
|
33365
34763
|
/** ExtensionRangeOptions uninterpretedOption */
|
|
33366
34764
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
34765
|
+
|
|
34766
|
+
/** ExtensionRangeOptions declaration */
|
|
34767
|
+
declaration?: (google.protobuf.ExtensionRangeOptions.IDeclaration[]|null);
|
|
34768
|
+
|
|
34769
|
+
/** ExtensionRangeOptions features */
|
|
34770
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
34771
|
+
|
|
34772
|
+
/** ExtensionRangeOptions verification */
|
|
34773
|
+
verification?: (google.protobuf.ExtensionRangeOptions.VerificationState|keyof typeof google.protobuf.ExtensionRangeOptions.VerificationState|null);
|
|
33367
34774
|
}
|
|
33368
34775
|
|
|
33369
34776
|
/** Represents an ExtensionRangeOptions. */
|
|
@@ -33378,6 +34785,15 @@ export namespace google {
|
|
|
33378
34785
|
/** ExtensionRangeOptions uninterpretedOption. */
|
|
33379
34786
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
33380
34787
|
|
|
34788
|
+
/** ExtensionRangeOptions declaration. */
|
|
34789
|
+
public declaration: google.protobuf.ExtensionRangeOptions.IDeclaration[];
|
|
34790
|
+
|
|
34791
|
+
/** ExtensionRangeOptions features. */
|
|
34792
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
34793
|
+
|
|
34794
|
+
/** ExtensionRangeOptions verification. */
|
|
34795
|
+
public verification: (google.protobuf.ExtensionRangeOptions.VerificationState|keyof typeof google.protobuf.ExtensionRangeOptions.VerificationState);
|
|
34796
|
+
|
|
33381
34797
|
/**
|
|
33382
34798
|
* Creates a new ExtensionRangeOptions instance using the specified properties.
|
|
33383
34799
|
* @param [properties] Properties to set
|
|
@@ -33456,6 +34872,136 @@ export namespace google {
|
|
|
33456
34872
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
33457
34873
|
}
|
|
33458
34874
|
|
|
34875
|
+
namespace ExtensionRangeOptions {
|
|
34876
|
+
|
|
34877
|
+
/** Properties of a Declaration. */
|
|
34878
|
+
interface IDeclaration {
|
|
34879
|
+
|
|
34880
|
+
/** Declaration number */
|
|
34881
|
+
number?: (number|null);
|
|
34882
|
+
|
|
34883
|
+
/** Declaration fullName */
|
|
34884
|
+
fullName?: (string|null);
|
|
34885
|
+
|
|
34886
|
+
/** Declaration type */
|
|
34887
|
+
type?: (string|null);
|
|
34888
|
+
|
|
34889
|
+
/** Declaration reserved */
|
|
34890
|
+
reserved?: (boolean|null);
|
|
34891
|
+
|
|
34892
|
+
/** Declaration repeated */
|
|
34893
|
+
repeated?: (boolean|null);
|
|
34894
|
+
}
|
|
34895
|
+
|
|
34896
|
+
/** Represents a Declaration. */
|
|
34897
|
+
class Declaration implements IDeclaration {
|
|
34898
|
+
|
|
34899
|
+
/**
|
|
34900
|
+
* Constructs a new Declaration.
|
|
34901
|
+
* @param [properties] Properties to set
|
|
34902
|
+
*/
|
|
34903
|
+
constructor(properties?: google.protobuf.ExtensionRangeOptions.IDeclaration);
|
|
34904
|
+
|
|
34905
|
+
/** Declaration number. */
|
|
34906
|
+
public number: number;
|
|
34907
|
+
|
|
34908
|
+
/** Declaration fullName. */
|
|
34909
|
+
public fullName: string;
|
|
34910
|
+
|
|
34911
|
+
/** Declaration type. */
|
|
34912
|
+
public type: string;
|
|
34913
|
+
|
|
34914
|
+
/** Declaration reserved. */
|
|
34915
|
+
public reserved: boolean;
|
|
34916
|
+
|
|
34917
|
+
/** Declaration repeated. */
|
|
34918
|
+
public repeated: boolean;
|
|
34919
|
+
|
|
34920
|
+
/**
|
|
34921
|
+
* Creates a new Declaration instance using the specified properties.
|
|
34922
|
+
* @param [properties] Properties to set
|
|
34923
|
+
* @returns Declaration instance
|
|
34924
|
+
*/
|
|
34925
|
+
public static create(properties?: google.protobuf.ExtensionRangeOptions.IDeclaration): google.protobuf.ExtensionRangeOptions.Declaration;
|
|
34926
|
+
|
|
34927
|
+
/**
|
|
34928
|
+
* Encodes the specified Declaration message. Does not implicitly {@link google.protobuf.ExtensionRangeOptions.Declaration.verify|verify} messages.
|
|
34929
|
+
* @param message Declaration message or plain object to encode
|
|
34930
|
+
* @param [writer] Writer to encode to
|
|
34931
|
+
* @returns Writer
|
|
34932
|
+
*/
|
|
34933
|
+
public static encode(message: google.protobuf.ExtensionRangeOptions.IDeclaration, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
34934
|
+
|
|
34935
|
+
/**
|
|
34936
|
+
* Encodes the specified Declaration message, length delimited. Does not implicitly {@link google.protobuf.ExtensionRangeOptions.Declaration.verify|verify} messages.
|
|
34937
|
+
* @param message Declaration message or plain object to encode
|
|
34938
|
+
* @param [writer] Writer to encode to
|
|
34939
|
+
* @returns Writer
|
|
34940
|
+
*/
|
|
34941
|
+
public static encodeDelimited(message: google.protobuf.ExtensionRangeOptions.IDeclaration, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
34942
|
+
|
|
34943
|
+
/**
|
|
34944
|
+
* Decodes a Declaration message from the specified reader or buffer.
|
|
34945
|
+
* @param reader Reader or buffer to decode from
|
|
34946
|
+
* @param [length] Message length if known beforehand
|
|
34947
|
+
* @returns Declaration
|
|
34948
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
34949
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
34950
|
+
*/
|
|
34951
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.ExtensionRangeOptions.Declaration;
|
|
34952
|
+
|
|
34953
|
+
/**
|
|
34954
|
+
* Decodes a Declaration message from the specified reader or buffer, length delimited.
|
|
34955
|
+
* @param reader Reader or buffer to decode from
|
|
34956
|
+
* @returns Declaration
|
|
34957
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
34958
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
34959
|
+
*/
|
|
34960
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.ExtensionRangeOptions.Declaration;
|
|
34961
|
+
|
|
34962
|
+
/**
|
|
34963
|
+
* Verifies a Declaration message.
|
|
34964
|
+
* @param message Plain object to verify
|
|
34965
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
34966
|
+
*/
|
|
34967
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
34968
|
+
|
|
34969
|
+
/**
|
|
34970
|
+
* Creates a Declaration message from a plain object. Also converts values to their respective internal types.
|
|
34971
|
+
* @param object Plain object
|
|
34972
|
+
* @returns Declaration
|
|
34973
|
+
*/
|
|
34974
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.ExtensionRangeOptions.Declaration;
|
|
34975
|
+
|
|
34976
|
+
/**
|
|
34977
|
+
* Creates a plain object from a Declaration message. Also converts values to other types if specified.
|
|
34978
|
+
* @param message Declaration
|
|
34979
|
+
* @param [options] Conversion options
|
|
34980
|
+
* @returns Plain object
|
|
34981
|
+
*/
|
|
34982
|
+
public static toObject(message: google.protobuf.ExtensionRangeOptions.Declaration, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
34983
|
+
|
|
34984
|
+
/**
|
|
34985
|
+
* Converts this Declaration to JSON.
|
|
34986
|
+
* @returns JSON object
|
|
34987
|
+
*/
|
|
34988
|
+
public toJSON(): { [k: string]: any };
|
|
34989
|
+
|
|
34990
|
+
/**
|
|
34991
|
+
* Gets the default type url for Declaration
|
|
34992
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
34993
|
+
* @returns The default type url
|
|
34994
|
+
*/
|
|
34995
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
34996
|
+
}
|
|
34997
|
+
|
|
34998
|
+
/** VerificationState enum. */
|
|
34999
|
+
enum VerificationState {
|
|
35000
|
+
DECLARATION = 0,
|
|
35001
|
+
UNVERIFIED = 1
|
|
35002
|
+
}
|
|
35003
|
+
}
|
|
35004
|
+
|
|
33459
35005
|
/** Properties of a FieldDescriptorProto. */
|
|
33460
35006
|
interface IFieldDescriptorProto {
|
|
33461
35007
|
|
|
@@ -33640,8 +35186,8 @@ export namespace google {
|
|
|
33640
35186
|
/** Label enum. */
|
|
33641
35187
|
enum Label {
|
|
33642
35188
|
LABEL_OPTIONAL = 1,
|
|
33643
|
-
|
|
33644
|
-
|
|
35189
|
+
LABEL_REPEATED = 3,
|
|
35190
|
+
LABEL_REQUIRED = 2
|
|
33645
35191
|
}
|
|
33646
35192
|
}
|
|
33647
35193
|
|
|
@@ -34353,9 +35899,6 @@ export namespace google {
|
|
|
34353
35899
|
/** FileOptions pyGenericServices */
|
|
34354
35900
|
pyGenericServices?: (boolean|null);
|
|
34355
35901
|
|
|
34356
|
-
/** FileOptions phpGenericServices */
|
|
34357
|
-
phpGenericServices?: (boolean|null);
|
|
34358
|
-
|
|
34359
35902
|
/** FileOptions deprecated */
|
|
34360
35903
|
deprecated?: (boolean|null);
|
|
34361
35904
|
|
|
@@ -34383,6 +35926,9 @@ export namespace google {
|
|
|
34383
35926
|
/** FileOptions rubyPackage */
|
|
34384
35927
|
rubyPackage?: (string|null);
|
|
34385
35928
|
|
|
35929
|
+
/** FileOptions features */
|
|
35930
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
35931
|
+
|
|
34386
35932
|
/** FileOptions uninterpretedOption */
|
|
34387
35933
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
34388
35934
|
|
|
@@ -34429,9 +35975,6 @@ export namespace google {
|
|
|
34429
35975
|
/** FileOptions pyGenericServices. */
|
|
34430
35976
|
public pyGenericServices: boolean;
|
|
34431
35977
|
|
|
34432
|
-
/** FileOptions phpGenericServices. */
|
|
34433
|
-
public phpGenericServices: boolean;
|
|
34434
|
-
|
|
34435
35978
|
/** FileOptions deprecated. */
|
|
34436
35979
|
public deprecated: boolean;
|
|
34437
35980
|
|
|
@@ -34459,6 +36002,9 @@ export namespace google {
|
|
|
34459
36002
|
/** FileOptions rubyPackage. */
|
|
34460
36003
|
public rubyPackage: string;
|
|
34461
36004
|
|
|
36005
|
+
/** FileOptions features. */
|
|
36006
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
36007
|
+
|
|
34462
36008
|
/** FileOptions uninterpretedOption. */
|
|
34463
36009
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
34464
36010
|
|
|
@@ -34568,6 +36114,9 @@ export namespace google {
|
|
|
34568
36114
|
/** MessageOptions deprecatedLegacyJsonFieldConflicts */
|
|
34569
36115
|
deprecatedLegacyJsonFieldConflicts?: (boolean|null);
|
|
34570
36116
|
|
|
36117
|
+
/** MessageOptions features */
|
|
36118
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
36119
|
+
|
|
34571
36120
|
/** MessageOptions uninterpretedOption */
|
|
34572
36121
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
34573
36122
|
|
|
@@ -34599,6 +36148,9 @@ export namespace google {
|
|
|
34599
36148
|
/** MessageOptions deprecatedLegacyJsonFieldConflicts. */
|
|
34600
36149
|
public deprecatedLegacyJsonFieldConflicts: boolean;
|
|
34601
36150
|
|
|
36151
|
+
/** MessageOptions features. */
|
|
36152
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
36153
|
+
|
|
34602
36154
|
/** MessageOptions uninterpretedOption. */
|
|
34603
36155
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
34604
36156
|
|
|
@@ -34710,8 +36262,14 @@ export namespace google {
|
|
|
34710
36262
|
/** FieldOptions retention */
|
|
34711
36263
|
retention?: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention|null);
|
|
34712
36264
|
|
|
34713
|
-
/** FieldOptions
|
|
34714
|
-
|
|
36265
|
+
/** FieldOptions targets */
|
|
36266
|
+
targets?: (google.protobuf.FieldOptions.OptionTargetType[]|null);
|
|
36267
|
+
|
|
36268
|
+
/** FieldOptions editionDefaults */
|
|
36269
|
+
editionDefaults?: (google.protobuf.FieldOptions.IEditionDefault[]|null);
|
|
36270
|
+
|
|
36271
|
+
/** FieldOptions features */
|
|
36272
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
34715
36273
|
|
|
34716
36274
|
/** FieldOptions uninterpretedOption */
|
|
34717
36275
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
@@ -34759,8 +36317,14 @@ export namespace google {
|
|
|
34759
36317
|
/** FieldOptions retention. */
|
|
34760
36318
|
public retention: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention);
|
|
34761
36319
|
|
|
34762
|
-
/** FieldOptions
|
|
34763
|
-
public
|
|
36320
|
+
/** FieldOptions targets. */
|
|
36321
|
+
public targets: google.protobuf.FieldOptions.OptionTargetType[];
|
|
36322
|
+
|
|
36323
|
+
/** FieldOptions editionDefaults. */
|
|
36324
|
+
public editionDefaults: google.protobuf.FieldOptions.IEditionDefault[];
|
|
36325
|
+
|
|
36326
|
+
/** FieldOptions features. */
|
|
36327
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
34764
36328
|
|
|
34765
36329
|
/** FieldOptions uninterpretedOption. */
|
|
34766
36330
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
@@ -34879,11 +36443,117 @@ export namespace google {
|
|
|
34879
36443
|
TARGET_TYPE_SERVICE = 8,
|
|
34880
36444
|
TARGET_TYPE_METHOD = 9
|
|
34881
36445
|
}
|
|
36446
|
+
|
|
36447
|
+
/** Properties of an EditionDefault. */
|
|
36448
|
+
interface IEditionDefault {
|
|
36449
|
+
|
|
36450
|
+
/** EditionDefault edition */
|
|
36451
|
+
edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
36452
|
+
|
|
36453
|
+
/** EditionDefault value */
|
|
36454
|
+
value?: (string|null);
|
|
36455
|
+
}
|
|
36456
|
+
|
|
36457
|
+
/** Represents an EditionDefault. */
|
|
36458
|
+
class EditionDefault implements IEditionDefault {
|
|
36459
|
+
|
|
36460
|
+
/**
|
|
36461
|
+
* Constructs a new EditionDefault.
|
|
36462
|
+
* @param [properties] Properties to set
|
|
36463
|
+
*/
|
|
36464
|
+
constructor(properties?: google.protobuf.FieldOptions.IEditionDefault);
|
|
36465
|
+
|
|
36466
|
+
/** EditionDefault edition. */
|
|
36467
|
+
public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
36468
|
+
|
|
36469
|
+
/** EditionDefault value. */
|
|
36470
|
+
public value: string;
|
|
36471
|
+
|
|
36472
|
+
/**
|
|
36473
|
+
* Creates a new EditionDefault instance using the specified properties.
|
|
36474
|
+
* @param [properties] Properties to set
|
|
36475
|
+
* @returns EditionDefault instance
|
|
36476
|
+
*/
|
|
36477
|
+
public static create(properties?: google.protobuf.FieldOptions.IEditionDefault): google.protobuf.FieldOptions.EditionDefault;
|
|
36478
|
+
|
|
36479
|
+
/**
|
|
36480
|
+
* Encodes the specified EditionDefault message. Does not implicitly {@link google.protobuf.FieldOptions.EditionDefault.verify|verify} messages.
|
|
36481
|
+
* @param message EditionDefault message or plain object to encode
|
|
36482
|
+
* @param [writer] Writer to encode to
|
|
36483
|
+
* @returns Writer
|
|
36484
|
+
*/
|
|
36485
|
+
public static encode(message: google.protobuf.FieldOptions.IEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
36486
|
+
|
|
36487
|
+
/**
|
|
36488
|
+
* Encodes the specified EditionDefault message, length delimited. Does not implicitly {@link google.protobuf.FieldOptions.EditionDefault.verify|verify} messages.
|
|
36489
|
+
* @param message EditionDefault message or plain object to encode
|
|
36490
|
+
* @param [writer] Writer to encode to
|
|
36491
|
+
* @returns Writer
|
|
36492
|
+
*/
|
|
36493
|
+
public static encodeDelimited(message: google.protobuf.FieldOptions.IEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
36494
|
+
|
|
36495
|
+
/**
|
|
36496
|
+
* Decodes an EditionDefault message from the specified reader or buffer.
|
|
36497
|
+
* @param reader Reader or buffer to decode from
|
|
36498
|
+
* @param [length] Message length if known beforehand
|
|
36499
|
+
* @returns EditionDefault
|
|
36500
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
36501
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
36502
|
+
*/
|
|
36503
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions.EditionDefault;
|
|
36504
|
+
|
|
36505
|
+
/**
|
|
36506
|
+
* Decodes an EditionDefault message from the specified reader or buffer, length delimited.
|
|
36507
|
+
* @param reader Reader or buffer to decode from
|
|
36508
|
+
* @returns EditionDefault
|
|
36509
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
36510
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
36511
|
+
*/
|
|
36512
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions.EditionDefault;
|
|
36513
|
+
|
|
36514
|
+
/**
|
|
36515
|
+
* Verifies an EditionDefault message.
|
|
36516
|
+
* @param message Plain object to verify
|
|
36517
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
36518
|
+
*/
|
|
36519
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
36520
|
+
|
|
36521
|
+
/**
|
|
36522
|
+
* Creates an EditionDefault message from a plain object. Also converts values to their respective internal types.
|
|
36523
|
+
* @param object Plain object
|
|
36524
|
+
* @returns EditionDefault
|
|
36525
|
+
*/
|
|
36526
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.EditionDefault;
|
|
36527
|
+
|
|
36528
|
+
/**
|
|
36529
|
+
* Creates a plain object from an EditionDefault message. Also converts values to other types if specified.
|
|
36530
|
+
* @param message EditionDefault
|
|
36531
|
+
* @param [options] Conversion options
|
|
36532
|
+
* @returns Plain object
|
|
36533
|
+
*/
|
|
36534
|
+
public static toObject(message: google.protobuf.FieldOptions.EditionDefault, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
36535
|
+
|
|
36536
|
+
/**
|
|
36537
|
+
* Converts this EditionDefault to JSON.
|
|
36538
|
+
* @returns JSON object
|
|
36539
|
+
*/
|
|
36540
|
+
public toJSON(): { [k: string]: any };
|
|
36541
|
+
|
|
36542
|
+
/**
|
|
36543
|
+
* Gets the default type url for EditionDefault
|
|
36544
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
36545
|
+
* @returns The default type url
|
|
36546
|
+
*/
|
|
36547
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
36548
|
+
}
|
|
34882
36549
|
}
|
|
34883
36550
|
|
|
34884
36551
|
/** Properties of an OneofOptions. */
|
|
34885
36552
|
interface IOneofOptions {
|
|
34886
36553
|
|
|
36554
|
+
/** OneofOptions features */
|
|
36555
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
36556
|
+
|
|
34887
36557
|
/** OneofOptions uninterpretedOption */
|
|
34888
36558
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
34889
36559
|
}
|
|
@@ -34897,6 +36567,9 @@ export namespace google {
|
|
|
34897
36567
|
*/
|
|
34898
36568
|
constructor(properties?: google.protobuf.IOneofOptions);
|
|
34899
36569
|
|
|
36570
|
+
/** OneofOptions features. */
|
|
36571
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
36572
|
+
|
|
34900
36573
|
/** OneofOptions uninterpretedOption. */
|
|
34901
36574
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
34902
36575
|
|
|
@@ -34990,6 +36663,9 @@ export namespace google {
|
|
|
34990
36663
|
/** EnumOptions deprecatedLegacyJsonFieldConflicts */
|
|
34991
36664
|
deprecatedLegacyJsonFieldConflicts?: (boolean|null);
|
|
34992
36665
|
|
|
36666
|
+
/** EnumOptions features */
|
|
36667
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
36668
|
+
|
|
34993
36669
|
/** EnumOptions uninterpretedOption */
|
|
34994
36670
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
34995
36671
|
}
|
|
@@ -35012,6 +36688,9 @@ export namespace google {
|
|
|
35012
36688
|
/** EnumOptions deprecatedLegacyJsonFieldConflicts. */
|
|
35013
36689
|
public deprecatedLegacyJsonFieldConflicts: boolean;
|
|
35014
36690
|
|
|
36691
|
+
/** EnumOptions features. */
|
|
36692
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
36693
|
+
|
|
35015
36694
|
/** EnumOptions uninterpretedOption. */
|
|
35016
36695
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
35017
36696
|
|
|
@@ -35099,6 +36778,12 @@ export namespace google {
|
|
|
35099
36778
|
/** EnumValueOptions deprecated */
|
|
35100
36779
|
deprecated?: (boolean|null);
|
|
35101
36780
|
|
|
36781
|
+
/** EnumValueOptions features */
|
|
36782
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
36783
|
+
|
|
36784
|
+
/** EnumValueOptions debugRedact */
|
|
36785
|
+
debugRedact?: (boolean|null);
|
|
36786
|
+
|
|
35102
36787
|
/** EnumValueOptions uninterpretedOption */
|
|
35103
36788
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
35104
36789
|
}
|
|
@@ -35115,6 +36800,12 @@ export namespace google {
|
|
|
35115
36800
|
/** EnumValueOptions deprecated. */
|
|
35116
36801
|
public deprecated: boolean;
|
|
35117
36802
|
|
|
36803
|
+
/** EnumValueOptions features. */
|
|
36804
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
36805
|
+
|
|
36806
|
+
/** EnumValueOptions debugRedact. */
|
|
36807
|
+
public debugRedact: boolean;
|
|
36808
|
+
|
|
35118
36809
|
/** EnumValueOptions uninterpretedOption. */
|
|
35119
36810
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
35120
36811
|
|
|
@@ -35199,6 +36890,9 @@ export namespace google {
|
|
|
35199
36890
|
/** Properties of a ServiceOptions. */
|
|
35200
36891
|
interface IServiceOptions {
|
|
35201
36892
|
|
|
36893
|
+
/** ServiceOptions features */
|
|
36894
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
36895
|
+
|
|
35202
36896
|
/** ServiceOptions deprecated */
|
|
35203
36897
|
deprecated?: (boolean|null);
|
|
35204
36898
|
|
|
@@ -35221,6 +36915,9 @@ export namespace google {
|
|
|
35221
36915
|
*/
|
|
35222
36916
|
constructor(properties?: google.protobuf.IServiceOptions);
|
|
35223
36917
|
|
|
36918
|
+
/** ServiceOptions features. */
|
|
36919
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
36920
|
+
|
|
35224
36921
|
/** ServiceOptions deprecated. */
|
|
35225
36922
|
public deprecated: boolean;
|
|
35226
36923
|
|
|
@@ -35314,6 +37011,9 @@ export namespace google {
|
|
|
35314
37011
|
/** MethodOptions idempotencyLevel */
|
|
35315
37012
|
idempotencyLevel?: (google.protobuf.MethodOptions.IdempotencyLevel|keyof typeof google.protobuf.MethodOptions.IdempotencyLevel|null);
|
|
35316
37013
|
|
|
37014
|
+
/** MethodOptions features */
|
|
37015
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
37016
|
+
|
|
35317
37017
|
/** MethodOptions uninterpretedOption */
|
|
35318
37018
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
35319
37019
|
|
|
@@ -35339,6 +37039,9 @@ export namespace google {
|
|
|
35339
37039
|
/** MethodOptions idempotencyLevel. */
|
|
35340
37040
|
public idempotencyLevel: (google.protobuf.MethodOptions.IdempotencyLevel|keyof typeof google.protobuf.MethodOptions.IdempotencyLevel);
|
|
35341
37041
|
|
|
37042
|
+
/** MethodOptions features. */
|
|
37043
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
37044
|
+
|
|
35342
37045
|
/** MethodOptions uninterpretedOption. */
|
|
35343
37046
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
35344
37047
|
|
|
@@ -35669,6 +37372,394 @@ export namespace google {
|
|
|
35669
37372
|
}
|
|
35670
37373
|
}
|
|
35671
37374
|
|
|
37375
|
+
/** Properties of a FeatureSet. */
|
|
37376
|
+
interface IFeatureSet {
|
|
37377
|
+
|
|
37378
|
+
/** FeatureSet fieldPresence */
|
|
37379
|
+
fieldPresence?: (google.protobuf.FeatureSet.FieldPresence|keyof typeof google.protobuf.FeatureSet.FieldPresence|null);
|
|
37380
|
+
|
|
37381
|
+
/** FeatureSet enumType */
|
|
37382
|
+
enumType?: (google.protobuf.FeatureSet.EnumType|keyof typeof google.protobuf.FeatureSet.EnumType|null);
|
|
37383
|
+
|
|
37384
|
+
/** FeatureSet repeatedFieldEncoding */
|
|
37385
|
+
repeatedFieldEncoding?: (google.protobuf.FeatureSet.RepeatedFieldEncoding|keyof typeof google.protobuf.FeatureSet.RepeatedFieldEncoding|null);
|
|
37386
|
+
|
|
37387
|
+
/** FeatureSet utf8Validation */
|
|
37388
|
+
utf8Validation?: (google.protobuf.FeatureSet.Utf8Validation|keyof typeof google.protobuf.FeatureSet.Utf8Validation|null);
|
|
37389
|
+
|
|
37390
|
+
/** FeatureSet messageEncoding */
|
|
37391
|
+
messageEncoding?: (google.protobuf.FeatureSet.MessageEncoding|keyof typeof google.protobuf.FeatureSet.MessageEncoding|null);
|
|
37392
|
+
|
|
37393
|
+
/** FeatureSet jsonFormat */
|
|
37394
|
+
jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
|
|
37395
|
+
}
|
|
37396
|
+
|
|
37397
|
+
/** Represents a FeatureSet. */
|
|
37398
|
+
class FeatureSet implements IFeatureSet {
|
|
37399
|
+
|
|
37400
|
+
/**
|
|
37401
|
+
* Constructs a new FeatureSet.
|
|
37402
|
+
* @param [properties] Properties to set
|
|
37403
|
+
*/
|
|
37404
|
+
constructor(properties?: google.protobuf.IFeatureSet);
|
|
37405
|
+
|
|
37406
|
+
/** FeatureSet fieldPresence. */
|
|
37407
|
+
public fieldPresence: (google.protobuf.FeatureSet.FieldPresence|keyof typeof google.protobuf.FeatureSet.FieldPresence);
|
|
37408
|
+
|
|
37409
|
+
/** FeatureSet enumType. */
|
|
37410
|
+
public enumType: (google.protobuf.FeatureSet.EnumType|keyof typeof google.protobuf.FeatureSet.EnumType);
|
|
37411
|
+
|
|
37412
|
+
/** FeatureSet repeatedFieldEncoding. */
|
|
37413
|
+
public repeatedFieldEncoding: (google.protobuf.FeatureSet.RepeatedFieldEncoding|keyof typeof google.protobuf.FeatureSet.RepeatedFieldEncoding);
|
|
37414
|
+
|
|
37415
|
+
/** FeatureSet utf8Validation. */
|
|
37416
|
+
public utf8Validation: (google.protobuf.FeatureSet.Utf8Validation|keyof typeof google.protobuf.FeatureSet.Utf8Validation);
|
|
37417
|
+
|
|
37418
|
+
/** FeatureSet messageEncoding. */
|
|
37419
|
+
public messageEncoding: (google.protobuf.FeatureSet.MessageEncoding|keyof typeof google.protobuf.FeatureSet.MessageEncoding);
|
|
37420
|
+
|
|
37421
|
+
/** FeatureSet jsonFormat. */
|
|
37422
|
+
public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
|
|
37423
|
+
|
|
37424
|
+
/**
|
|
37425
|
+
* Creates a new FeatureSet instance using the specified properties.
|
|
37426
|
+
* @param [properties] Properties to set
|
|
37427
|
+
* @returns FeatureSet instance
|
|
37428
|
+
*/
|
|
37429
|
+
public static create(properties?: google.protobuf.IFeatureSet): google.protobuf.FeatureSet;
|
|
37430
|
+
|
|
37431
|
+
/**
|
|
37432
|
+
* Encodes the specified FeatureSet message. Does not implicitly {@link google.protobuf.FeatureSet.verify|verify} messages.
|
|
37433
|
+
* @param message FeatureSet message or plain object to encode
|
|
37434
|
+
* @param [writer] Writer to encode to
|
|
37435
|
+
* @returns Writer
|
|
37436
|
+
*/
|
|
37437
|
+
public static encode(message: google.protobuf.IFeatureSet, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
37438
|
+
|
|
37439
|
+
/**
|
|
37440
|
+
* Encodes the specified FeatureSet message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.verify|verify} messages.
|
|
37441
|
+
* @param message FeatureSet message or plain object to encode
|
|
37442
|
+
* @param [writer] Writer to encode to
|
|
37443
|
+
* @returns Writer
|
|
37444
|
+
*/
|
|
37445
|
+
public static encodeDelimited(message: google.protobuf.IFeatureSet, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
37446
|
+
|
|
37447
|
+
/**
|
|
37448
|
+
* Decodes a FeatureSet message from the specified reader or buffer.
|
|
37449
|
+
* @param reader Reader or buffer to decode from
|
|
37450
|
+
* @param [length] Message length if known beforehand
|
|
37451
|
+
* @returns FeatureSet
|
|
37452
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
37453
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
37454
|
+
*/
|
|
37455
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet;
|
|
37456
|
+
|
|
37457
|
+
/**
|
|
37458
|
+
* Decodes a FeatureSet message from the specified reader or buffer, length delimited.
|
|
37459
|
+
* @param reader Reader or buffer to decode from
|
|
37460
|
+
* @returns FeatureSet
|
|
37461
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
37462
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
37463
|
+
*/
|
|
37464
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet;
|
|
37465
|
+
|
|
37466
|
+
/**
|
|
37467
|
+
* Verifies a FeatureSet message.
|
|
37468
|
+
* @param message Plain object to verify
|
|
37469
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
37470
|
+
*/
|
|
37471
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
37472
|
+
|
|
37473
|
+
/**
|
|
37474
|
+
* Creates a FeatureSet message from a plain object. Also converts values to their respective internal types.
|
|
37475
|
+
* @param object Plain object
|
|
37476
|
+
* @returns FeatureSet
|
|
37477
|
+
*/
|
|
37478
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet;
|
|
37479
|
+
|
|
37480
|
+
/**
|
|
37481
|
+
* Creates a plain object from a FeatureSet message. Also converts values to other types if specified.
|
|
37482
|
+
* @param message FeatureSet
|
|
37483
|
+
* @param [options] Conversion options
|
|
37484
|
+
* @returns Plain object
|
|
37485
|
+
*/
|
|
37486
|
+
public static toObject(message: google.protobuf.FeatureSet, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
37487
|
+
|
|
37488
|
+
/**
|
|
37489
|
+
* Converts this FeatureSet to JSON.
|
|
37490
|
+
* @returns JSON object
|
|
37491
|
+
*/
|
|
37492
|
+
public toJSON(): { [k: string]: any };
|
|
37493
|
+
|
|
37494
|
+
/**
|
|
37495
|
+
* Gets the default type url for FeatureSet
|
|
37496
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
37497
|
+
* @returns The default type url
|
|
37498
|
+
*/
|
|
37499
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
37500
|
+
}
|
|
37501
|
+
|
|
37502
|
+
namespace FeatureSet {
|
|
37503
|
+
|
|
37504
|
+
/** FieldPresence enum. */
|
|
37505
|
+
enum FieldPresence {
|
|
37506
|
+
FIELD_PRESENCE_UNKNOWN = 0,
|
|
37507
|
+
EXPLICIT = 1,
|
|
37508
|
+
IMPLICIT = 2,
|
|
37509
|
+
LEGACY_REQUIRED = 3
|
|
37510
|
+
}
|
|
37511
|
+
|
|
37512
|
+
/** EnumType enum. */
|
|
37513
|
+
enum EnumType {
|
|
37514
|
+
ENUM_TYPE_UNKNOWN = 0,
|
|
37515
|
+
OPEN = 1,
|
|
37516
|
+
CLOSED = 2
|
|
37517
|
+
}
|
|
37518
|
+
|
|
37519
|
+
/** RepeatedFieldEncoding enum. */
|
|
37520
|
+
enum RepeatedFieldEncoding {
|
|
37521
|
+
REPEATED_FIELD_ENCODING_UNKNOWN = 0,
|
|
37522
|
+
PACKED = 1,
|
|
37523
|
+
EXPANDED = 2
|
|
37524
|
+
}
|
|
37525
|
+
|
|
37526
|
+
/** Utf8Validation enum. */
|
|
37527
|
+
enum Utf8Validation {
|
|
37528
|
+
UTF8_VALIDATION_UNKNOWN = 0,
|
|
37529
|
+
VERIFY = 2,
|
|
37530
|
+
NONE = 3
|
|
37531
|
+
}
|
|
37532
|
+
|
|
37533
|
+
/** MessageEncoding enum. */
|
|
37534
|
+
enum MessageEncoding {
|
|
37535
|
+
MESSAGE_ENCODING_UNKNOWN = 0,
|
|
37536
|
+
LENGTH_PREFIXED = 1,
|
|
37537
|
+
DELIMITED = 2
|
|
37538
|
+
}
|
|
37539
|
+
|
|
37540
|
+
/** JsonFormat enum. */
|
|
37541
|
+
enum JsonFormat {
|
|
37542
|
+
JSON_FORMAT_UNKNOWN = 0,
|
|
37543
|
+
ALLOW = 1,
|
|
37544
|
+
LEGACY_BEST_EFFORT = 2
|
|
37545
|
+
}
|
|
37546
|
+
}
|
|
37547
|
+
|
|
37548
|
+
/** Properties of a FeatureSetDefaults. */
|
|
37549
|
+
interface IFeatureSetDefaults {
|
|
37550
|
+
|
|
37551
|
+
/** FeatureSetDefaults defaults */
|
|
37552
|
+
defaults?: (google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault[]|null);
|
|
37553
|
+
|
|
37554
|
+
/** FeatureSetDefaults minimumEdition */
|
|
37555
|
+
minimumEdition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
37556
|
+
|
|
37557
|
+
/** FeatureSetDefaults maximumEdition */
|
|
37558
|
+
maximumEdition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
37559
|
+
}
|
|
37560
|
+
|
|
37561
|
+
/** Represents a FeatureSetDefaults. */
|
|
37562
|
+
class FeatureSetDefaults implements IFeatureSetDefaults {
|
|
37563
|
+
|
|
37564
|
+
/**
|
|
37565
|
+
* Constructs a new FeatureSetDefaults.
|
|
37566
|
+
* @param [properties] Properties to set
|
|
37567
|
+
*/
|
|
37568
|
+
constructor(properties?: google.protobuf.IFeatureSetDefaults);
|
|
37569
|
+
|
|
37570
|
+
/** FeatureSetDefaults defaults. */
|
|
37571
|
+
public defaults: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault[];
|
|
37572
|
+
|
|
37573
|
+
/** FeatureSetDefaults minimumEdition. */
|
|
37574
|
+
public minimumEdition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
37575
|
+
|
|
37576
|
+
/** FeatureSetDefaults maximumEdition. */
|
|
37577
|
+
public maximumEdition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
37578
|
+
|
|
37579
|
+
/**
|
|
37580
|
+
* Creates a new FeatureSetDefaults instance using the specified properties.
|
|
37581
|
+
* @param [properties] Properties to set
|
|
37582
|
+
* @returns FeatureSetDefaults instance
|
|
37583
|
+
*/
|
|
37584
|
+
public static create(properties?: google.protobuf.IFeatureSetDefaults): google.protobuf.FeatureSetDefaults;
|
|
37585
|
+
|
|
37586
|
+
/**
|
|
37587
|
+
* Encodes the specified FeatureSetDefaults message. Does not implicitly {@link google.protobuf.FeatureSetDefaults.verify|verify} messages.
|
|
37588
|
+
* @param message FeatureSetDefaults message or plain object to encode
|
|
37589
|
+
* @param [writer] Writer to encode to
|
|
37590
|
+
* @returns Writer
|
|
37591
|
+
*/
|
|
37592
|
+
public static encode(message: google.protobuf.IFeatureSetDefaults, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
37593
|
+
|
|
37594
|
+
/**
|
|
37595
|
+
* Encodes the specified FeatureSetDefaults message, length delimited. Does not implicitly {@link google.protobuf.FeatureSetDefaults.verify|verify} messages.
|
|
37596
|
+
* @param message FeatureSetDefaults message or plain object to encode
|
|
37597
|
+
* @param [writer] Writer to encode to
|
|
37598
|
+
* @returns Writer
|
|
37599
|
+
*/
|
|
37600
|
+
public static encodeDelimited(message: google.protobuf.IFeatureSetDefaults, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
37601
|
+
|
|
37602
|
+
/**
|
|
37603
|
+
* Decodes a FeatureSetDefaults message from the specified reader or buffer.
|
|
37604
|
+
* @param reader Reader or buffer to decode from
|
|
37605
|
+
* @param [length] Message length if known beforehand
|
|
37606
|
+
* @returns FeatureSetDefaults
|
|
37607
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
37608
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
37609
|
+
*/
|
|
37610
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSetDefaults;
|
|
37611
|
+
|
|
37612
|
+
/**
|
|
37613
|
+
* Decodes a FeatureSetDefaults message from the specified reader or buffer, length delimited.
|
|
37614
|
+
* @param reader Reader or buffer to decode from
|
|
37615
|
+
* @returns FeatureSetDefaults
|
|
37616
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
37617
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
37618
|
+
*/
|
|
37619
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSetDefaults;
|
|
37620
|
+
|
|
37621
|
+
/**
|
|
37622
|
+
* Verifies a FeatureSetDefaults message.
|
|
37623
|
+
* @param message Plain object to verify
|
|
37624
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
37625
|
+
*/
|
|
37626
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
37627
|
+
|
|
37628
|
+
/**
|
|
37629
|
+
* Creates a FeatureSetDefaults message from a plain object. Also converts values to their respective internal types.
|
|
37630
|
+
* @param object Plain object
|
|
37631
|
+
* @returns FeatureSetDefaults
|
|
37632
|
+
*/
|
|
37633
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSetDefaults;
|
|
37634
|
+
|
|
37635
|
+
/**
|
|
37636
|
+
* Creates a plain object from a FeatureSetDefaults message. Also converts values to other types if specified.
|
|
37637
|
+
* @param message FeatureSetDefaults
|
|
37638
|
+
* @param [options] Conversion options
|
|
37639
|
+
* @returns Plain object
|
|
37640
|
+
*/
|
|
37641
|
+
public static toObject(message: google.protobuf.FeatureSetDefaults, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
37642
|
+
|
|
37643
|
+
/**
|
|
37644
|
+
* Converts this FeatureSetDefaults to JSON.
|
|
37645
|
+
* @returns JSON object
|
|
37646
|
+
*/
|
|
37647
|
+
public toJSON(): { [k: string]: any };
|
|
37648
|
+
|
|
37649
|
+
/**
|
|
37650
|
+
* Gets the default type url for FeatureSetDefaults
|
|
37651
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
37652
|
+
* @returns The default type url
|
|
37653
|
+
*/
|
|
37654
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
37655
|
+
}
|
|
37656
|
+
|
|
37657
|
+
namespace FeatureSetDefaults {
|
|
37658
|
+
|
|
37659
|
+
/** Properties of a FeatureSetEditionDefault. */
|
|
37660
|
+
interface IFeatureSetEditionDefault {
|
|
37661
|
+
|
|
37662
|
+
/** FeatureSetEditionDefault edition */
|
|
37663
|
+
edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
37664
|
+
|
|
37665
|
+
/** FeatureSetEditionDefault features */
|
|
37666
|
+
features?: (google.protobuf.IFeatureSet|null);
|
|
37667
|
+
}
|
|
37668
|
+
|
|
37669
|
+
/** Represents a FeatureSetEditionDefault. */
|
|
37670
|
+
class FeatureSetEditionDefault implements IFeatureSetEditionDefault {
|
|
37671
|
+
|
|
37672
|
+
/**
|
|
37673
|
+
* Constructs a new FeatureSetEditionDefault.
|
|
37674
|
+
* @param [properties] Properties to set
|
|
37675
|
+
*/
|
|
37676
|
+
constructor(properties?: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault);
|
|
37677
|
+
|
|
37678
|
+
/** FeatureSetEditionDefault edition. */
|
|
37679
|
+
public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
37680
|
+
|
|
37681
|
+
/** FeatureSetEditionDefault features. */
|
|
37682
|
+
public features?: (google.protobuf.IFeatureSet|null);
|
|
37683
|
+
|
|
37684
|
+
/**
|
|
37685
|
+
* Creates a new FeatureSetEditionDefault instance using the specified properties.
|
|
37686
|
+
* @param [properties] Properties to set
|
|
37687
|
+
* @returns FeatureSetEditionDefault instance
|
|
37688
|
+
*/
|
|
37689
|
+
public static create(properties?: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault;
|
|
37690
|
+
|
|
37691
|
+
/**
|
|
37692
|
+
* Encodes the specified FeatureSetEditionDefault message. Does not implicitly {@link google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault.verify|verify} messages.
|
|
37693
|
+
* @param message FeatureSetEditionDefault message or plain object to encode
|
|
37694
|
+
* @param [writer] Writer to encode to
|
|
37695
|
+
* @returns Writer
|
|
37696
|
+
*/
|
|
37697
|
+
public static encode(message: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
37698
|
+
|
|
37699
|
+
/**
|
|
37700
|
+
* Encodes the specified FeatureSetEditionDefault message, length delimited. Does not implicitly {@link google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault.verify|verify} messages.
|
|
37701
|
+
* @param message FeatureSetEditionDefault message or plain object to encode
|
|
37702
|
+
* @param [writer] Writer to encode to
|
|
37703
|
+
* @returns Writer
|
|
37704
|
+
*/
|
|
37705
|
+
public static encodeDelimited(message: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
37706
|
+
|
|
37707
|
+
/**
|
|
37708
|
+
* Decodes a FeatureSetEditionDefault message from the specified reader or buffer.
|
|
37709
|
+
* @param reader Reader or buffer to decode from
|
|
37710
|
+
* @param [length] Message length if known beforehand
|
|
37711
|
+
* @returns FeatureSetEditionDefault
|
|
37712
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
37713
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
37714
|
+
*/
|
|
37715
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault;
|
|
37716
|
+
|
|
37717
|
+
/**
|
|
37718
|
+
* Decodes a FeatureSetEditionDefault message from the specified reader or buffer, length delimited.
|
|
37719
|
+
* @param reader Reader or buffer to decode from
|
|
37720
|
+
* @returns FeatureSetEditionDefault
|
|
37721
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
37722
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
37723
|
+
*/
|
|
37724
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault;
|
|
37725
|
+
|
|
37726
|
+
/**
|
|
37727
|
+
* Verifies a FeatureSetEditionDefault message.
|
|
37728
|
+
* @param message Plain object to verify
|
|
37729
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
37730
|
+
*/
|
|
37731
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
37732
|
+
|
|
37733
|
+
/**
|
|
37734
|
+
* Creates a FeatureSetEditionDefault message from a plain object. Also converts values to their respective internal types.
|
|
37735
|
+
* @param object Plain object
|
|
37736
|
+
* @returns FeatureSetEditionDefault
|
|
37737
|
+
*/
|
|
37738
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault;
|
|
37739
|
+
|
|
37740
|
+
/**
|
|
37741
|
+
* Creates a plain object from a FeatureSetEditionDefault message. Also converts values to other types if specified.
|
|
37742
|
+
* @param message FeatureSetEditionDefault
|
|
37743
|
+
* @param [options] Conversion options
|
|
37744
|
+
* @returns Plain object
|
|
37745
|
+
*/
|
|
37746
|
+
public static toObject(message: google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
37747
|
+
|
|
37748
|
+
/**
|
|
37749
|
+
* Converts this FeatureSetEditionDefault to JSON.
|
|
37750
|
+
* @returns JSON object
|
|
37751
|
+
*/
|
|
37752
|
+
public toJSON(): { [k: string]: any };
|
|
37753
|
+
|
|
37754
|
+
/**
|
|
37755
|
+
* Gets the default type url for FeatureSetEditionDefault
|
|
37756
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
37757
|
+
* @returns The default type url
|
|
37758
|
+
*/
|
|
37759
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
37760
|
+
}
|
|
37761
|
+
}
|
|
37762
|
+
|
|
35672
37763
|
/** Properties of a SourceCodeInfo. */
|
|
35673
37764
|
interface ISourceCodeInfo {
|
|
35674
37765
|
|