@google-cloud/datastore-api 0.1.0 → 0.3.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.
@@ -10018,6 +10018,9 @@ export namespace google {
10018
10018
 
10019
10019
  /** PhpSettings common */
10020
10020
  common?: (google.api.ICommonLanguageSettings|null);
10021
+
10022
+ /** PhpSettings libraryPackage */
10023
+ libraryPackage?: (string|null);
10021
10024
  }
10022
10025
 
10023
10026
  /** Represents a PhpSettings. */
@@ -10032,6 +10035,9 @@ export namespace google {
10032
10035
  /** PhpSettings common. */
10033
10036
  public common?: (google.api.ICommonLanguageSettings|null);
10034
10037
 
10038
+ /** PhpSettings libraryPackage. */
10039
+ public libraryPackage: string;
10040
+
10035
10041
  /**
10036
10042
  * Creates a new PhpSettings instance using the specified properties.
10037
10043
  * @param [properties] Properties to set
@@ -10760,6 +10766,9 @@ export namespace google {
10760
10766
 
10761
10767
  /** MethodSettings autoPopulatedFields */
10762
10768
  autoPopulatedFields?: (string[]|null);
10769
+
10770
+ /** MethodSettings batching */
10771
+ batching?: (google.api.IBatchingConfigProto|null);
10763
10772
  }
10764
10773
 
10765
10774
  /** Represents a MethodSettings. */
