@google-cloud/spanner-api 0.2.0 → 0.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.
@@ -33631,6 +33631,9 @@ export namespace google {
33631
33631
 
33632
33632
  /** PhpSettings common */
33633
33633
  common?: (google.api.ICommonLanguageSettings|null);
33634
+
33635
+ /** PhpSettings libraryPackage */
33636
+ libraryPackage?: (string|null);
33634
33637
  }
33635
33638
 
33636
33639
  /** Represents a PhpSettings. */
@@ -33645,6 +33648,9 @@ export namespace google {
33645
33648
  /** PhpSettings common. */
33646
33649
  public common?: (google.api.ICommonLanguageSettings|null);
33647
33650
 
33651
+ /** PhpSettings libraryPackage. */
33652
+ public libraryPackage: string;
33653
+
33648
33654
  /**
33649
33655
  * Creates a new PhpSettings instance using the specified properties.
33650
33656
  * @param [properties] Properties to set
@@ -34373,6 +34379,9 @@ export namespace google {
34373
34379
 
34374
34380
  /** MethodSettings autoPopulatedFields */
34375
34381
  autoPopulatedFields?: (string[]|null);
34382
+
34383
+ /** MethodSettings batching */
34384
+ batching?: (google.api.IBatchingConfigProto|null);
34376
34385
  }
34377
34386
 
34378
34387
  /** Represents a MethodSettings. */
