udb 0.2.0

Universal Data Broker — a Rust gRPC broker over multiple databases (Postgres, MySQL, SQLite, MongoDB, ClickHouse, Cassandra, MSSQL, Redis, Qdrant, S3, Neo4j, …) with per-tenant RLS, 2PC, sagas, and CDC.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
// <auto-generated>
//     Generated by the protocol buffer compiler.  DO NOT EDIT!
//     source: udb/core/analytics/services/v1/analytics_service.proto
// </auto-generated>
#pragma warning disable 0414, 1591, 8981, 0612
#region Designer generated code

using grpc = global::Grpc.Core;

namespace udb.core.Analytics.Services.V1 {
  public static partial class AnalyticsService
  {
    static readonly string __ServiceName = "udb.core.analytics.services.v1.AnalyticsService";

    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static void __Helper_SerializeMessage(global::Google.Protobuf.IMessage message, grpc::SerializationContext context)
    {
      #if !GRPC_DISABLE_PROTOBUF_BUFFER_SERIALIZATION
      if (message is global::Google.Protobuf.IBufferMessage)
      {
        context.SetPayloadLength(message.CalculateSize());
        global::Google.Protobuf.MessageExtensions.WriteTo(message, context.GetBufferWriter());
        context.Complete();
        return;
      }
      #endif
      context.Complete(global::Google.Protobuf.MessageExtensions.ToByteArray(message));
    }

    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static class __Helper_MessageCache<T>
    {
      public static readonly bool IsBufferMessage = global::System.Reflection.IntrospectionExtensions.GetTypeInfo(typeof(global::Google.Protobuf.IBufferMessage)).IsAssignableFrom(typeof(T));
    }

    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static T __Helper_DeserializeMessage<T>(grpc::DeserializationContext context, global::Google.Protobuf.MessageParser<T> parser) where T : global::Google.Protobuf.IMessage<T>
    {
      #if !GRPC_DISABLE_PROTOBUF_BUFFER_SERIALIZATION
      if (__Helper_MessageCache<T>.IsBufferMessage)
      {
        return parser.ParseFrom(context.PayloadAsReadOnlySequence());
      }
      #endif
      return parser.ParseFrom(context.PayloadAsNewBuffer());
    }

    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Marshaller<global::udb.core.Analytics.Services.V1.RecordPipelineMetricRequest> __Marshaller_udb_core_analytics_services_v1_RecordPipelineMetricRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::udb.core.Analytics.Services.V1.RecordPipelineMetricRequest.Parser));
    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Marshaller<global::udb.core.Analytics.Services.V1.RecordPipelineMetricResponse> __Marshaller_udb_core_analytics_services_v1_RecordPipelineMetricResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::udb.core.Analytics.Services.V1.RecordPipelineMetricResponse.Parser));
    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Marshaller<global::udb.core.Analytics.Services.V1.GetPipelineSummaryRequest> __Marshaller_udb_core_analytics_services_v1_GetPipelineSummaryRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::udb.core.Analytics.Services.V1.GetPipelineSummaryRequest.Parser));
    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Marshaller<global::udb.core.Analytics.Services.V1.GetPipelineSummaryResponse> __Marshaller_udb_core_analytics_services_v1_GetPipelineSummaryResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::udb.core.Analytics.Services.V1.GetPipelineSummaryResponse.Parser));
    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Marshaller<global::udb.core.Analytics.Services.V1.GetExecutorPerformanceRequest> __Marshaller_udb_core_analytics_services_v1_GetExecutorPerformanceRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::udb.core.Analytics.Services.V1.GetExecutorPerformanceRequest.Parser));
    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Marshaller<global::udb.core.Analytics.Services.V1.GetExecutorPerformanceResponse> __Marshaller_udb_core_analytics_services_v1_GetExecutorPerformanceResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::udb.core.Analytics.Services.V1.GetExecutorPerformanceResponse.Parser));
    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Marshaller<global::udb.core.Analytics.Services.V1.GetReconciliationAnalyticsRequest> __Marshaller_udb_core_analytics_services_v1_GetReconciliationAnalyticsRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::udb.core.Analytics.Services.V1.GetReconciliationAnalyticsRequest.Parser));
    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Marshaller<global::udb.core.Analytics.Services.V1.GetReconciliationAnalyticsResponse> __Marshaller_udb_core_analytics_services_v1_GetReconciliationAnalyticsResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::udb.core.Analytics.Services.V1.GetReconciliationAnalyticsResponse.Parser));
    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Marshaller<global::udb.core.Analytics.Services.V1.GetThroughputRequest> __Marshaller_udb_core_analytics_services_v1_GetThroughputRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::udb.core.Analytics.Services.V1.GetThroughputRequest.Parser));
    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Marshaller<global::udb.core.Analytics.Services.V1.GetThroughputResponse> __Marshaller_udb_core_analytics_services_v1_GetThroughputResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::udb.core.Analytics.Services.V1.GetThroughputResponse.Parser));
    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Marshaller<global::udb.core.Analytics.Services.V1.GetSlaComplianceRequest> __Marshaller_udb_core_analytics_services_v1_GetSlaComplianceRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::udb.core.Analytics.Services.V1.GetSlaComplianceRequest.Parser));
    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Marshaller<global::udb.core.Analytics.Services.V1.GetSlaComplianceResponse> __Marshaller_udb_core_analytics_services_v1_GetSlaComplianceResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::udb.core.Analytics.Services.V1.GetSlaComplianceResponse.Parser));
    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Marshaller<global::udb.core.Analytics.Services.V1.TriggerSnapshotRequest> __Marshaller_udb_core_analytics_services_v1_TriggerSnapshotRequest = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::udb.core.Analytics.Services.V1.TriggerSnapshotRequest.Parser));
    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Marshaller<global::udb.core.Analytics.Services.V1.TriggerSnapshotResponse> __Marshaller_udb_core_analytics_services_v1_TriggerSnapshotResponse = grpc::Marshallers.Create(__Helper_SerializeMessage, context => __Helper_DeserializeMessage(context, global::udb.core.Analytics.Services.V1.TriggerSnapshotResponse.Parser));

    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Method<global::udb.core.Analytics.Services.V1.RecordPipelineMetricRequest, global::udb.core.Analytics.Services.V1.RecordPipelineMetricResponse> __Method_RecordPipelineMetric = new grpc::Method<global::udb.core.Analytics.Services.V1.RecordPipelineMetricRequest, global::udb.core.Analytics.Services.V1.RecordPipelineMetricResponse>(
        grpc::MethodType.Unary,
        __ServiceName,
        "RecordPipelineMetric",
        __Marshaller_udb_core_analytics_services_v1_RecordPipelineMetricRequest,
        __Marshaller_udb_core_analytics_services_v1_RecordPipelineMetricResponse);

    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Method<global::udb.core.Analytics.Services.V1.GetPipelineSummaryRequest, global::udb.core.Analytics.Services.V1.GetPipelineSummaryResponse> __Method_GetPipelineSummary = new grpc::Method<global::udb.core.Analytics.Services.V1.GetPipelineSummaryRequest, global::udb.core.Analytics.Services.V1.GetPipelineSummaryResponse>(
        grpc::MethodType.Unary,
        __ServiceName,
        "GetPipelineSummary",
        __Marshaller_udb_core_analytics_services_v1_GetPipelineSummaryRequest,
        __Marshaller_udb_core_analytics_services_v1_GetPipelineSummaryResponse);

    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Method<global::udb.core.Analytics.Services.V1.GetExecutorPerformanceRequest, global::udb.core.Analytics.Services.V1.GetExecutorPerformanceResponse> __Method_GetExecutorPerformance = new grpc::Method<global::udb.core.Analytics.Services.V1.GetExecutorPerformanceRequest, global::udb.core.Analytics.Services.V1.GetExecutorPerformanceResponse>(
        grpc::MethodType.Unary,
        __ServiceName,
        "GetExecutorPerformance",
        __Marshaller_udb_core_analytics_services_v1_GetExecutorPerformanceRequest,
        __Marshaller_udb_core_analytics_services_v1_GetExecutorPerformanceResponse);

    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Method<global::udb.core.Analytics.Services.V1.GetReconciliationAnalyticsRequest, global::udb.core.Analytics.Services.V1.GetReconciliationAnalyticsResponse> __Method_GetReconciliationAnalytics = new grpc::Method<global::udb.core.Analytics.Services.V1.GetReconciliationAnalyticsRequest, global::udb.core.Analytics.Services.V1.GetReconciliationAnalyticsResponse>(
        grpc::MethodType.Unary,
        __ServiceName,
        "GetReconciliationAnalytics",
        __Marshaller_udb_core_analytics_services_v1_GetReconciliationAnalyticsRequest,
        __Marshaller_udb_core_analytics_services_v1_GetReconciliationAnalyticsResponse);

    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Method<global::udb.core.Analytics.Services.V1.GetThroughputRequest, global::udb.core.Analytics.Services.V1.GetThroughputResponse> __Method_GetThroughput = new grpc::Method<global::udb.core.Analytics.Services.V1.GetThroughputRequest, global::udb.core.Analytics.Services.V1.GetThroughputResponse>(
        grpc::MethodType.Unary,
        __ServiceName,
        "GetThroughput",
        __Marshaller_udb_core_analytics_services_v1_GetThroughputRequest,
        __Marshaller_udb_core_analytics_services_v1_GetThroughputResponse);

    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Method<global::udb.core.Analytics.Services.V1.GetSlaComplianceRequest, global::udb.core.Analytics.Services.V1.GetSlaComplianceResponse> __Method_GetSlaCompliance = new grpc::Method<global::udb.core.Analytics.Services.V1.GetSlaComplianceRequest, global::udb.core.Analytics.Services.V1.GetSlaComplianceResponse>(
        grpc::MethodType.Unary,
        __ServiceName,
        "GetSlaCompliance",
        __Marshaller_udb_core_analytics_services_v1_GetSlaComplianceRequest,
        __Marshaller_udb_core_analytics_services_v1_GetSlaComplianceResponse);

    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    static readonly grpc::Method<global::udb.core.Analytics.Services.V1.TriggerSnapshotRequest, global::udb.core.Analytics.Services.V1.TriggerSnapshotResponse> __Method_TriggerSnapshot = new grpc::Method<global::udb.core.Analytics.Services.V1.TriggerSnapshotRequest, global::udb.core.Analytics.Services.V1.TriggerSnapshotResponse>(
        grpc::MethodType.Unary,
        __ServiceName,
        "TriggerSnapshot",
        __Marshaller_udb_core_analytics_services_v1_TriggerSnapshotRequest,
        __Marshaller_udb_core_analytics_services_v1_TriggerSnapshotResponse);

    /// <summary>Service descriptor</summary>
    public static global::Google.Protobuf.Reflection.ServiceDescriptor Descriptor
    {
      get { return global::udb.core.Analytics.Services.V1.AnalyticsServiceReflection.Descriptor.Services[0]; }
    }

    /// <summary>Base class for server-side implementations of AnalyticsService</summary>
    [grpc::BindServiceMethod(typeof(AnalyticsService), "BindService")]
    public abstract partial class AnalyticsServiceBase
    {
      /// <summary>
      /// Record a single pipeline stage request observation (called per-request).
      /// </summary>
      /// <param name="request">The request received from the client.</param>
      /// <param name="context">The context of the server-side call handler being invoked.</param>
      /// <returns>The response to send back to the client (wrapped by a task).</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::System.Threading.Tasks.Task<global::udb.core.Analytics.Services.V1.RecordPipelineMetricResponse> RecordPipelineMetric(global::udb.core.Analytics.Services.V1.RecordPipelineMetricRequest request, grpc::ServerCallContext context)
      {
        throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
      }

      /// <summary>
      /// Query aggregated pipeline stage performance snapshots.
      /// </summary>
      /// <param name="request">The request received from the client.</param>
      /// <param name="context">The context of the server-side call handler being invoked.</param>
      /// <returns>The response to send back to the client (wrapped by a task).</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::System.Threading.Tasks.Task<global::udb.core.Analytics.Services.V1.GetPipelineSummaryResponse> GetPipelineSummary(global::udb.core.Analytics.Services.V1.GetPipelineSummaryRequest request, grpc::ServerCallContext context)
      {
        throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
      }

      /// <summary>
      /// Query daily executor performance roll-ups.
      /// </summary>
      /// <param name="request">The request received from the client.</param>
      /// <param name="context">The context of the server-side call handler being invoked.</param>
      /// <returns>The response to send back to the client (wrapped by a task).</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::System.Threading.Tasks.Task<global::udb.core.Analytics.Services.V1.GetExecutorPerformanceResponse> GetExecutorPerformance(global::udb.core.Analytics.Services.V1.GetExecutorPerformanceRequest request, grpc::ServerCallContext context)
      {
        throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
      }

      /// <summary>
      /// Query daily reconciliation and conflict analytics.
      /// </summary>
      /// <param name="request">The request received from the client.</param>
      /// <param name="context">The context of the server-side call handler being invoked.</param>
      /// <returns>The response to send back to the client (wrapped by a task).</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::System.Threading.Tasks.Task<global::udb.core.Analytics.Services.V1.GetReconciliationAnalyticsResponse> GetReconciliationAnalytics(global::udb.core.Analytics.Services.V1.GetReconciliationAnalyticsRequest request, grpc::ServerCallContext context)
      {
        throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
      }

      /// <summary>
      /// Get throughput statistics over a time window.
      /// </summary>
      /// <param name="request">The request received from the client.</param>
      /// <param name="context">The context of the server-side call handler being invoked.</param>
      /// <returns>The response to send back to the client (wrapped by a task).</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::System.Threading.Tasks.Task<global::udb.core.Analytics.Services.V1.GetThroughputResponse> GetThroughput(global::udb.core.Analytics.Services.V1.GetThroughputRequest request, grpc::ServerCallContext context)
      {
        throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
      }

      /// <summary>
      /// Get SLA compliance report for a stage and time period.
      /// </summary>
      /// <param name="request">The request received from the client.</param>
      /// <param name="context">The context of the server-side call handler being invoked.</param>
      /// <returns>The response to send back to the client (wrapped by a task).</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::System.Threading.Tasks.Task<global::udb.core.Analytics.Services.V1.GetSlaComplianceResponse> GetSlaCompliance(global::udb.core.Analytics.Services.V1.GetSlaComplianceRequest request, grpc::ServerCallContext context)
      {
        throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
      }

      /// <summary>
      /// Manually trigger hourly snapshot aggregation (normally a cron job).
      /// </summary>
      /// <param name="request">The request received from the client.</param>
      /// <param name="context">The context of the server-side call handler being invoked.</param>
      /// <returns>The response to send back to the client (wrapped by a task).</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::System.Threading.Tasks.Task<global::udb.core.Analytics.Services.V1.TriggerSnapshotResponse> TriggerSnapshot(global::udb.core.Analytics.Services.V1.TriggerSnapshotRequest request, grpc::ServerCallContext context)
      {
        throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
      }

    }

    /// <summary>Client for AnalyticsService</summary>
    public partial class AnalyticsServiceClient : grpc::ClientBase<AnalyticsServiceClient>
    {
      /// <summary>Creates a new client for AnalyticsService</summary>
      /// <param name="channel">The channel to use to make remote calls.</param>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public AnalyticsServiceClient(grpc::ChannelBase channel) : base(channel)
      {
      }
      /// <summary>Creates a new client for AnalyticsService that uses a custom <c>CallInvoker</c>.</summary>
      /// <param name="callInvoker">The callInvoker to use to make remote calls.</param>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public AnalyticsServiceClient(grpc::CallInvoker callInvoker) : base(callInvoker)
      {
      }
      /// <summary>Protected parameterless constructor to allow creation of test doubles.</summary>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      protected AnalyticsServiceClient() : base()
      {
      }
      /// <summary>Protected constructor to allow creation of configured clients.</summary>
      /// <param name="configuration">The client configuration.</param>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      protected AnalyticsServiceClient(ClientBaseConfiguration configuration) : base(configuration)
      {
      }

      /// <summary>
      /// Record a single pipeline stage request observation (called per-request).
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
      /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
      /// <param name="cancellationToken">An optional token for canceling the call.</param>
      /// <returns>The response received from the server.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::udb.core.Analytics.Services.V1.RecordPipelineMetricResponse RecordPipelineMetric(global::udb.core.Analytics.Services.V1.RecordPipelineMetricRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
      {
        return RecordPipelineMetric(request, new grpc::CallOptions(headers, deadline, cancellationToken));
      }
      /// <summary>
      /// Record a single pipeline stage request observation (called per-request).
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="options">The options for the call.</param>
      /// <returns>The response received from the server.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::udb.core.Analytics.Services.V1.RecordPipelineMetricResponse RecordPipelineMetric(global::udb.core.Analytics.Services.V1.RecordPipelineMetricRequest request, grpc::CallOptions options)
      {
        return CallInvoker.BlockingUnaryCall(__Method_RecordPipelineMetric, null, options, request);
      }
      /// <summary>
      /// Record a single pipeline stage request observation (called per-request).
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
      /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
      /// <param name="cancellationToken">An optional token for canceling the call.</param>
      /// <returns>The call object.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual grpc::AsyncUnaryCall<global::udb.core.Analytics.Services.V1.RecordPipelineMetricResponse> RecordPipelineMetricAsync(global::udb.core.Analytics.Services.V1.RecordPipelineMetricRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
      {
        return RecordPipelineMetricAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken));
      }
      /// <summary>
      /// Record a single pipeline stage request observation (called per-request).
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="options">The options for the call.</param>
      /// <returns>The call object.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual grpc::AsyncUnaryCall<global::udb.core.Analytics.Services.V1.RecordPipelineMetricResponse> RecordPipelineMetricAsync(global::udb.core.Analytics.Services.V1.RecordPipelineMetricRequest request, grpc::CallOptions options)
      {
        return CallInvoker.AsyncUnaryCall(__Method_RecordPipelineMetric, null, options, request);
      }
      /// <summary>
      /// Query aggregated pipeline stage performance snapshots.
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
      /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
      /// <param name="cancellationToken">An optional token for canceling the call.</param>
      /// <returns>The response received from the server.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::udb.core.Analytics.Services.V1.GetPipelineSummaryResponse GetPipelineSummary(global::udb.core.Analytics.Services.V1.GetPipelineSummaryRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
      {
        return GetPipelineSummary(request, new grpc::CallOptions(headers, deadline, cancellationToken));
      }
      /// <summary>
      /// Query aggregated pipeline stage performance snapshots.
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="options">The options for the call.</param>
      /// <returns>The response received from the server.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::udb.core.Analytics.Services.V1.GetPipelineSummaryResponse GetPipelineSummary(global::udb.core.Analytics.Services.V1.GetPipelineSummaryRequest request, grpc::CallOptions options)
      {
        return CallInvoker.BlockingUnaryCall(__Method_GetPipelineSummary, null, options, request);
      }
      /// <summary>
      /// Query aggregated pipeline stage performance snapshots.
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
      /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
      /// <param name="cancellationToken">An optional token for canceling the call.</param>
      /// <returns>The call object.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual grpc::AsyncUnaryCall<global::udb.core.Analytics.Services.V1.GetPipelineSummaryResponse> GetPipelineSummaryAsync(global::udb.core.Analytics.Services.V1.GetPipelineSummaryRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
      {
        return GetPipelineSummaryAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken));
      }
      /// <summary>
      /// Query aggregated pipeline stage performance snapshots.
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="options">The options for the call.</param>
      /// <returns>The call object.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual grpc::AsyncUnaryCall<global::udb.core.Analytics.Services.V1.GetPipelineSummaryResponse> GetPipelineSummaryAsync(global::udb.core.Analytics.Services.V1.GetPipelineSummaryRequest request, grpc::CallOptions options)
      {
        return CallInvoker.AsyncUnaryCall(__Method_GetPipelineSummary, null, options, request);
      }
      /// <summary>
      /// Query daily executor performance roll-ups.
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
      /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
      /// <param name="cancellationToken">An optional token for canceling the call.</param>
      /// <returns>The response received from the server.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::udb.core.Analytics.Services.V1.GetExecutorPerformanceResponse GetExecutorPerformance(global::udb.core.Analytics.Services.V1.GetExecutorPerformanceRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
      {
        return GetExecutorPerformance(request, new grpc::CallOptions(headers, deadline, cancellationToken));
      }
      /// <summary>
      /// Query daily executor performance roll-ups.
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="options">The options for the call.</param>
      /// <returns>The response received from the server.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::udb.core.Analytics.Services.V1.GetExecutorPerformanceResponse GetExecutorPerformance(global::udb.core.Analytics.Services.V1.GetExecutorPerformanceRequest request, grpc::CallOptions options)
      {
        return CallInvoker.BlockingUnaryCall(__Method_GetExecutorPerformance, null, options, request);
      }
      /// <summary>
      /// Query daily executor performance roll-ups.
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
      /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
      /// <param name="cancellationToken">An optional token for canceling the call.</param>
      /// <returns>The call object.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual grpc::AsyncUnaryCall<global::udb.core.Analytics.Services.V1.GetExecutorPerformanceResponse> GetExecutorPerformanceAsync(global::udb.core.Analytics.Services.V1.GetExecutorPerformanceRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
      {
        return GetExecutorPerformanceAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken));
      }
      /// <summary>
      /// Query daily executor performance roll-ups.
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="options">The options for the call.</param>
      /// <returns>The call object.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual grpc::AsyncUnaryCall<global::udb.core.Analytics.Services.V1.GetExecutorPerformanceResponse> GetExecutorPerformanceAsync(global::udb.core.Analytics.Services.V1.GetExecutorPerformanceRequest request, grpc::CallOptions options)
      {
        return CallInvoker.AsyncUnaryCall(__Method_GetExecutorPerformance, null, options, request);
      }
      /// <summary>
      /// Query daily reconciliation and conflict analytics.
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
      /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
      /// <param name="cancellationToken">An optional token for canceling the call.</param>
      /// <returns>The response received from the server.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::udb.core.Analytics.Services.V1.GetReconciliationAnalyticsResponse GetReconciliationAnalytics(global::udb.core.Analytics.Services.V1.GetReconciliationAnalyticsRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
      {
        return GetReconciliationAnalytics(request, new grpc::CallOptions(headers, deadline, cancellationToken));
      }
      /// <summary>
      /// Query daily reconciliation and conflict analytics.
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="options">The options for the call.</param>
      /// <returns>The response received from the server.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::udb.core.Analytics.Services.V1.GetReconciliationAnalyticsResponse GetReconciliationAnalytics(global::udb.core.Analytics.Services.V1.GetReconciliationAnalyticsRequest request, grpc::CallOptions options)
      {
        return CallInvoker.BlockingUnaryCall(__Method_GetReconciliationAnalytics, null, options, request);
      }
      /// <summary>
      /// Query daily reconciliation and conflict analytics.
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
      /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
      /// <param name="cancellationToken">An optional token for canceling the call.</param>
      /// <returns>The call object.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual grpc::AsyncUnaryCall<global::udb.core.Analytics.Services.V1.GetReconciliationAnalyticsResponse> GetReconciliationAnalyticsAsync(global::udb.core.Analytics.Services.V1.GetReconciliationAnalyticsRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
      {
        return GetReconciliationAnalyticsAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken));
      }
      /// <summary>
      /// Query daily reconciliation and conflict analytics.
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="options">The options for the call.</param>
      /// <returns>The call object.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual grpc::AsyncUnaryCall<global::udb.core.Analytics.Services.V1.GetReconciliationAnalyticsResponse> GetReconciliationAnalyticsAsync(global::udb.core.Analytics.Services.V1.GetReconciliationAnalyticsRequest request, grpc::CallOptions options)
      {
        return CallInvoker.AsyncUnaryCall(__Method_GetReconciliationAnalytics, null, options, request);
      }
      /// <summary>
      /// Get throughput statistics over a time window.
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
      /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
      /// <param name="cancellationToken">An optional token for canceling the call.</param>
      /// <returns>The response received from the server.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::udb.core.Analytics.Services.V1.GetThroughputResponse GetThroughput(global::udb.core.Analytics.Services.V1.GetThroughputRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
      {
        return GetThroughput(request, new grpc::CallOptions(headers, deadline, cancellationToken));
      }
      /// <summary>
      /// Get throughput statistics over a time window.
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="options">The options for the call.</param>
      /// <returns>The response received from the server.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::udb.core.Analytics.Services.V1.GetThroughputResponse GetThroughput(global::udb.core.Analytics.Services.V1.GetThroughputRequest request, grpc::CallOptions options)
      {
        return CallInvoker.BlockingUnaryCall(__Method_GetThroughput, null, options, request);
      }
      /// <summary>
      /// Get throughput statistics over a time window.
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
      /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
      /// <param name="cancellationToken">An optional token for canceling the call.</param>
      /// <returns>The call object.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual grpc::AsyncUnaryCall<global::udb.core.Analytics.Services.V1.GetThroughputResponse> GetThroughputAsync(global::udb.core.Analytics.Services.V1.GetThroughputRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
      {
        return GetThroughputAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken));
      }
      /// <summary>
      /// Get throughput statistics over a time window.
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="options">The options for the call.</param>
      /// <returns>The call object.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual grpc::AsyncUnaryCall<global::udb.core.Analytics.Services.V1.GetThroughputResponse> GetThroughputAsync(global::udb.core.Analytics.Services.V1.GetThroughputRequest request, grpc::CallOptions options)
      {
        return CallInvoker.AsyncUnaryCall(__Method_GetThroughput, null, options, request);
      }
      /// <summary>
      /// Get SLA compliance report for a stage and time period.
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
      /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
      /// <param name="cancellationToken">An optional token for canceling the call.</param>
      /// <returns>The response received from the server.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::udb.core.Analytics.Services.V1.GetSlaComplianceResponse GetSlaCompliance(global::udb.core.Analytics.Services.V1.GetSlaComplianceRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
      {
        return GetSlaCompliance(request, new grpc::CallOptions(headers, deadline, cancellationToken));
      }
      /// <summary>
      /// Get SLA compliance report for a stage and time period.
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="options">The options for the call.</param>
      /// <returns>The response received from the server.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::udb.core.Analytics.Services.V1.GetSlaComplianceResponse GetSlaCompliance(global::udb.core.Analytics.Services.V1.GetSlaComplianceRequest request, grpc::CallOptions options)
      {
        return CallInvoker.BlockingUnaryCall(__Method_GetSlaCompliance, null, options, request);
      }
      /// <summary>
      /// Get SLA compliance report for a stage and time period.
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
      /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
      /// <param name="cancellationToken">An optional token for canceling the call.</param>
      /// <returns>The call object.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual grpc::AsyncUnaryCall<global::udb.core.Analytics.Services.V1.GetSlaComplianceResponse> GetSlaComplianceAsync(global::udb.core.Analytics.Services.V1.GetSlaComplianceRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
      {
        return GetSlaComplianceAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken));
      }
      /// <summary>
      /// Get SLA compliance report for a stage and time period.
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="options">The options for the call.</param>
      /// <returns>The call object.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual grpc::AsyncUnaryCall<global::udb.core.Analytics.Services.V1.GetSlaComplianceResponse> GetSlaComplianceAsync(global::udb.core.Analytics.Services.V1.GetSlaComplianceRequest request, grpc::CallOptions options)
      {
        return CallInvoker.AsyncUnaryCall(__Method_GetSlaCompliance, null, options, request);
      }
      /// <summary>
      /// Manually trigger hourly snapshot aggregation (normally a cron job).
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
      /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
      /// <param name="cancellationToken">An optional token for canceling the call.</param>
      /// <returns>The response received from the server.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::udb.core.Analytics.Services.V1.TriggerSnapshotResponse TriggerSnapshot(global::udb.core.Analytics.Services.V1.TriggerSnapshotRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
      {
        return TriggerSnapshot(request, new grpc::CallOptions(headers, deadline, cancellationToken));
      }
      /// <summary>
      /// Manually trigger hourly snapshot aggregation (normally a cron job).
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="options">The options for the call.</param>
      /// <returns>The response received from the server.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual global::udb.core.Analytics.Services.V1.TriggerSnapshotResponse TriggerSnapshot(global::udb.core.Analytics.Services.V1.TriggerSnapshotRequest request, grpc::CallOptions options)
      {
        return CallInvoker.BlockingUnaryCall(__Method_TriggerSnapshot, null, options, request);
      }
      /// <summary>
      /// Manually trigger hourly snapshot aggregation (normally a cron job).
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
      /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
      /// <param name="cancellationToken">An optional token for canceling the call.</param>
      /// <returns>The call object.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual grpc::AsyncUnaryCall<global::udb.core.Analytics.Services.V1.TriggerSnapshotResponse> TriggerSnapshotAsync(global::udb.core.Analytics.Services.V1.TriggerSnapshotRequest request, grpc::Metadata headers = null, global::System.DateTime? deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
      {
        return TriggerSnapshotAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken));
      }
      /// <summary>
      /// Manually trigger hourly snapshot aggregation (normally a cron job).
      /// </summary>
      /// <param name="request">The request to send to the server.</param>
      /// <param name="options">The options for the call.</param>
      /// <returns>The call object.</returns>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      public virtual grpc::AsyncUnaryCall<global::udb.core.Analytics.Services.V1.TriggerSnapshotResponse> TriggerSnapshotAsync(global::udb.core.Analytics.Services.V1.TriggerSnapshotRequest request, grpc::CallOptions options)
      {
        return CallInvoker.AsyncUnaryCall(__Method_TriggerSnapshot, null, options, request);
      }
      /// <summary>Creates a new instance of client from given <c>ClientBaseConfiguration</c>.</summary>
      [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
      protected override AnalyticsServiceClient NewInstance(ClientBaseConfiguration configuration)
      {
        return new AnalyticsServiceClient(configuration);
      }
    }

    /// <summary>Creates service definition that can be registered with a server</summary>
    /// <param name="serviceImpl">An object implementing the server-side handling logic.</param>
    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    public static grpc::ServerServiceDefinition BindService(AnalyticsServiceBase serviceImpl)
    {
      return grpc::ServerServiceDefinition.CreateBuilder()
          .AddMethod(__Method_RecordPipelineMetric, serviceImpl.RecordPipelineMetric)
          .AddMethod(__Method_GetPipelineSummary, serviceImpl.GetPipelineSummary)
          .AddMethod(__Method_GetExecutorPerformance, serviceImpl.GetExecutorPerformance)
          .AddMethod(__Method_GetReconciliationAnalytics, serviceImpl.GetReconciliationAnalytics)
          .AddMethod(__Method_GetThroughput, serviceImpl.GetThroughput)
          .AddMethod(__Method_GetSlaCompliance, serviceImpl.GetSlaCompliance)
          .AddMethod(__Method_TriggerSnapshot, serviceImpl.TriggerSnapshot).Build();
    }

    /// <summary>Register service method with a service binder with or without implementation. Useful when customizing the service binding logic.
    /// Note: this method is part of an experimental API that can change or be removed without any prior notice.</summary>
    /// <param name="serviceBinder">Service methods will be bound by calling <c>AddMethod</c> on this object.</param>
    /// <param name="serviceImpl">An object implementing the server-side handling logic.</param>
    [global::System.CodeDom.Compiler.GeneratedCode("grpc_csharp_plugin", null)]
    public static void BindService(grpc::ServiceBinderBase serviceBinder, AnalyticsServiceBase serviceImpl)
    {
      serviceBinder.AddMethod(__Method_RecordPipelineMetric, serviceImpl == null ? null : new grpc::UnaryServerMethod<global::udb.core.Analytics.Services.V1.RecordPipelineMetricRequest, global::udb.core.Analytics.Services.V1.RecordPipelineMetricResponse>(serviceImpl.RecordPipelineMetric));
      serviceBinder.AddMethod(__Method_GetPipelineSummary, serviceImpl == null ? null : new grpc::UnaryServerMethod<global::udb.core.Analytics.Services.V1.GetPipelineSummaryRequest, global::udb.core.Analytics.Services.V1.GetPipelineSummaryResponse>(serviceImpl.GetPipelineSummary));
      serviceBinder.AddMethod(__Method_GetExecutorPerformance, serviceImpl == null ? null : new grpc::UnaryServerMethod<global::udb.core.Analytics.Services.V1.GetExecutorPerformanceRequest, global::udb.core.Analytics.Services.V1.GetExecutorPerformanceResponse>(serviceImpl.GetExecutorPerformance));
      serviceBinder.AddMethod(__Method_GetReconciliationAnalytics, serviceImpl == null ? null : new grpc::UnaryServerMethod<global::udb.core.Analytics.Services.V1.GetReconciliationAnalyticsRequest, global::udb.core.Analytics.Services.V1.GetReconciliationAnalyticsResponse>(serviceImpl.GetReconciliationAnalytics));
      serviceBinder.AddMethod(__Method_GetThroughput, serviceImpl == null ? null : new grpc::UnaryServerMethod<global::udb.core.Analytics.Services.V1.GetThroughputRequest, global::udb.core.Analytics.Services.V1.GetThroughputResponse>(serviceImpl.GetThroughput));
      serviceBinder.AddMethod(__Method_GetSlaCompliance, serviceImpl == null ? null : new grpc::UnaryServerMethod<global::udb.core.Analytics.Services.V1.GetSlaComplianceRequest, global::udb.core.Analytics.Services.V1.GetSlaComplianceResponse>(serviceImpl.GetSlaCompliance));
      serviceBinder.AddMethod(__Method_TriggerSnapshot, serviceImpl == null ? null : new grpc::UnaryServerMethod<global::udb.core.Analytics.Services.V1.TriggerSnapshotRequest, global::udb.core.Analytics.Services.V1.TriggerSnapshotResponse>(serviceImpl.TriggerSnapshot));
    }

  }
}
#endregion