package smaws-clients

  1. Overview
  2. Docs
Amazon Web Services SDK clients using EIO

Install

Dune Dependency

Authors

Maintainers

Sources

0.1.preview1.tar.gz
md5=18fb70dbc45e8d81a341b9bed6871bab
sha512=7607dc98acaeed5803b44c9ca32d90c88e7813d4b3e3ae4ec661a0bad16c88dc1476bc780877527ea4cd5a4b7398453c1bb600ce0db14d39afa05dc4762b5ba5

doc/src/smaws-clients.servicediscovery/types.ml.html

Source file types.ml

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
open Smaws_Lib
let service =
  Service.{
    namespace = "servicediscovery";
    endpointPrefix = "servicediscovery";
    version = "2017-03-14";
    protocol = AwsJson_1_1
  };
type update_service_response = {
  operation_id: string option
}

type record_type = | CNAME
  | AAAA
  | A
  | SRV

type dns_record = {
  tt_l: int;
  type_: record_type
}

type dns_config_change = {
  dns_records: dns_record list
}

type health_check_type = | TCP
  | HTTPS
  | HTTP

type health_check_config = {
  failure_threshold: int option;
  resource_path: string option;
  type_: health_check_type
}

type service_change = {
  health_check_config: health_check_config option;
  dns_config: dns_config_change option;
  description: string option
}

type update_service_request = {
  service: service_change;
  id: string
}

type service_not_found = {
  message: string option
}

type invalid_input = {
  message: string option
}

type duplicate_request = {
  duplicate_operation_id: string option;
  message: string option
}

type update_public_dns_namespace_response = {
  operation_id: string option
}

type soa_change = {
  tt_l: int
}

type public_dns_properties_mutable_change = {
  so_a: soa_change
}

type public_dns_namespace_properties_change = {
  dns_properties: public_dns_properties_mutable_change
}

type public_dns_namespace_change = {
  properties: public_dns_namespace_properties_change option;
  description: string option
}

type update_public_dns_namespace_request = {
  namespace: public_dns_namespace_change;
  updater_request_id: string option;
  id: string
}

type resource_in_use = {
  message: string option
}

type namespace_not_found = {
  message: string option
}

type update_private_dns_namespace_response = {
  operation_id: string option
}

type private_dns_properties_mutable_change = {
  so_a: soa_change
}

type private_dns_namespace_properties_change = {
  dns_properties: private_dns_properties_mutable_change
}

type private_dns_namespace_change = {
  properties: private_dns_namespace_properties_change option;
  description: string option
}

type update_private_dns_namespace_request = {
  namespace: private_dns_namespace_change;
  updater_request_id: string option;
  id: string
}

type custom_health_status = | UNHEALTHY
  | HEALTHY

type update_instance_custom_health_status_request = {
  status: custom_health_status;
  instance_id: string;
  service_id: string
}

type instance_not_found = {
  message: string option
}

type custom_health_not_found = {
  message: string option
}

type update_http_namespace_response = {
  operation_id: string option
}

type http_namespace_change = {
  description: string
}

type update_http_namespace_request = {
  namespace: http_namespace_change;
  updater_request_id: string option;
  id: string
}

type untag_resource_response = unit

type untag_resource_request = {
  tag_keys: string list;
  resource_ar_n: string
}

type resource_not_found_exception = {
  message: string option
}

type too_many_tags_exception = {
  resource_name: string option;
  message: string option
}

type tag_resource_response = unit

type tag = {
  value: string;
  key: string
}

type tag_resource_request = {
  tags: tag list;
  resource_ar_n: string
}

type service_type_option = | HTTP

type service_type = | DNS
  | DNS_HTTP
  | HTTP

type routing_policy = | WEIGHTED
  | MULTIVALUE

type dns_config = {
  dns_records: dns_record list;
  routing_policy: routing_policy option;
  namespace_id: string option
}

type health_check_custom_config = {
  failure_threshold: int option
}

type service_summary = {
  create_date: float option;
  health_check_custom_config: health_check_custom_config option;
  health_check_config: health_check_config option;
  dns_config: dns_config option;
  instance_count: int option;
  description: string option;
  type_: service_type option;
  name: string option;
  arn: string option;
  id: string option
}

type service_filter_name = | NAMESPACE_ID

type filter_condition = | BEGINS_WITH
  | BETWEEN
  | IN
  | EQ

type service_filter = {
  condition: filter_condition option;
  values: string list;
  name: service_filter_name
}

type service_already_exists = {
  service_id: string option;
  creator_request_id: string option;
  message: string option
}

type service = {
  creator_request_id: string option;
  create_date: float option;
  health_check_custom_config: health_check_custom_config option;
  health_check_config: health_check_config option;
  type_: service_type option;
  dns_config: dns_config option;
  instance_count: int option;
  description: string option;
  namespace_id: string option;
  name: string option;
  arn: string option;
  id: string option
}

type so_a = {
  tt_l: int
}

type resource_limit_exceeded = {
  message: string option
}

type register_instance_response = {
  operation_id: string option
}

type register_instance_request = {
  attributes: (string * string) list;
  creator_request_id: string option;
  instance_id: string;
  service_id: string
}

type list_tags_for_resource_response = {
  tags: tag list option
}

type list_tags_for_resource_request = {
  resource_ar_n: string
}

type list_services_response = {
  next_token: string option;
  services: service_summary list option
}

type list_services_request = {
  filters: service_filter list option;
  max_results: int option;
  next_token: string option
}

type operation_status = | FAIL
  | SUCCESS
  | PENDING
  | SUBMITTED

type operation_summary = {
  status: operation_status option;
  id: string option
}

type list_operations_response = {
  next_token: string option;
  operations: operation_summary list option
}

