@aws-sdk/client-servicediscovery 3.169.0 → 3.170.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/ServiceDiscovery.d.ts +472 -135
  3. package/dist-types/ts3.4/ServiceDiscoveryClient.d.ts +286 -99
  4. package/dist-types/ts3.4/commands/CreateHttpNamespaceCommand.d.ts +38 -17
  5. package/dist-types/ts3.4/commands/CreatePrivateDnsNamespaceCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreatePublicDnsNamespaceCommand.d.ts +41 -17
  7. package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +37 -17
  8. package/dist-types/ts3.4/commands/DeleteNamespaceCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/DeregisterInstanceCommand.d.ts +38 -17
  11. package/dist-types/ts3.4/commands/DiscoverInstancesCommand.d.ts +38 -17
  12. package/dist-types/ts3.4/commands/GetInstanceCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/GetInstancesHealthStatusCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/GetNamespaceCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/GetOperationCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +34 -17
  17. package/dist-types/ts3.4/commands/ListInstancesCommand.d.ts +37 -17
  18. package/dist-types/ts3.4/commands/ListNamespacesCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/ListOperationsCommand.d.ts +37 -17
  20. package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  22. package/dist-types/ts3.4/commands/RegisterInstanceCommand.d.ts +37 -17
  23. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  24. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  25. package/dist-types/ts3.4/commands/UpdateHttpNamespaceCommand.d.ts +38 -17
  26. package/dist-types/ts3.4/commands/UpdateInstanceCustomHealthStatusCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/UpdatePrivateDnsNamespaceCommand.d.ts +41 -17
  28. package/dist-types/ts3.4/commands/UpdatePublicDnsNamespaceCommand.d.ts +41 -17
  29. package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +37 -17
  30. package/dist-types/ts3.4/commands/index.d.ts +26 -26
  31. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  32. package/dist-types/ts3.4/index.d.ts +6 -6
  33. package/dist-types/ts3.4/models/ServiceDiscoveryServiceException.d.ts +8 -6
  34. package/dist-types/ts3.4/models/index.d.ts +1 -1
  35. package/dist-types/ts3.4/models/models_0.d.ts +1083 -1001
  36. package/dist-types/ts3.4/pagination/GetInstancesHealthStatusPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  38. package/dist-types/ts3.4/pagination/ListInstancesPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/ListNamespacesPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/ListOperationsPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  43. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +317 -80
  44. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  45. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  46. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  47. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  48. package/package.json +34 -34