@@ -34393,6 +34402,9 @@ export namespace google {
34393
34402
  /** MethodSettings autoPopulatedFields. */
34394
34403
  public autoPopulatedFields: string[];
34395
34404
 
34405
+ /** MethodSettings batching. */
34406
+ public batching?: (google.api.IBatchingConfigProto|null);
34407
+
34396
34408
  /**
34397
34409
  * Creates a new MethodSettings instance using the specified properties.
34398
34410
  * @param [properties] Properties to set
@@ -34711,6 +34723,365 @@ export namespace google {
34711
34723
  public static getTypeUrl(typeUrlPrefix?: string): string;
34712
34724
  }
34713
34725
 
34726
+ /** Properties of a BatchingConfigProto. */
34727
+ interface IBatchingConfigProto {
34728
+
34729
+ /** BatchingConfigProto thresholds */
34730
+ thresholds?: (google.api.IBatchingSettingsProto|null);
34731
+
34732
+ /** BatchingConfigProto batchDescriptor */
34733
+ batchDescriptor?: (google.api.IBatchingDescriptorProto|null);
34734
+ }
34735
+
34736
+ /** Represents a BatchingConfigProto. */
34737
+ class BatchingConfigProto implements IBatchingConfigProto {
34738
+
34739
+ /**
34740
+ * Constructs a new BatchingConfigProto.
34741
+ * @param [properties] Properties to set
34742
+ */
34743
+ constructor(properties?: google.api.IBatchingConfigProto);
34744
+
34745
+ /** BatchingConfigProto thresholds. */
34746
+ public thresholds?: (google.api.IBatchingSettingsProto|null);
34747
+
34748
+ /** BatchingConfigProto batchDescriptor. */
34749
+ public batchDescriptor?: (google.api.IBatchingDescriptorProto|null);
34750
+
34751
+ /**
34752
+ * Creates a new BatchingConfigProto instance using the specified properties.
34753
+ * @param [properties] Properties to set
34754
+ * @returns BatchingConfigProto instance
34755
+ */
34756
+ public static create(properties?: google.api.IBatchingConfigProto): google.api.BatchingConfigProto;
34757
+
34758
+ /**
34759
+ * Encodes the specified BatchingConfigProto message. Does not implicitly {@link google.api.BatchingConfigProto.verify|verify} messages.
34760
+ * @param message BatchingConfigProto message or plain object to encode
34761
+ * @param [writer] Writer to encode to
34762
+ * @returns Writer
34763
+ */
34764
+ public static encode(message: google.api.IBatchingConfigProto, writer?: $protobuf.Writer): $protobuf.Writer;
34765
+
34766
+ /**
34767
+ * Encodes the specified BatchingConfigProto message, length delimited. Does not implicitly {@link google.api.BatchingConfigProto.verify|verify} messages.
34768
+ * @param message BatchingConfigProto message or plain object to encode
34769
+ * @param [writer] Writer to encode to
34770
+ * @returns Writer
34771
+ */
34772
+ public static encodeDelimited(message: google.api.IBatchingConfigProto, writer?: $protobuf.Writer): $protobuf.Writer;
34773
+
34774
+ /**
34775
+ * Decodes a BatchingConfigProto message from the specified reader or buffer.
34776
+ * @param reader Reader or buffer to decode from
34777
+ * @param [length] Message length if known beforehand
34778
+ * @returns BatchingConfigProto
34779
+ * @throws {Error} If the payload is not a reader or valid buffer
34780
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
34781
+ */
34782
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingConfigProto;
34783
+
34784
+ /**
34785
+ * Decodes a BatchingConfigProto message from the specified reader or buffer, length delimited.
34786
+ * @param reader Reader or buffer to decode from
34787
+ * @returns BatchingConfigProto
34788
+ * @throws {Error} If the payload is not a reader or valid buffer
34789
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
34790
+ */
34791
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingConfigProto;
34792
+
34793
+ /**
34794
+ * Verifies a BatchingConfigProto message.
34795
+ * @param message Plain object to verify
34796
+ * @returns `null` if valid, otherwise the reason why it is not
34797
+ */
34798
+ public static verify(message: { [k: string]: any }): (string|null);
34799
+
34800
+ /**
34801
+ * Creates a BatchingConfigProto message from a plain object. Also converts values to their respective internal types.
34802
+ * @param object Plain object
34803
+ * @returns BatchingConfigProto
34804
+ */
34805
+ public static fromObject(object: { [k: string]: any }): google.api.BatchingConfigProto;
34806
+
34807
+ /**
34808
+ * Creates a plain object from a BatchingConfigProto message. Also converts values to other types if specified.
34809
+ * @param message BatchingConfigProto
34810
+ * @param [options] Conversion options
34811
+ * @returns Plain object
34812
+ */
34813
+ public static toObject(message: google.api.BatchingConfigProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
34814
+
34815
+ /**
34816
+ * Converts this BatchingConfigProto to JSON.
34817
+ * @returns JSON object
34818
+ */
34819
+ public toJSON(): { [k: string]: any };
34820
+
34821
+ /**
34822
+ * Gets the default type url for BatchingConfigProto
34823
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
34824
+ * @returns The default type url
34825
+ */
34826
+ public static getTypeUrl(typeUrlPrefix?: string): string;
34827
+ }
34828
+
34829
+ /** Properties of a BatchingSettingsProto. */
34830
+ interface IBatchingSettingsProto {
34831
+
34832
+ /** BatchingSettingsProto elementCountThreshold */
34833
+ elementCountThreshold?: (number|null);
34834
+
34835
+ /** BatchingSettingsProto requestByteThreshold */
34836
+ requestByteThreshold?: (number|Long|string|null);
34837
+
34838
+ /** BatchingSettingsProto delayThreshold */
34839
+ delayThreshold?: (google.protobuf.IDuration|null);
34840
+
34841
+ /** BatchingSettingsProto elementCountLimit */
34842
+ elementCountLimit?: (number|null);
34843
+
34844
+ /** BatchingSettingsProto requestByteLimit */
34845
+ requestByteLimit?: (number|null);
34846
+
34847
+ /** BatchingSettingsProto flowControlElementLimit */
34848
+ flowControlElementLimit?: (number|null);
34849
+
34850
+ /** BatchingSettingsProto flowControlByteLimit */
34851
+ flowControlByteLimit?: (number|null);
34852
+
34853
+ /** BatchingSettingsProto flowControlLimitExceededBehavior */
34854
+ flowControlLimitExceededBehavior?: (google.api.FlowControlLimitExceededBehaviorProto|keyof typeof google.api.FlowControlLimitExceededBehaviorProto|null);
34855
+ }
34856
+
34857
+ /** Represents a BatchingSettingsProto. */
34858
+ class BatchingSettingsProto implements IBatchingSettingsProto {
34859
+
34860
+ /**
34861
+ * Constructs a new BatchingSettingsProto.
34862
+ * @param [properties] Properties to set
34863
+ */
34864
+ constructor(properties?: google.api.IBatchingSettingsProto);
34865
+
34866
+ /** BatchingSettingsProto elementCountThreshold. */
34867
+ public elementCountThreshold: number;
34868
+
34869
+ /** BatchingSettingsProto requestByteThreshold. */
34870
+ public requestByteThreshold: (number|Long|string);
34871
+
34872
+ /** BatchingSettingsProto delayThreshold. */
34873
+ public delayThreshold?: (google.protobuf.IDuration|null);
34874
+
34875
+ /** BatchingSettingsProto elementCountLimit. */
34876
+ public elementCountLimit: number;
34877
+
34878
+ /** BatchingSettingsProto requestByteLimit. */
34879
+ public requestByteLimit: number;
34880
+
34881
+ /** BatchingSettingsProto flowControlElementLimit. */
34882
+ public flowControlElementLimit: number;
34883
+
34884
+ /** BatchingSettingsProto flowControlByteLimit. */
34885
+ public flowControlByteLimit: number;
34886
+
34887
+ /** BatchingSettingsProto flowControlLimitExceededBehavior. */
34888
+ public flowControlLimitExceededBehavior: (google.api.FlowControlLimitExceededBehaviorProto|keyof typeof google.api.FlowControlLimitExceededBehaviorProto);
34889
+
34890
+ /**
34891
+ * Creates a new BatchingSettingsProto instance using the specified properties.
34892
+ * @param [properties] Properties to set
34893
+ * @returns BatchingSettingsProto instance
34894
+ */
34895
+ public static create(properties?: google.api.IBatchingSettingsProto): google.api.BatchingSettingsProto;
34896
+
34897
+ /**
34898
+ * Encodes the specified BatchingSettingsProto message. Does not implicitly {@link google.api.BatchingSettingsProto.verify|verify} messages.
34899
+ * @param message BatchingSettingsProto message or plain object to encode
34900
+ * @param [writer] Writer to encode to
34901
+ * @returns Writer
34902
+ */
34903
+ public static encode(message: google.api.IBatchingSettingsProto, writer?: $protobuf.Writer): $protobuf.Writer;
34904
+
34905
+ /**
34906
+ * Encodes the specified BatchingSettingsProto message, length delimited. Does not implicitly {@link google.api.BatchingSettingsProto.verify|verify} messages.
34907
+ * @param message BatchingSettingsProto message or plain object to encode
34908
+ * @param [writer] Writer to encode to
34909
+ * @returns Writer
34910
+ */
34911
+ public static encodeDelimited(message: google.api.IBatchingSettingsProto, writer?: $protobuf.Writer): $protobuf.Writer;
34912
+
34913
+ /**
34914
+ * Decodes a BatchingSettingsProto message from the specified reader or buffer.
34915
+ * @param reader Reader or buffer to decode from
34916
+ * @param [length] Message length if known beforehand
34917
+ * @returns BatchingSettingsProto
34918
+ * @throws {Error} If the payload is not a reader or valid buffer
34919
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
34920
+ */
34921
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingSettingsProto;
34922
+
34923
+ /**
34924
+ * Decodes a BatchingSettingsProto message from the specified reader or buffer, length delimited.
34925
+ * @param reader Reader or buffer to decode from
34926
+ * @returns BatchingSettingsProto
34927
+ * @throws {Error} If the payload is not a reader or valid buffer
34928
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
34929
+ */
34930
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingSettingsProto;
34931
+
34932
+ /**
34933
+ * Verifies a BatchingSettingsProto message.
34934
+ * @param message Plain object to verify
34935
+ * @returns `null` if valid, otherwise the reason why it is not
34936
+ */
34937
+ public static verify(message: { [k: string]: any }): (string|null);
34938
+
34939
+ /**
34940
+ * Creates a BatchingSettingsProto message from a plain object. Also converts values to their respective internal types.
34941
+ * @param object Plain object
34942
+ * @returns BatchingSettingsProto
34943
+ */
34944
+ public static fromObject(object: { [k: string]: any }): google.api.BatchingSettingsProto;
34945
+
34946
+ /**
34947
+ * Creates a plain object from a BatchingSettingsProto message. Also converts values to other types if specified.
34948
+ * @param message BatchingSettingsProto
34949
+ * @param [options] Conversion options
34950
+ * @returns Plain object
34951
+ */
34952
+ public static toObject(message: google.api.BatchingSettingsProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
34953
+
34954
+ /**
34955
+ * Converts this BatchingSettingsProto to JSON.
34956
+ * @returns JSON object
34957
+ */
34958
+ public toJSON(): { [k: string]: any };
34959
+
34960
+ /**
34961
+ * Gets the default type url for BatchingSettingsProto
34962
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
34963
+ * @returns The default type url
34964
+ */
34965
+ public static getTypeUrl(typeUrlPrefix?: string): string;
34966
+ }
34967
+
34968
+ /** FlowControlLimitExceededBehaviorProto enum. */
34969
+ enum FlowControlLimitExceededBehaviorProto {
34970
+ UNSET_BEHAVIOR = 0,
34971
+ THROW_EXCEPTION = 1,
34972
+ BLOCK = 2,
34973
+ IGNORE = 3
34974
+ }
34975
+
34976
+ /** Properties of a BatchingDescriptorProto. */
34977
+ interface IBatchingDescriptorProto {
34978
+
34979
+ /** BatchingDescriptorProto batchedField */
34980
+ batchedField?: (string|null);
34981
+
34982
+ /** BatchingDescriptorProto discriminatorFields */
34983
+ discriminatorFields?: (string[]|null);
34984
+
34985
+ /** BatchingDescriptorProto subresponseField */
34986
+ subresponseField?: (string|null);
34987
+ }
34988
+
34989
+ /** Represents a BatchingDescriptorProto. */
34990
+ class BatchingDescriptorProto implements IBatchingDescriptorProto {
34991
+
34992
+ /**
34993
+ * Constructs a new BatchingDescriptorProto.
34994
+ * @param [properties] Properties to set
34995
+ */
34996
+ constructor(properties?: google.api.IBatchingDescriptorProto);
34997
+
34998
+ /** BatchingDescriptorProto batchedField. */
34999
+ public batchedField: string;
35000
+
35001
+ /** BatchingDescriptorProto discriminatorFields. */
35002
+ public discriminatorFields: string[];
35003
+
35004
+ /** BatchingDescriptorProto subresponseField. */
35005
+ public subresponseField: string;
35006
+
35007
+ /**
35008
+ * Creates a new BatchingDescriptorProto instance using the specified properties.
35009
+ * @param [properties] Properties to set
35010
+ * @returns BatchingDescriptorProto instance
35011
+ */
35012
+ public static create(properties?: google.api.IBatchingDescriptorProto): google.api.BatchingDescriptorProto;
35013
+
35014
+ /**
35015
+ * Encodes the specified BatchingDescriptorProto message. Does not implicitly {@link google.api.BatchingDescriptorProto.verify|verify} messages.
35016
+ * @param message BatchingDescriptorProto message or plain object to encode
35017
+ * @param [writer] Writer to encode to
35018
+ * @returns Writer
35019
+ */
35020
+ public static encode(message: google.api.IBatchingDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer;
35021
+
35022
+ /**
35023
+ * Encodes the specified BatchingDescriptorProto message, length delimited. Does not implicitly {@link google.api.BatchingDescriptorProto.verify|verify} messages.
35024
+ * @param message BatchingDescriptorProto message or plain object to encode
35025
+ * @param [writer] Writer to encode to
35026
+ * @returns Writer
35027
+ */
35028
+ public static encodeDelimited(message: google.api.IBatchingDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer;
35029
+
35030
+ /**
35031
+ * Decodes a BatchingDescriptorProto message from the specified reader or buffer.
35032
+ * @param reader Reader or buffer to decode from
35033
+ * @param [length] Message length if known beforehand
35034
+ * @returns BatchingDescriptorProto
35035
+ * @throws {Error} If the payload is not a reader or valid buffer
35036
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
35037
+ */
35038
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingDescriptorProto;
35039
+
35040
+ /**
35041
+ * Decodes a BatchingDescriptorProto message from the specified reader or buffer, length delimited.
35042
+ * @param reader Reader or buffer to decode from
35043
+ * @returns BatchingDescriptorProto
35044
+ * @throws {Error} If the payload is not a reader or valid buffer
35045
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
35046
+ */
35047
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingDescriptorProto;
35048
+
35049
+ /**
35050
+ * Verifies a BatchingDescriptorProto message.
35051
+ * @param message Plain object to verify
35052
+ * @returns `null` if valid, otherwise the reason why it is not
35053
+ */
35054
+ public static verify(message: { [k: string]: any }): (string|null);
35055
+
35056
+ /**
35057
+ * Creates a BatchingDescriptorProto message from a plain object. Also converts values to their respective internal types.
35058
+ * @param object Plain object
35059
+ * @returns BatchingDescriptorProto
35060
+ */
35061
+ public static fromObject(object: { [k: string]: any }): google.api.BatchingDescriptorProto;
35062
+
35063
+ /**
35064
+ * Creates a plain object from a BatchingDescriptorProto message. Also converts values to other types if specified.
35065
+ * @param message BatchingDescriptorProto
35066
+ * @param [options] Conversion options
35067
+ * @returns Plain object
35068
+ */
35069
+ public static toObject(message: google.api.BatchingDescriptorProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
35070
+
35071
+ /**
35072
+ * Converts this BatchingDescriptorProto to JSON.
35073
+ * @returns JSON object
35074
+ */
35075
+ public toJSON(): { [k: string]: any };
35076
+
35077
+ /**
35078
+ * Gets the default type url for BatchingDescriptorProto
35079
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
35080
+ * @returns The default type url
35081
+ */
35082
+ public static getTypeUrl(typeUrlPrefix?: string): string;
35083
+ }
35084
+
34714
35085
  /** LaunchStage enum. */
34715
35086
  enum LaunchStage {
34716
35087
  LAUNCH_STAGE_UNSPECIFIED = 0,
@@ -34832,6 +35203,8 @@ export namespace google {
34832
35203
  EDITION_PROTO3 = 999,
34833
35204
  EDITION_2023 = 1000,
34834
35205
  EDITION_2024 = 1001,
35206
+ EDITION_2026 = 1002,
35207
+ EDITION_UNSTABLE = 9999,
34835
35208
  EDITION_1_TEST_ONLY = 1,
34836
35209
  EDITION_2_TEST_ONLY = 2,
34837
35210
  EDITION_99997_TEST_ONLY = 99997,
@@ -37203,6 +37576,9 @@ export namespace google {
37203
37576
 
37204
37577
  /** FeatureSupport editionRemoved */
37205
37578
  editionRemoved?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
37579
+
37580
+ /** FeatureSupport removalError */
37581
+ removalError?: (string|null);
37206
37582
  }
37207
37583
 
37208
37584
  /** Represents a FeatureSupport. */
@@ -37226,6 +37602,9 @@ export namespace google {
37226
37602
  /** FeatureSupport editionRemoved. */
37227
37603
  public editionRemoved: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
37228
37604
 
37605
+ /** FeatureSupport removalError. */
37606
+ public removalError: string;
37607
+
37229
37608
  /**
37230
37609
  * Creates a new FeatureSupport instance using the specified properties.
37231
37610
  * @param [properties] Properties to set
@@ -38167,6 +38546,9 @@ export namespace google {
38167
38546
 
38168
38547
  /** FeatureSet defaultSymbolVisibility */
38169
38548
  defaultSymbolVisibility?: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|null);
38549
+
38550
+ /** FeatureSet enforceProtoLimits */
38551
+ enforceProtoLimits?: (google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|keyof typeof google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|null);
38170
38552
  }
38171
38553
 
38172
38554
  /** Represents a FeatureSet. */
@@ -38202,6 +38584,9 @@ export namespace google {
38202
38584
  /** FeatureSet defaultSymbolVisibility. */
38203
38585
  public defaultSymbolVisibility: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility);
38204
38586
 
38587
+ /** FeatureSet enforceProtoLimits. */
38588
+ public enforceProtoLimits: (google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|keyof typeof google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits);
38589
+
38205
38590
  /**
38206
38591
  * Creates a new FeatureSet instance using the specified properties.
38207
38592
  * @param [properties] Properties to set
@@ -38329,7 +38714,8 @@ export namespace google {
38329
38714
  enum EnforceNamingStyle {
38330
38715
  ENFORCE_NAMING_STYLE_UNKNOWN = 0,
38331
38716
  STYLE2024 = 1,
38332
- STYLE_LEGACY = 2
38717
+ STYLE_LEGACY = 2,
38718
+ STYLE2026 = 3
38333
38719
  }
38334
38720
 
38335
38721
  /** Properties of a VisibilityFeature. */
@@ -38434,6 +38820,107 @@ export namespace google {
38434
38820
  STRICT = 4
38435
38821
  }
38436
38822
  }
38823
+
38824
+ /** Properties of a ProtoLimitsFeature. */
38825
+ interface IProtoLimitsFeature {
38826
+ }
38827
+
38828
+ /** Represents a ProtoLimitsFeature. */
38829
+ class ProtoLimitsFeature implements IProtoLimitsFeature {
38830
+
38831
+ /**
38832
+ * Constructs a new ProtoLimitsFeature.
38833
+ * @param [properties] Properties to set
38834
+ */
38835
+ constructor(properties?: google.protobuf.FeatureSet.IProtoLimitsFeature);
38836
+
38837
+ /**
38838
+ * Creates a new ProtoLimitsFeature instance using the specified properties.
38839
+ * @param [properties] Properties to set
38840
+ * @returns ProtoLimitsFeature instance
38841
+ */
38842
+ public static create(properties?: google.protobuf.FeatureSet.IProtoLimitsFeature): google.protobuf.FeatureSet.ProtoLimitsFeature;
38843
+
38844
+ /**
38845
+ * Encodes the specified ProtoLimitsFeature message. Does not implicitly {@link google.protobuf.FeatureSet.ProtoLimitsFeature.verify|verify} messages.
38846
+ * @param message ProtoLimitsFeature message or plain object to encode
38847
+ * @param [writer] Writer to encode to
38848
+ * @returns Writer
38849
+ */
38850
+ public static encode(message: google.protobuf.FeatureSet.IProtoLimitsFeature, writer?: $protobuf.Writer): $protobuf.Writer;
38851
+
38852
+ /**
38853
+ * Encodes the specified ProtoLimitsFeature message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.ProtoLimitsFeature.verify|verify} messages.
38854
+ * @param message ProtoLimitsFeature message or plain object to encode
38855
+ * @param [writer] Writer to encode to
38856
+ * @returns Writer
38857
+ */
38858
+ public static encodeDelimited(message: google.protobuf.FeatureSet.IProtoLimitsFeature, writer?: $protobuf.Writer): $protobuf.Writer;
38859
+
38860
+ /**
38861
+ * Decodes a ProtoLimitsFeature message from the specified reader or buffer.
38862
+ * @param reader Reader or buffer to decode from
38863
+ * @param [length] Message length if known beforehand
38864
+ * @returns ProtoLimitsFeature
38865
+ * @throws {Error} If the payload is not a reader or valid buffer
38866
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
38867
+ */
38868
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet.ProtoLimitsFeature;
38869
+
38870
+ /**
38871
+ * Decodes a ProtoLimitsFeature message from the specified reader or buffer, length delimited.
38872
+ * @param reader Reader or buffer to decode from
38873
+ * @returns ProtoLimitsFeature
38874
+ * @throws {Error} If the payload is not a reader or valid buffer
38875
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
38876
+ */
38877
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet.ProtoLimitsFeature;
38878
+
38879
+ /**
38880
+ * Verifies a ProtoLimitsFeature message.
38881
+ * @param message Plain object to verify
38882
+ * @returns `null` if valid, otherwise the reason why it is not
38883
+ */
38884
+ public static verify(message: { [k: string]: any }): (string|null);
38885
+
38886
+ /**
38887
+ * Creates a ProtoLimitsFeature message from a plain object. Also converts values to their respective internal types.
38888
+ * @param object Plain object
38889
+ * @returns ProtoLimitsFeature
38890
+ */
38891
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet.ProtoLimitsFeature;
38892
+
38893
+ /**
38894
+ * Creates a plain object from a ProtoLimitsFeature message. Also converts values to other types if specified.
38895
+ * @param message ProtoLimitsFeature
38896
+ * @param [options] Conversion options
38897
+ * @returns Plain object
38898
+ */
38899
+ public static toObject(message: google.protobuf.FeatureSet.ProtoLimitsFeature, options?: $protobuf.IConversionOptions): { [k: string]: any };
38900
+
38901
+ /**
38902
+ * Converts this ProtoLimitsFeature to JSON.
38903
+ * @returns JSON object
38904
+ */
38905
+ public toJSON(): { [k: string]: any };
38906
+
38907
+ /**
38908
+ * Gets the default type url for ProtoLimitsFeature
38909
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
38910
+ * @returns The default type url
38911
+ */
38912
+ public static getTypeUrl(typeUrlPrefix?: string): string;
38913
+ }
38914
+
38915
+ namespace ProtoLimitsFeature {
38916
+
38917
+ /** EnforceProtoLimits enum. */
38918
+ enum EnforceProtoLimits {
38919
+ PROTO_LIMITS_UNKNOWN = 0,
38920
+ LEGACY_NO_EXPLICIT_LIMITS = 1,
38921
+ PROTO_LIMITS2026 = 2
38922
+ }
38923
+ }
38437
38924
  }
38438
38925
 
38439
38926
  /** Properties of a FeatureSetDefaults. */
@@ -40310,6 +40797,9 @@ export namespace google {
40310
40797
 
40311
40798
  /** ListOperationsRequest pageToken */
40312
40799
  pageToken?: (string|null);
40800
+
40801
+ /** ListOperationsRequest returnPartialSuccess */
40802
+ returnPartialSuccess?: (boolean|null);
40313
40803
  }
40314
40804
 
40315
40805
  /** Represents a ListOperationsRequest. */
@@ -40333,6 +40823,9 @@ export namespace google {
40333
40823
  /** ListOperationsRequest pageToken. */
40334
40824
  public pageToken: string;
40335
40825
 
40826
+ /** ListOperationsRequest returnPartialSuccess. */
40827
+ public returnPartialSuccess: boolean;
40828
+
40336
40829
  /**
40337
40830
  * Creates a new ListOperationsRequest instance using the specified properties.
40338
40831
  * @param [properties] Properties to set
@@ -40419,6 +40912,9 @@ export namespace google {
40419
40912
 
40420
40913
  /** ListOperationsResponse nextPageToken */
40421
40914
  nextPageToken?: (string|null);
40915
+
40916
+ /** ListOperationsResponse unreachable */
40917
+ unreachable?: (string[]|null);
40422
40918
  }
40423
40919
 
40424
40920
  /** Represents a ListOperationsResponse. */
@@ -40436,6 +40932,9 @@ export namespace google {
40436
40932
  /** ListOperationsResponse nextPageToken. */
40437
40933
  public nextPageToken: string;
40438
40934
 
40935
+ /** ListOperationsResponse unreachable. */
40936
+ public unreachable: string[];
40937
+
40439
40938
  /**
40440
40939
  * Creates a new ListOperationsResponse instance using the specified properties.
40441
40940
  * @param [properties] Properties to set