type operation_filter_name = | UPDATE_DATE
  | TYPE
  | STATUS
  | SERVICE_ID
  | NAMESPACE_ID

type operation_filter = {
  condition: filter_condition option;
  values: string list;
  name: operation_filter_name
}

type list_operations_request = {
  filters: operation_filter list option;
  max_results: int option;
  next_token: string option
}

type namespace_type = | HTTP
  | DNS_PRIVATE
  | DNS_PUBLIC

type dns_properties = {
  so_a: so_a option;
  hosted_zone_id: string option
}

type http_properties = {
  http_name: string option
}

type namespace_properties = {
  http_properties: http_properties option;
  dns_properties: dns_properties option
}

type namespace_summary = {
  create_date: float option;
  properties: namespace_properties option;
  service_count: int option;
  description: string option;
  type_: namespace_type option;
  name: string option;
  arn: string option;
  id: string option
}

type list_namespaces_response = {
  next_token: string option;
  namespaces: namespace_summary list option
}

type namespace_filter_name = | HTTP_NAME
  | NAME
  | TYPE

type namespace_filter = {
  condition: filter_condition option;
  values: string list;
  name: namespace_filter_name
}

type list_namespaces_request = {
  filters: namespace_filter list option;
  max_results: int option;
  next_token: string option
}

type instance_summary = {
  attributes: (string * string) list option;
  id: string option
}

type list_instances_response = {
  next_token: string option;
  instances: instance_summary list option
}

type list_instances_request = {
  max_results: int option;
  next_token: string option;
  service_id: string
}

type get_service_response = {
  service: service option
}

type get_service_request = {
  id: string
}

type operation_not_found = {
  message: string option
}

type operation_type = | DEREGISTER_INSTANCE
  | REGISTER_INSTANCE
  | UPDATE_SERVICE
  | UPDATE_NAMESPACE
  | DELETE_NAMESPACE
  | CREATE_NAMESPACE

type operation_target_type = | INSTANCE
  | SERVICE
  | NAMESPACE

type operation = {
  targets: (string * string) list option;
  update_date: float option;
  create_date: float option;
  error_code: string option;
  error_message: string option;
  status: operation_status option;
  type_: operation_type option;
  id: string option
}

type get_operation_response = {
  operation: operation option
}

type get_operation_request = {
  operation_id: string
}

type namespace = {
  creator_request_id: string option;
  create_date: float option;
  properties: namespace_properties option;
  service_count: int option;
  description: string option;
  type_: namespace_type option;
  name: string option;
  arn: string option;
  id: string option
}

type get_namespace_response = {
  namespace: namespace option
}

type get_namespace_request = {
  id: string
}

type health_status = | UNKNOWN
  | UNHEALTHY
  | HEALTHY

type get_instances_health_status_response = {
  next_token: string option;
  status: (string * health_status) list option
}

type get_instances_health_status_request = {
  next_token: string option;
  max_results: int option;
  instances: string list option;
  service_id: string
}

type instance = {
  attributes: (string * string) list option;
  creator_request_id: string option;
  id: string
}

type get_instance_response = {
  instance: instance option
}

type get_instance_request = {
  instance_id: string;
  service_id: string
}

type request_limit_exceeded = {
  message: string option
}

type discover_instances_revision_response = {
  instances_revision: int option
}

type discover_instances_revision_request = {
  service_name: string;
  namespace_name: string
}

type http_instance_summary = {
  attributes: (string * string) list option;
  health_status: health_status option;
  service_name: string option;
  namespace_name: string option;
  instance_id: string option
}

type discover_instances_response = {
  instances_revision: int option;
  instances: http_instance_summary list option
}

type health_status_filter = | HEALTHY_OR_ELSE_ALL
  | ALL
  | UNHEALTHY
  | HEALTHY

type discover_instances_request = {
  health_status: health_status_filter option;
  optional_parameters: (string * string) list option;
  query_parameters: (string * string) list option;
  max_results: int option;
  service_name: string;
  namespace_name: string
}

type deregister_instance_response = {
  operation_id: string option
}

type deregister_instance_request = {
  instance_id: string;
  service_id: string
}

type delete_service_response = unit

type delete_service_request = {
  id: string
}

type delete_namespace_response = {
  operation_id: string option
}

type delete_namespace_request = {
  id: string
}

type create_service_response = {
  service: service option
}

type create_service_request = {
  type_: service_type_option option;
  tags: tag list option;
  health_check_custom_config: health_check_custom_config option;
  health_check_config: health_check_config option;
  dns_config: dns_config option;
  description: string option;
  creator_request_id: string option;
  namespace_id: string option;
  name: string
}

type namespace_already_exists = {
  namespace_id: string option;
  creator_request_id: string option;
  message: string option
}

type create_public_dns_namespace_response = {
  operation_id: string option
}

type public_dns_properties_mutable = {
  so_a: so_a
}

type public_dns_namespace_properties = {
  dns_properties: public_dns_properties_mutable
}

type create_public_dns_namespace_request = {
  properties: public_dns_namespace_properties option;
  tags: tag list option;
  description: string option;
  creator_request_id: string option;
  name: string
}

type create_private_dns_namespace_response = {
  operation_id: string option
}

type private_dns_properties_mutable = {
  so_a: so_a
}

type private_dns_namespace_properties = {
  dns_properties: private_dns_properties_mutable
}

type create_private_dns_namespace_request = {
  properties: private_dns_namespace_properties option;
  tags: tag list option;
  vpc: string;
  description: string option;
  creator_request_id: string option;
  name: string
}

type create_http_namespace_response = {
  operation_id: string option
}

type create_http_namespace_request = {
  tags: tag list option;
  description: string option;
  creator_request_id: string option;
  name: string
}



type base_document = Json.t

OCaml

Innovation. Community. Security.