@google-cloud/dms 2.2.0 → 2.2.1

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.
@@ -5164,6 +5164,1448 @@ export namespace google {
5164
5164
  public static getTypeUrl(typeUrlPrefix?: string): string;
5165
5165
  }
5166
5166
 
5167
+ /** Properties of a CommonLanguageSettings. */
5168
+ interface ICommonLanguageSettings {
5169
+
5170
+ /** CommonLanguageSettings referenceDocsUri */
5171
+ referenceDocsUri?: (string|null);
5172
+
5173
+ /** CommonLanguageSettings destinations */
5174
+ destinations?: (google.api.ClientLibraryDestination[]|null);
5175
+ }
5176
+
5177
+ /** Represents a CommonLanguageSettings. */
5178
+ class CommonLanguageSettings implements ICommonLanguageSettings {
5179
+
5180
+ /**
5181
+ * Constructs a new CommonLanguageSettings.
5182
+ * @param [properties] Properties to set
5183
+ */
5184
+ constructor(properties?: google.api.ICommonLanguageSettings);
5185
+
5186
+ /** CommonLanguageSettings referenceDocsUri. */
5187
+ public referenceDocsUri: string;
5188
+
5189
+ /** CommonLanguageSettings destinations. */
5190
+ public destinations: google.api.ClientLibraryDestination[];
5191
+
5192
+ /**
5193
+ * Creates a new CommonLanguageSettings instance using the specified properties.
5194
+ * @param [properties] Properties to set
5195
+ * @returns CommonLanguageSettings instance
5196
+ */
5197
+ public static create(properties?: google.api.ICommonLanguageSettings): google.api.CommonLanguageSettings;
5198
+
5199
+ /**
5200
+ * Encodes the specified CommonLanguageSettings message. Does not implicitly {@link google.api.CommonLanguageSettings.verify|verify} messages.
5201
+ * @param message CommonLanguageSettings message or plain object to encode
5202
+ * @param [writer] Writer to encode to
5203
+ * @returns Writer
5204
+ */
5205
+ public static encode(message: google.api.ICommonLanguageSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5206
+
5207
+ /**
5208
+ * Encodes the specified CommonLanguageSettings message, length delimited. Does not implicitly {@link google.api.CommonLanguageSettings.verify|verify} messages.
5209
+ * @param message CommonLanguageSettings message or plain object to encode
5210
+ * @param [writer] Writer to encode to
5211
+ * @returns Writer
5212
+ */
5213
+ public static encodeDelimited(message: google.api.ICommonLanguageSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5214
+
5215
+ /**
5216
+ * Decodes a CommonLanguageSettings message from the specified reader or buffer.
5217
+ * @param reader Reader or buffer to decode from
5218
+ * @param [length] Message length if known beforehand
5219
+ * @returns CommonLanguageSettings
5220
+ * @throws {Error} If the payload is not a reader or valid buffer
5221
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5222
+ */
5223
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.CommonLanguageSettings;
5224
+
5225
+ /**
5226
+ * Decodes a CommonLanguageSettings message from the specified reader or buffer, length delimited.
5227
+ * @param reader Reader or buffer to decode from
5228
+ * @returns CommonLanguageSettings
5229
+ * @throws {Error} If the payload is not a reader or valid buffer
5230
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5231
+ */
5232
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.CommonLanguageSettings;
5233
+
5234
+ /**
5235
+ * Verifies a CommonLanguageSettings message.
5236
+ * @param message Plain object to verify
5237
+ * @returns `null` if valid, otherwise the reason why it is not
5238
+ */
5239
+ public static verify(message: { [k: string]: any }): (string|null);
5240
+
5241
+ /**
5242
+ * Creates a CommonLanguageSettings message from a plain object. Also converts values to their respective internal types.
5243
+ * @param object Plain object
5244
+ * @returns CommonLanguageSettings
5245
+ */
5246
+ public static fromObject(object: { [k: string]: any }): google.api.CommonLanguageSettings;
5247
+
5248
+ /**
5249
+ * Creates a plain object from a CommonLanguageSettings message. Also converts values to other types if specified.
5250
+ * @param message CommonLanguageSettings
5251
+ * @param [options] Conversion options
5252
+ * @returns Plain object
5253
+ */
5254
+ public static toObject(message: google.api.CommonLanguageSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
5255
+
5256
+ /**
5257
+ * Converts this CommonLanguageSettings to JSON.
5258
+ * @returns JSON object
5259
+ */
5260
+ public toJSON(): { [k: string]: any };
5261
+
5262
+ /**
5263
+ * Gets the default type url for CommonLanguageSettings
5264
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5265
+ * @returns The default type url
5266
+ */
5267
+ public static getTypeUrl(typeUrlPrefix?: string): string;
5268
+ }
5269
+
5270
+ /** Properties of a ClientLibrarySettings. */
5271
+ interface IClientLibrarySettings {
5272
+
5273
+ /** ClientLibrarySettings version */
5274
+ version?: (string|null);
5275
+
5276
+ /** ClientLibrarySettings launchStage */
5277
+ launchStage?: (google.api.LaunchStage|keyof typeof google.api.LaunchStage|null);
5278
+
5279
+ /** ClientLibrarySettings restNumericEnums */
5280
+ restNumericEnums?: (boolean|null);
5281
+
5282
+ /** ClientLibrarySettings javaSettings */
5283
+ javaSettings?: (google.api.IJavaSettings|null);
5284
+
5285
+ /** ClientLibrarySettings cppSettings */
5286
+ cppSettings?: (google.api.ICppSettings|null);
5287
+
5288
+ /** ClientLibrarySettings phpSettings */
5289
+ phpSettings?: (google.api.IPhpSettings|null);
5290
+
5291
+ /** ClientLibrarySettings pythonSettings */
5292
+ pythonSettings?: (google.api.IPythonSettings|null);
5293
+
5294
+ /** ClientLibrarySettings nodeSettings */
5295
+ nodeSettings?: (google.api.INodeSettings|null);
5296
+
5297
+ /** ClientLibrarySettings dotnetSettings */
5298
+ dotnetSettings?: (google.api.IDotnetSettings|null);
5299
+
5300
+ /** ClientLibrarySettings rubySettings */
5301
+ rubySettings?: (google.api.IRubySettings|null);
5302
+
5303
+ /** ClientLibrarySettings goSettings */
5304
+ goSettings?: (google.api.IGoSettings|null);
5305
+ }
5306
+
5307
+ /** Represents a ClientLibrarySettings. */
5308
+ class ClientLibrarySettings implements IClientLibrarySettings {
5309
+
5310
+ /**
5311
+ * Constructs a new ClientLibrarySettings.
5312
+ * @param [properties] Properties to set
5313
+ */
5314
+ constructor(properties?: google.api.IClientLibrarySettings);
5315
+
5316
+ /** ClientLibrarySettings version. */
5317
+ public version: string;
5318
+
5319
+ /** ClientLibrarySettings launchStage. */
5320
+ public launchStage: (google.api.LaunchStage|keyof typeof google.api.LaunchStage);
5321
+
5322
+ /** ClientLibrarySettings restNumericEnums. */
5323
+ public restNumericEnums: boolean;
5324
+
5325
+ /** ClientLibrarySettings javaSettings. */
5326
+ public javaSettings?: (google.api.IJavaSettings|null);
5327
+
5328
+ /** ClientLibrarySettings cppSettings. */
5329
+ public cppSettings?: (google.api.ICppSettings|null);
5330
+
5331
+ /** ClientLibrarySettings phpSettings. */
5332
+ public phpSettings?: (google.api.IPhpSettings|null);
5333
+
5334
+ /** ClientLibrarySettings pythonSettings. */
5335
+ public pythonSettings?: (google.api.IPythonSettings|null);
5336
+
5337
+ /** ClientLibrarySettings nodeSettings. */
5338
+ public nodeSettings?: (google.api.INodeSettings|null);
5339
+
5340
+ /** ClientLibrarySettings dotnetSettings. */
5341
+ public dotnetSettings?: (google.api.IDotnetSettings|null);
5342
+
5343
+ /** ClientLibrarySettings rubySettings. */
5344
+ public rubySettings?: (google.api.IRubySettings|null);
5345
+
5346
+ /** ClientLibrarySettings goSettings. */
5347
+ public goSettings?: (google.api.IGoSettings|null);
5348
+
5349
+ /**
5350
+ * Creates a new ClientLibrarySettings instance using the specified properties.
5351
+ * @param [properties] Properties to set
5352
+ * @returns ClientLibrarySettings instance
5353
+ */
5354
+ public static create(properties?: google.api.IClientLibrarySettings): google.api.ClientLibrarySettings;
5355
+
5356
+ /**
5357
+ * Encodes the specified ClientLibrarySettings message. Does not implicitly {@link google.api.ClientLibrarySettings.verify|verify} messages.
5358
+ * @param message ClientLibrarySettings message or plain object to encode
5359
+ * @param [writer] Writer to encode to
5360
+ * @returns Writer
5361
+ */
5362
+ public static encode(message: google.api.IClientLibrarySettings, writer?: $protobuf.Writer): $protobuf.Writer;
5363
+
5364
+ /**
5365
+ * Encodes the specified ClientLibrarySettings message, length delimited. Does not implicitly {@link google.api.ClientLibrarySettings.verify|verify} messages.
5366
+ * @param message ClientLibrarySettings message or plain object to encode
5367
+ * @param [writer] Writer to encode to
5368
+ * @returns Writer
5369
+ */
5370
+ public static encodeDelimited(message: google.api.IClientLibrarySettings, writer?: $protobuf.Writer): $protobuf.Writer;
5371
+
5372
+ /**
5373
+ * Decodes a ClientLibrarySettings message from the specified reader or buffer.
5374
+ * @param reader Reader or buffer to decode from
5375
+ * @param [length] Message length if known beforehand
5376
+ * @returns ClientLibrarySettings
5377
+ * @throws {Error} If the payload is not a reader or valid buffer
5378
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5379
+ */
5380
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.ClientLibrarySettings;
5381
+
5382
+ /**
5383
+ * Decodes a ClientLibrarySettings message from the specified reader or buffer, length delimited.
5384
+ * @param reader Reader or buffer to decode from
5385
+ * @returns ClientLibrarySettings
5386
+ * @throws {Error} If the payload is not a reader or valid buffer
5387
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5388
+ */
5389
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.ClientLibrarySettings;
5390
+
5391
+ /**
5392
+ * Verifies a ClientLibrarySettings message.
5393
+ * @param message Plain object to verify
5394
+ * @returns `null` if valid, otherwise the reason why it is not
5395
+ */
5396
+ public static verify(message: { [k: string]: any }): (string|null);
5397
+
5398
+ /**
5399
+ * Creates a ClientLibrarySettings message from a plain object. Also converts values to their respective internal types.
5400
+ * @param object Plain object
5401
+ * @returns ClientLibrarySettings
5402
+ */
5403
+ public static fromObject(object: { [k: string]: any }): google.api.ClientLibrarySettings;
5404
+
5405
+ /**
5406
+ * Creates a plain object from a ClientLibrarySettings message. Also converts values to other types if specified.
5407
+ * @param message ClientLibrarySettings
5408
+ * @param [options] Conversion options
5409
+ * @returns Plain object
5410
+ */
5411
+ public static toObject(message: google.api.ClientLibrarySettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
5412
+
5413
+ /**
5414
+ * Converts this ClientLibrarySettings to JSON.
5415
+ * @returns JSON object
5416
+ */
5417
+ public toJSON(): { [k: string]: any };
5418
+
5419
+ /**
5420
+ * Gets the default type url for ClientLibrarySettings
5421
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5422
+ * @returns The default type url
5423
+ */
5424
+ public static getTypeUrl(typeUrlPrefix?: string): string;
5425
+ }
5426
+
5427
+ /** Properties of a Publishing. */
5428
+ interface IPublishing {
5429
+
5430
+ /** Publishing methodSettings */
5431
+ methodSettings?: (google.api.IMethodSettings[]|null);
5432
+
5433
+ /** Publishing newIssueUri */
5434
+ newIssueUri?: (string|null);
5435
+
5436
+ /** Publishing documentationUri */
5437
+ documentationUri?: (string|null);
5438
+
5439
+ /** Publishing apiShortName */
5440
+ apiShortName?: (string|null);
5441
+
5442
+ /** Publishing githubLabel */
5443
+ githubLabel?: (string|null);
5444
+
5445
+ /** Publishing codeownerGithubTeams */
5446
+ codeownerGithubTeams?: (string[]|null);
5447
+
5448
+ /** Publishing docTagPrefix */
5449
+ docTagPrefix?: (string|null);
5450
+
5451
+ /** Publishing organization */
5452
+ organization?: (google.api.ClientLibraryOrganization|keyof typeof google.api.ClientLibraryOrganization|null);
5453
+
5454
+ /** Publishing librarySettings */
5455
+ librarySettings?: (google.api.IClientLibrarySettings[]|null);
5456
+ }
5457
+
5458
+ /** Represents a Publishing. */
5459
+ class Publishing implements IPublishing {
5460
+
5461
+ /**
5462
+ * Constructs a new Publishing.
5463
+ * @param [properties] Properties to set
5464
+ */
5465
+ constructor(properties?: google.api.IPublishing);
5466
+
5467
+ /** Publishing methodSettings. */
5468
+ public methodSettings: google.api.IMethodSettings[];
5469
+
5470
+ /** Publishing newIssueUri. */
5471
+ public newIssueUri: string;
5472
+
5473
+ /** Publishing documentationUri. */
5474
+ public documentationUri: string;
5475
+
5476
+ /** Publishing apiShortName. */
5477
+ public apiShortName: string;
5478
+
5479
+ /** Publishing githubLabel. */
5480
+ public githubLabel: string;
5481
+
5482
+ /** Publishing codeownerGithubTeams. */
5483
+ public codeownerGithubTeams: string[];
5484
+
5485
+ /** Publishing docTagPrefix. */
5486
+ public docTagPrefix: string;
5487
+
5488
+ /** Publishing organization. */
5489
+ public organization: (google.api.ClientLibraryOrganization|keyof typeof google.api.ClientLibraryOrganization);
5490
+
5491
+ /** Publishing librarySettings. */
5492
+ public librarySettings: google.api.IClientLibrarySettings[];
5493
+
5494
+ /**
5495
+ * Creates a new Publishing instance using the specified properties.
5496
+ * @param [properties] Properties to set
5497
+ * @returns Publishing instance
5498
+ */
5499
+ public static create(properties?: google.api.IPublishing): google.api.Publishing;
5500
+
5501
+ /**
5502
+ * Encodes the specified Publishing message. Does not implicitly {@link google.api.Publishing.verify|verify} messages.
5503
+ * @param message Publishing message or plain object to encode
5504
+ * @param [writer] Writer to encode to
5505
+ * @returns Writer
5506
+ */
5507
+ public static encode(message: google.api.IPublishing, writer?: $protobuf.Writer): $protobuf.Writer;
5508
+
5509
+ /**
5510
+ * Encodes the specified Publishing message, length delimited. Does not implicitly {@link google.api.Publishing.verify|verify} messages.
5511
+ * @param message Publishing message or plain object to encode
5512
+ * @param [writer] Writer to encode to
5513
+ * @returns Writer
5514
+ */
5515
+ public static encodeDelimited(message: google.api.IPublishing, writer?: $protobuf.Writer): $protobuf.Writer;
5516
+
5517
+ /**
5518
+ * Decodes a Publishing message from the specified reader or buffer.
5519
+ * @param reader Reader or buffer to decode from
5520
+ * @param [length] Message length if known beforehand
5521
+ * @returns Publishing
5522
+ * @throws {Error} If the payload is not a reader or valid buffer
5523
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5524
+ */
5525
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.Publishing;
5526
+
5527
+ /**
5528
+ * Decodes a Publishing message from the specified reader or buffer, length delimited.
5529
+ * @param reader Reader or buffer to decode from
5530
+ * @returns Publishing
5531
+ * @throws {Error} If the payload is not a reader or valid buffer
5532
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5533
+ */
5534
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.Publishing;
5535
+
5536
+ /**
5537
+ * Verifies a Publishing message.
5538
+ * @param message Plain object to verify
5539
+ * @returns `null` if valid, otherwise the reason why it is not
5540
+ */
5541
+ public static verify(message: { [k: string]: any }): (string|null);
5542
+
5543
+ /**
5544
+ * Creates a Publishing message from a plain object. Also converts values to their respective internal types.
5545
+ * @param object Plain object
5546
+ * @returns Publishing
5547
+ */
5548
+ public static fromObject(object: { [k: string]: any }): google.api.Publishing;
5549
+
5550
+ /**
5551
+ * Creates a plain object from a Publishing message. Also converts values to other types if specified.
5552
+ * @param message Publishing
5553
+ * @param [options] Conversion options
5554
+ * @returns Plain object
5555
+ */
5556
+ public static toObject(message: google.api.Publishing, options?: $protobuf.IConversionOptions): { [k: string]: any };
5557
+
5558
+ /**
5559
+ * Converts this Publishing to JSON.
5560
+ * @returns JSON object
5561
+ */
5562
+ public toJSON(): { [k: string]: any };
5563
+
5564
+ /**
5565
+ * Gets the default type url for Publishing
5566
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5567
+ * @returns The default type url
5568
+ */
5569
+ public static getTypeUrl(typeUrlPrefix?: string): string;
5570
+ }
5571
+
5572
+ /** Properties of a JavaSettings. */
5573
+ interface IJavaSettings {
5574
+
5575
+ /** JavaSettings libraryPackage */
5576
+ libraryPackage?: (string|null);
5577
+
5578
+ /** JavaSettings serviceClassNames */
5579
+ serviceClassNames?: ({ [k: string]: string }|null);
5580
+
5581
+ /** JavaSettings common */
5582
+ common?: (google.api.ICommonLanguageSettings|null);
5583
+ }
5584
+
5585
+ /** Represents a JavaSettings. */
5586
+ class JavaSettings implements IJavaSettings {
5587
+
5588
+ /**
5589
+ * Constructs a new JavaSettings.
5590
+ * @param [properties] Properties to set
5591
+ */
5592
+ constructor(properties?: google.api.IJavaSettings);
5593
+
5594
+ /** JavaSettings libraryPackage. */
5595
+ public libraryPackage: string;
5596
+
5597
+ /** JavaSettings serviceClassNames. */
5598
+ public serviceClassNames: { [k: string]: string };
5599
+
5600
+ /** JavaSettings common. */
5601
+ public common?: (google.api.ICommonLanguageSettings|null);
5602
+
5603
+ /**
5604
+ * Creates a new JavaSettings instance using the specified properties.
5605
+ * @param [properties] Properties to set
5606
+ * @returns JavaSettings instance
5607
+ */
5608
+ public static create(properties?: google.api.IJavaSettings): google.api.JavaSettings;
5609
+
5610
+ /**
5611
+ * Encodes the specified JavaSettings message. Does not implicitly {@link google.api.JavaSettings.verify|verify} messages.
5612
+ * @param message JavaSettings message or plain object to encode
5613
+ * @param [writer] Writer to encode to
5614
+ * @returns Writer
5615
+ */
5616
+ public static encode(message: google.api.IJavaSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5617
+
5618
+ /**
5619
+ * Encodes the specified JavaSettings message, length delimited. Does not implicitly {@link google.api.JavaSettings.verify|verify} messages.
5620
+ * @param message JavaSettings message or plain object to encode
5621
+ * @param [writer] Writer to encode to
5622
+ * @returns Writer
5623
+ */
5624
+ public static encodeDelimited(message: google.api.IJavaSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5625
+
5626
+ /**
5627
+ * Decodes a JavaSettings message from the specified reader or buffer.
5628
+ * @param reader Reader or buffer to decode from
5629
+ * @param [length] Message length if known beforehand
5630
+ * @returns JavaSettings
5631
+ * @throws {Error} If the payload is not a reader or valid buffer
5632
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5633
+ */
5634
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.JavaSettings;
5635
+
5636
+ /**
5637
+ * Decodes a JavaSettings message from the specified reader or buffer, length delimited.
5638
+ * @param reader Reader or buffer to decode from
5639
+ * @returns JavaSettings
5640
+ * @throws {Error} If the payload is not a reader or valid buffer
5641
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5642
+ */
5643
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.JavaSettings;
5644
+
5645
+ /**
5646
+ * Verifies a JavaSettings message.
5647
+ * @param message Plain object to verify
5648
+ * @returns `null` if valid, otherwise the reason why it is not
5649
+ */
5650
+ public static verify(message: { [k: string]: any }): (string|null);
5651
+
5652
+ /**
5653
+ * Creates a JavaSettings message from a plain object. Also converts values to their respective internal types.
5654
+ * @param object Plain object
5655
+ * @returns JavaSettings
5656
+ */
5657
+ public static fromObject(object: { [k: string]: any }): google.api.JavaSettings;
5658
+
5659
+ /**
5660
+ * Creates a plain object from a JavaSettings message. Also converts values to other types if specified.
5661
+ * @param message JavaSettings
5662
+ * @param [options] Conversion options
5663
+ * @returns Plain object
5664
+ */
5665
+ public static toObject(message: google.api.JavaSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
5666
+
5667
+ /**
5668
+ * Converts this JavaSettings to JSON.
5669
+ * @returns JSON object
5670
+ */
5671
+ public toJSON(): { [k: string]: any };
5672
+
5673
+ /**
5674
+ * Gets the default type url for JavaSettings
5675
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5676
+ * @returns The default type url
5677
+ */
5678
+ public static getTypeUrl(typeUrlPrefix?: string): string;
5679
+ }
5680
+
5681
+ /** Properties of a CppSettings. */
5682
+ interface ICppSettings {
5683
+
5684
+ /** CppSettings common */
5685
+ common?: (google.api.ICommonLanguageSettings|null);
5686
+ }
5687
+
5688
+ /** Represents a CppSettings. */
5689
+ class CppSettings implements ICppSettings {
5690
+
5691
+ /**
5692
+ * Constructs a new CppSettings.
5693
+ * @param [properties] Properties to set
5694
+ */
5695
+ constructor(properties?: google.api.ICppSettings);
5696
+
5697
+ /** CppSettings common. */
5698
+ public common?: (google.api.ICommonLanguageSettings|null);
5699
+
5700
+ /**
5701
+ * Creates a new CppSettings instance using the specified properties.
5702
+ * @param [properties] Properties to set
5703
+ * @returns CppSettings instance
5704
+ */
5705
+ public static create(properties?: google.api.ICppSettings): google.api.CppSettings;
5706
+
5707
+ /**
5708
+ * Encodes the specified CppSettings message. Does not implicitly {@link google.api.CppSettings.verify|verify} messages.
5709
+ * @param message CppSettings message or plain object to encode
5710
+ * @param [writer] Writer to encode to
5711
+ * @returns Writer
5712
+ */
5713
+ public static encode(message: google.api.ICppSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5714
+
5715
+ /**
5716
+ * Encodes the specified CppSettings message, length delimited. Does not implicitly {@link google.api.CppSettings.verify|verify} messages.
5717
+ * @param message CppSettings message or plain object to encode
5718
+ * @param [writer] Writer to encode to
5719
+ * @returns Writer
5720
+ */
5721
+ public static encodeDelimited(message: google.api.ICppSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5722
+
5723
+ /**
5724
+ * Decodes a CppSettings message from the specified reader or buffer.
5725
+ * @param reader Reader or buffer to decode from
5726
+ * @param [length] Message length if known beforehand
5727
+ * @returns CppSettings
5728
+ * @throws {Error} If the payload is not a reader or valid buffer
5729
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5730
+ */
5731
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.CppSettings;
5732
+
5733
+ /**
5734
+ * Decodes a CppSettings message from the specified reader or buffer, length delimited.
5735
+ * @param reader Reader or buffer to decode from
5736
+ * @returns CppSettings
5737
+ * @throws {Error} If the payload is not a reader or valid buffer
5738
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5739
+ */
5740
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.CppSettings;
5741
+
5742
+ /**
5743
+ * Verifies a CppSettings message.
5744
+ * @param message Plain object to verify
5745
+ * @returns `null` if valid, otherwise the reason why it is not
5746
+ */
5747
+ public static verify(message: { [k: string]: any }): (string|null);
5748
+
5749
+ /**
5750
+ * Creates a CppSettings message from a plain object. Also converts values to their respective internal types.
5751
+ * @param object Plain object
5752
+ * @returns CppSettings
5753
+ */
5754
+ public static fromObject(object: { [k: string]: any }): google.api.CppSettings;
5755
+
5756
+ /**
5757
+ * Creates a plain object from a CppSettings message. Also converts values to other types if specified.
5758
+ * @param message CppSettings
5759
+ * @param [options] Conversion options
5760
+ * @returns Plain object
5761
+ */
5762
+ public static toObject(message: google.api.CppSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
5763
+
5764
+ /**
5765
+ * Converts this CppSettings to JSON.
5766
+ * @returns JSON object
5767
+ */
5768
+ public toJSON(): { [k: string]: any };
5769
+
5770
+ /**
5771
+ * Gets the default type url for CppSettings
5772
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5773
+ * @returns The default type url
5774
+ */
5775
+ public static getTypeUrl(typeUrlPrefix?: string): string;
5776
+ }
5777
+
5778
+ /** Properties of a PhpSettings. */
5779
+ interface IPhpSettings {
5780
+
5781
+ /** PhpSettings common */
5782
+ common?: (google.api.ICommonLanguageSettings|null);
5783
+ }
5784
+
5785
+ /** Represents a PhpSettings. */
5786
+ class PhpSettings implements IPhpSettings {
5787
+
5788
+ /**
5789
+ * Constructs a new PhpSettings.
5790
+ * @param [properties] Properties to set
5791
+ */
5792
+ constructor(properties?: google.api.IPhpSettings);
5793
+
5794
+ /** PhpSettings common. */
5795
+ public common?: (google.api.ICommonLanguageSettings|null);
5796
+
5797
+ /**
5798
+ * Creates a new PhpSettings instance using the specified properties.
5799
+ * @param [properties] Properties to set
5800
+ * @returns PhpSettings instance
5801
+ */
5802
+ public static create(properties?: google.api.IPhpSettings): google.api.PhpSettings;
5803
+
5804
+ /**
5805
+ * Encodes the specified PhpSettings message. Does not implicitly {@link google.api.PhpSettings.verify|verify} messages.
5806
+ * @param message PhpSettings message or plain object to encode
5807
+ * @param [writer] Writer to encode to
5808
+ * @returns Writer
5809
+ */
5810
+ public static encode(message: google.api.IPhpSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5811
+
5812
+ /**
5813
+ * Encodes the specified PhpSettings message, length delimited. Does not implicitly {@link google.api.PhpSettings.verify|verify} messages.
5814
+ * @param message PhpSettings message or plain object to encode
5815
+ * @param [writer] Writer to encode to
5816
+ * @returns Writer
5817
+ */
5818
+ public static encodeDelimited(message: google.api.IPhpSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5819
+
5820
+ /**
5821
+ * Decodes a PhpSettings message from the specified reader or buffer.
5822
+ * @param reader Reader or buffer to decode from
5823
+ * @param [length] Message length if known beforehand
5824
+ * @returns PhpSettings
5825
+ * @throws {Error} If the payload is not a reader or valid buffer
5826
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5827
+ */
5828
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PhpSettings;
5829
+
5830
+ /**
5831
+ * Decodes a PhpSettings message from the specified reader or buffer, length delimited.
5832
+ * @param reader Reader or buffer to decode from
5833
+ * @returns PhpSettings
5834
+ * @throws {Error} If the payload is not a reader or valid buffer
5835
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5836
+ */
5837
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PhpSettings;
5838
+
5839
+ /**
5840
+ * Verifies a PhpSettings message.
5841
+ * @param message Plain object to verify
5842
+ * @returns `null` if valid, otherwise the reason why it is not
5843
+ */
5844
+ public static verify(message: { [k: string]: any }): (string|null);
5845
+
5846
+ /**
5847
+ * Creates a PhpSettings message from a plain object. Also converts values to their respective internal types.
5848
+ * @param object Plain object
5849
+ * @returns PhpSettings
5850
+ */
5851
+ public static fromObject(object: { [k: string]: any }): google.api.PhpSettings;
5852
+
5853
+ /**
5854
+ * Creates a plain object from a PhpSettings message. Also converts values to other types if specified.
5855
+ * @param message PhpSettings
5856
+ * @param [options] Conversion options
5857
+ * @returns Plain object
5858
+ */
5859
+ public static toObject(message: google.api.PhpSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
5860
+
5861
+ /**
5862
+ * Converts this PhpSettings to JSON.
5863
+ * @returns JSON object
5864
+ */
5865
+ public toJSON(): { [k: string]: any };
5866
+
5867
+ /**
5868
+ * Gets the default type url for PhpSettings
5869
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5870
+ * @returns The default type url
5871
+ */
5872
+ public static getTypeUrl(typeUrlPrefix?: string): string;
5873
+ }
5874
+
5875
+ /** Properties of a PythonSettings. */
5876
+ interface IPythonSettings {
5877
+
5878
+ /** PythonSettings common */
5879
+ common?: (google.api.ICommonLanguageSettings|null);
5880
+ }
5881
+
5882
+ /** Represents a PythonSettings. */
5883
+ class PythonSettings implements IPythonSettings {
5884
+
5885
+ /**
5886
+ * Constructs a new PythonSettings.
5887
+ * @param [properties] Properties to set
5888
+ */
5889
+ constructor(properties?: google.api.IPythonSettings);
5890
+
5891
+ /** PythonSettings common. */
5892
+ public common?: (google.api.ICommonLanguageSettings|null);
5893
+
5894
+ /**
5895
+ * Creates a new PythonSettings instance using the specified properties.
5896
+ * @param [properties] Properties to set
5897
+ * @returns PythonSettings instance
5898
+ */
5899
+ public static create(properties?: google.api.IPythonSettings): google.api.PythonSettings;
5900
+
5901
+ /**
5902
+ * Encodes the specified PythonSettings message. Does not implicitly {@link google.api.PythonSettings.verify|verify} messages.
5903
+ * @param message PythonSettings message or plain object to encode
5904
+ * @param [writer] Writer to encode to
5905
+ * @returns Writer
5906
+ */
5907
+ public static encode(message: google.api.IPythonSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5908
+
5909
+ /**
5910
+ * Encodes the specified PythonSettings message, length delimited. Does not implicitly {@link google.api.PythonSettings.verify|verify} messages.
5911
+ * @param message PythonSettings message or plain object to encode
5912
+ * @param [writer] Writer to encode to
5913
+ * @returns Writer
5914
+ */
5915
+ public static encodeDelimited(message: google.api.IPythonSettings, writer?: $protobuf.Writer): $protobuf.Writer;
5916
+
5917
+ /**
5918
+ * Decodes a PythonSettings message from the specified reader or buffer.
5919
+ * @param reader Reader or buffer to decode from
5920
+ * @param [length] Message length if known beforehand
5921
+ * @returns PythonSettings
5922
+ * @throws {Error} If the payload is not a reader or valid buffer
5923
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5924
+ */
5925
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings;
5926
+
5927
+ /**
5928
+ * Decodes a PythonSettings message from the specified reader or buffer, length delimited.
5929
+ * @param reader Reader or buffer to decode from
5930
+ * @returns PythonSettings
5931
+ * @throws {Error} If the payload is not a reader or valid buffer
5932
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
5933
+ */
5934
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings;
5935
+
5936
+ /**
5937
+ * Verifies a PythonSettings message.
5938
+ * @param message Plain object to verify
5939
+ * @returns `null` if valid, otherwise the reason why it is not
5940
+ */
5941
+ public static verify(message: { [k: string]: any }): (string|null);
5942
+
5943
+ /**
5944
+ * Creates a PythonSettings message from a plain object. Also converts values to their respective internal types.
5945
+ * @param object Plain object
5946
+ * @returns PythonSettings
5947
+ */
5948
+ public static fromObject(object: { [k: string]: any }): google.api.PythonSettings;
5949
+
5950
+ /**
5951
+ * Creates a plain object from a PythonSettings message. Also converts values to other types if specified.
5952
+ * @param message PythonSettings
5953
+ * @param [options] Conversion options
5954
+ * @returns Plain object
5955
+ */
5956
+ public static toObject(message: google.api.PythonSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
5957
+
5958
+ /**
5959
+ * Converts this PythonSettings to JSON.
5960
+ * @returns JSON object
5961
+ */
5962
+ public toJSON(): { [k: string]: any };
5963
+
5964
+ /**
5965
+ * Gets the default type url for PythonSettings
5966
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
5967
+ * @returns The default type url
5968
+ */
5969
+ public static getTypeUrl(typeUrlPrefix?: string): string;
5970
+ }
5971
+
5972
+ /** Properties of a NodeSettings. */
5973
+ interface INodeSettings {
5974
+
5975
+ /** NodeSettings common */
5976
+ common?: (google.api.ICommonLanguageSettings|null);
5977
+ }
5978
+
5979
+ /** Represents a NodeSettings. */
5980
+ class NodeSettings implements INodeSettings {
5981
+
5982
+ /**
5983
+ * Constructs a new NodeSettings.
5984
+ * @param [properties] Properties to set
5985
+ */
5986
+ constructor(properties?: google.api.INodeSettings);
5987
+
5988
+ /** NodeSettings common. */
5989
+ public common?: (google.api.ICommonLanguageSettings|null);
5990
+
5991
+ /**
5992
+ * Creates a new NodeSettings instance using the specified properties.
5993
+ * @param [properties] Properties to set
5994
+ * @returns NodeSettings instance
5995
+ */
5996
+ public static create(properties?: google.api.INodeSettings): google.api.NodeSettings;
5997
+
5998
+ /**
5999
+ * Encodes the specified NodeSettings message. Does not implicitly {@link google.api.NodeSettings.verify|verify} messages.
6000
+ * @param message NodeSettings message or plain object to encode
6001
+ * @param [writer] Writer to encode to
6002
+ * @returns Writer
6003
+ */
6004
+ public static encode(message: google.api.INodeSettings, writer?: $protobuf.Writer): $protobuf.Writer;
6005
+
6006
+ /**
6007
+ * Encodes the specified NodeSettings message, length delimited. Does not implicitly {@link google.api.NodeSettings.verify|verify} messages.
6008
+ * @param message NodeSettings message or plain object to encode
6009
+ * @param [writer] Writer to encode to
6010
+ * @returns Writer
6011
+ */
6012
+ public static encodeDelimited(message: google.api.INodeSettings, writer?: $protobuf.Writer): $protobuf.Writer;
6013
+
6014
+ /**
6015
+ * Decodes a NodeSettings message from the specified reader or buffer.
6016
+ * @param reader Reader or buffer to decode from
6017
+ * @param [length] Message length if known beforehand
6018
+ * @returns NodeSettings
6019
+ * @throws {Error} If the payload is not a reader or valid buffer
6020
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6021
+ */
6022
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.NodeSettings;
6023
+
6024
+ /**
6025
+ * Decodes a NodeSettings message from the specified reader or buffer, length delimited.
6026
+ * @param reader Reader or buffer to decode from
6027
+ * @returns NodeSettings
6028
+ * @throws {Error} If the payload is not a reader or valid buffer
6029
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6030
+ */
6031
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.NodeSettings;
6032
+
6033
+ /**
6034
+ * Verifies a NodeSettings message.
6035
+ * @param message Plain object to verify
6036
+ * @returns `null` if valid, otherwise the reason why it is not
6037
+ */
6038
+ public static verify(message: { [k: string]: any }): (string|null);
6039
+
6040
+ /**
6041
+ * Creates a NodeSettings message from a plain object. Also converts values to their respective internal types.
6042
+ * @param object Plain object
6043
+ * @returns NodeSettings
6044
+ */
6045
+ public static fromObject(object: { [k: string]: any }): google.api.NodeSettings;
6046
+
6047
+ /**
6048
+ * Creates a plain object from a NodeSettings message. Also converts values to other types if specified.
6049
+ * @param message NodeSettings
6050
+ * @param [options] Conversion options
6051
+ * @returns Plain object
6052
+ */
6053
+ public static toObject(message: google.api.NodeSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
6054
+
6055
+ /**
6056
+ * Converts this NodeSettings to JSON.
6057
+ * @returns JSON object
6058
+ */
6059
+ public toJSON(): { [k: string]: any };
6060
+
6061
+ /**
6062
+ * Gets the default type url for NodeSettings
6063
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6064
+ * @returns The default type url
6065
+ */
6066
+ public static getTypeUrl(typeUrlPrefix?: string): string;
6067
+ }
6068
+
6069
+ /** Properties of a DotnetSettings. */
6070
+ interface IDotnetSettings {
6071
+
6072
+ /** DotnetSettings common */
6073
+ common?: (google.api.ICommonLanguageSettings|null);
6074
+ }
6075
+
6076
+ /** Represents a DotnetSettings. */
6077
+ class DotnetSettings implements IDotnetSettings {
6078
+
6079
+ /**
6080
+ * Constructs a new DotnetSettings.
6081
+ * @param [properties] Properties to set
6082
+ */
6083
+ constructor(properties?: google.api.IDotnetSettings);
6084
+
6085
+ /** DotnetSettings common. */
6086
+ public common?: (google.api.ICommonLanguageSettings|null);
6087
+
6088
+ /**
6089
+ * Creates a new DotnetSettings instance using the specified properties.
6090
+ * @param [properties] Properties to set
6091
+ * @returns DotnetSettings instance
6092
+ */
6093
+ public static create(properties?: google.api.IDotnetSettings): google.api.DotnetSettings;
6094
+
6095
+ /**
6096
+ * Encodes the specified DotnetSettings message. Does not implicitly {@link google.api.DotnetSettings.verify|verify} messages.
6097
+ * @param message DotnetSettings message or plain object to encode
6098
+ * @param [writer] Writer to encode to
6099
+ * @returns Writer
6100
+ */
6101
+ public static encode(message: google.api.IDotnetSettings, writer?: $protobuf.Writer): $protobuf.Writer;
6102
+
6103
+ /**
6104
+ * Encodes the specified DotnetSettings message, length delimited. Does not implicitly {@link google.api.DotnetSettings.verify|verify} messages.
6105
+ * @param message DotnetSettings message or plain object to encode
6106
+ * @param [writer] Writer to encode to
6107
+ * @returns Writer
6108
+ */
6109
+ public static encodeDelimited(message: google.api.IDotnetSettings, writer?: $protobuf.Writer): $protobuf.Writer;
6110
+
6111
+ /**
6112
+ * Decodes a DotnetSettings message from the specified reader or buffer.
6113
+ * @param reader Reader or buffer to decode from
6114
+ * @param [length] Message length if known beforehand
6115
+ * @returns DotnetSettings
6116
+ * @throws {Error} If the payload is not a reader or valid buffer
6117
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6118
+ */
6119
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.DotnetSettings;
6120
+
6121
+ /**
6122
+ * Decodes a DotnetSettings message from the specified reader or buffer, length delimited.
6123
+ * @param reader Reader or buffer to decode from
6124
+ * @returns DotnetSettings
6125
+ * @throws {Error} If the payload is not a reader or valid buffer
6126
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6127
+ */
6128
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.DotnetSettings;
6129
+
6130
+ /**
6131
+ * Verifies a DotnetSettings message.
6132
+ * @param message Plain object to verify
6133
+ * @returns `null` if valid, otherwise the reason why it is not
6134
+ */
6135
+ public static verify(message: { [k: string]: any }): (string|null);
6136
+
6137
+ /**
6138
+ * Creates a DotnetSettings message from a plain object. Also converts values to their respective internal types.
6139
+ * @param object Plain object
6140
+ * @returns DotnetSettings
6141
+ */
6142
+ public static fromObject(object: { [k: string]: any }): google.api.DotnetSettings;
6143
+
6144
+ /**
6145
+ * Creates a plain object from a DotnetSettings message. Also converts values to other types if specified.
6146
+ * @param message DotnetSettings
6147
+ * @param [options] Conversion options
6148
+ * @returns Plain object
6149
+ */
6150
+ public static toObject(message: google.api.DotnetSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
6151
+
6152
+ /**
6153
+ * Converts this DotnetSettings to JSON.
6154
+ * @returns JSON object
6155
+ */
6156
+ public toJSON(): { [k: string]: any };
6157
+
6158
+ /**
6159
+ * Gets the default type url for DotnetSettings
6160
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6161
+ * @returns The default type url
6162
+ */
6163
+ public static getTypeUrl(typeUrlPrefix?: string): string;
6164
+ }
6165
+
6166
+ /** Properties of a RubySettings. */
6167
+ interface IRubySettings {
6168
+
6169
+ /** RubySettings common */
6170
+ common?: (google.api.ICommonLanguageSettings|null);
6171
+ }
6172
+
6173
+ /** Represents a RubySettings. */
6174
+ class RubySettings implements IRubySettings {
6175
+
6176
+ /**
6177
+ * Constructs a new RubySettings.
6178
+ * @param [properties] Properties to set
6179
+ */
6180
+ constructor(properties?: google.api.IRubySettings);
6181
+
6182
+ /** RubySettings common. */
6183
+ public common?: (google.api.ICommonLanguageSettings|null);
6184
+
6185
+ /**
6186
+ * Creates a new RubySettings instance using the specified properties.
6187
+ * @param [properties] Properties to set
6188
+ * @returns RubySettings instance
6189
+ */
6190
+ public static create(properties?: google.api.IRubySettings): google.api.RubySettings;
6191
+
6192
+ /**
6193
+ * Encodes the specified RubySettings message. Does not implicitly {@link google.api.RubySettings.verify|verify} messages.
6194
+ * @param message RubySettings message or plain object to encode
6195
+ * @param [writer] Writer to encode to
6196
+ * @returns Writer
6197
+ */
6198
+ public static encode(message: google.api.IRubySettings, writer?: $protobuf.Writer): $protobuf.Writer;
6199
+
6200
+ /**
6201
+ * Encodes the specified RubySettings message, length delimited. Does not implicitly {@link google.api.RubySettings.verify|verify} messages.
6202
+ * @param message RubySettings message or plain object to encode
6203
+ * @param [writer] Writer to encode to
6204
+ * @returns Writer
6205
+ */
6206
+ public static encodeDelimited(message: google.api.IRubySettings, writer?: $protobuf.Writer): $protobuf.Writer;
6207
+
6208
+ /**
6209
+ * Decodes a RubySettings message from the specified reader or buffer.
6210
+ * @param reader Reader or buffer to decode from
6211
+ * @param [length] Message length if known beforehand
6212
+ * @returns RubySettings
6213
+ * @throws {Error} If the payload is not a reader or valid buffer
6214
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6215
+ */
6216
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.RubySettings;
6217
+
6218
+ /**
6219
+ * Decodes a RubySettings message from the specified reader or buffer, length delimited.
6220
+ * @param reader Reader or buffer to decode from
6221
+ * @returns RubySettings
6222
+ * @throws {Error} If the payload is not a reader or valid buffer
6223
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6224
+ */
6225
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.RubySettings;
6226
+
6227
+ /**
6228
+ * Verifies a RubySettings message.
6229
+ * @param message Plain object to verify
6230
+ * @returns `null` if valid, otherwise the reason why it is not
6231
+ */
6232
+ public static verify(message: { [k: string]: any }): (string|null);
6233
+
6234
+ /**
6235
+ * Creates a RubySettings message from a plain object. Also converts values to their respective internal types.
6236
+ * @param object Plain object
6237
+ * @returns RubySettings
6238
+ */
6239
+ public static fromObject(object: { [k: string]: any }): google.api.RubySettings;
6240
+
6241
+ /**
6242
+ * Creates a plain object from a RubySettings message. Also converts values to other types if specified.
6243
+ * @param message RubySettings
6244
+ * @param [options] Conversion options
6245
+ * @returns Plain object
6246
+ */
6247
+ public static toObject(message: google.api.RubySettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
6248
+
6249
+ /**
6250
+ * Converts this RubySettings to JSON.
6251
+ * @returns JSON object
6252
+ */
6253
+ public toJSON(): { [k: string]: any };
6254
+
6255
+ /**
6256
+ * Gets the default type url for RubySettings
6257
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6258
+ * @returns The default type url
6259
+ */
6260
+ public static getTypeUrl(typeUrlPrefix?: string): string;
6261
+ }
6262
+
6263
+ /** Properties of a GoSettings. */
6264
+ interface IGoSettings {
6265
+
6266
+ /** GoSettings common */
6267
+ common?: (google.api.ICommonLanguageSettings|null);
6268
+ }
6269
+
6270
+ /** Represents a GoSettings. */
6271
+ class GoSettings implements IGoSettings {
6272
+
6273
+ /**
6274
+ * Constructs a new GoSettings.
6275
+ * @param [properties] Properties to set
6276
+ */
6277
+ constructor(properties?: google.api.IGoSettings);
6278
+
6279
+ /** GoSettings common. */
6280
+ public common?: (google.api.ICommonLanguageSettings|null);
6281
+
6282
+ /**
6283
+ * Creates a new GoSettings instance using the specified properties.
6284
+ * @param [properties] Properties to set
6285
+ * @returns GoSettings instance
6286
+ */
6287
+ public static create(properties?: google.api.IGoSettings): google.api.GoSettings;
6288
+
6289
+ /**
6290
+ * Encodes the specified GoSettings message. Does not implicitly {@link google.api.GoSettings.verify|verify} messages.
6291
+ * @param message GoSettings message or plain object to encode
6292
+ * @param [writer] Writer to encode to
6293
+ * @returns Writer
6294
+ */
6295
+ public static encode(message: google.api.IGoSettings, writer?: $protobuf.Writer): $protobuf.Writer;
6296
+
6297
+ /**
6298
+ * Encodes the specified GoSettings message, length delimited. Does not implicitly {@link google.api.GoSettings.verify|verify} messages.
6299
+ * @param message GoSettings message or plain object to encode
6300
+ * @param [writer] Writer to encode to
6301
+ * @returns Writer
6302
+ */
6303
+ public static encodeDelimited(message: google.api.IGoSettings, writer?: $protobuf.Writer): $protobuf.Writer;
6304
+
6305
+ /**
6306
+ * Decodes a GoSettings message from the specified reader or buffer.
6307
+ * @param reader Reader or buffer to decode from
6308
+ * @param [length] Message length if known beforehand
6309
+ * @returns GoSettings
6310
+ * @throws {Error} If the payload is not a reader or valid buffer
6311
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6312
+ */
6313
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.GoSettings;
6314
+
6315
+ /**
6316
+ * Decodes a GoSettings message from the specified reader or buffer, length delimited.
6317
+ * @param reader Reader or buffer to decode from
6318
+ * @returns GoSettings
6319
+ * @throws {Error} If the payload is not a reader or valid buffer
6320
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6321
+ */
6322
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.GoSettings;
6323
+
6324
+ /**
6325
+ * Verifies a GoSettings message.
6326
+ * @param message Plain object to verify
6327
+ * @returns `null` if valid, otherwise the reason why it is not
6328
+ */
6329
+ public static verify(message: { [k: string]: any }): (string|null);
6330
+
6331
+ /**
6332
+ * Creates a GoSettings message from a plain object. Also converts values to their respective internal types.
6333
+ * @param object Plain object
6334
+ * @returns GoSettings
6335
+ */
6336
+ public static fromObject(object: { [k: string]: any }): google.api.GoSettings;
6337
+
6338
+ /**
6339
+ * Creates a plain object from a GoSettings message. Also converts values to other types if specified.
6340
+ * @param message GoSettings
6341
+ * @param [options] Conversion options
6342
+ * @returns Plain object
6343
+ */
6344
+ public static toObject(message: google.api.GoSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
6345
+
6346
+ /**
6347
+ * Converts this GoSettings to JSON.
6348
+ * @returns JSON object
6349
+ */
6350
+ public toJSON(): { [k: string]: any };
6351
+
6352
+ /**
6353
+ * Gets the default type url for GoSettings
6354
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6355
+ * @returns The default type url
6356
+ */
6357
+ public static getTypeUrl(typeUrlPrefix?: string): string;
6358
+ }
6359
+
6360
+ /** Properties of a MethodSettings. */
6361
+ interface IMethodSettings {
6362
+
6363
+ /** MethodSettings selector */
6364
+ selector?: (string|null);
6365
+
6366
+ /** MethodSettings longRunning */
6367
+ longRunning?: (google.api.MethodSettings.ILongRunning|null);
6368
+ }
6369
+
6370
+ /** Represents a MethodSettings. */
6371
+ class MethodSettings implements IMethodSettings {
6372
+
6373
+ /**
6374
+ * Constructs a new MethodSettings.
6375
+ * @param [properties] Properties to set
6376
+ */
6377
+ constructor(properties?: google.api.IMethodSettings);
6378
+
6379
+ /** MethodSettings selector. */
6380
+ public selector: string;
6381
+
6382
+ /** MethodSettings longRunning. */
6383
+ public longRunning?: (google.api.MethodSettings.ILongRunning|null);
6384
+
6385
+ /**
6386
+ * Creates a new MethodSettings instance using the specified properties.
6387
+ * @param [properties] Properties to set
6388
+ * @returns MethodSettings instance
6389
+ */
6390
+ public static create(properties?: google.api.IMethodSettings): google.api.MethodSettings;
6391
+
6392
+ /**
6393
+ * Encodes the specified MethodSettings message. Does not implicitly {@link google.api.MethodSettings.verify|verify} messages.
6394
+ * @param message MethodSettings message or plain object to encode
6395
+ * @param [writer] Writer to encode to
6396
+ * @returns Writer
6397
+ */
6398
+ public static encode(message: google.api.IMethodSettings, writer?: $protobuf.Writer): $protobuf.Writer;
6399
+
6400
+ /**
6401
+ * Encodes the specified MethodSettings message, length delimited. Does not implicitly {@link google.api.MethodSettings.verify|verify} messages.
6402
+ * @param message MethodSettings message or plain object to encode
6403
+ * @param [writer] Writer to encode to
6404
+ * @returns Writer
6405
+ */
6406
+ public static encodeDelimited(message: google.api.IMethodSettings, writer?: $protobuf.Writer): $protobuf.Writer;
6407
+
6408
+ /**
6409
+ * Decodes a MethodSettings message from the specified reader or buffer.
6410
+ * @param reader Reader or buffer to decode from
6411
+ * @param [length] Message length if known beforehand
6412
+ * @returns MethodSettings
6413
+ * @throws {Error} If the payload is not a reader or valid buffer
6414
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6415
+ */
6416
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.MethodSettings;
6417
+
6418
+ /**
6419
+ * Decodes a MethodSettings message from the specified reader or buffer, length delimited.
6420
+ * @param reader Reader or buffer to decode from
6421
+ * @returns MethodSettings
6422
+ * @throws {Error} If the payload is not a reader or valid buffer
6423
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6424
+ */
6425
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.MethodSettings;
6426
+
6427
+ /**
6428
+ * Verifies a MethodSettings message.
6429
+ * @param message Plain object to verify
6430
+ * @returns `null` if valid, otherwise the reason why it is not
6431
+ */
6432
+ public static verify(message: { [k: string]: any }): (string|null);
6433
+
6434
+ /**
6435
+ * Creates a MethodSettings message from a plain object. Also converts values to their respective internal types.
6436
+ * @param object Plain object
6437
+ * @returns MethodSettings
6438
+ */
6439
+ public static fromObject(object: { [k: string]: any }): google.api.MethodSettings;
6440
+
6441
+ /**
6442
+ * Creates a plain object from a MethodSettings message. Also converts values to other types if specified.
6443
+ * @param message MethodSettings
6444
+ * @param [options] Conversion options
6445
+ * @returns Plain object
6446
+ */
6447
+ public static toObject(message: google.api.MethodSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
6448
+
6449
+ /**
6450
+ * Converts this MethodSettings to JSON.
6451
+ * @returns JSON object
6452
+ */
6453
+ public toJSON(): { [k: string]: any };
6454
+
6455
+ /**
6456
+ * Gets the default type url for MethodSettings
6457
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6458
+ * @returns The default type url
6459
+ */
6460
+ public static getTypeUrl(typeUrlPrefix?: string): string;
6461
+ }
6462
+
6463
+ namespace MethodSettings {
6464
+
6465
+ /** Properties of a LongRunning. */
6466
+ interface ILongRunning {
6467
+
6468
+ /** LongRunning initialPollDelay */
6469
+ initialPollDelay?: (google.protobuf.IDuration|null);
6470
+
6471
+ /** LongRunning pollDelayMultiplier */
6472
+ pollDelayMultiplier?: (number|null);
6473
+
6474
+ /** LongRunning maxPollDelay */
6475
+ maxPollDelay?: (google.protobuf.IDuration|null);
6476
+
6477
+ /** LongRunning totalPollTimeout */
6478
+ totalPollTimeout?: (google.protobuf.IDuration|null);
6479
+ }
6480
+
6481
+ /** Represents a LongRunning. */
6482
+ class LongRunning implements ILongRunning {
6483
+
6484
+ /**
6485
+ * Constructs a new LongRunning.
6486
+ * @param [properties] Properties to set
6487
+ */
6488
+ constructor(properties?: google.api.MethodSettings.ILongRunning);
6489
+
6490
+ /** LongRunning initialPollDelay. */
6491
+ public initialPollDelay?: (google.protobuf.IDuration|null);
6492
+
6493
+ /** LongRunning pollDelayMultiplier. */
6494
+ public pollDelayMultiplier: number;
6495
+
6496
+ /** LongRunning maxPollDelay. */
6497
+ public maxPollDelay?: (google.protobuf.IDuration|null);
6498
+
6499
+ /** LongRunning totalPollTimeout. */
6500
+ public totalPollTimeout?: (google.protobuf.IDuration|null);
6501
+
6502
+ /**
6503
+ * Creates a new LongRunning instance using the specified properties.
6504
+ * @param [properties] Properties to set
6505
+ * @returns LongRunning instance
6506
+ */
6507
+ public static create(properties?: google.api.MethodSettings.ILongRunning): google.api.MethodSettings.LongRunning;
6508
+
6509
+ /**
6510
+ * Encodes the specified LongRunning message. Does not implicitly {@link google.api.MethodSettings.LongRunning.verify|verify} messages.
6511
+ * @param message LongRunning message or plain object to encode
6512
+ * @param [writer] Writer to encode to
6513
+ * @returns Writer
6514
+ */
6515
+ public static encode(message: google.api.MethodSettings.ILongRunning, writer?: $protobuf.Writer): $protobuf.Writer;
6516
+
6517
+ /**
6518
+ * Encodes the specified LongRunning message, length delimited. Does not implicitly {@link google.api.MethodSettings.LongRunning.verify|verify} messages.
6519
+ * @param message LongRunning message or plain object to encode
6520
+ * @param [writer] Writer to encode to
6521
+ * @returns Writer
6522
+ */
6523
+ public static encodeDelimited(message: google.api.MethodSettings.ILongRunning, writer?: $protobuf.Writer): $protobuf.Writer;
6524
+
6525
+ /**
6526
+ * Decodes a LongRunning message from the specified reader or buffer.
6527
+ * @param reader Reader or buffer to decode from
6528
+ * @param [length] Message length if known beforehand
6529
+ * @returns LongRunning
6530
+ * @throws {Error} If the payload is not a reader or valid buffer
6531
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6532
+ */
6533
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.MethodSettings.LongRunning;
6534
+
6535
+ /**
6536
+ * Decodes a LongRunning message from the specified reader or buffer, length delimited.
6537
+ * @param reader Reader or buffer to decode from
6538
+ * @returns LongRunning
6539
+ * @throws {Error} If the payload is not a reader or valid buffer
6540
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6541
+ */
6542
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.MethodSettings.LongRunning;
6543
+
6544
+ /**
6545
+ * Verifies a LongRunning message.
6546
+ * @param message Plain object to verify
6547
+ * @returns `null` if valid, otherwise the reason why it is not
6548
+ */
6549
+ public static verify(message: { [k: string]: any }): (string|null);
6550
+
6551
+ /**
6552
+ * Creates a LongRunning message from a plain object. Also converts values to their respective internal types.
6553
+ * @param object Plain object
6554
+ * @returns LongRunning
6555
+ */
6556
+ public static fromObject(object: { [k: string]: any }): google.api.MethodSettings.LongRunning;
6557
+
6558
+ /**
6559
+ * Creates a plain object from a LongRunning message. Also converts values to other types if specified.
6560
+ * @param message LongRunning
6561
+ * @param [options] Conversion options
6562
+ * @returns Plain object
6563
+ */
6564
+ public static toObject(message: google.api.MethodSettings.LongRunning, options?: $protobuf.IConversionOptions): { [k: string]: any };
6565
+
6566
+ /**
6567
+ * Converts this LongRunning to JSON.
6568
+ * @returns JSON object
6569
+ */
6570
+ public toJSON(): { [k: string]: any };
6571
+
6572
+ /**
6573
+ * Gets the default type url for LongRunning
6574
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6575
+ * @returns The default type url
6576
+ */
6577
+ public static getTypeUrl(typeUrlPrefix?: string): string;
6578
+ }
6579
+ }
6580
+
6581
+ /** ClientLibraryOrganization enum. */
6582
+ enum ClientLibraryOrganization {
6583
+ CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED = 0,
6584
+ CLOUD = 1,
6585
+ ADS = 2,
6586
+ PHOTOS = 3,
6587
+ STREET_VIEW = 4
6588
+ }
6589
+
6590
+ /** ClientLibraryDestination enum. */
6591
+ enum ClientLibraryDestination {
6592
+ CLIENT_LIBRARY_DESTINATION_UNSPECIFIED = 0,
6593
+ GITHUB = 10,
6594
+ PACKAGE_MANAGER = 20
6595
+ }
6596
+
6597
+ /** LaunchStage enum. */
6598
+ enum LaunchStage {
6599
+ LAUNCH_STAGE_UNSPECIFIED = 0,
6600
+ UNIMPLEMENTED = 6,
6601
+ PRELAUNCH = 7,
6602
+ EARLY_ACCESS = 1,
6603
+ ALPHA = 2,
6604
+ BETA = 3,
6605
+ GA = 4,
6606
+ DEPRECATED = 5
6607
+ }
6608
+
5167
6609
  /** FieldBehavior enum. */
5168
6610
  enum FieldBehavior {
5169
6611
  FIELD_BEHAVIOR_UNSPECIFIED = 0,
@@ -7270,6 +8712,9 @@ export namespace google {
7270
8712
  /** MessageOptions mapEntry */
7271
8713
  mapEntry?: (boolean|null);
7272
8714
 
8715
+ /** MessageOptions deprecatedLegacyJsonFieldConflicts */
8716
+ deprecatedLegacyJsonFieldConflicts?: (boolean|null);
8717
+
7273
8718
  /** MessageOptions uninterpretedOption */
7274
8719
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
7275
8720
 
@@ -7298,6 +8743,9 @@ export namespace google {
7298
8743
  /** MessageOptions mapEntry. */
7299
8744
  public mapEntry: boolean;
7300
8745
 
8746
+ /** MessageOptions deprecatedLegacyJsonFieldConflicts. */
8747
+ public deprecatedLegacyJsonFieldConflicts: boolean;
8748
+
7301
8749
  /** MessageOptions uninterpretedOption. */
7302
8750
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
7303
8751
 
@@ -7403,6 +8851,15 @@ export namespace google {
7403
8851
  /** FieldOptions weak */
7404
8852
  weak?: (boolean|null);
7405
8853
 
8854
+ /** FieldOptions debugRedact */
8855
+ debugRedact?: (boolean|null);
8856
+
8857
+ /** FieldOptions retention */
8858
+ retention?: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention|null);
8859
+
8860
+ /** FieldOptions target */
8861
+ target?: (google.protobuf.FieldOptions.OptionTargetType|keyof typeof google.protobuf.FieldOptions.OptionTargetType|null);
8862
+
7406
8863
  /** FieldOptions uninterpretedOption */
7407
8864
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
7408
8865
 
@@ -7443,6 +8900,15 @@ export namespace google {
7443
8900
  /** FieldOptions weak. */
7444
8901
  public weak: boolean;
7445
8902
 
8903
+ /** FieldOptions debugRedact. */
8904
+ public debugRedact: boolean;
8905
+
8906
+ /** FieldOptions retention. */
8907
+ public retention: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention);
8908
+
8909
+ /** FieldOptions target. */
8910
+ public target: (google.protobuf.FieldOptions.OptionTargetType|keyof typeof google.protobuf.FieldOptions.OptionTargetType);
8911
+
7446
8912
  /** FieldOptions uninterpretedOption. */
7447
8913
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
7448
8914
 
@@ -7539,6 +9005,27 @@ export namespace google {
7539
9005
  JS_STRING = 1,
7540
9006
  JS_NUMBER = 2
7541
9007
  }
9008
+
9009
+ /** OptionRetention enum. */
9010
+ enum OptionRetention {
9011
+ RETENTION_UNKNOWN = 0,
9012
+ RETENTION_RUNTIME = 1,
9013
+ RETENTION_SOURCE = 2
9014
+ }
9015
+
9016
+ /** OptionTargetType enum. */
9017
+ enum OptionTargetType {
9018
+ TARGET_TYPE_UNKNOWN = 0,
9019
+ TARGET_TYPE_FILE = 1,
9020
+ TARGET_TYPE_EXTENSION_RANGE = 2,
9021
+ TARGET_TYPE_MESSAGE = 3,
9022
+ TARGET_TYPE_FIELD = 4,
9023
+ TARGET_TYPE_ONEOF = 5,
9024
+ TARGET_TYPE_ENUM = 6,
9025
+ TARGET_TYPE_ENUM_ENTRY = 7,
9026
+ TARGET_TYPE_SERVICE = 8,
9027
+ TARGET_TYPE_METHOD = 9
9028
+ }
7542
9029
  }
7543
9030
 
7544
9031
  /** Properties of an OneofOptions. */
@@ -7647,6 +9134,9 @@ export namespace google {
7647
9134
  /** EnumOptions deprecated */
7648
9135
  deprecated?: (boolean|null);
7649
9136
 
9137
+ /** EnumOptions deprecatedLegacyJsonFieldConflicts */
9138
+ deprecatedLegacyJsonFieldConflicts?: (boolean|null);
9139
+
7650
9140
  /** EnumOptions uninterpretedOption */
7651
9141
  uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
7652
9142
  }
@@ -7666,6 +9156,9 @@ export namespace google {
7666
9156
  /** EnumOptions deprecated. */
7667
9157
  public deprecated: boolean;
7668
9158
 
9159
+ /** EnumOptions deprecatedLegacyJsonFieldConflicts. */
9160
+ public deprecatedLegacyJsonFieldConflicts: boolean;
9161
+
7669
9162
  /** EnumOptions uninterpretedOption. */
7670
9163
  public uninterpretedOption: google.protobuf.IUninterpretedOption[];
7671
9164