@google-cloud/dlp 4.2.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.
@@ -1,4 +1,4 @@
1
- // Copyright 2022 Google LLC
1
+ // Copyright 2023 Google LLC
2
2
  //
3
3
  // Licensed under the Apache License, Version 2.0 (the "License");
4
4
  // you may not use this file except in compliance with the License.
@@ -861,6 +861,109 @@ export namespace google {
861
861
  public static getTypeUrl(typeUrlPrefix?: string): string;
862
862
  }
863
863
 
864
+ /** Properties of an ExcludeByHotword. */
865
+ interface IExcludeByHotword {
866
+
867
+ /** ExcludeByHotword hotwordRegex */
868
+ hotwordRegex?: (google.privacy.dlp.v2.CustomInfoType.IRegex|null);
869
+
870
+ /** ExcludeByHotword proximity */
871
+ proximity?: (google.privacy.dlp.v2.CustomInfoType.DetectionRule.IProximity|null);
872
+ }
873
+
874
+ /** Represents an ExcludeByHotword. */
875
+ class ExcludeByHotword implements IExcludeByHotword {
876
+
877
+ /**
878
+ * Constructs a new ExcludeByHotword.
879
+ * @param [properties] Properties to set
880
+ */
881
+ constructor(properties?: google.privacy.dlp.v2.IExcludeByHotword);
882
+
883
+ /** ExcludeByHotword hotwordRegex. */
884
+ public hotwordRegex?: (google.privacy.dlp.v2.CustomInfoType.IRegex|null);
885
+
886
+ /** ExcludeByHotword proximity. */
887
+ public proximity?: (google.privacy.dlp.v2.CustomInfoType.DetectionRule.IProximity|null);
888
+
889
+ /**
890
+ * Creates a new ExcludeByHotword instance using the specified properties.
891
+ * @param [properties] Properties to set
892
+ * @returns ExcludeByHotword instance
893
+ */
894
+ public static create(properties?: google.privacy.dlp.v2.IExcludeByHotword): google.privacy.dlp.v2.ExcludeByHotword;
895
+
896
+ /**
897
+ * Encodes the specified ExcludeByHotword message. Does not implicitly {@link google.privacy.dlp.v2.ExcludeByHotword.verify|verify} messages.
898
+ * @param message ExcludeByHotword message or plain object to encode
899
+ * @param [writer] Writer to encode to
900
+ * @returns Writer
901
+ */
902
+ public static encode(message: google.privacy.dlp.v2.IExcludeByHotword, writer?: $protobuf.Writer): $protobuf.Writer;
903
+
904
+ /**
905
+ * Encodes the specified ExcludeByHotword message, length delimited. Does not implicitly {@link google.privacy.dlp.v2.ExcludeByHotword.verify|verify} messages.
906
+ * @param message ExcludeByHotword message or plain object to encode
907
+ * @param [writer] Writer to encode to
908
+ * @returns Writer
909
+ */
910
+ public static encodeDelimited(message: google.privacy.dlp.v2.IExcludeByHotword, writer?: $protobuf.Writer): $protobuf.Writer;
911
+
912
+ /**
913
+ * Decodes an ExcludeByHotword message from the specified reader or buffer.
914
+ * @param reader Reader or buffer to decode from
915
+ * @param [length] Message length if known beforehand
916
+ * @returns ExcludeByHotword
917
+ * @throws {Error} If the payload is not a reader or valid buffer
918
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
919
+ */
920
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.privacy.dlp.v2.ExcludeByHotword;
921
+
922
+ /**
923
+ * Decodes an ExcludeByHotword message from the specified reader or buffer, length delimited.
924
+ * @param reader Reader or buffer to decode from
925
+ * @returns ExcludeByHotword
926
+ * @throws {Error} If the payload is not a reader or valid buffer
927
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
928
+ */
929
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.privacy.dlp.v2.ExcludeByHotword;
930
+
931
+ /**
932
+ * Verifies an ExcludeByHotword message.
933
+ * @param message Plain object to verify
934
+ * @returns `null` if valid, otherwise the reason why it is not
935
+ */
936
+ public static verify(message: { [k: string]: any }): (string|null);
937
+
938
+ /**
939
+ * Creates an ExcludeByHotword message from a plain object. Also converts values to their respective internal types.
940
+ * @param object Plain object
941
+ * @returns ExcludeByHotword
942
+ */
943
+ public static fromObject(object: { [k: string]: any }): google.privacy.dlp.v2.ExcludeByHotword;
944
+
945
+ /**
946
+ * Creates a plain object from an ExcludeByHotword message. Also converts values to other types if specified.
947
+ * @param message ExcludeByHotword
948
+ * @param [options] Conversion options
949
+ * @returns Plain object
950
+ */
951
+ public static toObject(message: google.privacy.dlp.v2.ExcludeByHotword, options?: $protobuf.IConversionOptions): { [k: string]: any };
952
+
953
+ /**
954
+ * Converts this ExcludeByHotword to JSON.
955
+ * @returns JSON object
956
+ */
957
+ public toJSON(): { [k: string]: any };
958
+
959
+ /**
960
+ * Gets the default type url for ExcludeByHotword
961
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
962
+ * @returns The default type url
963
+ */
964
+ public static getTypeUrl(typeUrlPrefix?: string): string;
965
+ }
966
+
864
967
  /** Properties of an ExclusionRule. */