@@ -1,1001 +1,1083 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { ServiceDiscoveryServiceException as __BaseException } from "./ServiceDiscoveryServiceException";
3
-
4
- export interface Tag {
5
-
6
- Key: string | undefined;
7
-
8
- Value: string | undefined;
9
- }
10
- export interface CreateHttpNamespaceRequest {
11
-
12
- Name: string | undefined;
13
-
14
- CreatorRequestId?: string;
15
-
16
- Description?: string;
17
-
18
- Tags?: Tag[];
19
- }
20
- export interface CreateHttpNamespaceResponse {
21
-
22
- OperationId?: string;
23
- }
24
-
25
- export declare class DuplicateRequest extends __BaseException {
26
- readonly name: "DuplicateRequest";
27
- readonly $fault: "client";
28
- Message?: string;
29
-
30
- DuplicateOperationId?: string;
31
-
32
- constructor(opts: __ExceptionOptionType<DuplicateRequest, __BaseException>);
33
- }
34
-
35
- export declare class InvalidInput extends __BaseException {
36
- readonly name: "InvalidInput";
37
- readonly $fault: "client";
38
- Message?: string;
39
-
40
- constructor(opts: __ExceptionOptionType<InvalidInput, __BaseException>);
41
- }
42
-
43
- export declare class NamespaceAlreadyExists extends __BaseException {
44
- readonly name: "NamespaceAlreadyExists";
45
- readonly $fault: "client";
46
- Message?: string;
47
-
48
- CreatorRequestId?: string;
49
-
50
- NamespaceId?: string;
51
-
52
- constructor(opts: __ExceptionOptionType<NamespaceAlreadyExists, __BaseException>);
53
- }
54
-
55
- export declare class ResourceLimitExceeded extends __BaseException {
56
- readonly name: "ResourceLimitExceeded";
57
- readonly $fault: "client";
58
- Message?: string;
59
-
60
- constructor(opts: __ExceptionOptionType<ResourceLimitExceeded, __BaseException>);
61
- }
62
-
63
- export declare class TooManyTagsException extends __BaseException {
64
- readonly name: "TooManyTagsException";
65
- readonly $fault: "client";
66
- Message?: string;
67
-
68
- ResourceName?: string;
69
-
70
- constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
71
- }
72
-
73
- export interface SOA {
74
-
75
- TTL: number | undefined;
76
- }
77
-
78
- export interface PrivateDnsPropertiesMutable {
79
-
80
- SOA: SOA | undefined;
81
- }
82
-
83
- export interface PrivateDnsNamespaceProperties {
84
-
85
- DnsProperties: PrivateDnsPropertiesMutable | undefined;
86
- }
87
- export interface CreatePrivateDnsNamespaceRequest {
88
-
89
- Name: string | undefined;
90
-
91
- CreatorRequestId?: string;
92
-
93
- Description?: string;
94
-
95
- Vpc: string | undefined;
96
-
97
- Tags?: Tag[];
98
-
99
- Properties?: PrivateDnsNamespaceProperties;
100
- }
101
- export interface CreatePrivateDnsNamespaceResponse {
102
-
103
- OperationId?: string;
104
- }
105
-
106
- export interface PublicDnsPropertiesMutable {
107
-
108
- SOA: SOA | undefined;
109
- }
110
-
111
- export interface PublicDnsNamespaceProperties {
112
-
113
- DnsProperties: PublicDnsPropertiesMutable | undefined;
114
- }
115
- export interface CreatePublicDnsNamespaceRequest {
116
-
117
- Name: string | undefined;
118
-
119
- CreatorRequestId?: string;
120
-
121
- Description?: string;
122
-
123
- Tags?: Tag[];
124
-
125
- Properties?: PublicDnsNamespaceProperties;
126
- }
127
- export interface CreatePublicDnsNamespaceResponse {
128
-
129
- OperationId?: string;
130
- }
131
- export declare enum RecordType {
132
- A = "A",
133
- AAAA = "AAAA",
134
- CNAME = "CNAME",
135
- SRV = "SRV"
136
- }
137
-
138
- export interface DnsRecord {
139
-
140
- Type: RecordType | string | undefined;
141
-
142
- TTL: number | undefined;
143
- }
144
- export declare enum RoutingPolicy {
145
- MULTIVALUE = "MULTIVALUE",
146
- WEIGHTED = "WEIGHTED"
147
- }
148
-
149
- export interface DnsConfig {
150
-
151
- NamespaceId?: string;
152
-
153
- RoutingPolicy?: RoutingPolicy | string;
154
-
155
- DnsRecords: DnsRecord[] | undefined;
156
- }
157
- export declare enum HealthCheckType {
158
- HTTP = "HTTP",
159
- HTTPS = "HTTPS",
160
- TCP = "TCP"
161
- }
162
-
163
- export interface HealthCheckConfig {
164
-
165
- Type: HealthCheckType | string | undefined;
166
-
167
- ResourcePath?: string;
168
-
169
- FailureThreshold?: number;
170
- }
171
-
172
- export interface HealthCheckCustomConfig {
173
-
174
- FailureThreshold?: number;
175
- }
176
- export declare enum ServiceTypeOption {
177
- HTTP = "HTTP"
178
- }
179
- export interface CreateServiceRequest {
180
-
181
- Name: string | undefined;
182
-
183
- NamespaceId?: string;
184
-
185
- CreatorRequestId?: string;
186
-
187
- Description?: string;
188
-
189
- DnsConfig?: DnsConfig;
190
-
191
- HealthCheckConfig?: HealthCheckConfig;
192
-
193
- HealthCheckCustomConfig?: HealthCheckCustomConfig;
194
-
195
- Tags?: Tag[];
196
-
197
- Type?: ServiceTypeOption | string;
198
- }
199
- export declare enum ServiceType {
200
- DNS = "DNS",
201
- DNS_HTTP = "DNS_HTTP",
202
- HTTP = "HTTP"
203
- }
204
-
205
- export interface Service {
206
-
207
- Id?: string;
208
-
209
- Arn?: string;
210
-
211
- Name?: string;
212
-
213
- NamespaceId?: string;
214
-
215
- Description?: string;
216
-
217
- InstanceCount?: number;
218
-
219
- DnsConfig?: DnsConfig;
220
-
221
- Type?: ServiceType | string;
222
-
223
- HealthCheckConfig?: HealthCheckConfig;
224
-
225
- HealthCheckCustomConfig?: HealthCheckCustomConfig;
226
-
227
- CreateDate?: Date;
228
-
229
- CreatorRequestId?: string;
230
- }
231
- export interface CreateServiceResponse {
232
-
233
- Service?: Service;
234
- }
235
-
236
- export declare class NamespaceNotFound extends __BaseException {
237
- readonly name: "NamespaceNotFound";
238
- readonly $fault: "client";
239
- Message?: string;
240
-
241
- constructor(opts: __ExceptionOptionType<NamespaceNotFound, __BaseException>);
242
- }
243
-
244
- export declare class ServiceAlreadyExists extends __BaseException {
245
- readonly name: "ServiceAlreadyExists";
246
- readonly $fault: "client";
247
- Message?: string;
248
-
249
- CreatorRequestId?: string;
250
-
251
- ServiceId?: string;
252
-
253
- constructor(opts: __ExceptionOptionType<ServiceAlreadyExists, __BaseException>);
254
- }
255
-
256
- export declare class CustomHealthNotFound extends __BaseException {
257
- readonly name: "CustomHealthNotFound";
258
- readonly $fault: "client";
259
- Message?: string;
260
-
261
- constructor(opts: __ExceptionOptionType<CustomHealthNotFound, __BaseException>);
262
- }
263
- export declare enum CustomHealthStatus {
264
- HEALTHY = "HEALTHY",
265
- UNHEALTHY = "UNHEALTHY"
266
- }
267
- export interface DeleteNamespaceRequest {
268
-
269
- Id: string | undefined;
270
- }
271
- export interface DeleteNamespaceResponse {
272
-
273
- OperationId?: string;
274
- }
275
-
276
- export declare class ResourceInUse extends __BaseException {
277
- readonly name: "ResourceInUse";
278
- readonly $fault: "client";
279
- Message?: string;
280
-
281
- constructor(opts: __ExceptionOptionType<ResourceInUse, __BaseException>);
282
- }
283
- export interface DeleteServiceRequest {
284
-
285
- Id: string | undefined;
286
- }
287
- export interface DeleteServiceResponse {
288
- }
289
-
290
- export declare class ServiceNotFound extends __BaseException {
291
- readonly name: "ServiceNotFound";
292
- readonly $fault: "client";
293
- Message?: string;
294
-
295
- constructor(opts: __ExceptionOptionType<ServiceNotFound, __BaseException>);
296
- }
297
- export interface DeregisterInstanceRequest {
298
-
299
- ServiceId: string | undefined;
300
-
301
- InstanceId: string | undefined;
302
- }
303
- export interface DeregisterInstanceResponse {
304
-
305
- OperationId?: string;
306
- }
307
-
308
- export declare class InstanceNotFound extends __BaseException {
309
- readonly name: "InstanceNotFound";
310
- readonly $fault: "client";
311
- Message?: string;
312
-
313
- constructor(opts: __ExceptionOptionType<InstanceNotFound, __BaseException>);
314
- }
315
- export declare enum HealthStatusFilter {
316
- ALL = "ALL",
317
- HEALTHY = "HEALTHY",
318
- HEALTHY_OR_ELSE_ALL = "HEALTHY_OR_ELSE_ALL",
319
- UNHEALTHY = "UNHEALTHY"
320
- }
321
- export interface DiscoverInstancesRequest {
322
-
323
- NamespaceName: string | undefined;
324
-
325
- ServiceName: string | undefined;
326
-
327
- MaxResults?: number;
328
-
329
- QueryParameters?: Record<string, string>;
330
-
331
- OptionalParameters?: Record<string, string>;
332
-
333
- HealthStatus?: HealthStatusFilter | string;
334
- }
335
- export declare enum HealthStatus {
336
- HEALTHY = "HEALTHY",
337
- UNHEALTHY = "UNHEALTHY",
338
- UNKNOWN = "UNKNOWN"
339
- }
340
-
341
- export interface HttpInstanceSummary {
342
-
343
- InstanceId?: string;
344
-
345
- NamespaceName?: string;
346
-
347
- ServiceName?: string;
348
-
349
- HealthStatus?: HealthStatus | string;
350
-
351
- Attributes?: Record<string, string>;
352
- }
353
- export interface DiscoverInstancesResponse {
354
-
355
- Instances?: HttpInstanceSummary[];
356
- }
357
-
358
- export declare class RequestLimitExceeded extends __BaseException {
359
- readonly name: "RequestLimitExceeded";
360
- readonly $fault: "client";
361
- Message?: string;
362
-
363
- constructor(opts: __ExceptionOptionType<RequestLimitExceeded, __BaseException>);
364
- }
365
-
366
- export interface DnsConfigChange {
367
-
368
- DnsRecords: DnsRecord[] | undefined;
369
- }
370
-
371
- export interface DnsProperties {
372
-
373
- HostedZoneId?: string;
374
-
375
- SOA?: SOA;
376
- }
377
- export declare enum FilterCondition {
378
- BETWEEN = "BETWEEN",
379
- EQ = "EQ",
380
- IN = "IN"
381
- }
382
- export interface GetInstanceRequest {
383
-
384
- ServiceId: string | undefined;
385
-
386
- InstanceId: string | undefined;
387
- }
388
-
389
- export interface Instance {
390
-
391
- Id: string | undefined;
392
-
393
- CreatorRequestId?: string;
394
-
395
- Attributes?: Record<string, string>;
396
- }
397
- export interface GetInstanceResponse {
398
-
399
- Instance?: Instance;
400
- }
401
- export interface GetInstancesHealthStatusRequest {
402
-
403
- ServiceId: string | undefined;
404
-
405
- Instances?: string[];
406
-
407
- MaxResults?: number;
408
-
409
- NextToken?: string;
410
- }
411
- export interface GetInstancesHealthStatusResponse {
412
-
413
- Status?: Record<string, HealthStatus | string>;
414
-
415
- NextToken?: string;
416
- }
417
- export interface GetNamespaceRequest {
418
-
419
- Id: string | undefined;
420
- }
421
-
422
- export interface HttpProperties {
423
-
424
- HttpName?: string;
425
- }
426
-
427
- export interface NamespaceProperties {
428
-
429
- DnsProperties?: DnsProperties;
430
-
431
- HttpProperties?: HttpProperties;
432
- }
433
- export declare enum NamespaceType {
434
- DNS_PRIVATE = "DNS_PRIVATE",
435
- DNS_PUBLIC = "DNS_PUBLIC",
436
- HTTP = "HTTP"
437
- }
438
-
439
- export interface Namespace {
440
-
441
- Id?: string;
442
-
443
- Arn?: string;
444
-
445
- Name?: string;
446
-
447
- Type?: NamespaceType | string;
448
-
449
- Description?: string;
450
-
451
- ServiceCount?: number;
452
-
453
- Properties?: NamespaceProperties;
454
-
455
- CreateDate?: Date;
456
-
457
- CreatorRequestId?: string;
458
- }
459
- export interface GetNamespaceResponse {
460
-
461
- Namespace?: Namespace;
462
- }
463
- export interface GetOperationRequest {
464
-
465
- OperationId: string | undefined;
466
- }
467
- export declare enum OperationStatus {
468
- FAIL = "FAIL",
469
- PENDING = "PENDING",
470
- SUBMITTED = "SUBMITTED",
471
- SUCCESS = "SUCCESS"
472
- }
473
- export declare enum OperationTargetType {
474
- INSTANCE = "INSTANCE",
475
- NAMESPACE = "NAMESPACE",
476
- SERVICE = "SERVICE"
477
- }
478
- export declare enum OperationType {
479
- CREATE_NAMESPACE = "CREATE_NAMESPACE",
480
- DELETE_NAMESPACE = "DELETE_NAMESPACE",
481
- DEREGISTER_INSTANCE = "DEREGISTER_INSTANCE",
482
- REGISTER_INSTANCE = "REGISTER_INSTANCE",
483
- UPDATE_NAMESPACE = "UPDATE_NAMESPACE",
484
- UPDATE_SERVICE = "UPDATE_SERVICE"
485
- }
486
-
487
- export interface Operation {
488
-
489
- Id?: string;
490
-
491
- Type?: OperationType | string;
492
-
493
- Status?: OperationStatus | string;
494
-
495
- ErrorMessage?: string;
496
-
497
- ErrorCode?: string;
498
-
499
- CreateDate?: Date;
500
-
501
- UpdateDate?: Date;
502
-
503
- Targets?: Record<string, string>;
504
- }
505
- export interface GetOperationResponse {
506
-
507
- Operation?: Operation;
508
- }
509
-
510
- export declare class OperationNotFound extends __BaseException {
511
- readonly name: "OperationNotFound";
512
- readonly $fault: "client";
513
- Message?: string;
514
-
515
- constructor(opts: __ExceptionOptionType<OperationNotFound, __BaseException>);
516
- }
517
- export interface GetServiceRequest {
518
-
519
- Id: string | undefined;
520
- }
521
- export interface GetServiceResponse {
522
-
523
- Service?: Service;
524
- }
525
-
526
- export interface HttpNamespaceChange {
527
-
528
- Description: string | undefined;
529
- }
530
-
531
- export interface InstanceSummary {
532
-
533
- Id?: string;
534
-
535
- Attributes?: Record<string, string>;
536
- }
537
- export interface ListInstancesRequest {
538
-
539
- ServiceId: string | undefined;
540
-
541
- NextToken?: string;
542
-
543
- MaxResults?: number;
544
- }
545
- export interface ListInstancesResponse {
546
-
547
- Instances?: InstanceSummary[];
548
-
549
- NextToken?: string;
550
- }
551
- export declare enum NamespaceFilterName {
552
- TYPE = "TYPE"
553
- }
554
-
555
- export interface NamespaceFilter {
556
-
557
- Name: NamespaceFilterName | string | undefined;
558
-
559
- Values: string[] | undefined;
560
-
561
- Condition?: FilterCondition | string;
562
- }
563
- export interface ListNamespacesRequest {
564
-
565
- NextToken?: string;
566
-
567
- MaxResults?: number;
568
-
569
- Filters?: NamespaceFilter[];
570
- }
571
-
572
- export interface NamespaceSummary {
573
-
574
- Id?: string;
575
-
576
- Arn?: string;
577
-
578
- Name?: string;
579
-
580
- Type?: NamespaceType | string;
581
-
582
- Description?: string;
583
-
584
- ServiceCount?: number;
585
-
586
- Properties?: NamespaceProperties;
587
-
588
- CreateDate?: Date;
589
- }
590
- export interface ListNamespacesResponse {
591
-
592
- Namespaces?: NamespaceSummary[];
593
-
594
- NextToken?: string;
595
- }
596
- export declare enum OperationFilterName {
597
- NAMESPACE_ID = "NAMESPACE_ID",
598
- SERVICE_ID = "SERVICE_ID",
599
- STATUS = "STATUS",
600
- TYPE = "TYPE",
601
- UPDATE_DATE = "UPDATE_DATE"
602
- }
603
-
604
- export interface OperationFilter {
605
-
606
- Name: OperationFilterName | string | undefined;
607
-
608
- Values: string[] | undefined;
609
-
610
- Condition?: FilterCondition | string;
611
- }
612
- export interface ListOperationsRequest {
613
-
614
- NextToken?: string;
615
-
616
- MaxResults?: number;
617
-
618
- Filters?: OperationFilter[];
619
- }
620
-
621
- export interface OperationSummary {
622
-
623
- Id?: string;
624
-
625
- Status?: OperationStatus | string;
626
- }
627
- export interface ListOperationsResponse {
628
-
629
- Operations?: OperationSummary[];
630
-
631
- NextToken?: string;
632
- }
633
- export declare enum ServiceFilterName {
634
- NAMESPACE_ID = "NAMESPACE_ID"
635
- }
636
-
637
- export interface ServiceFilter {
638
-
639
- Name: ServiceFilterName | string | undefined;
640
-
641
- Values: string[] | undefined;
642
-
643
- Condition?: FilterCondition | string;
644
- }
645
- export interface ListServicesRequest {
646
-
647
- NextToken?: string;
648
-
649
- MaxResults?: number;
650
-
651
- Filters?: ServiceFilter[];
652
- }
653
-
654
- export interface ServiceSummary {
655
-
656
- Id?: string;
657
-
658
- Arn?: string;
659
-
660
- Name?: string;
661
-
662
- Type?: ServiceType | string;
663
-
664
- Description?: string;
665
-
666
- InstanceCount?: number;
667
-
668
- DnsConfig?: DnsConfig;
669
-
670
- HealthCheckConfig?: HealthCheckConfig;
671
-
672
- HealthCheckCustomConfig?: HealthCheckCustomConfig;
673
-
674
- CreateDate?: Date;
675
- }
676
- export interface ListServicesResponse {
677
-
678
- Services?: ServiceSummary[];
679
-
680
- NextToken?: string;
681
- }
682
- export interface ListTagsForResourceRequest {
683
-
684
- ResourceARN: string | undefined;
685
- }
686
- export interface ListTagsForResourceResponse {
687
-
688
- Tags?: Tag[];
689
- }
690
-
691
- export declare class ResourceNotFoundException extends __BaseException {
692
- readonly name: "ResourceNotFoundException";
693
- readonly $fault: "client";
694
- Message?: string;
695
-
696
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
697
- }
698
-
699
- export interface SOAChange {
700
-
701
- TTL: number | undefined;
702
- }
703
-
704
- export interface PrivateDnsPropertiesMutableChange {
705
-
706
- SOA: SOAChange | undefined;
707
- }
708
-
709
- export interface PrivateDnsNamespacePropertiesChange {
710
-
711
- DnsProperties: PrivateDnsPropertiesMutableChange | undefined;
712
- }
713
-
714
- export interface PrivateDnsNamespaceChange {
715
-
716
- Description?: string;
717
-
718
- Properties?: PrivateDnsNamespacePropertiesChange;
719
- }
720
-
721
- export interface PublicDnsPropertiesMutableChange {
722
-
723
- SOA: SOAChange | undefined;
724
- }
725
-
726
- export interface PublicDnsNamespacePropertiesChange {
727
-
728
- DnsProperties: PublicDnsPropertiesMutableChange | undefined;
729
- }
730
-
731
- export interface PublicDnsNamespaceChange {
732
-
733
- Description?: string;
734
-
735
- Properties?: PublicDnsNamespacePropertiesChange;
736
- }
737
- export interface RegisterInstanceRequest {
738
-
739
- ServiceId: string | undefined;
740
-
741
- InstanceId: string | undefined;
742
-
743
- CreatorRequestId?: string;
744
-
745
- Attributes: Record<string, string> | undefined;
746
- }
747
- export interface RegisterInstanceResponse {
748
-
749
- OperationId?: string;
750
- }
751
- export interface TagResourceRequest {
752
-
753
- ResourceARN: string | undefined;
754
-
755
- Tags: Tag[] | undefined;
756
- }
757
- export interface TagResourceResponse {
758
- }
759
- export interface UntagResourceRequest {
760
-
761
- ResourceARN: string | undefined;
762
-
763
- TagKeys: string[] | undefined;
764
- }
765
- export interface UntagResourceResponse {
766
- }
767
- export interface UpdateHttpNamespaceRequest {
768
-
769
- Id: string | undefined;
770
-
771
- UpdaterRequestId?: string;
772
-
773
- Namespace: HttpNamespaceChange | undefined;
774
- }
775
- export interface UpdateHttpNamespaceResponse {
776
-
777
- OperationId?: string;
778
- }
779
- export interface UpdateInstanceCustomHealthStatusRequest {
780
-
781
- ServiceId: string | undefined;
782
-
783
- InstanceId: string | undefined;
784
-
785
- Status: CustomHealthStatus | string | undefined;
786
- }
787
- export interface UpdatePrivateDnsNamespaceRequest {
788
-
789
- Id: string | undefined;
790
-
791
- UpdaterRequestId?: string;
792
-
793
- Namespace: PrivateDnsNamespaceChange | undefined;
794
- }
795
- export interface UpdatePrivateDnsNamespaceResponse {
796
-
797
- OperationId?: string;
798
- }
799
- export interface UpdatePublicDnsNamespaceRequest {
800
-
801
- Id: string | undefined;
802
-
803
- UpdaterRequestId?: string;
804
-
805
- Namespace: PublicDnsNamespaceChange | undefined;
806
- }
807
- export interface UpdatePublicDnsNamespaceResponse {
808
-
809
- OperationId?: string;
810
- }
811
-
812
- export interface ServiceChange {
813
-
814
- Description?: string;
815
-
816
- DnsConfig?: DnsConfigChange;
817
-
818
- HealthCheckConfig?: HealthCheckConfig;
819
- }
820
- export interface UpdateServiceRequest {
821
-
822
- Id: string | undefined;
823
-
824
- Service: ServiceChange | undefined;
825
- }
826
- export interface UpdateServiceResponse {
827
-
828
- OperationId?: string;
829
- }
830
-
831
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
832
-
833
- export declare const CreateHttpNamespaceRequestFilterSensitiveLog: (obj: CreateHttpNamespaceRequest) => any;
834
-
835
- export declare const CreateHttpNamespaceResponseFilterSensitiveLog: (obj: CreateHttpNamespaceResponse) => any;
836
-
837
- export declare const SOAFilterSensitiveLog: (obj: SOA) => any;
838
-
839
- export declare const PrivateDnsPropertiesMutableFilterSensitiveLog: (obj: PrivateDnsPropertiesMutable) => any;
840
-
841
- export declare const PrivateDnsNamespacePropertiesFilterSensitiveLog: (obj: PrivateDnsNamespaceProperties) => any;
842
-
843
- export declare const CreatePrivateDnsNamespaceRequestFilterSensitiveLog: (obj: CreatePrivateDnsNamespaceRequest) => any;
844
-
845
- export declare const CreatePrivateDnsNamespaceResponseFilterSensitiveLog: (obj: CreatePrivateDnsNamespaceResponse) => any;
846
-
847
- export declare const PublicDnsPropertiesMutableFilterSensitiveLog: (obj: PublicDnsPropertiesMutable) => any;
848
-
849
- export declare const PublicDnsNamespacePropertiesFilterSensitiveLog: (obj: PublicDnsNamespaceProperties) => any;
850
-
851
- export declare const CreatePublicDnsNamespaceRequestFilterSensitiveLog: (obj: CreatePublicDnsNamespaceRequest) => any;
852
-
853
- export declare const CreatePublicDnsNamespaceResponseFilterSensitiveLog: (obj: CreatePublicDnsNamespaceResponse) => any;
854
-
855
- export declare const DnsRecordFilterSensitiveLog: (obj: DnsRecord) => any;
856
-
857
- export declare const DnsConfigFilterSensitiveLog: (obj: DnsConfig) => any;
858
-
859
- export declare const HealthCheckConfigFilterSensitiveLog: (obj: HealthCheckConfig) => any;
860
-
861
- export declare const HealthCheckCustomConfigFilterSensitiveLog: (obj: HealthCheckCustomConfig) => any;
862
-
863
- export declare const CreateServiceRequestFilterSensitiveLog: (obj: CreateServiceRequest) => any;
864
-
865
- export declare const ServiceFilterSensitiveLog: (obj: Service) => any;
866
-
867
- export declare const CreateServiceResponseFilterSensitiveLog: (obj: CreateServiceResponse) => any;
868
-
869
- export declare const DeleteNamespaceRequestFilterSensitiveLog: (obj: DeleteNamespaceRequest) => any;
870
-
871
- export declare const DeleteNamespaceResponseFilterSensitiveLog: (obj: DeleteNamespaceResponse) => any;
872
-
873
- export declare const DeleteServiceRequestFilterSensitiveLog: (obj: DeleteServiceRequest) => any;
874
-
875
- export declare const DeleteServiceResponseFilterSensitiveLog: (obj: DeleteServiceResponse) => any;
876
-
877
- export declare const DeregisterInstanceRequestFilterSensitiveLog: (obj: DeregisterInstanceRequest) => any;
878
-
879
- export declare const DeregisterInstanceResponseFilterSensitiveLog: (obj: DeregisterInstanceResponse) => any;
880
-
881
- export declare const DiscoverInstancesRequestFilterSensitiveLog: (obj: DiscoverInstancesRequest) => any;
882
-
883
- export declare const HttpInstanceSummaryFilterSensitiveLog: (obj: HttpInstanceSummary) => any;
884
-
885
- export declare const DiscoverInstancesResponseFilterSensitiveLog: (obj: DiscoverInstancesResponse) => any;
886
-
887
- export declare const DnsConfigChangeFilterSensitiveLog: (obj: DnsConfigChange) => any;
888
-
889
- export declare const DnsPropertiesFilterSensitiveLog: (obj: DnsProperties) => any;
890
-
891
- export declare const GetInstanceRequestFilterSensitiveLog: (obj: GetInstanceRequest) => any;
892
-
893
- export declare const InstanceFilterSensitiveLog: (obj: Instance) => any;
894
-
895
- export declare const GetInstanceResponseFilterSensitiveLog: (obj: GetInstanceResponse) => any;
896
-
897
- export declare const GetInstancesHealthStatusRequestFilterSensitiveLog: (obj: GetInstancesHealthStatusRequest) => any;
898
-
899
- export declare const GetInstancesHealthStatusResponseFilterSensitiveLog: (obj: GetInstancesHealthStatusResponse) => any;
900
-
901
- export declare const GetNamespaceRequestFilterSensitiveLog: (obj: GetNamespaceRequest) => any;
902
-
903
- export declare const HttpPropertiesFilterSensitiveLog: (obj: HttpProperties) => any;
904
-
905
- export declare const NamespacePropertiesFilterSensitiveLog: (obj: NamespaceProperties) => any;
906
-
907
- export declare const NamespaceFilterSensitiveLog: (obj: Namespace) => any;
908
-
909
- export declare const GetNamespaceResponseFilterSensitiveLog: (obj: GetNamespaceResponse) => any;
910
-
911
- export declare const GetOperationRequestFilterSensitiveLog: (obj: GetOperationRequest) => any;
912
-
913
- export declare const OperationFilterSensitiveLog: (obj: Operation) => any;
914
-
915
- export declare const GetOperationResponseFilterSensitiveLog: (obj: GetOperationResponse) => any;
916
-
917
- export declare const GetServiceRequestFilterSensitiveLog: (obj: GetServiceRequest) => any;
918
-
919
- export declare const GetServiceResponseFilterSensitiveLog: (obj: GetServiceResponse) => any;
920
-
921
- export declare const HttpNamespaceChangeFilterSensitiveLog: (obj: HttpNamespaceChange) => any;
922
-
923
- export declare const InstanceSummaryFilterSensitiveLog: (obj: InstanceSummary) => any;
924
-
925
- export declare const ListInstancesRequestFilterSensitiveLog: (obj: ListInstancesRequest) => any;
926
-
927
- export declare const ListInstancesResponseFilterSensitiveLog: (obj: ListInstancesResponse) => any;
928
-
929
- export declare const NamespaceFilterFilterSensitiveLog: (obj: NamespaceFilter) => any;
930
-
931
- export declare const ListNamespacesRequestFilterSensitiveLog: (obj: ListNamespacesRequest) => any;
932
-
933
- export declare const NamespaceSummaryFilterSensitiveLog: (obj: NamespaceSummary) => any;
934
-
935
- export declare const ListNamespacesResponseFilterSensitiveLog: (obj: ListNamespacesResponse) => any;
936
-
937
- export declare const OperationFilterFilterSensitiveLog: (obj: OperationFilter) => any;
938
-
939
- export declare const ListOperationsRequestFilterSensitiveLog: (obj: ListOperationsRequest) => any;
940
-
941
- export declare const OperationSummaryFilterSensitiveLog: (obj: OperationSummary) => any;
942
-
943
- export declare const ListOperationsResponseFilterSensitiveLog: (obj: ListOperationsResponse) => any;
944
-
945
- export declare const ServiceFilterFilterSensitiveLog: (obj: ServiceFilter) => any;
946
-
947
- export declare const ListServicesRequestFilterSensitiveLog: (obj: ListServicesRequest) => any;
948
-
949
- export declare const ServiceSummaryFilterSensitiveLog: (obj: ServiceSummary) => any;
950
-
951
- export declare const ListServicesResponseFilterSensitiveLog: (obj: ListServicesResponse) => any;
952
-
953
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
954
-
955
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
956
-
957
- export declare const SOAChangeFilterSensitiveLog: (obj: SOAChange) => any;
958
-
959
- export declare const PrivateDnsPropertiesMutableChangeFilterSensitiveLog: (obj: PrivateDnsPropertiesMutableChange) => any;
960
-
961
- export declare const PrivateDnsNamespacePropertiesChangeFilterSensitiveLog: (obj: PrivateDnsNamespacePropertiesChange) => any;
962
-
963
- export declare const PrivateDnsNamespaceChangeFilterSensitiveLog: (obj: PrivateDnsNamespaceChange) => any;
964
-
965
- export declare const PublicDnsPropertiesMutableChangeFilterSensitiveLog: (obj: PublicDnsPropertiesMutableChange) => any;
966
-
967
- export declare const PublicDnsNamespacePropertiesChangeFilterSensitiveLog: (obj: PublicDnsNamespacePropertiesChange) => any;
968
-
969
- export declare const PublicDnsNamespaceChangeFilterSensitiveLog: (obj: PublicDnsNamespaceChange) => any;
970
-
971
- export declare const RegisterInstanceRequestFilterSensitiveLog: (obj: RegisterInstanceRequest) => any;
972
-
973
- export declare const RegisterInstanceResponseFilterSensitiveLog: (obj: RegisterInstanceResponse) => any;
974
-
975
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
976
-
977
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
978
-
979
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
980
-
981
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
982
-
983
- export declare const UpdateHttpNamespaceRequestFilterSensitiveLog: (obj: UpdateHttpNamespaceRequest) => any;
984
-
985
- export declare const UpdateHttpNamespaceResponseFilterSensitiveLog: (obj: UpdateHttpNamespaceResponse) => any;
986
-
987
- export declare const UpdateInstanceCustomHealthStatusRequestFilterSensitiveLog: (obj: UpdateInstanceCustomHealthStatusRequest) => any;
988
-
989
- export declare const UpdatePrivateDnsNamespaceRequestFilterSensitiveLog: (obj: UpdatePrivateDnsNamespaceRequest) => any;
990
-
991
- export declare const UpdatePrivateDnsNamespaceResponseFilterSensitiveLog: (obj: UpdatePrivateDnsNamespaceResponse) => any;
992
-
993
- export declare const UpdatePublicDnsNamespaceRequestFilterSensitiveLog: (obj: UpdatePublicDnsNamespaceRequest) => any;
994
-
995
- export declare const UpdatePublicDnsNamespaceResponseFilterSensitiveLog: (obj: UpdatePublicDnsNamespaceResponse) => any;
996
-
997
- export declare const ServiceChangeFilterSensitiveLog: (obj: ServiceChange) => any;
998
-
999
- export declare const UpdateServiceRequestFilterSensitiveLog: (obj: UpdateServiceRequest) => any;
1000
-
1001
- export declare const UpdateServiceResponseFilterSensitiveLog: (obj: UpdateServiceResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ServiceDiscoveryServiceException as __BaseException } from "./ServiceDiscoveryServiceException";
3
+
4
+ export interface Tag {
5
+ Key: string | undefined;
6
+
7
+ Value: string | undefined;
8
+ }
9
+ export interface CreateHttpNamespaceRequest {
10
+ Name: string | undefined;
11
+
12
+ CreatorRequestId?: string;
13
+
14
+ Description?: string;
15
+
16
+ Tags?: Tag[];
17
+ }
18
+ export interface CreateHttpNamespaceResponse {
19
+ OperationId?: string;
20
+ }
21
+
22
+ export declare class DuplicateRequest extends __BaseException {
23
+ readonly name: "DuplicateRequest";
24
+ readonly $fault: "client";
25
+ Message?: string;
26
+
27
+ DuplicateOperationId?: string;
28
+
29
+ constructor(opts: __ExceptionOptionType<DuplicateRequest, __BaseException>);
30
+ }
31
+
32
+ export declare class InvalidInput extends __BaseException {
33
+ readonly name: "InvalidInput";
34
+ readonly $fault: "client";
35
+ Message?: string;
36
+
37
+ constructor(opts: __ExceptionOptionType<InvalidInput, __BaseException>);
38
+ }
39
+
40
+ export declare class NamespaceAlreadyExists extends __BaseException {
41
+ readonly name: "NamespaceAlreadyExists";
42
+ readonly $fault: "client";
43
+ Message?: string;
44
+
45
+ CreatorRequestId?: string;
46
+
47
+ NamespaceId?: string;
48
+
49
+ constructor(
50
+ opts: __ExceptionOptionType<NamespaceAlreadyExists, __BaseException>
51
+ );
52
+ }
53
+
54
+ export declare class ResourceLimitExceeded extends __BaseException {
55
+ readonly name: "ResourceLimitExceeded";
56
+ readonly $fault: "client";
57
+ Message?: string;
58
+
59
+ constructor(
60
+ opts: __ExceptionOptionType<ResourceLimitExceeded, __BaseException>
61
+ );
62
+ }
63
+
64
+ export declare class TooManyTagsException extends __BaseException {
65
+ readonly name: "TooManyTagsException";
66
+ readonly $fault: "client";
67
+ Message?: string;
68
+
69
+ ResourceName?: string;
70
+
71
+ constructor(
72
+ opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
73
+ );
74
+ }
75
+
76
+ export interface SOA {
77
+ TTL: number | undefined;
78
+ }
79
+
80
+ export interface PrivateDnsPropertiesMutable {
81
+ SOA: SOA | undefined;
82
+ }
83
+
84
+ export interface PrivateDnsNamespaceProperties {
85
+ DnsProperties: PrivateDnsPropertiesMutable | undefined;
86
+ }
87
+ export interface CreatePrivateDnsNamespaceRequest {
88
+ Name: string | undefined;
89
+
90
+ CreatorRequestId?: string;
91
+
92
+ Description?: string;
93
+
94
+ Vpc: string | undefined;
95
+
96
+ Tags?: Tag[];
97
+
98
+ Properties?: PrivateDnsNamespaceProperties;
99
+ }
100
+ export interface CreatePrivateDnsNamespaceResponse {
101
+ OperationId?: string;
102
+ }
103
+
104
+ export interface PublicDnsPropertiesMutable {
105
+ SOA: SOA | undefined;
106
+ }
107
+
108
+ export interface PublicDnsNamespaceProperties {
109
+ DnsProperties: PublicDnsPropertiesMutable | undefined;
110
+ }
111
+ export interface CreatePublicDnsNamespaceRequest {
112
+ Name: string | undefined;
113
+
114
+ CreatorRequestId?: string;
115
+
116
+ Description?: string;
117
+
118
+ Tags?: Tag[];
119
+
120
+ Properties?: PublicDnsNamespaceProperties;
121
+ }
122
+ export interface CreatePublicDnsNamespaceResponse {
123
+ OperationId?: string;
124
+ }
125
+ export declare enum RecordType {
126
+ A = "A",
127
+ AAAA = "AAAA",
128
+ CNAME = "CNAME",
129
+ SRV = "SRV",
130
+ }
131
+
132
+ export interface DnsRecord {
133
+ Type: RecordType | string | undefined;
134
+
135
+ TTL: number | undefined;
136
+ }
137
+ export declare enum RoutingPolicy {
138
+ MULTIVALUE = "MULTIVALUE",
139
+ WEIGHTED = "WEIGHTED",
140
+ }
141
+
142
+ export interface DnsConfig {
143
+ NamespaceId?: string;
144
+
145
+ RoutingPolicy?: RoutingPolicy | string;
146
+
147
+ DnsRecords: DnsRecord[] | undefined;
148
+ }
149
+ export declare enum HealthCheckType {
150
+ HTTP = "HTTP",
151
+ HTTPS = "HTTPS",
152
+ TCP = "TCP",
153
+ }
154
+
155
+ export interface HealthCheckConfig {
156
+ Type: HealthCheckType | string | undefined;
157
+
158
+ ResourcePath?: string;
159
+
160
+ FailureThreshold?: number;
161
+ }
162
+
163
+ export interface HealthCheckCustomConfig {
164
+ FailureThreshold?: number;
165
+ }
166
+ export declare enum ServiceTypeOption {
167
+ HTTP = "HTTP",
168
+ }
169
+ export interface CreateServiceRequest {
170
+ Name: string | undefined;
171
+
172
+ NamespaceId?: string;
173
+
174
+ CreatorRequestId?: string;
175
+
176
+ Description?: string;
177
+
178
+ DnsConfig?: DnsConfig;
179
+
180
+ HealthCheckConfig?: HealthCheckConfig;
181
+
182
+ HealthCheckCustomConfig?: HealthCheckCustomConfig;
183
+
184
+ Tags?: Tag[];
185
+
186
+ Type?: ServiceTypeOption | string;
187
+ }
188
+ export declare enum ServiceType {
189
+ DNS = "DNS",
190
+ DNS_HTTP = "DNS_HTTP",
191
+ HTTP = "HTTP",
192
+ }
193
+
194
+ export interface Service {
195
+ Id?: string;
196
+
197
+ Arn?: string;
198
+
199
+ Name?: string;
200
+
201
+ NamespaceId?: string;
202
+
203
+ Description?: string;
204
+
205
+ InstanceCount?: number;
206
+
207
+ DnsConfig?: DnsConfig;
208
+
209
+ Type?: ServiceType | string;
210
+
211
+ HealthCheckConfig?: HealthCheckConfig;
212
+
213
+ HealthCheckCustomConfig?: HealthCheckCustomConfig;
214
+
215
+ CreateDate?: Date;
216
+
217
+ CreatorRequestId?: string;
218
+ }
219
+ export interface CreateServiceResponse {
220
+ Service?: Service;
221
+ }
222
+
223
+ export declare class NamespaceNotFound extends __BaseException {
224
+ readonly name: "NamespaceNotFound";
225
+ readonly $fault: "client";
226
+ Message?: string;
227
+
228
+ constructor(opts: __ExceptionOptionType<NamespaceNotFound, __BaseException>);
229
+ }
230
+
231
+ export declare class ServiceAlreadyExists extends __BaseException {
232
+ readonly name: "ServiceAlreadyExists";
233
+ readonly $fault: "client";
234
+ Message?: string;
235
+
236
+ CreatorRequestId?: string;
237
+
238
+ ServiceId?: string;
239
+
240
+ constructor(
241
+ opts: __ExceptionOptionType<ServiceAlreadyExists, __BaseException>
242
+ );
243
+ }
244
+
245
+ export declare class CustomHealthNotFound extends __BaseException {
246
+ readonly name: "CustomHealthNotFound";
247
+ readonly $fault: "client";
248
+ Message?: string;
249
+
250
+ constructor(
251
+ opts: __ExceptionOptionType<CustomHealthNotFound, __BaseException>
252
+ );
253
+ }
254
+ export declare enum CustomHealthStatus {
255
+ HEALTHY = "HEALTHY",
256
+ UNHEALTHY = "UNHEALTHY",
257
+ }
258
+ export interface DeleteNamespaceRequest {
259
+ Id: string | undefined;
260
+ }
261
+ export interface DeleteNamespaceResponse {
262
+ OperationId?: string;
263
+ }
264
+
265
+ export declare class ResourceInUse extends __BaseException {
266
+ readonly name: "ResourceInUse";
267
+ readonly $fault: "client";
268
+ Message?: string;
269
+
270
+ constructor(opts: __ExceptionOptionType<ResourceInUse, __BaseException>);
271
+ }
272
+ export interface DeleteServiceRequest {
273
+ Id: string | undefined;
274
+ }
275
+ export interface DeleteServiceResponse {}
276
+
277
+ export declare class ServiceNotFound extends __BaseException {
278
+ readonly name: "ServiceNotFound";
279
+ readonly $fault: "client";
280
+ Message?: string;
281
+
282
+ constructor(opts: __ExceptionOptionType<ServiceNotFound, __BaseException>);
283
+ }
284
+ export interface DeregisterInstanceRequest {
285
+ ServiceId: string | undefined;
286
+
287
+ InstanceId: string | undefined;
288
+ }
289
+ export interface DeregisterInstanceResponse {
290
+ OperationId?: string;
291
+ }
292
+
293
+ export declare class InstanceNotFound extends __BaseException {
294
+ readonly name: "InstanceNotFound";
295
+ readonly $fault: "client";
296
+ Message?: string;
297
+
298
+ constructor(opts: __ExceptionOptionType<InstanceNotFound, __BaseException>);
299
+ }
300
+ export declare enum HealthStatusFilter {
301
+ ALL = "ALL",
302
+ HEALTHY = "HEALTHY",
303
+ HEALTHY_OR_ELSE_ALL = "HEALTHY_OR_ELSE_ALL",
304
+ UNHEALTHY = "UNHEALTHY",
305
+ }
306
+ export interface DiscoverInstancesRequest {
307
+ NamespaceName: string | undefined;
308
+
309
+ ServiceName: string | undefined;
310
+
311
+ MaxResults?: number;
312
+
313
+ QueryParameters?: Record<string, string>;
314
+
315
+ OptionalParameters?: Record<string, string>;
316
+
317
+ HealthStatus?: HealthStatusFilter | string;
318
+ }
319
+ export declare enum HealthStatus {
320
+ HEALTHY = "HEALTHY",
321
+ UNHEALTHY = "UNHEALTHY",
322
+ UNKNOWN = "UNKNOWN",
323
+ }
324
+
325
+ export interface HttpInstanceSummary {
326
+ InstanceId?: string;
327
+
328
+ NamespaceName?: string;
329
+
330
+ ServiceName?: string;
331
+
332
+ HealthStatus?: HealthStatus | string;
333
+
334
+ Attributes?: Record<string, string>;
335
+ }
336
+ export interface DiscoverInstancesResponse {
337
+ Instances?: HttpInstanceSummary[];
338
+ }
339
+
340
+ export declare class RequestLimitExceeded extends __BaseException {
341
+ readonly name: "RequestLimitExceeded";
342
+ readonly $fault: "client";
343
+ Message?: string;
344
+
345
+ constructor(
346
+ opts: __ExceptionOptionType<RequestLimitExceeded, __BaseException>
347
+ );
348
+ }
349
+
350
+ export interface DnsConfigChange {
351
+ DnsRecords: DnsRecord[] | undefined;
352
+ }
353
+
354
+ export interface DnsProperties {
355
+ HostedZoneId?: string;
356
+
357
+ SOA?: SOA;
358
+ }
359
+ export declare enum FilterCondition {
360
+ BETWEEN = "BETWEEN",
361
+ EQ = "EQ",
362
+ IN = "IN",
363
+ }
364
+ export interface GetInstanceRequest {
365
+ ServiceId: string | undefined;
366
+
367
+ InstanceId: string | undefined;
368
+ }
369
+
370
+ export interface Instance {
371
+ Id: string | undefined;
372
+
373
+ CreatorRequestId?: string;
374
+
375
+ Attributes?: Record<string, string>;
376
+ }
377
+ export interface GetInstanceResponse {
378
+ Instance?: Instance;
379
+ }
380
+ export interface GetInstancesHealthStatusRequest {
381
+ ServiceId: string | undefined;
382
+
383
+ Instances?: string[];
384
+
385
+ MaxResults?: number;
386
+
387
+ NextToken?: string;
388
+ }
389
+ export interface GetInstancesHealthStatusResponse {
390
+ Status?: Record<string, HealthStatus | string>;
391
+
392
+ NextToken?: string;
393
+ }
394
+ export interface GetNamespaceRequest {
395
+ Id: string | undefined;
396
+ }
397
+
398
+ export interface HttpProperties {
399
+ HttpName?: string;
400
+ }
401
+
402
+ export interface NamespaceProperties {
403
+ DnsProperties?: DnsProperties;
404
+
405
+ HttpProperties?: HttpProperties;
406
+ }
407
+ export declare enum NamespaceType {
408
+ DNS_PRIVATE = "DNS_PRIVATE",
409
+ DNS_PUBLIC = "DNS_PUBLIC",
410
+ HTTP = "HTTP",
411
+ }
412
+
413
+ export interface Namespace {
414
+ Id?: string;
415
+
416
+ Arn?: string;
417
+
418
+ Name?: string;
419
+
420
+ Type?: NamespaceType | string;
421
+
422
+ Description?: string;
423
+
424
+ ServiceCount?: number;
425
+
426
+ Properties?: NamespaceProperties;
427
+
428
+ CreateDate?: Date;
429
+
430
+ CreatorRequestId?: string;
431
+ }
432
+ export interface GetNamespaceResponse {
433
+ Namespace?: Namespace;
434
+ }
435
+ export interface GetOperationRequest {
436
+ OperationId: string | undefined;
437
+ }
438
+ export declare enum OperationStatus {
439
+ FAIL = "FAIL",
440
+ PENDING = "PENDING",
441
+ SUBMITTED = "SUBMITTED",
442
+ SUCCESS = "SUCCESS",
443
+ }
444
+ export declare enum OperationTargetType {
445
+ INSTANCE = "INSTANCE",
446
+ NAMESPACE = "NAMESPACE",
447
+ SERVICE = "SERVICE",
448
+ }
449
+ export declare enum OperationType {
450
+ CREATE_NAMESPACE = "CREATE_NAMESPACE",
451
+ DELETE_NAMESPACE = "DELETE_NAMESPACE",
452
+ DEREGISTER_INSTANCE = "DEREGISTER_INSTANCE",
453
+ REGISTER_INSTANCE = "REGISTER_INSTANCE",
454
+ UPDATE_NAMESPACE = "UPDATE_NAMESPACE",
455
+ UPDATE_SERVICE = "UPDATE_SERVICE",
456
+ }
457
+
458
+ export interface Operation {
459
+ Id?: string;
460
+
461
+ Type?: OperationType | string;
462
+
463
+ Status?: OperationStatus | string;
464
+
465
+ ErrorMessage?: string;
466
+
467
+ ErrorCode?: string;
468
+
469
+ CreateDate?: Date;
470
+
471
+ UpdateDate?: Date;
472
+
473
+ Targets?: Record<string, string>;
474
+ }
475
+ export interface GetOperationResponse {
476
+ Operation?: Operation;
477
+ }
478
+
479
+ export declare class OperationNotFound extends __BaseException {
480
+ readonly name: "OperationNotFound";
481
+ readonly $fault: "client";
482
+ Message?: string;
483
+
484
+ constructor(opts: __ExceptionOptionType<OperationNotFound, __BaseException>);
485
+ }
486
+ export interface GetServiceRequest {
487
+ Id: string | undefined;
488
+ }
489
+ export interface GetServiceResponse {
490
+ Service?: Service;
491
+ }
492
+
493
+ export interface HttpNamespaceChange {
494
+ Description: string | undefined;
495
+ }
496
+
497
+ export interface InstanceSummary {
498
+ Id?: string;
499
+
500
+ Attributes?: Record<string, string>;
501
+ }
502
+ export interface ListInstancesRequest {
503
+ ServiceId: string | undefined;
504
+
505
+ NextToken?: string;
506
+
507
+ MaxResults?: number;
508
+ }
509
+ export interface ListInstancesResponse {
510
+ Instances?: InstanceSummary[];
511
+
512
+ NextToken?: string;
513
+ }
514
+ export declare enum NamespaceFilterName {
515
+ TYPE = "TYPE",
516
+ }
517
+
518
+ export interface NamespaceFilter {
519
+ Name: NamespaceFilterName | string | undefined;
520
+
521
+ Values: string[] | undefined;
522
+
523
+ Condition?: FilterCondition | string;
524
+ }
525
+ export interface ListNamespacesRequest {
526
+ NextToken?: string;
527
+
528
+ MaxResults?: number;
529
+
530
+ Filters?: NamespaceFilter[];
531
+ }
532
+
533
+ export interface NamespaceSummary {
534
+ Id?: string;
535
+
536
+ Arn?: string;
537
+
538
+ Name?: string;
539
+
540
+ Type?: NamespaceType | string;
541
+
542
+ Description?: string;
543
+
544
+ ServiceCount?: number;
545
+
546
+ Properties?: NamespaceProperties;
547
+
548
+ CreateDate?: Date;
549
+ }
550
+ export interface ListNamespacesResponse {
551
+ Namespaces?: NamespaceSummary[];
552
+
553
+ NextToken?: string;
554
+ }
555
+ export declare enum OperationFilterName {
556
+ NAMESPACE_ID = "NAMESPACE_ID",
557
+ SERVICE_ID = "SERVICE_ID",
558
+ STATUS = "STATUS",
559
+ TYPE = "TYPE",
560
+ UPDATE_DATE = "UPDATE_DATE",
561
+ }
562
+
563
+ export interface OperationFilter {
564
+ Name: OperationFilterName | string | undefined;
565
+
566
+ Values: string[] | undefined;
567
+
568
+ Condition?: FilterCondition | string;
569
+ }
570
+ export interface ListOperationsRequest {
571
+ NextToken?: string;
572
+
573
+ MaxResults?: number;
574
+
575
+ Filters?: OperationFilter[];
576
+ }
577
+
578
+ export interface OperationSummary {
579
+ Id?: string;
580
+
581
+ Status?: OperationStatus | string;
582
+ }
583
+ export interface ListOperationsResponse {
584
+ Operations?: OperationSummary[];
585
+
586
+ NextToken?: string;
587
+ }
588
+ export declare enum ServiceFilterName {
589
+ NAMESPACE_ID = "NAMESPACE_ID",
590
+ }
591
+
592
+ export interface ServiceFilter {
593
+ Name: ServiceFilterName | string | undefined;
594
+
595
+ Values: string[] | undefined;
596
+
597
+ Condition?: FilterCondition | string;
598
+ }
599
+ export interface ListServicesRequest {
600
+ NextToken?: string;
601
+
602
+ MaxResults?: number;
603
+
604
+ Filters?: ServiceFilter[];
605
+ }
606
+
607
+ export interface ServiceSummary {
608
+ Id?: string;
609
+
610
+ Arn?: string;
611
+
612
+ Name?: string;
613
+
614
+ Type?: ServiceType | string;
615
+
616
+ Description?: string;
617
+
618
+ InstanceCount?: number;
619
+
620
+ DnsConfig?: DnsConfig;
621
+
622
+ HealthCheckConfig?: HealthCheckConfig;
623
+
624
+ HealthCheckCustomConfig?: HealthCheckCustomConfig;
625
+
626
+ CreateDate?: Date;
627
+ }
628
+ export interface ListServicesResponse {
629
+ Services?: ServiceSummary[];
630
+
631
+ NextToken?: string;
632
+ }
633
+ export interface ListTagsForResourceRequest {
634
+ ResourceARN: string | undefined;
635
+ }
636
+ export interface ListTagsForResourceResponse {
637
+ Tags?: Tag[];
638
+ }
639
+
640
+ export declare class ResourceNotFoundException extends __BaseException {
641
+ readonly name: "ResourceNotFoundException";
642
+ readonly $fault: "client";
643
+ Message?: string;
644
+
645
+ constructor(
646
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
647
+ );
648
+ }
649
+
650
+ export interface SOAChange {
651
+ TTL: number | undefined;
652
+ }
653
+
654
+ export interface PrivateDnsPropertiesMutableChange {
655
+ SOA: SOAChange | undefined;
656
+ }
657
+
658
+ export interface PrivateDnsNamespacePropertiesChange {
659
+ DnsProperties: PrivateDnsPropertiesMutableChange | undefined;
660
+ }
661
+
662
+ export interface PrivateDnsNamespaceChange {
663
+ Description?: string;
664
+
665
+ Properties?: PrivateDnsNamespacePropertiesChange;
666
+ }
667
+
668
+ export interface PublicDnsPropertiesMutableChange {
669
+ SOA: SOAChange | undefined;
670
+ }
671
+
672
+ export interface PublicDnsNamespacePropertiesChange {
673
+ DnsProperties: PublicDnsPropertiesMutableChange | undefined;
674
+ }
675
+
676
+ export interface PublicDnsNamespaceChange {
677
+ Description?: string;
678
+
679
+ Properties?: PublicDnsNamespacePropertiesChange;
680
+ }
681
+ export interface RegisterInstanceRequest {
682
+ ServiceId: string | undefined;
683
+
684
+ InstanceId: string | undefined;
685
+
686
+ CreatorRequestId?: string;
687
+
688
+ Attributes: Record<string, string> | undefined;
689
+ }
690
+ export interface RegisterInstanceResponse {
691
+ OperationId?: string;
692
+ }
693
+ export interface TagResourceRequest {
694
+ ResourceARN: string | undefined;
695
+
696
+ Tags: Tag[] | undefined;
697
+ }
698
+ export interface TagResourceResponse {}
699
+ export interface UntagResourceRequest {
700
+ ResourceARN: string | undefined;
701
+
702
+ TagKeys: string[] | undefined;
703
+ }
704
+ export interface UntagResourceResponse {}
705
+ export interface UpdateHttpNamespaceRequest {
706
+ Id: string | undefined;
707
+
708
+ UpdaterRequestId?: string;
709
+
710
+ Namespace: HttpNamespaceChange | undefined;
711
+ }
712
+ export interface UpdateHttpNamespaceResponse {
713
+ OperationId?: string;
714
+ }
715
+ export interface UpdateInstanceCustomHealthStatusRequest {
716
+ ServiceId: string | undefined;
717
+
718
+ InstanceId: string | undefined;
719
+
720
+ Status: CustomHealthStatus | string | undefined;
721
+ }
722
+ export interface UpdatePrivateDnsNamespaceRequest {
723
+ Id: string | undefined;
724
+
725
+ UpdaterRequestId?: string;
726
+
727
+ Namespace: PrivateDnsNamespaceChange | undefined;
728
+ }
729
+ export interface UpdatePrivateDnsNamespaceResponse {
730
+ OperationId?: string;
731
+ }
732
+ export interface UpdatePublicDnsNamespaceRequest {
733
+ Id: string | undefined;
734
+
735
+ UpdaterRequestId?: string;
736
+
737
+ Namespace: PublicDnsNamespaceChange | undefined;
738
+ }
739
+ export interface UpdatePublicDnsNamespaceResponse {
740
+ OperationId?: string;
741
+ }
742
+
743
+ export interface ServiceChange {
744
+ Description?: string;
745
+
746
+ DnsConfig?: DnsConfigChange;
747
+
748
+ HealthCheckConfig?: HealthCheckConfig;
749
+ }
750
+ export interface UpdateServiceRequest {
751
+ Id: string | undefined;
752
+
753
+ Service: ServiceChange | undefined;
754
+ }
755
+ export interface UpdateServiceResponse {
756
+ OperationId?: string;
757
+ }
758
+
759
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
760
+
761
+ export declare const CreateHttpNamespaceRequestFilterSensitiveLog: (
762
+ obj: CreateHttpNamespaceRequest
763
+ ) => any;
764
+
765
+ export declare const CreateHttpNamespaceResponseFilterSensitiveLog: (
766
+ obj: CreateHttpNamespaceResponse
767
+ ) => any;
768
+
769
+ export declare const SOAFilterSensitiveLog: (obj: SOA) => any;
770
+
771
+ export declare const PrivateDnsPropertiesMutableFilterSensitiveLog: (
772
+ obj: PrivateDnsPropertiesMutable
773
+ ) => any;
774
+
775
+ export declare const PrivateDnsNamespacePropertiesFilterSensitiveLog: (
776
+ obj: PrivateDnsNamespaceProperties
777
+ ) => any;
778
+
779
+ export declare const CreatePrivateDnsNamespaceRequestFilterSensitiveLog: (
780
+ obj: CreatePrivateDnsNamespaceRequest
781
+ ) => any;
782
+
783
+ export declare const CreatePrivateDnsNamespaceResponseFilterSensitiveLog: (
784
+ obj: CreatePrivateDnsNamespaceResponse
785
+ ) => any;
786
+
787
+ export declare const PublicDnsPropertiesMutableFilterSensitiveLog: (
788
+ obj: PublicDnsPropertiesMutable
789
+ ) => any;
790
+
791
+ export declare const PublicDnsNamespacePropertiesFilterSensitiveLog: (
792
+ obj: PublicDnsNamespaceProperties
793
+ ) => any;
794
+
795
+ export declare const CreatePublicDnsNamespaceRequestFilterSensitiveLog: (
796
+ obj: CreatePublicDnsNamespaceRequest
797
+ ) => any;
798
+
799
+ export declare const CreatePublicDnsNamespaceResponseFilterSensitiveLog: (
800
+ obj: CreatePublicDnsNamespaceResponse
801
+ ) => any;
802
+
803
+ export declare const DnsRecordFilterSensitiveLog: (obj: DnsRecord) => any;
804
+
805
+ export declare const DnsConfigFilterSensitiveLog: (obj: DnsConfig) => any;
806
+
807
+ export declare const HealthCheckConfigFilterSensitiveLog: (
808
+ obj: HealthCheckConfig
809
+ ) => any;
810
+
811
+ export declare const HealthCheckCustomConfigFilterSensitiveLog: (
812
+ obj: HealthCheckCustomConfig
813
+ ) => any;
814
+
815
+ export declare const CreateServiceRequestFilterSensitiveLog: (
816
+ obj: CreateServiceRequest
817
+ ) => any;
818
+
819
+ export declare const ServiceFilterSensitiveLog: (obj: Service) => any;
820
+
821
+ export declare const CreateServiceResponseFilterSensitiveLog: (
822
+ obj: CreateServiceResponse
823
+ ) => any;
824
+
825
+ export declare const DeleteNamespaceRequestFilterSensitiveLog: (
826
+ obj: DeleteNamespaceRequest
827
+ ) => any;
828
+
829
+ export declare const DeleteNamespaceResponseFilterSensitiveLog: (
830
+ obj: DeleteNamespaceResponse
831
+ ) => any;
832
+
833
+ export declare const DeleteServiceRequestFilterSensitiveLog: (
834
+ obj: DeleteServiceRequest
835
+ ) => any;
836
+
837
+ export declare const DeleteServiceResponseFilterSensitiveLog: (
838
+ obj: DeleteServiceResponse
839
+ ) => any;
840
+
841
+ export declare const DeregisterInstanceRequestFilterSensitiveLog: (
842
+ obj: DeregisterInstanceRequest
843
+ ) => any;
844
+
845
+ export declare const DeregisterInstanceResponseFilterSensitiveLog: (
846
+ obj: DeregisterInstanceResponse
847
+ ) => any;
848
+
849
+ export declare const DiscoverInstancesRequestFilterSensitiveLog: (
850
+ obj: DiscoverInstancesRequest
851
+ ) => any;
852
+
853
+ export declare const HttpInstanceSummaryFilterSensitiveLog: (
854
+ obj: HttpInstanceSummary
855
+ ) => any;
856
+
857
+ export declare const DiscoverInstancesResponseFilterSensitiveLog: (
858
+ obj: DiscoverInstancesResponse
859
+ ) => any;
860
+
861
+ export declare const DnsConfigChangeFilterSensitiveLog: (
862
+ obj: DnsConfigChange
863
+ ) => any;
864
+
865
+ export declare const DnsPropertiesFilterSensitiveLog: (
866
+ obj: DnsProperties
867
+ ) => any;
868
+
869
+ export declare const GetInstanceRequestFilterSensitiveLog: (
870
+ obj: GetInstanceRequest
871
+ ) => any;
872
+
873
+ export declare const InstanceFilterSensitiveLog: (obj: Instance) => any;
874
+
875
+ export declare const GetInstanceResponseFilterSensitiveLog: (
876
+ obj: GetInstanceResponse
877
+ ) => any;
878
+
879
+ export declare const GetInstancesHealthStatusRequestFilterSensitiveLog: (
880
+ obj: GetInstancesHealthStatusRequest
881
+ ) => any;
882
+
883
+ export declare const GetInstancesHealthStatusResponseFilterSensitiveLog: (
884
+ obj: GetInstancesHealthStatusResponse
885
+ ) => any;
886
+
887
+ export declare const GetNamespaceRequestFilterSensitiveLog: (
888
+ obj: GetNamespaceRequest
889
+ ) => any;
890
+
891
+ export declare const HttpPropertiesFilterSensitiveLog: (
892
+ obj: HttpProperties
893
+ ) => any;
894
+
895
+ export declare const NamespacePropertiesFilterSensitiveLog: (
896
+ obj: NamespaceProperties
897
+ ) => any;
898
+
899
+ export declare const NamespaceFilterSensitiveLog: (obj: Namespace) => any;
900
+
901
+ export declare const GetNamespaceResponseFilterSensitiveLog: (
902
+ obj: GetNamespaceResponse
903
+ ) => any;
904
+
905
+ export declare const GetOperationRequestFilterSensitiveLog: (
906
+ obj: GetOperationRequest
907
+ ) => any;
908
+
909
+ export declare const OperationFilterSensitiveLog: (obj: Operation) => any;
910
+
911
+ export declare const GetOperationResponseFilterSensitiveLog: (
912
+ obj: GetOperationResponse
913
+ ) => any;
914
+
915
+ export declare const GetServiceRequestFilterSensitiveLog: (
916
+ obj: GetServiceRequest
917
+ ) => any;
918
+
919
+ export declare const GetServiceResponseFilterSensitiveLog: (
920
+ obj: GetServiceResponse
921
+ ) => any;
922
+
923
+ export declare const HttpNamespaceChangeFilterSensitiveLog: (
924
+ obj: HttpNamespaceChange
925
+ ) => any;
926
+
927
+ export declare const InstanceSummaryFilterSensitiveLog: (
928
+ obj: InstanceSummary
929
+ ) => any;
930
+
931
+ export declare const ListInstancesRequestFilterSensitiveLog: (
932
+ obj: ListInstancesRequest
933
+ ) => any;
934
+
935
+ export declare const ListInstancesResponseFilterSensitiveLog: (
936
+ obj: ListInstancesResponse
937
+ ) => any;
938
+
939
+ export declare const NamespaceFilterFilterSensitiveLog: (
940
+ obj: NamespaceFilter
941
+ ) => any;
942
+
943
+ export declare const ListNamespacesRequestFilterSensitiveLog: (
944
+ obj: ListNamespacesRequest
945
+ ) => any;
946
+
947
+ export declare const NamespaceSummaryFilterSensitiveLog: (
948
+ obj: NamespaceSummary
949
+ ) => any;
950
+
951
+ export declare const ListNamespacesResponseFilterSensitiveLog: (
952
+ obj: ListNamespacesResponse
953
+ ) => any;
954
+
955
+ export declare const OperationFilterFilterSensitiveLog: (
956
+ obj: OperationFilter
957
+ ) => any;
958
+
959
+ export declare const ListOperationsRequestFilterSensitiveLog: (
960
+ obj: ListOperationsRequest
961
+ ) => any;
962
+
963
+ export declare const OperationSummaryFilterSensitiveLog: (
964
+ obj: OperationSummary
965
+ ) => any;
966
+
967
+ export declare const ListOperationsResponseFilterSensitiveLog: (
968
+ obj: ListOperationsResponse
969
+ ) => any;
970
+
971
+ export declare const ServiceFilterFilterSensitiveLog: (
972
+ obj: ServiceFilter
973
+ ) => any;
974
+
975
+ export declare const ListServicesRequestFilterSensitiveLog: (
976
+ obj: ListServicesRequest
977
+ ) => any;
978
+
979
+ export declare const ServiceSummaryFilterSensitiveLog: (
980
+ obj: ServiceSummary
981
+ ) => any;
982
+
983
+ export declare const ListServicesResponseFilterSensitiveLog: (
984
+ obj: ListServicesResponse
985
+ ) => any;
986
+
987
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
988
+ obj: ListTagsForResourceRequest
989
+ ) => any;
990
+
991
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
992
+ obj: ListTagsForResourceResponse
993
+ ) => any;
994
+
995
+ export declare const SOAChangeFilterSensitiveLog: (obj: SOAChange) => any;
996
+
997
+ export declare const PrivateDnsPropertiesMutableChangeFilterSensitiveLog: (
998
+ obj: PrivateDnsPropertiesMutableChange
999
+ ) => any;
1000
+
1001
+ export declare const PrivateDnsNamespacePropertiesChangeFilterSensitiveLog: (
1002
+ obj: PrivateDnsNamespacePropertiesChange
1003
+ ) => any;
1004
+
1005
+ export declare const PrivateDnsNamespaceChangeFilterSensitiveLog: (
1006
+ obj: PrivateDnsNamespaceChange
1007
+ ) => any;
1008
+
1009
+ export declare const PublicDnsPropertiesMutableChangeFilterSensitiveLog: (
1010
+ obj: PublicDnsPropertiesMutableChange
1011
+ ) => any;
1012
+
1013
+ export declare const PublicDnsNamespacePropertiesChangeFilterSensitiveLog: (
1014
+ obj: PublicDnsNamespacePropertiesChange
1015
+ ) => any;
1016
+
1017
+ export declare const PublicDnsNamespaceChangeFilterSensitiveLog: (
1018
+ obj: PublicDnsNamespaceChange
1019
+ ) => any;
1020
+
1021
+ export declare const RegisterInstanceRequestFilterSensitiveLog: (
1022
+ obj: RegisterInstanceRequest
1023
+ ) => any;
1024
+
1025
+ export declare const RegisterInstanceResponseFilterSensitiveLog: (
1026
+ obj: RegisterInstanceResponse
1027
+ ) => any;
1028
+
1029
+ export declare const TagResourceRequestFilterSensitiveLog: (
1030
+ obj: TagResourceRequest
1031
+ ) => any;
1032
+
1033
+ export declare const TagResourceResponseFilterSensitiveLog: (
1034
+ obj: TagResourceResponse
1035
+ ) => any;
1036
+
1037
+ export declare const UntagResourceRequestFilterSensitiveLog: (
1038
+ obj: UntagResourceRequest
1039
+ ) => any;
1040
+
1041
+ export declare const UntagResourceResponseFilterSensitiveLog: (
1042
+ obj: UntagResourceResponse
1043
+ ) => any;
1044
+
1045
+ export declare const UpdateHttpNamespaceRequestFilterSensitiveLog: (
1046
+ obj: UpdateHttpNamespaceRequest
1047
+ ) => any;
1048
+
1049
+ export declare const UpdateHttpNamespaceResponseFilterSensitiveLog: (
1050
+ obj: UpdateHttpNamespaceResponse
1051
+ ) => any;
1052
+
1053
+ export declare const UpdateInstanceCustomHealthStatusRequestFilterSensitiveLog: (
1054
+ obj: UpdateInstanceCustomHealthStatusRequest
1055
+ ) => any;
1056
+
1057
+ export declare const UpdatePrivateDnsNamespaceRequestFilterSensitiveLog: (
1058
+ obj: UpdatePrivateDnsNamespaceRequest
1059
+ ) => any;
1060
+
1061
+ export declare const UpdatePrivateDnsNamespaceResponseFilterSensitiveLog: (
1062
+ obj: UpdatePrivateDnsNamespaceResponse
1063
+ ) => any;
1064
+
1065
+ export declare const UpdatePublicDnsNamespaceRequestFilterSensitiveLog: (
1066
+ obj: UpdatePublicDnsNamespaceRequest
1067
+ ) => any;
1068
+
1069
+ export declare const UpdatePublicDnsNamespaceResponseFilterSensitiveLog: (
1070
+ obj: UpdatePublicDnsNamespaceResponse
1071
+ ) => any;
1072
+
1073
+ export declare const ServiceChangeFilterSensitiveLog: (
1074
+ obj: ServiceChange
1075
+ ) => any;
1076
+
1077
+ export declare const UpdateServiceRequestFilterSensitiveLog: (
1078
+ obj: UpdateServiceRequest
1079
+ ) => any;
1080
+
1081
+ export declare const UpdateServiceResponseFilterSensitiveLog: (
1082
+ obj: UpdateServiceResponse
1083
+ ) => any;