@google-cloud/discoveryengine 2.9.0 → 3.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.
@@ -4019,6 +4019,9 @@ export namespace google {
4019
4019
  /** StreamAssistRequest userMetadata */
4020
4020
  userMetadata?: (google.cloud.discoveryengine.v1.IAssistUserMetadata|null);
4021
4021
 
4022
+ /** StreamAssistRequest agentsSpec */
4023
+ agentsSpec?: (google.cloud.discoveryengine.v1.StreamAssistRequest.IAgentsSpec|null);
4024
+
4022
4025
  /** StreamAssistRequest toolsSpec */
4023
4026
  toolsSpec?: (google.cloud.discoveryengine.v1.StreamAssistRequest.IToolsSpec|null);
4024
4027
 
@@ -4047,6 +4050,9 @@ export namespace google {
4047
4050
  /** StreamAssistRequest userMetadata. */
4048
4051
  public userMetadata?: (google.cloud.discoveryengine.v1.IAssistUserMetadata|null);
4049
4052
 
4053
+ /** StreamAssistRequest agentsSpec. */
4054
+ public agentsSpec?: (google.cloud.discoveryengine.v1.StreamAssistRequest.IAgentsSpec|null);
4055
+
4050
4056
  /** StreamAssistRequest toolsSpec. */
4051
4057
  public toolsSpec?: (google.cloud.discoveryengine.v1.StreamAssistRequest.IToolsSpec|null);
4052
4058
 
@@ -4133,6 +4139,203 @@ export namespace google {
4133
4139
 
4134
4140
  namespace StreamAssistRequest {
4135
4141
 
4142
+ /** Properties of an AgentsSpec. */
4143
+ interface IAgentsSpec {
4144
+
4145
+ /** AgentsSpec agentSpecs */
4146
+ agentSpecs?: (google.cloud.discoveryengine.v1.StreamAssistRequest.AgentsSpec.IAgentSpec[]|null);
4147
+ }
4148
+
4149
+ /** Represents an AgentsSpec. */
4150
+ class AgentsSpec implements IAgentsSpec {
4151
+
4152
+ /**
4153
+ * Constructs a new AgentsSpec.
4154
+ * @param [properties] Properties to set
4155
+ */
4156
+ constructor(properties?: google.cloud.discoveryengine.v1.StreamAssistRequest.IAgentsSpec);
4157
+
4158
+ /** AgentsSpec agentSpecs. */
4159
+ public agentSpecs: google.cloud.discoveryengine.v1.StreamAssistRequest.AgentsSpec.IAgentSpec[];
4160
+
4161
+ /**
4162
+ * Creates a new AgentsSpec instance using the specified properties.
4163
+ * @param [properties] Properties to set
4164
+ * @returns AgentsSpec instance
4165
+ */
4166
+ public static create(properties?: google.cloud.discoveryengine.v1.StreamAssistRequest.IAgentsSpec): google.cloud.discoveryengine.v1.StreamAssistRequest.AgentsSpec;
4167
+
4168
+ /**
4169
+ * Encodes the specified AgentsSpec message. Does not implicitly {@link google.cloud.discoveryengine.v1.StreamAssistRequest.AgentsSpec.verify|verify} messages.
4170
+ * @param message AgentsSpec message or plain object to encode
4171
+ * @param [writer] Writer to encode to
4172
+ * @returns Writer
4173
+ */
4174
+ public static encode(message: google.cloud.discoveryengine.v1.StreamAssistRequest.IAgentsSpec, writer?: $protobuf.Writer): $protobuf.Writer;
4175
+
4176
+ /**
4177
+ * Encodes the specified AgentsSpec message, length delimited. Does not implicitly {@link google.cloud.discoveryengine.v1.StreamAssistRequest.AgentsSpec.verify|verify} messages.
4178
+ * @param message AgentsSpec message or plain object to encode
4179
+ * @param [writer] Writer to encode to
4180
+ * @returns Writer
4181
+ */
4182
+ public static encodeDelimited(message: google.cloud.discoveryengine.v1.StreamAssistRequest.IAgentsSpec, writer?: $protobuf.Writer): $protobuf.Writer;
4183
+
4184
+ /**
4185
+ * Decodes an AgentsSpec message from the specified reader or buffer.
4186
+ * @param reader Reader or buffer to decode from
4187
+ * @param [length] Message length if known beforehand
4188
+ * @returns AgentsSpec
4189
+ * @throws {Error} If the payload is not a reader or valid buffer
4190
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
4191
+ */
4192
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.cloud.discoveryengine.v1.StreamAssistRequest.AgentsSpec;
4193
+
4194
+ /**
4195
+ * Decodes an AgentsSpec message from the specified reader or buffer, length delimited.
4196
+ * @param reader Reader or buffer to decode from
4197
+ * @returns AgentsSpec
4198
+ * @throws {Error} If the payload is not a reader or valid buffer
4199
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
4200
+ */
4201
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.cloud.discoveryengine.v1.StreamAssistRequest.AgentsSpec;
4202
+
4203
+ /**
4204
+ * Verifies an AgentsSpec message.
4205
+ * @param message Plain object to verify
4206
+ * @returns `null` if valid, otherwise the reason why it is not
4207
+ */
4208
+ public static verify(message: { [k: string]: any }): (string|null);
4209
+
4210
+ /**
4211
+ * Creates an AgentsSpec message from a plain object. Also converts values to their respective internal types.
4212
+ * @param object Plain object
4213
+ * @returns AgentsSpec
4214
+ */
4215
+ public static fromObject(object: { [k: string]: any }): google.cloud.discoveryengine.v1.StreamAssistRequest.AgentsSpec;
4216
+
4217
+ /**
4218
+ * Creates a plain object from an AgentsSpec message. Also converts values to other types if specified.
4219
+ * @param message AgentsSpec
4220
+ * @param [options] Conversion options
4221
+ * @returns Plain object
4222
+ */
4223
+ public static toObject(message: google.cloud.discoveryengine.v1.StreamAssistRequest.AgentsSpec, options?: $protobuf.IConversionOptions): { [k: string]: any };
4224
+
4225
+ /**
4226
+ * Converts this AgentsSpec to JSON.
4227
+ * @returns JSON object
4228
+ */
4229
+ public toJSON(): { [k: string]: any };
4230
+
4231
+ /**
4232
+ * Gets the default type url for AgentsSpec
4233
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
4234
+ * @returns The default type url
4235
+ */
4236
+ public static getTypeUrl(typeUrlPrefix?: string): string;
4237
+ }
4238
+
4239
+ namespace AgentsSpec {
4240
+
4241
+ /** Properties of an AgentSpec. */
4242
+ interface IAgentSpec {
4243
+
4244
+ /** AgentSpec agentId */
4245
+ agentId?: (string|null);
4246
+ }
4247
+
4248
+ /** Represents an AgentSpec. */
4249
+ class AgentSpec implements IAgentSpec {
4250
+
4251
+ /**
4252
+ * Constructs a new AgentSpec.
4253
+ * @param [properties] Properties to set
4254
+ */
4255
+ constructor(properties?: google.cloud.discoveryengine.v1.StreamAssistRequest.AgentsSpec.IAgentSpec);
4256
+
4257
+ /** AgentSpec agentId. */
4258
+ public agentId: string;
4259
+
4260
+ /**
4261
+ * Creates a new AgentSpec instance using the specified properties.
4262
+ * @param [properties] Properties to set
4263
+ * @returns AgentSpec instance
4264
+ */
4265
+ public static create(properties?: google.cloud.discoveryengine.v1.StreamAssistRequest.AgentsSpec.IAgentSpec): google.cloud.discoveryengine.v1.StreamAssistRequest.AgentsSpec.AgentSpec;
4266
+
4267
+ /**
4268
+ * Encodes the specified AgentSpec message. Does not implicitly {@link google.cloud.discoveryengine.v1.StreamAssistRequest.AgentsSpec.AgentSpec.verify|verify} messages.
4269
+ * @param message AgentSpec message or plain object to encode
4270
+ * @param [writer] Writer to encode to
4271
+ * @returns Writer
4272
+ */
4273
+ public static encode(message: google.cloud.discoveryengine.v1.StreamAssistRequest.AgentsSpec.IAgentSpec, writer?: $protobuf.Writer): $protobuf.Writer;
4274
+
4275
+ /**
4276
+ * Encodes the specified AgentSpec message, length delimited. Does not implicitly {@link google.cloud.discoveryengine.v1.StreamAssistRequest.AgentsSpec.AgentSpec.verify|verify} messages.
4277
+ * @param message AgentSpec message or plain object to encode
4278
+ * @param [writer] Writer to encode to
4279
+ * @returns Writer
4280
+ */
4281
+ public static encodeDelimited(message: google.cloud.discoveryengine.v1.StreamAssistRequest.AgentsSpec.IAgentSpec, writer?: $protobuf.Writer): $protobuf.Writer;
4282
+
4283
+ /**
4284
+ * Decodes an AgentSpec message from the specified reader or buffer.
4285
+ * @param reader Reader or buffer to decode from
4286
+ * @param [length] Message length if known beforehand
4287
+ * @returns AgentSpec
4288
+ * @throws {Error} If the payload is not a reader or valid buffer
4289
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
4290
+ */
4291
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.cloud.discoveryengine.v1.StreamAssistRequest.AgentsSpec.AgentSpec;
4292
+
4293
+ /**
4294
+ * Decodes an AgentSpec message from the specified reader or buffer, length delimited.
4295
+ * @param reader Reader or buffer to decode from
4296
+ * @returns AgentSpec
4297
+ * @throws {Error} If the payload is not a reader or valid buffer
4298
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
4299
+ */
4300
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.cloud.discoveryengine.v1.StreamAssistRequest.AgentsSpec.AgentSpec;
4301
+
4302
+ /**
4303
+ * Verifies an AgentSpec message.
4304
+ * @param message Plain object to verify
4305
+ * @returns `null` if valid, otherwise the reason why it is not
4306
+ */
4307
+ public static verify(message: { [k: string]: any }): (string|null);
4308
+
4309
+ /**
4310
+ * Creates an AgentSpec message from a plain object. Also converts values to their respective internal types.
4311
+ * @param object Plain object
4312
+ * @returns AgentSpec
4313
+ */
4314
+ public static fromObject(object: { [k: string]: any }): google.cloud.discoveryengine.v1.StreamAssistRequest.AgentsSpec.AgentSpec;
4315
+
4316
+ /**
4317
+ * Creates a plain object from an AgentSpec message. Also converts values to other types if specified.
4318
+ * @param message AgentSpec
4319
+ * @param [options] Conversion options
4320
+ * @returns Plain object
4321
+ */
4322
+ public static toObject(message: google.cloud.discoveryengine.v1.StreamAssistRequest.AgentsSpec.AgentSpec, options?: $protobuf.IConversionOptions): { [k: string]: any };
4323
+
4324
+ /**
4325
+ * Converts this AgentSpec to JSON.
4326
+ * @returns JSON object
4327
+ */
4328
+ public toJSON(): { [k: string]: any };
4329
+
4330
+ /**
4331
+ * Gets the default type url for AgentSpec
4332
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
4333
+ * @returns The default type url
4334
+ */
4335
+ public static getTypeUrl(typeUrlPrefix?: string): string;
4336
+ }
4337
+ }
4338
+
4136
4339
  /** Properties of a ToolsSpec. */
4137
4340
  interface IToolsSpec {
4138
4341
 
@@ -108032,6 +108235,9 @@ export namespace google {
108032
108235
  /** StreamAssistRequest userMetadata */
108033
108236
  userMetadata?: (google.cloud.discoveryengine.v1beta.IAssistUserMetadata|null);
108034
108237
 
108238
+ /** StreamAssistRequest agentsSpec */
108239
+ agentsSpec?: (google.cloud.discoveryengine.v1beta.StreamAssistRequest.IAgentsSpec|null);
108240
+
108035
108241
  /** StreamAssistRequest toolsSpec */
108036
108242
  toolsSpec?: (google.cloud.discoveryengine.v1beta.StreamAssistRequest.IToolsSpec|null);
108037
108243
 
@@ -108060,6 +108266,9 @@ export namespace google {
108060
108266
  /** StreamAssistRequest userMetadata. */
108061
108267
  public userMetadata?: (google.cloud.discoveryengine.v1beta.IAssistUserMetadata|null);
108062
108268
 
108269
+ /** StreamAssistRequest agentsSpec. */
108270
+ public agentsSpec?: (google.cloud.discoveryengine.v1beta.StreamAssistRequest.IAgentsSpec|null);
108271
+
108063
108272
  /** StreamAssistRequest toolsSpec. */
108064
108273
  public toolsSpec?: (google.cloud.discoveryengine.v1beta.StreamAssistRequest.IToolsSpec|null);
108065
108274
 
@@ -108146,6 +108355,203 @@ export namespace google {
108146
108355
 
108147
108356
  namespace StreamAssistRequest {
108148
108357
 
108358
+ /** Properties of an AgentsSpec. */
108359
+ interface IAgentsSpec {
108360
+
108361
+ /** AgentsSpec agentSpecs */
108362
+ agentSpecs?: (google.cloud.discoveryengine.v1beta.StreamAssistRequest.AgentsSpec.IAgentSpec[]|null);
108363
+ }
108364
+
108365
+ /** Represents an AgentsSpec. */
108366
+ class AgentsSpec implements IAgentsSpec {
108367
+
108368
+ /**
108369
+ * Constructs a new AgentsSpec.
108370
+ * @param [properties] Properties to set
108371
+ */
108372
+ constructor(properties?: google.cloud.discoveryengine.v1beta.StreamAssistRequest.IAgentsSpec);
108373
+
108374
+ /** AgentsSpec agentSpecs. */
108375
+ public agentSpecs: google.cloud.discoveryengine.v1beta.StreamAssistRequest.AgentsSpec.IAgentSpec[];
108376
+
108377
+ /**
108378
+ * Creates a new AgentsSpec instance using the specified properties.
108379
+ * @param [properties] Properties to set
108380
+ * @returns AgentsSpec instance
108381
+ */
108382
+ public static create(properties?: google.cloud.discoveryengine.v1beta.StreamAssistRequest.IAgentsSpec): google.cloud.discoveryengine.v1beta.StreamAssistRequest.AgentsSpec;
108383
+
108384
+ /**
108385
+ * Encodes the specified AgentsSpec message. Does not implicitly {@link google.cloud.discoveryengine.v1beta.StreamAssistRequest.AgentsSpec.verify|verify} messages.
108386
+ * @param message AgentsSpec message or plain object to encode
108387
+ * @param [writer] Writer to encode to
108388
+ * @returns Writer
108389
+ */
108390
+ public static encode(message: google.cloud.discoveryengine.v1beta.StreamAssistRequest.IAgentsSpec, writer?: $protobuf.Writer): $protobuf.Writer;
108391
+
108392
+ /**
108393
+ * Encodes the specified AgentsSpec message, length delimited. Does not implicitly {@link google.cloud.discoveryengine.v1beta.StreamAssistRequest.AgentsSpec.verify|verify} messages.
108394
+ * @param message AgentsSpec message or plain object to encode
108395
+ * @param [writer] Writer to encode to
108396
+ * @returns Writer
108397
+ */
108398
+ public static encodeDelimited(message: google.cloud.discoveryengine.v1beta.StreamAssistRequest.IAgentsSpec, writer?: $protobuf.Writer): $protobuf.Writer;
108399
+
108400
+ /**
108401
+ * Decodes an AgentsSpec message from the specified reader or buffer.
108402
+ * @param reader Reader or buffer to decode from
108403
+ * @param [length] Message length if known beforehand
108404
+ * @returns AgentsSpec
108405
+ * @throws {Error} If the payload is not a reader or valid buffer
108406
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
108407
+ */
108408
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.cloud.discoveryengine.v1beta.StreamAssistRequest.AgentsSpec;
108409
+
108410
+ /**
108411
+ * Decodes an AgentsSpec message from the specified reader or buffer, length delimited.
108412
+ * @param reader Reader or buffer to decode from
108413
+ * @returns AgentsSpec
108414
+ * @throws {Error} If the payload is not a reader or valid buffer
108415
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
108416
+ */
108417
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.cloud.discoveryengine.v1beta.StreamAssistRequest.AgentsSpec;
108418
+
108419
+ /**
108420
+ * Verifies an AgentsSpec message.
108421
+ * @param message Plain object to verify
108422
+ * @returns `null` if valid, otherwise the reason why it is not
108423
+ */
108424
+ public static verify(message: { [k: string]: any }): (string|null);
108425
+
108426
+ /**
108427
+ * Creates an AgentsSpec message from a plain object. Also converts values to their respective internal types.
108428
+ * @param object Plain object
108429
+ * @returns AgentsSpec
108430
+ */
108431
+ public static fromObject(object: { [k: string]: any }): google.cloud.discoveryengine.v1beta.StreamAssistRequest.AgentsSpec;
108432
+
108433
+ /**
108434
+ * Creates a plain object from an AgentsSpec message. Also converts values to other types if specified.
108435
+ * @param message AgentsSpec
108436
+ * @param [options] Conversion options
108437
+ * @returns Plain object
108438
+ */
108439
+ public static toObject(message: google.cloud.discoveryengine.v1beta.StreamAssistRequest.AgentsSpec, options?: $protobuf.IConversionOptions): { [k: string]: any };
108440
+
108441
+ /**
108442
+ * Converts this AgentsSpec to JSON.
108443
+ * @returns JSON object
108444
+ */
108445
+ public toJSON(): { [k: string]: any };
108446
+
108447
+ /**
108448
+ * Gets the default type url for AgentsSpec
108449
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
108450
+ * @returns The default type url
108451
+ */
108452
+ public static getTypeUrl(typeUrlPrefix?: string): string;
108453
+ }
108454
+
108455
+ namespace AgentsSpec {
108456
+
108457
+ /** Properties of an AgentSpec. */
108458
+ interface IAgentSpec {
108459
+
108460
+ /** AgentSpec agentId */
108461
+ agentId?: (string|null);
108462
+ }
108463
+
108464
+ /** Represents an AgentSpec. */
108465
+ class AgentSpec implements IAgentSpec {
108466
+
108467
+ /**
108468
+ * Constructs a new AgentSpec.
108469
+ * @param [properties] Properties to set
108470
+ */
108471
+ constructor(properties?: google.cloud.discoveryengine.v1beta.StreamAssistRequest.AgentsSpec.IAgentSpec);
108472
+
108473
+ /** AgentSpec agentId. */
108474
+ public agentId: string;
108475
+
108476
+ /**
108477
+ * Creates a new AgentSpec instance using the specified properties.
108478
+ * @param [properties] Properties to set
108479
+ * @returns AgentSpec instance
108480
+ */
108481
+ public static create(properties?: google.cloud.discoveryengine.v1beta.StreamAssistRequest.AgentsSpec.IAgentSpec): google.cloud.discoveryengine.v1beta.StreamAssistRequest.AgentsSpec.AgentSpec;
108482
+
108483
+ /**
108484
+ * Encodes the specified AgentSpec message. Does not implicitly {@link google.cloud.discoveryengine.v1beta.StreamAssistRequest.AgentsSpec.AgentSpec.verify|verify} messages.
108485
+ * @param message AgentSpec message or plain object to encode
108486
+ * @param [writer] Writer to encode to
108487
+ * @returns Writer
108488
+ */
108489
+ public static encode(message: google.cloud.discoveryengine.v1beta.StreamAssistRequest.AgentsSpec.IAgentSpec, writer?: $protobuf.Writer): $protobuf.Writer;
108490
+
108491
+ /**
108492
+ * Encodes the specified AgentSpec message, length delimited. Does not implicitly {@link google.cloud.discoveryengine.v1beta.StreamAssistRequest.AgentsSpec.AgentSpec.verify|verify} messages.
108493
+ * @param message AgentSpec message or plain object to encode
108494
+ * @param [writer] Writer to encode to
108495
+ * @returns Writer
108496
+ */
108497
+ public static encodeDelimited(message: google.cloud.discoveryengine.v1beta.StreamAssistRequest.AgentsSpec.IAgentSpec, writer?: $protobuf.Writer): $protobuf.Writer;
108498
+
108499
+ /**
108500
+ * Decodes an AgentSpec message from the specified reader or buffer.
108501
+ * @param reader Reader or buffer to decode from
108502
+ * @param [length] Message length if known beforehand
108503
+ * @returns AgentSpec
108504
+ * @throws {Error} If the payload is not a reader or valid buffer
108505
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
108506
+ */
108507
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.cloud.discoveryengine.v1beta.StreamAssistRequest.AgentsSpec.AgentSpec;
108508
+
108509
+ /**
108510
+ * Decodes an AgentSpec message from the specified reader or buffer, length delimited.
108511
+ * @param reader Reader or buffer to decode from
108512
+ * @returns AgentSpec
108513
+ * @throws {Error} If the payload is not a reader or valid buffer
108514
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
108515
+ */
108516
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.cloud.discoveryengine.v1beta.StreamAssistRequest.AgentsSpec.AgentSpec;
108517
+
108518
+ /**
108519
+ * Verifies an AgentSpec message.
108520
+ * @param message Plain object to verify
108521
+ * @returns `null` if valid, otherwise the reason why it is not
108522
+ */
108523
+ public static verify(message: { [k: string]: any }): (string|null);
108524
+
108525
+ /**
108526
+ * Creates an AgentSpec message from a plain object. Also converts values to their respective internal types.
108527
+ * @param object Plain object
108528
+ * @returns AgentSpec
108529
+ */
108530
+ public static fromObject(object: { [k: string]: any }): google.cloud.discoveryengine.v1beta.StreamAssistRequest.AgentsSpec.AgentSpec;
108531
+
108532
+ /**
108533
+ * Creates a plain object from an AgentSpec message. Also converts values to other types if specified.
108534
+ * @param message AgentSpec
108535
+ * @param [options] Conversion options
108536
+ * @returns Plain object
108537
+ */
108538
+ public static toObject(message: google.cloud.discoveryengine.v1beta.StreamAssistRequest.AgentsSpec.AgentSpec, options?: $protobuf.IConversionOptions): { [k: string]: any };
108539
+
108540
+ /**
108541
+ * Converts this AgentSpec to JSON.
108542
+ * @returns JSON object
108543
+ */
108544
+ public toJSON(): { [k: string]: any };
108545
+
108546
+ /**
108547
+ * Gets the default type url for AgentSpec
108548
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
108549
+ * @returns The default type url
108550
+ */
108551
+ public static getTypeUrl(typeUrlPrefix?: string): string;
108552
+ }
108553
+ }
108554
+
108149
108555
  /** Properties of a ToolsSpec. */
108150
108556
  interface IToolsSpec {
108151
108557
 
@@ -164791,6 +165197,9 @@ export namespace google {
164791
165197
 
164792
165198
  /** PhpSettings common */
164793
165199
  common?: (google.api.ICommonLanguageSettings|null);
165200
+
165201
+ /** PhpSettings libraryPackage */
165202
+ libraryPackage?: (string|null);
164794
165203
  }
164795
165204
 
164796
165205
  /** Represents a PhpSettings. */
@@ -164805,6 +165214,9 @@ export namespace google {
164805
165214
  /** PhpSettings common. */
164806
165215
  public common?: (google.api.ICommonLanguageSettings|null);
164807
165216
 
165217
+ /** PhpSettings libraryPackage. */
165218
+ public libraryPackage: string;
165219
+
164808
165220
  /**
164809
165221
  * Creates a new PhpSettings instance using the specified properties.
164810
165222
  * @param [properties] Properties to set
@@ -165533,6 +165945,9 @@ export namespace google {
165533
165945
 
165534
165946
  /** MethodSettings autoPopulatedFields */
165535
165947
  autoPopulatedFields?: (string[]|null);
165948
+
165949
+ /** MethodSettings batching */
165950
+ batching?: (google.api.IBatchingConfigProto|null);
165536
165951
  }
165537
165952
 
165538
165953
  /** Represents a MethodSettings. */
@@ -165553,6 +165968,9 @@ export namespace google {
165553
165968
  /** MethodSettings autoPopulatedFields. */
165554
165969
  public autoPopulatedFields: string[];
165555
165970
 
165971
+ /** MethodSettings batching. */
165972
+ public batching?: (google.api.IBatchingConfigProto|null);
165973
+
165556
165974
  /**
165557
165975
  * Creates a new MethodSettings instance using the specified properties.
165558
165976
  * @param [properties] Properties to set
@@ -165871,6 +166289,365 @@ export namespace google {
165871
166289
  public static getTypeUrl(typeUrlPrefix?: string): string;
165872
166290
  }
165873
166291
 
166292
+ /** Properties of a BatchingConfigProto. */
166293
+ interface IBatchingConfigProto {
166294
+
166295
+ /** BatchingConfigProto thresholds */
166296
+ thresholds?: (google.api.IBatchingSettingsProto|null);
166297
+
166298
+ /** BatchingConfigProto batchDescriptor */
166299
+ batchDescriptor?: (google.api.IBatchingDescriptorProto|null);
166300
+ }
166301
+
166302
+ /** Represents a BatchingConfigProto. */
166303
+ class BatchingConfigProto implements IBatchingConfigProto {
166304
+
166305
+ /**
166306
+ * Constructs a new BatchingConfigProto.
166307
+ * @param [properties] Properties to set
166308
+ */
166309
+ constructor(properties?: google.api.IBatchingConfigProto);
166310
+
166311
+ /** BatchingConfigProto thresholds. */
166312
+ public thresholds?: (google.api.IBatchingSettingsProto|null);
166313
+
166314
+ /** BatchingConfigProto batchDescriptor. */
166315
+ public batchDescriptor?: (google.api.IBatchingDescriptorProto|null);
166316
+
166317
+ /**
166318
+ * Creates a new BatchingConfigProto instance using the specified properties.
166319
+ * @param [properties] Properties to set
166320
+ * @returns BatchingConfigProto instance
166321
+ */
166322
+ public static create(properties?: google.api.IBatchingConfigProto): google.api.BatchingConfigProto;
166323
+
166324
+ /**
166325
+ * Encodes the specified BatchingConfigProto message. Does not implicitly {@link google.api.BatchingConfigProto.verify|verify} messages.
166326
+ * @param message BatchingConfigProto message or plain object to encode
166327
+ * @param [writer] Writer to encode to
166328
+ * @returns Writer
166329
+ */
166330
+ public static encode(message: google.api.IBatchingConfigProto, writer?: $protobuf.Writer): $protobuf.Writer;
166331
+
166332
+ /**
166333
+ * Encodes the specified BatchingConfigProto message, length delimited. Does not implicitly {@link google.api.BatchingConfigProto.verify|verify} messages.
166334
+ * @param message BatchingConfigProto message or plain object to encode
166335
+ * @param [writer] Writer to encode to
166336
+ * @returns Writer
166337
+ */
166338
+ public static encodeDelimited(message: google.api.IBatchingConfigProto, writer?: $protobuf.Writer): $protobuf.Writer;
166339
+
166340
+ /**
166341
+ * Decodes a BatchingConfigProto message from the specified reader or buffer.
166342
+ * @param reader Reader or buffer to decode from
166343
+ * @param [length] Message length if known beforehand
166344
+ * @returns BatchingConfigProto
166345
+ * @throws {Error} If the payload is not a reader or valid buffer
166346
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
166347
+ */
166348
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingConfigProto;
166349
+
166350
+ /**
166351
+ * Decodes a BatchingConfigProto message from the specified reader or buffer, length delimited.
166352
+ * @param reader Reader or buffer to decode from
166353
+ * @returns BatchingConfigProto
166354
+ * @throws {Error} If the payload is not a reader or valid buffer
166355
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
166356
+ */
166357
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingConfigProto;
166358
+
166359
+ /**
166360
+ * Verifies a BatchingConfigProto message.
166361
+ * @param message Plain object to verify
166362
+ * @returns `null` if valid, otherwise the reason why it is not
166363
+ */
166364
+ public static verify(message: { [k: string]: any }): (string|null);
166365
+
166366
+ /**
166367
+ * Creates a BatchingConfigProto message from a plain object. Also converts values to their respective internal types.
166368
+ * @param object Plain object
166369
+ * @returns BatchingConfigProto
166370
+ */
166371
+ public static fromObject(object: { [k: string]: any }): google.api.BatchingConfigProto;
166372
+
166373
+ /**
166374
+ * Creates a plain object from a BatchingConfigProto message. Also converts values to other types if specified.
166375
+ * @param message BatchingConfigProto
166376
+ * @param [options] Conversion options
166377
+ * @returns Plain object
166378
+ */
166379
+ public static toObject(message: google.api.BatchingConfigProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
166380
+
166381
+ /**
166382
+ * Converts this BatchingConfigProto to JSON.
166383
+ * @returns JSON object
166384
+ */
166385
+ public toJSON(): { [k: string]: any };
166386
+
166387
+ /**
166388
+ * Gets the default type url for BatchingConfigProto
166389
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
166390
+ * @returns The default type url
166391
+ */
166392
+ public static getTypeUrl(typeUrlPrefix?: string): string;
166393
+ }
166394
+
166395
+ /** Properties of a BatchingSettingsProto. */
166396
+ interface IBatchingSettingsProto {
166397
+
166398
+ /** BatchingSettingsProto elementCountThreshold */
166399
+ elementCountThreshold?: (number|null);
166400
+
166401
+ /** BatchingSettingsProto requestByteThreshold */
166402
+ requestByteThreshold?: (number|Long|string|null);
166403
+
166404
+ /** BatchingSettingsProto delayThreshold */
166405
+ delayThreshold?: (google.protobuf.IDuration|null);
166406
+
166407
+ /** BatchingSettingsProto elementCountLimit */
166408
+ elementCountLimit?: (number|null);
166409
+
166410
+ /** BatchingSettingsProto requestByteLimit */
166411
+ requestByteLimit?: (number|null);
166412
+
166413
+ /** BatchingSettingsProto flowControlElementLimit */
166414
+ flowControlElementLimit?: (number|null);
166415
+
166416
+ /** BatchingSettingsProto flowControlByteLimit */
166417
+ flowControlByteLimit?: (number|null);
166418
+
166419
+ /** BatchingSettingsProto flowControlLimitExceededBehavior */
166420
+ flowControlLimitExceededBehavior?: (google.api.FlowControlLimitExceededBehaviorProto|keyof typeof google.api.FlowControlLimitExceededBehaviorProto|null);
166421
+ }
166422
+
166423
+ /** Represents a BatchingSettingsProto. */
166424
+ class BatchingSettingsProto implements IBatchingSettingsProto {
166425
+
166426
+ /**
166427
+ * Constructs a new BatchingSettingsProto.
166428
+ * @param [properties] Properties to set
166429
+ */
166430
+ constructor(properties?: google.api.IBatchingSettingsProto);
166431
+
166432
+ /** BatchingSettingsProto elementCountThreshold. */
166433
+ public elementCountThreshold: number;
166434
+
166435
+ /** BatchingSettingsProto requestByteThreshold. */
166436
+ public requestByteThreshold: (number|Long|string);
166437
+
166438
+ /** BatchingSettingsProto delayThreshold. */
166439
+ public delayThreshold?: (google.protobuf.IDuration|null);
166440
+
166441
+ /** BatchingSettingsProto elementCountLimit. */
166442
+ public elementCountLimit: number;
166443
+
166444
+ /** BatchingSettingsProto requestByteLimit. */
166445
+ public requestByteLimit: number;
166446
+
166447
+ /** BatchingSettingsProto flowControlElementLimit. */
166448
+ public flowControlElementLimit: number;
166449
+
166450
+ /** BatchingSettingsProto flowControlByteLimit. */
166451
+ public flowControlByteLimit: number;
166452
+
166453
+ /** BatchingSettingsProto flowControlLimitExceededBehavior. */
166454
+ public flowControlLimitExceededBehavior: (google.api.FlowControlLimitExceededBehaviorProto|keyof typeof google.api.FlowControlLimitExceededBehaviorProto);
166455
+
166456
+ /**
166457
+ * Creates a new BatchingSettingsProto instance using the specified properties.
166458
+ * @param [properties] Properties to set
166459
+ * @returns BatchingSettingsProto instance
166460
+ */
166461
+ public static create(properties?: google.api.IBatchingSettingsProto): google.api.BatchingSettingsProto;
166462
+
166463
+ /**
166464
+ * Encodes the specified BatchingSettingsProto message. Does not implicitly {@link google.api.BatchingSettingsProto.verify|verify} messages.
166465
+ * @param message BatchingSettingsProto message or plain object to encode
166466
+ * @param [writer] Writer to encode to
166467
+ * @returns Writer
166468
+ */
166469
+ public static encode(message: google.api.IBatchingSettingsProto, writer?: $protobuf.Writer): $protobuf.Writer;
166470
+
166471
+ /**
166472
+ * Encodes the specified BatchingSettingsProto message, length delimited. Does not implicitly {@link google.api.BatchingSettingsProto.verify|verify} messages.
166473
+ * @param message BatchingSettingsProto message or plain object to encode
166474
+ * @param [writer] Writer to encode to
166475
+ * @returns Writer
166476
+ */
166477
+ public static encodeDelimited(message: google.api.IBatchingSettingsProto, writer?: $protobuf.Writer): $protobuf.Writer;
166478
+
166479
+ /**
166480
+ * Decodes a BatchingSettingsProto message from the specified reader or buffer.
166481
+ * @param reader Reader or buffer to decode from
166482
+ * @param [length] Message length if known beforehand
166483
+ * @returns BatchingSettingsProto
166484
+ * @throws {Error} If the payload is not a reader or valid buffer
166485
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
166486
+ */
166487
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingSettingsProto;
166488
+
166489
+ /**
166490
+ * Decodes a BatchingSettingsProto message from the specified reader or buffer, length delimited.
166491
+ * @param reader Reader or buffer to decode from
166492
+ * @returns BatchingSettingsProto
166493
+ * @throws {Error} If the payload is not a reader or valid buffer
166494
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
166495
+ */
166496
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingSettingsProto;
166497
+
166498
+ /**
166499
+ * Verifies a BatchingSettingsProto message.
166500
+ * @param message Plain object to verify
166501
+ * @returns `null` if valid, otherwise the reason why it is not
166502
+ */
166503
+ public static verify(message: { [k: string]: any }): (string|null);
166504
+
166505
+ /**
166506
+ * Creates a BatchingSettingsProto message from a plain object. Also converts values to their respective internal types.
166507
+ * @param object Plain object
166508
+ * @returns BatchingSettingsProto
166509
+ */
166510
+ public static fromObject(object: { [k: string]: any }): google.api.BatchingSettingsProto;
166511
+
166512
+ /**
166513
+ * Creates a plain object from a BatchingSettingsProto message. Also converts values to other types if specified.
166514
+ * @param message BatchingSettingsProto
166515
+ * @param [options] Conversion options
166516
+ * @returns Plain object
166517
+ */
166518
+ public static toObject(message: google.api.BatchingSettingsProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
166519
+
166520
+ /**
166521
+ * Converts this BatchingSettingsProto to JSON.
166522
+ * @returns JSON object
166523
+ */
166524
+ public toJSON(): { [k: string]: any };
166525
+
166526
+ /**
166527
+ * Gets the default type url for BatchingSettingsProto
166528
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
166529
+ * @returns The default type url
166530
+ */
166531
+ public static getTypeUrl(typeUrlPrefix?: string): string;
166532
+ }
166533
+
166534
+ /** FlowControlLimitExceededBehaviorProto enum. */
166535
+ enum FlowControlLimitExceededBehaviorProto {
166536
+ UNSET_BEHAVIOR = 0,
166537
+ THROW_EXCEPTION = 1,
166538
+ BLOCK = 2,
166539
+ IGNORE = 3
166540
+ }
166541
+
166542
+ /** Properties of a BatchingDescriptorProto. */
166543
+ interface IBatchingDescriptorProto {
166544
+
166545
+ /** BatchingDescriptorProto batchedField */
166546
+ batchedField?: (string|null);
166547
+
166548
+ /** BatchingDescriptorProto discriminatorFields */
166549
+ discriminatorFields?: (string[]|null);
166550
+
166551
+ /** BatchingDescriptorProto subresponseField */
166552
+ subresponseField?: (string|null);
166553
+ }
166554
+
166555
+ /** Represents a BatchingDescriptorProto. */
166556
+ class BatchingDescriptorProto implements IBatchingDescriptorProto {
166557
+
166558
+ /**
166559
+ * Constructs a new BatchingDescriptorProto.
166560
+ * @param [properties] Properties to set
166561
+ */
166562
+ constructor(properties?: google.api.IBatchingDescriptorProto);
166563
+
166564
+ /** BatchingDescriptorProto batchedField. */
166565
+ public batchedField: string;
166566
+
166567
+ /** BatchingDescriptorProto discriminatorFields. */
166568
+ public discriminatorFields: string[];
166569
+
166570
+ /** BatchingDescriptorProto subresponseField. */
166571
+ public subresponseField: string;
166572
+
166573
+ /**
166574
+ * Creates a new BatchingDescriptorProto instance using the specified properties.
166575
+ * @param [properties] Properties to set
166576
+ * @returns BatchingDescriptorProto instance
166577
+ */
166578
+ public static create(properties?: google.api.IBatchingDescriptorProto): google.api.BatchingDescriptorProto;
166579
+
166580
+ /**
166581
+ * Encodes the specified BatchingDescriptorProto message. Does not implicitly {@link google.api.BatchingDescriptorProto.verify|verify} messages.
166582
+ * @param message BatchingDescriptorProto message or plain object to encode
166583
+ * @param [writer] Writer to encode to
166584
+ * @returns Writer
166585
+ */
166586
+ public static encode(message: google.api.IBatchingDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer;
166587
+
166588
+ /**
166589
+ * Encodes the specified BatchingDescriptorProto message, length delimited. Does not implicitly {@link google.api.BatchingDescriptorProto.verify|verify} messages.
166590
+ * @param message BatchingDescriptorProto message or plain object to encode
166591
+ * @param [writer] Writer to encode to
166592
+ * @returns Writer
166593
+ */
166594
+ public static encodeDelimited(message: google.api.IBatchingDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer;
166595
+
166596
+ /**
166597
+ * Decodes a BatchingDescriptorProto message from the specified reader or buffer.
166598
+ * @param reader Reader or buffer to decode from
166599
+ * @param [length] Message length if known beforehand
166600
+ * @returns BatchingDescriptorProto
166601
+ * @throws {Error} If the payload is not a reader or valid buffer
166602
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
166603
+ */
166604
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.BatchingDescriptorProto;
166605
+
166606
+ /**
166607
+ * Decodes a BatchingDescriptorProto message from the specified reader or buffer, length delimited.
166608
+ * @param reader Reader or buffer to decode from
166609
+ * @returns BatchingDescriptorProto
166610
+ * @throws {Error} If the payload is not a reader or valid buffer
166611
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
166612
+ */
166613
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.BatchingDescriptorProto;
166614
+
166615
+ /**
166616
+ * Verifies a BatchingDescriptorProto message.
166617
+ * @param message Plain object to verify
166618
+ * @returns `null` if valid, otherwise the reason why it is not
166619
+ */
166620
+ public static verify(message: { [k: string]: any }): (string|null);
166621
+
166622
+ /**
166623
+ * Creates a BatchingDescriptorProto message from a plain object. Also converts values to their respective internal types.
166624
+ * @param object Plain object
166625
+ * @returns BatchingDescriptorProto
166626
+ */
166627
+ public static fromObject(object: { [k: string]: any }): google.api.BatchingDescriptorProto;
166628
+
166629
+ /**
166630
+ * Creates a plain object from a BatchingDescriptorProto message. Also converts values to other types if specified.
166631
+ * @param message BatchingDescriptorProto
166632
+ * @param [options] Conversion options
166633
+ * @returns Plain object
166634
+ */
166635
+ public static toObject(message: google.api.BatchingDescriptorProto, options?: $protobuf.IConversionOptions): { [k: string]: any };
166636
+
166637
+ /**
166638
+ * Converts this BatchingDescriptorProto to JSON.
166639
+ * @returns JSON object
166640
+ */
166641
+ public toJSON(): { [k: string]: any };
166642
+
166643
+ /**
166644
+ * Gets the default type url for BatchingDescriptorProto
166645
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
166646
+ * @returns The default type url
166647
+ */
166648
+ public static getTypeUrl(typeUrlPrefix?: string): string;
166649
+ }
166650
+
165874
166651
  /** LaunchStage enum. */
165875
166652
  enum LaunchStage {
165876
166653
  LAUNCH_STAGE_UNSPECIFIED = 0,
@@ -166101,6 +166878,8 @@ export namespace google {
166101
166878
  EDITION_PROTO3 = 999,
166102
166879
  EDITION_2023 = 1000,
166103
166880
  EDITION_2024 = 1001,
166881
+ EDITION_2026 = 1002,
166882
+ EDITION_UNSTABLE = 9999,
166104
166883
  EDITION_1_TEST_ONLY = 1,
166105
166884
  EDITION_2_TEST_ONLY = 2,
166106
166885
  EDITION_99997_TEST_ONLY = 99997,
@@ -168472,6 +169251,9 @@ export namespace google {
168472
169251
 
168473
169252
  /** FeatureSupport editionRemoved */
168474
169253
  editionRemoved?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
169254
+
169255
+ /** FeatureSupport removalError */
169256
+ removalError?: (string|null);
168475
169257
  }
168476
169258
 
168477
169259
  /** Represents a FeatureSupport. */
@@ -168495,6 +169277,9 @@ export namespace google {
168495
169277
  /** FeatureSupport editionRemoved. */
168496
169278
  public editionRemoved: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
168497
169279
 
169280
+ /** FeatureSupport removalError. */
169281
+ public removalError: string;
169282
+
168498
169283
  /**
168499
169284
  * Creates a new FeatureSupport instance using the specified properties.
168500
169285
  * @param [properties] Properties to set
@@ -169436,6 +170221,9 @@ export namespace google {
169436
170221
 
169437
170222
  /** FeatureSet defaultSymbolVisibility */
169438
170223
  defaultSymbolVisibility?: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|null);
170224
+
170225
+ /** FeatureSet enforceProtoLimits */
170226
+ enforceProtoLimits?: (google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|keyof typeof google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|null);
169439
170227
  }
169440
170228
 
169441
170229
  /** Represents a FeatureSet. */
@@ -169471,6 +170259,9 @@ export namespace google {
169471
170259
  /** FeatureSet defaultSymbolVisibility. */
169472
170260
  public defaultSymbolVisibility: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility);
169473
170261
 
170262
+ /** FeatureSet enforceProtoLimits. */
170263
+ public enforceProtoLimits: (google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits|keyof typeof google.protobuf.FeatureSet.ProtoLimitsFeature.EnforceProtoLimits);
170264
+
169474
170265
  /**
169475
170266
  * Creates a new FeatureSet instance using the specified properties.
169476
170267
  * @param [properties] Properties to set
@@ -169598,7 +170389,8 @@ export namespace google {
169598
170389
  enum EnforceNamingStyle {
169599
170390
  ENFORCE_NAMING_STYLE_UNKNOWN = 0,
169600
170391
  STYLE2024 = 1,
169601
- STYLE_LEGACY = 2
170392
+ STYLE_LEGACY = 2,
170393
+ STYLE2026 = 3
169602
170394
  }
169603
170395
 
169604
170396
  /** Properties of a VisibilityFeature. */
@@ -169703,6 +170495,107 @@ export namespace google {
169703
170495
  STRICT = 4
169704
170496
  }
169705
170497
  }
170498
+
170499
+ /** Properties of a ProtoLimitsFeature. */
170500
+ interface IProtoLimitsFeature {
170501
+ }
170502
+
170503
+ /** Represents a ProtoLimitsFeature. */
170504
+ class ProtoLimitsFeature implements IProtoLimitsFeature {
170505
+
170506
+ /**
170507
+ * Constructs a new ProtoLimitsFeature.
170508
+ * @param [properties] Properties to set
170509
+ */
170510
+ constructor(properties?: google.protobuf.FeatureSet.IProtoLimitsFeature);
170511
+
170512
+ /**
170513
+ * Creates a new ProtoLimitsFeature instance using the specified properties.
170514
+ * @param [properties] Properties to set
170515
+ * @returns ProtoLimitsFeature instance
170516
+ */
170517
+ public static create(properties?: google.protobuf.FeatureSet.IProtoLimitsFeature): google.protobuf.FeatureSet.ProtoLimitsFeature;
170518
+
170519
+ /**
170520
+ * Encodes the specified ProtoLimitsFeature message. Does not implicitly {@link google.protobuf.FeatureSet.ProtoLimitsFeature.verify|verify} messages.
170521
+ * @param message ProtoLimitsFeature message or plain object to encode
170522
+ * @param [writer] Writer to encode to
170523
+ * @returns Writer
170524
+ */
170525
+ public static encode(message: google.protobuf.FeatureSet.IProtoLimitsFeature, writer?: $protobuf.Writer): $protobuf.Writer;
170526
+
170527
+ /**
170528
+ * Encodes the specified ProtoLimitsFeature message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.ProtoLimitsFeature.verify|verify} messages.
170529
+ * @param message ProtoLimitsFeature message or plain object to encode
170530
+ * @param [writer] Writer to encode to
170531
+ * @returns Writer
170532
+ */
170533
+ public static encodeDelimited(message: google.protobuf.FeatureSet.IProtoLimitsFeature, writer?: $protobuf.Writer): $protobuf.Writer;
170534
+
170535
+ /**
170536
+ * Decodes a ProtoLimitsFeature message from the specified reader or buffer.
170537
+ * @param reader Reader or buffer to decode from
170538
+ * @param [length] Message length if known beforehand
170539
+ * @returns ProtoLimitsFeature
170540
+ * @throws {Error} If the payload is not a reader or valid buffer
170541
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
170542
+ */
170543
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet.ProtoLimitsFeature;
170544
+
170545
+ /**
170546
+ * Decodes a ProtoLimitsFeature message from the specified reader or buffer, length delimited.
170547
+ * @param reader Reader or buffer to decode from
170548
+ * @returns ProtoLimitsFeature
170549
+ * @throws {Error} If the payload is not a reader or valid buffer
170550
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
170551
+ */
170552
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet.ProtoLimitsFeature;
170553
+
170554
+ /**
170555
+ * Verifies a ProtoLimitsFeature message.
170556
+ * @param message Plain object to verify
170557
+ * @returns `null` if valid, otherwise the reason why it is not
170558
+ */
170559
+ public static verify(message: { [k: string]: any }): (string|null);
170560
+
170561
+ /**
170562
+ * Creates a ProtoLimitsFeature message from a plain object. Also converts values to their respective internal types.
170563
+ * @param object Plain object
170564
+ * @returns ProtoLimitsFeature
170565
+ */
170566
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet.ProtoLimitsFeature;
170567
+
170568
+ /**
170569
+ * Creates a plain object from a ProtoLimitsFeature message. Also converts values to other types if specified.
170570
+ * @param message ProtoLimitsFeature
170571
+ * @param [options] Conversion options
170572
+ * @returns Plain object
170573
+ */
170574
+ public static toObject(message: google.protobuf.FeatureSet.ProtoLimitsFeature, options?: $protobuf.IConversionOptions): { [k: string]: any };
170575
+
170576
+ /**
170577
+ * Converts this ProtoLimitsFeature to JSON.
170578
+ * @returns JSON object
170579
+ */
170580
+ public toJSON(): { [k: string]: any };
170581
+
170582
+ /**
170583
+ * Gets the default type url for ProtoLimitsFeature
170584
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
170585
+ * @returns The default type url
170586
+ */
170587
+ public static getTypeUrl(typeUrlPrefix?: string): string;
170588
+ }
170589
+
170590
+ namespace ProtoLimitsFeature {
170591
+
170592
+ /** EnforceProtoLimits enum. */
170593
+ enum EnforceProtoLimits {
170594
+ PROTO_LIMITS_UNKNOWN = 0,
170595
+ LEGACY_NO_EXPLICIT_LIMITS = 1,
170596
+ PROTO_LIMITS2026 = 2
170597
+ }
170598
+ }
169706
170599
  }
169707
170600
 
169708
170601
  /** Properties of a FeatureSetDefaults. */
@@ -171692,6 +172585,9 @@ export namespace google {
171692
172585
 
171693
172586
  /** ListOperationsRequest pageToken */
171694
172587
  pageToken?: (string|null);
172588
+
172589
+ /** ListOperationsRequest returnPartialSuccess */
172590
+ returnPartialSuccess?: (boolean|null);
171695
172591
  }
171696
172592
 
171697
172593
  /** Represents a ListOperationsRequest. */
@@ -171715,6 +172611,9 @@ export namespace google {
171715
172611
  /** ListOperationsRequest pageToken. */
171716
172612
  public pageToken: string;
171717
172613
 
172614
+ /** ListOperationsRequest returnPartialSuccess. */
172615
+ public returnPartialSuccess: boolean;
172616
+
171718
172617
  /**
171719
172618
  * Creates a new ListOperationsRequest instance using the specified properties.
171720
172619
  * @param [properties] Properties to set
@@ -171801,6 +172700,9 @@ export namespace google {
171801
172700
 
171802
172701
  /** ListOperationsResponse nextPageToken */
171803
172702
  nextPageToken?: (string|null);
172703
+
172704
+ /** ListOperationsResponse unreachable */
172705
+ unreachable?: (string[]|null);
171804
172706
  }
171805
172707
 
171806
172708
  /** Represents a ListOperationsResponse. */
@@ -171818,6 +172720,9 @@ export namespace google {
171818
172720
  /** ListOperationsResponse nextPageToken. */
171819
172721
  public nextPageToken: string;
171820
172722
 
172723
+ /** ListOperationsResponse unreachable. */
172724
+ public unreachable: string[];
172725
+
171821
172726
  /**
171822
172727
  * Creates a new ListOperationsResponse instance using the specified properties.
171823
172728
  * @param [properties] Properties to set