@mochabug/adaptkit 0.2.0-alpha.1 → 0.3.0-alpha.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.
@@ -0,0 +1,668 @@
1
+ import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
2
+ import type { IBinaryWriter } from "@protobuf-ts/runtime";
3
+ import type { BinaryReadOptions } from "@protobuf-ts/runtime";
4
+ import type { IBinaryReader } from "@protobuf-ts/runtime";
5
+ import type { PartialMessage } from "@protobuf-ts/runtime";
6
+ import { MessageType } from "@protobuf-ts/runtime";
7
+ import { Duration } from "../protobuf/duration";
8
+ import { LaunchStage } from "./launch_stage";
9
+ /**
10
+ * Required information for every language.
11
+ *
12
+ * @generated from protobuf message google.api.CommonLanguageSettings
13
+ */
14
+ export interface CommonLanguageSettings {
15
+ /**
16
+ * Link to automatically generated reference documentation. Example:
17
+ * https://cloud.google.com/nodejs/docs/reference/asset/latest
18
+ *
19
+ * @deprecated
20
+ * @generated from protobuf field: string reference_docs_uri = 1 [deprecated = true];
21
+ */
22
+ referenceDocsUri: string;
23
+ /**
24
+ * The destination where API teams want this client library to be published.
25
+ *
26
+ * @generated from protobuf field: repeated google.api.ClientLibraryDestination destinations = 2;
27
+ */
28
+ destinations: ClientLibraryDestination[];
29
+ }
30
+ /**
31
+ * Details about how and where to publish client libraries.
32
+ *
33
+ * @generated from protobuf message google.api.ClientLibrarySettings
34
+ */
35
+ export interface ClientLibrarySettings {
36
+ /**
37
+ * Version of the API to apply these settings to. This is the full protobuf
38
+ * package for the API, ending in the version element.
39
+ * Examples: "google.cloud.speech.v1" and "google.spanner.admin.database.v1".
40
+ *
41
+ * @generated from protobuf field: string version = 1;
42
+ */
43
+ version: string;
44
+ /**
45
+ * Launch stage of this version of the API.
46
+ *
47
+ * @generated from protobuf field: google.api.LaunchStage launch_stage = 2;
48
+ */
49
+ launchStage: LaunchStage;
50
+ /**
51
+ * When using transport=rest, the client request will encode enums as
52
+ * numbers rather than strings.
53
+ *
54
+ * @generated from protobuf field: bool rest_numeric_enums = 3;
55
+ */
56
+ restNumericEnums: boolean;
57
+ /**
58
+ * Settings for legacy Java features, supported in the Service YAML.
59
+ *
60
+ * @generated from protobuf field: google.api.JavaSettings java_settings = 21;
61
+ */
62
+ javaSettings?: JavaSettings;
63
+ /**
64
+ * Settings for C++ client libraries.
65
+ *
66
+ * @generated from protobuf field: google.api.CppSettings cpp_settings = 22;
67
+ */
68
+ cppSettings?: CppSettings;
69
+ /**
70
+ * Settings for PHP client libraries.
71
+ *
72
+ * @generated from protobuf field: google.api.PhpSettings php_settings = 23;
73
+ */
74
+ phpSettings?: PhpSettings;
75
+ /**
76
+ * Settings for Python client libraries.
77
+ *
78
+ * @generated from protobuf field: google.api.PythonSettings python_settings = 24;
79
+ */
80
+ pythonSettings?: PythonSettings;
81
+ /**
82
+ * Settings for Node client libraries.
83
+ *
84
+ * @generated from protobuf field: google.api.NodeSettings node_settings = 25;
85
+ */
86
+ nodeSettings?: NodeSettings;
87
+ /**
88
+ * Settings for .NET client libraries.
89
+ *
90
+ * @generated from protobuf field: google.api.DotnetSettings dotnet_settings = 26;
91
+ */
92
+ dotnetSettings?: DotnetSettings;
93
+ /**
94
+ * Settings for Ruby client libraries.
95
+ *
96
+ * @generated from protobuf field: google.api.RubySettings ruby_settings = 27;
97
+ */
98
+ rubySettings?: RubySettings;
99
+ /**
100
+ * Settings for Go client libraries.
101
+ *
102
+ * @generated from protobuf field: google.api.GoSettings go_settings = 28;
103
+ */
104
+ goSettings?: GoSettings;
105
+ }
106
+ /**
107
+ * This message configures the settings for publishing [Google Cloud Client
108
+ * libraries](https://cloud.google.com/apis/docs/cloud-client-libraries)
109
+ * generated from the service config.
110
+ *
111
+ * @generated from protobuf message google.api.Publishing
112
+ */
113
+ export interface Publishing {
114
+ /**
115
+ * A list of API method settings, e.g. the behavior for methods that use the
116
+ * long-running operation pattern.
117
+ *
118
+ * @generated from protobuf field: repeated google.api.MethodSettings method_settings = 2;
119
+ */
120
+ methodSettings: MethodSettings[];
121
+ /**
122
+ * Link to a *public* URI where users can report issues. Example:
123
+ * https://issuetracker.google.com/issues/new?component=190865&template=1161103
124
+ *
125
+ * @generated from protobuf field: string new_issue_uri = 101;
126
+ */
127
+ newIssueUri: string;
128
+ /**
129
+ * Link to product home page. Example:
130
+ * https://cloud.google.com/asset-inventory/docs/overview
131
+ *
132
+ * @generated from protobuf field: string documentation_uri = 102;
133
+ */
134
+ documentationUri: string;
135
+ /**
136
+ * Used as a tracking tag when collecting data about the APIs developer
137
+ * relations artifacts like docs, packages delivered to package managers,
138
+ * etc. Example: "speech".
139
+ *
140
+ * @generated from protobuf field: string api_short_name = 103;
141
+ */
142
+ apiShortName: string;
143
+ /**
144
+ * GitHub label to apply to issues and pull requests opened for this API.
145
+ *
146
+ * @generated from protobuf field: string github_label = 104;
147
+ */
148
+ githubLabel: string;
149
+ /**
150
+ * GitHub teams to be added to CODEOWNERS in the directory in GitHub
151
+ * containing source code for the client libraries for this API.
152
+ *
153
+ * @generated from protobuf field: repeated string codeowner_github_teams = 105;
154
+ */
155
+ codeownerGithubTeams: string[];
156
+ /**
157
+ * A prefix used in sample code when demarking regions to be included in
158
+ * documentation.
159
+ *
160
+ * @generated from protobuf field: string doc_tag_prefix = 106;
161
+ */
162
+ docTagPrefix: string;
163
+ /**
164
+ * For whom the client library is being published.
165
+ *
166
+ * @generated from protobuf field: google.api.ClientLibraryOrganization organization = 107;
167
+ */
168
+ organization: ClientLibraryOrganization;
169
+ /**
170
+ * Client library settings. If the same version string appears multiple
171
+ * times in this list, then the last one wins. Settings from earlier
172
+ * settings with the same version string are discarded.
173
+ *
174
+ * @generated from protobuf field: repeated google.api.ClientLibrarySettings library_settings = 109;
175
+ */
176
+ librarySettings: ClientLibrarySettings[];
177
+ /**
178
+ * Optional link to proto reference documentation. Example:
179
+ * https://cloud.google.com/pubsub/lite/docs/reference/rpc
180
+ *
181
+ * @generated from protobuf field: string proto_reference_documentation_uri = 110;
182
+ */
183
+ protoReferenceDocumentationUri: string;
184
+ }
185
+ /**
186
+ * Settings for Java client libraries.
187
+ *
188
+ * @generated from protobuf message google.api.JavaSettings
189
+ */
190
+ export interface JavaSettings {
191
+ /**
192
+ * The package name to use in Java. Clobbers the java_package option
193
+ * set in the protobuf. This should be used **only** by APIs
194
+ * who have already set the language_settings.java.package_name" field
195
+ * in gapic.yaml. API teams should use the protobuf java_package option
196
+ * where possible.
197
+ *
198
+ * Example of a YAML configuration::
199
+ *
200
+ * publishing:
201
+ * java_settings:
202
+ * library_package: com.google.cloud.pubsub.v1
203
+ *
204
+ * @generated from protobuf field: string library_package = 1;
205
+ */
206
+ libraryPackage: string;
207
+ /**
208
+ * Configure the Java class name to use instead of the service's for its
209
+ * corresponding generated GAPIC client. Keys are fully-qualified
210
+ * service names as they appear in the protobuf (including the full
211
+ * the language_settings.java.interface_names" field in gapic.yaml. API
212
+ * teams should otherwise use the service name as it appears in the
213
+ * protobuf.
214
+ *
215
+ * Example of a YAML configuration::
216
+ *
217
+ * publishing:
218
+ * java_settings:
219
+ * service_class_names:
220
+ * - google.pubsub.v1.Publisher: TopicAdmin
221
+ * - google.pubsub.v1.Subscriber: SubscriptionAdmin
222
+ *
223
+ * @generated from protobuf field: map<string, string> service_class_names = 2;
224
+ */
225
+ serviceClassNames: {
226
+ [key: string]: string;
227
+ };
228
+ /**
229
+ * Some settings.
230
+ *
231
+ * @generated from protobuf field: google.api.CommonLanguageSettings common = 3;
232
+ */
233
+ common?: CommonLanguageSettings;
234
+ }
235
+ /**
236
+ * Settings for C++ client libraries.
237
+ *
238
+ * @generated from protobuf message google.api.CppSettings
239
+ */
240
+ export interface CppSettings {
241
+ /**
242
+ * Some settings.
243
+ *
244
+ * @generated from protobuf field: google.api.CommonLanguageSettings common = 1;
245
+ */
246
+ common?: CommonLanguageSettings;
247
+ }
248
+ /**
249
+ * Settings for Php client libraries.
250
+ *
251
+ * @generated from protobuf message google.api.PhpSettings
252
+ */
253
+ export interface PhpSettings {
254
+ /**
255
+ * Some settings.
256
+ *
257
+ * @generated from protobuf field: google.api.CommonLanguageSettings common = 1;
258
+ */
259
+ common?: CommonLanguageSettings;
260
+ }
261
+ /**
262
+ * Settings for Python client libraries.
263
+ *
264
+ * @generated from protobuf message google.api.PythonSettings
265
+ */
266
+ export interface PythonSettings {
267
+ /**
268
+ * Some settings.
269
+ *
270
+ * @generated from protobuf field: google.api.CommonLanguageSettings common = 1;
271
+ */
272
+ common?: CommonLanguageSettings;
273
+ }
274
+ /**
275
+ * Settings for Node client libraries.
276
+ *
277
+ * @generated from protobuf message google.api.NodeSettings
278
+ */
279
+ export interface NodeSettings {
280
+ /**
281
+ * Some settings.
282
+ *
283
+ * @generated from protobuf field: google.api.CommonLanguageSettings common = 1;
284
+ */
285
+ common?: CommonLanguageSettings;
286
+ }
287
+ /**
288
+ * Settings for Dotnet client libraries.
289
+ *
290
+ * @generated from protobuf message google.api.DotnetSettings
291
+ */
292
+ export interface DotnetSettings {
293
+ /**
294
+ * Some settings.
295
+ *
296
+ * @generated from protobuf field: google.api.CommonLanguageSettings common = 1;
297
+ */
298
+ common?: CommonLanguageSettings;
299
+ /**
300
+ * Map from original service names to renamed versions.
301
+ * This is used when the default generated types
302
+ * would cause a naming conflict. (Neither name is
303
+ * fully-qualified.)
304
+ * Example: Subscriber to SubscriberServiceApi.
305
+ *
306
+ * @generated from protobuf field: map<string, string> renamed_services = 2;
307
+ */
308
+ renamedServices: {
309
+ [key: string]: string;
310
+ };
311
+ /**
312
+ * Map from full resource types to the effective short name
313
+ * for the resource. This is used when otherwise resource
314
+ * named from different services would cause naming collisions.
315
+ * Example entry:
316
+ * "datalabeling.googleapis.com/Dataset": "DataLabelingDataset"
317
+ *
318
+ * @generated from protobuf field: map<string, string> renamed_resources = 3;
319
+ */
320
+ renamedResources: {
321
+ [key: string]: string;
322
+ };
323
+ /**
324
+ * List of full resource types to ignore during generation.
325
+ * This is typically used for API-specific Location resources,
326
+ * which should be handled by the generator as if they were actually
327
+ * the common Location resources.
328
+ * Example entry: "documentai.googleapis.com/Location"
329
+ *
330
+ * @generated from protobuf field: repeated string ignored_resources = 4;
331
+ */
332
+ ignoredResources: string[];
333
+ /**
334
+ * Namespaces which must be aliased in snippets due to
335
+ * a known (but non-generator-predictable) naming collision
336
+ *
337
+ * @generated from protobuf field: repeated string forced_namespace_aliases = 5;
338
+ */
339
+ forcedNamespaceAliases: string[];
340
+ /**
341
+ * Method signatures (in the form "service.method(signature)")
342
+ * which are provided separately, so shouldn't be generated.
343
+ * Snippets *calling* these methods are still generated, however.
344
+ *
345
+ * @generated from protobuf field: repeated string handwritten_signatures = 6;
346
+ */
347
+ handwrittenSignatures: string[];
348
+ }
349
+ /**
350
+ * Settings for Ruby client libraries.
351
+ *
352
+ * @generated from protobuf message google.api.RubySettings
353
+ */
354
+ export interface RubySettings {
355
+ /**
356
+ * Some settings.
357
+ *
358
+ * @generated from protobuf field: google.api.CommonLanguageSettings common = 1;
359
+ */
360
+ common?: CommonLanguageSettings;
361
+ }
362
+ /**
363
+ * Settings for Go client libraries.
364
+ *
365
+ * @generated from protobuf message google.api.GoSettings
366
+ */
367
+ export interface GoSettings {
368
+ /**
369
+ * Some settings.
370
+ *
371
+ * @generated from protobuf field: google.api.CommonLanguageSettings common = 1;
372
+ */
373
+ common?: CommonLanguageSettings;
374
+ }
375
+ /**
376
+ * Describes the generator configuration for a method.
377
+ *
378
+ * @generated from protobuf message google.api.MethodSettings
379
+ */
380
+ export interface MethodSettings {
381
+ /**
382
+ * The fully qualified name of the method, for which the options below apply.
383
+ * This is used to find the method to apply the options.
384
+ *
385
+ * @generated from protobuf field: string selector = 1;
386
+ */
387
+ selector: string;
388
+ /**
389
+ * Describes settings to use for long-running operations when generating
390
+ * API methods for RPCs. Complements RPCs that use the annotations in
391
+ * google/longrunning/operations.proto.
392
+ *
393
+ * Example of a YAML configuration::
394
+ *
395
+ * publishing:
396
+ * method_settings:
397
+ * - selector: google.cloud.speech.v2.Speech.BatchRecognize
398
+ * long_running:
399
+ * initial_poll_delay:
400
+ * seconds: 60 # 1 minute
401
+ * poll_delay_multiplier: 1.5
402
+ * max_poll_delay:
403
+ * seconds: 360 # 6 minutes
404
+ * total_poll_timeout:
405
+ * seconds: 54000 # 90 minutes
406
+ *
407
+ * @generated from protobuf field: google.api.MethodSettings.LongRunning long_running = 2;
408
+ */
409
+ longRunning?: MethodSettings_LongRunning;
410
+ }
411
+ /**
412
+ * Describes settings to use when generating API methods that use the
413
+ * long-running operation pattern.
414
+ * All default values below are from those used in the client library
415
+ * generators (e.g.
416
+ * [Java](https://github.com/googleapis/gapic-generator-java/blob/04c2faa191a9b5a10b92392fe8482279c4404803/src/main/java/com/google/api/generator/gapic/composer/common/RetrySettingsComposer.java)).
417
+ *
418
+ * @generated from protobuf message google.api.MethodSettings.LongRunning
419
+ */
420
+ export interface MethodSettings_LongRunning {
421
+ /**
422
+ * Initial delay after which the first poll request will be made.
423
+ * Default value: 5 seconds.
424
+ *
425
+ * @generated from protobuf field: google.protobuf.Duration initial_poll_delay = 1;
426
+ */
427
+ initialPollDelay?: Duration;
428
+ /**
429
+ * Multiplier to gradually increase delay between subsequent polls until it
430
+ * reaches max_poll_delay.
431
+ * Default value: 1.5.
432
+ *
433
+ * @generated from protobuf field: float poll_delay_multiplier = 2;
434
+ */
435
+ pollDelayMultiplier: number;
436
+ /**
437
+ * Maximum time between two subsequent poll requests.
438
+ * Default value: 45 seconds.
439
+ *
440
+ * @generated from protobuf field: google.protobuf.Duration max_poll_delay = 3;
441
+ */
442
+ maxPollDelay?: Duration;
443
+ /**
444
+ * Total polling timeout.
445
+ * Default value: 5 minutes.
446
+ *
447
+ * @generated from protobuf field: google.protobuf.Duration total_poll_timeout = 4;
448
+ */
449
+ totalPollTimeout?: Duration;
450
+ }
451
+ /**
452
+ * The organization for which the client libraries are being published.
453
+ * Affects the url where generated docs are published, etc.
454
+ *
455
+ * @generated from protobuf enum google.api.ClientLibraryOrganization
456
+ */
457
+ export declare enum ClientLibraryOrganization {
458
+ /**
459
+ * Not useful.
460
+ *
461
+ * @generated from protobuf enum value: CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED = 0;
462
+ */
463
+ CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED = 0,
464
+ /**
465
+ * Google Cloud Platform Org.
466
+ *
467
+ * @generated from protobuf enum value: CLOUD = 1;
468
+ */
469
+ CLOUD = 1,
470
+ /**
471
+ * Ads (Advertising) Org.
472
+ *
473
+ * @generated from protobuf enum value: ADS = 2;
474
+ */
475
+ ADS = 2,
476
+ /**
477
+ * Photos Org.
478
+ *
479
+ * @generated from protobuf enum value: PHOTOS = 3;
480
+ */
481
+ PHOTOS = 3,
482
+ /**
483
+ * Street View Org.
484
+ *
485
+ * @generated from protobuf enum value: STREET_VIEW = 4;
486
+ */
487
+ STREET_VIEW = 4,
488
+ /**
489
+ * Shopping Org.
490
+ *
491
+ * @generated from protobuf enum value: SHOPPING = 5;
492
+ */
493
+ SHOPPING = 5,
494
+ /**
495
+ * Geo Org.
496
+ *
497
+ * @generated from protobuf enum value: GEO = 6;
498
+ */
499
+ GEO = 6,
500
+ /**
501
+ * Generative AI - https://developers.generativeai.google
502
+ *
503
+ * @generated from protobuf enum value: GENERATIVE_AI = 7;
504
+ */
505
+ GENERATIVE_AI = 7
506
+ }
507
+ /**
508
+ * To where should client libraries be published?
509
+ *
510
+ * @generated from protobuf enum google.api.ClientLibraryDestination
511
+ */
512
+ export declare enum ClientLibraryDestination {
513
+ /**
514
+ * Client libraries will neither be generated nor published to package
515
+ * managers.
516
+ *
517
+ * @generated from protobuf enum value: CLIENT_LIBRARY_DESTINATION_UNSPECIFIED = 0;
518
+ */
519
+ CLIENT_LIBRARY_DESTINATION_UNSPECIFIED = 0,
520
+ /**
521
+ * Generate the client library in a repo under github.com/googleapis,
522
+ * but don't publish it to package managers.
523
+ *
524
+ * @generated from protobuf enum value: GITHUB = 10;
525
+ */
526
+ GITHUB = 10,
527
+ /**
528
+ * Publish the library to package managers like nuget.org and npmjs.com.
529
+ *
530
+ * @generated from protobuf enum value: PACKAGE_MANAGER = 20;
531
+ */
532
+ PACKAGE_MANAGER = 20
533
+ }
534
+ declare class CommonLanguageSettings$Type extends MessageType<CommonLanguageSettings> {
535
+ constructor();
536
+ create(value?: PartialMessage<CommonLanguageSettings>): CommonLanguageSettings;
537
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CommonLanguageSettings): CommonLanguageSettings;
538
+ internalBinaryWrite(message: CommonLanguageSettings, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
539
+ }
540
+ /**
541
+ * @generated MessageType for protobuf message google.api.CommonLanguageSettings
542
+ */
543
+ export declare const CommonLanguageSettings: CommonLanguageSettings$Type;
544
+ declare class ClientLibrarySettings$Type extends MessageType<ClientLibrarySettings> {
545
+ constructor();
546
+ create(value?: PartialMessage<ClientLibrarySettings>): ClientLibrarySettings;
547
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ClientLibrarySettings): ClientLibrarySettings;
548
+ internalBinaryWrite(message: ClientLibrarySettings, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
549
+ }
550
+ /**
551
+ * @generated MessageType for protobuf message google.api.ClientLibrarySettings
552
+ */
553
+ export declare const ClientLibrarySettings: ClientLibrarySettings$Type;
554
+ declare class Publishing$Type extends MessageType<Publishing> {
555
+ constructor();
556
+ create(value?: PartialMessage<Publishing>): Publishing;
557
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Publishing): Publishing;
558
+ internalBinaryWrite(message: Publishing, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
559
+ }
560
+ /**
561
+ * @generated MessageType for protobuf message google.api.Publishing
562
+ */
563
+ export declare const Publishing: Publishing$Type;
564
+ declare class JavaSettings$Type extends MessageType<JavaSettings> {
565
+ constructor();
566
+ create(value?: PartialMessage<JavaSettings>): JavaSettings;
567
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: JavaSettings): JavaSettings;
568
+ private binaryReadMap2;
569
+ internalBinaryWrite(message: JavaSettings, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
570
+ }
571
+ /**
572
+ * @generated MessageType for protobuf message google.api.JavaSettings
573
+ */
574
+ export declare const JavaSettings: JavaSettings$Type;
575
+ declare class CppSettings$Type extends MessageType<CppSettings> {
576
+ constructor();
577
+ create(value?: PartialMessage<CppSettings>): CppSettings;
578
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CppSettings): CppSettings;
579
+ internalBinaryWrite(message: CppSettings, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
580
+ }
581
+ /**
582
+ * @generated MessageType for protobuf message google.api.CppSettings
583
+ */
584
+ export declare const CppSettings: CppSettings$Type;
585
+ declare class PhpSettings$Type extends MessageType<PhpSettings> {
586
+ constructor();
587
+ create(value?: PartialMessage<PhpSettings>): PhpSettings;
588
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: PhpSettings): PhpSettings;
589
+ internalBinaryWrite(message: PhpSettings, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
590
+ }
591
+ /**
592
+ * @generated MessageType for protobuf message google.api.PhpSettings
593
+ */
594
+ export declare const PhpSettings: PhpSettings$Type;
595
+ declare class PythonSettings$Type extends MessageType<PythonSettings> {
596
+ constructor();
597
+ create(value?: PartialMessage<PythonSettings>): PythonSettings;
598
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: PythonSettings): PythonSettings;
599
+ internalBinaryWrite(message: PythonSettings, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
600
+ }
601
+ /**
602
+ * @generated MessageType for protobuf message google.api.PythonSettings
603
+ */
604
+ export declare const PythonSettings: PythonSettings$Type;
605
+ declare class NodeSettings$Type extends MessageType<NodeSettings> {
606
+ constructor();
607
+ create(value?: PartialMessage<NodeSettings>): NodeSettings;
608
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: NodeSettings): NodeSettings;
609
+ internalBinaryWrite(message: NodeSettings, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
610
+ }
611
+ /**
612
+ * @generated MessageType for protobuf message google.api.NodeSettings
613
+ */
614
+ export declare const NodeSettings: NodeSettings$Type;
615
+ declare class DotnetSettings$Type extends MessageType<DotnetSettings> {
616
+ constructor();
617
+ create(value?: PartialMessage<DotnetSettings>): DotnetSettings;
618
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DotnetSettings): DotnetSettings;
619
+ private binaryReadMap2;
620
+ private binaryReadMap3;
621
+ internalBinaryWrite(message: DotnetSettings, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
622
+ }
623
+ /**
624
+ * @generated MessageType for protobuf message google.api.DotnetSettings
625
+ */
626
+ export declare const DotnetSettings: DotnetSettings$Type;
627
+ declare class RubySettings$Type extends MessageType<RubySettings> {
628
+ constructor();
629
+ create(value?: PartialMessage<RubySettings>): RubySettings;
630
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: RubySettings): RubySettings;
631
+ internalBinaryWrite(message: RubySettings, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
632
+ }
633
+ /**
634
+ * @generated MessageType for protobuf message google.api.RubySettings
635
+ */
636
+ export declare const RubySettings: RubySettings$Type;
637
+ declare class GoSettings$Type extends MessageType<GoSettings> {
638
+ constructor();
639
+ create(value?: PartialMessage<GoSettings>): GoSettings;
640
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GoSettings): GoSettings;
641
+ internalBinaryWrite(message: GoSettings, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
642
+ }
643
+ /**
644
+ * @generated MessageType for protobuf message google.api.GoSettings
645
+ */
646
+ export declare const GoSettings: GoSettings$Type;
647
+ declare class MethodSettings$Type extends MessageType<MethodSettings> {
648
+ constructor();
649
+ create(value?: PartialMessage<MethodSettings>): MethodSettings;
650
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MethodSettings): MethodSettings;
651
+ internalBinaryWrite(message: MethodSettings, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
652
+ }
653
+ /**
654
+ * @generated MessageType for protobuf message google.api.MethodSettings
655
+ */
656
+ export declare const MethodSettings: MethodSettings$Type;
657
+ declare class MethodSettings_LongRunning$Type extends MessageType<MethodSettings_LongRunning> {
658
+ constructor();
659
+ create(value?: PartialMessage<MethodSettings_LongRunning>): MethodSettings_LongRunning;
660
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: MethodSettings_LongRunning): MethodSettings_LongRunning;
661
+ internalBinaryWrite(message: MethodSettings_LongRunning, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
662
+ }
663
+ /**
664
+ * @generated MessageType for protobuf message google.api.MethodSettings.LongRunning
665
+ */
666
+ export declare const MethodSettings_LongRunning: MethodSettings_LongRunning$Type;
667
+ export {};
668
+ //# sourceMappingURL=client.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../../src/genproto/google/api/client.ts"],"names":[],"mappings":"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"}