865
968
  interface IExclusionRule {
866
969
 
@@ -873,6 +976,9 @@ export namespace google {
873
976
  /** ExclusionRule excludeInfoTypes */
874
977
  excludeInfoTypes?: (google.privacy.dlp.v2.IExcludeInfoTypes|null);
875
978
 
979
+ /** ExclusionRule excludeByHotword */
980
+ excludeByHotword?: (google.privacy.dlp.v2.IExcludeByHotword|null);
981
+
876
982
  /** ExclusionRule matchingType */
877
983
  matchingType?: (google.privacy.dlp.v2.MatchingType|keyof typeof google.privacy.dlp.v2.MatchingType|null);
878
984
  }
@@ -895,11 +1001,14 @@ export namespace google {
895
1001
  /** ExclusionRule excludeInfoTypes. */
896
1002
  public excludeInfoTypes?: (google.privacy.dlp.v2.IExcludeInfoTypes|null);
897
1003
 
1004
+ /** ExclusionRule excludeByHotword. */
1005
+ public excludeByHotword?: (google.privacy.dlp.v2.IExcludeByHotword|null);
1006
+
898
1007
  /** ExclusionRule matchingType. */
899
1008
  public matchingType: (google.privacy.dlp.v2.MatchingType|keyof typeof google.privacy.dlp.v2.MatchingType);
900
1009
 
901
1010
  /** ExclusionRule type. */
902
- public type?: ("dictionary"|"regex"|"excludeInfoTypes");
1011
+ public type?: ("dictionary"|"regex"|"excludeInfoTypes"|"excludeByHotword");
903
1012
 
904
1013
  /**
905
1014
  * Creates a new ExclusionRule instance using the specified properties.
@@ -5549,7 +5658,8 @@ export namespace google {
5549
5658
  UNITED_STATES = 37,
5550
5659
  URUGUAY = 38,
5551
5660
  VENEZUELA = 39,
5552
- INTERNAL = 40
5661
+ INTERNAL = 40,
5662
+ NEW_ZEALAND = 41
5553
5663
  }
5554
5664
 
5555
5665
  /** IndustryCategory enum. */
@@ -27376,334 +27486,1776 @@ export namespace google {
27376
27486
  public static getTypeUrl(typeUrlPrefix?: string): string;
27377
27487
  }
27378
27488
 
27379
- /** FieldBehavior enum. */
27380
- enum FieldBehavior {
27381
- FIELD_BEHAVIOR_UNSPECIFIED = 0,
27382
- OPTIONAL = 1,
27383
- REQUIRED = 2,
27384
- OUTPUT_ONLY = 3,
27385
- INPUT_ONLY = 4,
27386
- IMMUTABLE = 5,
27387
- UNORDERED_LIST = 6,
27388
- NON_EMPTY_DEFAULT = 7
27389
- }
27390
-
27391
- /** Properties of a ResourceDescriptor. */
27392
- interface IResourceDescriptor {
27393
-
27394
- /** ResourceDescriptor type */
27395
- type?: (string|null);
27396
-
27397
- /** ResourceDescriptor pattern */
27398
- pattern?: (string[]|null);
27399
-
27400
- /** ResourceDescriptor nameField */
27401
- nameField?: (string|null);
27402
-
27403
- /** ResourceDescriptor history */
27404
- history?: (google.api.ResourceDescriptor.History|keyof typeof google.api.ResourceDescriptor.History|null);
27405
-
27406
- /** ResourceDescriptor plural */
27407
- plural?: (string|null);
27489
+ /** Properties of a CommonLanguageSettings. */
27490
+ interface ICommonLanguageSettings {
27408
27491
 
27409
- /** ResourceDescriptor singular */
27410
- singular?: (string|null);
27492
+ /** CommonLanguageSettings referenceDocsUri */
27493
+ referenceDocsUri?: (string|null);
27411
27494
 
27412
- /** ResourceDescriptor style */
27413
- style?: (google.api.ResourceDescriptor.Style[]|null);
27495
+ /** CommonLanguageSettings destinations */
27496
+ destinations?: (google.api.ClientLibraryDestination[]|null);
27414
27497
  }
27415
27498
 
27416
- /** Represents a ResourceDescriptor. */
27417
- class ResourceDescriptor implements IResourceDescriptor {
27499
+ /** Represents a CommonLanguageSettings. */
27500
+ class CommonLanguageSettings implements ICommonLanguageSettings {
27418
27501
 
27419
27502
  /**
27420
- * Constructs a new ResourceDescriptor.
27503
+ * Constructs a new CommonLanguageSettings.
27421
27504
  * @param [properties] Properties to set
27422
27505
  */
27423
- constructor(properties?: google.api.IResourceDescriptor);
27424
-
27425
- /** ResourceDescriptor type. */
27426
- public type: string;
27427
-
27428
- /** ResourceDescriptor pattern. */
27429
- public pattern: string[];
27430
-
27431
- /** ResourceDescriptor nameField. */
27432
- public nameField: string;
27433
-
27434
- /** ResourceDescriptor history. */
27435
- public history: (google.api.ResourceDescriptor.History|keyof typeof google.api.ResourceDescriptor.History);
27506
+ constructor(properties?: google.api.ICommonLanguageSettings);
27436
27507
 
27437
- /** ResourceDescriptor plural. */
27438
- public plural: string;
27439
-
27440
- /** ResourceDescriptor singular. */
27441
- public singular: string;
27508
+ /** CommonLanguageSettings referenceDocsUri. */
27509
+ public referenceDocsUri: string;
27442
27510
 
27443
- /** ResourceDescriptor style. */
27444
- public style: google.api.ResourceDescriptor.Style[];
27511
+ /** CommonLanguageSettings destinations. */
27512
+ public destinations: google.api.ClientLibraryDestination[];
27445
27513
 
27446
27514
  /**
27447
- * Creates a new ResourceDescriptor instance using the specified properties.
27515
+ * Creates a new CommonLanguageSettings instance using the specified properties.
27448
27516
  * @param [properties] Properties to set
27449
- * @returns ResourceDescriptor instance
27517
+ * @returns CommonLanguageSettings instance
27450
27518
  */
27451
- public static create(properties?: google.api.IResourceDescriptor): google.api.ResourceDescriptor;
27519
+ public static create(properties?: google.api.ICommonLanguageSettings): google.api.CommonLanguageSettings;
27452
27520
 
27453
27521
  /**
27454
- * Encodes the specified ResourceDescriptor message. Does not implicitly {@link google.api.ResourceDescriptor.verify|verify} messages.
27455
- * @param message ResourceDescriptor message or plain object to encode
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
27456
27524
  * @param [writer] Writer to encode to
27457
27525
  * @returns Writer
27458
27526
  */
27459
- public static encode(message: google.api.IResourceDescriptor, writer?: $protobuf.Writer): $protobuf.Writer;
27527
+ public static encode(message: google.api.ICommonLanguageSettings, writer?: $protobuf.Writer): $protobuf.Writer;
27460
27528
 
27461
27529
  /**
27462
- * Encodes the specified ResourceDescriptor message, length delimited. Does not implicitly {@link google.api.ResourceDescriptor.verify|verify} messages.
27463
- * @param message ResourceDescriptor message or plain object to encode
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
27464
27532
  * @param [writer] Writer to encode to
27465
27533
  * @returns Writer
27466
27534
  */
27467
- public static encodeDelimited(message: google.api.IResourceDescriptor, writer?: $protobuf.Writer): $protobuf.Writer;
27535
+ public static encodeDelimited(message: google.api.ICommonLanguageSettings, writer?: $protobuf.Writer): $protobuf.Writer;
27468
27536
 
27469
27537
  /**
27470
- * Decodes a ResourceDescriptor message from the specified reader or buffer.
27538
+ * Decodes a CommonLanguageSettings message from the specified reader or buffer.
27471
27539
  * @param reader Reader or buffer to decode from
27472
27540
  * @param [length] Message length if known beforehand
27473
- * @returns ResourceDescriptor
27541
+ * @returns CommonLanguageSettings
27474
27542
  * @throws {Error} If the payload is not a reader or valid buffer
27475
27543
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
27476
27544
  */
27477
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.ResourceDescriptor;
27545
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.CommonLanguageSettings;
27478
27546
 
27479
27547
  /**
27480
- * Decodes a ResourceDescriptor message from the specified reader or buffer, length delimited.
27548
+ * Decodes a CommonLanguageSettings message from the specified reader or buffer, length delimited.
27481
27549
  * @param reader Reader or buffer to decode from
27482
- * @returns ResourceDescriptor
27550
+ * @returns CommonLanguageSettings
27483
27551
  * @throws {Error} If the payload is not a reader or valid buffer
27484
27552
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
27485
27553
  */
27486
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.ResourceDescriptor;
27554
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.CommonLanguageSettings;
27487
27555
 
27488
27556
  /**
27489
- * Verifies a ResourceDescriptor message.
27557
+ * Verifies a CommonLanguageSettings message.
27490
27558
  * @param message Plain object to verify
27491
27559
  * @returns `null` if valid, otherwise the reason why it is not
27492
27560
  */
27493
27561
  public static verify(message: { [k: string]: any }): (string|null);
27494
27562
 
27495
27563
  /**
27496
- * Creates a ResourceDescriptor message from a plain object. Also converts values to their respective internal types.
27564
+ * Creates a CommonLanguageSettings message from a plain object. Also converts values to their respective internal types.
27497
27565
  * @param object Plain object
27498
- * @returns ResourceDescriptor
27566
+ * @returns CommonLanguageSettings
27499
27567
  */
27500
- public static fromObject(object: { [k: string]: any }): google.api.ResourceDescriptor;
27568
+ public static fromObject(object: { [k: string]: any }): google.api.CommonLanguageSettings;
27501
27569
 
27502
27570
  /**
27503
- * Creates a plain object from a ResourceDescriptor message. Also converts values to other types if specified.
27504
- * @param message ResourceDescriptor
27571
+ * Creates a plain object from a CommonLanguageSettings message. Also converts values to other types if specified.
27572
+ * @param message CommonLanguageSettings
27505
27573
  * @param [options] Conversion options
27506
27574
  * @returns Plain object
27507
27575
  */
27508
- public static toObject(message: google.api.ResourceDescriptor, options?: $protobuf.IConversionOptions): { [k: string]: any };
27576
+ public static toObject(message: google.api.CommonLanguageSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
27509
27577
 
27510
27578
  /**
27511
- * Converts this ResourceDescriptor to JSON.
27579
+ * Converts this CommonLanguageSettings to JSON.
27512
27580
  * @returns JSON object
27513
27581
  */
27514
27582
  public toJSON(): { [k: string]: any };
27515
27583
 
27516
27584
  /**
27517
- * Gets the default type url for ResourceDescriptor
27585
+ * Gets the default type url for CommonLanguageSettings
27518
27586
  * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27519
27587
  * @returns The default type url
27520
27588
  */
27521
27589
  public static getTypeUrl(typeUrlPrefix?: string): string;
27522
27590
  }
27523
27591
 
27524
- namespace ResourceDescriptor {
27592
+ /** Properties of a ClientLibrarySettings. */
27593
+ interface IClientLibrarySettings {
27525
27594
 
27526
- /** History enum. */
27527
- enum History {
27528
- HISTORY_UNSPECIFIED = 0,
27529
- ORIGINALLY_SINGLE_PATTERN = 1,
27530
- FUTURE_MULTI_PATTERN = 2
27531
- }
27595
+ /** ClientLibrarySettings version */
27596
+ version?: (string|null);
27532
27597
 
27533
- /** Style enum. */
27534
- enum Style {
27535
- STYLE_UNSPECIFIED = 0,
27536
- DECLARATIVE_FRIENDLY = 1
27537
- }
27538
- }
27598
+ /** ClientLibrarySettings launchStage */
27599
+ launchStage?: (google.api.LaunchStage|keyof typeof google.api.LaunchStage|null);
27539
27600
 
27540
- /** Properties of a ResourceReference. */
27541
- interface IResourceReference {
27601
+ /** ClientLibrarySettings restNumericEnums */
27602
+ restNumericEnums?: (boolean|null);
27542
27603
 
27543
- /** ResourceReference type */
27544
- type?: (string|null);
27604
+ /** ClientLibrarySettings javaSettings */
27605
+ javaSettings?: (google.api.IJavaSettings|null);
27545
27606
 
27546
- /** ResourceReference childType */
27547
- childType?: (string|null);
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);
27548
27627
  }
27549
27628
 
27550
- /** Represents a ResourceReference. */
27551
- class ResourceReference implements IResourceReference {
27629
+ /** Represents a ClientLibrarySettings. */
27630
+ class ClientLibrarySettings implements IClientLibrarySettings {
27552
27631
 
27553
27632
  /**
27554
- * Constructs a new ResourceReference.
27633
+ * Constructs a new ClientLibrarySettings.
27555
27634
  * @param [properties] Properties to set
27556
27635
  */
27557
- constructor(properties?: google.api.IResourceReference);
27636
+ constructor(properties?: google.api.IClientLibrarySettings);
27558
27637
 
27559
- /** ResourceReference type. */
27560
- public type: string;
27638
+ /** ClientLibrarySettings version. */
27639
+ public version: string;
27561
27640
 
27562
- /** ResourceReference childType. */
27563
- public childType: string;
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);
27564
27670
 
27565
27671
  /**
27566
- * Creates a new ResourceReference instance using the specified properties.
27672
+ * Creates a new ClientLibrarySettings instance using the specified properties.
27567
27673
  * @param [properties] Properties to set
27568
- * @returns ResourceReference instance
27674
+ * @returns ClientLibrarySettings instance
27569
27675
  */
27570
- public static create(properties?: google.api.IResourceReference): google.api.ResourceReference;
27676
+ public static create(properties?: google.api.IClientLibrarySettings): google.api.ClientLibrarySettings;
27571
27677
 
27572
27678
  /**
27573
- * Encodes the specified ResourceReference message. Does not implicitly {@link google.api.ResourceReference.verify|verify} messages.
27574
- * @param message ResourceReference message or plain object to encode
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
27575
27681
  * @param [writer] Writer to encode to
27576
27682
  * @returns Writer
27577
27683
  */
27578
- public static encode(message: google.api.IResourceReference, writer?: $protobuf.Writer): $protobuf.Writer;
27684
+ public static encode(message: google.api.IClientLibrarySettings, writer?: $protobuf.Writer): $protobuf.Writer;
27579
27685
 
27580
27686
  /**
27581
- * Encodes the specified ResourceReference message, length delimited. Does not implicitly {@link google.api.ResourceReference.verify|verify} messages.
27582
- * @param message ResourceReference message or plain object to encode
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
27583
27689
  * @param [writer] Writer to encode to
27584
27690
  * @returns Writer
27585
27691
  */
27586
- public static encodeDelimited(message: google.api.IResourceReference, writer?: $protobuf.Writer): $protobuf.Writer;
27692
+ public static encodeDelimited(message: google.api.IClientLibrarySettings, writer?: $protobuf.Writer): $protobuf.Writer;
27587
27693
 
27588
27694
  /**
27589
- * Decodes a ResourceReference message from the specified reader or buffer.
27695
+ * Decodes a ClientLibrarySettings message from the specified reader or buffer.
27590
27696
  * @param reader Reader or buffer to decode from
27591
27697
  * @param [length] Message length if known beforehand
27592
- * @returns ResourceReference
27698
+ * @returns ClientLibrarySettings
27593
27699
  * @throws {Error} If the payload is not a reader or valid buffer
27594
27700
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
27595
27701
  */
27596
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.ResourceReference;
27702
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.ClientLibrarySettings;
27597
27703
 
27598
27704
  /**
27599
- * Decodes a ResourceReference message from the specified reader or buffer, length delimited.
27705
+ * Decodes a ClientLibrarySettings message from the specified reader or buffer, length delimited.
27600
27706
  * @param reader Reader or buffer to decode from
27601
- * @returns ResourceReference
27707
+ * @returns ClientLibrarySettings
27602
27708
  * @throws {Error} If the payload is not a reader or valid buffer
27603
27709
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
27604
27710
  */
27605
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.ResourceReference;
27711
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.ClientLibrarySettings;
27606
27712
 
27607
27713
  /**
27608
- * Verifies a ResourceReference message.
27714
+ * Verifies a ClientLibrarySettings message.
27609
27715
  * @param message Plain object to verify
27610
27716
  * @returns `null` if valid, otherwise the reason why it is not
27611
27717
  */
27612
27718
  public static verify(message: { [k: string]: any }): (string|null);
27613
27719
 
27614
27720
  /**
27615
- * Creates a ResourceReference message from a plain object. Also converts values to their respective internal types.
27721
+ * Creates a ClientLibrarySettings message from a plain object. Also converts values to their respective internal types.
27616
27722
  * @param object Plain object
27617
- * @returns ResourceReference
27723
+ * @returns ClientLibrarySettings
27618
27724
  */
27619
- public static fromObject(object: { [k: string]: any }): google.api.ResourceReference;
27725
+ public static fromObject(object: { [k: string]: any }): google.api.ClientLibrarySettings;
27620
27726
 
27621
27727
  /**
27622
- * Creates a plain object from a ResourceReference message. Also converts values to other types if specified.
27623
- * @param message ResourceReference
27728
+ * Creates a plain object from a ClientLibrarySettings message. Also converts values to other types if specified.
27729
+ * @param message ClientLibrarySettings
27624
27730
  * @param [options] Conversion options
27625
27731
  * @returns Plain object
27626
27732
  */
27627
- public static toObject(message: google.api.ResourceReference, options?: $protobuf.IConversionOptions): { [k: string]: any };
27733
+ public static toObject(message: google.api.ClientLibrarySettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
27628
27734
 
27629
27735
  /**
27630
- * Converts this ResourceReference to JSON.
27736
+ * Converts this ClientLibrarySettings to JSON.
27631
27737
  * @returns JSON object
27632
27738
  */
27633
27739
  public toJSON(): { [k: string]: any };
27634
27740
 
27635
27741
  /**
27636
- * Gets the default type url for ResourceReference
27742
+ * Gets the default type url for ClientLibrarySettings
27637
27743
  * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27638
27744
  * @returns The default type url
27639
27745
  */
27640
27746
  public static getTypeUrl(typeUrlPrefix?: string): string;
27641
27747
  }
27642
- }
27643
27748
 
27644
- /** Namespace protobuf. */
27645
- namespace protobuf {
27749
+ /** Properties of a Publishing. */
27750
+ interface IPublishing {
27646
27751
 
27647
- /** Properties of a FileDescriptorSet. */
27648
- interface IFileDescriptorSet {
27752
+ /** Publishing methodSettings */
27753
+ methodSettings?: (google.api.IMethodSettings[]|null);
27649
27754
 
27650
- /** FileDescriptorSet file */
27651
- file?: (google.protobuf.IFileDescriptorProto[]|null);
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);
27652
27778
  }
27653
27779
 
27654
- /** Represents a FileDescriptorSet. */
27655
- class FileDescriptorSet implements IFileDescriptorSet {
27780
+ /** Represents a Publishing. */
27781
+ class Publishing implements IPublishing {
27656
27782
 
27657
27783
  /**
27658
- * Constructs a new FileDescriptorSet.
27784
+ * Constructs a new Publishing.
27659
27785
  * @param [properties] Properties to set
27660
27786
  */
27661
- constructor(properties?: google.protobuf.IFileDescriptorSet);
27787
+ constructor(properties?: google.api.IPublishing);
27662
27788
 
27663
- /** FileDescriptorSet file. */
27664
- public file: google.protobuf.IFileDescriptorProto[];
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[];
27665
27815
 
27666
27816
  /**
27667
- * Creates a new FileDescriptorSet instance using the specified properties.
27817
+ * Creates a new Publishing instance using the specified properties.
27668
27818
  * @param [properties] Properties to set
27669
- * @returns FileDescriptorSet instance
27819
+ * @returns Publishing instance
27670
27820
  */
27671
- public static create(properties?: google.protobuf.IFileDescriptorSet): google.protobuf.FileDescriptorSet;
27821
+ public static create(properties?: google.api.IPublishing): google.api.Publishing;
27672
27822
 
27673
27823
  /**
27674
- * Encodes the specified FileDescriptorSet message. Does not implicitly {@link google.protobuf.FileDescriptorSet.verify|verify} messages.
27675
- * @param message FileDescriptorSet message or plain object to encode
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
27676
27826
  * @param [writer] Writer to encode to
27677
27827
  * @returns Writer
27678
27828
  */
27679
- public static encode(message: google.protobuf.IFileDescriptorSet, writer?: $protobuf.Writer): $protobuf.Writer;
27829
+ public static encode(message: google.api.IPublishing, writer?: $protobuf.Writer): $protobuf.Writer;
27680
27830
 
27681
27831
  /**
27682
- * Encodes the specified FileDescriptorSet message, length delimited. Does not implicitly {@link google.protobuf.FileDescriptorSet.verify|verify} messages.
27683
- * @param message FileDescriptorSet message or plain object to encode
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
27684
27834
  * @param [writer] Writer to encode to
27685
27835
  * @returns Writer
27686
27836
  */
27687
- public static encodeDelimited(message: google.protobuf.IFileDescriptorSet, writer?: $protobuf.Writer): $protobuf.Writer;
27837
+ public static encodeDelimited(message: google.api.IPublishing, writer?: $protobuf.Writer): $protobuf.Writer;
27688
27838
 
27689
27839
  /**
27690
- * Decodes a FileDescriptorSet message from the specified reader or buffer.
27840
+ * Decodes a Publishing message from the specified reader or buffer.
27691
27841
  * @param reader Reader or buffer to decode from
27692
27842
  * @param [length] Message length if known beforehand
27693
- * @returns FileDescriptorSet
27843
+ * @returns Publishing
27694
27844
  * @throws {Error} If the payload is not a reader or valid buffer
27695
27845
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
27696
27846
  */
27697
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FileDescriptorSet;
27847
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.Publishing;
27698
27848
 
27699
27849
  /**
27700
- * Decodes a FileDescriptorSet message from the specified reader or buffer, length delimited.
27850
+ * Decodes a Publishing message from the specified reader or buffer, length delimited.
27701
27851
  * @param reader Reader or buffer to decode from
27702
- * @returns FileDescriptorSet
27852
+ * @returns Publishing
27703
27853
  * @throws {Error} If the payload is not a reader or valid buffer
27704
27854
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
27705
27855
  */
27706
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FileDescriptorSet;
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
+
28931
+ /** FieldBehavior enum. */
28932
+ enum FieldBehavior {
28933
+ FIELD_BEHAVIOR_UNSPECIFIED = 0,
28934
+ OPTIONAL = 1,
28935
+ REQUIRED = 2,
28936
+ OUTPUT_ONLY = 3,
28937
+ INPUT_ONLY = 4,
28938
+ IMMUTABLE = 5,
28939
+ UNORDERED_LIST = 6,
28940
+ NON_EMPTY_DEFAULT = 7
28941
+ }
28942
+
28943
+ /** Properties of a ResourceDescriptor. */
28944
+ interface IResourceDescriptor {
28945
+
28946
+ /** ResourceDescriptor type */
28947
+ type?: (string|null);
28948
+
28949
+ /** ResourceDescriptor pattern */
28950
+ pattern?: (string[]|null);
28951
+
28952
+ /** ResourceDescriptor nameField */
28953
+ nameField?: (string|null);
28954
+
28955
+ /** ResourceDescriptor history */
28956
+ history?: (google.api.ResourceDescriptor.History|keyof typeof google.api.ResourceDescriptor.History|null);
28957
+
28958
+ /** ResourceDescriptor plural */
28959
+ plural?: (string|null);
28960
+
28961
+ /** ResourceDescriptor singular */
28962
+ singular?: (string|null);
28963
+
28964
+ /** ResourceDescriptor style */
28965
+ style?: (google.api.ResourceDescriptor.Style[]|null);
28966
+ }
28967
+
28968
+ /** Represents a ResourceDescriptor. */
28969
+ class ResourceDescriptor implements IResourceDescriptor {
28970
+
28971
+ /**
28972
+ * Constructs a new ResourceDescriptor.
28973
+ * @param [properties] Properties to set
28974
+ */
28975
+ constructor(properties?: google.api.IResourceDescriptor);
28976
+
28977
+ /** ResourceDescriptor type. */
28978
+ public type: string;
28979
+
28980
+ /** ResourceDescriptor pattern. */
28981
+ public pattern: string[];
28982
+
28983
+ /** ResourceDescriptor nameField. */
28984
+ public nameField: string;
28985
+
28986
+ /** ResourceDescriptor history. */
28987
+ public history: (google.api.ResourceDescriptor.History|keyof typeof google.api.ResourceDescriptor.History);
28988
+
28989
+ /** ResourceDescriptor plural. */
28990
+ public plural: string;
28991
+
28992
+ /** ResourceDescriptor singular. */
28993
+ public singular: string;
28994
+
28995
+ /** ResourceDescriptor style. */
28996
+ public style: google.api.ResourceDescriptor.Style[];
28997
+
28998
+ /**
28999
+ * Creates a new ResourceDescriptor instance using the specified properties.
29000
+ * @param [properties] Properties to set
29001
+ * @returns ResourceDescriptor instance
29002
+ */
29003
+ public static create(properties?: google.api.IResourceDescriptor): google.api.ResourceDescriptor;
29004
+
29005
+ /**
29006
+ * Encodes the specified ResourceDescriptor message. Does not implicitly {@link google.api.ResourceDescriptor.verify|verify} messages.
29007
+ * @param message ResourceDescriptor message or plain object to encode
29008
+ * @param [writer] Writer to encode to
29009
+ * @returns Writer
29010
+ */
29011
+ public static encode(message: google.api.IResourceDescriptor, writer?: $protobuf.Writer): $protobuf.Writer;
29012
+
29013
+ /**
29014
+ * Encodes the specified ResourceDescriptor message, length delimited. Does not implicitly {@link google.api.ResourceDescriptor.verify|verify} messages.
29015
+ * @param message ResourceDescriptor message or plain object to encode
29016
+ * @param [writer] Writer to encode to
29017
+ * @returns Writer
29018
+ */
29019
+ public static encodeDelimited(message: google.api.IResourceDescriptor, writer?: $protobuf.Writer): $protobuf.Writer;
29020
+
29021
+ /**
29022
+ * Decodes a ResourceDescriptor message from the specified reader or buffer.
29023
+ * @param reader Reader or buffer to decode from
29024
+ * @param [length] Message length if known beforehand
29025
+ * @returns ResourceDescriptor
29026
+ * @throws {Error} If the payload is not a reader or valid buffer
29027
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
29028
+ */
29029
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.ResourceDescriptor;
29030
+
29031
+ /**
29032
+ * Decodes a ResourceDescriptor message from the specified reader or buffer, length delimited.
29033
+ * @param reader Reader or buffer to decode from
29034
+ * @returns ResourceDescriptor
29035
+ * @throws {Error} If the payload is not a reader or valid buffer
29036
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
29037
+ */
29038
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.ResourceDescriptor;
29039
+
29040
+ /**
29041
+ * Verifies a ResourceDescriptor message.
29042
+ * @param message Plain object to verify
29043
+ * @returns `null` if valid, otherwise the reason why it is not
29044
+ */
29045
+ public static verify(message: { [k: string]: any }): (string|null);
29046
+
29047
+ /**
29048
+ * Creates a ResourceDescriptor message from a plain object. Also converts values to their respective internal types.
29049
+ * @param object Plain object
29050
+ * @returns ResourceDescriptor
29051
+ */
29052
+ public static fromObject(object: { [k: string]: any }): google.api.ResourceDescriptor;
29053
+
29054
+ /**
29055
+ * Creates a plain object from a ResourceDescriptor message. Also converts values to other types if specified.
29056
+ * @param message ResourceDescriptor
29057
+ * @param [options] Conversion options
29058
+ * @returns Plain object
29059
+ */
29060
+ public static toObject(message: google.api.ResourceDescriptor, options?: $protobuf.IConversionOptions): { [k: string]: any };
29061
+
29062
+ /**
29063
+ * Converts this ResourceDescriptor to JSON.
29064
+ * @returns JSON object
29065
+ */
29066
+ public toJSON(): { [k: string]: any };
29067
+
29068
+ /**
29069
+ * Gets the default type url for ResourceDescriptor
29070
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
29071
+ * @returns The default type url
29072
+ */
29073
+ public static getTypeUrl(typeUrlPrefix?: string): string;
29074
+ }
29075
+
29076
+ namespace ResourceDescriptor {
29077
+
29078
+ /** History enum. */
29079
+ enum History {
29080
+ HISTORY_UNSPECIFIED = 0,
29081
+ ORIGINALLY_SINGLE_PATTERN = 1,
29082
+ FUTURE_MULTI_PATTERN = 2
29083
+ }
29084
+
29085
+ /** Style enum. */
29086
+ enum Style {
29087
+ STYLE_UNSPECIFIED = 0,
29088
+ DECLARATIVE_FRIENDLY = 1
29089
+ }
29090
+ }
29091
+
29092
+ /** Properties of a ResourceReference. */
29093
+ interface IResourceReference {
29094
+
29095
+ /** ResourceReference type */
29096
+ type?: (string|null);
29097
+
29098
+ /** ResourceReference childType */
29099
+ childType?: (string|null);
29100
+ }
29101
+
29102
+ /** Represents a ResourceReference. */
29103
+ class ResourceReference implements IResourceReference {
29104
+
29105
+ /**
29106
+ * Constructs a new ResourceReference.
29107
+ * @param [properties] Properties to set
29108
+ */
29109
+ constructor(properties?: google.api.IResourceReference);
29110
+
29111
+ /** ResourceReference type. */
29112
+ public type: string;
29113
+
29114
+ /** ResourceReference childType. */
29115
+ public childType: string;
29116
+
29117
+ /**
29118
+ * Creates a new ResourceReference instance using the specified properties.
29119
+ * @param [properties] Properties to set
29120
+ * @returns ResourceReference instance
29121
+ */
29122
+ public static create(properties?: google.api.IResourceReference): google.api.ResourceReference;
29123
+
29124
+ /**
29125
+ * Encodes the specified ResourceReference message. Does not implicitly {@link google.api.ResourceReference.verify|verify} messages.
29126
+ * @param message ResourceReference message or plain object to encode
29127
+ * @param [writer] Writer to encode to
29128
+ * @returns Writer
29129
+ */
29130
+ public static encode(message: google.api.IResourceReference, writer?: $protobuf.Writer): $protobuf.Writer;
29131
+
29132
+ /**
29133
+ * Encodes the specified ResourceReference message, length delimited. Does not implicitly {@link google.api.ResourceReference.verify|verify} messages.
29134
+ * @param message ResourceReference message or plain object to encode
29135
+ * @param [writer] Writer to encode to
29136
+ * @returns Writer
29137
+ */
29138
+ public static encodeDelimited(message: google.api.IResourceReference, writer?: $protobuf.Writer): $protobuf.Writer;
29139
+
29140
+ /**
29141
+ * Decodes a ResourceReference message from the specified reader or buffer.
29142
+ * @param reader Reader or buffer to decode from
29143
+ * @param [length] Message length if known beforehand
29144
+ * @returns ResourceReference
29145
+ * @throws {Error} If the payload is not a reader or valid buffer
29146
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
29147
+ */
29148
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.ResourceReference;
29149
+
29150
+ /**
29151
+ * Decodes a ResourceReference message from the specified reader or buffer, length delimited.
29152
+ * @param reader Reader or buffer to decode from
29153
+ * @returns ResourceReference
29154
+ * @throws {Error} If the payload is not a reader or valid buffer
29155
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
29156
+ */
29157
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.ResourceReference;
29158
+
29159
+ /**
29160
+ * Verifies a ResourceReference message.
29161
+ * @param message Plain object to verify
29162
+ * @returns `null` if valid, otherwise the reason why it is not
29163
+ */
29164
+ public static verify(message: { [k: string]: any }): (string|null);
29165
+
29166
+ /**
29167
+ * Creates a ResourceReference message from a plain object. Also converts values to their respective internal types.
29168
+ * @param object Plain object
29169
+ * @returns ResourceReference
29170
+ */
29171
+ public static fromObject(object: { [k: string]: any }): google.api.ResourceReference;
29172
+
29173
+ /**
29174
+ * Creates a plain object from a ResourceReference message. Also converts values to other types if specified.
29175
+ * @param message ResourceReference
29176
+ * @param [options] Conversion options
29177
+ * @returns Plain object
29178
+ */
29179
+ public static toObject(message: google.api.ResourceReference, options?: $protobuf.IConversionOptions): { [k: string]: any };
29180
+
29181
+ /**
29182
+ * Converts this ResourceReference to JSON.
29183
+ * @returns JSON object
29184
+ */
29185
+ public toJSON(): { [k: string]: any };
29186
+
29187
+ /**
29188
+ * Gets the default type url for ResourceReference
29189
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
29190
+ * @returns The default type url
29191
+ */
29192
+ public static getTypeUrl(typeUrlPrefix?: string): string;
29193
+ }
29194
+ }
29195
+
29196
+ /** Namespace protobuf. */
29197
+ namespace protobuf {
29198
+
29199
+ /** Properties of a FileDescriptorSet. */
29200
+ interface IFileDescriptorSet {
29201
+
29202
+ /** FileDescriptorSet file */
29203
+ file?: (google.protobuf.IFileDescriptorProto[]|null);
29204
+ }
29205
+
29206
+ /** Represents a FileDescriptorSet. */
29207
+ class FileDescriptorSet implements IFileDescriptorSet {
29208
+
29209
+ /**
29210
+ * Constructs a new FileDescriptorSet.
29211
+ * @param [properties] Properties to set
29212
+ */
29213
+ constructor(properties?: google.protobuf.IFileDescriptorSet);
29214
+
29215
+ /** FileDescriptorSet file. */
29216
+ public file: google.protobuf.IFileDescriptorProto[];
29217
+
29218
+ /**
29219
+ * Creates a new FileDescriptorSet instance using the specified properties.
29220
+ * @param [properties] Properties to set
29221
+ * @returns FileDescriptorSet instance
29222
+ */
29223
+ public static create(properties?: google.protobuf.IFileDescriptorSet): google.protobuf.FileDescriptorSet;
29224
+
29225
+ /**
29226
+ * Encodes the specified FileDescriptorSet message. Does not implicitly {@link google.protobuf.FileDescriptorSet.verify|verify} messages.
29227
+ * @param message FileDescriptorSet message or plain object to encode
29228
+ * @param [writer] Writer to encode to
29229
+ * @returns Writer
29230
+ */
29231
+ public static encode(message: google.protobuf.IFileDescriptorSet, writer?: $protobuf.Writer): $protobuf.Writer;
29232
+
29233
+ /**
29234
+ * Encodes the specified FileDescriptorSet message, length delimited. Does not implicitly {@link google.protobuf.FileDescriptorSet.verify|verify} messages.
29235
+ * @param message FileDescriptorSet message or plain object to encode
29236
+ * @param [writer] Writer to encode to
29237
+ * @returns Writer
29238
+ */
29239
+ public static encodeDelimited(message: google.protobuf.IFileDescriptorSet, writer?: $protobuf.Writer): $protobuf.Writer;
29240
+
29241
+ /**
29242
+ * Decodes a FileDescriptorSet message from the specified reader or buffer.
29243
+ * @param reader Reader or buffer to decode from
29244
+ * @param [length] Message length if known beforehand
29245
+ * @returns FileDescriptorSet
29246
+ * @throws {Error} If the payload is not a reader or valid buffer
29247
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
29248
+ */
29249
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FileDescriptorSet;
29250
+
29251
+ /**
29252
+ * Decodes a FileDescriptorSet message from the specified reader or buffer, length delimited.
29253
+ * @param reader Reader or buffer to decode from
29254
+ * @returns FileDescriptorSet
29255
+ * @throws {Error} If the payload is not a reader or valid buffer
29256
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
29257
+ */
29258
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FileDescriptorSet;
27707
29259
 
27708
29260
  /**
27709
29261
  * Verifies a FileDescriptorSet message.
@@ -29482,6 +31034,9 @@ export namespace google {
29482
31034
  /** MessageOptions mapEntry */
29483
31035
  mapEntry?: (boolean|null);
29484
31036
 
31037
+ /** MessageOptions deprecatedLegacyJsonFieldConflicts */
31038
+ deprecatedLegacyJsonFieldConflicts?: (boolean|null);
31039
+
29485
31040
  /** MessageOptions uninterpretedOption */
29486
31041
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
29487
31042
 
@@ -29510,6 +31065,9 @@ export namespace google {
29510
31065
  /** MessageOptions mapEntry. */
29511
31066
  public mapEntry: boolean;
29512
31067
 
31068
+ /** MessageOptions deprecatedLegacyJsonFieldConflicts. */
31069
+ public deprecatedLegacyJsonFieldConflicts: boolean;
31070
+
29513
31071
  /** MessageOptions uninterpretedOption. */
29514
31072
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
29515
31073
 
@@ -29615,6 +31173,15 @@ export namespace google {
29615
31173
  /** FieldOptions weak */
29616
31174
  weak?: (boolean|null);
29617
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
+
29618
31185
  /** FieldOptions uninterpretedOption */
29619
31186
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
29620
31187
 
@@ -29655,6 +31222,15 @@ export namespace google {
29655
31222
  /** FieldOptions weak. */
29656
31223
  public weak: boolean;
29657
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
+
29658
31234
  /** FieldOptions uninterpretedOption. */
29659
31235
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
29660
31236
 
@@ -29751,6 +31327,27 @@ export namespace google {
29751
31327
  JS_STRING = 1,
29752
31328
  JS_NUMBER = 2
29753
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
+ }
29754
31351
  }
29755
31352
 
29756
31353
  /** Properties of an OneofOptions. */
@@ -29859,6 +31456,9 @@ export namespace google {
29859
31456
  /** EnumOptions deprecated */
29860
31457
  deprecated?: (boolean|null);
29861
31458
 
31459
+ /** EnumOptions deprecatedLegacyJsonFieldConflicts */
31460
+ deprecatedLegacyJsonFieldConflicts?: (boolean|null);
31461
+
29862
31462
  /** EnumOptions uninterpretedOption */
29863
31463
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
29864
31464
  }
@@ -29878,6 +31478,9 @@ export namespace google {
29878
31478
  /** EnumOptions deprecated. */
29879
31479
  public deprecated: boolean;
29880
31480
 
31481
+ /** EnumOptions deprecatedLegacyJsonFieldConflicts. */
31482
+ public deprecatedLegacyJsonFieldConflicts: boolean;
31483
+
29881
31484
  /** EnumOptions uninterpretedOption. */
29882
31485
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
29883
31486
 
@@ -30987,206 +32590,206 @@ export namespace google {
30987
32590
  }
30988
32591
  }
30989
32592
 
30990
- /** Properties of a Timestamp. */
30991
- interface ITimestamp {
32593
+ /** Properties of a Duration. */
32594
+ interface IDuration {
30992
32595
 
30993
- /** Timestamp seconds */
32596
+ /** Duration seconds */
30994
32597
  seconds?: (number|Long|string|null);
30995
32598
 
30996
- /** Timestamp nanos */
32599
+ /** Duration nanos */
30997
32600
  nanos?: (number|null);
30998
32601
  }
30999
32602
 
31000
- /** Represents a Timestamp. */
31001
- class Timestamp implements ITimestamp {
32603
+ /** Represents a Duration. */
32604
+ class Duration implements IDuration {
31002
32605
 
31003
32606
  /**
31004
- * Constructs a new Timestamp.
32607
+ * Constructs a new Duration.
31005
32608
  * @param [properties] Properties to set
31006
32609
  */
31007
- constructor(properties?: google.protobuf.ITimestamp);
32610
+ constructor(properties?: google.protobuf.IDuration);
31008
32611
 
31009
- /** Timestamp seconds. */
32612
+ /** Duration seconds. */
31010
32613
  public seconds: (number|Long|string);
31011
32614
 
31012
- /** Timestamp nanos. */
32615
+ /** Duration nanos. */
31013
32616
  public nanos: number;
31014
32617
 
31015
32618
  /**
31016
- * Creates a new Timestamp instance using the specified properties.
32619
+ * Creates a new Duration instance using the specified properties.
31017
32620
  * @param [properties] Properties to set
31018
- * @returns Timestamp instance
32621
+ * @returns Duration instance
31019
32622
  */
31020
- public static create(properties?: google.protobuf.ITimestamp): google.protobuf.Timestamp;
32623
+ public static create(properties?: google.protobuf.IDuration): google.protobuf.Duration;
31021
32624
 
31022
32625
  /**
31023
- * Encodes the specified Timestamp message. Does not implicitly {@link google.protobuf.Timestamp.verify|verify} messages.
31024
- * @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
31025
32628
  * @param [writer] Writer to encode to
31026
32629
  * @returns Writer
31027
32630
  */
31028
- 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;
31029
32632
 
31030
32633
  /**
31031
- * Encodes the specified Timestamp message, length delimited. Does not implicitly {@link google.protobuf.Timestamp.verify|verify} messages.
31032
- * @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
31033
32636
  * @param [writer] Writer to encode to
31034
32637
  * @returns Writer
31035
32638
  */
31036
- 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;
31037
32640
 
31038
32641
  /**
31039
- * Decodes a Timestamp message from the specified reader or buffer.
32642
+ * Decodes a Duration message from the specified reader or buffer.
31040
32643
  * @param reader Reader or buffer to decode from
31041
32644
  * @param [length] Message length if known beforehand
31042
- * @returns Timestamp
32645
+ * @returns Duration
31043
32646
  * @throws {Error} If the payload is not a reader or valid buffer
31044
32647
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
31045
32648
  */
31046
- 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;
31047
32650
 
31048
32651
  /**
31049
- * 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.
31050
32653
  * @param reader Reader or buffer to decode from
31051
- * @returns Timestamp
32654
+ * @returns Duration
31052
32655
  * @throws {Error} If the payload is not a reader or valid buffer
31053
32656
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
31054
32657
  */
31055
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.Timestamp;
32658
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.Duration;
31056
32659
 
31057
32660
  /**
31058
- * Verifies a Timestamp message.
32661
+ * Verifies a Duration message.
31059
32662
  * @param message Plain object to verify
31060
32663
  * @returns `null` if valid, otherwise the reason why it is not
31061
32664
  */
31062
32665
  public static verify(message: { [k: string]: any }): (string|null);
31063
32666
 
31064
32667
  /**
31065
- * 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.
31066
32669
  * @param object Plain object
31067
- * @returns Timestamp
32670
+ * @returns Duration
31068
32671
  */
31069
- public static fromObject(object: { [k: string]: any }): google.protobuf.Timestamp;
32672
+ public static fromObject(object: { [k: string]: any }): google.protobuf.Duration;
31070
32673
 
31071
32674
  /**
31072
- * Creates a plain object from a Timestamp message. Also converts values to other types if specified.
31073
- * @param message Timestamp
32675
+ * Creates a plain object from a Duration message. Also converts values to other types if specified.
32676
+ * @param message Duration
31074
32677
  * @param [options] Conversion options
31075
32678
  * @returns Plain object
31076
32679
  */
31077
- 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 };
31078
32681
 
31079
32682
  /**
31080
- * Converts this Timestamp to JSON.
32683
+ * Converts this Duration to JSON.
31081
32684
  * @returns JSON object
31082
32685
  */
31083
32686
  public toJSON(): { [k: string]: any };
31084
32687
 
31085
32688
  /**
31086
- * Gets the default type url for Timestamp
32689
+ * Gets the default type url for Duration
31087
32690
  * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
31088
32691
  * @returns The default type url
31089
32692
  */
31090
32693
  public static getTypeUrl(typeUrlPrefix?: string): string;
31091
32694
  }
31092
32695
 
31093
- /** Properties of a Duration. */
31094
- interface IDuration {
32696
+ /** Properties of a Timestamp. */
32697
+ interface ITimestamp {
31095
32698
 
31096
- /** Duration seconds */
32699
+ /** Timestamp seconds */
31097
32700
  seconds?: (number|Long|string|null);
31098
32701
 
31099
- /** Duration nanos */
32702
+ /** Timestamp nanos */
31100
32703
  nanos?: (number|null);
31101
32704
  }
31102
32705
 
31103
- /** Represents a Duration. */
31104
- class Duration implements IDuration {
32706
+ /** Represents a Timestamp. */
32707
+ class Timestamp implements ITimestamp {
31105
32708
 
31106
32709
  /**
31107
- * Constructs a new Duration.
32710
+ * Constructs a new Timestamp.
31108
32711
  * @param [properties] Properties to set
31109
32712
  */
31110
- constructor(properties?: google.protobuf.IDuration);
32713
+ constructor(properties?: google.protobuf.ITimestamp);
31111
32714
 
31112
- /** Duration seconds. */
32715
+ /** Timestamp seconds. */
31113
32716
  public seconds: (number|Long|string);
31114
32717
 
31115
- /** Duration nanos. */
32718
+ /** Timestamp nanos. */
31116
32719
  public nanos: number;
31117
32720
 
31118
32721
  /**
31119
- * Creates a new Duration instance using the specified properties.
32722
+ * Creates a new Timestamp instance using the specified properties.
31120
32723
  * @param [properties] Properties to set
31121
- * @returns Duration instance
32724
+ * @returns Timestamp instance
31122
32725
  */
31123
- public static create(properties?: google.protobuf.IDuration): google.protobuf.Duration;
32726
+ public static create(properties?: google.protobuf.ITimestamp): google.protobuf.Timestamp;
31124
32727
 
31125
32728
  /**
31126
- * Encodes the specified Duration message. Does not implicitly {@link google.protobuf.Duration.verify|verify} messages.
31127
- * @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
31128
32731
  * @param [writer] Writer to encode to
31129
32732
  * @returns Writer
31130
32733
  */
31131
- 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;
31132
32735
 
31133
32736
  /**
31134
- * Encodes the specified Duration message, length delimited. Does not implicitly {@link google.protobuf.Duration.verify|verify} messages.
31135
- * @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
31136
32739
  * @param [writer] Writer to encode to
31137
32740
  * @returns Writer
31138
32741
  */
31139
- 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;
31140
32743
 
31141
32744
  /**
31142
- * Decodes a Duration message from the specified reader or buffer.
32745
+ * Decodes a Timestamp message from the specified reader or buffer.
31143
32746
  * @param reader Reader or buffer to decode from
31144
32747
  * @param [length] Message length if known beforehand
31145
- * @returns Duration
32748
+ * @returns Timestamp
31146
32749
  * @throws {Error} If the payload is not a reader or valid buffer
31147
32750
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
31148
32751
  */
31149
- 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;
31150
32753
 
31151
32754
  /**
31152
- * 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.
31153
32756
  * @param reader Reader or buffer to decode from
31154
- * @returns Duration
32757
+ * @returns Timestamp
31155
32758
  * @throws {Error} If the payload is not a reader or valid buffer
31156
32759
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
31157
32760
  */
31158
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.Duration;
32761
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.Timestamp;
31159
32762
 
31160
32763
  /**
31161
- * Verifies a Duration message.
32764
+ * Verifies a Timestamp message.
31162
32765
  * @param message Plain object to verify
31163
32766
  * @returns `null` if valid, otherwise the reason why it is not
31164
32767
  */
31165
32768
  public static verify(message: { [k: string]: any }): (string|null);
31166
32769
 
31167
32770
  /**
31168
- * 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.
31169
32772
  * @param object Plain object
31170
- * @returns Duration
32773
+ * @returns Timestamp
31171
32774
  */
31172
- public static fromObject(object: { [k: string]: any }): google.protobuf.Duration;
32775
+ public static fromObject(object: { [k: string]: any }): google.protobuf.Timestamp;
31173
32776
 
31174
32777
  /**
31175
- * Creates a plain object from a Duration message. Also converts values to other types if specified.
31176
- * @param message Duration
32778
+ * Creates a plain object from a Timestamp message. Also converts values to other types if specified.
32779
+ * @param message Timestamp
31177
32780
  * @param [options] Conversion options
31178
32781
  * @returns Plain object
31179
32782
  */
31180
- 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 };
31181
32784
 
31182
32785
  /**
31183
- * Converts this Duration to JSON.
32786
+ * Converts this Timestamp to JSON.
31184
32787
  * @returns JSON object
31185
32788
  */
31186
32789
  public toJSON(): { [k: string]: any };
31187
32790
 
31188
32791
  /**
31189
- * Gets the default type url for Duration
32792
+ * Gets the default type url for Timestamp
31190
32793
  * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
31191
32794
  * @returns The default type url
31192
32795
  */