@google-analytics/data 6.1.0 → 7.1.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.
@@ -223,10 +223,13 @@ export namespace google {
223
223
  /** Edition enum. */
224
224
  enum Edition {
225
225
  EDITION_UNKNOWN = 0,
226
+ EDITION_LEGACY = 900,
226
227
  EDITION_PROTO2 = 998,
227
228
  EDITION_PROTO3 = 999,
228
229
  EDITION_2023 = 1000,
229
230
  EDITION_2024 = 1001,
231
+ EDITION_2026 = 1002,
232
+ EDITION_UNSTABLE = 9999,
230
233
  EDITION_1_TEST_ONLY = 1,
231
234
  EDITION_2_TEST_ONLY = 2,
232
235
  EDITION_99997_TEST_ONLY = 99997,
@@ -253,6 +256,9 @@ export namespace google {
253
256
  /** FileDescriptorProto weakDependency */
254
257
  weakDependency?: (number[]|null);
255
258
 
259
+ /** FileDescriptorProto optionDependency */
260
+ optionDependency?: (string[]|null);
261
+
256
262
  /** FileDescriptorProto messageType */
257
263
  messageType?: (google.protobuf.IDescriptorProto[]|null);
258
264
 
@@ -302,6 +308,9 @@ export namespace google {
302
308
  /** FileDescriptorProto weakDependency. */
303
309
  public weakDependency: number[];
304
310
 
311
+ /** FileDescriptorProto optionDependency. */
312
+ public optionDependency: string[];
313
+
305
314
  /** FileDescriptorProto messageType. */
306
315
  public messageType: google.protobuf.IDescriptorProto[];
307
316
 
@@ -436,6 +445,9 @@ export namespace google {
436
445
 
437
446
  /** DescriptorProto reservedName */
438
447
  reservedName?: (string[]|null);
448
+
449
+ /** DescriptorProto visibility */
450
+ visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
439
451
  }
440
452
 
441
453
  /** Represents a DescriptorProto. */
@@ -477,6 +489,9 @@ export namespace google {
477
489
  /** DescriptorProto reservedName. */
478
490
  public reservedName: string[];
479
491
 
492
+ /** DescriptorProto visibility. */
493
+ public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
494
+
480
495
  /**
481
496
  * Creates a new DescriptorProto instance using the specified properties.
482
497
  * @param [properties] Properties to set
@@ -1324,6 +1339,9 @@ export namespace google {
1324
1339
 
1325
1340
  /** EnumDescriptorProto reservedName */
1326
1341
  reservedName?: (string[]|null);
1342
+
1343
+ /** EnumDescriptorProto visibility */
1344
+ visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
1327
1345
  }
1328
1346
 
1329
1347
  /** Represents an EnumDescriptorProto. */
@@ -1350,6 +1368,9 @@ export namespace google {
1350
1368
  /** EnumDescriptorProto reservedName. */
1351
1369
  public reservedName: string[];
1352
1370
 
1371
+ /** EnumDescriptorProto visibility. */
1372
+ public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
1373
+
1353
1374
  /**
1354
1375
  * Creates a new EnumDescriptorProto instance using the specified properties.
1355
1376
  * @param [properties] Properties to set
@@ -2284,6 +2305,9 @@ export namespace google {
2284
2305
  /** FieldOptions features */
2285
2306
  features?: (google.protobuf.IFeatureSet|null);
2286
2307
 
2308
+ /** FieldOptions featureSupport */
2309
+ featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
2310
+
2287
2311
  /** FieldOptions uninterpretedOption */
2288
2312
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
2289
2313
 
@@ -2339,6 +2363,9 @@ export namespace google {
2339
2363
  /** FieldOptions features. */
2340
2364
  public features?: (google.protobuf.IFeatureSet|null);
2341
2365
 
2366
+ /** FieldOptions featureSupport. */
2367
+ public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
2368
+
2342
2369
  /** FieldOptions uninterpretedOption. */
2343
2370
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
2344
2371
 
@@ -2559,6 +2586,127 @@ export namespace google {
2559
2586
  */
2560
2587
  public static getTypeUrl(typeUrlPrefix?: string): string;
2561
2588
  }
2589
+
2590
+ /** Properties of a FeatureSupport. */
2591
+ interface IFeatureSupport {
2592
+
2593
+ /** FeatureSupport editionIntroduced */
2594
+ editionIntroduced?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
2595
+
2596
+ /** FeatureSupport editionDeprecated */
2597
+ editionDeprecated?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
2598
+
2599
+ /** FeatureSupport deprecationWarning */
2600
+ deprecationWarning?: (string|null);
2601
+
2602
+ /** FeatureSupport editionRemoved */
2603
+ editionRemoved?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
2604
+
2605
+ /** FeatureSupport removalError */
2606
+ removalError?: (string|null);
2607
+ }
2608
+
2609
+ /** Represents a FeatureSupport. */
2610
+ class FeatureSupport implements IFeatureSupport {
2611
+
2612
+ /**
2613
+ * Constructs a new FeatureSupport.
2614
+ * @param [properties] Properties to set
2615
+ */
2616
+ constructor(properties?: google.protobuf.FieldOptions.IFeatureSupport);
2617
+
2618
+ /** FeatureSupport editionIntroduced. */
2619
+ public editionIntroduced: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
2620
+
2621
+ /** FeatureSupport editionDeprecated. */
2622
+ public editionDeprecated: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
2623
+
2624
+ /** FeatureSupport deprecationWarning. */
2625
+ public deprecationWarning: string;
2626
+
2627
+ /** FeatureSupport editionRemoved. */
2628
+ public editionRemoved: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
2629
+
2630
+ /** FeatureSupport removalError. */
2631
+ public removalError: string;
2632
+
2633
+ /**
2634
+ * Creates a new FeatureSupport instance using the specified properties.
2635
+ * @param [properties] Properties to set
2636
+ * @returns FeatureSupport instance
2637
+ */
2638
+ public static create(properties?: google.protobuf.FieldOptions.IFeatureSupport): google.protobuf.FieldOptions.FeatureSupport;
2639
+
2640
+ /**
2641
+ * Encodes the specified FeatureSupport message. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
2642
+ * @param message FeatureSupport message or plain object to encode
2643
+ * @param [writer] Writer to encode to
2644
+ * @returns Writer
2645
+ */
2646
+ public static encode(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
2647
+
2648
+ /**
2649
+ * Encodes the specified FeatureSupport message, length delimited. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
2650
+ * @param message FeatureSupport message or plain object to encode
2651
+ * @param [writer] Writer to encode to
2652
+ * @returns Writer
2653
+ */
2654
+ public static encodeDelimited(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
2655
+
2656
+ /**
2657
+ * Decodes a FeatureSupport message from the specified reader or buffer.
2658
+ * @param reader Reader or buffer to decode from
2659
+ * @param [length] Message length if known beforehand
2660
+ * @returns FeatureSupport
2661
+ * @throws {Error} If the payload is not a reader or valid buffer
2662
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2663
+ */
2664
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions.FeatureSupport;
2665
+
2666
+ /**
2667
+ * Decodes a FeatureSupport message from the specified reader or buffer, length delimited.
2668
+ * @param reader Reader or buffer to decode from
2669
+ * @returns FeatureSupport
2670
+ * @throws {Error} If the payload is not a reader or valid buffer
2671
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2672
+ */
2673
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions.FeatureSupport;
2674
+
2675
+ /**
2676
+ * Verifies a FeatureSupport message.
2677
+ * @param message Plain object to verify
2678
+ * @returns `null` if valid, otherwise the reason why it is not
2679
+ */
2680
+ public static verify(message: { [k: string]: any }): (string|null);
2681
+
2682
+ /**
2683
+ * Creates a FeatureSupport message from a plain object. Also converts values to their respective internal types.
2684
+ * @param object Plain object
2685
+ * @returns FeatureSupport
2686
+ */
2687
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.FeatureSupport;
2688
+
2689
+ /**
2690
+ * Creates a plain object from a FeatureSupport message. Also converts values to other types if specified.
2691
+ * @param message FeatureSupport
2692
+ * @param [options] Conversion options
2693
+ * @returns Plain object
2694
+ */
2695
+ public static toObject(message: google.protobuf.FieldOptions.FeatureSupport, options?: $protobuf.IConversionOptions): { [k: string]: any };
2696
+
2697
+ /**
2698
+ * Converts this FeatureSupport to JSON.
2699
+ * @returns JSON object
2700
+ */
2701
+ public toJSON(): { [k: string]: any };
2702
+
2703
+ /**
2704
+ * Gets the default type url for FeatureSupport
2705
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
2706
+ * @returns The default type url
2707
+ */
2708
+ public static getTypeUrl(typeUrlPrefix?: string): string;
2709
+ }
2562
2710
  }
2563
2711
 
2564
2712
  /** Properties of an OneofOptions. */
@@ -2797,6 +2945,9 @@ export namespace google {
2797
2945
  /** EnumValueOptions debugRedact */
2798
2946
  debugRedact?: (boolean|null);
2799
2947
 
2948
+ /** EnumValueOptions featureSupport */
2949
+ featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
2950
+
2800
2951
  /** EnumValueOptions uninterpretedOption */
2801
2952
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
2802
2953
  }
@@ -2819,6 +2970,9 @@ export namespace google {
2819
2970
  /** EnumValueOptions debugRedact. */
2820
2971
  public debugRedact: boolean;
2821
2972
 
2973
+ /** EnumValueOptions featureSupport. */
2974
+ public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
2975
+
2822
2976
  /** EnumValueOptions uninterpretedOption. */
2823
2977
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
2824
2978
 
@@ -3411,6 +3565,15 @@ export namespace google {
3411
3565
 
3412
3566
  /** FeatureSet jsonFormat */
3413
3567
  jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
3568
+
3569
+ /** FeatureSet enforceNamingStyle */
3570
+ enforceNamingStyle?: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle|null);
3571
+
3572
+ /** FeatureSet defaultSymbolVisibility */
3573
+ defaultSymbolVisibility?: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|null);
3574
+
3575
+ /** FeatureSet enforceProtoLimits */
3576
+ enforceProtoLimits?: (google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|keyof typeof google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|null);
3414
3577
  }
3415
3578
 
3416
3579
  /** Represents a FeatureSet. */
@@ -3440,6 +3603,15 @@ export namespace google {
3440
3603
  /** FeatureSet jsonFormat. */
3441
3604
  public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
3442
3605
 
3606
+ /** FeatureSet enforceNamingStyle. */
3607
+ public enforceNamingStyle: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle);
3608
+
3609
+ /** FeatureSet defaultSymbolVisibility. */
3610
+ public defaultSymbolVisibility: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility);
3611
+
3612
+ /** FeatureSet enforceProtoLimits. */
3613
+ public enforceProtoLimits: (google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|keyof typeof google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits);
3614
+
3443
3615
  /**
3444
3616
  * Creates a new FeatureSet instance using the specified properties.
3445
3617
  * @param [properties] Properties to set
@@ -3562,6 +3734,218 @@ export namespace google {
3562
3734
  ALLOW = 1,
3563
3735
  LEGACY_BEST_EFFORT = 2
3564
3736
  }
3737
+
3738
+ /** EnforceNamingStyle enum. */
3739
+ enum EnforceNamingStyle {
3740
+ ENFORCE_NAMING_STYLE_UNKNOWN = 0,
3741
+ STYLE2024 = 1,
3742
+ STYLE_LEGACY = 2,
3743
+ STYLE2026 = 3
3744
+ }
3745
+
3746
+ /** Properties of a VisibilityFeature. */
3747
+ interface IVisibilityFeature {
3748
+ }
3749
+
3750
+ /** Represents a VisibilityFeature. */
3751
+ class VisibilityFeature implements IVisibilityFeature {
3752
+
3753
+ /**
3754
+ * Constructs a new VisibilityFeature.
3755
+ * @param [properties] Properties to set
3756
+ */
3757
+ constructor(properties?: google.protobuf.FeatureSet.IVisibilityFeature);
3758
+
3759
+ /**
3760
+ * Creates a new VisibilityFeature instance using the specified properties.
3761
+ * @param [properties] Properties to set
3762
+ * @returns VisibilityFeature instance
3763
+ */
3764
+ public static create(properties?: google.protobuf.FeatureSet.IVisibilityFeature): google.protobuf.FeatureSet.VisibilityFeature;
3765
+
3766
+ /**
3767
+ * Encodes the specified VisibilityFeature message. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
3768
+ * @param message VisibilityFeature message or plain object to encode
3769
+ * @param [writer] Writer to encode to
3770
+ * @returns Writer
3771
+ */
3772
+ public static encode(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
3773
+
3774
+ /**
3775
+ * Encodes the specified VisibilityFeature message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
3776
+ * @param message VisibilityFeature message or plain object to encode
3777
+ * @param [writer] Writer to encode to
3778
+ * @returns Writer
3779
+ */
3780
+ public static encodeDelimited(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
3781
+
3782
+ /**
3783
+ * Decodes a VisibilityFeature message from the specified reader or buffer.
3784
+ * @param reader Reader or buffer to decode from
3785
+ * @param [length] Message length if known beforehand
3786
+ * @returns VisibilityFeature
3787
+ * @throws {Error} If the payload is not a reader or valid buffer
3788
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3789
+ */
3790
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet.VisibilityFeature;
3791
+
3792
+ /**
3793
+ * Decodes a VisibilityFeature message from the specified reader or buffer, length delimited.
3794
+ * @param reader Reader or buffer to decode from
3795
+ * @returns VisibilityFeature
3796
+ * @throws {Error} If the payload is not a reader or valid buffer
3797
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3798
+ */
3799
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet.VisibilityFeature;
3800
+
3801
+ /**
3802
+ * Verifies a VisibilityFeature message.
3803
+ * @param message Plain object to verify
3804
+ * @returns `null` if valid, otherwise the reason why it is not
3805
+ */
3806
+ public static verify(message: { [k: string]: any }): (string|null);
3807
+
3808
+ /**
3809
+ * Creates a VisibilityFeature message from a plain object. Also converts values to their respective internal types.
3810
+ * @param object Plain object
3811
+ * @returns VisibilityFeature
3812
+ */
3813
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet.VisibilityFeature;
3814
+
3815
+ /**
3816
+ * Creates a plain object from a VisibilityFeature message. Also converts values to other types if specified.
3817
+ * @param message VisibilityFeature
3818
+ * @param [options] Conversion options
3819
+ * @returns Plain object
3820
+ */
3821
+ public static toObject(message: google.protobuf.FeatureSet.VisibilityFeature, options?: $protobuf.IConversionOptions): { [k: string]: any };
3822
+
3823
+ /**
3824
+ * Converts this VisibilityFeature to JSON.
3825
+ * @returns JSON object
3826
+ */
3827
+ public toJSON(): { [k: string]: any };
3828
+
3829
+ /**
3830
+ * Gets the default type url for VisibilityFeature
3831
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
3832
+ * @returns The default type url
3833
+ */
3834
+ public static getTypeUrl(typeUrlPrefix?: string): string;
3835
+ }
3836
+
3837
+ namespace VisibilityFeature {
3838
+
3839
+ /** DefaultSymbolVisibility enum. */
3840
+ enum DefaultSymbolVisibility {
3841
+ DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0,
3842
+ EXPORT_ALL = 1,
3843
+ EXPORT_TOP_LEVEL = 2,
3844
+ LOCAL_ALL = 3,
3845
+ STRICT = 4
3846
+ }
3847
+ }
3848
+
3849
+ /** Properties of a ProtoLimitsFeature. */
3850
+ interface IProtoLimitsFeature {
3851
+ }
3852
+
3853
+ /** Represents a ProtoLimitsFeature. */
3854
+ class ProtoLimitsFeature implements IProtoLimitsFeature {
3855
+
3856
+ /**
3857
+ * Constructs a new ProtoLimitsFeature.
3858
+ * @param [properties] Properties to set
3859
+ */
3860
+ constructor(properties?: google.protobuf.FeatureSet.IProtoLimitsFeature);
3861
+
3862
+ /**
3863
+ * Creates a new ProtoLimitsFeature instance using the specified properties.
3864
+ * @param [properties] Properties to set
3865
+ * @returns ProtoLimitsFeature instance
3866
+ */
3867
+ public static create(properties?: google.protobuf.FeatureSet.IProtoLimitsFeature): google.protobuf.FeatureSet.ProtoLimitsFeature;
3868
+
3869
+ /**
3870
+ * Encodes the specified ProtoLimitsFeature message. Does not implicitly {@link google.protobuf.FeatureSet.ProtoLimitsFeature.verify|verify} messages.
3871
+ * @param message ProtoLimitsFeature message or plain object to encode
3872
+ * @param [writer] Writer to encode to
3873
+ * @returns Writer
3874
+ */
3875
+ public static encode(message: google.protobuf.FeatureSet.IProtoLimitsFeature, writer?: $protobuf.Writer): $protobuf.Writer;
3876
+
3877
+ /**
3878
+ * Encodes the specified ProtoLimitsFeature message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.ProtoLimitsFeature.verify|verify} messages.
3879
+ * @param message ProtoLimitsFeature message or plain object to encode
3880
+ * @param [writer] Writer to encode to
3881
+ * @returns Writer
3882
+ */
3883
+ public static encodeDelimited(message: google.protobuf.FeatureSet.IProtoLimitsFeature, writer?: $protobuf.Writer): $protobuf.Writer;
3884
+
3885
+ /**
3886
+ * Decodes a ProtoLimitsFeature message from the specified reader or buffer.
3887
+ * @param reader Reader or buffer to decode from
3888
+ * @param [length] Message length if known beforehand
3889
+ * @returns ProtoLimitsFeature
3890
+ * @throws {Error} If the payload is not a reader or valid buffer
3891
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3892
+ */
3893
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet.ProtoLimitsFeature;
3894
+
3895
+ /**
3896
+ * Decodes a ProtoLimitsFeature message from the specified reader or buffer, length delimited.
3897
+ * @param reader Reader or buffer to decode from
3898
+ * @returns ProtoLimitsFeature
3899
+ * @throws {Error} If the payload is not a reader or valid buffer
3900
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3901
+ */
3902
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet.ProtoLimitsFeature;
3903
+
3904
+ /**
3905
+ * Verifies a ProtoLimitsFeature message.
3906
+ * @param message Plain object to verify
3907
+ * @returns `null` if valid, otherwise the reason why it is not
3908
+ */
3909
+ public static verify(message: { [k: string]: any }): (string|null);
3910
+
3911
+ /**
3912
+ * Creates a ProtoLimitsFeature message from a plain object. Also converts values to their respective internal types.
3913
+ * @param object Plain object
3914
+ * @returns ProtoLimitsFeature
3915
+ */
3916
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet.ProtoLimitsFeature;
3917
+
3918
+ /**
3919
+ * Creates a plain object from a ProtoLimitsFeature message. Also converts values to other types if specified.
3920
+ * @param message ProtoLimitsFeature
3921
+ * @param [options] Conversion options
3922
+ * @returns Plain object
3923
+ */
3924
+ public static toObject(message: google.protobuf.FeatureSet.ProtoLimitsFeature, options?: $protobuf.IConversionOptions): { [k: string]: any };
3925
+
3926
+ /**
3927
+ * Converts this ProtoLimitsFeature to JSON.
3928
+ * @returns JSON object
3929
+ */
3930
+ public toJSON(): { [k: string]: any };
3931
+
3932
+ /**
3933
+ * Gets the default type url for ProtoLimitsFeature
3934
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
3935
+ * @returns The default type url
3936
+ */
3937
+ public static getTypeUrl(typeUrlPrefix?: string): string;
3938
+ }
3939
+
3940
+ namespace ProtoLimitsFeature {
3941
+
3942
+ /** EnforceProtoLimits enum. */
3943
+ enum EnforceProtoLimits {
3944
+ PROTO_LIMITS_UNKNOWN = 0,
3945
+ LEGACY_NO_EXPLICIT_LIMITS = 1,
3946
+ PROTO_LIMITS2026 = 2
3947
+ }
3948
+ }
3565
3949
  }
3566
3950
 
3567
3951
  /** Properties of a FeatureSetDefaults. */
@@ -3681,8 +4065,11 @@ export namespace google {
3681
4065
  /** FeatureSetEditionDefault edition */
3682
4066
  edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
3683
4067
 
3684
- /** FeatureSetEditionDefault features */
3685
- features?: (google.protobuf.IFeatureSet|null);
4068
+ /** FeatureSetEditionDefault overridableFeatures */
4069
+ overridableFeatures?: (google.protobuf.IFeatureSet|null);
4070
+
4071
+ /** FeatureSetEditionDefault fixedFeatures */
4072
+ fixedFeatures?: (google.protobuf.IFeatureSet|null);
3686
4073
  }
3687
4074
 
3688
4075
  /** Represents a FeatureSetEditionDefault. */
@@ -3697,8 +4084,11 @@ export namespace google {
3697
4084
  /** FeatureSetEditionDefault edition. */
3698
4085
  public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
3699
4086
 
3700
- /** FeatureSetEditionDefault features. */
3701
- public features?: (google.protobuf.IFeatureSet|null);
4087
+ /** FeatureSetEditionDefault overridableFeatures. */
4088
+ public overridableFeatures?: (google.protobuf.IFeatureSet|null);
4089
+
4090
+ /** FeatureSetEditionDefault fixedFeatures. */
4091
+ public fixedFeatures?: (google.protobuf.IFeatureSet|null);
3702
4092
 
3703
4093
  /**
3704
4094
  * Creates a new FeatureSetEditionDefault instance using the specified properties.
@@ -4231,6 +4621,13 @@ export namespace google {
4231
4621
  }
4232
4622
  }
4233
4623
 
4624
+ /** SymbolVisibility enum. */
4625
+ enum SymbolVisibility {
4626
+ VISIBILITY_UNSET = 0,
4627
+ VISIBILITY_LOCAL = 1,
4628
+ VISIBILITY_EXPORT = 2
4629
+ }
4630
+
4234
4631
  /** Properties of an Any. */
4235
4632
  interface IAny {
4236
4633
 
@@ -25863,6 +26260,9 @@ export namespace google {
25863
26260
 
25864
26261
  /** CommonLanguageSettings destinations */
25865
26262
  destinations?: (google.api.ClientLibraryDestination[]|null);
26263
+
26264
+ /** CommonLanguageSettings selectiveGapicGeneration */
26265
+ selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
25866
26266
  }
25867
26267
 
25868
26268
  /** Represents a CommonLanguageSettings. */
@@ -25880,6 +26280,9 @@ export namespace google {
25880
26280
  /** CommonLanguageSettings destinations. */
25881
26281
  public destinations: google.api.ClientLibraryDestination[];
25882
26282
 
26283
+ /** CommonLanguageSettings selectiveGapicGeneration. */
26284
+ public selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
26285
+
25883
26286
  /**
25884
26287
  * Creates a new CommonLanguageSettings instance using the specified properties.
25885
26288
  * @param [properties] Properties to set
@@ -26483,6 +26886,9 @@ export namespace google {
26483
26886
 
26484
26887
  /** PhpSettings common */
26485
26888
  common?: (google.api.ICommonLanguageSettings|null);
26889
+
26890
+ /** PhpSettings libraryPackage */
26891
+ libraryPackage?: (string|null);
26486
26892
  }
26487
26893
 
26488
26894
  /** Represents a PhpSettings. */
@@ -26497,6 +26903,9 @@ export namespace google {
26497
26903
  /** PhpSettings common. */
26498
26904
  public common?: (google.api.ICommonLanguageSettings|null);
26499
26905
 
26906
+ /** PhpSettings libraryPackage. */
26907
+ public libraryPackage: string;
26908
+
26500
26909
  /**
26501
26910
  * Creates a new PhpSettings instance using the specified properties.
26502
26911
  * @param [properties] Properties to set
@@ -26580,6 +26989,9 @@ export namespace google {
26580
26989
 
26581
26990
  /** PythonSettings common */
26582
26991
  common?: (google.api.ICommonLanguageSettings|null);
26992
+
26993
+ /** PythonSettings experimentalFeatures */
26994
+ experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
26583
26995
  }
26584
26996
 
26585
26997
  /** Represents a PythonSettings. */
@@ -26594,6 +27006,9 @@ export namespace google {
26594
27006
  /** PythonSettings common. */
26595
27007
  public common?: (google.api.ICommonLanguageSettings|null);
26596
27008
 
27009
+ /** PythonSettings experimentalFeatures. */
27010
+ public experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
27011
+
26597
27012
  /**
26598
27013
  * Creates a new PythonSettings instance using the specified properties.
26599
27014
  * @param [properties] Properties to set
@@ -26672,36 +27087,148 @@ export namespace google {
26672
27087
  public static getTypeUrl(typeUrlPrefix?: string): string;
26673
27088
  }
26674
27089
 
26675
- /** Properties of a NodeSettings. */
26676
- interface INodeSettings {
27090
+ namespace PythonSettings {
26677
27091
 
26678
- /** NodeSettings common */
26679
- common?: (google.api.ICommonLanguageSettings|null);
26680
- }
27092
+ /** Properties of an ExperimentalFeatures. */
27093
+ interface IExperimentalFeatures {
26681
27094
 
26682
- /** Represents a NodeSettings. */
26683
- class NodeSettings implements INodeSettings {
27095
+ /** ExperimentalFeatures restAsyncIoEnabled */
27096
+ restAsyncIoEnabled?: (boolean|null);
26684
27097
 
26685
- /**
26686
- * Constructs a new NodeSettings.
26687
- * @param [properties] Properties to set
26688
- */
26689
- constructor(properties?: google.api.INodeSettings);
27098
+ /** ExperimentalFeatures protobufPythonicTypesEnabled */
27099
+ protobufPythonicTypesEnabled?: (boolean|null);
26690
27100
 
26691
- /** NodeSettings common. */
26692
- public common?: (google.api.ICommonLanguageSettings|null);
27101
+ /** ExperimentalFeatures unversionedPackageDisabled */
27102
+ unversionedPackageDisabled?: (boolean|null);
27103
+ }
26693
27104
 
26694
- /**
26695
- * Creates a new NodeSettings instance using the specified properties.
26696
- * @param [properties] Properties to set
26697
- * @returns NodeSettings instance
26698
- */
26699
- public static create(properties?: google.api.INodeSettings): google.api.NodeSettings;
27105
+ /** Represents an ExperimentalFeatures. */
27106
+ class ExperimentalFeatures implements IExperimentalFeatures {
26700
27107
 
26701
- /**
26702
- * Encodes the specified NodeSettings message. Does not implicitly {@link google.api.NodeSettings.verify|verify} messages.
26703
- * @param message NodeSettings message or plain object to encode
26704
- * @param [writer] Writer to encode to
27108
+ /**
27109
+ * Constructs a new ExperimentalFeatures.
27110
+ * @param [properties] Properties to set
27111
+ */
27112
+ constructor(properties?: google.api.PythonSettings.IExperimentalFeatures);
27113
+
27114
+ /** ExperimentalFeatures restAsyncIoEnabled. */
27115
+ public restAsyncIoEnabled: boolean;
27116
+
27117
+ /** ExperimentalFeatures protobufPythonicTypesEnabled. */
27118
+ public protobufPythonicTypesEnabled: boolean;
27119
+
27120
+ /** ExperimentalFeatures unversionedPackageDisabled. */
27121
+ public unversionedPackageDisabled: boolean;
27122
+
27123
+ /**
27124
+ * Creates a new ExperimentalFeatures instance using the specified properties.
27125
+ * @param [properties] Properties to set
27126
+ * @returns ExperimentalFeatures instance
27127
+ */
27128
+ public static create(properties?: google.api.PythonSettings.IExperimentalFeatures): google.api.PythonSettings.ExperimentalFeatures;
27129
+
27130
+ /**
27131
+ * Encodes the specified ExperimentalFeatures message. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
27132
+ * @param message ExperimentalFeatures message or plain object to encode
27133
+ * @param [writer] Writer to encode to
27134
+ * @returns Writer
27135
+ */
27136
+ public static encode(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
27137
+
27138
+ /**
27139
+ * Encodes the specified ExperimentalFeatures message, length delimited. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
27140
+ * @param message ExperimentalFeatures message or plain object to encode
27141
+ * @param [writer] Writer to encode to
27142
+ * @returns Writer
27143
+ */
27144
+ public static encodeDelimited(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
27145
+
27146
+ /**
27147
+ * Decodes an ExperimentalFeatures message from the specified reader or buffer.
27148
+ * @param reader Reader or buffer to decode from
27149
+ * @param [length] Message length if known beforehand
27150
+ * @returns ExperimentalFeatures
27151
+ * @throws {Error} If the payload is not a reader or valid buffer
27152
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27153
+ */
27154
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings.ExperimentalFeatures;
27155
+
27156
+ /**
27157
+ * Decodes an ExperimentalFeatures message from the specified reader or buffer, length delimited.
27158
+ * @param reader Reader or buffer to decode from
27159
+ * @returns ExperimentalFeatures
27160
+ * @throws {Error} If the payload is not a reader or valid buffer
27161
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27162
+ */
27163
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings.ExperimentalFeatures;
27164
+
27165
+ /**
27166
+ * Verifies an ExperimentalFeatures message.
27167
+ * @param message Plain object to verify
27168
+ * @returns `null` if valid, otherwise the reason why it is not
27169
+ */
27170
+ public static verify(message: { [k: string]: any }): (string|null);
27171
+
27172
+ /**
27173
+ * Creates an ExperimentalFeatures message from a plain object. Also converts values to their respective internal types.
27174
+ * @param object Plain object
27175
+ * @returns ExperimentalFeatures
27176
+ */
27177
+ public static fromObject(object: { [k: string]: any }): google.api.PythonSettings.ExperimentalFeatures;
27178
+
27179
+ /**
27180
+ * Creates a plain object from an ExperimentalFeatures message. Also converts values to other types if specified.
27181
+ * @param message ExperimentalFeatures
27182
+ * @param [options] Conversion options
27183
+ * @returns Plain object
27184
+ */
27185
+ public static toObject(message: google.api.PythonSettings.ExperimentalFeatures, options?: $protobuf.IConversionOptions): { [k: string]: any };
27186
+
27187
+ /**
27188
+ * Converts this ExperimentalFeatures to JSON.
27189
+ * @returns JSON object
27190
+ */
27191
+ public toJSON(): { [k: string]: any };
27192
+
27193
+ /**
27194
+ * Gets the default type url for ExperimentalFeatures
27195
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27196
+ * @returns The default type url
27197
+ */
27198
+ public static getTypeUrl(typeUrlPrefix?: string): string;
27199
+ }
27200
+ }
27201
+
27202
+ /** Properties of a NodeSettings. */
27203
+ interface INodeSettings {
27204
+
27205
+ /** NodeSettings common */
27206
+ common?: (google.api.ICommonLanguageSettings|null);
27207
+ }
27208
+
27209
+ /** Represents a NodeSettings. */
27210
+ class NodeSettings implements INodeSettings {
27211
+
27212
+ /**
27213
+ * Constructs a new NodeSettings.
27214
+ * @param [properties] Properties to set
27215
+ */
27216
+ constructor(properties?: google.api.INodeSettings);
27217
+
27218
+ /** NodeSettings common. */
27219
+ public common?: (google.api.ICommonLanguageSettings|null);
27220
+
27221
+ /**
27222
+ * Creates a new NodeSettings instance using the specified properties.
27223
+ * @param [properties] Properties to set
27224
+ * @returns NodeSettings instance
27225
+ */
27226
+ public static create(properties?: google.api.INodeSettings): google.api.NodeSettings;
27227
+
27228
+ /**
27229
+ * Encodes the specified NodeSettings message. Does not implicitly {@link google.api.NodeSettings.verify|verify} messages.
27230
+ * @param message NodeSettings message or plain object to encode
27231
+ * @param [writer] Writer to encode to
26705
27232
  * @returns Writer
26706
27233
  */
26707
27234
  public static encode(message: google.api.INodeSettings, writer?: $protobuf.Writer): $protobuf.Writer;
@@ -26998,6 +27525,9 @@ export namespace google {
26998
27525
 
26999
27526
  /** GoSettings common */
27000
27527
  common?: (google.api.ICommonLanguageSettings|null);
27528
+
27529
+ /** GoSettings renamedServices */
27530
+ renamedServices?: ({ [k: string]: string }|null);
27001
27531
  }
27002
27532
 
27003
27533
  /** Represents a GoSettings. */
@@ -27012,6 +27542,9 @@ export namespace google {
27012
27542
  /** GoSettings common. */
27013
27543
  public common?: (google.api.ICommonLanguageSettings|null);
27014
27544
 
27545
+ /** GoSettings renamedServices. */
27546
+ public renamedServices: { [k: string]: string };
27547
+
27015
27548
  /**
27016
27549
  * Creates a new GoSettings instance using the specified properties.
27017
27550
  * @param [properties] Properties to set
@@ -27101,6 +27634,9 @@ export namespace google {
27101
27634
 
27102
27635
  /** MethodSettings autoPopulatedFields */
27103
27636
  autoPopulatedFields?: (string[]|null);
27637
+
27638
+ /** MethodSettings batching */
27639
+ batching?: (google.api.IBatchingConfigProto|null);
27104
27640
  }
27105
27641
 
27106
27642
  /** Represents a MethodSettings. */
@@ -27121,6 +27657,9 @@ export namespace google {
27121
27657
  /** MethodSettings autoPopulatedFields. */
27122
27658
  public autoPopulatedFields: string[];
27123
27659
 
27660
+ /** MethodSettings batching. */
27661
+ public batching?: (google.api.IBatchingConfigProto|null);
27662
+
27124
27663
  /**
27125
27664
  * Creates a new MethodSettings instance using the specified properties.
27126
27665
  * @param [properties] Properties to set
@@ -27336,6 +27875,468 @@ export namespace google {
27336
27875
  PACKAGE_MANAGER = 20
27337
27876
  }
27338
27877
 
27878
+ /** Properties of a SelectiveGapicGeneration. */
27879
+ interface ISelectiveGapicGeneration {
27880
+
27881
+ /** SelectiveGapicGeneration methods */
27882
+ methods?: (string[]|null);
27883
+
27884
+ /** SelectiveGapicGeneration generateOmittedAsInternal */
27885
+ generateOmittedAsInternal?: (boolean|null);
27886
+ }
27887
+
27888
+ /** Represents a SelectiveGapicGeneration. */
27889
+ class SelectiveGapicGeneration implements ISelectiveGapicGeneration {
27890
+
27891
+ /**
27892
+ * Constructs a new SelectiveGapicGeneration.
27893
+ * @param [properties] Properties to set
27894
+ */
27895
+ constructor(properties?: google.api.ISelectiveGapicGeneration);
27896
+
27897
+ /** SelectiveGapicGeneration methods. */
27898
+ public methods: string[];
27899
+
27900
+ /** SelectiveGapicGeneration generateOmittedAsInternal. */
27901
+ public generateOmittedAsInternal: boolean;
27902
+
27903
+ /**
27904
+ * Creates a new SelectiveGapicGeneration instance using the specified properties.
27905
+ * @param [properties] Properties to set
27906
+ * @returns SelectiveGapicGeneration instance
27907
+ */
27908
+ public static create(properties?: google.api.ISelectiveGapicGeneration): google.api.SelectiveGapicGeneration;
27909
+
27910
+ /**
27911
+ * Encodes the specified SelectiveGapicGeneration message. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
27912
+ * @param message SelectiveGapicGeneration message or plain object to encode
27913
+ * @param [writer] Writer to encode to
27914
+ * @returns Writer
27915
+ */
27916
+ public static encode(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
27917
+
27918
+ /**
27919
+ * Encodes the specified SelectiveGapicGeneration message, length delimited. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
27920
+ * @param message SelectiveGapicGeneration message or plain object to encode
27921
+ * @param [writer] Writer to encode to
27922
+ * @returns Writer
27923
+ */
27924
+ public static encodeDelimited(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
27925
+
27926
+ /**
27927
+ * Decodes a SelectiveGapicGeneration message from the specified reader or buffer.
27928
+ * @param reader Reader or buffer to decode from
27929
+ * @param [length] Message length if known beforehand
27930
+ * @returns SelectiveGapicGeneration
27931
+ * @throws {Error} If the payload is not a reader or valid buffer
27932
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27933
+ */
27934
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.SelectiveGapicGeneration;
27935
+
27936
+ /**
27937
+ * Decodes a SelectiveGapicGeneration message from the specified reader or buffer, length delimited.
27938
+ * @param reader Reader or buffer to decode from
27939
+ * @returns SelectiveGapicGeneration
27940
+ * @throws {Error} If the payload is not a reader or valid buffer
27941
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27942
+ */
27943
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.SelectiveGapicGeneration;
27944
+
27945
+ /**
27946
+ * Verifies a SelectiveGapicGeneration message.
27947
+ * @param message Plain object to verify
27948
+ * @returns `null` if valid, otherwise the reason why it is not
27949
+ */
27950
+ public static verify(message: { [k: string]: any }): (string|null);
27951
+
27952
+ /**
27953
+ * Creates a SelectiveGapicGeneration message from a plain object. Also converts values to their respective internal types.
27954
+ * @param object Plain object
27955
+ * @returns SelectiveGapicGeneration
27956
+ */
27957
+ public static fromObject(object: { [k: string]: any }): google.api.SelectiveGapicGeneration;
27958
+
27959
+ /**
27960
+ * Creates a plain object from a SelectiveGapicGeneration message. Also converts values to other types if specified.
27961
+ * @param message SelectiveGapicGeneration
27962
+ * @param [options] Conversion options
27963
+ * @returns Plain object
27964
+ */
27965
+ public static toObject(message: google.api.SelectiveGapicGeneration, options?: $protobuf.IConversionOptions): { [k: string]: any };
27966
+
27967
+ /**
27968
+ * Converts this SelectiveGapicGeneration to JSON.
27969
+ * @returns JSON object
27970
+ */
27971
+ public toJSON(): { [k: string]: any };
27972
+
27973
+ /**
27974
+ * Gets the default type url for SelectiveGapicGeneration
27975
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27976
+ * @returns The default type url
27977
+ */
27978
+ public static getTypeUrl(typeUrlPrefix?: string): string;
27979
+ }
27980
+
27981
+ /** Properties of a BatchingConfigProto. */
27982
+ interface IBatchingConfigProto {
27983
+
27984
+ /** BatchingConfigProto thresholds */
27985
+ thresholds?: (google.api.IBatchingSettingsProto|null);
27986
+
27987
+ /** BatchingConfigProto batchDescriptor */
27988
+ batchDescriptor?: (google.api.IBatchingDescriptorProto|null);
27989
+ }
27990
+
27991
+ /** Represents a BatchingConfigProto. */
27992
+ class BatchingConfigProto implements IBatchingConfigProto {
27993
+
27994
+ /**
27995
+ * Constructs a new BatchingConfigProto.
27996
+ * @param [properties] Properties to set
27997
+ */
27998
+ constructor(properties?: google.api.IBatchingConfigProto);
27999
+
28000
+ /** BatchingConfigProto thresholds. */
28001
+ public thresholds?: (google.api.IBatchingSettingsProto|null);
28002
+
28003
+ /** BatchingConfigProto batchDescriptor. */
28004
+ public batchDescriptor?: (google.api.IBatchingDescriptorProto|null);
28005
+
28006
+ /**
28007
+ * Creates a new BatchingConfigProto instance using the specified properties.
28008
+ * @param [properties] Properties to set
28009
+ * @returns BatchingConfigProto instance
28010
+ */
28011
+ public static create(properties?: google.api.IBatchingConfigProto): google.api.BatchingConfigProto;
28012
+
28013
+ /**
28014
+ * Encodes the specified BatchingConfigProto message. Does not implicitly {@link google.api.BatchingConfigProto.verify|verify} messages.
28015
+ * @param message BatchingConfigProto message or plain object to encode
28016
+ * @param [writer] Writer to encode to
28017
+ * @returns Writer
28018
+ */
28019
+ public static encode(message: google.api.IBatchingConfigProto, writer?: $protobuf.Writer): $protobuf.Writer;
28020
+
28021
+ /**
28022
+ * Encodes the specified BatchingConfigProto message, length delimited. Does not implicitly {@link google.api.BatchingConfigProto.verify|verify} messages.
28023
+ * @param message BatchingConfigProto message or plain object to encode
28024
+ * @param [writer] Writer to encode to
28025
+ * @returns Writer
28026
+ */
28027
+ public static encodeDelimited(message: google.api.IBatchingConfigProto, writer?: $protobuf.Writer): $protobuf.Writer;
28028
+
28029
+ /**
28030
+ * Decodes a BatchingConfigProto message from the specified reader or buffer.
28031
+ * @param reader Reader or buffer to decode from
28032
+ * @param [length] Message length if known beforehand
28033
+ * @returns BatchingConfigProto
28034
+ * @throws {Error} If the payload is not a reader or valid buffer
28035
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28036
+ */
28037
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingConfigProto;
28038
+
28039
+ /**
28040
+ * Decodes a BatchingConfigProto message from the specified reader or buffer, length delimited.
28041
+ * @param reader Reader or buffer to decode from
28042
+ * @returns BatchingConfigProto
28043
+ * @throws {Error} If the payload is not a reader or valid buffer
28044
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28045
+ */
28046
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingConfigProto;
28047
+
28048
+ /**
28049
+ * Verifies a BatchingConfigProto message.
28050
+ * @param message Plain object to verify
28051
+ * @returns `null` if valid, otherwise the reason why it is not
28052
+ */
28053
+ public static verify(message: { [k: string]: any }): (string|null);
28054
+
28055
+ /**
28056
+ * Creates a BatchingConfigProto message from a plain object. Also converts values to their respective internal types.
28057
+ * @param object Plain object
28058
+ * @returns BatchingConfigProto
28059
+ */
28060
+ public static fromObject(object: { [k: string]: any }): google.api.BatchingConfigProto;
28061
+
28062
+ /**
28063
+ * Creates a plain object from a BatchingConfigProto message. Also converts values to other types if specified.
28064
+ * @param message BatchingConfigProto
28065
+ * @param [options] Conversion options
28066
+ * @returns Plain object
28067
+ */
28068
+ public static toObject(message: google.api.BatchingConfigProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
28069
+
28070
+ /**
28071
+ * Converts this BatchingConfigProto to JSON.
28072
+ * @returns JSON object
28073
+ */
28074
+ public toJSON(): { [k: string]: any };
28075
+
28076
+ /**
28077
+ * Gets the default type url for BatchingConfigProto
28078
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
28079
+ * @returns The default type url
28080
+ */
28081
+ public static getTypeUrl(typeUrlPrefix?: string): string;
28082
+ }
28083
+
28084
+ /** Properties of a BatchingSettingsProto. */
28085
+ interface IBatchingSettingsProto {
28086
+
28087
+ /** BatchingSettingsProto elementCountThreshold */
28088
+ elementCountThreshold?: (number|null);
28089
+
28090
+ /** BatchingSettingsProto requestByteThreshold */
28091
+ requestByteThreshold?: (number|Long|string|null);
28092
+
28093
+ /** BatchingSettingsProto delayThreshold */
28094
+ delayThreshold?: (google.protobuf.IDuration|null);
28095
+
28096
+ /** BatchingSettingsProto elementCountLimit */
28097
+ elementCountLimit?: (number|null);
28098
+
28099
+ /** BatchingSettingsProto requestByteLimit */
28100
+ requestByteLimit?: (number|null);
28101
+
28102
+ /** BatchingSettingsProto flowControlElementLimit */
28103
+ flowControlElementLimit?: (number|null);
28104
+
28105
+ /** BatchingSettingsProto flowControlByteLimit */
28106
+ flowControlByteLimit?: (number|null);
28107
+
28108
+ /** BatchingSettingsProto flowControlLimitExceededBehavior */
28109
+ flowControlLimitExceededBehavior?: (google.api.FlowControlLimitExceededBehaviorProto|keyof typeof google.api.FlowControlLimitExceededBehaviorProto|null);
28110
+ }
28111
+
28112
+ /** Represents a BatchingSettingsProto. */
28113
+ class BatchingSettingsProto implements IBatchingSettingsProto {
28114
+
28115
+ /**
28116
+ * Constructs a new BatchingSettingsProto.
28117
+ * @param [properties] Properties to set
28118
+ */
28119
+ constructor(properties?: google.api.IBatchingSettingsProto);
28120
+
28121
+ /** BatchingSettingsProto elementCountThreshold. */
28122
+ public elementCountThreshold: number;
28123
+
28124
+ /** BatchingSettingsProto requestByteThreshold. */
28125
+ public requestByteThreshold: (number|Long|string);
28126
+
28127
+ /** BatchingSettingsProto delayThreshold. */
28128
+ public delayThreshold?: (google.protobuf.IDuration|null);
28129
+
28130
+ /** BatchingSettingsProto elementCountLimit. */
28131
+ public elementCountLimit: number;
28132
+
28133
+ /** BatchingSettingsProto requestByteLimit. */
28134
+ public requestByteLimit: number;
28135
+
28136
+ /** BatchingSettingsProto flowControlElementLimit. */
28137
+ public flowControlElementLimit: number;
28138
+
28139
+ /** BatchingSettingsProto flowControlByteLimit. */
28140
+ public flowControlByteLimit: number;
28141
+
28142
+ /** BatchingSettingsProto flowControlLimitExceededBehavior. */
28143
+ public flowControlLimitExceededBehavior: (google.api.FlowControlLimitExceededBehaviorProto|keyof typeof google.api.FlowControlLimitExceededBehaviorProto);
28144
+
28145
+ /**
28146
+ * Creates a new BatchingSettingsProto instance using the specified properties.
28147
+ * @param [properties] Properties to set
28148
+ * @returns BatchingSettingsProto instance
28149
+ */
28150
+ public static create(properties?: google.api.IBatchingSettingsProto): google.api.BatchingSettingsProto;
28151
+
28152
+ /**
28153
+ * Encodes the specified BatchingSettingsProto message. Does not implicitly {@link google.api.BatchingSettingsProto.verify|verify} messages.
28154
+ * @param message BatchingSettingsProto message or plain object to encode
28155
+ * @param [writer] Writer to encode to
28156
+ * @returns Writer
28157
+ */
28158
+ public static encode(message: google.api.IBatchingSettingsProto, writer?: $protobuf.Writer): $protobuf.Writer;
28159
+
28160
+ /**
28161
+ * Encodes the specified BatchingSettingsProto message, length delimited. Does not implicitly {@link google.api.BatchingSettingsProto.verify|verify} messages.
28162
+ * @param message BatchingSettingsProto message or plain object to encode
28163
+ * @param [writer] Writer to encode to
28164
+ * @returns Writer
28165
+ */
28166
+ public static encodeDelimited(message: google.api.IBatchingSettingsProto, writer?: $protobuf.Writer): $protobuf.Writer;
28167
+
28168
+ /**
28169
+ * Decodes a BatchingSettingsProto message from the specified reader or buffer.
28170
+ * @param reader Reader or buffer to decode from
28171
+ * @param [length] Message length if known beforehand
28172
+ * @returns BatchingSettingsProto
28173
+ * @throws {Error} If the payload is not a reader or valid buffer
28174
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28175
+ */
28176
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingSettingsProto;
28177
+
28178
+ /**
28179
+ * Decodes a BatchingSettingsProto message from the specified reader or buffer, length delimited.
28180
+ * @param reader Reader or buffer to decode from
28181
+ * @returns BatchingSettingsProto
28182
+ * @throws {Error} If the payload is not a reader or valid buffer
28183
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28184
+ */
28185
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingSettingsProto;
28186
+
28187
+ /**
28188
+ * Verifies a BatchingSettingsProto message.
28189
+ * @param message Plain object to verify
28190
+ * @returns `null` if valid, otherwise the reason why it is not
28191
+ */
28192
+ public static verify(message: { [k: string]: any }): (string|null);
28193
+
28194
+ /**
28195
+ * Creates a BatchingSettingsProto message from a plain object. Also converts values to their respective internal types.
28196
+ * @param object Plain object
28197
+ * @returns BatchingSettingsProto
28198
+ */
28199
+ public static fromObject(object: { [k: string]: any }): google.api.BatchingSettingsProto;
28200
+
28201
+ /**
28202
+ * Creates a plain object from a BatchingSettingsProto message. Also converts values to other types if specified.
28203
+ * @param message BatchingSettingsProto
28204
+ * @param [options] Conversion options
28205
+ * @returns Plain object
28206
+ */
28207
+ public static toObject(message: google.api.BatchingSettingsProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
28208
+
28209
+ /**
28210
+ * Converts this BatchingSettingsProto to JSON.
28211
+ * @returns JSON object
28212
+ */
28213
+ public toJSON(): { [k: string]: any };
28214
+
28215
+ /**
28216
+ * Gets the default type url for BatchingSettingsProto
28217
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
28218
+ * @returns The default type url
28219
+ */
28220
+ public static getTypeUrl(typeUrlPrefix?: string): string;
28221
+ }
28222
+
28223
+ /** FlowControlLimitExceededBehaviorProto enum. */
28224
+ enum FlowControlLimitExceededBehaviorProto {
28225
+ UNSET_BEHAVIOR = 0,
28226
+ THROW_EXCEPTION = 1,
28227
+ BLOCK = 2,
28228
+ IGNORE = 3
28229
+ }
28230
+
28231
+ /** Properties of a BatchingDescriptorProto. */
28232
+ interface IBatchingDescriptorProto {
28233
+
28234
+ /** BatchingDescriptorProto batchedField */
28235
+ batchedField?: (string|null);
28236
+
28237
+ /** BatchingDescriptorProto discriminatorFields */
28238
+ discriminatorFields?: (string[]|null);
28239
+
28240
+ /** BatchingDescriptorProto subresponseField */
28241
+ subresponseField?: (string|null);
28242
+ }
28243
+
28244
+ /** Represents a BatchingDescriptorProto. */
28245
+ class BatchingDescriptorProto implements IBatchingDescriptorProto {
28246
+
28247
+ /**
28248
+ * Constructs a new BatchingDescriptorProto.
28249
+ * @param [properties] Properties to set
28250
+ */
28251
+ constructor(properties?: google.api.IBatchingDescriptorProto);
28252
+
28253
+ /** BatchingDescriptorProto batchedField. */
28254
+ public batchedField: string;
28255
+
28256
+ /** BatchingDescriptorProto discriminatorFields. */
28257
+ public discriminatorFields: string[];
28258
+
28259
+ /** BatchingDescriptorProto subresponseField. */
28260
+ public subresponseField: string;
28261
+
28262
+ /**
28263
+ * Creates a new BatchingDescriptorProto instance using the specified properties.
28264
+ * @param [properties] Properties to set
28265
+ * @returns BatchingDescriptorProto instance
28266
+ */
28267
+ public static create(properties?: google.api.IBatchingDescriptorProto): google.api.BatchingDescriptorProto;
28268
+
28269
+ /**
28270
+ * Encodes the specified BatchingDescriptorProto message. Does not implicitly {@link google.api.BatchingDescriptorProto.verify|verify} messages.
28271
+ * @param message BatchingDescriptorProto message or plain object to encode
28272
+ * @param [writer] Writer to encode to
28273
+ * @returns Writer
28274
+ */
28275
+ public static encode(message: google.api.IBatchingDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer;
28276
+
28277
+ /**
28278
+ * Encodes the specified BatchingDescriptorProto message, length delimited. Does not implicitly {@link google.api.BatchingDescriptorProto.verify|verify} messages.
28279
+ * @param message BatchingDescriptorProto message or plain object to encode
28280
+ * @param [writer] Writer to encode to
28281
+ * @returns Writer
28282
+ */
28283
+ public static encodeDelimited(message: google.api.IBatchingDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer;
28284
+
28285
+ /**
28286
+ * Decodes a BatchingDescriptorProto message from the specified reader or buffer.
28287
+ * @param reader Reader or buffer to decode from
28288
+ * @param [length] Message length if known beforehand
28289
+ * @returns BatchingDescriptorProto
28290
+ * @throws {Error} If the payload is not a reader or valid buffer
28291
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28292
+ */
28293
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingDescriptorProto;
28294
+
28295
+ /**
28296
+ * Decodes a BatchingDescriptorProto message from the specified reader or buffer, length delimited.
28297
+ * @param reader Reader or buffer to decode from
28298
+ * @returns BatchingDescriptorProto
28299
+ * @throws {Error} If the payload is not a reader or valid buffer
28300
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
28301
+ */
28302
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingDescriptorProto;
28303
+
28304
+ /**
28305
+ * Verifies a BatchingDescriptorProto message.
28306
+ * @param message Plain object to verify
28307
+ * @returns `null` if valid, otherwise the reason why it is not
28308
+ */
28309
+ public static verify(message: { [k: string]: any }): (string|null);
28310
+
28311
+ /**
28312
+ * Creates a BatchingDescriptorProto message from a plain object. Also converts values to their respective internal types.
28313
+ * @param object Plain object
28314
+ * @returns BatchingDescriptorProto
28315
+ */
28316
+ public static fromObject(object: { [k: string]: any }): google.api.BatchingDescriptorProto;
28317
+
28318
+ /**
28319
+ * Creates a plain object from a BatchingDescriptorProto message. Also converts values to other types if specified.
28320
+ * @param message BatchingDescriptorProto
28321
+ * @param [options] Conversion options
28322
+ * @returns Plain object
28323
+ */
28324
+ public static toObject(message: google.api.BatchingDescriptorProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
28325
+
28326
+ /**
28327
+ * Converts this BatchingDescriptorProto to JSON.
28328
+ * @returns JSON object
28329
+ */
28330
+ public toJSON(): { [k: string]: any };
28331
+
28332
+ /**
28333
+ * Gets the default type url for BatchingDescriptorProto
28334
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
28335
+ * @returns The default type url
28336
+ */
28337
+ public static getTypeUrl(typeUrlPrefix?: string): string;
28338
+ }
28339
+
27339
28340
  /** LaunchStage enum. */
27340
28341
  enum LaunchStage {
27341
28342
  LAUNCH_STAGE_UNSPECIFIED = 0,
@@ -27981,6 +28982,9 @@ export namespace google {
27981
28982
 
27982
28983
  /** ListOperationsRequest pageToken */
27983
28984
  pageToken?: (string|null);
28985
+
28986
+ /** ListOperationsRequest returnPartialSuccess */
28987
+ returnPartialSuccess?: (boolean|null);
27984
28988
  }
27985
28989
 
27986
28990
  /** Represents a ListOperationsRequest. */
@@ -28004,6 +29008,9 @@ export namespace google {
28004
29008
  /** ListOperationsRequest pageToken. */
28005
29009
  public pageToken: string;
28006
29010
 
29011
+ /** ListOperationsRequest returnPartialSuccess. */
29012
+ public returnPartialSuccess: boolean;
29013
+
28007
29014
  /**
28008
29015
  * Creates a new ListOperationsRequest instance using the specified properties.
28009
29016
  * @param [properties] Properties to set
@@ -28090,6 +29097,9 @@ export namespace google {
28090
29097
 
28091
29098
  /** ListOperationsResponse nextPageToken */
28092
29099
  nextPageToken?: (string|null);
29100
+
29101
+ /** ListOperationsResponse unreachable */
29102
+ unreachable?: (string[]|null);
28093
29103
  }
28094
29104
 
28095
29105
  /** Represents a ListOperationsResponse. */
@@ -28107,6 +29117,9 @@ export namespace google {
28107
29117
  /** ListOperationsResponse nextPageToken. */
28108
29118
  public nextPageToken: string;
28109
29119
 
29120
+ /** ListOperationsResponse unreachable. */
29121
+ public unreachable: string[];
29122
+
28110
29123
  /**
28111
29124
  * Creates a new ListOperationsResponse instance using the specified properties.
28112
29125
  * @param [properties] Properties to set