@google-cloud/dlp 4.3.0 → 4.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27486,6 +27486,1448 @@ export namespace google {
27486
27486
  public static getTypeUrl(typeUrlPrefix?: string): string;
27487
27487
  }
27488
27488
 
27489
+ /** Properties of a CommonLanguageSettings. */
27490
+ interface ICommonLanguageSettings {
27491
+
27492
+ /** CommonLanguageSettings referenceDocsUri */
27493
+ referenceDocsUri?: (string|null);
27494
+
27495
+ /** CommonLanguageSettings destinations */
27496
+ destinations?: (google.api.ClientLibraryDestination[]|null);
27497
+ }
27498
+
27499
+ /** Represents a CommonLanguageSettings. */
27500
+ class CommonLanguageSettings implements ICommonLanguageSettings {
27501
+
27502
+ /**
27503
+ * Constructs a new CommonLanguageSettings.
27504
+ * @param [properties] Properties to set
27505
+ */
27506
+ constructor(properties?: google.api.ICommonLanguageSettings);
27507
+
27508
+ /** CommonLanguageSettings referenceDocsUri. */
27509
+ public referenceDocsUri: string;
27510
+
27511
+ /** CommonLanguageSettings destinations. */
27512
+ public destinations: google.api.ClientLibraryDestination[];
27513
+
27514
+ /**
27515
+ * Creates a new CommonLanguageSettings instance using the specified properties.
27516
+ * @param [properties] Properties to set
27517
+ * @returns CommonLanguageSettings instance
27518
+ */
27519
+ public static create(properties?: google.api.ICommonLanguageSettings): google.api.CommonLanguageSettings;
27520
+
27521
+ /**
27522
+ * Encodes the specified CommonLanguageSettings message. Does not implicitly {@link google.api.CommonLanguageSettings.verify|verify} messages.
27523
+ * @param message CommonLanguageSettings message or plain object to encode
27524
+ * @param [writer] Writer to encode to
27525
+ * @returns Writer
27526
+ */
27527
+ public static encode(message: google.api.ICommonLanguageSettings, writer?: $protobuf.Writer): $protobuf.Writer;
27528
+
27529
+ /**
27530
+ * Encodes the specified CommonLanguageSettings message, length delimited. Does not implicitly {@link google.api.CommonLanguageSettings.verify|verify} messages.
27531
+ * @param message CommonLanguageSettings message or plain object to encode
27532
+ * @param [writer] Writer to encode to
27533
+ * @returns Writer
27534
+ */
27535
+ public static encodeDelimited(message: google.api.ICommonLanguageSettings, writer?: $protobuf.Writer): $protobuf.Writer;
27536
+
27537
+ /**
27538
+ * Decodes a CommonLanguageSettings message from the specified reader or buffer.
27539
+ * @param reader Reader or buffer to decode from
27540
+ * @param [length] Message length if known beforehand
27541
+ * @returns CommonLanguageSettings
27542
+ * @throws {Error} If the payload is not a reader or valid buffer
27543
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27544
+ */
27545
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.CommonLanguageSettings;
27546
+
27547
+ /**
27548
+ * Decodes a CommonLanguageSettings message from the specified reader or buffer, length delimited.
27549
+ * @param reader Reader or buffer to decode from
27550
+ * @returns CommonLanguageSettings
27551
+ * @throws {Error} If the payload is not a reader or valid buffer
27552
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27553
+ */
27554
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.CommonLanguageSettings;
27555
+
27556
+ /**
27557
+ * Verifies a CommonLanguageSettings message.
27558
+ * @param message Plain object to verify
27559
+ * @returns `null` if valid, otherwise the reason why it is not
27560
+ */
27561
+ public static verify(message: { [k: string]: any }): (string|null);
27562
+
27563
+ /**
27564
+ * Creates a CommonLanguageSettings message from a plain object. Also converts values to their respective internal types.
27565
+ * @param object Plain object
27566
+ * @returns CommonLanguageSettings
27567
+ */
27568
+ public static fromObject(object: { [k: string]: any }): google.api.CommonLanguageSettings;
27569
+
27570
+ /**
27571
+ * Creates a plain object from a CommonLanguageSettings message. Also converts values to other types if specified.
27572
+ * @param message CommonLanguageSettings
27573
+ * @param [options] Conversion options
27574
+ * @returns Plain object
27575
+ */
27576
+ public static toObject(message: google.api.CommonLanguageSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
27577
+
27578
+ /**
27579
+ * Converts this CommonLanguageSettings to JSON.
27580
+ * @returns JSON object
27581
+ */
27582
+ public toJSON(): { [k: string]: any };
27583
+
27584
+ /**
27585
+ * Gets the default type url for CommonLanguageSettings
27586
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27587
+ * @returns The default type url
27588
+ */
27589
+ public static getTypeUrl(typeUrlPrefix?: string): string;
27590
+ }
27591
+
27592
+ /** Properties of a ClientLibrarySettings. */
27593
+ interface IClientLibrarySettings {
27594
+
27595
+ /** ClientLibrarySettings version */
27596
+ version?: (string|null);
27597
+
27598
+ /** ClientLibrarySettings launchStage */
27599
+ launchStage?: (google.api.LaunchStage|keyof typeof google.api.LaunchStage|null);
27600
+
27601
+ /** ClientLibrarySettings restNumericEnums */
27602
+ restNumericEnums?: (boolean|null);
27603
+
27604
+ /** ClientLibrarySettings javaSettings */
27605
+ javaSettings?: (google.api.IJavaSettings|null);
27606
+
27607
+ /** ClientLibrarySettings cppSettings */
27608
+ cppSettings?: (google.api.ICppSettings|null);
27609
+
27610
+ /** ClientLibrarySettings phpSettings */
27611
+ phpSettings?: (google.api.IPhpSettings|null);
27612
+
27613
+ /** ClientLibrarySettings pythonSettings */
27614
+ pythonSettings?: (google.api.IPythonSettings|null);
27615
+
27616
+ /** ClientLibrarySettings nodeSettings */
27617
+ nodeSettings?: (google.api.INodeSettings|null);
27618
+
27619
+ /** ClientLibrarySettings dotnetSettings */
27620
+ dotnetSettings?: (google.api.IDotnetSettings|null);
27621
+
27622
+ /** ClientLibrarySettings rubySettings */
27623
+ rubySettings?: (google.api.IRubySettings|null);
27624
+
27625
+ /** ClientLibrarySettings goSettings */
27626
+ goSettings?: (google.api.IGoSettings|null);
27627
+ }
27628
+
27629
+ /** Represents a ClientLibrarySettings. */
27630
+ class ClientLibrarySettings implements IClientLibrarySettings {
27631
+
27632
+ /**
27633
+ * Constructs a new ClientLibrarySettings.
27634
+ * @param [properties] Properties to set
27635
+ */
27636
+ constructor(properties?: google.api.IClientLibrarySettings);
27637
+
27638
+ /** ClientLibrarySettings version. */
27639
+ public version: string;
27640
+
27641
+ /** ClientLibrarySettings launchStage. */
27642
+ public launchStage: (google.api.LaunchStage|keyof typeof google.api.LaunchStage);
27643
+
27644
+ /** ClientLibrarySettings restNumericEnums. */
27645
+ public restNumericEnums: boolean;
27646
+
27647
+ /** ClientLibrarySettings javaSettings. */
27648
+ public javaSettings?: (google.api.IJavaSettings|null);
27649
+
27650
+ /** ClientLibrarySettings cppSettings. */
27651
+ public cppSettings?: (google.api.ICppSettings|null);
27652
+
27653
+ /** ClientLibrarySettings phpSettings. */
27654
+ public phpSettings?: (google.api.IPhpSettings|null);
27655
+
27656
+ /** ClientLibrarySettings pythonSettings. */
27657
+ public pythonSettings?: (google.api.IPythonSettings|null);
27658
+
27659
+ /** ClientLibrarySettings nodeSettings. */
27660
+ public nodeSettings?: (google.api.INodeSettings|null);
27661
+
27662
+ /** ClientLibrarySettings dotnetSettings. */
27663
+ public dotnetSettings?: (google.api.IDotnetSettings|null);
27664
+
27665
+ /** ClientLibrarySettings rubySettings. */
27666
+ public rubySettings?: (google.api.IRubySettings|null);
27667
+
27668
+ /** ClientLibrarySettings goSettings. */
27669
+ public goSettings?: (google.api.IGoSettings|null);
27670
+
27671
+ /**
27672
+ * Creates a new ClientLibrarySettings instance using the specified properties.
27673
+ * @param [properties] Properties to set
27674
+ * @returns ClientLibrarySettings instance
27675
+ */
27676
+ public static create(properties?: google.api.IClientLibrarySettings): google.api.ClientLibrarySettings;
27677
+
27678
+ /**
27679
+ * Encodes the specified ClientLibrarySettings message. Does not implicitly {@link google.api.ClientLibrarySettings.verify|verify} messages.
27680
+ * @param message ClientLibrarySettings message or plain object to encode
27681
+ * @param [writer] Writer to encode to
27682
+ * @returns Writer
27683
+ */
27684
+ public static encode(message: google.api.IClientLibrarySettings, writer?: $protobuf.Writer): $protobuf.Writer;
27685
+
27686
+ /**
27687
+ * Encodes the specified ClientLibrarySettings message, length delimited. Does not implicitly {@link google.api.ClientLibrarySettings.verify|verify} messages.
27688
+ * @param message ClientLibrarySettings message or plain object to encode
27689
+ * @param [writer] Writer to encode to
27690
+ * @returns Writer
27691
+ */
27692
+ public static encodeDelimited(message: google.api.IClientLibrarySettings, writer?: $protobuf.Writer): $protobuf.Writer;
27693
+
27694
+ /**
27695
+ * Decodes a ClientLibrarySettings message from the specified reader or buffer.
27696
+ * @param reader Reader or buffer to decode from
27697
+ * @param [length] Message length if known beforehand
27698
+ * @returns ClientLibrarySettings
27699
+ * @throws {Error} If the payload is not a reader or valid buffer
27700
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27701
+ */
27702
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.ClientLibrarySettings;
27703
+
27704
+ /**
27705
+ * Decodes a ClientLibrarySettings message from the specified reader or buffer, length delimited.
27706
+ * @param reader Reader or buffer to decode from
27707
+ * @returns ClientLibrarySettings
27708
+ * @throws {Error} If the payload is not a reader or valid buffer
27709
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27710
+ */
27711
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.ClientLibrarySettings;
27712
+
27713
+ /**
27714
+ * Verifies a ClientLibrarySettings message.
27715
+ * @param message Plain object to verify
27716
+ * @returns `null` if valid, otherwise the reason why it is not
27717
+ */
27718
+ public static verify(message: { [k: string]: any }): (string|null);
27719
+
27720
+ /**
27721
+ * Creates a ClientLibrarySettings message from a plain object. Also converts values to their respective internal types.
27722
+ * @param object Plain object
27723
+ * @returns ClientLibrarySettings
27724
+ */
27725
+ public static fromObject(object: { [k: string]: any }): google.api.ClientLibrarySettings;
27726
+
27727
+ /**
27728
+ * Creates a plain object from a ClientLibrarySettings message. Also converts values to other types if specified.
27729
+ * @param message ClientLibrarySettings
27730
+ * @param [options] Conversion options
27731
+ * @returns Plain object
27732
+ */
27733
+ public static toObject(message: google.api.ClientLibrarySettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
27734
+
27735
+ /**
27736
+ * Converts this ClientLibrarySettings to JSON.
27737
+ * @returns JSON object
27738
+ */
27739
+ public toJSON(): { [k: string]: any };
27740
+
27741
+ /**
27742
+ * Gets the default type url for ClientLibrarySettings
27743
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27744
+ * @returns The default type url
27745
+ */
27746
+ public static getTypeUrl(typeUrlPrefix?: string): string;
27747
+ }
27748
+
27749
+ /** Properties of a Publishing. */
27750
+ interface IPublishing {
27751
+
27752
+ /** Publishing methodSettings */
27753
+ methodSettings?: (google.api.IMethodSettings[]|null);
27754
+
27755
+ /** Publishing newIssueUri */
27756
+ newIssueUri?: (string|null);
27757
+
27758
+ /** Publishing documentationUri */
27759
+ documentationUri?: (string|null);
27760
+
27761
+ /** Publishing apiShortName */
27762
+ apiShortName?: (string|null);
27763
+
27764
+ /** Publishing githubLabel */
27765
+ githubLabel?: (string|null);
27766
+
27767
+ /** Publishing codeownerGithubTeams */
27768
+ codeownerGithubTeams?: (string[]|null);
27769
+
27770
+ /** Publishing docTagPrefix */
27771
+ docTagPrefix?: (string|null);
27772
+
27773
+ /** Publishing organization */
27774
+ organization?: (google.api.ClientLibraryOrganization|keyof typeof google.api.ClientLibraryOrganization|null);
27775
+
27776
+ /** Publishing librarySettings */
27777
+ librarySettings?: (google.api.IClientLibrarySettings[]|null);
27778
+ }
27779
+
27780
+ /** Represents a Publishing. */
27781
+ class Publishing implements IPublishing {
27782
+
27783
+ /**
27784
+ * Constructs a new Publishing.
27785
+ * @param [properties] Properties to set
27786
+ */
27787
+ constructor(properties?: google.api.IPublishing);
27788
+
27789
+ /** Publishing methodSettings. */
27790
+ public methodSettings: google.api.IMethodSettings[];
27791
+
27792
+ /** Publishing newIssueUri. */
27793
+ public newIssueUri: string;
27794
+
27795
+ /** Publishing documentationUri. */
27796
+ public documentationUri: string;
27797
+
27798
+ /** Publishing apiShortName. */
27799
+ public apiShortName: string;
27800
+
27801
+ /** Publishing githubLabel. */
27802
+ public githubLabel: string;
27803
+
27804
+ /** Publishing codeownerGithubTeams. */
27805
+ public codeownerGithubTeams: string[];
27806
+
27807
+ /** Publishing docTagPrefix. */
27808
+ public docTagPrefix: string;
27809
+
27810
+ /** Publishing organization. */
27811
+ public organization: (google.api.ClientLibraryOrganization|keyof typeof google.api.ClientLibraryOrganization);
27812
+
27813
+ /** Publishing librarySettings. */
27814
+ public librarySettings: google.api.IClientLibrarySettings[];
27815
+
27816
+ /**
27817
+ * Creates a new Publishing instance using the specified properties.
27818
+ * @param [properties] Properties to set
27819
+ * @returns Publishing instance
27820
+ */
27821
+ public static create(properties?: google.api.IPublishing): google.api.Publishing;
27822
+
27823
+ /**
27824
+ * Encodes the specified Publishing message. Does not implicitly {@link google.api.Publishing.verify|verify} messages.
27825
+ * @param message Publishing message or plain object to encode
27826
+ * @param [writer] Writer to encode to
27827
+ * @returns Writer
27828
+ */
27829
+ public static encode(message: google.api.IPublishing, writer?: $protobuf.Writer): $protobuf.Writer;
27830
+
27831
+ /**
27832
+ * Encodes the specified Publishing message, length delimited. Does not implicitly {@link google.api.Publishing.verify|verify} messages.
27833
+ * @param message Publishing message or plain object to encode
27834
+ * @param [writer] Writer to encode to
27835
+ * @returns Writer
27836
+ */
27837
+ public static encodeDelimited(message: google.api.IPublishing, writer?: $protobuf.Writer): $protobuf.Writer;
27838
+
27839
+ /**
27840
+ * Decodes a Publishing message from the specified reader or buffer.
27841
+ * @param reader Reader or buffer to decode from
27842
+ * @param [length] Message length if known beforehand
27843
+ * @returns Publishing
27844
+ * @throws {Error} If the payload is not a reader or valid buffer
27845
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27846
+ */
27847
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.Publishing;
27848
+
27849
+ /**
27850
+ * Decodes a Publishing message from the specified reader or buffer, length delimited.
27851
+ * @param reader Reader or buffer to decode from
27852
+ * @returns Publishing
27853
+ * @throws {Error} If the payload is not a reader or valid buffer
27854
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27855
+ */
27856
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.Publishing;
27857
+
27858
+ /**
27859
+ * Verifies a Publishing message.
27860
+ * @param message Plain object to verify
27861
+ * @returns `null` if valid, otherwise the reason why it is not
27862
+ */
27863
+ public static verify(message: { [k: string]: any }): (string|null);
27864
+
27865
+ /**
27866
+ * Creates a Publishing message from a plain object. Also converts values to their respective internal types.
27867
+ * @param object Plain object
27868
+ * @returns Publishing
27869
+ */
27870
+ public static fromObject(object: { [k: string]: any }): google.api.Publishing;
27871
+
27872
+ /**
27873
+ * Creates a plain object from a Publishing message. Also converts values to other types if specified.
27874
+ * @param message Publishing
27875
+ * @param [options] Conversion options
27876
+ * @returns Plain object
27877
+ */
27878
+ public static toObject(message: google.api.Publishing, options?: $protobuf.IConversionOptions): { [k: string]: any };
27879
+
27880
+ /**
27881
+ * Converts this Publishing to JSON.
27882
+ * @returns JSON object
27883
+ */
27884
+ public toJSON(): { [k: string]: any };
27885
+
27886
+ /**
27887
+ * Gets the default type url for Publishing
27888
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27889
+ * @returns The default type url
27890
+ */
27891
+ public static getTypeUrl(typeUrlPrefix?: string): string;
27892
+ }
27893
+
27894
+ /** Properties of a JavaSettings. */
27895
+ interface IJavaSettings {
27896
+
27897
+ /** JavaSettings libraryPackage */
27898
+ libraryPackage?: (string|null);
27899
+
27900
+ /** JavaSettings serviceClassNames */
27901
+ serviceClassNames?: ({ [k: string]: string }|null);
27902
+
27903
+ /** JavaSettings common */
27904
+ common?: (google.api.ICommonLanguageSettings|null);
27905
+ }
27906
+
27907
+ /** Represents a JavaSettings. */
27908
+ class JavaSettings implements IJavaSettings {
27909
+
27910
+ /**
27911
+ * Constructs a new JavaSettings.
27912
+ * @param [properties] Properties to set
27913
+ */
27914
+ constructor(properties?: google.api.IJavaSettings);
27915
+
27916
+ /** JavaSettings libraryPackage. */
27917
+ public libraryPackage: string;
27918
+
27919
+ /** JavaSettings serviceClassNames. */
27920
+ public serviceClassNames: { [k: string]: string };
27921
+
27922
+ /** JavaSettings common. */
27923
+ public common?: (google.api.ICommonLanguageSettings|null);
27924
+
27925
+ /**
27926
+ * Creates a new JavaSettings instance using the specified properties.
27927
+ * @param [properties] Properties to set
27928
+ * @returns JavaSettings instance
27929
+ */
27930
+ public static create(properties?: google.api.IJavaSettings): google.api.JavaSettings;
27931
+
27932
+ /**
27933
+ * Encodes the specified JavaSettings message. Does not implicitly {@link google.api.JavaSettings.verify|verify} messages.
27934
+ * @param message JavaSettings message or plain object to encode
27935
+ * @param [writer] Writer to encode to
27936
+ * @returns Writer
27937
+ */
27938
+ public static encode(message: google.api.IJavaSettings, writer?: $protobuf.Writer): $protobuf.Writer;
27939
+
27940
+ /**
27941
+ * Encodes the specified JavaSettings message, length delimited. Does not implicitly {@link google.api.JavaSettings.verify|verify} messages.
27942
+ * @param message JavaSettings message or plain object to encode
27943
+ * @param [writer] Writer to encode to
27944
+ * @returns Writer
27945
+ */
27946
+ public static encodeDelimited(message: google.api.IJavaSettings, writer?: $protobuf.Writer): $protobuf.Writer;
27947
+
27948
+ /**
27949
+ * Decodes a JavaSettings message from the specified reader or buffer.
27950
+ * @param reader Reader or buffer to decode from
27951
+ * @param [length] Message length if known beforehand
27952
+ * @returns JavaSettings
27953
+ * @throws {Error} If the payload is not a reader or valid buffer
27954
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27955
+ */
27956
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.JavaSettings;
27957
+
27958
+ /**
27959
+ * Decodes a JavaSettings message from the specified reader or buffer, length delimited.
27960
+ * @param reader Reader or buffer to decode from
27961
+ * @returns JavaSettings
27962
+ * @throws {Error} If the payload is not a reader or valid buffer
27963
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27964
+ */
27965
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.JavaSettings;
27966
+
27967
+ /**
27968
+ * Verifies a JavaSettings message.
27969
+ * @param message Plain object to verify
27970
+ * @returns `null` if valid, otherwise the reason why it is not
27971
+ */
27972
+ public static verify(message: { [k: string]: any }): (string|null);
27973
+
27974
+ /**
27975
+ * Creates a JavaSettings message from a plain object. Also converts values to their respective internal types.
27976
+ * @param object Plain object
27977
+ * @returns JavaSettings
27978
+ */
27979
+ public static fromObject(object: { [k: string]: any }): google.api.JavaSettings;
27980
+
27981
+ /**
27982
+ * Creates a plain object from a JavaSettings message. Also converts values to other types if specified.
27983
+ * @param message JavaSettings
27984
+ * @param [options] Conversion options
27985
+ * @returns Plain object
27986
+ */
27987
+ public static toObject(message: google.api.JavaSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
27988
+
27989
+ /**
27990
+ * Converts this JavaSettings to JSON.
27991
+ * @returns JSON object
27992
+ */
27993
+ public toJSON(): { [k: string]: any };
27994
+
27995
+ /**
27996
+ * Gets the default type url for JavaSettings
27997
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27998
+ * @returns The default type url
27999
+ */
28000
+ public static getTypeUrl(typeUrlPrefix?: string): string;
28001
+ }
28002
+
28003
+ /** Properties of a CppSettings. */
28004
+ interface ICppSettings {
28005
+
28006
+ /** CppSettings common */
28007
+ common?: (google.api.ICommonLanguageSettings|null);
28008
+ }
28009
+
28010
+ /** Represents a CppSettings. */
28011
+ class CppSettings implements ICppSettings {
28012
+
28013
+ /**
28014
+ * Constructs a new CppSettings.
28015
+ * @param [properties] Properties to set
28016
+ */
28017
+ constructor(properties?: google.api.ICppSettings);
28018
+
28019
+ /** CppSettings common. */
28020
+ public common?: (google.api.ICommonLanguageSettings|null);
28021
+
28022
+ /**
28023
+ * Creates a new CppSettings instance using the specified properties.
28024
+ * @param [properties] Properties to set
28025
+ * @returns CppSettings instance
28026
+ */
28027
+ public static create(properties?: google.api.ICppSettings): google.api.CppSettings;
28028
+
28029
+ /**
28030
+ * Encodes the specified CppSettings message. Does not implicitly {@link google.api.CppSettings.verify|verify} messages.
28031
+ * @param message CppSettings message or plain object to encode
28032
+ * @param [writer] Writer to encode to
28033
+ * @returns Writer
28034
+ */
28035
+ public static encode(message: google.api.ICppSettings, writer?: $protobuf.Writer): $protobuf.Writer;
28036
+
28037
+ /**
28038
+ * Encodes the specified CppSettings message, length delimited. Does not implicitly {@link google.api.CppSettings.verify|verify} messages.
28039
+ * @param message CppSettings message or plain object to encode
28040
+ * @param [writer] Writer to encode to
28041
+ * @returns Writer
28042
+ */
28043
+ public static encodeDelimited(message: google.api.ICppSettings, writer?: $protobuf.Writer): $protobuf.Writer;
28044
+
28045
+ /**
28046
+ * Decodes a CppSettings message from the specified reader or buffer.
28047
+ * @param reader Reader or buffer to decode from
28048
+ * @param [length] Message length if known beforehand
28049
+ * @returns CppSettings
28050
+ * @throws {Error} If the payload is not a reader or valid buffer
28051
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28052
+ */
28053
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.CppSettings;
28054
+
28055
+ /**
28056
+ * Decodes a CppSettings message from the specified reader or buffer, length delimited.
28057
+ * @param reader Reader or buffer to decode from
28058
+ * @returns CppSettings
28059
+ * @throws {Error} If the payload is not a reader or valid buffer
28060
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28061
+ */
28062
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.CppSettings;
28063
+
28064
+ /**
28065
+ * Verifies a CppSettings message.
28066
+ * @param message Plain object to verify
28067
+ * @returns `null` if valid, otherwise the reason why it is not
28068
+ */
28069
+ public static verify(message: { [k: string]: any }): (string|null);
28070
+
28071
+ /**
28072
+ * Creates a CppSettings message from a plain object. Also converts values to their respective internal types.
28073
+ * @param object Plain object
28074
+ * @returns CppSettings
28075
+ */
28076
+ public static fromObject(object: { [k: string]: any }): google.api.CppSettings;
28077
+
28078
+ /**
28079
+ * Creates a plain object from a CppSettings message. Also converts values to other types if specified.
28080
+ * @param message CppSettings
28081
+ * @param [options] Conversion options
28082
+ * @returns Plain object
28083
+ */
28084
+ public static toObject(message: google.api.CppSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
28085
+
28086
+ /**
28087
+ * Converts this CppSettings to JSON.
28088
+ * @returns JSON object
28089
+ */
28090
+ public toJSON(): { [k: string]: any };
28091
+
28092
+ /**
28093
+ * Gets the default type url for CppSettings
28094
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
28095
+ * @returns The default type url
28096
+ */
28097
+ public static getTypeUrl(typeUrlPrefix?: string): string;
28098
+ }
28099
+
28100
+ /** Properties of a PhpSettings. */
28101
+ interface IPhpSettings {
28102
+
28103
+ /** PhpSettings common */
28104
+ common?: (google.api.ICommonLanguageSettings|null);
28105
+ }
28106
+
28107
+ /** Represents a PhpSettings. */
28108
+ class PhpSettings implements IPhpSettings {
28109
+
28110
+ /**
28111
+ * Constructs a new PhpSettings.
28112
+ * @param [properties] Properties to set
28113
+ */
28114
+ constructor(properties?: google.api.IPhpSettings);
28115
+
28116
+ /** PhpSettings common. */
28117
+ public common?: (google.api.ICommonLanguageSettings|null);
28118
+
28119
+ /**
28120
+ * Creates a new PhpSettings instance using the specified properties.
28121
+ * @param [properties] Properties to set
28122
+ * @returns PhpSettings instance
28123
+ */
28124
+ public static create(properties?: google.api.IPhpSettings): google.api.PhpSettings;
28125
+
28126
+ /**
28127
+ * Encodes the specified PhpSettings message. Does not implicitly {@link google.api.PhpSettings.verify|verify} messages.
28128
+ * @param message PhpSettings message or plain object to encode
28129
+ * @param [writer] Writer to encode to
28130
+ * @returns Writer
28131
+ */
28132
+ public static encode(message: google.api.IPhpSettings, writer?: $protobuf.Writer): $protobuf.Writer;
28133
+
28134
+ /**
28135
+ * Encodes the specified PhpSettings message, length delimited. Does not implicitly {@link google.api.PhpSettings.verify|verify} messages.
28136
+ * @param message PhpSettings message or plain object to encode
28137
+ * @param [writer] Writer to encode to
28138
+ * @returns Writer
28139
+ */
28140
+ public static encodeDelimited(message: google.api.IPhpSettings, writer?: $protobuf.Writer): $protobuf.Writer;
28141
+
28142
+ /**
28143
+ * Decodes a PhpSettings message from the specified reader or buffer.
28144
+ * @param reader Reader or buffer to decode from
28145
+ * @param [length] Message length if known beforehand
28146
+ * @returns PhpSettings
28147
+ * @throws {Error} If the payload is not a reader or valid buffer
28148
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28149
+ */
28150
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PhpSettings;
28151
+
28152
+ /**
28153
+ * Decodes a PhpSettings message from the specified reader or buffer, length delimited.
28154
+ * @param reader Reader or buffer to decode from
28155
+ * @returns PhpSettings
28156
+ * @throws {Error} If the payload is not a reader or valid buffer
28157
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28158
+ */
28159
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PhpSettings;
28160
+
28161
+ /**
28162
+ * Verifies a PhpSettings message.
28163
+ * @param message Plain object to verify
28164
+ * @returns `null` if valid, otherwise the reason why it is not
28165
+ */
28166
+ public static verify(message: { [k: string]: any }): (string|null);
28167
+
28168
+ /**
28169
+ * Creates a PhpSettings message from a plain object. Also converts values to their respective internal types.
28170
+ * @param object Plain object
28171
+ * @returns PhpSettings
28172
+ */
28173
+ public static fromObject(object: { [k: string]: any }): google.api.PhpSettings;
28174
+
28175
+ /**
28176
+ * Creates a plain object from a PhpSettings message. Also converts values to other types if specified.
28177
+ * @param message PhpSettings
28178
+ * @param [options] Conversion options
28179
+ * @returns Plain object
28180
+ */
28181
+ public static toObject(message: google.api.PhpSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
28182
+
28183
+ /**
28184
+ * Converts this PhpSettings to JSON.
28185
+ * @returns JSON object
28186
+ */
28187
+ public toJSON(): { [k: string]: any };
28188
+
28189
+ /**
28190
+ * Gets the default type url for PhpSettings
28191
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
28192
+ * @returns The default type url
28193
+ */
28194
+ public static getTypeUrl(typeUrlPrefix?: string): string;
28195
+ }
28196
+
28197
+ /** Properties of a PythonSettings. */
28198
+ interface IPythonSettings {
28199
+
28200
+ /** PythonSettings common */
28201
+ common?: (google.api.ICommonLanguageSettings|null);
28202
+ }
28203
+
28204
+ /** Represents a PythonSettings. */
28205
+ class PythonSettings implements IPythonSettings {
28206
+
28207
+ /**
28208
+ * Constructs a new PythonSettings.
28209
+ * @param [properties] Properties to set
28210
+ */
28211
+ constructor(properties?: google.api.IPythonSettings);
28212
+
28213
+ /** PythonSettings common. */
28214
+ public common?: (google.api.ICommonLanguageSettings|null);
28215
+
28216
+ /**
28217
+ * Creates a new PythonSettings instance using the specified properties.
28218
+ * @param [properties] Properties to set
28219
+ * @returns PythonSettings instance
28220
+ */
28221
+ public static create(properties?: google.api.IPythonSettings): google.api.PythonSettings;
28222
+
28223
+ /**
28224
+ * Encodes the specified PythonSettings message. Does not implicitly {@link google.api.PythonSettings.verify|verify} messages.
28225
+ * @param message PythonSettings message or plain object to encode
28226
+ * @param [writer] Writer to encode to
28227
+ * @returns Writer
28228
+ */
28229
+ public static encode(message: google.api.IPythonSettings, writer?: $protobuf.Writer): $protobuf.Writer;
28230
+
28231
+ /**
28232
+ * Encodes the specified PythonSettings message, length delimited. Does not implicitly {@link google.api.PythonSettings.verify|verify} messages.
28233
+ * @param message PythonSettings message or plain object to encode
28234
+ * @param [writer] Writer to encode to
28235
+ * @returns Writer
28236
+ */
28237
+ public static encodeDelimited(message: google.api.IPythonSettings, writer?: $protobuf.Writer): $protobuf.Writer;
28238
+
28239
+ /**
28240
+ * Decodes a PythonSettings message from the specified reader or buffer.
28241
+ * @param reader Reader or buffer to decode from
28242
+ * @param [length] Message length if known beforehand
28243
+ * @returns PythonSettings
28244
+ * @throws {Error} If the payload is not a reader or valid buffer
28245
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28246
+ */
28247
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings;
28248
+
28249
+ /**
28250
+ * Decodes a PythonSettings message from the specified reader or buffer, length delimited.
28251
+ * @param reader Reader or buffer to decode from
28252
+ * @returns PythonSettings
28253
+ * @throws {Error} If the payload is not a reader or valid buffer
28254
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28255
+ */
28256
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings;
28257
+
28258
+ /**
28259
+ * Verifies a PythonSettings message.
28260
+ * @param message Plain object to verify
28261
+ * @returns `null` if valid, otherwise the reason why it is not
28262
+ */
28263
+ public static verify(message: { [k: string]: any }): (string|null);
28264
+
28265
+ /**
28266
+ * Creates a PythonSettings message from a plain object. Also converts values to their respective internal types.
28267
+ * @param object Plain object
28268
+ * @returns PythonSettings
28269
+ */
28270
+ public static fromObject(object: { [k: string]: any }): google.api.PythonSettings;
28271
+
28272
+ /**
28273
+ * Creates a plain object from a PythonSettings message. Also converts values to other types if specified.
28274
+ * @param message PythonSettings
28275
+ * @param [options] Conversion options
28276
+ * @returns Plain object
28277
+ */
28278
+ public static toObject(message: google.api.PythonSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
28279
+
28280
+ /**
28281
+ * Converts this PythonSettings to JSON.
28282
+ * @returns JSON object
28283
+ */
28284
+ public toJSON(): { [k: string]: any };
28285
+
28286
+ /**
28287
+ * Gets the default type url for PythonSettings
28288
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
28289
+ * @returns The default type url
28290
+ */
28291
+ public static getTypeUrl(typeUrlPrefix?: string): string;
28292
+ }
28293
+
28294
+ /** Properties of a NodeSettings. */
28295
+ interface INodeSettings {
28296
+
28297
+ /** NodeSettings common */
28298
+ common?: (google.api.ICommonLanguageSettings|null);
28299
+ }
28300
+
28301
+ /** Represents a NodeSettings. */
28302
+ class NodeSettings implements INodeSettings {
28303
+
28304
+ /**
28305
+ * Constructs a new NodeSettings.
28306
+ * @param [properties] Properties to set
28307
+ */
28308
+ constructor(properties?: google.api.INodeSettings);
28309
+
28310
+ /** NodeSettings common. */
28311
+ public common?: (google.api.ICommonLanguageSettings|null);
28312
+
28313
+ /**
28314
+ * Creates a new NodeSettings instance using the specified properties.
28315
+ * @param [properties] Properties to set
28316
+ * @returns NodeSettings instance
28317
+ */
28318
+ public static create(properties?: google.api.INodeSettings): google.api.NodeSettings;
28319
+
28320
+ /**
28321
+ * Encodes the specified NodeSettings message. Does not implicitly {@link google.api.NodeSettings.verify|verify} messages.
28322
+ * @param message NodeSettings message or plain object to encode
28323
+ * @param [writer] Writer to encode to
28324
+ * @returns Writer
28325
+ */
28326
+ public static encode(message: google.api.INodeSettings, writer?: $protobuf.Writer): $protobuf.Writer;
28327
+
28328
+ /**
28329
+ * Encodes the specified NodeSettings message, length delimited. Does not implicitly {@link google.api.NodeSettings.verify|verify} messages.
28330
+ * @param message NodeSettings message or plain object to encode
28331
+ * @param [writer] Writer to encode to
28332
+ * @returns Writer
28333
+ */
28334
+ public static encodeDelimited(message: google.api.INodeSettings, writer?: $protobuf.Writer): $protobuf.Writer;
28335
+
28336
+ /**
28337
+ * Decodes a NodeSettings message from the specified reader or buffer.
28338
+ * @param reader Reader or buffer to decode from
28339
+ * @param [length] Message length if known beforehand
28340
+ * @returns NodeSettings
28341
+ * @throws {Error} If the payload is not a reader or valid buffer
28342
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28343
+ */
28344
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.NodeSettings;
28345
+
28346
+ /**
28347
+ * Decodes a NodeSettings message from the specified reader or buffer, length delimited.
28348
+ * @param reader Reader or buffer to decode from
28349
+ * @returns NodeSettings
28350
+ * @throws {Error} If the payload is not a reader or valid buffer
28351
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28352
+ */
28353
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.NodeSettings;
28354
+
28355
+ /**
28356
+ * Verifies a NodeSettings message.
28357
+ * @param message Plain object to verify
28358
+ * @returns `null` if valid, otherwise the reason why it is not
28359
+ */
28360
+ public static verify(message: { [k: string]: any }): (string|null);
28361
+
28362
+ /**
28363
+ * Creates a NodeSettings message from a plain object. Also converts values to their respective internal types.
28364
+ * @param object Plain object
28365
+ * @returns NodeSettings
28366
+ */
28367
+ public static fromObject(object: { [k: string]: any }): google.api.NodeSettings;
28368
+
28369
+ /**
28370
+ * Creates a plain object from a NodeSettings message. Also converts values to other types if specified.
28371
+ * @param message NodeSettings
28372
+ * @param [options] Conversion options
28373
+ * @returns Plain object
28374
+ */
28375
+ public static toObject(message: google.api.NodeSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
28376
+
28377
+ /**
28378
+ * Converts this NodeSettings to JSON.
28379
+ * @returns JSON object
28380
+ */
28381
+ public toJSON(): { [k: string]: any };
28382
+
28383
+ /**
28384
+ * Gets the default type url for NodeSettings
28385
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
28386
+ * @returns The default type url
28387
+ */
28388
+ public static getTypeUrl(typeUrlPrefix?: string): string;
28389
+ }
28390
+
28391
+ /** Properties of a DotnetSettings. */
28392
+ interface IDotnetSettings {
28393
+
28394
+ /** DotnetSettings common */
28395
+ common?: (google.api.ICommonLanguageSettings|null);
28396
+ }
28397
+
28398
+ /** Represents a DotnetSettings. */
28399
+ class DotnetSettings implements IDotnetSettings {
28400
+
28401
+ /**
28402
+ * Constructs a new DotnetSettings.
28403
+ * @param [properties] Properties to set
28404
+ */
28405
+ constructor(properties?: google.api.IDotnetSettings);
28406
+
28407
+ /** DotnetSettings common. */
28408
+ public common?: (google.api.ICommonLanguageSettings|null);
28409
+
28410
+ /**
28411
+ * Creates a new DotnetSettings instance using the specified properties.
28412
+ * @param [properties] Properties to set
28413
+ * @returns DotnetSettings instance
28414
+ */
28415
+ public static create(properties?: google.api.IDotnetSettings): google.api.DotnetSettings;
28416
+
28417
+ /**
28418
+ * Encodes the specified DotnetSettings message. Does not implicitly {@link google.api.DotnetSettings.verify|verify} messages.
28419
+ * @param message DotnetSettings message or plain object to encode
28420
+ * @param [writer] Writer to encode to
28421
+ * @returns Writer
28422
+ */
28423
+ public static encode(message: google.api.IDotnetSettings, writer?: $protobuf.Writer): $protobuf.Writer;
28424
+
28425
+ /**
28426
+ * Encodes the specified DotnetSettings message, length delimited. Does not implicitly {@link google.api.DotnetSettings.verify|verify} messages.
28427
+ * @param message DotnetSettings message or plain object to encode
28428
+ * @param [writer] Writer to encode to
28429
+ * @returns Writer
28430
+ */
28431
+ public static encodeDelimited(message: google.api.IDotnetSettings, writer?: $protobuf.Writer): $protobuf.Writer;
28432
+
28433
+ /**
28434
+ * Decodes a DotnetSettings message from the specified reader or buffer.
28435
+ * @param reader Reader or buffer to decode from
28436
+ * @param [length] Message length if known beforehand
28437
+ * @returns DotnetSettings
28438
+ * @throws {Error} If the payload is not a reader or valid buffer
28439
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28440
+ */
28441
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.DotnetSettings;
28442
+
28443
+ /**
28444
+ * Decodes a DotnetSettings message from the specified reader or buffer, length delimited.
28445
+ * @param reader Reader or buffer to decode from
28446
+ * @returns DotnetSettings
28447
+ * @throws {Error} If the payload is not a reader or valid buffer
28448
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28449
+ */
28450
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.DotnetSettings;
28451
+
28452
+ /**
28453
+ * Verifies a DotnetSettings message.
28454
+ * @param message Plain object to verify
28455
+ * @returns `null` if valid, otherwise the reason why it is not
28456
+ */
28457
+ public static verify(message: { [k: string]: any }): (string|null);
28458
+
28459
+ /**
28460
+ * Creates a DotnetSettings message from a plain object. Also converts values to their respective internal types.
28461
+ * @param object Plain object
28462
+ * @returns DotnetSettings
28463
+ */
28464
+ public static fromObject(object: { [k: string]: any }): google.api.DotnetSettings;
28465
+
28466
+ /**
28467
+ * Creates a plain object from a DotnetSettings message. Also converts values to other types if specified.
28468
+ * @param message DotnetSettings
28469
+ * @param [options] Conversion options
28470
+ * @returns Plain object
28471
+ */
28472
+ public static toObject(message: google.api.DotnetSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
28473
+
28474
+ /**
28475
+ * Converts this DotnetSettings to JSON.
28476
+ * @returns JSON object
28477
+ */
28478
+ public toJSON(): { [k: string]: any };
28479
+
28480
+ /**
28481
+ * Gets the default type url for DotnetSettings
28482
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
28483
+ * @returns The default type url
28484
+ */
28485
+ public static getTypeUrl(typeUrlPrefix?: string): string;
28486
+ }
28487
+
28488
+ /** Properties of a RubySettings. */
28489
+ interface IRubySettings {
28490
+
28491
+ /** RubySettings common */
28492
+ common?: (google.api.ICommonLanguageSettings|null);
28493
+ }
28494
+
28495
+ /** Represents a RubySettings. */
28496
+ class RubySettings implements IRubySettings {
28497
+
28498
+ /**
28499
+ * Constructs a new RubySettings.
28500
+ * @param [properties] Properties to set
28501
+ */
28502
+ constructor(properties?: google.api.IRubySettings);
28503
+
28504
+ /** RubySettings common. */
28505
+ public common?: (google.api.ICommonLanguageSettings|null);
28506
+
28507
+ /**
28508
+ * Creates a new RubySettings instance using the specified properties.
28509
+ * @param [properties] Properties to set
28510
+ * @returns RubySettings instance
28511
+ */
28512
+ public static create(properties?: google.api.IRubySettings): google.api.RubySettings;
28513
+
28514
+ /**
28515
+ * Encodes the specified RubySettings message. Does not implicitly {@link google.api.RubySettings.verify|verify} messages.
28516
+ * @param message RubySettings message or plain object to encode
28517
+ * @param [writer] Writer to encode to
28518
+ * @returns Writer
28519
+ */
28520
+ public static encode(message: google.api.IRubySettings, writer?: $protobuf.Writer): $protobuf.Writer;
28521
+
28522
+ /**
28523
+ * Encodes the specified RubySettings message, length delimited. Does not implicitly {@link google.api.RubySettings.verify|verify} messages.
28524
+ * @param message RubySettings message or plain object to encode
28525
+ * @param [writer] Writer to encode to
28526
+ * @returns Writer
28527
+ */
28528
+ public static encodeDelimited(message: google.api.IRubySettings, writer?: $protobuf.Writer): $protobuf.Writer;
28529
+
28530
+ /**
28531
+ * Decodes a RubySettings message from the specified reader or buffer.
28532
+ * @param reader Reader or buffer to decode from
28533
+ * @param [length] Message length if known beforehand
28534
+ * @returns RubySettings
28535
+ * @throws {Error} If the payload is not a reader or valid buffer
28536
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28537
+ */
28538
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.RubySettings;
28539
+
28540
+ /**
28541
+ * Decodes a RubySettings message from the specified reader or buffer, length delimited.
28542
+ * @param reader Reader or buffer to decode from
28543
+ * @returns RubySettings
28544
+ * @throws {Error} If the payload is not a reader or valid buffer
28545
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28546
+ */
28547
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.RubySettings;
28548
+
28549
+ /**
28550
+ * Verifies a RubySettings message.
28551
+ * @param message Plain object to verify
28552
+ * @returns `null` if valid, otherwise the reason why it is not
28553
+ */
28554
+ public static verify(message: { [k: string]: any }): (string|null);
28555
+
28556
+ /**
28557
+ * Creates a RubySettings message from a plain object. Also converts values to their respective internal types.
28558
+ * @param object Plain object
28559
+ * @returns RubySettings
28560
+ */
28561
+ public static fromObject(object: { [k: string]: any }): google.api.RubySettings;
28562
+
28563
+ /**
28564
+ * Creates a plain object from a RubySettings message. Also converts values to other types if specified.
28565
+ * @param message RubySettings
28566
+ * @param [options] Conversion options
28567
+ * @returns Plain object
28568
+ */
28569
+ public static toObject(message: google.api.RubySettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
28570
+
28571
+ /**
28572
+ * Converts this RubySettings to JSON.
28573
+ * @returns JSON object
28574
+ */
28575
+ public toJSON(): { [k: string]: any };
28576
+
28577
+ /**
28578
+ * Gets the default type url for RubySettings
28579
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
28580
+ * @returns The default type url
28581
+ */
28582
+ public static getTypeUrl(typeUrlPrefix?: string): string;
28583
+ }
28584
+
28585
+ /** Properties of a GoSettings. */
28586
+ interface IGoSettings {
28587
+
28588
+ /** GoSettings common */
28589
+ common?: (google.api.ICommonLanguageSettings|null);
28590
+ }
28591
+
28592
+ /** Represents a GoSettings. */
28593
+ class GoSettings implements IGoSettings {
28594
+
28595
+ /**
28596
+ * Constructs a new GoSettings.
28597
+ * @param [properties] Properties to set
28598
+ */
28599
+ constructor(properties?: google.api.IGoSettings);
28600
+
28601
+ /** GoSettings common. */
28602
+ public common?: (google.api.ICommonLanguageSettings|null);
28603
+
28604
+ /**
28605
+ * Creates a new GoSettings instance using the specified properties.
28606
+ * @param [properties] Properties to set
28607
+ * @returns GoSettings instance
28608
+ */
28609
+ public static create(properties?: google.api.IGoSettings): google.api.GoSettings;
28610
+
28611
+ /**
28612
+ * Encodes the specified GoSettings message. Does not implicitly {@link google.api.GoSettings.verify|verify} messages.
28613
+ * @param message GoSettings message or plain object to encode
28614
+ * @param [writer] Writer to encode to
28615
+ * @returns Writer
28616
+ */
28617
+ public static encode(message: google.api.IGoSettings, writer?: $protobuf.Writer): $protobuf.Writer;
28618
+
28619
+ /**
28620
+ * Encodes the specified GoSettings message, length delimited. Does not implicitly {@link google.api.GoSettings.verify|verify} messages.
28621
+ * @param message GoSettings message or plain object to encode
28622
+ * @param [writer] Writer to encode to
28623
+ * @returns Writer
28624
+ */
28625
+ public static encodeDelimited(message: google.api.IGoSettings, writer?: $protobuf.Writer): $protobuf.Writer;
28626
+
28627
+ /**
28628
+ * Decodes a GoSettings message from the specified reader or buffer.
28629
+ * @param reader Reader or buffer to decode from
28630
+ * @param [length] Message length if known beforehand
28631
+ * @returns GoSettings
28632
+ * @throws {Error} If the payload is not a reader or valid buffer
28633
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28634
+ */
28635
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.GoSettings;
28636
+
28637
+ /**
28638
+ * Decodes a GoSettings message from the specified reader or buffer, length delimited.
28639
+ * @param reader Reader or buffer to decode from
28640
+ * @returns GoSettings
28641
+ * @throws {Error} If the payload is not a reader or valid buffer
28642
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28643
+ */
28644
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.GoSettings;
28645
+
28646
+ /**
28647
+ * Verifies a GoSettings message.
28648
+ * @param message Plain object to verify
28649
+ * @returns `null` if valid, otherwise the reason why it is not
28650
+ */
28651
+ public static verify(message: { [k: string]: any }): (string|null);
28652
+
28653
+ /**
28654
+ * Creates a GoSettings message from a plain object. Also converts values to their respective internal types.
28655
+ * @param object Plain object
28656
+ * @returns GoSettings
28657
+ */
28658
+ public static fromObject(object: { [k: string]: any }): google.api.GoSettings;
28659
+
28660
+ /**
28661
+ * Creates a plain object from a GoSettings message. Also converts values to other types if specified.
28662
+ * @param message GoSettings
28663
+ * @param [options] Conversion options
28664
+ * @returns Plain object
28665
+ */
28666
+ public static toObject(message: google.api.GoSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
28667
+
28668
+ /**
28669
+ * Converts this GoSettings to JSON.
28670
+ * @returns JSON object
28671
+ */
28672
+ public toJSON(): { [k: string]: any };
28673
+
28674
+ /**
28675
+ * Gets the default type url for GoSettings
28676
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
28677
+ * @returns The default type url
28678
+ */
28679
+ public static getTypeUrl(typeUrlPrefix?: string): string;
28680
+ }
28681
+
28682
+ /** Properties of a MethodSettings. */
28683
+ interface IMethodSettings {
28684
+
28685
+ /** MethodSettings selector */
28686
+ selector?: (string|null);
28687
+
28688
+ /** MethodSettings longRunning */
28689
+ longRunning?: (google.api.MethodSettings.ILongRunning|null);
28690
+ }
28691
+
28692
+ /** Represents a MethodSettings. */
28693
+ class MethodSettings implements IMethodSettings {
28694
+
28695
+ /**
28696
+ * Constructs a new MethodSettings.
28697
+ * @param [properties] Properties to set
28698
+ */
28699
+ constructor(properties?: google.api.IMethodSettings);
28700
+
28701
+ /** MethodSettings selector. */
28702
+ public selector: string;
28703
+
28704
+ /** MethodSettings longRunning. */
28705
+ public longRunning?: (google.api.MethodSettings.ILongRunning|null);
28706
+
28707
+ /**
28708
+ * Creates a new MethodSettings instance using the specified properties.
28709
+ * @param [properties] Properties to set
28710
+ * @returns MethodSettings instance
28711
+ */
28712
+ public static create(properties?: google.api.IMethodSettings): google.api.MethodSettings;
28713
+
28714
+ /**
28715
+ * Encodes the specified MethodSettings message. Does not implicitly {@link google.api.MethodSettings.verify|verify} messages.
28716
+ * @param message MethodSettings message or plain object to encode
28717
+ * @param [writer] Writer to encode to
28718
+ * @returns Writer
28719
+ */
28720
+ public static encode(message: google.api.IMethodSettings, writer?: $protobuf.Writer): $protobuf.Writer;
28721
+
28722
+ /**
28723
+ * Encodes the specified MethodSettings message, length delimited. Does not implicitly {@link google.api.MethodSettings.verify|verify} messages.
28724
+ * @param message MethodSettings message or plain object to encode
28725
+ * @param [writer] Writer to encode to
28726
+ * @returns Writer
28727
+ */
28728
+ public static encodeDelimited(message: google.api.IMethodSettings, writer?: $protobuf.Writer): $protobuf.Writer;
28729
+
28730
+ /**
28731
+ * Decodes a MethodSettings message from the specified reader or buffer.
28732
+ * @param reader Reader or buffer to decode from
28733
+ * @param [length] Message length if known beforehand
28734
+ * @returns MethodSettings
28735
+ * @throws {Error} If the payload is not a reader or valid buffer
28736
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28737
+ */
28738
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.MethodSettings;
28739
+
28740
+ /**
28741
+ * Decodes a MethodSettings message from the specified reader or buffer, length delimited.
28742
+ * @param reader Reader or buffer to decode from
28743
+ * @returns MethodSettings
28744
+ * @throws {Error} If the payload is not a reader or valid buffer
28745
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28746
+ */
28747
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.MethodSettings;
28748
+
28749
+ /**
28750
+ * Verifies a MethodSettings message.
28751
+ * @param message Plain object to verify
28752
+ * @returns `null` if valid, otherwise the reason why it is not
28753
+ */
28754
+ public static verify(message: { [k: string]: any }): (string|null);
28755
+
28756
+ /**
28757
+ * Creates a MethodSettings message from a plain object. Also converts values to their respective internal types.
28758
+ * @param object Plain object
28759
+ * @returns MethodSettings
28760
+ */
28761
+ public static fromObject(object: { [k: string]: any }): google.api.MethodSettings;
28762
+
28763
+ /**
28764
+ * Creates a plain object from a MethodSettings message. Also converts values to other types if specified.
28765
+ * @param message MethodSettings
28766
+ * @param [options] Conversion options
28767
+ * @returns Plain object
28768
+ */
28769
+ public static toObject(message: google.api.MethodSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
28770
+
28771
+ /**
28772
+ * Converts this MethodSettings to JSON.
28773
+ * @returns JSON object
28774
+ */
28775
+ public toJSON(): { [k: string]: any };
28776
+
28777
+ /**
28778
+ * Gets the default type url for MethodSettings
28779
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
28780
+ * @returns The default type url
28781
+ */
28782
+ public static getTypeUrl(typeUrlPrefix?: string): string;
28783
+ }
28784
+
28785
+ namespace MethodSettings {
28786
+
28787
+ /** Properties of a LongRunning. */
28788
+ interface ILongRunning {
28789
+
28790
+ /** LongRunning initialPollDelay */
28791
+ initialPollDelay?: (google.protobuf.IDuration|null);
28792
+
28793
+ /** LongRunning pollDelayMultiplier */
28794
+ pollDelayMultiplier?: (number|null);
28795
+
28796
+ /** LongRunning maxPollDelay */
28797
+ maxPollDelay?: (google.protobuf.IDuration|null);
28798
+
28799
+ /** LongRunning totalPollTimeout */
28800
+ totalPollTimeout?: (google.protobuf.IDuration|null);
28801
+ }
28802
+
28803
+ /** Represents a LongRunning. */
28804
+ class LongRunning implements ILongRunning {
28805
+
28806
+ /**
28807
+ * Constructs a new LongRunning.
28808
+ * @param [properties] Properties to set
28809
+ */
28810
+ constructor(properties?: google.api.MethodSettings.ILongRunning);
28811
+
28812
+ /** LongRunning initialPollDelay. */
28813
+ public initialPollDelay?: (google.protobuf.IDuration|null);
28814
+
28815
+ /** LongRunning pollDelayMultiplier. */
28816
+ public pollDelayMultiplier: number;
28817
+
28818
+ /** LongRunning maxPollDelay. */
28819
+ public maxPollDelay?: (google.protobuf.IDuration|null);
28820
+
28821
+ /** LongRunning totalPollTimeout. */
28822
+ public totalPollTimeout?: (google.protobuf.IDuration|null);
28823
+
28824
+ /**
28825
+ * Creates a new LongRunning instance using the specified properties.
28826
+ * @param [properties] Properties to set
28827
+ * @returns LongRunning instance
28828
+ */
28829
+ public static create(properties?: google.api.MethodSettings.ILongRunning): google.api.MethodSettings.LongRunning;
28830
+
28831
+ /**
28832
+ * Encodes the specified LongRunning message. Does not implicitly {@link google.api.MethodSettings.LongRunning.verify|verify} messages.
28833
+ * @param message LongRunning message or plain object to encode
28834
+ * @param [writer] Writer to encode to
28835
+ * @returns Writer
28836
+ */
28837
+ public static encode(message: google.api.MethodSettings.ILongRunning, writer?: $protobuf.Writer): $protobuf.Writer;
28838
+
28839
+ /**
28840
+ * Encodes the specified LongRunning message, length delimited. Does not implicitly {@link google.api.MethodSettings.LongRunning.verify|verify} messages.
28841
+ * @param message LongRunning message or plain object to encode
28842
+ * @param [writer] Writer to encode to
28843
+ * @returns Writer
28844
+ */
28845
+ public static encodeDelimited(message: google.api.MethodSettings.ILongRunning, writer?: $protobuf.Writer): $protobuf.Writer;
28846
+
28847
+ /**
28848
+ * Decodes a LongRunning message from the specified reader or buffer.
28849
+ * @param reader Reader or buffer to decode from
28850
+ * @param [length] Message length if known beforehand
28851
+ * @returns LongRunning
28852
+ * @throws {Error} If the payload is not a reader or valid buffer
28853
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28854
+ */
28855
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.MethodSettings.LongRunning;
28856
+
28857
+ /**
28858
+ * Decodes a LongRunning message from the specified reader or buffer, length delimited.
28859
+ * @param reader Reader or buffer to decode from
28860
+ * @returns LongRunning
28861
+ * @throws {Error} If the payload is not a reader or valid buffer
28862
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28863
+ */
28864
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.MethodSettings.LongRunning;
28865
+
28866
+ /**
28867
+ * Verifies a LongRunning message.
28868
+ * @param message Plain object to verify
28869
+ * @returns `null` if valid, otherwise the reason why it is not
28870
+ */
28871
+ public static verify(message: { [k: string]: any }): (string|null);
28872
+
28873
+ /**
28874
+ * Creates a LongRunning message from a plain object. Also converts values to their respective internal types.
28875
+ * @param object Plain object
28876
+ * @returns LongRunning
28877
+ */
28878
+ public static fromObject(object: { [k: string]: any }): google.api.MethodSettings.LongRunning;
28879
+
28880
+ /**
28881
+ * Creates a plain object from a LongRunning message. Also converts values to other types if specified.
28882
+ * @param message LongRunning
28883
+ * @param [options] Conversion options
28884
+ * @returns Plain object
28885
+ */
28886
+ public static toObject(message: google.api.MethodSettings.LongRunning, options?: $protobuf.IConversionOptions): { [k: string]: any };
28887
+
28888
+ /**
28889
+ * Converts this LongRunning to JSON.
28890
+ * @returns JSON object
28891
+ */
28892
+ public toJSON(): { [k: string]: any };
28893
+
28894
+ /**
28895
+ * Gets the default type url for LongRunning
28896
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
28897
+ * @returns The default type url
28898
+ */
28899
+ public static getTypeUrl(typeUrlPrefix?: string): string;
28900
+ }
28901
+ }
28902
+
28903
+ /** ClientLibraryOrganization enum. */
28904
+ enum ClientLibraryOrganization {
28905
+ CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED = 0,
28906
+ CLOUD = 1,
28907
+ ADS = 2,
28908
+ PHOTOS = 3,
28909
+ STREET_VIEW = 4
28910
+ }
28911
+
28912
+ /** ClientLibraryDestination enum. */
28913
+ enum ClientLibraryDestination {
28914
+ CLIENT_LIBRARY_DESTINATION_UNSPECIFIED = 0,
28915
+ GITHUB = 10,
28916
+ PACKAGE_MANAGER = 20
28917
+ }
28918
+
28919
+ /** LaunchStage enum. */
28920
+ enum LaunchStage {
28921
+ LAUNCH_STAGE_UNSPECIFIED = 0,
28922
+ UNIMPLEMENTED = 6,
28923
+ PRELAUNCH = 7,
28924
+ EARLY_ACCESS = 1,
28925
+ ALPHA = 2,
28926
+ BETA = 3,
28927
+ GA = 4,
28928
+ DEPRECATED = 5
28929
+ }
28930
+
27489
28931
  /** FieldBehavior enum. */
27490
28932
  enum FieldBehavior {
27491
28933
  FIELD_BEHAVIOR_UNSPECIFIED = 0,
@@ -29592,6 +31034,9 @@ export namespace google {
29592
31034
  /** MessageOptions mapEntry */
29593
31035
  mapEntry?: (boolean|null);
29594
31036
 
31037
+ /** MessageOptions deprecatedLegacyJsonFieldConflicts */
31038
+ deprecatedLegacyJsonFieldConflicts?: (boolean|null);
31039
+
29595
31040
  /** MessageOptions uninterpretedOption */
29596
31041
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
29597
31042
 
@@ -29620,6 +31065,9 @@ export namespace google {
29620
31065
  /** MessageOptions mapEntry. */
29621
31066
  public mapEntry: boolean;
29622
31067
 
31068
+ /** MessageOptions deprecatedLegacyJsonFieldConflicts. */
31069
+ public deprecatedLegacyJsonFieldConflicts: boolean;
31070
+
29623
31071
  /** MessageOptions uninterpretedOption. */
29624
31072
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
29625
31073
 
@@ -29725,6 +31173,15 @@ export namespace google {
29725
31173
  /** FieldOptions weak */
29726
31174
  weak?: (boolean|null);
29727
31175
 
31176
+ /** FieldOptions debugRedact */
31177
+ debugRedact?: (boolean|null);
31178
+
31179
+ /** FieldOptions retention */
31180
+ retention?: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention|null);
31181
+
31182
+ /** FieldOptions target */
31183
+ target?: (google.protobuf.FieldOptions.OptionTargetType|keyof typeof google.protobuf.FieldOptions.OptionTargetType|null);
31184
+
29728
31185
  /** FieldOptions uninterpretedOption */
29729
31186
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
29730
31187
 
@@ -29765,6 +31222,15 @@ export namespace google {
29765
31222
  /** FieldOptions weak. */
29766
31223
  public weak: boolean;
29767
31224
 
31225
+ /** FieldOptions debugRedact. */
31226
+ public debugRedact: boolean;
31227
+
31228
+ /** FieldOptions retention. */
31229
+ public retention: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention);
31230
+
31231
+ /** FieldOptions target. */
31232
+ public target: (google.protobuf.FieldOptions.OptionTargetType|keyof typeof google.protobuf.FieldOptions.OptionTargetType);
31233
+
29768
31234
  /** FieldOptions uninterpretedOption. */
29769
31235
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
29770
31236
 
@@ -29861,6 +31327,27 @@ export namespace google {
29861
31327
  JS_STRING = 1,
29862
31328
  JS_NUMBER = 2
29863
31329
  }
31330
+
31331
+ /** OptionRetention enum. */
31332
+ enum OptionRetention {
31333
+ RETENTION_UNKNOWN = 0,
31334
+ RETENTION_RUNTIME = 1,
31335
+ RETENTION_SOURCE = 2
31336
+ }
31337
+
31338
+ /** OptionTargetType enum. */
31339
+ enum OptionTargetType {
31340
+ TARGET_TYPE_UNKNOWN = 0,
31341
+ TARGET_TYPE_FILE = 1,
31342
+ TARGET_TYPE_EXTENSION_RANGE = 2,
31343
+ TARGET_TYPE_MESSAGE = 3,
31344
+ TARGET_TYPE_FIELD = 4,
31345
+ TARGET_TYPE_ONEOF = 5,
31346
+ TARGET_TYPE_ENUM = 6,
31347
+ TARGET_TYPE_ENUM_ENTRY = 7,
31348
+ TARGET_TYPE_SERVICE = 8,
31349
+ TARGET_TYPE_METHOD = 9
31350
+ }
29864
31351
  }
29865
31352
 
29866
31353
  /** Properties of an OneofOptions. */
@@ -29969,6 +31456,9 @@ export namespace google {
29969
31456
  /** EnumOptions deprecated */
29970
31457
  deprecated?: (boolean|null);
29971
31458
 
31459
+ /** EnumOptions deprecatedLegacyJsonFieldConflicts */
31460
+ deprecatedLegacyJsonFieldConflicts?: (boolean|null);
31461
+
29972
31462
  /** EnumOptions uninterpretedOption */
29973
31463
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
29974
31464
  }
@@ -29988,6 +31478,9 @@ export namespace google {
29988
31478
  /** EnumOptions deprecated. */
29989
31479
  public deprecated: boolean;
29990
31480
 
31481
+ /** EnumOptions deprecatedLegacyJsonFieldConflicts. */
31482
+ public deprecatedLegacyJsonFieldConflicts: boolean;
31483
+
29991
31484
  /** EnumOptions uninterpretedOption. */
29992
31485
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
29993
31486
 
@@ -31097,206 +32590,206 @@ export namespace google {
31097
32590
  }
31098
32591
  }
31099
32592
 
31100
- /** Properties of a Timestamp. */
31101
- interface ITimestamp {
32593
+ /** Properties of a Duration. */
32594
+ interface IDuration {
31102
32595
 
31103
- /** Timestamp seconds */
32596
+ /** Duration seconds */
31104
32597
  seconds?: (number|Long|string|null);
31105
32598
 
31106
- /** Timestamp nanos */
32599
+ /** Duration nanos */
31107
32600
  nanos?: (number|null);
31108
32601
  }
31109
32602
 
31110
- /** Represents a Timestamp. */
31111
- class Timestamp implements ITimestamp {
32603
+ /** Represents a Duration. */
32604
+ class Duration implements IDuration {
31112
32605
 
31113
32606
  /**
31114
- * Constructs a new Timestamp.
32607
+ * Constructs a new Duration.
31115
32608
  * @param [properties] Properties to set
31116
32609
  */
31117
- constructor(properties?: google.protobuf.ITimestamp);
32610
+ constructor(properties?: google.protobuf.IDuration);
31118
32611
 
31119
- /** Timestamp seconds. */
32612
+ /** Duration seconds. */
31120
32613
  public seconds: (number|Long|string);
31121
32614
 
31122
- /** Timestamp nanos. */
32615
+ /** Duration nanos. */
31123
32616
  public nanos: number;
31124
32617
 
31125
32618
  /**
31126
- * Creates a new Timestamp instance using the specified properties.
32619
+ * Creates a new Duration instance using the specified properties.
31127
32620
  * @param [properties] Properties to set
31128
- * @returns Timestamp instance
32621
+ * @returns Duration instance
31129
32622
  */
31130
- public static create(properties?: google.protobuf.ITimestamp): google.protobuf.Timestamp;
32623
+ public static create(properties?: google.protobuf.IDuration): google.protobuf.Duration;
31131
32624
 
31132
32625
  /**
31133
- * Encodes the specified Timestamp message. Does not implicitly {@link google.protobuf.Timestamp.verify|verify} messages.
31134
- * @param message Timestamp message or plain object to encode
32626
+ * Encodes the specified Duration message. Does not implicitly {@link google.protobuf.Duration.verify|verify} messages.
32627
+ * @param message Duration message or plain object to encode
31135
32628
  * @param [writer] Writer to encode to
31136
32629
  * @returns Writer
31137
32630
  */
31138
- public static encode(message: google.protobuf.ITimestamp, writer?: $protobuf.Writer): $protobuf.Writer;
32631
+ public static encode(message: google.protobuf.IDuration, writer?: $protobuf.Writer): $protobuf.Writer;
31139
32632
 
31140
32633
  /**
31141
- * Encodes the specified Timestamp message, length delimited. Does not implicitly {@link google.protobuf.Timestamp.verify|verify} messages.
31142
- * @param message Timestamp message or plain object to encode
32634
+ * Encodes the specified Duration message, length delimited. Does not implicitly {@link google.protobuf.Duration.verify|verify} messages.
32635
+ * @param message Duration message or plain object to encode
31143
32636
  * @param [writer] Writer to encode to
31144
32637
  * @returns Writer
31145
32638
  */
31146
- public static encodeDelimited(message: google.protobuf.ITimestamp, writer?: $protobuf.Writer): $protobuf.Writer;
32639
+ public static encodeDelimited(message: google.protobuf.IDuration, writer?: $protobuf.Writer): $protobuf.Writer;
31147
32640
 
31148
32641
  /**
31149
- * Decodes a Timestamp message from the specified reader or buffer.
32642
+ * Decodes a Duration message from the specified reader or buffer.
31150
32643
  * @param reader Reader or buffer to decode from
31151
32644
  * @param [length] Message length if known beforehand
31152
- * @returns Timestamp
32645
+ * @returns Duration
31153
32646
  * @throws {Error} If the payload is not a reader or valid buffer
31154
32647
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
31155
32648
  */
31156
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Timestamp;
32649
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Duration;
31157
32650
 
31158
32651
  /**
31159
- * Decodes a Timestamp message from the specified reader or buffer, length delimited.
32652
+ * Decodes a Duration message from the specified reader or buffer, length delimited.
31160
32653
  * @param reader Reader or buffer to decode from
31161
- * @returns Timestamp
32654
+ * @returns Duration
31162
32655
  * @throws {Error} If the payload is not a reader or valid buffer
31163
32656
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
31164
32657
  */
31165
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.Timestamp;
32658
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.Duration;
31166
32659
 
31167
32660
  /**
31168
- * Verifies a Timestamp message.
32661
+ * Verifies a Duration message.
31169
32662
  * @param message Plain object to verify
31170
32663
  * @returns `null` if valid, otherwise the reason why it is not
31171
32664
  */
31172
32665
  public static verify(message: { [k: string]: any }): (string|null);
31173
32666
 
31174
32667
  /**
31175
- * Creates a Timestamp message from a plain object. Also converts values to their respective internal types.
32668
+ * Creates a Duration message from a plain object. Also converts values to their respective internal types.
31176
32669
  * @param object Plain object
31177
- * @returns Timestamp
32670
+ * @returns Duration
31178
32671
  */
31179
- public static fromObject(object: { [k: string]: any }): google.protobuf.Timestamp;
32672
+ public static fromObject(object: { [k: string]: any }): google.protobuf.Duration;
31180
32673
 
31181
32674
  /**
31182
- * Creates a plain object from a Timestamp message. Also converts values to other types if specified.
31183
- * @param message Timestamp
32675
+ * Creates a plain object from a Duration message. Also converts values to other types if specified.
32676
+ * @param message Duration
31184
32677
  * @param [options] Conversion options
31185
32678
  * @returns Plain object
31186
32679
  */
31187
- public static toObject(message: google.protobuf.Timestamp, options?: $protobuf.IConversionOptions): { [k: string]: any };
32680
+ public static toObject(message: google.protobuf.Duration, options?: $protobuf.IConversionOptions): { [k: string]: any };
31188
32681
 
31189
32682
  /**
31190
- * Converts this Timestamp to JSON.
32683
+ * Converts this Duration to JSON.
31191
32684
  * @returns JSON object
31192
32685
  */
31193
32686
  public toJSON(): { [k: string]: any };
31194
32687
 
31195
32688
  /**
31196
- * Gets the default type url for Timestamp
32689
+ * Gets the default type url for Duration
31197
32690
  * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
31198
32691
  * @returns The default type url
31199
32692
  */
31200
32693
  public static getTypeUrl(typeUrlPrefix?: string): string;
31201
32694
  }
31202
32695
 
31203
- /** Properties of a Duration. */
31204
- interface IDuration {
32696
+ /** Properties of a Timestamp. */
32697
+ interface ITimestamp {
31205
32698
 
31206
- /** Duration seconds */
32699
+ /** Timestamp seconds */
31207
32700
  seconds?: (number|Long|string|null);
31208
32701
 
31209
- /** Duration nanos */
32702
+ /** Timestamp nanos */
31210
32703
  nanos?: (number|null);
31211
32704
  }
31212
32705
 
31213
- /** Represents a Duration. */
31214
- class Duration implements IDuration {
32706
+ /** Represents a Timestamp. */
32707
+ class Timestamp implements ITimestamp {
31215
32708
 
31216
32709
  /**
31217
- * Constructs a new Duration.
32710
+ * Constructs a new Timestamp.
31218
32711
  * @param [properties] Properties to set
31219
32712
  */
31220
- constructor(properties?: google.protobuf.IDuration);
32713
+ constructor(properties?: google.protobuf.ITimestamp);
31221
32714
 
31222
- /** Duration seconds. */
32715
+ /** Timestamp seconds. */
31223
32716
  public seconds: (number|Long|string);
31224
32717
 
31225
- /** Duration nanos. */
32718
+ /** Timestamp nanos. */
31226
32719
  public nanos: number;
31227
32720
 
31228
32721
  /**
31229
- * Creates a new Duration instance using the specified properties.
32722
+ * Creates a new Timestamp instance using the specified properties.
31230
32723
  * @param [properties] Properties to set
31231
- * @returns Duration instance
32724
+ * @returns Timestamp instance
31232
32725
  */
31233
- public static create(properties?: google.protobuf.IDuration): google.protobuf.Duration;
32726
+ public static create(properties?: google.protobuf.ITimestamp): google.protobuf.Timestamp;
31234
32727
 
31235
32728
  /**
31236
- * Encodes the specified Duration message. Does not implicitly {@link google.protobuf.Duration.verify|verify} messages.
31237
- * @param message Duration message or plain object to encode
32729
+ * Encodes the specified Timestamp message. Does not implicitly {@link google.protobuf.Timestamp.verify|verify} messages.
32730
+ * @param message Timestamp message or plain object to encode
31238
32731
  * @param [writer] Writer to encode to
31239
32732
  * @returns Writer
31240
32733
  */
31241
- public static encode(message: google.protobuf.IDuration, writer?: $protobuf.Writer): $protobuf.Writer;
32734
+ public static encode(message: google.protobuf.ITimestamp, writer?: $protobuf.Writer): $protobuf.Writer;
31242
32735
 
31243
32736
  /**
31244
- * Encodes the specified Duration message, length delimited. Does not implicitly {@link google.protobuf.Duration.verify|verify} messages.
31245
- * @param message Duration message or plain object to encode
32737
+ * Encodes the specified Timestamp message, length delimited. Does not implicitly {@link google.protobuf.Timestamp.verify|verify} messages.
32738
+ * @param message Timestamp message or plain object to encode
31246
32739
  * @param [writer] Writer to encode to
31247
32740
  * @returns Writer
31248
32741
  */
31249
- public static encodeDelimited(message: google.protobuf.IDuration, writer?: $protobuf.Writer): $protobuf.Writer;
32742
+ public static encodeDelimited(message: google.protobuf.ITimestamp, writer?: $protobuf.Writer): $protobuf.Writer;
31250
32743
 
31251
32744
  /**
31252
- * Decodes a Duration message from the specified reader or buffer.
32745
+ * Decodes a Timestamp message from the specified reader or buffer.
31253
32746
  * @param reader Reader or buffer to decode from
31254
32747
  * @param [length] Message length if known beforehand
31255
- * @returns Duration
32748
+ * @returns Timestamp
31256
32749
  * @throws {Error} If the payload is not a reader or valid buffer
31257
32750
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
31258
32751
  */
31259
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Duration;
32752
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Timestamp;
31260
32753
 
31261
32754
  /**
31262
- * Decodes a Duration message from the specified reader or buffer, length delimited.
32755
+ * Decodes a Timestamp message from the specified reader or buffer, length delimited.
31263
32756
  * @param reader Reader or buffer to decode from
31264
- * @returns Duration
32757
+ * @returns Timestamp
31265
32758
  * @throws {Error} If the payload is not a reader or valid buffer
31266
32759
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
31267
32760
  */
31268
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.Duration;
32761
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.Timestamp;
31269
32762
 
31270
32763
  /**
31271
- * Verifies a Duration message.
32764
+ * Verifies a Timestamp message.
31272
32765
  * @param message Plain object to verify
31273
32766
  * @returns `null` if valid, otherwise the reason why it is not
31274
32767
  */
31275
32768
  public static verify(message: { [k: string]: any }): (string|null);
31276
32769
 
31277
32770
  /**
31278
- * Creates a Duration message from a plain object. Also converts values to their respective internal types.
32771
+ * Creates a Timestamp message from a plain object. Also converts values to their respective internal types.
31279
32772
  * @param object Plain object
31280
- * @returns Duration
32773
+ * @returns Timestamp
31281
32774
  */
31282
- public static fromObject(object: { [k: string]: any }): google.protobuf.Duration;
32775
+ public static fromObject(object: { [k: string]: any }): google.protobuf.Timestamp;
31283
32776
 
31284
32777
  /**
31285
- * Creates a plain object from a Duration message. Also converts values to other types if specified.
31286
- * @param message Duration
32778
+ * Creates a plain object from a Timestamp message. Also converts values to other types if specified.
32779
+ * @param message Timestamp
31287
32780
  * @param [options] Conversion options
31288
32781
  * @returns Plain object
31289
32782
  */
31290
- public static toObject(message: google.protobuf.Duration, options?: $protobuf.IConversionOptions): { [k: string]: any };
32783
+ public static toObject(message: google.protobuf.Timestamp, options?: $protobuf.IConversionOptions): { [k: string]: any };
31291
32784
 
31292
32785
  /**
31293
- * Converts this Duration to JSON.
32786
+ * Converts this Timestamp to JSON.
31294
32787
  * @returns JSON object
31295
32788
  */
31296
32789
  public toJSON(): { [k: string]: any };
31297
32790
 
31298
32791
  /**
31299
- * Gets the default type url for Duration
32792
+ * Gets the default type url for Timestamp
31300
32793
  * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
31301
32794
  * @returns The default type url
31302
32795
  */