@aws-sdk/client-servicediscovery 3.295.0 → 3.297.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.
- package/dist-types/ServiceDiscovery.d.ts +27 -0
- package/dist-types/ServiceDiscoveryClient.d.ts +24 -4
- package/dist-types/commands/CreateHttpNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/CreatePrivateDnsNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/CreatePublicDnsNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterInstanceCommand.d.ts +16 -0
- package/dist-types/commands/DiscoverInstancesCommand.d.ts +16 -0
- package/dist-types/commands/GetInstanceCommand.d.ts +16 -0
- package/dist-types/commands/GetInstancesHealthStatusCommand.d.ts +16 -0
- package/dist-types/commands/GetNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/GetOperationCommand.d.ts +16 -0
- package/dist-types/commands/GetServiceCommand.d.ts +16 -0
- package/dist-types/commands/ListInstancesCommand.d.ts +16 -0
- package/dist-types/commands/ListNamespacesCommand.d.ts +16 -0
- package/dist-types/commands/ListOperationsCommand.d.ts +16 -0
- package/dist-types/commands/ListServicesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/RegisterInstanceCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateHttpNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateInstanceCustomHealthStatusCommand.d.ts +16 -0
- package/dist-types/commands/UpdatePrivateDnsNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/UpdatePublicDnsNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +16 -0
- package/dist-types/models/ServiceDiscoveryServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +251 -1
- package/dist-types/pagination/GetInstancesHealthStatusPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListInstancesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListNamespacesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListOperationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListServicesPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ServiceDiscoveryServiceException as __BaseException } from "./ServiceDiscoveryServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>A custom key-value pair that's associated with a resource.</p>
|
|
5
6
|
*/
|
|
6
7
|
export interface Tag {
|
|
@@ -14,6 +15,9 @@ export interface Tag {
|
|
|
14
15
|
*/
|
|
15
16
|
Value: string | undefined;
|
|
16
17
|
}
|
|
18
|
+
/**
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
17
21
|
export interface CreateHttpNamespaceRequest {
|
|
18
22
|
/**
|
|
19
23
|
* <p>The name that you want to assign to this namespace.</p>
|
|
@@ -37,6 +41,9 @@ export interface CreateHttpNamespaceRequest {
|
|
|
37
41
|
*/
|
|
38
42
|
Tags?: Tag[];
|
|
39
43
|
}
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
40
47
|
export interface CreateHttpNamespaceResponse {
|
|
41
48
|
/**
|
|
42
49
|
* <p>A value that you can use to determine whether the request completed successfully.
|
|
@@ -45,6 +52,7 @@ export interface CreateHttpNamespaceResponse {
|
|
|
45
52
|
OperationId?: string;
|
|
46
53
|
}
|
|
47
54
|
/**
|
|
55
|
+
* @public
|
|
48
56
|
* <p>The operation is already in progress.</p>
|
|
49
57
|
*/
|
|
50
58
|
export declare class DuplicateRequest extends __BaseException {
|
|
@@ -61,6 +69,7 @@ export declare class DuplicateRequest extends __BaseException {
|
|
|
61
69
|
constructor(opts: __ExceptionOptionType<DuplicateRequest, __BaseException>);
|
|
62
70
|
}
|
|
63
71
|
/**
|
|
72
|
+
* @public
|
|
64
73
|
* <p>One or more specified values aren't valid. For example, a required value might be missing, a
|
|
65
74
|
* numeric value might be outside the allowed range, or a string value might exceed length
|
|
66
75
|
* constraints.</p>
|
|
@@ -75,6 +84,7 @@ export declare class InvalidInput extends __BaseException {
|
|
|
75
84
|
constructor(opts: __ExceptionOptionType<InvalidInput, __BaseException>);
|
|
76
85
|
}
|
|
77
86
|
/**
|
|
87
|
+
* @public
|
|
78
88
|
* <p>The namespace that you're trying to create already exists.</p>
|
|
79
89
|
*/
|
|
80
90
|
export declare class NamespaceAlreadyExists extends __BaseException {
|
|
@@ -95,6 +105,7 @@ export declare class NamespaceAlreadyExists extends __BaseException {
|
|
|
95
105
|
constructor(opts: __ExceptionOptionType<NamespaceAlreadyExists, __BaseException>);
|
|
96
106
|
}
|
|
97
107
|
/**
|
|
108
|
+
* @public
|
|
98
109
|
* <p>The operation can't be completed because you've reached the quota for the number of
|
|
99
110
|
* requests. For more information, see <a href="https://docs.aws.amazon.com/cloud-map/latest/dg/throttling.html">Cloud Map API request throttling quota</a> in the
|
|
100
111
|
* <i>Cloud Map Developer Guide</i>.</p>
|
|
@@ -109,6 +120,7 @@ export declare class RequestLimitExceeded extends __BaseException {
|
|
|
109
120
|
constructor(opts: __ExceptionOptionType<RequestLimitExceeded, __BaseException>);
|
|
110
121
|
}
|
|
111
122
|
/**
|
|
123
|
+
* @public
|
|
112
124
|
* <p>The resource can't be created because you've reached the quota on the number of
|
|
113
125
|
* resources.</p>
|
|
114
126
|
*/
|
|
@@ -122,6 +134,7 @@ export declare class ResourceLimitExceeded extends __BaseException {
|
|
|
122
134
|
constructor(opts: __ExceptionOptionType<ResourceLimitExceeded, __BaseException>);
|
|
123
135
|
}
|
|
124
136
|
/**
|
|
137
|
+
* @public
|
|
125
138
|
* <p>The list of tags on the resource is over the quota. The maximum number of tags that can be
|
|
126
139
|
* applied to a resource is 50.</p>
|
|
127
140
|
*/
|
|
@@ -139,6 +152,7 @@ export declare class TooManyTagsException extends __BaseException {
|
|
|
139
152
|
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
140
153
|
}
|
|
141
154
|
/**
|
|
155
|
+
* @public
|
|
142
156
|
* <p>Start of Authority
|
|
143
157
|
* (SOA) properties for a public or private DNS namespace.</p>
|
|
144
158
|
*/
|
|
@@ -150,6 +164,7 @@ export interface SOA {
|
|
|
150
164
|
TTL: number | undefined;
|
|
151
165
|
}
|
|
152
166
|
/**
|
|
167
|
+
* @public
|
|
153
168
|
* <p>DNS properties for
|
|
154
169
|
* the private DNS namespace.</p>
|
|
155
170
|
*/
|
|
@@ -162,6 +177,7 @@ export interface PrivateDnsPropertiesMutable {
|
|
|
162
177
|
SOA: SOA | undefined;
|
|
163
178
|
}
|
|
164
179
|
/**
|
|
180
|
+
* @public
|
|
165
181
|
* <p>DNS properties for
|
|
166
182
|
* the private DNS namespace.</p>
|
|
167
183
|
*/
|
|
@@ -172,6 +188,9 @@ export interface PrivateDnsNamespaceProperties {
|
|
|
172
188
|
*/
|
|
173
189
|
DnsProperties: PrivateDnsPropertiesMutable | undefined;
|
|
174
190
|
}
|
|
191
|
+
/**
|
|
192
|
+
* @public
|
|
193
|
+
*/
|
|
175
194
|
export interface CreatePrivateDnsNamespaceRequest {
|
|
176
195
|
/**
|
|
177
196
|
* <p>The name that you want to assign to this namespace. When you create a private DNS namespace,
|
|
@@ -206,6 +225,9 @@ export interface CreatePrivateDnsNamespaceRequest {
|
|
|
206
225
|
*/
|
|
207
226
|
Properties?: PrivateDnsNamespaceProperties;
|
|
208
227
|
}
|
|
228
|
+
/**
|
|
229
|
+
* @public
|
|
230
|
+
*/
|
|
209
231
|
export interface CreatePrivateDnsNamespaceResponse {
|
|
210
232
|
/**
|
|
211
233
|
* <p>A value that you can use to determine whether the request completed successfully.
|
|
@@ -214,6 +236,7 @@ export interface CreatePrivateDnsNamespaceResponse {
|
|
|
214
236
|
OperationId?: string;
|
|
215
237
|
}
|
|
216
238
|
/**
|
|
239
|
+
* @public
|
|
217
240
|
* <p>DNS properties for
|
|
218
241
|
* the public DNS namespace.</p>
|
|
219
242
|
*/
|
|
@@ -225,6 +248,7 @@ export interface PublicDnsPropertiesMutable {
|
|
|
225
248
|
SOA: SOA | undefined;
|
|
226
249
|
}
|
|
227
250
|
/**
|
|
251
|
+
* @public
|
|
228
252
|
* <p>DNS properties for
|
|
229
253
|
* the public DNS namespace.</p>
|
|
230
254
|
*/
|
|
@@ -235,6 +259,9 @@ export interface PublicDnsNamespaceProperties {
|
|
|
235
259
|
*/
|
|
236
260
|
DnsProperties: PublicDnsPropertiesMutable | undefined;
|
|
237
261
|
}
|
|
262
|
+
/**
|
|
263
|
+
* @public
|
|
264
|
+
*/
|
|
238
265
|
export interface CreatePublicDnsNamespaceRequest {
|
|
239
266
|
/**
|
|
240
267
|
* <p>The name that you want to assign to this namespace.</p>
|
|
@@ -266,6 +293,9 @@ export interface CreatePublicDnsNamespaceRequest {
|
|
|
266
293
|
*/
|
|
267
294
|
Properties?: PublicDnsNamespaceProperties;
|
|
268
295
|
}
|
|
296
|
+
/**
|
|
297
|
+
* @public
|
|
298
|
+
*/
|
|
269
299
|
export interface CreatePublicDnsNamespaceResponse {
|
|
270
300
|
/**
|
|
271
301
|
* <p>A value that you can use to determine whether the request completed successfully. To get the
|
|
@@ -273,6 +303,9 @@ export interface CreatePublicDnsNamespaceResponse {
|
|
|
273
303
|
*/
|
|
274
304
|
OperationId?: string;
|
|
275
305
|
}
|
|
306
|
+
/**
|
|
307
|
+
* @public
|
|
308
|
+
*/
|
|
276
309
|
export declare enum RecordType {
|
|
277
310
|
A = "A",
|
|
278
311
|
AAAA = "AAAA",
|
|
@@ -280,6 +313,7 @@ export declare enum RecordType {
|
|
|
280
313
|
SRV = "SRV"
|
|
281
314
|
}
|
|
282
315
|
/**
|
|
316
|
+
* @public
|
|
283
317
|
* <p>A complex type that contains information about the Route 53 DNS records that you want
|
|
284
318
|
* Cloud Map to create when you register an instance.</p>
|
|
285
319
|
*/
|
|
@@ -436,11 +470,15 @@ export interface DnsRecord {
|
|
|
436
470
|
*/
|
|
437
471
|
TTL: number | undefined;
|
|
438
472
|
}
|
|
473
|
+
/**
|
|
474
|
+
* @public
|
|
475
|
+
*/
|
|
439
476
|
export declare enum RoutingPolicy {
|
|
440
477
|
MULTIVALUE = "MULTIVALUE",
|
|
441
478
|
WEIGHTED = "WEIGHTED"
|
|
442
479
|
}
|
|
443
480
|
/**
|
|
481
|
+
* @public
|
|
444
482
|
* <p>A complex type that contains information about the Amazon Route 53 DNS records that you want
|
|
445
483
|
* Cloud Map to create when you register an instance.</p>
|
|
446
484
|
* <important>
|
|
@@ -506,12 +544,16 @@ export interface DnsConfig {
|
|
|
506
544
|
*/
|
|
507
545
|
DnsRecords: DnsRecord[] | undefined;
|
|
508
546
|
}
|
|
547
|
+
/**
|
|
548
|
+
* @public
|
|
549
|
+
*/
|
|
509
550
|
export declare enum HealthCheckType {
|
|
510
551
|
HTTP = "HTTP",
|
|
511
552
|
HTTPS = "HTTPS",
|
|
512
553
|
TCP = "TCP"
|
|
513
554
|
}
|
|
514
555
|
/**
|
|
556
|
+
* @public
|
|
515
557
|
* <p>
|
|
516
558
|
* <i>Public DNS and HTTP namespaces only.</i> A complex type that contains
|
|
517
559
|
* settings for an optional health check. If you specify settings for a health check, Cloud Map
|
|
@@ -632,6 +674,7 @@ export interface HealthCheckConfig {
|
|
|
632
674
|
FailureThreshold?: number;
|
|
633
675
|
}
|
|
634
676
|
/**
|
|
677
|
+
* @public
|
|
635
678
|
* <p>A complex type that contains information about an optional custom health check. A custom
|
|
636
679
|
* health check, which requires that you use a third-party health checker to evaluate the health of
|
|
637
680
|
* your resources, is useful in the following circumstances:</p>
|
|
@@ -705,9 +748,15 @@ export interface HealthCheckCustomConfig {
|
|
|
705
748
|
*/
|
|
706
749
|
FailureThreshold?: number;
|
|
707
750
|
}
|
|
751
|
+
/**
|
|
752
|
+
* @public
|
|
753
|
+
*/
|
|
708
754
|
export declare enum ServiceTypeOption {
|
|
709
755
|
HTTP = "HTTP"
|
|
710
756
|
}
|
|
757
|
+
/**
|
|
758
|
+
* @public
|
|
759
|
+
*/
|
|
711
760
|
export interface CreateServiceRequest {
|
|
712
761
|
/**
|
|
713
762
|
* <p>The name that you want to assign to the service.</p>
|
|
@@ -793,12 +842,16 @@ export interface CreateServiceRequest {
|
|
|
793
842
|
*/
|
|
794
843
|
Type?: ServiceTypeOption | string;
|
|
795
844
|
}
|
|
845
|
+
/**
|
|
846
|
+
* @public
|
|
847
|
+
*/
|
|
796
848
|
export declare enum ServiceType {
|
|
797
849
|
DNS = "DNS",
|
|
798
850
|
DNS_HTTP = "DNS_HTTP",
|
|
799
851
|
HTTP = "HTTP"
|
|
800
852
|
}
|
|
801
853
|
/**
|
|
854
|
+
* @public
|
|
802
855
|
* <p>A complex type that contains information about the specified service.</p>
|
|
803
856
|
*/
|
|
804
857
|
export interface Service {
|
|
@@ -886,6 +939,9 @@ export interface Service {
|
|
|
886
939
|
*/
|
|
887
940
|
CreatorRequestId?: string;
|
|
888
941
|
}
|
|
942
|
+
/**
|
|
943
|
+
* @public
|
|
944
|
+
*/
|
|
889
945
|
export interface CreateServiceResponse {
|
|
890
946
|
/**
|
|
891
947
|
* <p>A complex type that contains information about the new service.</p>
|
|
@@ -893,6 +949,7 @@ export interface CreateServiceResponse {
|
|
|
893
949
|
Service?: Service;
|
|
894
950
|
}
|
|
895
951
|
/**
|
|
952
|
+
* @public
|
|
896
953
|
* <p>No namespace exists with the specified ID.</p>
|
|
897
954
|
*/
|
|
898
955
|
export declare class NamespaceNotFound extends __BaseException {
|
|
@@ -905,6 +962,7 @@ export declare class NamespaceNotFound extends __BaseException {
|
|
|
905
962
|
constructor(opts: __ExceptionOptionType<NamespaceNotFound, __BaseException>);
|
|
906
963
|
}
|
|
907
964
|
/**
|
|
965
|
+
* @public
|
|
908
966
|
* <p>The service can't be created because a service with the same name already exists.</p>
|
|
909
967
|
*/
|
|
910
968
|
export declare class ServiceAlreadyExists extends __BaseException {
|
|
@@ -925,6 +983,7 @@ export declare class ServiceAlreadyExists extends __BaseException {
|
|
|
925
983
|
constructor(opts: __ExceptionOptionType<ServiceAlreadyExists, __BaseException>);
|
|
926
984
|
}
|
|
927
985
|
/**
|
|
986
|
+
* @public
|
|
928
987
|
* <p>The health check for the instance that's specified by <code>ServiceId</code> and
|
|
929
988
|
* <code>InstanceId</code> isn't a custom health check. </p>
|
|
930
989
|
*/
|
|
@@ -937,16 +996,25 @@ export declare class CustomHealthNotFound extends __BaseException {
|
|
|
937
996
|
*/
|
|
938
997
|
constructor(opts: __ExceptionOptionType<CustomHealthNotFound, __BaseException>);
|
|
939
998
|
}
|
|
999
|
+
/**
|
|
1000
|
+
* @public
|
|
1001
|
+
*/
|
|
940
1002
|
export declare enum CustomHealthStatus {
|
|
941
1003
|
HEALTHY = "HEALTHY",
|
|
942
1004
|
UNHEALTHY = "UNHEALTHY"
|
|
943
1005
|
}
|
|
1006
|
+
/**
|
|
1007
|
+
* @public
|
|
1008
|
+
*/
|
|
944
1009
|
export interface DeleteNamespaceRequest {
|
|
945
1010
|
/**
|
|
946
1011
|
* <p>The ID of the namespace that you want to delete.</p>
|
|
947
1012
|
*/
|
|
948
1013
|
Id: string | undefined;
|
|
949
1014
|
}
|
|
1015
|
+
/**
|
|
1016
|
+
* @public
|
|
1017
|
+
*/
|
|
950
1018
|
export interface DeleteNamespaceResponse {
|
|
951
1019
|
/**
|
|
952
1020
|
* <p>A value that you can use to determine whether the request completed successfully.
|
|
@@ -955,6 +1023,7 @@ export interface DeleteNamespaceResponse {
|
|
|
955
1023
|
OperationId?: string;
|
|
956
1024
|
}
|
|
957
1025
|
/**
|
|
1026
|
+
* @public
|
|
958
1027
|
* <p>The specified resource can't be deleted because it contains other resources. For example,
|
|
959
1028
|
* you can't delete a service that contains any instances.</p>
|
|
960
1029
|
*/
|
|
@@ -967,15 +1036,22 @@ export declare class ResourceInUse extends __BaseException {
|
|
|
967
1036
|
*/
|
|
968
1037
|
constructor(opts: __ExceptionOptionType<ResourceInUse, __BaseException>);
|
|
969
1038
|
}
|
|
1039
|
+
/**
|
|
1040
|
+
* @public
|
|
1041
|
+
*/
|
|
970
1042
|
export interface DeleteServiceRequest {
|
|
971
1043
|
/**
|
|
972
1044
|
* <p>The ID of the service that you want to delete.</p>
|
|
973
1045
|
*/
|
|
974
1046
|
Id: string | undefined;
|
|
975
1047
|
}
|
|
1048
|
+
/**
|
|
1049
|
+
* @public
|
|
1050
|
+
*/
|
|
976
1051
|
export interface DeleteServiceResponse {
|
|
977
1052
|
}
|
|
978
1053
|
/**
|
|
1054
|
+
* @public
|
|
979
1055
|
* <p>No service exists with the specified ID.</p>
|
|
980
1056
|
*/
|
|
981
1057
|
export declare class ServiceNotFound extends __BaseException {
|
|
@@ -987,6 +1063,9 @@ export declare class ServiceNotFound extends __BaseException {
|
|
|
987
1063
|
*/
|
|
988
1064
|
constructor(opts: __ExceptionOptionType<ServiceNotFound, __BaseException>);
|
|
989
1065
|
}
|
|
1066
|
+
/**
|
|
1067
|
+
* @public
|
|
1068
|
+
*/
|
|
990
1069
|
export interface DeregisterInstanceRequest {
|
|
991
1070
|
/**
|
|
992
1071
|
* <p>The ID of the service that the instance is associated with.</p>
|
|
@@ -997,6 +1076,9 @@ export interface DeregisterInstanceRequest {
|
|
|
997
1076
|
*/
|
|
998
1077
|
InstanceId: string | undefined;
|
|
999
1078
|
}
|
|
1079
|
+
/**
|
|
1080
|
+
* @public
|
|
1081
|
+
*/
|
|
1000
1082
|
export interface DeregisterInstanceResponse {
|
|
1001
1083
|
/**
|
|
1002
1084
|
* <p>A value that you can use to determine whether the request completed successfully.
|
|
@@ -1005,6 +1087,7 @@ export interface DeregisterInstanceResponse {
|
|
|
1005
1087
|
OperationId?: string;
|
|
1006
1088
|
}
|
|
1007
1089
|
/**
|
|
1090
|
+
* @public
|
|
1008
1091
|
* <p>No instance exists with the specified ID, or the instance was recently registered, and
|
|
1009
1092
|
* information about the instance hasn't propagated yet.</p>
|
|
1010
1093
|
*/
|
|
@@ -1017,12 +1100,18 @@ export declare class InstanceNotFound extends __BaseException {
|
|
|
1017
1100
|
*/
|
|
1018
1101
|
constructor(opts: __ExceptionOptionType<InstanceNotFound, __BaseException>);
|
|
1019
1102
|
}
|
|
1103
|
+
/**
|
|
1104
|
+
* @public
|
|
1105
|
+
*/
|
|
1020
1106
|
export declare enum HealthStatusFilter {
|
|
1021
1107
|
ALL = "ALL",
|
|
1022
1108
|
HEALTHY = "HEALTHY",
|
|
1023
1109
|
HEALTHY_OR_ELSE_ALL = "HEALTHY_OR_ELSE_ALL",
|
|
1024
1110
|
UNHEALTHY = "UNHEALTHY"
|
|
1025
1111
|
}
|
|
1112
|
+
/**
|
|
1113
|
+
* @public
|
|
1114
|
+
*/
|
|
1026
1115
|
export interface DiscoverInstancesRequest {
|
|
1027
1116
|
/**
|
|
1028
1117
|
* <p>The <code>HttpName</code> name of the namespace. It's found in the
|
|
@@ -1042,7 +1131,7 @@ export interface DiscoverInstancesRequest {
|
|
|
1042
1131
|
MaxResults?: number;
|
|
1043
1132
|
/**
|
|
1044
1133
|
* <p>Filters to scope the results based on custom attributes for the instance (for example,
|
|
1045
|
-
* <code
|
|
1134
|
+
* <code>\{version=v1, az=1a\}</code>). Only instances that match all the specified key-value pairs
|
|
1046
1135
|
* are returned.</p>
|
|
1047
1136
|
*/
|
|
1048
1137
|
QueryParameters?: Record<string, string>;
|
|
@@ -1081,12 +1170,16 @@ export interface DiscoverInstancesRequest {
|
|
|
1081
1170
|
*/
|
|
1082
1171
|
HealthStatus?: HealthStatusFilter | string;
|
|
1083
1172
|
}
|
|
1173
|
+
/**
|
|
1174
|
+
* @public
|
|
1175
|
+
*/
|
|
1084
1176
|
export declare enum HealthStatus {
|
|
1085
1177
|
HEALTHY = "HEALTHY",
|
|
1086
1178
|
UNHEALTHY = "UNHEALTHY",
|
|
1087
1179
|
UNKNOWN = "UNKNOWN"
|
|
1088
1180
|
}
|
|
1089
1181
|
/**
|
|
1182
|
+
* @public
|
|
1090
1183
|
* <p>In a response to a <a href="https://docs.aws.amazon.com/cloud-map/latest/api/API_DiscoverInstances.html">DiscoverInstances</a> request,
|
|
1091
1184
|
* <code>HttpInstanceSummary</code> contains information about one instance that matches the values
|
|
1092
1185
|
* that you specified in the request.</p>
|
|
@@ -1122,6 +1215,9 @@ export interface HttpInstanceSummary {
|
|
|
1122
1215
|
*/
|
|
1123
1216
|
Attributes?: Record<string, string>;
|
|
1124
1217
|
}
|
|
1218
|
+
/**
|
|
1219
|
+
* @public
|
|
1220
|
+
*/
|
|
1125
1221
|
export interface DiscoverInstancesResponse {
|
|
1126
1222
|
/**
|
|
1127
1223
|
* <p>A complex type that contains one <code>HttpInstanceSummary</code> for each registered
|
|
@@ -1130,6 +1226,7 @@ export interface DiscoverInstancesResponse {
|
|
|
1130
1226
|
Instances?: HttpInstanceSummary[];
|
|
1131
1227
|
}
|
|
1132
1228
|
/**
|
|
1229
|
+
* @public
|
|
1133
1230
|
* <p>A complex type that contains information about changes to the Route 53 DNS records that
|
|
1134
1231
|
* Cloud Map creates when you register an instance.</p>
|
|
1135
1232
|
*/
|
|
@@ -1141,6 +1238,7 @@ export interface DnsConfigChange {
|
|
|
1141
1238
|
DnsRecords: DnsRecord[] | undefined;
|
|
1142
1239
|
}
|
|
1143
1240
|
/**
|
|
1241
|
+
* @public
|
|
1144
1242
|
* <p>A complex type that contains the ID for the Route 53 hosted zone that Cloud Map creates when
|
|
1145
1243
|
* you create a namespace.</p>
|
|
1146
1244
|
*/
|
|
@@ -1154,12 +1252,18 @@ export interface DnsProperties {
|
|
|
1154
1252
|
*/
|
|
1155
1253
|
SOA?: SOA;
|
|
1156
1254
|
}
|
|
1255
|
+
/**
|
|
1256
|
+
* @public
|
|
1257
|
+
*/
|
|
1157
1258
|
export declare enum FilterCondition {
|
|
1158
1259
|
BEGINS_WITH = "BEGINS_WITH",
|
|
1159
1260
|
BETWEEN = "BETWEEN",
|
|
1160
1261
|
EQ = "EQ",
|
|
1161
1262
|
IN = "IN"
|
|
1162
1263
|
}
|
|
1264
|
+
/**
|
|
1265
|
+
* @public
|
|
1266
|
+
*/
|
|
1163
1267
|
export interface GetInstanceRequest {
|
|
1164
1268
|
/**
|
|
1165
1269
|
* <p>The ID of the service that the instance is associated with.</p>
|
|
@@ -1171,6 +1275,7 @@ export interface GetInstanceRequest {
|
|
|
1171
1275
|
InstanceId: string | undefined;
|
|
1172
1276
|
}
|
|
1173
1277
|
/**
|
|
1278
|
+
* @public
|
|
1174
1279
|
* <p>A complex type that contains information about an instance that Cloud Map creates when you
|
|
1175
1280
|
* submit a <code>RegisterInstance</code> request.</p>
|
|
1176
1281
|
*/
|
|
@@ -1312,12 +1417,18 @@ export interface Instance {
|
|
|
1312
1417
|
*/
|
|
1313
1418
|
Attributes?: Record<string, string>;
|
|
1314
1419
|
}
|
|
1420
|
+
/**
|
|
1421
|
+
* @public
|
|
1422
|
+
*/
|
|
1315
1423
|
export interface GetInstanceResponse {
|
|
1316
1424
|
/**
|
|
1317
1425
|
* <p>A complex type that contains information about a specified instance.</p>
|
|
1318
1426
|
*/
|
|
1319
1427
|
Instance?: Instance;
|
|
1320
1428
|
}
|
|
1429
|
+
/**
|
|
1430
|
+
* @public
|
|
1431
|
+
*/
|
|
1321
1432
|
export interface GetInstancesHealthStatusRequest {
|
|
1322
1433
|
/**
|
|
1323
1434
|
* <p>The ID of the service that the instance is associated with.</p>
|
|
@@ -1348,6 +1459,9 @@ export interface GetInstancesHealthStatusRequest {
|
|
|
1348
1459
|
*/
|
|
1349
1460
|
NextToken?: string;
|
|
1350
1461
|
}
|
|
1462
|
+
/**
|
|
1463
|
+
* @public
|
|
1464
|
+
*/
|
|
1351
1465
|
export interface GetInstancesHealthStatusResponse {
|
|
1352
1466
|
/**
|
|
1353
1467
|
* <p>A complex type that contains the IDs and the health status of the instances that you
|
|
@@ -1361,6 +1475,9 @@ export interface GetInstancesHealthStatusResponse {
|
|
|
1361
1475
|
*/
|
|
1362
1476
|
NextToken?: string;
|
|
1363
1477
|
}
|
|
1478
|
+
/**
|
|
1479
|
+
* @public
|
|
1480
|
+
*/
|
|
1364
1481
|
export interface GetNamespaceRequest {
|
|
1365
1482
|
/**
|
|
1366
1483
|
* <p>The ID of the namespace that you want to get information about.</p>
|
|
@@ -1368,6 +1485,7 @@ export interface GetNamespaceRequest {
|
|
|
1368
1485
|
Id: string | undefined;
|
|
1369
1486
|
}
|
|
1370
1487
|
/**
|
|
1488
|
+
* @public
|
|
1371
1489
|
* <p>A complex type that contains the name of an HTTP namespace.</p>
|
|
1372
1490
|
*/
|
|
1373
1491
|
export interface HttpProperties {
|
|
@@ -1377,6 +1495,7 @@ export interface HttpProperties {
|
|
|
1377
1495
|
HttpName?: string;
|
|
1378
1496
|
}
|
|
1379
1497
|
/**
|
|
1498
|
+
* @public
|
|
1380
1499
|
* <p>A complex type that contains information that's specific to the namespace type.</p>
|
|
1381
1500
|
*/
|
|
1382
1501
|
export interface NamespaceProperties {
|
|
@@ -1390,12 +1509,16 @@ export interface NamespaceProperties {
|
|
|
1390
1509
|
*/
|
|
1391
1510
|
HttpProperties?: HttpProperties;
|
|
1392
1511
|
}
|
|
1512
|
+
/**
|
|
1513
|
+
* @public
|
|
1514
|
+
*/
|
|
1393
1515
|
export declare enum NamespaceType {
|
|
1394
1516
|
DNS_PRIVATE = "DNS_PRIVATE",
|
|
1395
1517
|
DNS_PUBLIC = "DNS_PUBLIC",
|
|
1396
1518
|
HTTP = "HTTP"
|
|
1397
1519
|
}
|
|
1398
1520
|
/**
|
|
1521
|
+
* @public
|
|
1399
1522
|
* <p>A complex type that contains information about a specified namespace.</p>
|
|
1400
1523
|
*/
|
|
1401
1524
|
export interface Namespace {
|
|
@@ -1458,29 +1581,44 @@ export interface Namespace {
|
|
|
1458
1581
|
*/
|
|
1459
1582
|
CreatorRequestId?: string;
|
|
1460
1583
|
}
|
|
1584
|
+
/**
|
|
1585
|
+
* @public
|
|
1586
|
+
*/
|
|
1461
1587
|
export interface GetNamespaceResponse {
|
|
1462
1588
|
/**
|
|
1463
1589
|
* <p>A complex type that contains information about the specified namespace.</p>
|
|
1464
1590
|
*/
|
|
1465
1591
|
Namespace?: Namespace;
|
|
1466
1592
|
}
|
|
1593
|
+
/**
|
|
1594
|
+
* @public
|
|
1595
|
+
*/
|
|
1467
1596
|
export interface GetOperationRequest {
|
|
1468
1597
|
/**
|
|
1469
1598
|
* <p>The ID of the operation that you want to get more information about.</p>
|
|
1470
1599
|
*/
|
|
1471
1600
|
OperationId: string | undefined;
|
|
1472
1601
|
}
|
|
1602
|
+
/**
|
|
1603
|
+
* @public
|
|
1604
|
+
*/
|
|
1473
1605
|
export declare enum OperationStatus {
|
|
1474
1606
|
FAIL = "FAIL",
|
|
1475
1607
|
PENDING = "PENDING",
|
|
1476
1608
|
SUBMITTED = "SUBMITTED",
|
|
1477
1609
|
SUCCESS = "SUCCESS"
|
|
1478
1610
|
}
|
|
1611
|
+
/**
|
|
1612
|
+
* @public
|
|
1613
|
+
*/
|
|
1479
1614
|
export declare enum OperationTargetType {
|
|
1480
1615
|
INSTANCE = "INSTANCE",
|
|
1481
1616
|
NAMESPACE = "NAMESPACE",
|
|
1482
1617
|
SERVICE = "SERVICE"
|
|
1483
1618
|
}
|
|
1619
|
+
/**
|
|
1620
|
+
* @public
|
|
1621
|
+
*/
|
|
1484
1622
|
export declare enum OperationType {
|
|
1485
1623
|
CREATE_NAMESPACE = "CREATE_NAMESPACE",
|
|
1486
1624
|
DELETE_NAMESPACE = "DELETE_NAMESPACE",
|
|
@@ -1490,6 +1628,7 @@ export declare enum OperationType {
|
|
|
1490
1628
|
UPDATE_SERVICE = "UPDATE_SERVICE"
|
|
1491
1629
|
}
|
|
1492
1630
|
/**
|
|
1631
|
+
* @public
|
|
1493
1632
|
* <p>A complex type that contains information about a specified operation.</p>
|
|
1494
1633
|
*/
|
|
1495
1634
|
export interface Operation {
|
|
@@ -1603,6 +1742,9 @@ export interface Operation {
|
|
|
1603
1742
|
*/
|
|
1604
1743
|
Targets?: Record<string, string>;
|
|
1605
1744
|
}
|
|
1745
|
+
/**
|
|
1746
|
+
* @public
|
|
1747
|
+
*/
|
|
1606
1748
|
export interface GetOperationResponse {
|
|
1607
1749
|
/**
|
|
1608
1750
|
* <p>A complex type that contains information about the operation.</p>
|
|
@@ -1610,6 +1752,7 @@ export interface GetOperationResponse {
|
|
|
1610
1752
|
Operation?: Operation;
|
|
1611
1753
|
}
|
|
1612
1754
|
/**
|
|
1755
|
+
* @public
|
|
1613
1756
|
* <p>No operation exists with the specified ID.</p>
|
|
1614
1757
|
*/
|
|
1615
1758
|
export declare class OperationNotFound extends __BaseException {
|
|
@@ -1621,12 +1764,18 @@ export declare class OperationNotFound extends __BaseException {
|
|
|
1621
1764
|
*/
|
|
1622
1765
|
constructor(opts: __ExceptionOptionType<OperationNotFound, __BaseException>);
|
|
1623
1766
|
}
|
|
1767
|
+
/**
|
|
1768
|
+
* @public
|
|
1769
|
+
*/
|
|
1624
1770
|
export interface GetServiceRequest {
|
|
1625
1771
|
/**
|
|
1626
1772
|
* <p>The ID of the service that you want to get settings for.</p>
|
|
1627
1773
|
*/
|
|
1628
1774
|
Id: string | undefined;
|
|
1629
1775
|
}
|
|
1776
|
+
/**
|
|
1777
|
+
* @public
|
|
1778
|
+
*/
|
|
1630
1779
|
export interface GetServiceResponse {
|
|
1631
1780
|
/**
|
|
1632
1781
|
* <p>A complex type that contains information about the service.</p>
|
|
@@ -1634,6 +1783,7 @@ export interface GetServiceResponse {
|
|
|
1634
1783
|
Service?: Service;
|
|
1635
1784
|
}
|
|
1636
1785
|
/**
|
|
1786
|
+
* @public
|
|
1637
1787
|
* <p>Updated properties
|
|
1638
1788
|
* for the HTTP namespace.</p>
|
|
1639
1789
|
*/
|
|
@@ -1645,6 +1795,7 @@ export interface HttpNamespaceChange {
|
|
|
1645
1795
|
Description: string | undefined;
|
|
1646
1796
|
}
|
|
1647
1797
|
/**
|
|
1798
|
+
* @public
|
|
1648
1799
|
* <p>A complex type that contains information about the instances that you registered by using a
|
|
1649
1800
|
* specified service.</p>
|
|
1650
1801
|
*/
|
|
@@ -1708,6 +1859,9 @@ export interface InstanceSummary {
|
|
|
1708
1859
|
*/
|
|
1709
1860
|
Attributes?: Record<string, string>;
|
|
1710
1861
|
}
|
|
1862
|
+
/**
|
|
1863
|
+
* @public
|
|
1864
|
+
*/
|
|
1711
1865
|
export interface ListInstancesRequest {
|
|
1712
1866
|
/**
|
|
1713
1867
|
* <p>The ID of the service that you want to list instances for.</p>
|
|
@@ -1727,6 +1881,9 @@ export interface ListInstancesRequest {
|
|
|
1727
1881
|
*/
|
|
1728
1882
|
MaxResults?: number;
|
|
1729
1883
|
}
|
|
1884
|
+
/**
|
|
1885
|
+
* @public
|
|
1886
|
+
*/
|
|
1730
1887
|
export interface ListInstancesResponse {
|
|
1731
1888
|
/**
|
|
1732
1889
|
* <p>Summary information about the instances that are associated with the specified
|
|
@@ -1740,12 +1897,16 @@ export interface ListInstancesResponse {
|
|
|
1740
1897
|
*/
|
|
1741
1898
|
NextToken?: string;
|
|
1742
1899
|
}
|
|
1900
|
+
/**
|
|
1901
|
+
* @public
|
|
1902
|
+
*/
|
|
1743
1903
|
export declare enum NamespaceFilterName {
|
|
1744
1904
|
HTTP_NAME = "HTTP_NAME",
|
|
1745
1905
|
NAME = "NAME",
|
|
1746
1906
|
TYPE = "TYPE"
|
|
1747
1907
|
}
|
|
1748
1908
|
/**
|
|
1909
|
+
* @public
|
|
1749
1910
|
* <p>A complex type that identifies the namespaces that you want to list. You can choose to list
|
|
1750
1911
|
* public or private namespaces.</p>
|
|
1751
1912
|
*/
|
|
@@ -1811,6 +1972,9 @@ export interface NamespaceFilter {
|
|
|
1811
1972
|
*/
|
|
1812
1973
|
Condition?: FilterCondition | string;
|
|
1813
1974
|
}
|
|
1975
|
+
/**
|
|
1976
|
+
* @public
|
|
1977
|
+
*/
|
|
1814
1978
|
export interface ListNamespacesRequest {
|
|
1815
1979
|
/**
|
|
1816
1980
|
* <p>For the first <code>ListNamespaces</code> request, omit this value.</p>
|
|
@@ -1839,6 +2003,7 @@ export interface ListNamespacesRequest {
|
|
|
1839
2003
|
Filters?: NamespaceFilter[];
|
|
1840
2004
|
}
|
|
1841
2005
|
/**
|
|
2006
|
+
* @public
|
|
1842
2007
|
* <p>A complex type that contains information about a namespace.</p>
|
|
1843
2008
|
*/
|
|
1844
2009
|
export interface NamespaceSummary {
|
|
@@ -1876,6 +2041,9 @@ export interface NamespaceSummary {
|
|
|
1876
2041
|
*/
|
|
1877
2042
|
CreateDate?: Date;
|
|
1878
2043
|
}
|
|
2044
|
+
/**
|
|
2045
|
+
* @public
|
|
2046
|
+
*/
|
|
1879
2047
|
export interface ListNamespacesResponse {
|
|
1880
2048
|
/**
|
|
1881
2049
|
* <p>An array that contains one <code>NamespaceSummary</code> object for each namespace that
|
|
@@ -1895,6 +2063,9 @@ export interface ListNamespacesResponse {
|
|
|
1895
2063
|
*/
|
|
1896
2064
|
NextToken?: string;
|
|
1897
2065
|
}
|
|
2066
|
+
/**
|
|
2067
|
+
* @public
|
|
2068
|
+
*/
|
|
1898
2069
|
export declare enum OperationFilterName {
|
|
1899
2070
|
NAMESPACE_ID = "NAMESPACE_ID",
|
|
1900
2071
|
SERVICE_ID = "SERVICE_ID",
|
|
@@ -1903,6 +2074,7 @@ export declare enum OperationFilterName {
|
|
|
1903
2074
|
UPDATE_DATE = "UPDATE_DATE"
|
|
1904
2075
|
}
|
|
1905
2076
|
/**
|
|
2077
|
+
* @public
|
|
1906
2078
|
* <p>A complex type that lets you select the operations that you want to list.</p>
|
|
1907
2079
|
*/
|
|
1908
2080
|
export interface OperationFilter {
|
|
@@ -1997,6 +2169,9 @@ export interface OperationFilter {
|
|
|
1997
2169
|
*/
|
|
1998
2170
|
Condition?: FilterCondition | string;
|
|
1999
2171
|
}
|
|
2172
|
+
/**
|
|
2173
|
+
* @public
|
|
2174
|
+
*/
|
|
2000
2175
|
export interface ListOperationsRequest {
|
|
2001
2176
|
/**
|
|
2002
2177
|
* <p>For the first <code>ListOperations</code> request, omit this value.</p>
|
|
@@ -2026,6 +2201,7 @@ export interface ListOperationsRequest {
|
|
|
2026
2201
|
Filters?: OperationFilter[];
|
|
2027
2202
|
}
|
|
2028
2203
|
/**
|
|
2204
|
+
* @public
|
|
2029
2205
|
* <p>A complex type that contains information about an operation that matches the criteria that
|
|
2030
2206
|
* you specified in a <a href="https://docs.aws.amazon.com/cloud-map/latest/api/API_ListOperations.html">ListOperations</a> request.</p>
|
|
2031
2207
|
*/
|
|
@@ -2059,6 +2235,9 @@ export interface OperationSummary {
|
|
|
2059
2235
|
*/
|
|
2060
2236
|
Status?: OperationStatus | string;
|
|
2061
2237
|
}
|
|
2238
|
+
/**
|
|
2239
|
+
* @public
|
|
2240
|
+
*/
|
|
2062
2241
|
export interface ListOperationsResponse {
|
|
2063
2242
|
/**
|
|
2064
2243
|
* <p>Summary information about the operations that match the specified criteria.</p>
|
|
@@ -2077,10 +2256,14 @@ export interface ListOperationsResponse {
|
|
|
2077
2256
|
*/
|
|
2078
2257
|
NextToken?: string;
|
|
2079
2258
|
}
|
|
2259
|
+
/**
|
|
2260
|
+
* @public
|
|
2261
|
+
*/
|
|
2080
2262
|
export declare enum ServiceFilterName {
|
|
2081
2263
|
NAMESPACE_ID = "NAMESPACE_ID"
|
|
2082
2264
|
}
|
|
2083
2265
|
/**
|
|
2266
|
+
* @public
|
|
2084
2267
|
* <p>A complex type that lets you specify the namespaces that you want to list services
|
|
2085
2268
|
* for.</p>
|
|
2086
2269
|
*/
|
|
@@ -2107,6 +2290,9 @@ export interface ServiceFilter {
|
|
|
2107
2290
|
*/
|
|
2108
2291
|
Condition?: FilterCondition | string;
|
|
2109
2292
|
}
|
|
2293
|
+
/**
|
|
2294
|
+
* @public
|
|
2295
|
+
*/
|
|
2110
2296
|
export interface ListServicesRequest {
|
|
2111
2297
|
/**
|
|
2112
2298
|
* <p>For the first <code>ListServices</code> request, omit this value.</p>
|
|
@@ -2136,6 +2322,7 @@ export interface ListServicesRequest {
|
|
|
2136
2322
|
Filters?: ServiceFilter[];
|
|
2137
2323
|
}
|
|
2138
2324
|
/**
|
|
2325
|
+
* @public
|
|
2139
2326
|
* <p>A complex type that contains information about a specified service.</p>
|
|
2140
2327
|
*/
|
|
2141
2328
|
export interface ServiceSummary {
|
|
@@ -2220,6 +2407,9 @@ export interface ServiceSummary {
|
|
|
2220
2407
|
*/
|
|
2221
2408
|
CreateDate?: Date;
|
|
2222
2409
|
}
|
|
2410
|
+
/**
|
|
2411
|
+
* @public
|
|
2412
|
+
*/
|
|
2223
2413
|
export interface ListServicesResponse {
|
|
2224
2414
|
/**
|
|
2225
2415
|
* <p>An array that contains one <code>ServiceSummary</code> object for each service that matches
|
|
@@ -2239,12 +2429,18 @@ export interface ListServicesResponse {
|
|
|
2239
2429
|
*/
|
|
2240
2430
|
NextToken?: string;
|
|
2241
2431
|
}
|
|
2432
|
+
/**
|
|
2433
|
+
* @public
|
|
2434
|
+
*/
|
|
2242
2435
|
export interface ListTagsForResourceRequest {
|
|
2243
2436
|
/**
|
|
2244
2437
|
* <p>The Amazon Resource Name (ARN) of the resource that you want to retrieve tags for.</p>
|
|
2245
2438
|
*/
|
|
2246
2439
|
ResourceARN: string | undefined;
|
|
2247
2440
|
}
|
|
2441
|
+
/**
|
|
2442
|
+
* @public
|
|
2443
|
+
*/
|
|
2248
2444
|
export interface ListTagsForResourceResponse {
|
|
2249
2445
|
/**
|
|
2250
2446
|
* <p>The tags that are assigned to the resource.</p>
|
|
@@ -2252,6 +2448,7 @@ export interface ListTagsForResourceResponse {
|
|
|
2252
2448
|
Tags?: Tag[];
|
|
2253
2449
|
}
|
|
2254
2450
|
/**
|
|
2451
|
+
* @public
|
|
2255
2452
|
* <p>The operation can't be completed because the resource was not found.</p>
|
|
2256
2453
|
*/
|
|
2257
2454
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -2264,6 +2461,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
2264
2461
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
2265
2462
|
}
|
|
2266
2463
|
/**
|
|
2464
|
+
* @public
|
|
2267
2465
|
* <p>Updated Start of
|
|
2268
2466
|
* Authority (SOA) properties for a public or private DNS namespace.</p>
|
|
2269
2467
|
*/
|
|
@@ -2275,6 +2473,7 @@ export interface SOAChange {
|
|
|
2275
2473
|
TTL: number | undefined;
|
|
2276
2474
|
}
|
|
2277
2475
|
/**
|
|
2476
|
+
* @public
|
|
2278
2477
|
* <p>Updated DNS
|
|
2279
2478
|
* properties for the private DNS namespace.</p>
|
|
2280
2479
|
*/
|
|
@@ -2287,6 +2486,7 @@ export interface PrivateDnsPropertiesMutableChange {
|
|
|
2287
2486
|
SOA: SOAChange | undefined;
|
|
2288
2487
|
}
|
|
2289
2488
|
/**
|
|
2489
|
+
* @public
|
|
2290
2490
|
* <p>Updated properties
|
|
2291
2491
|
* for the private DNS namespace.</p>
|
|
2292
2492
|
*/
|
|
@@ -2298,6 +2498,7 @@ export interface PrivateDnsNamespacePropertiesChange {
|
|
|
2298
2498
|
DnsProperties: PrivateDnsPropertiesMutableChange | undefined;
|
|
2299
2499
|
}
|
|
2300
2500
|
/**
|
|
2501
|
+
* @public
|
|
2301
2502
|
* <p>Updated properties
|
|
2302
2503
|
* for the private DNS namespace.</p>
|
|
2303
2504
|
*/
|
|
@@ -2314,6 +2515,7 @@ export interface PrivateDnsNamespaceChange {
|
|
|
2314
2515
|
Properties?: PrivateDnsNamespacePropertiesChange;
|
|
2315
2516
|
}
|
|
2316
2517
|
/**
|
|
2518
|
+
* @public
|
|
2317
2519
|
* <p>Updated DNS
|
|
2318
2520
|
* properties for the public DNS namespace.</p>
|
|
2319
2521
|
*/
|
|
@@ -2326,6 +2528,7 @@ export interface PublicDnsPropertiesMutableChange {
|
|
|
2326
2528
|
SOA: SOAChange | undefined;
|
|
2327
2529
|
}
|
|
2328
2530
|
/**
|
|
2531
|
+
* @public
|
|
2329
2532
|
* <p>Updated properties
|
|
2330
2533
|
* for the public DNS namespace.</p>
|
|
2331
2534
|
*/
|
|
@@ -2337,6 +2540,7 @@ export interface PublicDnsNamespacePropertiesChange {
|
|
|
2337
2540
|
DnsProperties: PublicDnsPropertiesMutableChange | undefined;
|
|
2338
2541
|
}
|
|
2339
2542
|
/**
|
|
2543
|
+
* @public
|
|
2340
2544
|
* <p>Updated properties
|
|
2341
2545
|
* for the public DNS namespace.</p>
|
|
2342
2546
|
*/
|
|
@@ -2352,6 +2556,9 @@ export interface PublicDnsNamespaceChange {
|
|
|
2352
2556
|
*/
|
|
2353
2557
|
Properties?: PublicDnsNamespacePropertiesChange;
|
|
2354
2558
|
}
|
|
2559
|
+
/**
|
|
2560
|
+
* @public
|
|
2561
|
+
*/
|
|
2355
2562
|
export interface RegisterInstanceRequest {
|
|
2356
2563
|
/**
|
|
2357
2564
|
* <p>The ID of the service that you want to use for settings for the instance.</p>
|
|
@@ -2510,6 +2717,9 @@ export interface RegisterInstanceRequest {
|
|
|
2510
2717
|
*/
|
|
2511
2718
|
Attributes: Record<string, string> | undefined;
|
|
2512
2719
|
}
|
|
2720
|
+
/**
|
|
2721
|
+
* @public
|
|
2722
|
+
*/
|
|
2513
2723
|
export interface RegisterInstanceResponse {
|
|
2514
2724
|
/**
|
|
2515
2725
|
* <p>A value that you can use to determine whether the request completed successfully.
|
|
@@ -2517,6 +2727,9 @@ export interface RegisterInstanceResponse {
|
|
|
2517
2727
|
*/
|
|
2518
2728
|
OperationId?: string;
|
|
2519
2729
|
}
|
|
2730
|
+
/**
|
|
2731
|
+
* @public
|
|
2732
|
+
*/
|
|
2520
2733
|
export interface TagResourceRequest {
|
|
2521
2734
|
/**
|
|
2522
2735
|
* <p>The Amazon Resource Name (ARN) of the resource that you want to retrieve tags for.</p>
|
|
@@ -2528,8 +2741,14 @@ export interface TagResourceRequest {
|
|
|
2528
2741
|
*/
|
|
2529
2742
|
Tags: Tag[] | undefined;
|
|
2530
2743
|
}
|
|
2744
|
+
/**
|
|
2745
|
+
* @public
|
|
2746
|
+
*/
|
|
2531
2747
|
export interface TagResourceResponse {
|
|
2532
2748
|
}
|
|
2749
|
+
/**
|
|
2750
|
+
* @public
|
|
2751
|
+
*/
|
|
2533
2752
|
export interface UntagResourceRequest {
|
|
2534
2753
|
/**
|
|
2535
2754
|
* <p>The Amazon Resource Name (ARN) of the resource that you want to retrieve tags for.</p>
|
|
@@ -2540,8 +2759,14 @@ export interface UntagResourceRequest {
|
|
|
2540
2759
|
*/
|
|
2541
2760
|
TagKeys: string[] | undefined;
|
|
2542
2761
|
}
|
|
2762
|
+
/**
|
|
2763
|
+
* @public
|
|
2764
|
+
*/
|
|
2543
2765
|
export interface UntagResourceResponse {
|
|
2544
2766
|
}
|
|
2767
|
+
/**
|
|
2768
|
+
* @public
|
|
2769
|
+
*/
|
|
2545
2770
|
export interface UpdateHttpNamespaceRequest {
|
|
2546
2771
|
/**
|
|
2547
2772
|
* <p>The ID of the
|
|
@@ -2561,6 +2786,9 @@ export interface UpdateHttpNamespaceRequest {
|
|
|
2561
2786
|
*/
|
|
2562
2787
|
Namespace: HttpNamespaceChange | undefined;
|
|
2563
2788
|
}
|
|
2789
|
+
/**
|
|
2790
|
+
* @public
|
|
2791
|
+
*/
|
|
2564
2792
|
export interface UpdateHttpNamespaceResponse {
|
|
2565
2793
|
/**
|
|
2566
2794
|
* <p>A value that you can use to determine whether the request completed successfully.
|
|
@@ -2568,6 +2796,9 @@ export interface UpdateHttpNamespaceResponse {
|
|
|
2568
2796
|
*/
|
|
2569
2797
|
OperationId?: string;
|
|
2570
2798
|
}
|
|
2799
|
+
/**
|
|
2800
|
+
* @public
|
|
2801
|
+
*/
|
|
2571
2802
|
export interface UpdateInstanceCustomHealthStatusRequest {
|
|
2572
2803
|
/**
|
|
2573
2804
|
* <p>The ID of the service that includes the configuration for the custom health check that you
|
|
@@ -2583,6 +2814,9 @@ export interface UpdateInstanceCustomHealthStatusRequest {
|
|
|
2583
2814
|
*/
|
|
2584
2815
|
Status: CustomHealthStatus | string | undefined;
|
|
2585
2816
|
}
|
|
2817
|
+
/**
|
|
2818
|
+
* @public
|
|
2819
|
+
*/
|
|
2586
2820
|
export interface UpdatePrivateDnsNamespaceRequest {
|
|
2587
2821
|
/**
|
|
2588
2822
|
* <p>The ID of the
|
|
@@ -2602,6 +2836,9 @@ export interface UpdatePrivateDnsNamespaceRequest {
|
|
|
2602
2836
|
*/
|
|
2603
2837
|
Namespace: PrivateDnsNamespaceChange | undefined;
|
|
2604
2838
|
}
|
|
2839
|
+
/**
|
|
2840
|
+
* @public
|
|
2841
|
+
*/
|
|
2605
2842
|
export interface UpdatePrivateDnsNamespaceResponse {
|
|
2606
2843
|
/**
|
|
2607
2844
|
* <p>A value that you can use to determine whether the request completed successfully.
|
|
@@ -2609,6 +2846,9 @@ export interface UpdatePrivateDnsNamespaceResponse {
|
|
|
2609
2846
|
*/
|
|
2610
2847
|
OperationId?: string;
|
|
2611
2848
|
}
|
|
2849
|
+
/**
|
|
2850
|
+
* @public
|
|
2851
|
+
*/
|
|
2612
2852
|
export interface UpdatePublicDnsNamespaceRequest {
|
|
2613
2853
|
/**
|
|
2614
2854
|
* <p>The ID of the
|
|
@@ -2628,6 +2868,9 @@ export interface UpdatePublicDnsNamespaceRequest {
|
|
|
2628
2868
|
*/
|
|
2629
2869
|
Namespace: PublicDnsNamespaceChange | undefined;
|
|
2630
2870
|
}
|
|
2871
|
+
/**
|
|
2872
|
+
* @public
|
|
2873
|
+
*/
|
|
2631
2874
|
export interface UpdatePublicDnsNamespaceResponse {
|
|
2632
2875
|
/**
|
|
2633
2876
|
* <p>A value that you can use to determine whether the request completed successfully.
|
|
@@ -2636,6 +2879,7 @@ export interface UpdatePublicDnsNamespaceResponse {
|
|
|
2636
2879
|
OperationId?: string;
|
|
2637
2880
|
}
|
|
2638
2881
|
/**
|
|
2882
|
+
* @public
|
|
2639
2883
|
* <p>A complex type that contains changes to an existing service.</p>
|
|
2640
2884
|
*/
|
|
2641
2885
|
export interface ServiceChange {
|
|
@@ -2656,6 +2900,9 @@ export interface ServiceChange {
|
|
|
2656
2900
|
*/
|
|
2657
2901
|
HealthCheckConfig?: HealthCheckConfig;
|
|
2658
2902
|
}
|
|
2903
|
+
/**
|
|
2904
|
+
* @public
|
|
2905
|
+
*/
|
|
2659
2906
|
export interface UpdateServiceRequest {
|
|
2660
2907
|
/**
|
|
2661
2908
|
* <p>The ID of the service that you want to update.</p>
|
|
@@ -2666,6 +2913,9 @@ export interface UpdateServiceRequest {
|
|
|
2666
2913
|
*/
|
|
2667
2914
|
Service: ServiceChange | undefined;
|
|
2668
2915
|
}
|
|
2916
|
+
/**
|
|
2917
|
+
* @public
|
|
2918
|
+
*/
|
|
2669
2919
|
export interface UpdateServiceResponse {
|
|
2670
2920
|
/**
|
|
2671
2921
|
* <p>A value that you can use to determine whether the request completed successfully.
|