@google-analytics/data 6.0.0 → 7.0.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,6 +223,7 @@ 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,
@@ -253,6 +254,9 @@ export namespace google {
253
254
  /** FileDescriptorProto weakDependency */
254
255
  weakDependency?: (number[]|null);
255
256
 
257
+ /** FileDescriptorProto optionDependency */
258
+ optionDependency?: (string[]|null);
259
+
256
260
  /** FileDescriptorProto messageType */
257
261
  messageType?: (google.protobuf.IDescriptorProto[]|null);
258
262
 
@@ -302,6 +306,9 @@ export namespace google {
302
306
  /** FileDescriptorProto weakDependency. */
303
307
  public weakDependency: number[];
304
308
 
309
+ /** FileDescriptorProto optionDependency. */
310
+ public optionDependency: string[];
311
+
305
312
  /** FileDescriptorProto messageType. */
306
313
  public messageType: google.protobuf.IDescriptorProto[];
307
314
 
@@ -436,6 +443,9 @@ export namespace google {
436
443
 
437
444
  /** DescriptorProto reservedName */
438
445
  reservedName?: (string[]|null);
446
+
447
+ /** DescriptorProto visibility */
448
+ visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
439
449
  }
440
450
 
441
451
  /** Represents a DescriptorProto. */
@@ -477,6 +487,9 @@ export namespace google {
477
487
  /** DescriptorProto reservedName. */
478
488
  public reservedName: string[];
479
489
 
490
+ /** DescriptorProto visibility. */
491
+ public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
492
+
480
493
  /**
481
494
  * Creates a new DescriptorProto instance using the specified properties.
482
495
  * @param [properties] Properties to set
@@ -1324,6 +1337,9 @@ export namespace google {
1324
1337
 
1325
1338
  /** EnumDescriptorProto reservedName */
1326
1339
  reservedName?: (string[]|null);
1340
+
1341
+ /** EnumDescriptorProto visibility */
1342
+ visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
1327
1343
  }
1328
1344
 
1329
1345
  /** Represents an EnumDescriptorProto. */
@@ -1350,6 +1366,9 @@ export namespace google {
1350
1366
  /** EnumDescriptorProto reservedName. */
1351
1367
  public reservedName: string[];
1352
1368
 
1369
+ /** EnumDescriptorProto visibility. */
1370
+ public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
1371
+
1353
1372
  /**
1354
1373
  * Creates a new EnumDescriptorProto instance using the specified properties.
1355
1374
  * @param [properties] Properties to set
@@ -2284,6 +2303,9 @@ export namespace google {
2284
2303
  /** FieldOptions features */
2285
2304
  features?: (google.protobuf.IFeatureSet|null);
2286
2305
 
2306
+ /** FieldOptions featureSupport */
2307
+ featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
2308
+
2287
2309
  /** FieldOptions uninterpretedOption */
2288
2310
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
2289
2311
 
@@ -2339,6 +2361,9 @@ export namespace google {
2339
2361
  /** FieldOptions features. */
2340
2362
  public features?: (google.protobuf.IFeatureSet|null);
2341
2363
 
2364
+ /** FieldOptions featureSupport. */
2365
+ public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
2366
+
2342
2367
  /** FieldOptions uninterpretedOption. */
2343
2368
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
2344
2369
 
@@ -2559,6 +2584,121 @@ export namespace google {
2559
2584
  */
2560
2585
  public static getTypeUrl(typeUrlPrefix?: string): string;
2561
2586
  }
2587
+
2588
+ /** Properties of a FeatureSupport. */
2589
+ interface IFeatureSupport {
2590
+
2591
+ /** FeatureSupport editionIntroduced */
2592
+ editionIntroduced?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
2593
+
2594
+ /** FeatureSupport editionDeprecated */
2595
+ editionDeprecated?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
2596
+
2597
+ /** FeatureSupport deprecationWarning */
2598
+ deprecationWarning?: (string|null);
2599
+
2600
+ /** FeatureSupport editionRemoved */
2601
+ editionRemoved?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
2602
+ }
2603
+
2604
+ /** Represents a FeatureSupport. */
2605
+ class FeatureSupport implements IFeatureSupport {
2606
+
2607
+ /**
2608
+ * Constructs a new FeatureSupport.
2609
+ * @param [properties] Properties to set
2610
+ */
2611
+ constructor(properties?: google.protobuf.FieldOptions.IFeatureSupport);
2612
+
2613
+ /** FeatureSupport editionIntroduced. */
2614
+ public editionIntroduced: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
2615
+
2616
+ /** FeatureSupport editionDeprecated. */
2617
+ public editionDeprecated: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
2618
+
2619
+ /** FeatureSupport deprecationWarning. */
2620
+ public deprecationWarning: string;
2621
+
2622
+ /** FeatureSupport editionRemoved. */
2623
+ public editionRemoved: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
2624
+
2625
+ /**
2626
+ * Creates a new FeatureSupport instance using the specified properties.
2627
+ * @param [properties] Properties to set
2628
+ * @returns FeatureSupport instance
2629
+ */
2630
+ public static create(properties?: google.protobuf.FieldOptions.IFeatureSupport): google.protobuf.FieldOptions.FeatureSupport;
2631
+
2632
+ /**
2633
+ * Encodes the specified FeatureSupport message. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
2634
+ * @param message FeatureSupport message or plain object to encode
2635
+ * @param [writer] Writer to encode to
2636
+ * @returns Writer
2637
+ */
2638
+ public static encode(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
2639
+
2640
+ /**
2641
+ * Encodes the specified FeatureSupport message, length delimited. 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 encodeDelimited(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
2647
+
2648
+ /**
2649
+ * Decodes a FeatureSupport message from the specified reader or buffer.
2650
+ * @param reader Reader or buffer to decode from
2651
+ * @param [length] Message length if known beforehand
2652
+ * @returns FeatureSupport
2653
+ * @throws {Error} If the payload is not a reader or valid buffer
2654
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2655
+ */
2656
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions.FeatureSupport;
2657
+
2658
+ /**
2659
+ * Decodes a FeatureSupport message from the specified reader or buffer, length delimited.
2660
+ * @param reader Reader or buffer to decode from
2661
+ * @returns FeatureSupport
2662
+ * @throws {Error} If the payload is not a reader or valid buffer
2663
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
2664
+ */
2665
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions.FeatureSupport;
2666
+
2667
+ /**
2668
+ * Verifies a FeatureSupport message.
2669
+ * @param message Plain object to verify
2670
+ * @returns `null` if valid, otherwise the reason why it is not
2671
+ */
2672
+ public static verify(message: { [k: string]: any }): (string|null);
2673
+
2674
+ /**
2675
+ * Creates a FeatureSupport message from a plain object. Also converts values to their respective internal types.
2676
+ * @param object Plain object
2677
+ * @returns FeatureSupport
2678
+ */
2679
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.FeatureSupport;
2680
+
2681
+ /**
2682
+ * Creates a plain object from a FeatureSupport message. Also converts values to other types if specified.
2683
+ * @param message FeatureSupport
2684
+ * @param [options] Conversion options
2685
+ * @returns Plain object
2686
+ */
2687
+ public static toObject(message: google.protobuf.FieldOptions.FeatureSupport, options?: $protobuf.IConversionOptions): { [k: string]: any };
2688
+
2689
+ /**
2690
+ * Converts this FeatureSupport to JSON.
2691
+ * @returns JSON object
2692
+ */
2693
+ public toJSON(): { [k: string]: any };
2694
+
2695
+ /**
2696
+ * Gets the default type url for FeatureSupport
2697
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
2698
+ * @returns The default type url
2699
+ */
2700
+ public static getTypeUrl(typeUrlPrefix?: string): string;
2701
+ }
2562
2702
  }
2563
2703
 
2564
2704
  /** Properties of an OneofOptions. */
@@ -2797,6 +2937,9 @@ export namespace google {
2797
2937
  /** EnumValueOptions debugRedact */
2798
2938
  debugRedact?: (boolean|null);
2799
2939
 
2940
+ /** EnumValueOptions featureSupport */
2941
+ featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
2942
+
2800
2943
  /** EnumValueOptions uninterpretedOption */
2801
2944
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
2802
2945
  }
@@ -2819,6 +2962,9 @@ export namespace google {
2819
2962
  /** EnumValueOptions debugRedact. */
2820
2963
  public debugRedact: boolean;
2821
2964
 
2965
+ /** EnumValueOptions featureSupport. */
2966
+ public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
2967
+
2822
2968
  /** EnumValueOptions uninterpretedOption. */
2823
2969
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
2824
2970
 
@@ -3411,6 +3557,12 @@ export namespace google {
3411
3557
 
3412
3558
  /** FeatureSet jsonFormat */
3413
3559
  jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
3560
+
3561
+ /** FeatureSet enforceNamingStyle */
3562
+ enforceNamingStyle?: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle|null);
3563
+
3564
+ /** FeatureSet defaultSymbolVisibility */
3565
+ defaultSymbolVisibility?: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|null);
3414
3566
  }
3415
3567
 
3416
3568
  /** Represents a FeatureSet. */
@@ -3440,6 +3592,12 @@ export namespace google {
3440
3592
  /** FeatureSet jsonFormat. */
3441
3593
  public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
3442
3594
 
3595
+ /** FeatureSet enforceNamingStyle. */
3596
+ public enforceNamingStyle: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle);
3597
+
3598
+ /** FeatureSet defaultSymbolVisibility. */
3599
+ public defaultSymbolVisibility: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility);
3600
+
3443
3601
  /**
3444
3602
  * Creates a new FeatureSet instance using the specified properties.
3445
3603
  * @param [properties] Properties to set
@@ -3562,6 +3720,116 @@ export namespace google {
3562
3720
  ALLOW = 1,
3563
3721
  LEGACY_BEST_EFFORT = 2
3564
3722
  }
3723
+
3724
+ /** EnforceNamingStyle enum. */
3725
+ enum EnforceNamingStyle {
3726
+ ENFORCE_NAMING_STYLE_UNKNOWN = 0,
3727
+ STYLE2024 = 1,
3728
+ STYLE_LEGACY = 2
3729
+ }
3730
+
3731
+ /** Properties of a VisibilityFeature. */
3732
+ interface IVisibilityFeature {
3733
+ }
3734
+
3735
+ /** Represents a VisibilityFeature. */
3736
+ class VisibilityFeature implements IVisibilityFeature {
3737
+
3738
+ /**
3739
+ * Constructs a new VisibilityFeature.
3740
+ * @param [properties] Properties to set
3741
+ */
3742
+ constructor(properties?: google.protobuf.FeatureSet.IVisibilityFeature);
3743
+
3744
+ /**
3745
+ * Creates a new VisibilityFeature instance using the specified properties.
3746
+ * @param [properties] Properties to set
3747
+ * @returns VisibilityFeature instance
3748
+ */
3749
+ public static create(properties?: google.protobuf.FeatureSet.IVisibilityFeature): google.protobuf.FeatureSet.VisibilityFeature;
3750
+
3751
+ /**
3752
+ * Encodes the specified VisibilityFeature message. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
3753
+ * @param message VisibilityFeature message or plain object to encode
3754
+ * @param [writer] Writer to encode to
3755
+ * @returns Writer
3756
+ */
3757
+ public static encode(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
3758
+
3759
+ /**
3760
+ * Encodes the specified VisibilityFeature message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
3761
+ * @param message VisibilityFeature message or plain object to encode
3762
+ * @param [writer] Writer to encode to
3763
+ * @returns Writer
3764
+ */
3765
+ public static encodeDelimited(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
3766
+
3767
+ /**
3768
+ * Decodes a VisibilityFeature message from the specified reader or buffer.
3769
+ * @param reader Reader or buffer to decode from
3770
+ * @param [length] Message length if known beforehand
3771
+ * @returns VisibilityFeature
3772
+ * @throws {Error} If the payload is not a reader or valid buffer
3773
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3774
+ */
3775
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet.VisibilityFeature;
3776
+
3777
+ /**
3778
+ * Decodes a VisibilityFeature message from the specified reader or buffer, length delimited.
3779
+ * @param reader Reader or buffer to decode from
3780
+ * @returns VisibilityFeature
3781
+ * @throws {Error} If the payload is not a reader or valid buffer
3782
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
3783
+ */
3784
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet.VisibilityFeature;
3785
+
3786
+ /**
3787
+ * Verifies a VisibilityFeature message.
3788
+ * @param message Plain object to verify
3789
+ * @returns `null` if valid, otherwise the reason why it is not
3790
+ */
3791
+ public static verify(message: { [k: string]: any }): (string|null);
3792
+
3793
+ /**
3794
+ * Creates a VisibilityFeature message from a plain object. Also converts values to their respective internal types.
3795
+ * @param object Plain object
3796
+ * @returns VisibilityFeature
3797
+ */
3798
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet.VisibilityFeature;
3799
+
3800
+ /**
3801
+ * Creates a plain object from a VisibilityFeature message. Also converts values to other types if specified.
3802
+ * @param message VisibilityFeature
3803
+ * @param [options] Conversion options
3804
+ * @returns Plain object
3805
+ */
3806
+ public static toObject(message: google.protobuf.FeatureSet.VisibilityFeature, options?: $protobuf.IConversionOptions): { [k: string]: any };
3807
+
3808
+ /**
3809
+ * Converts this VisibilityFeature to JSON.
3810
+ * @returns JSON object
3811
+ */
3812
+ public toJSON(): { [k: string]: any };
3813
+
3814
+ /**
3815
+ * Gets the default type url for VisibilityFeature
3816
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
3817
+ * @returns The default type url
3818
+ */
3819
+ public static getTypeUrl(typeUrlPrefix?: string): string;
3820
+ }
3821
+
3822
+ namespace VisibilityFeature {
3823
+
3824
+ /** DefaultSymbolVisibility enum. */
3825
+ enum DefaultSymbolVisibility {
3826
+ DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0,
3827
+ EXPORT_ALL = 1,
3828
+ EXPORT_TOP_LEVEL = 2,
3829
+ LOCAL_ALL = 3,
3830
+ STRICT = 4
3831
+ }
3832
+ }
3565
3833
  }
3566
3834
 
3567
3835
  /** Properties of a FeatureSetDefaults. */
@@ -3681,8 +3949,11 @@ export namespace google {
3681
3949
  /** FeatureSetEditionDefault edition */
3682
3950
  edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
3683
3951
 
3684
- /** FeatureSetEditionDefault features */
3685
- features?: (google.protobuf.IFeatureSet|null);
3952
+ /** FeatureSetEditionDefault overridableFeatures */
3953
+ overridableFeatures?: (google.protobuf.IFeatureSet|null);
3954
+
3955
+ /** FeatureSetEditionDefault fixedFeatures */
3956
+ fixedFeatures?: (google.protobuf.IFeatureSet|null);
3686
3957
  }
3687
3958
 
3688
3959
  /** Represents a FeatureSetEditionDefault. */
@@ -3697,8 +3968,11 @@ export namespace google {
3697
3968
  /** FeatureSetEditionDefault edition. */
3698
3969
  public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
3699
3970
 
3700
- /** FeatureSetEditionDefault features. */
3701
- public features?: (google.protobuf.IFeatureSet|null);
3971
+ /** FeatureSetEditionDefault overridableFeatures. */
3972
+ public overridableFeatures?: (google.protobuf.IFeatureSet|null);
3973
+
3974
+ /** FeatureSetEditionDefault fixedFeatures. */
3975
+ public fixedFeatures?: (google.protobuf.IFeatureSet|null);
3702
3976
 
3703
3977
  /**
3704
3978
  * Creates a new FeatureSetEditionDefault instance using the specified properties.
@@ -4231,6 +4505,13 @@ export namespace google {
4231
4505
  }
4232
4506
  }
4233
4507
 
4508
+ /** SymbolVisibility enum. */
4509
+ enum SymbolVisibility {
4510
+ VISIBILITY_UNSET = 0,
4511
+ VISIBILITY_LOCAL = 1,
4512
+ VISIBILITY_EXPORT = 2
4513
+ }
4514
+
4234
4515
  /** Properties of an Any. */
4235
4516
  interface IAny {
4236
4517
 
@@ -25863,6 +26144,9 @@ export namespace google {
25863
26144
 
25864
26145
  /** CommonLanguageSettings destinations */
25865
26146
  destinations?: (google.api.ClientLibraryDestination[]|null);
26147
+
26148
+ /** CommonLanguageSettings selectiveGapicGeneration */
26149
+ selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
25866
26150
  }
25867
26151
 
25868
26152
  /** Represents a CommonLanguageSettings. */
@@ -25880,6 +26164,9 @@ export namespace google {
25880
26164
  /** CommonLanguageSettings destinations. */
25881
26165
  public destinations: google.api.ClientLibraryDestination[];
25882
26166
 
26167
+ /** CommonLanguageSettings selectiveGapicGeneration. */
26168
+ public selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
26169
+
25883
26170
  /**
25884
26171
  * Creates a new CommonLanguageSettings instance using the specified properties.
25885
26172
  * @param [properties] Properties to set
@@ -26580,6 +26867,9 @@ export namespace google {
26580
26867
 
26581
26868
  /** PythonSettings common */
26582
26869
  common?: (google.api.ICommonLanguageSettings|null);
26870
+
26871
+ /** PythonSettings experimentalFeatures */
26872
+ experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
26583
26873
  }
26584
26874
 
26585
26875
  /** Represents a PythonSettings. */
@@ -26594,6 +26884,9 @@ export namespace google {
26594
26884
  /** PythonSettings common. */
26595
26885
  public common?: (google.api.ICommonLanguageSettings|null);
26596
26886
 
26887
+ /** PythonSettings experimentalFeatures. */
26888
+ public experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
26889
+
26597
26890
  /**
26598
26891
  * Creates a new PythonSettings instance using the specified properties.
26599
26892
  * @param [properties] Properties to set
@@ -26672,6 +26965,118 @@ export namespace google {
26672
26965
  public static getTypeUrl(typeUrlPrefix?: string): string;
26673
26966
  }
26674
26967
 
26968
+ namespace PythonSettings {
26969
+
26970
+ /** Properties of an ExperimentalFeatures. */
26971
+ interface IExperimentalFeatures {
26972
+
26973
+ /** ExperimentalFeatures restAsyncIoEnabled */
26974
+ restAsyncIoEnabled?: (boolean|null);
26975
+
26976
+ /** ExperimentalFeatures protobufPythonicTypesEnabled */
26977
+ protobufPythonicTypesEnabled?: (boolean|null);
26978
+
26979
+ /** ExperimentalFeatures unversionedPackageDisabled */
26980
+ unversionedPackageDisabled?: (boolean|null);
26981
+ }
26982
+
26983
+ /** Represents an ExperimentalFeatures. */
26984
+ class ExperimentalFeatures implements IExperimentalFeatures {
26985
+
26986
+ /**
26987
+ * Constructs a new ExperimentalFeatures.
26988
+ * @param [properties] Properties to set
26989
+ */
26990
+ constructor(properties?: google.api.PythonSettings.IExperimentalFeatures);
26991
+
26992
+ /** ExperimentalFeatures restAsyncIoEnabled. */
26993
+ public restAsyncIoEnabled: boolean;
26994
+
26995
+ /** ExperimentalFeatures protobufPythonicTypesEnabled. */
26996
+ public protobufPythonicTypesEnabled: boolean;
26997
+
26998
+ /** ExperimentalFeatures unversionedPackageDisabled. */
26999
+ public unversionedPackageDisabled: boolean;
27000
+
27001
+ /**
27002
+ * Creates a new ExperimentalFeatures instance using the specified properties.
27003
+ * @param [properties] Properties to set
27004
+ * @returns ExperimentalFeatures instance
27005
+ */
27006
+ public static create(properties?: google.api.PythonSettings.IExperimentalFeatures): google.api.PythonSettings.ExperimentalFeatures;
27007
+
27008
+ /**
27009
+ * Encodes the specified ExperimentalFeatures message. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
27010
+ * @param message ExperimentalFeatures message or plain object to encode
27011
+ * @param [writer] Writer to encode to
27012
+ * @returns Writer
27013
+ */
27014
+ public static encode(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
27015
+
27016
+ /**
27017
+ * Encodes the specified ExperimentalFeatures message, length delimited. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
27018
+ * @param message ExperimentalFeatures message or plain object to encode
27019
+ * @param [writer] Writer to encode to
27020
+ * @returns Writer
27021
+ */
27022
+ public static encodeDelimited(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
27023
+
27024
+ /**
27025
+ * Decodes an ExperimentalFeatures message from the specified reader or buffer.
27026
+ * @param reader Reader or buffer to decode from
27027
+ * @param [length] Message length if known beforehand
27028
+ * @returns ExperimentalFeatures
27029
+ * @throws {Error} If the payload is not a reader or valid buffer
27030
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27031
+ */
27032
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings.ExperimentalFeatures;
27033
+
27034
+ /**
27035
+ * Decodes an ExperimentalFeatures message from the specified reader or buffer, length delimited.
27036
+ * @param reader Reader or buffer to decode from
27037
+ * @returns ExperimentalFeatures
27038
+ * @throws {Error} If the payload is not a reader or valid buffer
27039
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27040
+ */
27041
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings.ExperimentalFeatures;
27042
+
27043
+ /**
27044
+ * Verifies an ExperimentalFeatures message.
27045
+ * @param message Plain object to verify
27046
+ * @returns `null` if valid, otherwise the reason why it is not
27047
+ */
27048
+ public static verify(message: { [k: string]: any }): (string|null);
27049
+
27050
+ /**
27051
+ * Creates an ExperimentalFeatures message from a plain object. Also converts values to their respective internal types.
27052
+ * @param object Plain object
27053
+ * @returns ExperimentalFeatures
27054
+ */
27055
+ public static fromObject(object: { [k: string]: any }): google.api.PythonSettings.ExperimentalFeatures;
27056
+
27057
+ /**
27058
+ * Creates a plain object from an ExperimentalFeatures message. Also converts values to other types if specified.
27059
+ * @param message ExperimentalFeatures
27060
+ * @param [options] Conversion options
27061
+ * @returns Plain object
27062
+ */
27063
+ public static toObject(message: google.api.PythonSettings.ExperimentalFeatures, options?: $protobuf.IConversionOptions): { [k: string]: any };
27064
+
27065
+ /**
27066
+ * Converts this ExperimentalFeatures to JSON.
27067
+ * @returns JSON object
27068
+ */
27069
+ public toJSON(): { [k: string]: any };
27070
+
27071
+ /**
27072
+ * Gets the default type url for ExperimentalFeatures
27073
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27074
+ * @returns The default type url
27075
+ */
27076
+ public static getTypeUrl(typeUrlPrefix?: string): string;
27077
+ }
27078
+ }
27079
+
26675
27080
  /** Properties of a NodeSettings. */
26676
27081
  interface INodeSettings {
26677
27082
 
@@ -26998,6 +27403,9 @@ export namespace google {
26998
27403
 
26999
27404
  /** GoSettings common */
27000
27405
  common?: (google.api.ICommonLanguageSettings|null);
27406
+
27407
+ /** GoSettings renamedServices */
27408
+ renamedServices?: ({ [k: string]: string }|null);
27001
27409
  }
27002
27410
 
27003
27411
  /** Represents a GoSettings. */
@@ -27012,6 +27420,9 @@ export namespace google {
27012
27420
  /** GoSettings common. */
27013
27421
  public common?: (google.api.ICommonLanguageSettings|null);
27014
27422
 
27423
+ /** GoSettings renamedServices. */
27424
+ public renamedServices: { [k: string]: string };
27425
+
27015
27426
  /**
27016
27427
  * Creates a new GoSettings instance using the specified properties.
27017
27428
  * @param [properties] Properties to set
@@ -27336,6 +27747,109 @@ export namespace google {
27336
27747
  PACKAGE_MANAGER = 20
27337
27748
  }
27338
27749
 
27750
+ /** Properties of a SelectiveGapicGeneration. */
27751
+ interface ISelectiveGapicGeneration {
27752
+
27753
+ /** SelectiveGapicGeneration methods */
27754
+ methods?: (string[]|null);
27755
+
27756
+ /** SelectiveGapicGeneration generateOmittedAsInternal */
27757
+ generateOmittedAsInternal?: (boolean|null);
27758
+ }
27759
+
27760
+ /** Represents a SelectiveGapicGeneration. */
27761
+ class SelectiveGapicGeneration implements ISelectiveGapicGeneration {
27762
+
27763
+ /**
27764
+ * Constructs a new SelectiveGapicGeneration.
27765
+ * @param [properties] Properties to set
27766
+ */
27767
+ constructor(properties?: google.api.ISelectiveGapicGeneration);
27768
+
27769
+ /** SelectiveGapicGeneration methods. */
27770
+ public methods: string[];
27771
+
27772
+ /** SelectiveGapicGeneration generateOmittedAsInternal. */
27773
+ public generateOmittedAsInternal: boolean;
27774
+
27775
+ /**
27776
+ * Creates a new SelectiveGapicGeneration instance using the specified properties.
27777
+ * @param [properties] Properties to set
27778
+ * @returns SelectiveGapicGeneration instance
27779
+ */
27780
+ public static create(properties?: google.api.ISelectiveGapicGeneration): google.api.SelectiveGapicGeneration;
27781
+
27782
+ /**
27783
+ * Encodes the specified SelectiveGapicGeneration message. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
27784
+ * @param message SelectiveGapicGeneration message or plain object to encode
27785
+ * @param [writer] Writer to encode to
27786
+ * @returns Writer
27787
+ */
27788
+ public static encode(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
27789
+
27790
+ /**
27791
+ * Encodes the specified SelectiveGapicGeneration message, length delimited. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
27792
+ * @param message SelectiveGapicGeneration message or plain object to encode
27793
+ * @param [writer] Writer to encode to
27794
+ * @returns Writer
27795
+ */
27796
+ public static encodeDelimited(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
27797
+
27798
+ /**
27799
+ * Decodes a SelectiveGapicGeneration message from the specified reader or buffer.
27800
+ * @param reader Reader or buffer to decode from
27801
+ * @param [length] Message length if known beforehand
27802
+ * @returns SelectiveGapicGeneration
27803
+ * @throws {Error} If the payload is not a reader or valid buffer
27804
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27805
+ */
27806
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.SelectiveGapicGeneration;
27807
+
27808
+ /**
27809
+ * Decodes a SelectiveGapicGeneration message from the specified reader or buffer, length delimited.
27810
+ * @param reader Reader or buffer to decode from
27811
+ * @returns SelectiveGapicGeneration
27812
+ * @throws {Error} If the payload is not a reader or valid buffer
27813
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
27814
+ */
27815
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.SelectiveGapicGeneration;
27816
+
27817
+ /**
27818
+ * Verifies a SelectiveGapicGeneration message.
27819
+ * @param message Plain object to verify
27820
+ * @returns `null` if valid, otherwise the reason why it is not
27821
+ */
27822
+ public static verify(message: { [k: string]: any }): (string|null);
27823
+
27824
+ /**
27825
+ * Creates a SelectiveGapicGeneration message from a plain object. Also converts values to their respective internal types.
27826
+ * @param object Plain object
27827
+ * @returns SelectiveGapicGeneration
27828
+ */
27829
+ public static fromObject(object: { [k: string]: any }): google.api.SelectiveGapicGeneration;
27830
+
27831
+ /**
27832
+ * Creates a plain object from a SelectiveGapicGeneration message. Also converts values to other types if specified.
27833
+ * @param message SelectiveGapicGeneration
27834
+ * @param [options] Conversion options
27835
+ * @returns Plain object
27836
+ */
27837
+ public static toObject(message: google.api.SelectiveGapicGeneration, options?: $protobuf.IConversionOptions): { [k: string]: any };
27838
+
27839
+ /**
27840
+ * Converts this SelectiveGapicGeneration to JSON.
27841
+ * @returns JSON object
27842
+ */
27843
+ public toJSON(): { [k: string]: any };
27844
+
27845
+ /**
27846
+ * Gets the default type url for SelectiveGapicGeneration
27847
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
27848
+ * @returns The default type url
27849
+ */
27850
+ public static getTypeUrl(typeUrlPrefix?: string): string;
27851
+ }
27852
+
27339
27853
  /** LaunchStage enum. */
27340
27854
  enum LaunchStage {
27341
27855
  LAUNCH_STAGE_UNSPECIFIED = 0,