@@ -10780,6 +10789,9 @@ export namespace google {
10780
10789
  /** MethodSettings autoPopulatedFields. */
10781
10790
  public autoPopulatedFields: string[];
10782
10791
 
10792
+ /** MethodSettings batching. */
10793
+ public batching?: (google.api.IBatchingConfigProto|null);
10794
+
10783
10795
  /**
10784
10796
  * Creates a new MethodSettings instance using the specified properties.
10785
10797
  * @param [properties] Properties to set
@@ -11098,6 +11110,365 @@ export namespace google {
11098
11110
  public static getTypeUrl(typeUrlPrefix?: string): string;
11099
11111
  }
11100
11112
 
11113
+ /** Properties of a BatchingConfigProto. */
11114
+ interface IBatchingConfigProto {
11115
+
11116
+ /** BatchingConfigProto thresholds */
11117
+ thresholds?: (google.api.IBatchingSettingsProto|null);
11118
+
11119
+ /** BatchingConfigProto batchDescriptor */
11120
+ batchDescriptor?: (google.api.IBatchingDescriptorProto|null);
11121
+ }
11122
+
11123
+ /** Represents a BatchingConfigProto. */
11124
+ class BatchingConfigProto implements IBatchingConfigProto {
11125
+
11126
+ /**
11127
+ * Constructs a new BatchingConfigProto.
11128
+ * @param [properties] Properties to set
11129
+ */
11130
+ constructor(properties?: google.api.IBatchingConfigProto);
11131
+
11132
+ /** BatchingConfigProto thresholds. */
11133
+ public thresholds?: (google.api.IBatchingSettingsProto|null);
11134
+
11135
+ /** BatchingConfigProto batchDescriptor. */
11136
+ public batchDescriptor?: (google.api.IBatchingDescriptorProto|null);
11137
+
11138
+ /**
11139
+ * Creates a new BatchingConfigProto instance using the specified properties.
11140
+ * @param [properties] Properties to set
11141
+ * @returns BatchingConfigProto instance
11142
+ */
11143
+ public static create(properties?: google.api.IBatchingConfigProto): google.api.BatchingConfigProto;
11144
+
11145
+ /**
11146
+ * Encodes the specified BatchingConfigProto message. Does not implicitly {@link google.api.BatchingConfigProto.verify|verify} messages.
11147
+ * @param message BatchingConfigProto message or plain object to encode
11148
+ * @param [writer] Writer to encode to
11149
+ * @returns Writer
11150
+ */
11151
+ public static encode(message: google.api.IBatchingConfigProto, writer?: $protobuf.Writer): $protobuf.Writer;
11152
+
11153
+ /**
11154
+ * Encodes the specified BatchingConfigProto message, length delimited. Does not implicitly {@link google.api.BatchingConfigProto.verify|verify} messages.
11155
+ * @param message BatchingConfigProto message or plain object to encode
11156
+ * @param [writer] Writer to encode to
11157
+ * @returns Writer
11158
+ */
11159
+ public static encodeDelimited(message: google.api.IBatchingConfigProto, writer?: $protobuf.Writer): $protobuf.Writer;
11160
+
11161
+ /**
11162
+ * Decodes a BatchingConfigProto message from the specified reader or buffer.
11163
+ * @param reader Reader or buffer to decode from
11164
+ * @param [length] Message length if known beforehand
11165
+ * @returns BatchingConfigProto
11166
+ * @throws {Error} If the payload is not a reader or valid buffer
11167
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
11168
+ */
11169
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingConfigProto;
11170
+
11171
+ /**
11172
+ * Decodes a BatchingConfigProto message from the specified reader or buffer, length delimited.
11173
+ * @param reader Reader or buffer to decode from
11174
+ * @returns BatchingConfigProto
11175
+ * @throws {Error} If the payload is not a reader or valid buffer
11176
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
11177
+ */
11178
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingConfigProto;
11179
+
11180
+ /**
11181
+ * Verifies a BatchingConfigProto message.
11182
+ * @param message Plain object to verify
11183
+ * @returns `null` if valid, otherwise the reason why it is not
11184
+ */
11185
+ public static verify(message: { [k: string]: any }): (string|null);
11186
+
11187
+ /**
11188
+ * Creates a BatchingConfigProto message from a plain object. Also converts values to their respective internal types.
11189
+ * @param object Plain object
11190
+ * @returns BatchingConfigProto
11191
+ */
11192
+ public static fromObject(object: { [k: string]: any }): google.api.BatchingConfigProto;
11193
+
11194
+ /**
11195
+ * Creates a plain object from a BatchingConfigProto message. Also converts values to other types if specified.
11196
+ * @param message BatchingConfigProto
11197
+ * @param [options] Conversion options
11198
+ * @returns Plain object
11199
+ */
11200
+ public static toObject(message: google.api.BatchingConfigProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
11201
+
11202
+ /**
11203
+ * Converts this BatchingConfigProto to JSON.
11204
+ * @returns JSON object
11205
+ */
11206
+ public toJSON(): { [k: string]: any };
11207
+
11208
+ /**
11209
+ * Gets the default type url for BatchingConfigProto
11210
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
11211
+ * @returns The default type url
11212
+ */
11213
+ public static getTypeUrl(typeUrlPrefix?: string): string;
11214
+ }
11215
+
11216
+ /** Properties of a BatchingSettingsProto. */
11217
+ interface IBatchingSettingsProto {
11218
+
11219
+ /** BatchingSettingsProto elementCountThreshold */
11220
+ elementCountThreshold?: (number|null);
11221
+
11222
+ /** BatchingSettingsProto requestByteThreshold */
11223
+ requestByteThreshold?: (number|Long|string|null);
11224
+
11225
+ /** BatchingSettingsProto delayThreshold */
11226
+ delayThreshold?: (google.protobuf.IDuration|null);
11227
+
11228
+ /** BatchingSettingsProto elementCountLimit */
11229
+ elementCountLimit?: (number|null);
11230
+
11231
+ /** BatchingSettingsProto requestByteLimit */
11232
+ requestByteLimit?: (number|null);
11233
+
11234
+ /** BatchingSettingsProto flowControlElementLimit */
11235
+ flowControlElementLimit?: (number|null);
11236
+
11237
+ /** BatchingSettingsProto flowControlByteLimit */
11238
+ flowControlByteLimit?: (number|null);
11239
+
11240
+ /** BatchingSettingsProto flowControlLimitExceededBehavior */
11241
+ flowControlLimitExceededBehavior?: (google.api.FlowControlLimitExceededBehaviorProto|keyof typeof google.api.FlowControlLimitExceededBehaviorProto|null);
11242
+ }
11243
+
11244
+ /** Represents a BatchingSettingsProto. */
11245
+ class BatchingSettingsProto implements IBatchingSettingsProto {
11246
+
11247
+ /**
11248
+ * Constructs a new BatchingSettingsProto.
11249
+ * @param [properties] Properties to set
11250
+ */
11251
+ constructor(properties?: google.api.IBatchingSettingsProto);
11252
+
11253
+ /** BatchingSettingsProto elementCountThreshold. */
11254
+ public elementCountThreshold: number;
11255
+
11256
+ /** BatchingSettingsProto requestByteThreshold. */
11257
+ public requestByteThreshold: (number|Long|string);
11258
+
11259
+ /** BatchingSettingsProto delayThreshold. */
11260
+ public delayThreshold?: (google.protobuf.IDuration|null);
11261
+
11262
+ /** BatchingSettingsProto elementCountLimit. */
11263
+ public elementCountLimit: number;
11264
+
11265
+ /** BatchingSettingsProto requestByteLimit. */
11266
+ public requestByteLimit: number;
11267
+
11268
+ /** BatchingSettingsProto flowControlElementLimit. */
11269
+ public flowControlElementLimit: number;
11270
+
11271
+ /** BatchingSettingsProto flowControlByteLimit. */
11272
+ public flowControlByteLimit: number;
11273
+
11274
+ /** BatchingSettingsProto flowControlLimitExceededBehavior. */
11275
+ public flowControlLimitExceededBehavior: (google.api.FlowControlLimitExceededBehaviorProto|keyof typeof google.api.FlowControlLimitExceededBehaviorProto);
11276
+
11277
+ /**
11278
+ * Creates a new BatchingSettingsProto instance using the specified properties.
11279
+ * @param [properties] Properties to set
11280
+ * @returns BatchingSettingsProto instance
11281
+ */
11282
+ public static create(properties?: google.api.IBatchingSettingsProto): google.api.BatchingSettingsProto;
11283
+
11284
+ /**
11285
+ * Encodes the specified BatchingSettingsProto message. Does not implicitly {@link google.api.BatchingSettingsProto.verify|verify} messages.
11286
+ * @param message BatchingSettingsProto message or plain object to encode
11287
+ * @param [writer] Writer to encode to
11288
+ * @returns Writer
11289
+ */
11290
+ public static encode(message: google.api.IBatchingSettingsProto, writer?: $protobuf.Writer): $protobuf.Writer;
11291
+
11292
+ /**
11293
+ * Encodes the specified BatchingSettingsProto message, length delimited. Does not implicitly {@link google.api.BatchingSettingsProto.verify|verify} messages.
11294
+ * @param message BatchingSettingsProto message or plain object to encode
11295
+ * @param [writer] Writer to encode to
11296
+ * @returns Writer
11297
+ */
11298
+ public static encodeDelimited(message: google.api.IBatchingSettingsProto, writer?: $protobuf.Writer): $protobuf.Writer;
11299
+
11300
+ /**
11301
+ * Decodes a BatchingSettingsProto message from the specified reader or buffer.
11302
+ * @param reader Reader or buffer to decode from
11303
+ * @param [length] Message length if known beforehand
11304
+ * @returns BatchingSettingsProto
11305
+ * @throws {Error} If the payload is not a reader or valid buffer
11306
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
11307
+ */
11308
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingSettingsProto;
11309
+
11310
+ /**
11311
+ * Decodes a BatchingSettingsProto message from the specified reader or buffer, length delimited.
11312
+ * @param reader Reader or buffer to decode from
11313
+ * @returns BatchingSettingsProto
11314
+ * @throws {Error} If the payload is not a reader or valid buffer
11315
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
11316
+ */
11317
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingSettingsProto;
11318
+
11319
+ /**
11320
+ * Verifies a BatchingSettingsProto message.
11321
+ * @param message Plain object to verify
11322
+ * @returns `null` if valid, otherwise the reason why it is not
11323
+ */
11324
+ public static verify(message: { [k: string]: any }): (string|null);
11325
+
11326
+ /**
11327
+ * Creates a BatchingSettingsProto message from a plain object. Also converts values to their respective internal types.
11328
+ * @param object Plain object
11329
+ * @returns BatchingSettingsProto
11330
+ */
11331
+ public static fromObject(object: { [k: string]: any }): google.api.BatchingSettingsProto;
11332
+
11333
+ /**
11334
+ * Creates a plain object from a BatchingSettingsProto message. Also converts values to other types if specified.
11335
+ * @param message BatchingSettingsProto
11336
+ * @param [options] Conversion options
11337
+ * @returns Plain object
11338
+ */
11339
+ public static toObject(message: google.api.BatchingSettingsProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
11340
+
11341
+ /**
11342
+ * Converts this BatchingSettingsProto to JSON.
11343
+ * @returns JSON object
11344
+ */
11345
+ public toJSON(): { [k: string]: any };
11346
+
11347
+ /**
11348
+ * Gets the default type url for BatchingSettingsProto
11349
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
11350
+ * @returns The default type url
11351
+ */
11352
+ public static getTypeUrl(typeUrlPrefix?: string): string;
11353
+ }
11354
+
11355
+ /** FlowControlLimitExceededBehaviorProto enum. */
11356
+ enum FlowControlLimitExceededBehaviorProto {
11357
+ UNSET_BEHAVIOR = 0,
11358
+ THROW_EXCEPTION = 1,
11359
+ BLOCK = 2,
11360
+ IGNORE = 3
11361
+ }
11362
+
11363
+ /** Properties of a BatchingDescriptorProto. */
11364
+ interface IBatchingDescriptorProto {
11365
+
11366
+ /** BatchingDescriptorProto batchedField */
11367
+ batchedField?: (string|null);
11368
+
11369
+ /** BatchingDescriptorProto discriminatorFields */
11370
+ discriminatorFields?: (string[]|null);
11371
+
11372
+ /** BatchingDescriptorProto subresponseField */
11373
+ subresponseField?: (string|null);
11374
+ }
11375
+
11376
+ /** Represents a BatchingDescriptorProto. */
11377
+ class BatchingDescriptorProto implements IBatchingDescriptorProto {
11378
+
11379
+ /**
11380
+ * Constructs a new BatchingDescriptorProto.
11381
+ * @param [properties] Properties to set
11382
+ */
11383
+ constructor(properties?: google.api.IBatchingDescriptorProto);
11384
+
11385
+ /** BatchingDescriptorProto batchedField. */
11386
+ public batchedField: string;
11387
+
11388
+ /** BatchingDescriptorProto discriminatorFields. */
11389
+ public discriminatorFields: string[];
11390
+
11391
+ /** BatchingDescriptorProto subresponseField. */
11392
+ public subresponseField: string;
11393
+
11394
+ /**
11395
+ * Creates a new BatchingDescriptorProto instance using the specified properties.
11396
+ * @param [properties] Properties to set
11397
+ * @returns BatchingDescriptorProto instance
11398
+ */
11399
+ public static create(properties?: google.api.IBatchingDescriptorProto): google.api.BatchingDescriptorProto;
11400
+
11401
+ /**
11402
+ * Encodes the specified BatchingDescriptorProto message. Does not implicitly {@link google.api.BatchingDescriptorProto.verify|verify} messages.
11403
+ * @param message BatchingDescriptorProto message or plain object to encode
11404
+ * @param [writer] Writer to encode to
11405
+ * @returns Writer
11406
+ */
11407
+ public static encode(message: google.api.IBatchingDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer;
11408
+
11409
+ /**
11410
+ * Encodes the specified BatchingDescriptorProto message, length delimited. Does not implicitly {@link google.api.BatchingDescriptorProto.verify|verify} messages.
11411
+ * @param message BatchingDescriptorProto message or plain object to encode
11412
+ * @param [writer] Writer to encode to
11413
+ * @returns Writer
11414
+ */
11415
+ public static encodeDelimited(message: google.api.IBatchingDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer;
11416
+
11417
+ /**
11418
+ * Decodes a BatchingDescriptorProto message from the specified reader or buffer.
11419
+ * @param reader Reader or buffer to decode from
11420
+ * @param [length] Message length if known beforehand
11421
+ * @returns BatchingDescriptorProto
11422
+ * @throws {Error} If the payload is not a reader or valid buffer
11423
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
11424
+ */
11425
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingDescriptorProto;
11426
+
11427
+ /**
11428
+ * Decodes a BatchingDescriptorProto message from the specified reader or buffer, length delimited.
11429
+ * @param reader Reader or buffer to decode from
11430
+ * @returns BatchingDescriptorProto
11431
+ * @throws {Error} If the payload is not a reader or valid buffer
11432
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
11433
+ */
11434
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingDescriptorProto;
11435
+
11436
+ /**
11437
+ * Verifies a BatchingDescriptorProto message.
11438
+ * @param message Plain object to verify
11439
+ * @returns `null` if valid, otherwise the reason why it is not
11440
+ */
11441
+ public static verify(message: { [k: string]: any }): (string|null);
11442
+
11443
+ /**
11444
+ * Creates a BatchingDescriptorProto message from a plain object. Also converts values to their respective internal types.
11445
+ * @param object Plain object
11446
+ * @returns BatchingDescriptorProto
11447
+ */
11448
+ public static fromObject(object: { [k: string]: any }): google.api.BatchingDescriptorProto;
11449
+
11450
+ /**
11451
+ * Creates a plain object from a BatchingDescriptorProto message. Also converts values to other types if specified.
11452
+ * @param message BatchingDescriptorProto
11453
+ * @param [options] Conversion options
11454
+ * @returns Plain object
11455
+ */
11456
+ public static toObject(message: google.api.BatchingDescriptorProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
11457
+
11458
+ /**
11459
+ * Converts this BatchingDescriptorProto to JSON.
11460
+ * @returns JSON object
11461
+ */
11462
+ public toJSON(): { [k: string]: any };
11463
+
11464
+ /**
11465
+ * Gets the default type url for BatchingDescriptorProto
11466
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
11467
+ * @returns The default type url
11468
+ */
11469
+ public static getTypeUrl(typeUrlPrefix?: string): string;
11470
+ }
11471
+
11101
11472
  /** LaunchStage enum. */
11102
11473
  enum LaunchStage {
11103
11474
  LAUNCH_STAGE_UNSPECIFIED = 0,
@@ -11432,6 +11803,8 @@ export namespace google {
11432
11803
  EDITION_PROTO3 = 999,
11433
11804
  EDITION_2023 = 1000,
11434
11805
  EDITION_2024 = 1001,
11806
+ EDITION_2026 = 1002,
11807
+ EDITION_UNSTABLE = 9999,
11435
11808
  EDITION_1_TEST_ONLY = 1,
11436
11809
  EDITION_2_TEST_ONLY = 2,
11437
11810
  EDITION_99997_TEST_ONLY = 99997,
@@ -13794,6 +14167,9 @@ export namespace google {
13794
14167
 
13795
14168
  /** FeatureSupport editionRemoved */
13796
14169
  editionRemoved?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
14170
+
14171
+ /** FeatureSupport removalError */
14172
+ removalError?: (string|null);
13797
14173
  }
13798
14174
 
13799
14175
  /** Represents a FeatureSupport. */
@@ -13817,6 +14193,9 @@ export namespace google {
13817
14193
  /** FeatureSupport editionRemoved. */
13818
14194
  public editionRemoved: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
13819
14195
 
14196
+ /** FeatureSupport removalError. */
14197
+ public removalError: string;
14198
+
13820
14199
  /**
13821
14200
  * Creates a new FeatureSupport instance using the specified properties.
13822
14201
  * @param [properties] Properties to set
@@ -14761,6 +15140,9 @@ export namespace google {
14761
15140
 
14762
15141
  /** FeatureSet defaultSymbolVisibility */
14763
15142
  defaultSymbolVisibility?: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|null);
15143
+
15144
+ /** FeatureSet enforceProtoLimits */
15145
+ enforceProtoLimits?: (google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|keyof typeof google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|null);
14764
15146
  }
14765
15147
 
14766
15148
  /** Represents a FeatureSet. */
@@ -14796,6 +15178,9 @@ export namespace google {
14796
15178
  /** FeatureSet defaultSymbolVisibility. */
14797
15179
  public defaultSymbolVisibility: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility);
14798
15180
 
15181
+ /** FeatureSet enforceProtoLimits. */
15182
+ public enforceProtoLimits: (google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|keyof typeof google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits);
15183
+
14799
15184
  /**
14800
15185
  * Creates a new FeatureSet instance using the specified properties.
14801
15186
  * @param [properties] Properties to set
@@ -14923,7 +15308,8 @@ export namespace google {
14923
15308
  enum EnforceNamingStyle {
14924
15309
  ENFORCE_NAMING_STYLE_UNKNOWN = 0,
14925
15310
  STYLE2024 = 1,
14926
- STYLE_LEGACY = 2
15311
+ STYLE_LEGACY = 2,
15312
+ STYLE2026 = 3
14927
15313
  }
14928
15314
 
14929
15315
  /** Properties of a VisibilityFeature. */
@@ -15028,6 +15414,107 @@ export namespace google {
15028
15414
  STRICT = 4
15029
15415
  }
15030
15416
  }
15417
+
15418
+ /** Properties of a ProtoLimitsFeature. */
15419
+ interface IProtoLimitsFeature {
15420
+ }
15421
+
15422
+ /** Represents a ProtoLimitsFeature. */
15423
+ class ProtoLimitsFeature implements IProtoLimitsFeature {
15424
+
15425
+ /**
15426
+ * Constructs a new ProtoLimitsFeature.
15427
+ * @param [properties] Properties to set
15428
+ */
15429
+ constructor(properties?: google.protobuf.FeatureSet.IProtoLimitsFeature);
15430
+
15431
+ /**
15432
+ * Creates a new ProtoLimitsFeature instance using the specified properties.
15433
+ * @param [properties] Properties to set
15434
+ * @returns ProtoLimitsFeature instance
15435
+ */
15436
+ public static create(properties?: google.protobuf.FeatureSet.IProtoLimitsFeature): google.protobuf.FeatureSet.ProtoLimitsFeature;
15437
+
15438
+ /**
15439
+ * Encodes the specified ProtoLimitsFeature message. Does not implicitly {@link google.protobuf.FeatureSet.ProtoLimitsFeature.verify|verify} messages.
15440
+ * @param message ProtoLimitsFeature message or plain object to encode
15441
+ * @param [writer] Writer to encode to
15442
+ * @returns Writer
15443
+ */
15444
+ public static encode(message: google.protobuf.FeatureSet.IProtoLimitsFeature, writer?: $protobuf.Writer): $protobuf.Writer;
15445
+
15446
+ /**
15447
+ * Encodes the specified ProtoLimitsFeature message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.ProtoLimitsFeature.verify|verify} messages.
15448
+ * @param message ProtoLimitsFeature message or plain object to encode
15449
+ * @param [writer] Writer to encode to
15450
+ * @returns Writer
15451
+ */
15452
+ public static encodeDelimited(message: google.protobuf.FeatureSet.IProtoLimitsFeature, writer?: $protobuf.Writer): $protobuf.Writer;
15453
+
15454
+ /**
15455
+ * Decodes a ProtoLimitsFeature message from the specified reader or buffer.
15456
+ * @param reader Reader or buffer to decode from
15457
+ * @param [length] Message length if known beforehand
15458
+ * @returns ProtoLimitsFeature
15459
+ * @throws {Error} If the payload is not a reader or valid buffer
15460
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15461
+ */
15462
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet.ProtoLimitsFeature;
15463
+
15464
+ /**
15465
+ * Decodes a ProtoLimitsFeature message from the specified reader or buffer, length delimited.
15466
+ * @param reader Reader or buffer to decode from
15467
+ * @returns ProtoLimitsFeature
15468
+ * @throws {Error} If the payload is not a reader or valid buffer
15469
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15470
+ */
15471
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet.ProtoLimitsFeature;
15472
+
15473
+ /**
15474
+ * Verifies a ProtoLimitsFeature message.
15475
+ * @param message Plain object to verify
15476
+ * @returns `null` if valid, otherwise the reason why it is not
15477
+ */
15478
+ public static verify(message: { [k: string]: any }): (string|null);
15479
+
15480
+ /**
15481
+ * Creates a ProtoLimitsFeature message from a plain object. Also converts values to their respective internal types.
15482
+ * @param object Plain object
15483
+ * @returns ProtoLimitsFeature
15484
+ */
15485
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet.ProtoLimitsFeature;
15486
+
15487
+ /**
15488
+ * Creates a plain object from a ProtoLimitsFeature message. Also converts values to other types if specified.
15489
+ * @param message ProtoLimitsFeature
15490
+ * @param [options] Conversion options
15491
+ * @returns Plain object
15492
+ */
15493
+ public static toObject(message: google.protobuf.FeatureSet.ProtoLimitsFeature, options?: $protobuf.IConversionOptions): { [k: string]: any };
15494
+
15495
+ /**
15496
+ * Converts this ProtoLimitsFeature to JSON.
15497
+ * @returns JSON object
15498
+ */
15499
+ public toJSON(): { [k: string]: any };
15500
+
15501
+ /**
15502
+ * Gets the default type url for ProtoLimitsFeature
15503
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
15504
+ * @returns The default type url
15505
+ */
15506
+ public static getTypeUrl(typeUrlPrefix?: string): string;
15507
+ }
15508
+
15509
+ namespace ProtoLimitsFeature {
15510
+
15511
+ /** EnforceProtoLimits enum. */
15512
+ enum EnforceProtoLimits {
15513
+ PROTO_LIMITS_UNKNOWN = 0,
15514
+ LEGACY_NO_EXPLICIT_LIMITS = 1,
15515
+ PROTO_LIMITS2026 = 2
15516
+ }
15517
+ }
15031
15518
  }
15032
15519
 
15033
15520
  /** Properties of a FeatureSetDefaults. */
@@ -17680,6 +18167,9 @@ export namespace google {
17680
18167
 
17681
18168
  /** ListOperationsRequest pageToken */
17682
18169
  pageToken?: (string|null);
18170
+
18171
+ /** ListOperationsRequest returnPartialSuccess */
18172
+ returnPartialSuccess?: (boolean|null);
17683
18173
  }
17684
18174
 
17685
18175
  /** Represents a ListOperationsRequest. */
@@ -17703,6 +18193,9 @@ export namespace google {
17703
18193
  /** ListOperationsRequest pageToken. */
17704
18194
  public pageToken: string;
17705
18195
 
18196
+ /** ListOperationsRequest returnPartialSuccess. */
18197
+ public returnPartialSuccess: boolean;
18198
+
17706
18199
  /**
17707
18200
  * Creates a new ListOperationsRequest instance using the specified properties.
17708
18201
  * @param [properties] Properties to set
@@ -17789,6 +18282,9 @@ export namespace google {
17789
18282
 
17790
18283
  /** ListOperationsResponse nextPageToken */
17791
18284
  nextPageToken?: (string|null);
18285
+
18286
+ /** ListOperationsResponse unreachable */
18287
+ unreachable?: (string[]|null);
17792
18288
  }
17793
18289
 
17794
18290
  /** Represents a ListOperationsResponse. */
@@ -17806,6 +18302,9 @@ export namespace google {
17806
18302
  /** ListOperationsResponse nextPageToken. */
17807
18303
  public nextPageToken: string;
17808
18304
 
18305
+ /** ListOperationsResponse unreachable. */
18306
+ public unreachable: string[];
18307
+
17809
18308
  /**
17810
18309
  * Creates a new ListOperationsResponse instance using the specified properties.
17811
18310
  * @param [properties] Properties to set