@aws-sdk/client-servicediscovery 3.533.0 → 3.535.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 +4 -1
- package/dist-types/ServiceDiscoveryClient.d.ts +1 -1
- package/dist-types/commands/CreateHttpNamespaceCommand.d.ts +2 -1
- package/dist-types/commands/CreatePrivateDnsNamespaceCommand.d.ts +2 -1
- package/dist-types/commands/CreatePublicDnsNamespaceCommand.d.ts +2 -1
- package/dist-types/commands/CreateServiceCommand.d.ts +2 -1
- package/dist-types/commands/DeleteNamespaceCommand.d.ts +2 -1
- package/dist-types/commands/DeleteServiceCommand.d.ts +2 -1
- package/dist-types/commands/DeregisterInstanceCommand.d.ts +2 -1
- package/dist-types/commands/DiscoverInstancesCommand.d.ts +2 -1
- package/dist-types/commands/DiscoverInstancesRevisionCommand.d.ts +2 -1
- package/dist-types/commands/GetInstanceCommand.d.ts +2 -1
- package/dist-types/commands/GetInstancesHealthStatusCommand.d.ts +2 -1
- package/dist-types/commands/GetNamespaceCommand.d.ts +2 -1
- package/dist-types/commands/GetOperationCommand.d.ts +2 -1
- package/dist-types/commands/GetServiceCommand.d.ts +2 -1
- package/dist-types/commands/ListInstancesCommand.d.ts +2 -1
- package/dist-types/commands/ListNamespacesCommand.d.ts +2 -1
- package/dist-types/commands/ListOperationsCommand.d.ts +2 -1
- package/dist-types/commands/ListServicesCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/RegisterInstanceCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateHttpNamespaceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateInstanceCustomHealthStatusCommand.d.ts +2 -1
- package/dist-types/commands/UpdatePrivateDnsNamespaceCommand.d.ts +2 -1
- package/dist-types/commands/UpdatePublicDnsNamespaceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateServiceCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +267 -267
- package/dist-types/ts3.4/ServiceDiscovery.d.ts +3 -0
- package/dist-types/ts3.4/commands/CreateHttpNamespaceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreatePrivateDnsNamespaceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreatePublicDnsNamespaceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteNamespaceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeregisterInstanceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DiscoverInstancesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DiscoverInstancesRevisionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetInstanceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetInstancesHealthStatusCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetNamespaceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetOperationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListInstancesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListNamespacesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListOperationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/RegisterInstanceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateHttpNamespaceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateInstanceCustomHealthStatusCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdatePrivateDnsNamespaceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdatePublicDnsNamespaceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +9 -0
- package/package.json +40 -40
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { ServiceDiscoveryServiceException as __BaseException } from "./ServiceDiscoveryServiceException";
|
|
3
3
|
/**
|
|
4
|
-
* @public
|
|
5
4
|
* <p>A custom key-value pair that's associated with a resource.</p>
|
|
5
|
+
* @public
|
|
6
6
|
*/
|
|
7
7
|
export interface Tag {
|
|
8
8
|
/**
|
|
9
|
-
* @public
|
|
10
9
|
* <p>The key identifier, or name, of the tag.</p>
|
|
10
|
+
* @public
|
|
11
11
|
*/
|
|
12
12
|
Key: string | undefined;
|
|
13
13
|
/**
|
|
14
|
-
* @public
|
|
15
14
|
* <p>The string value that's associated with the key of the tag. You can set the value of a tag
|
|
16
15
|
* to an empty string, but you can't set the value of a tag to null.</p>
|
|
16
|
+
* @public
|
|
17
17
|
*/
|
|
18
18
|
Value: string | undefined;
|
|
19
19
|
}
|
|
@@ -22,28 +22,28 @@ export interface Tag {
|
|
|
22
22
|
*/
|
|
23
23
|
export interface CreateHttpNamespaceRequest {
|
|
24
24
|
/**
|
|
25
|
-
* @public
|
|
26
25
|
* <p>The name that you want to assign to this namespace.</p>
|
|
26
|
+
* @public
|
|
27
27
|
*/
|
|
28
28
|
Name: string | undefined;
|
|
29
29
|
/**
|
|
30
|
-
* @public
|
|
31
30
|
* <p>A unique string that identifies the request and that allows failed
|
|
32
31
|
* <code>CreateHttpNamespace</code> requests to be retried without the risk of running the
|
|
33
32
|
* operation twice. <code>CreatorRequestId</code> can be any unique string (for example, a date/time
|
|
34
33
|
* stamp).</p>
|
|
34
|
+
* @public
|
|
35
35
|
*/
|
|
36
36
|
CreatorRequestId?: string;
|
|
37
37
|
/**
|
|
38
|
-
* @public
|
|
39
38
|
* <p>A description for the namespace.</p>
|
|
39
|
+
* @public
|
|
40
40
|
*/
|
|
41
41
|
Description?: string;
|
|
42
42
|
/**
|
|
43
|
-
* @public
|
|
44
43
|
* <p>The tags to add to the namespace. Each tag consists of a key and an optional value that you
|
|
45
44
|
* define. Tags keys can be up to 128 characters in length, and tag values can be up to 256
|
|
46
45
|
* characters in length.</p>
|
|
46
|
+
* @public
|
|
47
47
|
*/
|
|
48
48
|
Tags?: Tag[];
|
|
49
49
|
}
|
|
@@ -52,23 +52,23 @@ export interface CreateHttpNamespaceRequest {
|
|
|
52
52
|
*/
|
|
53
53
|
export interface CreateHttpNamespaceResponse {
|
|
54
54
|
/**
|
|
55
|
-
* @public
|
|
56
55
|
* <p>A value that you can use to determine whether the request completed successfully.
|
|
57
56
|
* To get the status of the operation, see <a href="https://docs.aws.amazon.com/cloud-map/latest/api/API_GetOperation.html">GetOperation</a>.</p>
|
|
57
|
+
* @public
|
|
58
58
|
*/
|
|
59
59
|
OperationId?: string;
|
|
60
60
|
}
|
|
61
61
|
/**
|
|
62
|
-
* @public
|
|
63
62
|
* <p>The operation is already in progress.</p>
|
|
63
|
+
* @public
|
|
64
64
|
*/
|
|
65
65
|
export declare class DuplicateRequest extends __BaseException {
|
|
66
66
|
readonly name: "DuplicateRequest";
|
|
67
67
|
readonly $fault: "client";
|
|
68
68
|
Message?: string;
|
|
69
69
|
/**
|
|
70
|
-
* @public
|
|
71
70
|
* <p>The ID of the operation that's already in progress.</p>
|
|
71
|
+
* @public
|
|
72
72
|
*/
|
|
73
73
|
DuplicateOperationId?: string;
|
|
74
74
|
/**
|
|
@@ -77,10 +77,10 @@ export declare class DuplicateRequest extends __BaseException {
|
|
|
77
77
|
constructor(opts: __ExceptionOptionType<DuplicateRequest, __BaseException>);
|
|
78
78
|
}
|
|
79
79
|
/**
|
|
80
|
-
* @public
|
|
81
80
|
* <p>One or more specified values aren't valid. For example, a required value might be missing, a
|
|
82
81
|
* numeric value might be outside the allowed range, or a string value might exceed length
|
|
83
82
|
* constraints.</p>
|
|
83
|
+
* @public
|
|
84
84
|
*/
|
|
85
85
|
export declare class InvalidInput extends __BaseException {
|
|
86
86
|
readonly name: "InvalidInput";
|
|
@@ -92,21 +92,21 @@ export declare class InvalidInput extends __BaseException {
|
|
|
92
92
|
constructor(opts: __ExceptionOptionType<InvalidInput, __BaseException>);
|
|
93
93
|
}
|
|
94
94
|
/**
|
|
95
|
-
* @public
|
|
96
95
|
* <p>The namespace that you're trying to create already exists.</p>
|
|
96
|
+
* @public
|
|
97
97
|
*/
|
|
98
98
|
export declare class NamespaceAlreadyExists extends __BaseException {
|
|
99
99
|
readonly name: "NamespaceAlreadyExists";
|
|
100
100
|
readonly $fault: "client";
|
|
101
101
|
Message?: string;
|
|
102
102
|
/**
|
|
103
|
-
* @public
|
|
104
103
|
* <p>The <code>CreatorRequestId</code> that was used to create the namespace.</p>
|
|
104
|
+
* @public
|
|
105
105
|
*/
|
|
106
106
|
CreatorRequestId?: string;
|
|
107
107
|
/**
|
|
108
|
-
* @public
|
|
109
108
|
* <p>The ID of the existing namespace.</p>
|
|
109
|
+
* @public
|
|
110
110
|
*/
|
|
111
111
|
NamespaceId?: string;
|
|
112
112
|
/**
|
|
@@ -115,9 +115,9 @@ export declare class NamespaceAlreadyExists extends __BaseException {
|
|
|
115
115
|
constructor(opts: __ExceptionOptionType<NamespaceAlreadyExists, __BaseException>);
|
|
116
116
|
}
|
|
117
117
|
/**
|
|
118
|
-
* @public
|
|
119
118
|
* <p>The resource can't be created because you've reached the quota on the number of
|
|
120
119
|
* resources.</p>
|
|
120
|
+
* @public
|
|
121
121
|
*/
|
|
122
122
|
export declare class ResourceLimitExceeded extends __BaseException {
|
|
123
123
|
readonly name: "ResourceLimitExceeded";
|
|
@@ -129,17 +129,17 @@ export declare class ResourceLimitExceeded extends __BaseException {
|
|
|
129
129
|
constructor(opts: __ExceptionOptionType<ResourceLimitExceeded, __BaseException>);
|
|
130
130
|
}
|
|
131
131
|
/**
|
|
132
|
-
* @public
|
|
133
132
|
* <p>The list of tags on the resource is over the quota. The maximum number of tags that can be
|
|
134
133
|
* applied to a resource is 50.</p>
|
|
134
|
+
* @public
|
|
135
135
|
*/
|
|
136
136
|
export declare class TooManyTagsException extends __BaseException {
|
|
137
137
|
readonly name: "TooManyTagsException";
|
|
138
138
|
readonly $fault: "client";
|
|
139
139
|
Message?: string;
|
|
140
140
|
/**
|
|
141
|
-
* @public
|
|
142
141
|
* <p>The name of the resource.</p>
|
|
142
|
+
* @public
|
|
143
143
|
*/
|
|
144
144
|
ResourceName?: string;
|
|
145
145
|
/**
|
|
@@ -148,42 +148,42 @@ export declare class TooManyTagsException extends __BaseException {
|
|
|
148
148
|
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
149
149
|
}
|
|
150
150
|
/**
|
|
151
|
-
* @public
|
|
152
151
|
* <p>Start of Authority
|
|
153
152
|
* (SOA) properties for a public or private DNS namespace.</p>
|
|
153
|
+
* @public
|
|
154
154
|
*/
|
|
155
155
|
export interface SOA {
|
|
156
156
|
/**
|
|
157
|
-
* @public
|
|
158
157
|
* <p>The time to live
|
|
159
158
|
* (TTL) for purposes of negative caching.</p>
|
|
159
|
+
* @public
|
|
160
160
|
*/
|
|
161
161
|
TTL: number | undefined;
|
|
162
162
|
}
|
|
163
163
|
/**
|
|
164
|
-
* @public
|
|
165
164
|
* <p>DNS properties for
|
|
166
165
|
* the private DNS namespace.</p>
|
|
166
|
+
* @public
|
|
167
167
|
*/
|
|
168
168
|
export interface PrivateDnsPropertiesMutable {
|
|
169
169
|
/**
|
|
170
|
-
* @public
|
|
171
170
|
* <p>Fields for the Start
|
|
172
171
|
* of Authority (SOA) record for the hosted zone for the private DNS
|
|
173
172
|
* namespace.</p>
|
|
173
|
+
* @public
|
|
174
174
|
*/
|
|
175
175
|
SOA: SOA | undefined;
|
|
176
176
|
}
|
|
177
177
|
/**
|
|
178
|
-
* @public
|
|
179
178
|
* <p>DNS properties for
|
|
180
179
|
* the private DNS namespace.</p>
|
|
180
|
+
* @public
|
|
181
181
|
*/
|
|
182
182
|
export interface PrivateDnsNamespaceProperties {
|
|
183
183
|
/**
|
|
184
|
-
* @public
|
|
185
184
|
* <p>DNS properties for
|
|
186
185
|
* the private DNS namespace.</p>
|
|
186
|
+
* @public
|
|
187
187
|
*/
|
|
188
188
|
DnsProperties: PrivateDnsPropertiesMutable | undefined;
|
|
189
189
|
}
|
|
@@ -192,41 +192,41 @@ export interface PrivateDnsNamespaceProperties {
|
|
|
192
192
|
*/
|
|
193
193
|
export interface CreatePrivateDnsNamespaceRequest {
|
|
194
194
|
/**
|
|
195
|
-
* @public
|
|
196
195
|
* <p>The name that you want to assign to this namespace. When you create a private DNS namespace,
|
|
197
196
|
* Cloud Map automatically creates an Amazon Route 53 private hosted zone that has the same name as the
|
|
198
197
|
* namespace.</p>
|
|
198
|
+
* @public
|
|
199
199
|
*/
|
|
200
200
|
Name: string | undefined;
|
|
201
201
|
/**
|
|
202
|
-
* @public
|
|
203
202
|
* <p>A unique string that identifies the request and that allows failed
|
|
204
203
|
* <code>CreatePrivateDnsNamespace</code> requests to be retried without the risk of running the
|
|
205
204
|
* operation twice. <code>CreatorRequestId</code> can be any unique string (for example, a
|
|
206
205
|
* date/timestamp).</p>
|
|
206
|
+
* @public
|
|
207
207
|
*/
|
|
208
208
|
CreatorRequestId?: string;
|
|
209
209
|
/**
|
|
210
|
-
* @public
|
|
211
210
|
* <p>A description for the namespace.</p>
|
|
211
|
+
* @public
|
|
212
212
|
*/
|
|
213
213
|
Description?: string;
|
|
214
214
|
/**
|
|
215
|
-
* @public
|
|
216
215
|
* <p>The ID of the Amazon VPC that you want to associate the namespace with.</p>
|
|
216
|
+
* @public
|
|
217
217
|
*/
|
|
218
218
|
Vpc: string | undefined;
|
|
219
219
|
/**
|
|
220
|
-
* @public
|
|
221
220
|
* <p>The tags to add to the namespace. Each tag consists of a key and an optional value that you
|
|
222
221
|
* define. Tags keys can be up to 128 characters in length, and tag values can be up to 256
|
|
223
222
|
* characters in length.</p>
|
|
223
|
+
* @public
|
|
224
224
|
*/
|
|
225
225
|
Tags?: Tag[];
|
|
226
226
|
/**
|
|
227
|
-
* @public
|
|
228
227
|
* <p>Properties for the
|
|
229
228
|
* private DNS namespace.</p>
|
|
229
|
+
* @public
|
|
230
230
|
*/
|
|
231
231
|
Properties?: PrivateDnsNamespaceProperties;
|
|
232
232
|
}
|
|
@@ -235,35 +235,35 @@ export interface CreatePrivateDnsNamespaceRequest {
|
|
|
235
235
|
*/
|
|
236
236
|
export interface CreatePrivateDnsNamespaceResponse {
|
|
237
237
|
/**
|
|
238
|
-
* @public
|
|
239
238
|
* <p>A value that you can use to determine whether the request completed successfully.
|
|
240
239
|
* To get the status of the operation, see <a href="https://docs.aws.amazon.com/cloud-map/latest/api/API_GetOperation.html">GetOperation</a>.</p>
|
|
240
|
+
* @public
|
|
241
241
|
*/
|
|
242
242
|
OperationId?: string;
|
|
243
243
|
}
|
|
244
244
|
/**
|
|
245
|
-
* @public
|
|
246
245
|
* <p>DNS properties for
|
|
247
246
|
* the public DNS namespace.</p>
|
|
247
|
+
* @public
|
|
248
248
|
*/
|
|
249
249
|
export interface PublicDnsPropertiesMutable {
|
|
250
250
|
/**
|
|
251
|
-
* @public
|
|
252
251
|
* <p>Start of Authority
|
|
253
252
|
* (SOA) record for the hosted zone for the public DNS namespace.</p>
|
|
253
|
+
* @public
|
|
254
254
|
*/
|
|
255
255
|
SOA: SOA | undefined;
|
|
256
256
|
}
|
|
257
257
|
/**
|
|
258
|
-
* @public
|
|
259
258
|
* <p>DNS properties for
|
|
260
259
|
* the public DNS namespace.</p>
|
|
260
|
+
* @public
|
|
261
261
|
*/
|
|
262
262
|
export interface PublicDnsNamespaceProperties {
|
|
263
263
|
/**
|
|
264
|
-
* @public
|
|
265
264
|
* <p>DNS properties for
|
|
266
265
|
* the public DNS namespace.</p>
|
|
266
|
+
* @public
|
|
267
267
|
*/
|
|
268
268
|
DnsProperties: PublicDnsPropertiesMutable | undefined;
|
|
269
269
|
}
|
|
@@ -272,38 +272,38 @@ export interface PublicDnsNamespaceProperties {
|
|
|
272
272
|
*/
|
|
273
273
|
export interface CreatePublicDnsNamespaceRequest {
|
|
274
274
|
/**
|
|
275
|
-
* @public
|
|
276
275
|
* <p>The name that you want to assign to this namespace.</p>
|
|
277
276
|
* <note>
|
|
278
277
|
* <p>Do not include sensitive information in the name. The name is publicly available using DNS
|
|
279
278
|
* queries.</p>
|
|
280
279
|
* </note>
|
|
280
|
+
* @public
|
|
281
281
|
*/
|
|
282
282
|
Name: string | undefined;
|
|
283
283
|
/**
|
|
284
|
-
* @public
|
|
285
284
|
* <p>A unique string that identifies the request and that allows failed
|
|
286
285
|
* <code>CreatePublicDnsNamespace</code> requests to be retried without the risk of running the
|
|
287
286
|
* operation twice. <code>CreatorRequestId</code> can be any unique string (for example, a
|
|
288
287
|
* date/timestamp).</p>
|
|
288
|
+
* @public
|
|
289
289
|
*/
|
|
290
290
|
CreatorRequestId?: string;
|
|
291
291
|
/**
|
|
292
|
-
* @public
|
|
293
292
|
* <p>A description for the namespace.</p>
|
|
293
|
+
* @public
|
|
294
294
|
*/
|
|
295
295
|
Description?: string;
|
|
296
296
|
/**
|
|
297
|
-
* @public
|
|
298
297
|
* <p>The tags to add to the namespace. Each tag consists of a key and an optional value that you
|
|
299
298
|
* define. Tags keys can be up to 128 characters in length, and tag values can be up to 256
|
|
300
299
|
* characters in length.</p>
|
|
300
|
+
* @public
|
|
301
301
|
*/
|
|
302
302
|
Tags?: Tag[];
|
|
303
303
|
/**
|
|
304
|
-
* @public
|
|
305
304
|
* <p>Properties for the
|
|
306
305
|
* public DNS namespace.</p>
|
|
306
|
+
* @public
|
|
307
307
|
*/
|
|
308
308
|
Properties?: PublicDnsNamespaceProperties;
|
|
309
309
|
}
|
|
@@ -312,9 +312,9 @@ export interface CreatePublicDnsNamespaceRequest {
|
|
|
312
312
|
*/
|
|
313
313
|
export interface CreatePublicDnsNamespaceResponse {
|
|
314
314
|
/**
|
|
315
|
-
* @public
|
|
316
315
|
* <p>A value that you can use to determine whether the request completed successfully. To get the
|
|
317
316
|
* status of the operation, see <a href="https://docs.aws.amazon.com/cloud-map/latest/api/API_GetOperation.html">GetOperation</a>.</p>
|
|
317
|
+
* @public
|
|
318
318
|
*/
|
|
319
319
|
OperationId?: string;
|
|
320
320
|
}
|
|
@@ -333,13 +333,12 @@ export declare const RecordType: {
|
|
|
333
333
|
*/
|
|
334
334
|
export type RecordType = (typeof RecordType)[keyof typeof RecordType];
|
|
335
335
|
/**
|
|
336
|
-
* @public
|
|
337
336
|
* <p>A complex type that contains information about the Route 53 DNS records that you want
|
|
338
337
|
* Cloud Map to create when you register an instance.</p>
|
|
338
|
+
* @public
|
|
339
339
|
*/
|
|
340
340
|
export interface DnsRecord {
|
|
341
341
|
/**
|
|
342
|
-
* @public
|
|
343
342
|
* <p>The type of the resource, which indicates the type of value that Route 53 returns in response
|
|
344
343
|
* to DNS queries. You can specify values for <code>Type</code> in the following
|
|
345
344
|
* combinations:</p>
|
|
@@ -476,10 +475,10 @@ export interface DnsRecord {
|
|
|
476
475
|
* </ul>
|
|
477
476
|
* </dd>
|
|
478
477
|
* </dl>
|
|
478
|
+
* @public
|
|
479
479
|
*/
|
|
480
480
|
Type: RecordType | undefined;
|
|
481
481
|
/**
|
|
482
|
-
* @public
|
|
483
482
|
* <p>The amount of time, in seconds, that you want DNS resolvers to cache the settings for this
|
|
484
483
|
* record.</p>
|
|
485
484
|
* <note>
|
|
@@ -489,6 +488,7 @@ export interface DnsRecord {
|
|
|
489
488
|
* <code>TTL</code> value is ignored. Always specify a TTL for the service; you can use a service
|
|
490
489
|
* to register instances that create either alias or non-alias records.</p>
|
|
491
490
|
* </note>
|
|
491
|
+
* @public
|
|
492
492
|
*/
|
|
493
493
|
TTL: number | undefined;
|
|
494
494
|
}
|
|
@@ -505,17 +505,16 @@ export declare const RoutingPolicy: {
|
|
|
505
505
|
*/
|
|
506
506
|
export type RoutingPolicy = (typeof RoutingPolicy)[keyof typeof RoutingPolicy];
|
|
507
507
|
/**
|
|
508
|
-
* @public
|
|
509
508
|
* <p>A complex type that contains information about the Amazon Route 53 DNS records that you want
|
|
510
509
|
* Cloud Map to create when you register an instance.</p>
|
|
511
510
|
* <important>
|
|
512
511
|
* <p>The record types of a service can only be changed by deleting the service and recreating it
|
|
513
512
|
* with a new <code>Dnsconfig</code>.</p>
|
|
514
513
|
* </important>
|
|
514
|
+
* @public
|
|
515
515
|
*/
|
|
516
516
|
export interface DnsConfig {
|
|
517
517
|
/**
|
|
518
|
-
* @public
|
|
519
518
|
* @deprecated
|
|
520
519
|
*
|
|
521
520
|
* <p>
|
|
@@ -523,10 +522,10 @@ export interface DnsConfig {
|
|
|
523
522
|
* NamespaceId in <a href="https://docs.aws.amazon.com/cloud-map/latest/api/API_Service.html">Service</a> instead.</i>
|
|
524
523
|
* </p>
|
|
525
524
|
* <p>The ID of the namespace to use for DNS configuration.</p>
|
|
525
|
+
* @public
|
|
526
526
|
*/
|
|
527
527
|
NamespaceId?: string;
|
|
528
528
|
/**
|
|
529
|
-
* @public
|
|
530
529
|
* <p>The routing policy that you want to apply to all Route 53 DNS records that Cloud Map creates
|
|
531
530
|
* when you register an instance and specify this service.</p>
|
|
532
531
|
* <note>
|
|
@@ -565,12 +564,13 @@ export interface DnsConfig {
|
|
|
565
564
|
* Routing</a> in the <i>Route 53 Developer Guide</i>.</p>
|
|
566
565
|
* </dd>
|
|
567
566
|
* </dl>
|
|
567
|
+
* @public
|
|
568
568
|
*/
|
|
569
569
|
RoutingPolicy?: RoutingPolicy;
|
|
570
570
|
/**
|
|
571
|
-
* @public
|
|
572
571
|
* <p>An array that contains one <code>DnsRecord</code> object for each Route 53 DNS record that you
|
|
573
572
|
* want Cloud Map to create when you register an instance.</p>
|
|
573
|
+
* @public
|
|
574
574
|
*/
|
|
575
575
|
DnsRecords: DnsRecord[] | undefined;
|
|
576
576
|
}
|
|
@@ -588,7 +588,6 @@ export declare const HealthCheckType: {
|
|
|
588
588
|
*/
|
|
589
589
|
export type HealthCheckType = (typeof HealthCheckType)[keyof typeof HealthCheckType];
|
|
590
590
|
/**
|
|
591
|
-
* @public
|
|
592
591
|
* <p>
|
|
593
592
|
* <i>Public DNS and HTTP namespaces only.</i> A complex type that contains
|
|
594
593
|
* settings for an optional health check. If you specify settings for a health check, Cloud Map
|
|
@@ -651,10 +650,10 @@ export type HealthCheckType = (typeof HealthCheckType)[keyof typeof HealthCheckT
|
|
|
651
650
|
* information about pricing for health checks, see <a href="http://aws.amazon.com/route53/pricing/">Amazon Route 53 Pricing</a>.</p>
|
|
652
651
|
* </dd>
|
|
653
652
|
* </dl>
|
|
653
|
+
* @public
|
|
654
654
|
*/
|
|
655
655
|
export interface HealthCheckConfig {
|
|
656
656
|
/**
|
|
657
|
-
* @public
|
|
658
657
|
* <p>The type of health check that you want to create, which indicates how Route 53 determines
|
|
659
658
|
* whether an endpoint is healthy.</p>
|
|
660
659
|
* <important>
|
|
@@ -688,10 +687,10 @@ export interface HealthCheckConfig {
|
|
|
688
687
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html">How Route 53
|
|
689
688
|
* Determines Whether an Endpoint Is Healthy</a> in the
|
|
690
689
|
* <i>Route 53 Developer Guide</i>.</p>
|
|
690
|
+
* @public
|
|
691
691
|
*/
|
|
692
692
|
Type: HealthCheckType | undefined;
|
|
693
693
|
/**
|
|
694
|
-
* @public
|
|
695
694
|
* <p>The path that you want Route 53 to request when performing health checks. The path can be any
|
|
696
695
|
* value that your endpoint returns an HTTP status code of a 2xx or 3xx format for when the endpoint
|
|
697
696
|
* is healthy. An example file is <code>/docs/route53-health-check.html</code>. Route 53 automatically
|
|
@@ -699,20 +698,20 @@ export interface HealthCheckConfig {
|
|
|
699
698
|
* the default value is <code>/</code>.</p>
|
|
700
699
|
* <p>If you specify <code>TCP</code> for <code>Type</code>, you must <i>not</i>
|
|
701
700
|
* specify a value for <code>ResourcePath</code>.</p>
|
|
701
|
+
* @public
|
|
702
702
|
*/
|
|
703
703
|
ResourcePath?: string;
|
|
704
704
|
/**
|
|
705
|
-
* @public
|
|
706
705
|
* <p>The number of consecutive health checks that an endpoint must pass or fail for Route 53 to
|
|
707
706
|
* change the current status of the endpoint from unhealthy to healthy or the other way around. For
|
|
708
707
|
* more information, see <a href="https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-failover-determining-health-of-endpoints.html">How Route 53
|
|
709
708
|
* Determines Whether an Endpoint Is Healthy</a> in the
|
|
710
709
|
* <i>Route 53 Developer Guide</i>.</p>
|
|
710
|
+
* @public
|
|
711
711
|
*/
|
|
712
712
|
FailureThreshold?: number;
|
|
713
713
|
}
|
|
714
714
|
/**
|
|
715
|
-
* @public
|
|
716
715
|
* <p>A complex type that contains information about an optional custom health check. A custom
|
|
717
716
|
* health check, which requires that you use a third-party health checker to evaluate the health of
|
|
718
717
|
* your resources, is useful in the following circumstances:</p>
|
|
@@ -767,10 +766,10 @@ export interface HealthCheckConfig {
|
|
|
767
766
|
* resource.</p>
|
|
768
767
|
* </li>
|
|
769
768
|
* </ol>
|
|
769
|
+
* @public
|
|
770
770
|
*/
|
|
771
771
|
export interface HealthCheckCustomConfig {
|
|
772
772
|
/**
|
|
773
|
-
* @public
|
|
774
773
|
* @deprecated
|
|
775
774
|
*
|
|
776
775
|
* <important>
|
|
@@ -784,6 +783,7 @@ export interface HealthCheckCustomConfig {
|
|
|
784
783
|
* <p>Sending a second or subsequent <code>UpdateInstanceCustomHealthStatus</code> request with
|
|
785
784
|
* the same value before 30 seconds has passed doesn't accelerate the change. Cloud Map still waits
|
|
786
785
|
* <code>30</code> seconds after the first request to make the change.</p>
|
|
786
|
+
* @public
|
|
787
787
|
*/
|
|
788
788
|
FailureThreshold?: number;
|
|
789
789
|
}
|
|
@@ -803,7 +803,6 @@ export type ServiceTypeOption = (typeof ServiceTypeOption)[keyof typeof ServiceT
|
|
|
803
803
|
*/
|
|
804
804
|
export interface CreateServiceRequest {
|
|
805
805
|
/**
|
|
806
|
-
* @public
|
|
807
806
|
* <p>The name that you want to assign to the service.</p>
|
|
808
807
|
* <note>
|
|
809
808
|
* <p>Do not include sensitive information in the name if the namespace is discoverable by public
|
|
@@ -830,35 +829,35 @@ export interface CreateServiceRequest {
|
|
|
830
829
|
* same DNS name and can't be distinguished. However, if you use a namespace that's only accessible
|
|
831
830
|
* by API calls, then you can create services that with names that differ only by case.</p>
|
|
832
831
|
* </note>
|
|
832
|
+
* @public
|
|
833
833
|
*/
|
|
834
834
|
Name: string | undefined;
|
|
835
835
|
/**
|
|
836
|
-
* @public
|
|
837
836
|
* <p>The ID of the namespace that you want to use to create the service. The namespace ID must be
|
|
838
837
|
* specified, but it can be specified either here or in the <code>DnsConfig</code> object.</p>
|
|
838
|
+
* @public
|
|
839
839
|
*/
|
|
840
840
|
NamespaceId?: string;
|
|
841
841
|
/**
|
|
842
|
-
* @public
|
|
843
842
|
* <p>A unique string that identifies the request and that allows failed
|
|
844
843
|
* <code>CreateService</code> requests to be retried without the risk of running the operation
|
|
845
844
|
* twice. <code>CreatorRequestId</code> can be any unique string (for example, a
|
|
846
845
|
* date/timestamp).</p>
|
|
846
|
+
* @public
|
|
847
847
|
*/
|
|
848
848
|
CreatorRequestId?: string;
|
|
849
849
|
/**
|
|
850
|
-
* @public
|
|
851
850
|
* <p>A description for the service.</p>
|
|
851
|
+
* @public
|
|
852
852
|
*/
|
|
853
853
|
Description?: string;
|
|
854
854
|
/**
|
|
855
|
-
* @public
|
|
856
855
|
* <p>A complex type that contains information about the Amazon Route 53 records that you want
|
|
857
856
|
* Cloud Map to create when you register an instance. </p>
|
|
857
|
+
* @public
|
|
858
858
|
*/
|
|
859
859
|
DnsConfig?: DnsConfig;
|
|
860
860
|
/**
|
|
861
|
-
* @public
|
|
862
861
|
* <p>
|
|
863
862
|
* <i>Public DNS and HTTP namespaces only.</i> A complex type that contains
|
|
864
863
|
* settings for an optional Route 53 health check. If you specify settings for a health check,
|
|
@@ -869,10 +868,10 @@ export interface CreateServiceRequest {
|
|
|
869
868
|
* <code>HealthCheckCustomConfig</code> or <code>HealthCheckConfig</code> but not both.</p>
|
|
870
869
|
* </important>
|
|
871
870
|
* <p>For information about the charges for health checks, see <a href="http://aws.amazon.com/cloud-map/pricing/">Cloud Map Pricing</a>.</p>
|
|
871
|
+
* @public
|
|
872
872
|
*/
|
|
873
873
|
HealthCheckConfig?: HealthCheckConfig;
|
|
874
874
|
/**
|
|
875
|
-
* @public
|
|
876
875
|
* <p>A complex type that contains information about an optional custom health check.</p>
|
|
877
876
|
* <important>
|
|
878
877
|
* <p>If you specify a health check configuration, you can specify either
|
|
@@ -880,20 +879,21 @@ export interface CreateServiceRequest {
|
|
|
880
879
|
* </important>
|
|
881
880
|
* <p>You can't add, update, or delete a <code>HealthCheckCustomConfig</code> configuration from
|
|
882
881
|
* an existing service.</p>
|
|
882
|
+
* @public
|
|
883
883
|
*/
|
|
884
884
|
HealthCheckCustomConfig?: HealthCheckCustomConfig;
|
|
885
885
|
/**
|
|
886
|
-
* @public
|
|
887
886
|
* <p>The tags to add to the service. Each tag consists of a key and an optional value that you
|
|
888
887
|
* define. Tags keys can be up to 128 characters in length, and tag values can be up to 256
|
|
889
888
|
* characters in length.</p>
|
|
889
|
+
* @public
|
|
890
890
|
*/
|
|
891
891
|
Tags?: Tag[];
|
|
892
892
|
/**
|
|
893
|
-
* @public
|
|
894
893
|
* <p>If present, specifies that the service instances are only discoverable using the
|
|
895
894
|
* <code>DiscoverInstances</code> API operation. No DNS records is registered for the service
|
|
896
895
|
* instances. The only valid value is <code>HTTP</code>.</p>
|
|
896
|
+
* @public
|
|
897
897
|
*/
|
|
898
898
|
Type?: ServiceTypeOption;
|
|
899
899
|
}
|
|
@@ -911,54 +911,53 @@ export declare const ServiceType: {
|
|
|
911
911
|
*/
|
|
912
912
|
export type ServiceType = (typeof ServiceType)[keyof typeof ServiceType];
|
|
913
913
|
/**
|
|
914
|
-
* @public
|
|
915
914
|
* <p>A complex type that contains information about the specified service.</p>
|
|
915
|
+
* @public
|
|
916
916
|
*/
|
|
917
917
|
export interface Service {
|
|
918
918
|
/**
|
|
919
|
-
* @public
|
|
920
919
|
* <p>The ID that Cloud Map assigned to the service when you created it.</p>
|
|
920
|
+
* @public
|
|
921
921
|
*/
|
|
922
922
|
Id?: string;
|
|
923
923
|
/**
|
|
924
|
-
* @public
|
|
925
924
|
* <p>The Amazon Resource Name (ARN) that Cloud Map assigns to the service when you create it.</p>
|
|
925
|
+
* @public
|
|
926
926
|
*/
|
|
927
927
|
Arn?: string;
|
|
928
928
|
/**
|
|
929
|
-
* @public
|
|
930
929
|
* <p>The name of the service.</p>
|
|
930
|
+
* @public
|
|
931
931
|
*/
|
|
932
932
|
Name?: string;
|
|
933
933
|
/**
|
|
934
|
-
* @public
|
|
935
934
|
* <p>The ID of the namespace that was used to create the service.</p>
|
|
935
|
+
* @public
|
|
936
936
|
*/
|
|
937
937
|
NamespaceId?: string;
|
|
938
938
|
/**
|
|
939
|
-
* @public
|
|
940
939
|
* <p>The description of the service.</p>
|
|
940
|
+
* @public
|
|
941
941
|
*/
|
|
942
942
|
Description?: string;
|
|
943
943
|
/**
|
|
944
|
-
* @public
|
|
945
944
|
* <p>The number of instances that are currently associated with the service. Instances that were
|
|
946
945
|
* previously associated with the service but that are deleted aren't included in the count. The
|
|
947
946
|
* count might not reflect pending registrations and deregistrations.</p>
|
|
947
|
+
* @public
|
|
948
948
|
*/
|
|
949
949
|
InstanceCount?: number;
|
|
950
950
|
/**
|
|
951
|
-
* @public
|
|
952
951
|
* <p>A complex type that contains information about the Route 53 DNS records that you want
|
|
953
952
|
* Cloud Map to create when you register an instance.</p>
|
|
954
953
|
* <important>
|
|
955
954
|
* <p>The record types of a service can only be changed by deleting the service and recreating it
|
|
956
955
|
* with a new <code>Dnsconfig</code>.</p>
|
|
957
956
|
* </important>
|
|
957
|
+
* @public
|
|
958
958
|
*/
|
|
959
959
|
DnsConfig?: DnsConfig;
|
|
960
960
|
/**
|
|
961
|
-
* @public
|
|
962
961
|
* <p>Describes the systems that can be used to discover the service instances.</p>
|
|
963
962
|
* <dl>
|
|
964
963
|
* <dt>DNS_HTTP</dt>
|
|
@@ -976,38 +975,39 @@ export interface Service {
|
|
|
976
975
|
* <p>Reserved.</p>
|
|
977
976
|
* </dd>
|
|
978
977
|
* </dl>
|
|
978
|
+
* @public
|
|
979
979
|
*/
|
|
980
980
|
Type?: ServiceType;
|
|
981
981
|
/**
|
|
982
|
-
* @public
|
|
983
982
|
* <p>
|
|
984
983
|
* <i>Public DNS and HTTP namespaces only.</i> A complex type that contains
|
|
985
984
|
* settings for an optional health check. If you specify settings for a health check, Cloud Map
|
|
986
985
|
* associates the health check with the records that you specify in <code>DnsConfig</code>.</p>
|
|
987
986
|
* <p>For information about the charges for health checks, see <a href="http://aws.amazon.com/route53/pricing/">Amazon Route 53 Pricing</a>.</p>
|
|
987
|
+
* @public
|
|
988
988
|
*/
|
|
989
989
|
HealthCheckConfig?: HealthCheckConfig;
|
|
990
990
|
/**
|
|
991
|
-
* @public
|
|
992
991
|
* <p>A complex type that contains information about an optional custom health check.</p>
|
|
993
992
|
* <important>
|
|
994
993
|
* <p>If you specify a health check configuration, you can specify either
|
|
995
994
|
* <code>HealthCheckCustomConfig</code> or <code>HealthCheckConfig</code> but not both.</p>
|
|
996
995
|
* </important>
|
|
996
|
+
* @public
|
|
997
997
|
*/
|
|
998
998
|
HealthCheckCustomConfig?: HealthCheckCustomConfig;
|
|
999
999
|
/**
|
|
1000
|
-
* @public
|
|
1001
1000
|
* <p>The date and time that the service was created, in Unix format and Coordinated Universal
|
|
1002
1001
|
* Time (UTC). The value of <code>CreateDate</code> is accurate to milliseconds. For example, the
|
|
1003
1002
|
* value <code>1516925490.087</code> represents Friday, January 26, 2018 12:11:30.087 AM.</p>
|
|
1003
|
+
* @public
|
|
1004
1004
|
*/
|
|
1005
1005
|
CreateDate?: Date;
|
|
1006
1006
|
/**
|
|
1007
|
-
* @public
|
|
1008
1007
|
* <p>A unique string that identifies the request and that allows failed requests to be retried
|
|
1009
1008
|
* without the risk of running the operation twice. <code>CreatorRequestId</code> can be any unique
|
|
1010
1009
|
* string (for example, a date/timestamp).</p>
|
|
1010
|
+
* @public
|
|
1011
1011
|
*/
|
|
1012
1012
|
CreatorRequestId?: string;
|
|
1013
1013
|
}
|
|
@@ -1016,14 +1016,14 @@ export interface Service {
|
|
|
1016
1016
|
*/
|
|
1017
1017
|
export interface CreateServiceResponse {
|
|
1018
1018
|
/**
|
|
1019
|
-
* @public
|
|
1020
1019
|
* <p>A complex type that contains information about the new service.</p>
|
|
1020
|
+
* @public
|
|
1021
1021
|
*/
|
|
1022
1022
|
Service?: Service;
|
|
1023
1023
|
}
|
|
1024
1024
|
/**
|
|
1025
|
-
* @public
|
|
1026
1025
|
* <p>No namespace exists with the specified ID.</p>
|
|
1026
|
+
* @public
|
|
1027
1027
|
*/
|
|
1028
1028
|
export declare class NamespaceNotFound extends __BaseException {
|
|
1029
1029
|
readonly name: "NamespaceNotFound";
|
|
@@ -1035,21 +1035,21 @@ export declare class NamespaceNotFound extends __BaseException {
|
|
|
1035
1035
|
constructor(opts: __ExceptionOptionType<NamespaceNotFound, __BaseException>);
|
|
1036
1036
|
}
|
|
1037
1037
|
/**
|
|
1038
|
-
* @public
|
|
1039
1038
|
* <p>The service can't be created because a service with the same name already exists.</p>
|
|
1039
|
+
* @public
|
|
1040
1040
|
*/
|
|
1041
1041
|
export declare class ServiceAlreadyExists extends __BaseException {
|
|
1042
1042
|
readonly name: "ServiceAlreadyExists";
|
|
1043
1043
|
readonly $fault: "client";
|
|
1044
1044
|
Message?: string;
|
|
1045
1045
|
/**
|
|
1046
|
-
* @public
|
|
1047
1046
|
* <p>The <code>CreatorRequestId</code> that was used to create the service.</p>
|
|
1047
|
+
* @public
|
|
1048
1048
|
*/
|
|
1049
1049
|
CreatorRequestId?: string;
|
|
1050
1050
|
/**
|
|
1051
|
-
* @public
|
|
1052
1051
|
* <p>The ID of the existing service.</p>
|
|
1052
|
+
* @public
|
|
1053
1053
|
*/
|
|
1054
1054
|
ServiceId?: string;
|
|
1055
1055
|
/**
|
|
@@ -1058,9 +1058,9 @@ export declare class ServiceAlreadyExists extends __BaseException {
|
|
|
1058
1058
|
constructor(opts: __ExceptionOptionType<ServiceAlreadyExists, __BaseException>);
|
|
1059
1059
|
}
|
|
1060
1060
|
/**
|
|
1061
|
-
* @public
|
|
1062
1061
|
* <p>The health check for the instance that's specified by <code>ServiceId</code> and
|
|
1063
1062
|
* <code>InstanceId</code> isn't a custom health check. </p>
|
|
1063
|
+
* @public
|
|
1064
1064
|
*/
|
|
1065
1065
|
export declare class CustomHealthNotFound extends __BaseException {
|
|
1066
1066
|
readonly name: "CustomHealthNotFound";
|
|
@@ -1088,8 +1088,8 @@ export type CustomHealthStatus = (typeof CustomHealthStatus)[keyof typeof Custom
|
|
|
1088
1088
|
*/
|
|
1089
1089
|
export interface DeleteNamespaceRequest {
|
|
1090
1090
|
/**
|
|
1091
|
-
* @public
|
|
1092
1091
|
* <p>The ID of the namespace that you want to delete.</p>
|
|
1092
|
+
* @public
|
|
1093
1093
|
*/
|
|
1094
1094
|
Id: string | undefined;
|
|
1095
1095
|
}
|
|
@@ -1098,16 +1098,16 @@ export interface DeleteNamespaceRequest {
|
|
|
1098
1098
|
*/
|
|
1099
1099
|
export interface DeleteNamespaceResponse {
|
|
1100
1100
|
/**
|
|
1101
|
-
* @public
|
|
1102
1101
|
* <p>A value that you can use to determine whether the request completed successfully.
|
|
1103
1102
|
* To get the status of the operation, see <a href="https://docs.aws.amazon.com/cloud-map/latest/api/API_GetOperation.html">GetOperation</a>.</p>
|
|
1103
|
+
* @public
|
|
1104
1104
|
*/
|
|
1105
1105
|
OperationId?: string;
|
|
1106
1106
|
}
|
|
1107
1107
|
/**
|
|
1108
|
-
* @public
|
|
1109
1108
|
* <p>The specified resource can't be deleted because it contains other resources. For example,
|
|
1110
1109
|
* you can't delete a service that contains any instances.</p>
|
|
1110
|
+
* @public
|
|
1111
1111
|
*/
|
|
1112
1112
|
export declare class ResourceInUse extends __BaseException {
|
|
1113
1113
|
readonly name: "ResourceInUse";
|
|
@@ -1123,8 +1123,8 @@ export declare class ResourceInUse extends __BaseException {
|
|
|
1123
1123
|
*/
|
|
1124
1124
|
export interface DeleteServiceRequest {
|
|
1125
1125
|
/**
|
|
1126
|
-
* @public
|
|
1127
1126
|
* <p>The ID of the service that you want to delete.</p>
|
|
1127
|
+
* @public
|
|
1128
1128
|
*/
|
|
1129
1129
|
Id: string | undefined;
|
|
1130
1130
|
}
|
|
@@ -1134,8 +1134,8 @@ export interface DeleteServiceRequest {
|
|
|
1134
1134
|
export interface DeleteServiceResponse {
|
|
1135
1135
|
}
|
|
1136
1136
|
/**
|
|
1137
|
-
* @public
|
|
1138
1137
|
* <p>No service exists with the specified ID.</p>
|
|
1138
|
+
* @public
|
|
1139
1139
|
*/
|
|
1140
1140
|
export declare class ServiceNotFound extends __BaseException {
|
|
1141
1141
|
readonly name: "ServiceNotFound";
|
|
@@ -1151,13 +1151,13 @@ export declare class ServiceNotFound extends __BaseException {
|
|
|
1151
1151
|
*/
|
|
1152
1152
|
export interface DeregisterInstanceRequest {
|
|
1153
1153
|
/**
|
|
1154
|
-
* @public
|
|
1155
1154
|
* <p>The ID of the service that the instance is associated with.</p>
|
|
1155
|
+
* @public
|
|
1156
1156
|
*/
|
|
1157
1157
|
ServiceId: string | undefined;
|
|
1158
1158
|
/**
|
|
1159
|
-
* @public
|
|
1160
1159
|
* <p>The value that you specified for <code>Id</code> in the <a href="https://docs.aws.amazon.com/cloud-map/latest/api/API_RegisterInstance.html">RegisterInstance</a> request.</p>
|
|
1160
|
+
* @public
|
|
1161
1161
|
*/
|
|
1162
1162
|
InstanceId: string | undefined;
|
|
1163
1163
|
}
|
|
@@ -1166,16 +1166,16 @@ export interface DeregisterInstanceRequest {
|
|
|
1166
1166
|
*/
|
|
1167
1167
|
export interface DeregisterInstanceResponse {
|
|
1168
1168
|
/**
|
|
1169
|
-
* @public
|
|
1170
1169
|
* <p>A value that you can use to determine whether the request completed successfully.
|
|
1171
1170
|
* To get the status of the operation, see <a href="https://docs.aws.amazon.com/cloud-map/latest/api/API_GetOperation.html">GetOperation</a>.</p>
|
|
1171
|
+
* @public
|
|
1172
1172
|
*/
|
|
1173
1173
|
OperationId?: string;
|
|
1174
1174
|
}
|
|
1175
1175
|
/**
|
|
1176
|
-
* @public
|
|
1177
1176
|
* <p>No instance exists with the specified ID, or the instance was recently registered, and
|
|
1178
1177
|
* information about the instance hasn't propagated yet.</p>
|
|
1178
|
+
* @public
|
|
1179
1179
|
*/
|
|
1180
1180
|
export declare class InstanceNotFound extends __BaseException {
|
|
1181
1181
|
readonly name: "InstanceNotFound";
|
|
@@ -1205,42 +1205,41 @@ export type HealthStatusFilter = (typeof HealthStatusFilter)[keyof typeof Health
|
|
|
1205
1205
|
*/
|
|
1206
1206
|
export interface DiscoverInstancesRequest {
|
|
1207
1207
|
/**
|
|
1208
|
-
* @public
|
|
1209
1208
|
* <p>The <code>HttpName</code> name of the namespace. It's found in the
|
|
1210
1209
|
* <code>HttpProperties</code> member of the <code>Properties</code> member of the
|
|
1211
1210
|
* namespace.</p>
|
|
1211
|
+
* @public
|
|
1212
1212
|
*/
|
|
1213
1213
|
NamespaceName: string | undefined;
|
|
1214
1214
|
/**
|
|
1215
|
-
* @public
|
|
1216
1215
|
* <p>The name of the service that you specified when you registered the instance.</p>
|
|
1216
|
+
* @public
|
|
1217
1217
|
*/
|
|
1218
1218
|
ServiceName: string | undefined;
|
|
1219
1219
|
/**
|
|
1220
|
-
* @public
|
|
1221
1220
|
* <p>The maximum number of instances that you want Cloud Map to return in the response to a
|
|
1222
1221
|
* <code>DiscoverInstances</code> request. If you don't specify a value for
|
|
1223
1222
|
* <code>MaxResults</code>, Cloud Map returns up to 100 instances.</p>
|
|
1223
|
+
* @public
|
|
1224
1224
|
*/
|
|
1225
1225
|
MaxResults?: number;
|
|
1226
1226
|
/**
|
|
1227
|
-
* @public
|
|
1228
1227
|
* <p>Filters to scope the results based on custom attributes for the instance (for example,
|
|
1229
1228
|
* <code>\{version=v1, az=1a\}</code>). Only instances that match all the specified key-value pairs
|
|
1230
1229
|
* are returned.</p>
|
|
1230
|
+
* @public
|
|
1231
1231
|
*/
|
|
1232
1232
|
QueryParameters?: Record<string, string>;
|
|
1233
1233
|
/**
|
|
1234
|
-
* @public
|
|
1235
1234
|
* <p>Opportunistic filters to scope the results based on custom attributes. If there are
|
|
1236
1235
|
* instances that match both the filters specified in both the <code>QueryParameters</code>
|
|
1237
1236
|
* parameter and this parameter, all of these instances are returned. Otherwise, the filters are
|
|
1238
1237
|
* ignored, and only instances that match the filters that are specified in the
|
|
1239
1238
|
* <code>QueryParameters</code> parameter are returned.</p>
|
|
1239
|
+
* @public
|
|
1240
1240
|
*/
|
|
1241
1241
|
OptionalParameters?: Record<string, string>;
|
|
1242
1242
|
/**
|
|
1243
|
-
* @public
|
|
1244
1243
|
* <p>The health status of the instances that you want to discover. This parameter is ignored for
|
|
1245
1244
|
* services that don't have a health check configured, and
|
|
1246
1245
|
* all
|
|
@@ -1264,6 +1263,7 @@ export interface DiscoverInstancesRequest {
|
|
|
1264
1263
|
* return all instances. This is also called failing open.</p>
|
|
1265
1264
|
* </dd>
|
|
1266
1265
|
* </dl>
|
|
1266
|
+
* @public
|
|
1267
1267
|
*/
|
|
1268
1268
|
HealthStatus?: HealthStatusFilter;
|
|
1269
1269
|
}
|
|
@@ -1281,19 +1281,18 @@ export declare const HealthStatus: {
|
|
|
1281
1281
|
*/
|
|
1282
1282
|
export type HealthStatus = (typeof HealthStatus)[keyof typeof HealthStatus];
|
|
1283
1283
|
/**
|
|
1284
|
-
* @public
|
|
1285
1284
|
* <p>In a response to a <a href="https://docs.aws.amazon.com/cloud-map/latest/api/API_DiscoverInstances.html">DiscoverInstances</a> request,
|
|
1286
1285
|
* <code>HttpInstanceSummary</code> contains information about one instance that matches the values
|
|
1287
1286
|
* that you specified in the request.</p>
|
|
1287
|
+
* @public
|
|
1288
1288
|
*/
|
|
1289
1289
|
export interface HttpInstanceSummary {
|
|
1290
1290
|
/**
|
|
1291
|
-
* @public
|
|
1292
1291
|
* <p>The ID of an instance that matches the values that you specified in the request.</p>
|
|
1292
|
+
* @public
|
|
1293
1293
|
*/
|
|
1294
1294
|
InstanceId?: string;
|
|
1295
1295
|
/**
|
|
1296
|
-
* @public
|
|
1297
1296
|
* <p>
|
|
1298
1297
|
* <code></code>
|
|
1299
1298
|
* <code></code>
|
|
@@ -1302,23 +1301,24 @@ export interface HttpInstanceSummary {
|
|
|
1302
1301
|
* <p>The <code>HttpName</code> name of the namespace. It's found in the
|
|
1303
1302
|
* <code>HttpProperties</code> member of the <code>Properties</code> member of the
|
|
1304
1303
|
* namespace.</p>
|
|
1304
|
+
* @public
|
|
1305
1305
|
*/
|
|
1306
1306
|
NamespaceName?: string;
|
|
1307
1307
|
/**
|
|
1308
|
-
* @public
|
|
1309
1308
|
* <p>The name of the service that you specified when you registered the instance.</p>
|
|
1309
|
+
* @public
|
|
1310
1310
|
*/
|
|
1311
1311
|
ServiceName?: string;
|
|
1312
1312
|
/**
|
|
1313
|
-
* @public
|
|
1314
1313
|
* <p>If you configured health checking in the service, the current health status of the service
|
|
1315
1314
|
* instance.</p>
|
|
1315
|
+
* @public
|
|
1316
1316
|
*/
|
|
1317
1317
|
HealthStatus?: HealthStatus;
|
|
1318
1318
|
/**
|
|
1319
|
-
* @public
|
|
1320
1319
|
* <p>If you included any attributes when you registered the instance, the values of those
|
|
1321
1320
|
* attributes.</p>
|
|
1321
|
+
* @public
|
|
1322
1322
|
*/
|
|
1323
1323
|
Attributes?: Record<string, string>;
|
|
1324
1324
|
}
|
|
@@ -1327,24 +1327,24 @@ export interface HttpInstanceSummary {
|
|
|
1327
1327
|
*/
|
|
1328
1328
|
export interface DiscoverInstancesResponse {
|
|
1329
1329
|
/**
|
|
1330
|
-
* @public
|
|
1331
1330
|
* <p>A complex type that contains one <code>HttpInstanceSummary</code> for each registered
|
|
1332
1331
|
* instance.</p>
|
|
1332
|
+
* @public
|
|
1333
1333
|
*/
|
|
1334
1334
|
Instances?: HttpInstanceSummary[];
|
|
1335
1335
|
/**
|
|
1336
|
-
* @public
|
|
1337
1336
|
* <p>The increasing revision associated to the response Instances list. If a new instance is
|
|
1338
1337
|
* registered or deregistered, the <code>InstancesRevision</code> updates. The health status updates
|
|
1339
1338
|
* don't update <code>InstancesRevision</code>.</p>
|
|
1339
|
+
* @public
|
|
1340
1340
|
*/
|
|
1341
1341
|
InstancesRevision?: number;
|
|
1342
1342
|
}
|
|
1343
1343
|
/**
|
|
1344
|
-
* @public
|
|
1345
1344
|
* <p>The operation can't be completed because you've reached the quota for the number of
|
|
1346
1345
|
* 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
|
|
1347
1346
|
* <i>Cloud Map Developer Guide</i>.</p>
|
|
1347
|
+
* @public
|
|
1348
1348
|
*/
|
|
1349
1349
|
export declare class RequestLimitExceeded extends __BaseException {
|
|
1350
1350
|
readonly name: "RequestLimitExceeded";
|
|
@@ -1360,15 +1360,15 @@ export declare class RequestLimitExceeded extends __BaseException {
|
|
|
1360
1360
|
*/
|
|
1361
1361
|
export interface DiscoverInstancesRevisionRequest {
|
|
1362
1362
|
/**
|
|
1363
|
-
* @public
|
|
1364
1363
|
* <p>The <code>HttpName</code> name of the namespace. It's found in the
|
|
1365
1364
|
* <code>HttpProperties</code> member of the <code>Properties</code> member of the
|
|
1366
1365
|
* namespace.</p>
|
|
1366
|
+
* @public
|
|
1367
1367
|
*/
|
|
1368
1368
|
NamespaceName: string | undefined;
|
|
1369
1369
|
/**
|
|
1370
|
-
* @public
|
|
1371
1370
|
* <p>The name of the service that you specified when you registered the instance.</p>
|
|
1371
|
+
* @public
|
|
1372
1372
|
*/
|
|
1373
1373
|
ServiceName: string | undefined;
|
|
1374
1374
|
}
|
|
@@ -1377,40 +1377,40 @@ export interface DiscoverInstancesRevisionRequest {
|
|
|
1377
1377
|
*/
|
|
1378
1378
|
export interface DiscoverInstancesRevisionResponse {
|
|
1379
1379
|
/**
|
|
1380
|
-
* @public
|
|
1381
1380
|
* <p>The increasing revision associated to the response Instances list. If a new instance is
|
|
1382
1381
|
* registered or deregistered, the <code>InstancesRevision</code> updates. The health status updates
|
|
1383
1382
|
* don't update <code>InstancesRevision</code>.</p>
|
|
1383
|
+
* @public
|
|
1384
1384
|
*/
|
|
1385
1385
|
InstancesRevision?: number;
|
|
1386
1386
|
}
|
|
1387
1387
|
/**
|
|
1388
|
-
* @public
|
|
1389
1388
|
* <p>A complex type that contains information about changes to the Route 53 DNS records that
|
|
1390
1389
|
* Cloud Map creates when you register an instance.</p>
|
|
1390
|
+
* @public
|
|
1391
1391
|
*/
|
|
1392
1392
|
export interface DnsConfigChange {
|
|
1393
1393
|
/**
|
|
1394
|
-
* @public
|
|
1395
1394
|
* <p>An array that contains one <code>DnsRecord</code> object for each Route 53 record that you want
|
|
1396
1395
|
* Cloud Map to create when you register an instance.</p>
|
|
1396
|
+
* @public
|
|
1397
1397
|
*/
|
|
1398
1398
|
DnsRecords: DnsRecord[] | undefined;
|
|
1399
1399
|
}
|
|
1400
1400
|
/**
|
|
1401
|
-
* @public
|
|
1402
1401
|
* <p>A complex type that contains the ID for the Route 53 hosted zone that Cloud Map creates when
|
|
1403
1402
|
* you create a namespace.</p>
|
|
1403
|
+
* @public
|
|
1404
1404
|
*/
|
|
1405
1405
|
export interface DnsProperties {
|
|
1406
1406
|
/**
|
|
1407
|
-
* @public
|
|
1408
1407
|
* <p>The ID for the Route 53 hosted zone that Cloud Map creates when you create a namespace.</p>
|
|
1408
|
+
* @public
|
|
1409
1409
|
*/
|
|
1410
1410
|
HostedZoneId?: string;
|
|
1411
1411
|
/**
|
|
1412
|
-
* @public
|
|
1413
1412
|
* <p>Start of Authority (SOA) record for the hosted zone.</p>
|
|
1413
|
+
* @public
|
|
1414
1414
|
*/
|
|
1415
1415
|
SOA?: SOA;
|
|
1416
1416
|
}
|
|
@@ -1433,24 +1433,23 @@ export type FilterCondition = (typeof FilterCondition)[keyof typeof FilterCondit
|
|
|
1433
1433
|
*/
|
|
1434
1434
|
export interface GetInstanceRequest {
|
|
1435
1435
|
/**
|
|
1436
|
-
* @public
|
|
1437
1436
|
* <p>The ID of the service that the instance is associated with.</p>
|
|
1437
|
+
* @public
|
|
1438
1438
|
*/
|
|
1439
1439
|
ServiceId: string | undefined;
|
|
1440
1440
|
/**
|
|
1441
|
-
* @public
|
|
1442
1441
|
* <p>The ID of the instance that you want to get information about.</p>
|
|
1442
|
+
* @public
|
|
1443
1443
|
*/
|
|
1444
1444
|
InstanceId: string | undefined;
|
|
1445
1445
|
}
|
|
1446
1446
|
/**
|
|
1447
|
-
* @public
|
|
1448
1447
|
* <p>A complex type that contains information about an instance that Cloud Map creates when you
|
|
1449
1448
|
* submit a <code>RegisterInstance</code> request.</p>
|
|
1449
|
+
* @public
|
|
1450
1450
|
*/
|
|
1451
1451
|
export interface Instance {
|
|
1452
1452
|
/**
|
|
1453
|
-
* @public
|
|
1454
1453
|
* <p>An identifier that you want to associate with the instance. Note the following:</p>
|
|
1455
1454
|
* <ul>
|
|
1456
1455
|
* <li>
|
|
@@ -1476,20 +1475,20 @@ export interface Instance {
|
|
|
1476
1475
|
* </note>
|
|
1477
1476
|
* </li>
|
|
1478
1477
|
* </ul>
|
|
1478
|
+
* @public
|
|
1479
1479
|
*/
|
|
1480
1480
|
Id: string | undefined;
|
|
1481
1481
|
/**
|
|
1482
|
-
* @public
|
|
1483
1482
|
* <p>A unique string that identifies the request and that allows failed
|
|
1484
1483
|
* <code>RegisterInstance</code> requests to be retried without the risk of executing the operation
|
|
1485
1484
|
* twice. You must use a unique <code>CreatorRequestId</code> string every time you submit a
|
|
1486
1485
|
* <code>RegisterInstance</code> request if you're registering additional instances for the same
|
|
1487
1486
|
* namespace and service. <code>CreatorRequestId</code> can be any unique string (for example, a
|
|
1488
1487
|
* date/time stamp).</p>
|
|
1488
|
+
* @public
|
|
1489
1489
|
*/
|
|
1490
1490
|
CreatorRequestId?: string;
|
|
1491
1491
|
/**
|
|
1492
|
-
* @public
|
|
1493
1492
|
* <p>A string map that contains the following information for the service that you specify in
|
|
1494
1493
|
* <code>ServiceId</code>:</p>
|
|
1495
1494
|
* <ul>
|
|
@@ -1586,6 +1585,7 @@ export interface Instance {
|
|
|
1586
1585
|
* Route 53 health check when you created the service.</p>
|
|
1587
1586
|
* </dd>
|
|
1588
1587
|
* </dl>
|
|
1588
|
+
* @public
|
|
1589
1589
|
*/
|
|
1590
1590
|
Attributes?: Record<string, string>;
|
|
1591
1591
|
}
|
|
@@ -1594,8 +1594,8 @@ export interface Instance {
|
|
|
1594
1594
|
*/
|
|
1595
1595
|
export interface GetInstanceResponse {
|
|
1596
1596
|
/**
|
|
1597
|
-
* @public
|
|
1598
1597
|
* <p>A complex type that contains information about a specified instance.</p>
|
|
1598
|
+
* @public
|
|
1599
1599
|
*/
|
|
1600
1600
|
Instance?: Instance;
|
|
1601
1601
|
}
|
|
@@ -1604,12 +1604,11 @@ export interface GetInstanceResponse {
|
|
|
1604
1604
|
*/
|
|
1605
1605
|
export interface GetInstancesHealthStatusRequest {
|
|
1606
1606
|
/**
|
|
1607
|
-
* @public
|
|
1608
1607
|
* <p>The ID of the service that the instance is associated with.</p>
|
|
1608
|
+
* @public
|
|
1609
1609
|
*/
|
|
1610
1610
|
ServiceId: string | undefined;
|
|
1611
1611
|
/**
|
|
1612
|
-
* @public
|
|
1613
1612
|
* <p>An array that contains the IDs of all the instances that you want to get the health status
|
|
1614
1613
|
* for.</p>
|
|
1615
1614
|
* <p>If you omit <code>Instances</code>, Cloud Map returns the health status for all the
|
|
@@ -1618,21 +1617,22 @@ export interface GetInstancesHealthStatusRequest {
|
|
|
1618
1617
|
* <p>To get the IDs for the instances that you've registered by using a specified service,
|
|
1619
1618
|
* submit a <a href="https://docs.aws.amazon.com/cloud-map/latest/api/API_ListInstances.html">ListInstances</a> request.</p>
|
|
1620
1619
|
* </note>
|
|
1620
|
+
* @public
|
|
1621
1621
|
*/
|
|
1622
1622
|
Instances?: string[];
|
|
1623
1623
|
/**
|
|
1624
|
-
* @public
|
|
1625
1624
|
* <p>The maximum number of instances that you want Cloud Map to return in the response to a
|
|
1626
1625
|
* <code>GetInstancesHealthStatus</code> request. If you don't specify a value for
|
|
1627
1626
|
* <code>MaxResults</code>, Cloud Map returns up to 100 instances.</p>
|
|
1627
|
+
* @public
|
|
1628
1628
|
*/
|
|
1629
1629
|
MaxResults?: number;
|
|
1630
1630
|
/**
|
|
1631
|
-
* @public
|
|
1632
1631
|
* <p>For the first <code>GetInstancesHealthStatus</code> request, omit this value.</p>
|
|
1633
1632
|
* <p>If more than <code>MaxResults</code> instances match the specified criteria, you can submit
|
|
1634
1633
|
* another <code>GetInstancesHealthStatus</code> request to get the next group of results. Specify
|
|
1635
1634
|
* the value of <code>NextToken</code> from the previous response in the next request.</p>
|
|
1635
|
+
* @public
|
|
1636
1636
|
*/
|
|
1637
1637
|
NextToken?: string;
|
|
1638
1638
|
}
|
|
@@ -1641,16 +1641,16 @@ export interface GetInstancesHealthStatusRequest {
|
|
|
1641
1641
|
*/
|
|
1642
1642
|
export interface GetInstancesHealthStatusResponse {
|
|
1643
1643
|
/**
|
|
1644
|
-
* @public
|
|
1645
1644
|
* <p>A complex type that contains the IDs and the health status of the instances that you
|
|
1646
1645
|
* specified in the <code>GetInstancesHealthStatus</code> request.</p>
|
|
1646
|
+
* @public
|
|
1647
1647
|
*/
|
|
1648
1648
|
Status?: Record<string, HealthStatus>;
|
|
1649
1649
|
/**
|
|
1650
|
-
* @public
|
|
1651
1650
|
* <p>If more than <code>MaxResults</code> instances match the specified criteria, you can submit
|
|
1652
1651
|
* another <code>GetInstancesHealthStatus</code> request to get the next group of results. Specify
|
|
1653
1652
|
* the value of <code>NextToken</code> from the previous response in the next request.</p>
|
|
1653
|
+
* @public
|
|
1654
1654
|
*/
|
|
1655
1655
|
NextToken?: string;
|
|
1656
1656
|
}
|
|
@@ -1659,36 +1659,36 @@ export interface GetInstancesHealthStatusResponse {
|
|
|
1659
1659
|
*/
|
|
1660
1660
|
export interface GetNamespaceRequest {
|
|
1661
1661
|
/**
|
|
1662
|
-
* @public
|
|
1663
1662
|
* <p>The ID of the namespace that you want to get information about.</p>
|
|
1663
|
+
* @public
|
|
1664
1664
|
*/
|
|
1665
1665
|
Id: string | undefined;
|
|
1666
1666
|
}
|
|
1667
1667
|
/**
|
|
1668
|
-
* @public
|
|
1669
1668
|
* <p>A complex type that contains the name of an HTTP namespace.</p>
|
|
1669
|
+
* @public
|
|
1670
1670
|
*/
|
|
1671
1671
|
export interface HttpProperties {
|
|
1672
1672
|
/**
|
|
1673
|
-
* @public
|
|
1674
1673
|
* <p>The name of an HTTP namespace.</p>
|
|
1674
|
+
* @public
|
|
1675
1675
|
*/
|
|
1676
1676
|
HttpName?: string;
|
|
1677
1677
|
}
|
|
1678
1678
|
/**
|
|
1679
|
-
* @public
|
|
1680
1679
|
* <p>A complex type that contains information that's specific to the namespace type.</p>
|
|
1680
|
+
* @public
|
|
1681
1681
|
*/
|
|
1682
1682
|
export interface NamespaceProperties {
|
|
1683
1683
|
/**
|
|
1684
|
-
* @public
|
|
1685
1684
|
* <p>A complex type that contains the ID for the Route 53 hosted zone that Cloud Map creates when
|
|
1686
1685
|
* you create a namespace.</p>
|
|
1686
|
+
* @public
|
|
1687
1687
|
*/
|
|
1688
1688
|
DnsProperties?: DnsProperties;
|
|
1689
1689
|
/**
|
|
1690
|
-
* @public
|
|
1691
1690
|
* <p>A complex type that contains the name of an HTTP namespace.</p>
|
|
1691
|
+
* @public
|
|
1692
1692
|
*/
|
|
1693
1693
|
HttpProperties?: HttpProperties;
|
|
1694
1694
|
}
|
|
@@ -1706,27 +1706,26 @@ export declare const NamespaceType: {
|
|
|
1706
1706
|
*/
|
|
1707
1707
|
export type NamespaceType = (typeof NamespaceType)[keyof typeof NamespaceType];
|
|
1708
1708
|
/**
|
|
1709
|
-
* @public
|
|
1710
1709
|
* <p>A complex type that contains information about a specified namespace.</p>
|
|
1710
|
+
* @public
|
|
1711
1711
|
*/
|
|
1712
1712
|
export interface Namespace {
|
|
1713
1713
|
/**
|
|
1714
|
-
* @public
|
|
1715
1714
|
* <p>The ID of a namespace.</p>
|
|
1715
|
+
* @public
|
|
1716
1716
|
*/
|
|
1717
1717
|
Id?: string;
|
|
1718
1718
|
/**
|
|
1719
|
-
* @public
|
|
1720
1719
|
* <p>The Amazon Resource Name (ARN) that Cloud Map assigns to the namespace when you create it.</p>
|
|
1720
|
+
* @public
|
|
1721
1721
|
*/
|
|
1722
1722
|
Arn?: string;
|
|
1723
1723
|
/**
|
|
1724
|
-
* @public
|
|
1725
1724
|
* <p>The name of the namespace, such as <code>example.com</code>.</p>
|
|
1725
|
+
* @public
|
|
1726
1726
|
*/
|
|
1727
1727
|
Name?: string;
|
|
1728
1728
|
/**
|
|
1729
|
-
* @public
|
|
1730
1729
|
* <p>The type of the namespace. The methods for discovering instances depends on the value that
|
|
1731
1730
|
* you specify:</p>
|
|
1732
1731
|
* <dl>
|
|
@@ -1746,35 +1745,36 @@ export interface Namespace {
|
|
|
1746
1745
|
* <code>DiscoverInstances</code> API.</p>
|
|
1747
1746
|
* </dd>
|
|
1748
1747
|
* </dl>
|
|
1748
|
+
* @public
|
|
1749
1749
|
*/
|
|
1750
1750
|
Type?: NamespaceType;
|
|
1751
1751
|
/**
|
|
1752
|
-
* @public
|
|
1753
1752
|
* <p>The description that you specify for the namespace when you create it.</p>
|
|
1753
|
+
* @public
|
|
1754
1754
|
*/
|
|
1755
1755
|
Description?: string;
|
|
1756
1756
|
/**
|
|
1757
|
-
* @public
|
|
1758
1757
|
* <p>The number of services that are associated with the namespace.</p>
|
|
1758
|
+
* @public
|
|
1759
1759
|
*/
|
|
1760
1760
|
ServiceCount?: number;
|
|
1761
1761
|
/**
|
|
1762
|
-
* @public
|
|
1763
1762
|
* <p>A complex type that contains information that's specific to the type of the
|
|
1764
1763
|
* namespace.</p>
|
|
1764
|
+
* @public
|
|
1765
1765
|
*/
|
|
1766
1766
|
Properties?: NamespaceProperties;
|
|
1767
1767
|
/**
|
|
1768
|
-
* @public
|
|
1769
1768
|
* <p>The date that the namespace was created, in Unix date/time format and Coordinated Universal
|
|
1770
1769
|
* Time (UTC). The value of <code>CreateDate</code> is accurate to milliseconds. For example, the
|
|
1771
1770
|
* value <code>1516925490.087</code> represents Friday, January 26, 2018 12:11:30.087 AM.</p>
|
|
1771
|
+
* @public
|
|
1772
1772
|
*/
|
|
1773
1773
|
CreateDate?: Date;
|
|
1774
1774
|
/**
|
|
1775
|
-
* @public
|
|
1776
1775
|
* <p>A unique string that identifies the request and that allows failed requests to be retried
|
|
1777
1776
|
* without the risk of running an operation twice. </p>
|
|
1777
|
+
* @public
|
|
1778
1778
|
*/
|
|
1779
1779
|
CreatorRequestId?: string;
|
|
1780
1780
|
}
|
|
@@ -1783,8 +1783,8 @@ export interface Namespace {
|
|
|
1783
1783
|
*/
|
|
1784
1784
|
export interface GetNamespaceResponse {
|
|
1785
1785
|
/**
|
|
1786
|
-
* @public
|
|
1787
1786
|
* <p>A complex type that contains information about the specified namespace.</p>
|
|
1787
|
+
* @public
|
|
1788
1788
|
*/
|
|
1789
1789
|
Namespace?: Namespace;
|
|
1790
1790
|
}
|
|
@@ -1793,8 +1793,8 @@ export interface GetNamespaceResponse {
|
|
|
1793
1793
|
*/
|
|
1794
1794
|
export interface GetOperationRequest {
|
|
1795
1795
|
/**
|
|
1796
|
-
* @public
|
|
1797
1796
|
* <p>The ID of the operation that you want to get more information about.</p>
|
|
1797
|
+
* @public
|
|
1798
1798
|
*/
|
|
1799
1799
|
OperationId: string | undefined;
|
|
1800
1800
|
}
|
|
@@ -1842,22 +1842,21 @@ export declare const OperationType: {
|
|
|
1842
1842
|
*/
|
|
1843
1843
|
export type OperationType = (typeof OperationType)[keyof typeof OperationType];
|
|
1844
1844
|
/**
|
|
1845
|
-
* @public
|
|
1846
1845
|
* <p>A complex type that contains information about a specified operation.</p>
|
|
1846
|
+
* @public
|
|
1847
1847
|
*/
|
|
1848
1848
|
export interface Operation {
|
|
1849
1849
|
/**
|
|
1850
|
-
* @public
|
|
1851
1850
|
* <p>The ID of the operation that you want to get information about.</p>
|
|
1851
|
+
* @public
|
|
1852
1852
|
*/
|
|
1853
1853
|
Id?: string;
|
|
1854
1854
|
/**
|
|
1855
|
-
* @public
|
|
1856
1855
|
* <p>The name of the operation that's associated with the specified ID.</p>
|
|
1856
|
+
* @public
|
|
1857
1857
|
*/
|
|
1858
1858
|
Type?: OperationType;
|
|
1859
1859
|
/**
|
|
1860
|
-
* @public
|
|
1861
1860
|
* <p>The status of the operation. Values include the following:</p>
|
|
1862
1861
|
* <dl>
|
|
1863
1862
|
* <dt>SUBMITTED</dt>
|
|
@@ -1877,16 +1876,16 @@ export interface Operation {
|
|
|
1877
1876
|
* <p>The operation failed. For the failure reason, see <code>ErrorMessage</code>.</p>
|
|
1878
1877
|
* </dd>
|
|
1879
1878
|
* </dl>
|
|
1879
|
+
* @public
|
|
1880
1880
|
*/
|
|
1881
1881
|
Status?: OperationStatus;
|
|
1882
1882
|
/**
|
|
1883
|
-
* @public
|
|
1884
1883
|
* <p>If the value of <code>Status</code> is <code>FAIL</code>, the reason that the operation
|
|
1885
1884
|
* failed.</p>
|
|
1885
|
+
* @public
|
|
1886
1886
|
*/
|
|
1887
1887
|
ErrorMessage?: string;
|
|
1888
1888
|
/**
|
|
1889
|
-
* @public
|
|
1890
1889
|
* <p>The code associated with <code>ErrorMessage</code>. Values for <code>ErrorCode</code>
|
|
1891
1890
|
* include the following:</p>
|
|
1892
1891
|
* <ul>
|
|
@@ -1926,26 +1925,26 @@ export interface Operation {
|
|
|
1926
1925
|
* </p>
|
|
1927
1926
|
* </li>
|
|
1928
1927
|
* </ul>
|
|
1928
|
+
* @public
|
|
1929
1929
|
*/
|
|
1930
1930
|
ErrorCode?: string;
|
|
1931
1931
|
/**
|
|
1932
|
-
* @public
|
|
1933
1932
|
* <p>The date and time that the request was submitted, in Unix date/time format and Coordinated
|
|
1934
1933
|
* Universal Time (UTC). The value of <code>CreateDate</code> is accurate to milliseconds. For
|
|
1935
1934
|
* example, the value <code>1516925490.087</code> represents Friday, January 26, 2018 12:11:30.087
|
|
1936
1935
|
* AM.</p>
|
|
1936
|
+
* @public
|
|
1937
1937
|
*/
|
|
1938
1938
|
CreateDate?: Date;
|
|
1939
1939
|
/**
|
|
1940
|
-
* @public
|
|
1941
1940
|
* <p>The date and time that the value of <code>Status</code> changed to the current value, in
|
|
1942
1941
|
* Unix date/time format and Coordinated Universal Time (UTC). The value of <code>UpdateDate</code>
|
|
1943
1942
|
* is accurate to milliseconds. For example, the value <code>1516925490.087</code> represents
|
|
1944
1943
|
* Friday, January 26, 2018 12:11:30.087 AM.</p>
|
|
1944
|
+
* @public
|
|
1945
1945
|
*/
|
|
1946
1946
|
UpdateDate?: Date;
|
|
1947
1947
|
/**
|
|
1948
|
-
* @public
|
|
1949
1948
|
* <p>The name of the target entity that's associated with the operation:</p>
|
|
1950
1949
|
* <dl>
|
|
1951
1950
|
* <dt>NAMESPACE</dt>
|
|
@@ -1961,6 +1960,7 @@ export interface Operation {
|
|
|
1961
1960
|
* <p>The instance ID is returned in the <code>ResourceId</code> property.</p>
|
|
1962
1961
|
* </dd>
|
|
1963
1962
|
* </dl>
|
|
1963
|
+
* @public
|
|
1964
1964
|
*/
|
|
1965
1965
|
Targets?: Partial<Record<OperationTargetType, string>>;
|
|
1966
1966
|
}
|
|
@@ -1969,14 +1969,14 @@ export interface Operation {
|
|
|
1969
1969
|
*/
|
|
1970
1970
|
export interface GetOperationResponse {
|
|
1971
1971
|
/**
|
|
1972
|
-
* @public
|
|
1973
1972
|
* <p>A complex type that contains information about the operation.</p>
|
|
1973
|
+
* @public
|
|
1974
1974
|
*/
|
|
1975
1975
|
Operation?: Operation;
|
|
1976
1976
|
}
|
|
1977
1977
|
/**
|
|
1978
|
-
* @public
|
|
1979
1978
|
* <p>No operation exists with the specified ID.</p>
|
|
1979
|
+
* @public
|
|
1980
1980
|
*/
|
|
1981
1981
|
export declare class OperationNotFound extends __BaseException {
|
|
1982
1982
|
readonly name: "OperationNotFound";
|
|
@@ -1992,8 +1992,8 @@ export declare class OperationNotFound extends __BaseException {
|
|
|
1992
1992
|
*/
|
|
1993
1993
|
export interface GetServiceRequest {
|
|
1994
1994
|
/**
|
|
1995
|
-
* @public
|
|
1996
1995
|
* <p>The ID of the service that you want to get settings for.</p>
|
|
1996
|
+
* @public
|
|
1997
1997
|
*/
|
|
1998
1998
|
Id: string | undefined;
|
|
1999
1999
|
}
|
|
@@ -2002,37 +2002,36 @@ export interface GetServiceRequest {
|
|
|
2002
2002
|
*/
|
|
2003
2003
|
export interface GetServiceResponse {
|
|
2004
2004
|
/**
|
|
2005
|
-
* @public
|
|
2006
2005
|
* <p>A complex type that contains information about the service.</p>
|
|
2006
|
+
* @public
|
|
2007
2007
|
*/
|
|
2008
2008
|
Service?: Service;
|
|
2009
2009
|
}
|
|
2010
2010
|
/**
|
|
2011
|
-
* @public
|
|
2012
2011
|
* <p>Updated properties
|
|
2013
2012
|
* for the HTTP namespace.</p>
|
|
2013
|
+
* @public
|
|
2014
2014
|
*/
|
|
2015
2015
|
export interface HttpNamespaceChange {
|
|
2016
2016
|
/**
|
|
2017
|
-
* @public
|
|
2018
2017
|
* <p>An updated
|
|
2019
2018
|
* description for the HTTP namespace.</p>
|
|
2019
|
+
* @public
|
|
2020
2020
|
*/
|
|
2021
2021
|
Description: string | undefined;
|
|
2022
2022
|
}
|
|
2023
2023
|
/**
|
|
2024
|
-
* @public
|
|
2025
2024
|
* <p>A complex type that contains information about the instances that you registered by using a
|
|
2026
2025
|
* specified service.</p>
|
|
2026
|
+
* @public
|
|
2027
2027
|
*/
|
|
2028
2028
|
export interface InstanceSummary {
|
|
2029
2029
|
/**
|
|
2030
|
-
* @public
|
|
2031
2030
|
* <p>The ID for an instance that you created by using a specified service.</p>
|
|
2031
|
+
* @public
|
|
2032
2032
|
*/
|
|
2033
2033
|
Id?: string;
|
|
2034
2034
|
/**
|
|
2035
|
-
* @public
|
|
2036
2035
|
* <p>A string map that contains the following information:</p>
|
|
2037
2036
|
* <ul>
|
|
2038
2037
|
* <li>
|
|
@@ -2084,6 +2083,7 @@ export interface InstanceSummary {
|
|
|
2084
2083
|
* sends requests to.</p>
|
|
2085
2084
|
* </dd>
|
|
2086
2085
|
* </dl>
|
|
2086
|
+
* @public
|
|
2087
2087
|
*/
|
|
2088
2088
|
Attributes?: Record<string, string>;
|
|
2089
2089
|
}
|
|
@@ -2092,23 +2092,23 @@ export interface InstanceSummary {
|
|
|
2092
2092
|
*/
|
|
2093
2093
|
export interface ListInstancesRequest {
|
|
2094
2094
|
/**
|
|
2095
|
-
* @public
|
|
2096
2095
|
* <p>The ID of the service that you want to list instances for.</p>
|
|
2096
|
+
* @public
|
|
2097
2097
|
*/
|
|
2098
2098
|
ServiceId: string | undefined;
|
|
2099
2099
|
/**
|
|
2100
|
-
* @public
|
|
2101
2100
|
* <p>For the first <code>ListInstances</code> request, omit this value.</p>
|
|
2102
2101
|
* <p>If more than <code>MaxResults</code> instances match the specified criteria, you can submit
|
|
2103
2102
|
* another <code>ListInstances</code> request to get the next group of results. Specify the value of
|
|
2104
2103
|
* <code>NextToken</code> from the previous response in the next request.</p>
|
|
2104
|
+
* @public
|
|
2105
2105
|
*/
|
|
2106
2106
|
NextToken?: string;
|
|
2107
2107
|
/**
|
|
2108
|
-
* @public
|
|
2109
2108
|
* <p>The maximum number of instances that you want Cloud Map to return in the response to a
|
|
2110
2109
|
* <code>ListInstances</code> request. If you don't specify a value for <code>MaxResults</code>,
|
|
2111
2110
|
* Cloud Map returns up to 100 instances.</p>
|
|
2111
|
+
* @public
|
|
2112
2112
|
*/
|
|
2113
2113
|
MaxResults?: number;
|
|
2114
2114
|
}
|
|
@@ -2117,16 +2117,16 @@ export interface ListInstancesRequest {
|
|
|
2117
2117
|
*/
|
|
2118
2118
|
export interface ListInstancesResponse {
|
|
2119
2119
|
/**
|
|
2120
|
-
* @public
|
|
2121
2120
|
* <p>Summary information about the instances that are associated with the specified
|
|
2122
2121
|
* service.</p>
|
|
2122
|
+
* @public
|
|
2123
2123
|
*/
|
|
2124
2124
|
Instances?: InstanceSummary[];
|
|
2125
2125
|
/**
|
|
2126
|
-
* @public
|
|
2127
2126
|
* <p>If more than <code>MaxResults</code> instances match the specified criteria, you can submit
|
|
2128
2127
|
* another <code>ListInstances</code> request to get the next group of results. Specify the value of
|
|
2129
2128
|
* <code>NextToken</code> from the previous response in the next request.</p>
|
|
2129
|
+
* @public
|
|
2130
2130
|
*/
|
|
2131
2131
|
NextToken?: string;
|
|
2132
2132
|
}
|
|
@@ -2144,13 +2144,12 @@ export declare const NamespaceFilterName: {
|
|
|
2144
2144
|
*/
|
|
2145
2145
|
export type NamespaceFilterName = (typeof NamespaceFilterName)[keyof typeof NamespaceFilterName];
|
|
2146
2146
|
/**
|
|
2147
|
-
* @public
|
|
2148
2147
|
* <p>A complex type that identifies the namespaces that you want to list. You can choose to list
|
|
2149
2148
|
* public or private namespaces.</p>
|
|
2149
|
+
* @public
|
|
2150
2150
|
*/
|
|
2151
2151
|
export interface NamespaceFilter {
|
|
2152
2152
|
/**
|
|
2153
|
-
* @public
|
|
2154
2153
|
* <p>Specify the namespaces that you want to get using one of the following.</p>
|
|
2155
2154
|
* <ul>
|
|
2156
2155
|
* <li>
|
|
@@ -2166,10 +2165,10 @@ export interface NamespaceFilter {
|
|
|
2166
2165
|
* <code>HTTP_NAME</code>: Gets the namespaces with the specified HTTP name.</p>
|
|
2167
2166
|
* </li>
|
|
2168
2167
|
* </ul>
|
|
2168
|
+
* @public
|
|
2169
2169
|
*/
|
|
2170
2170
|
Name: NamespaceFilterName | undefined;
|
|
2171
2171
|
/**
|
|
2172
|
-
* @public
|
|
2173
2172
|
* <p>Specify the values that are applicable to the value that you specify for
|
|
2174
2173
|
* <code>Name</code>.</p>
|
|
2175
2174
|
* <ul>
|
|
@@ -2189,10 +2188,10 @@ export interface NamespaceFilter {
|
|
|
2189
2188
|
* <code>Namespace.Properties.HttpProperties.HttpName</code>.</p>
|
|
2190
2189
|
* </li>
|
|
2191
2190
|
* </ul>
|
|
2191
|
+
* @public
|
|
2192
2192
|
*/
|
|
2193
2193
|
Values: string[] | undefined;
|
|
2194
2194
|
/**
|
|
2195
|
-
* @public
|
|
2196
2195
|
* <p>Specify the operator that you want to use to determine whether a namespace matches the
|
|
2197
2196
|
* specified value. Valid values for <code>Condition</code> are one of the following.</p>
|
|
2198
2197
|
* <ul>
|
|
@@ -2209,6 +2208,7 @@ export interface NamespaceFilter {
|
|
|
2209
2208
|
* for <code>TYPE</code>, <code>NAME</code>, and <code>HTTP_NAME</code>.</p>
|
|
2210
2209
|
* </li>
|
|
2211
2210
|
* </ul>
|
|
2211
|
+
* @public
|
|
2212
2212
|
*/
|
|
2213
2213
|
Condition?: FilterCondition;
|
|
2214
2214
|
}
|
|
@@ -2217,7 +2217,6 @@ export interface NamespaceFilter {
|
|
|
2217
2217
|
*/
|
|
2218
2218
|
export interface ListNamespacesRequest {
|
|
2219
2219
|
/**
|
|
2220
|
-
* @public
|
|
2221
2220
|
* <p>For the first <code>ListNamespaces</code> request, omit this value.</p>
|
|
2222
2221
|
* <p>If the response contains <code>NextToken</code>, submit another <code>ListNamespaces</code>
|
|
2223
2222
|
* request to get the next group of results. Specify the value of <code>NextToken</code> from the
|
|
@@ -2228,67 +2227,68 @@ export interface ListNamespacesRequest {
|
|
|
2228
2227
|
* namespaces matched the specified criteria but that subsequent groups of <code>MaxResults</code>
|
|
2229
2228
|
* namespaces do contain namespaces that match the criteria.</p>
|
|
2230
2229
|
* </note>
|
|
2230
|
+
* @public
|
|
2231
2231
|
*/
|
|
2232
2232
|
NextToken?: string;
|
|
2233
2233
|
/**
|
|
2234
|
-
* @public
|
|
2235
2234
|
* <p>The maximum number of namespaces that you want Cloud Map to return in the response to a
|
|
2236
2235
|
* <code>ListNamespaces</code> request. If you don't specify a value for <code>MaxResults</code>,
|
|
2237
2236
|
* Cloud Map returns up to 100 namespaces.</p>
|
|
2237
|
+
* @public
|
|
2238
2238
|
*/
|
|
2239
2239
|
MaxResults?: number;
|
|
2240
2240
|
/**
|
|
2241
|
-
* @public
|
|
2242
2241
|
* <p>A complex type that contains specifications for the namespaces that you want to list.</p>
|
|
2243
2242
|
* <p>If you specify more than one filter, a namespace must match all filters to be returned by
|
|
2244
2243
|
* <code>ListNamespaces</code>.</p>
|
|
2244
|
+
* @public
|
|
2245
2245
|
*/
|
|
2246
2246
|
Filters?: NamespaceFilter[];
|
|
2247
2247
|
}
|
|
2248
2248
|
/**
|
|
2249
|
-
* @public
|
|
2250
2249
|
* <p>A complex type that contains information about a namespace.</p>
|
|
2250
|
+
* @public
|
|
2251
2251
|
*/
|
|
2252
2252
|
export interface NamespaceSummary {
|
|
2253
2253
|
/**
|
|
2254
|
-
* @public
|
|
2255
2254
|
* <p>The ID of the namespace.</p>
|
|
2255
|
+
* @public
|
|
2256
2256
|
*/
|
|
2257
2257
|
Id?: string;
|
|
2258
2258
|
/**
|
|
2259
|
-
* @public
|
|
2260
2259
|
* <p>The Amazon Resource Name (ARN) that Cloud Map assigns to the namespace when you create it.</p>
|
|
2260
|
+
* @public
|
|
2261
2261
|
*/
|
|
2262
2262
|
Arn?: string;
|
|
2263
2263
|
/**
|
|
2264
|
-
* @public
|
|
2265
2264
|
* <p>The name of the namespace. When you create a namespace, Cloud Map automatically creates a
|
|
2266
2265
|
* Route 53 hosted zone that has the same name as the namespace.</p>
|
|
2266
|
+
* @public
|
|
2267
2267
|
*/
|
|
2268
2268
|
Name?: string;
|
|
2269
2269
|
/**
|
|
2270
|
-
* @public
|
|
2271
2270
|
* <p>The type of the namespace, either public or private.</p>
|
|
2271
|
+
* @public
|
|
2272
2272
|
*/
|
|
2273
2273
|
Type?: NamespaceType;
|
|
2274
2274
|
/**
|
|
2275
|
-
* @public
|
|
2276
2275
|
* <p>A description for the namespace.</p>
|
|
2276
|
+
* @public
|
|
2277
2277
|
*/
|
|
2278
2278
|
Description?: string;
|
|
2279
2279
|
/**
|
|
2280
|
-
* @public
|
|
2281
2280
|
* <p>The number of services that were created using the namespace.</p>
|
|
2281
|
+
* @public
|
|
2282
2282
|
*/
|
|
2283
2283
|
ServiceCount?: number;
|
|
2284
2284
|
/**
|
|
2285
|
-
* @public
|
|
2286
2285
|
* <p>The properties of the namespace.</p>
|
|
2286
|
+
* @public
|
|
2287
2287
|
*/
|
|
2288
2288
|
Properties?: NamespaceProperties;
|
|
2289
2289
|
/**
|
|
2290
|
-
* @public
|
|
2291
2290
|
* <p>The date and time that the namespace was created.</p>
|
|
2291
|
+
* @public
|
|
2292
2292
|
*/
|
|
2293
2293
|
CreateDate?: Date;
|
|
2294
2294
|
}
|
|
@@ -2297,13 +2297,12 @@ export interface NamespaceSummary {
|
|
|
2297
2297
|
*/
|
|
2298
2298
|
export interface ListNamespacesResponse {
|
|
2299
2299
|
/**
|
|
2300
|
-
* @public
|
|
2301
2300
|
* <p>An array that contains one <code>NamespaceSummary</code> object for each namespace that
|
|
2302
2301
|
* matches the specified filter criteria.</p>
|
|
2302
|
+
* @public
|
|
2303
2303
|
*/
|
|
2304
2304
|
Namespaces?: NamespaceSummary[];
|
|
2305
2305
|
/**
|
|
2306
|
-
* @public
|
|
2307
2306
|
* <p>If the response contains <code>NextToken</code>, submit another <code>ListNamespaces</code>
|
|
2308
2307
|
* request to get the next group of results. Specify the value of <code>NextToken</code> from the
|
|
2309
2308
|
* previous response in the next request.</p>
|
|
@@ -2313,6 +2312,7 @@ export interface ListNamespacesResponse {
|
|
|
2313
2312
|
* namespaces matched the specified criteria but that subsequent groups of <code>MaxResults</code>
|
|
2314
2313
|
* namespaces do contain namespaces that match the criteria.</p>
|
|
2315
2314
|
* </note>
|
|
2315
|
+
* @public
|
|
2316
2316
|
*/
|
|
2317
2317
|
NextToken?: string;
|
|
2318
2318
|
}
|
|
@@ -2332,12 +2332,11 @@ export declare const OperationFilterName: {
|
|
|
2332
2332
|
*/
|
|
2333
2333
|
export type OperationFilterName = (typeof OperationFilterName)[keyof typeof OperationFilterName];
|
|
2334
2334
|
/**
|
|
2335
|
-
* @public
|
|
2336
2335
|
* <p>A complex type that lets you select the operations that you want to list.</p>
|
|
2336
|
+
* @public
|
|
2337
2337
|
*/
|
|
2338
2338
|
export interface OperationFilter {
|
|
2339
2339
|
/**
|
|
2340
|
-
* @public
|
|
2341
2340
|
* <p>Specify the operations that you want to get:</p>
|
|
2342
2341
|
* <ul>
|
|
2343
2342
|
* <li>
|
|
@@ -2366,10 +2365,10 @@ export interface OperationFilter {
|
|
|
2366
2365
|
* specified date/time range. </p>
|
|
2367
2366
|
* </li>
|
|
2368
2367
|
* </ul>
|
|
2368
|
+
* @public
|
|
2369
2369
|
*/
|
|
2370
2370
|
Name: OperationFilterName | undefined;
|
|
2371
2371
|
/**
|
|
2372
|
-
* @public
|
|
2373
2372
|
* <p>Specify values that are applicable to the value that you specify for <code>Name</code>: </p>
|
|
2374
2373
|
* <ul>
|
|
2375
2374
|
* <li>
|
|
@@ -2399,10 +2398,10 @@ export interface OperationFilter {
|
|
|
2399
2398
|
* value.</p>
|
|
2400
2399
|
* </li>
|
|
2401
2400
|
* </ul>
|
|
2401
|
+
* @public
|
|
2402
2402
|
*/
|
|
2403
2403
|
Values: string[] | undefined;
|
|
2404
2404
|
/**
|
|
2405
|
-
* @public
|
|
2406
2405
|
* <p>The operator that you want to use to determine whether an operation matches the specified
|
|
2407
2406
|
* value. Valid values for condition include:</p>
|
|
2408
2407
|
* <ul>
|
|
@@ -2427,6 +2426,7 @@ export interface OperationFilter {
|
|
|
2427
2426
|
* is supported for <code>UPDATE_DATE</code>. </p>
|
|
2428
2427
|
* </li>
|
|
2429
2428
|
* </ul>
|
|
2429
|
+
* @public
|
|
2430
2430
|
*/
|
|
2431
2431
|
Condition?: FilterCondition;
|
|
2432
2432
|
}
|
|
@@ -2435,7 +2435,6 @@ export interface OperationFilter {
|
|
|
2435
2435
|
*/
|
|
2436
2436
|
export interface ListOperationsRequest {
|
|
2437
2437
|
/**
|
|
2438
|
-
* @public
|
|
2439
2438
|
* <p>For the first <code>ListOperations</code> request, omit this value.</p>
|
|
2440
2439
|
* <p>If the response contains <code>NextToken</code>, submit another <code>ListOperations</code>
|
|
2441
2440
|
* request to get the next group of results. Specify the value of <code>NextToken</code> from the
|
|
@@ -2446,37 +2445,37 @@ export interface ListOperationsRequest {
|
|
|
2446
2445
|
* operations matched the specified criteria but that subsequent groups of <code>MaxResults</code>
|
|
2447
2446
|
* operations do contain operations that match the criteria.</p>
|
|
2448
2447
|
* </note>
|
|
2448
|
+
* @public
|
|
2449
2449
|
*/
|
|
2450
2450
|
NextToken?: string;
|
|
2451
2451
|
/**
|
|
2452
|
-
* @public
|
|
2453
2452
|
* <p>The maximum number of items that you want Cloud Map to return in the response to a
|
|
2454
2453
|
* <code>ListOperations</code> request. If you don't specify a value for <code>MaxResults</code>,
|
|
2455
2454
|
* Cloud Map returns up to 100 operations.</p>
|
|
2455
|
+
* @public
|
|
2456
2456
|
*/
|
|
2457
2457
|
MaxResults?: number;
|
|
2458
2458
|
/**
|
|
2459
|
-
* @public
|
|
2460
2459
|
* <p>A complex type that contains specifications for the operations that you want to list, for
|
|
2461
2460
|
* example, operations that you started between a specified start date and end date.</p>
|
|
2462
2461
|
* <p>If you specify more than one filter, an operation must match all filters to be returned by
|
|
2463
2462
|
* <code>ListOperations</code>.</p>
|
|
2463
|
+
* @public
|
|
2464
2464
|
*/
|
|
2465
2465
|
Filters?: OperationFilter[];
|
|
2466
2466
|
}
|
|
2467
2467
|
/**
|
|
2468
|
-
* @public
|
|
2469
2468
|
* <p>A complex type that contains information about an operation that matches the criteria that
|
|
2470
2469
|
* you specified in a <a href="https://docs.aws.amazon.com/cloud-map/latest/api/API_ListOperations.html">ListOperations</a> request.</p>
|
|
2470
|
+
* @public
|
|
2471
2471
|
*/
|
|
2472
2472
|
export interface OperationSummary {
|
|
2473
2473
|
/**
|
|
2474
|
-
* @public
|
|
2475
2474
|
* <p>The ID for an operation.</p>
|
|
2475
|
+
* @public
|
|
2476
2476
|
*/
|
|
2477
2477
|
Id?: string;
|
|
2478
2478
|
/**
|
|
2479
|
-
* @public
|
|
2480
2479
|
* <p>The status of the operation. Values include the following:</p>
|
|
2481
2480
|
* <ul>
|
|
2482
2481
|
* <li>
|
|
@@ -2498,6 +2497,7 @@ export interface OperationSummary {
|
|
|
2498
2497
|
* <code>ErrorMessage</code>.</p>
|
|
2499
2498
|
* </li>
|
|
2500
2499
|
* </ul>
|
|
2500
|
+
* @public
|
|
2501
2501
|
*/
|
|
2502
2502
|
Status?: OperationStatus;
|
|
2503
2503
|
}
|
|
@@ -2506,12 +2506,11 @@ export interface OperationSummary {
|
|
|
2506
2506
|
*/
|
|
2507
2507
|
export interface ListOperationsResponse {
|
|
2508
2508
|
/**
|
|
2509
|
-
* @public
|
|
2510
2509
|
* <p>Summary information about the operations that match the specified criteria.</p>
|
|
2510
|
+
* @public
|
|
2511
2511
|
*/
|
|
2512
2512
|
Operations?: OperationSummary[];
|
|
2513
2513
|
/**
|
|
2514
|
-
* @public
|
|
2515
2514
|
* <p>If the response contains <code>NextToken</code>, submit another <code>ListOperations</code>
|
|
2516
2515
|
* request to get the next group of results. Specify the value of <code>NextToken</code> from the
|
|
2517
2516
|
* previous response in the next request.</p>
|
|
@@ -2521,6 +2520,7 @@ export interface ListOperationsResponse {
|
|
|
2521
2520
|
* operations matched the specified criteria but that subsequent groups of <code>MaxResults</code>
|
|
2522
2521
|
* operations do contain operations that match the criteria.</p>
|
|
2523
2522
|
* </note>
|
|
2523
|
+
* @public
|
|
2524
2524
|
*/
|
|
2525
2525
|
NextToken?: string;
|
|
2526
2526
|
}
|
|
@@ -2536,24 +2536,23 @@ export declare const ServiceFilterName: {
|
|
|
2536
2536
|
*/
|
|
2537
2537
|
export type ServiceFilterName = (typeof ServiceFilterName)[keyof typeof ServiceFilterName];
|
|
2538
2538
|
/**
|
|
2539
|
-
* @public
|
|
2540
2539
|
* <p>A complex type that lets you specify the namespaces that you want to list services
|
|
2541
2540
|
* for.</p>
|
|
2541
|
+
* @public
|
|
2542
2542
|
*/
|
|
2543
2543
|
export interface ServiceFilter {
|
|
2544
2544
|
/**
|
|
2545
|
-
* @public
|
|
2546
2545
|
* <p>Specify <code>NAMESPACE_ID</code>.</p>
|
|
2546
|
+
* @public
|
|
2547
2547
|
*/
|
|
2548
2548
|
Name: ServiceFilterName | undefined;
|
|
2549
2549
|
/**
|
|
2550
|
-
* @public
|
|
2551
2550
|
* <p>The values that are applicable to the value that you specify for <code>Condition</code> to
|
|
2552
2551
|
* filter the list of services.</p>
|
|
2552
|
+
* @public
|
|
2553
2553
|
*/
|
|
2554
2554
|
Values: string[] | undefined;
|
|
2555
2555
|
/**
|
|
2556
|
-
* @public
|
|
2557
2556
|
* <p>The operator that you want to use to determine whether a service is returned by
|
|
2558
2557
|
* <code>ListServices</code>. Valid values for <code>Condition</code> include the following:</p>
|
|
2559
2558
|
* <ul>
|
|
@@ -2563,6 +2562,7 @@ export interface ServiceFilter {
|
|
|
2563
2562
|
* <code>Values</code>. <code>EQ</code> is the default condition and can be omitted.</p>
|
|
2564
2563
|
* </li>
|
|
2565
2564
|
* </ul>
|
|
2565
|
+
* @public
|
|
2566
2566
|
*/
|
|
2567
2567
|
Condition?: FilterCondition;
|
|
2568
2568
|
}
|
|
@@ -2571,7 +2571,6 @@ export interface ServiceFilter {
|
|
|
2571
2571
|
*/
|
|
2572
2572
|
export interface ListServicesRequest {
|
|
2573
2573
|
/**
|
|
2574
|
-
* @public
|
|
2575
2574
|
* <p>For the first <code>ListServices</code> request, omit this value.</p>
|
|
2576
2575
|
* <p>If the response contains <code>NextToken</code>, submit another <code>ListServices</code>
|
|
2577
2576
|
* request to get the next group of results. Specify the value of <code>NextToken</code> from the
|
|
@@ -2582,46 +2581,46 @@ export interface ListServicesRequest {
|
|
|
2582
2581
|
* matched the specified criteria but that subsequent groups of <code>MaxResults</code> services do
|
|
2583
2582
|
* contain services that match the criteria.</p>
|
|
2584
2583
|
* </note>
|
|
2584
|
+
* @public
|
|
2585
2585
|
*/
|
|
2586
2586
|
NextToken?: string;
|
|
2587
2587
|
/**
|
|
2588
|
-
* @public
|
|
2589
2588
|
* <p>The maximum number of services that you want Cloud Map to return in the response to a
|
|
2590
2589
|
* <code>ListServices</code> request. If you don't specify a value for <code>MaxResults</code>,
|
|
2591
2590
|
* Cloud Map returns up to 100 services.</p>
|
|
2591
|
+
* @public
|
|
2592
2592
|
*/
|
|
2593
2593
|
MaxResults?: number;
|
|
2594
2594
|
/**
|
|
2595
|
-
* @public
|
|
2596
2595
|
* <p>A complex type that contains specifications for the namespaces that you want to list
|
|
2597
2596
|
* services for. </p>
|
|
2598
2597
|
* <p>If you specify more than one filter, an operation must match all filters to be returned by
|
|
2599
2598
|
* <code>ListServices</code>.</p>
|
|
2599
|
+
* @public
|
|
2600
2600
|
*/
|
|
2601
2601
|
Filters?: ServiceFilter[];
|
|
2602
2602
|
}
|
|
2603
2603
|
/**
|
|
2604
|
-
* @public
|
|
2605
2604
|
* <p>A complex type that contains information about a specified service.</p>
|
|
2605
|
+
* @public
|
|
2606
2606
|
*/
|
|
2607
2607
|
export interface ServiceSummary {
|
|
2608
2608
|
/**
|
|
2609
|
-
* @public
|
|
2610
2609
|
* <p>The ID that Cloud Map assigned to the service when you created it.</p>
|
|
2610
|
+
* @public
|
|
2611
2611
|
*/
|
|
2612
2612
|
Id?: string;
|
|
2613
2613
|
/**
|
|
2614
|
-
* @public
|
|
2615
2614
|
* <p>The Amazon Resource Name (ARN) that Cloud Map assigns to the service when you create it.</p>
|
|
2615
|
+
* @public
|
|
2616
2616
|
*/
|
|
2617
2617
|
Arn?: string;
|
|
2618
2618
|
/**
|
|
2619
|
-
* @public
|
|
2620
2619
|
* <p>The name of the service.</p>
|
|
2620
|
+
* @public
|
|
2621
2621
|
*/
|
|
2622
2622
|
Name?: string;
|
|
2623
2623
|
/**
|
|
2624
|
-
* @public
|
|
2625
2624
|
* <p>Describes the systems that can be used to discover the service instances.</p>
|
|
2626
2625
|
* <dl>
|
|
2627
2626
|
* <dt>DNS_HTTP</dt>
|
|
@@ -2639,36 +2638,36 @@ export interface ServiceSummary {
|
|
|
2639
2638
|
* <p>Reserved.</p>
|
|
2640
2639
|
* </dd>
|
|
2641
2640
|
* </dl>
|
|
2641
|
+
* @public
|
|
2642
2642
|
*/
|
|
2643
2643
|
Type?: ServiceType;
|
|
2644
2644
|
/**
|
|
2645
|
-
* @public
|
|
2646
2645
|
* <p>The description that you specify when you create the service.</p>
|
|
2646
|
+
* @public
|
|
2647
2647
|
*/
|
|
2648
2648
|
Description?: string;
|
|
2649
2649
|
/**
|
|
2650
|
-
* @public
|
|
2651
2650
|
* <p>The number of instances that are currently associated with the service. Instances that were
|
|
2652
2651
|
* previously associated with the service but that are deleted aren't included in the count. The
|
|
2653
2652
|
* count might not reflect pending registrations and deregistrations.</p>
|
|
2653
|
+
* @public
|
|
2654
2654
|
*/
|
|
2655
2655
|
InstanceCount?: number;
|
|
2656
2656
|
/**
|
|
2657
|
-
* @public
|
|
2658
2657
|
* <p>Information about the Route 53 DNS records that you want Cloud Map to create when you register
|
|
2659
2658
|
* an instance.</p>
|
|
2659
|
+
* @public
|
|
2660
2660
|
*/
|
|
2661
2661
|
DnsConfig?: DnsConfig;
|
|
2662
2662
|
/**
|
|
2663
|
-
* @public
|
|
2664
2663
|
* <p>
|
|
2665
2664
|
* <i>Public DNS and HTTP namespaces only.</i> Settings for an optional health
|
|
2666
2665
|
* check. If you specify settings for a health check, Cloud Map associates the health check with
|
|
2667
2666
|
* the records that you specify in <code>DnsConfig</code>.</p>
|
|
2667
|
+
* @public
|
|
2668
2668
|
*/
|
|
2669
2669
|
HealthCheckConfig?: HealthCheckConfig;
|
|
2670
2670
|
/**
|
|
2671
|
-
* @public
|
|
2672
2671
|
* <p>Information about an optional custom health check. A custom health check, which requires
|
|
2673
2672
|
* that you use a third-party health checker to evaluate the health of your resources, is useful in
|
|
2674
2673
|
* the following circumstances:</p>
|
|
@@ -2688,11 +2687,12 @@ export interface ServiceSummary {
|
|
|
2688
2687
|
* <p>If you specify a health check configuration, you can specify either
|
|
2689
2688
|
* <code>HealthCheckCustomConfig</code> or <code>HealthCheckConfig</code> but not both.</p>
|
|
2690
2689
|
* </important>
|
|
2690
|
+
* @public
|
|
2691
2691
|
*/
|
|
2692
2692
|
HealthCheckCustomConfig?: HealthCheckCustomConfig;
|
|
2693
2693
|
/**
|
|
2694
|
-
* @public
|
|
2695
2694
|
* <p>The date and time that the service was created.</p>
|
|
2695
|
+
* @public
|
|
2696
2696
|
*/
|
|
2697
2697
|
CreateDate?: Date;
|
|
2698
2698
|
}
|
|
@@ -2701,13 +2701,12 @@ export interface ServiceSummary {
|
|
|
2701
2701
|
*/
|
|
2702
2702
|
export interface ListServicesResponse {
|
|
2703
2703
|
/**
|
|
2704
|
-
* @public
|
|
2705
2704
|
* <p>An array that contains one <code>ServiceSummary</code> object for each service that matches
|
|
2706
2705
|
* the specified filter criteria.</p>
|
|
2706
|
+
* @public
|
|
2707
2707
|
*/
|
|
2708
2708
|
Services?: ServiceSummary[];
|
|
2709
2709
|
/**
|
|
2710
|
-
* @public
|
|
2711
2710
|
* <p>If the response contains <code>NextToken</code>, submit another <code>ListServices</code>
|
|
2712
2711
|
* request to get the next group of results. Specify the value of <code>NextToken</code> from the
|
|
2713
2712
|
* previous response in the next request.</p>
|
|
@@ -2717,6 +2716,7 @@ export interface ListServicesResponse {
|
|
|
2717
2716
|
* matched the specified criteria but that subsequent groups of <code>MaxResults</code> services do
|
|
2718
2717
|
* contain services that match the criteria.</p>
|
|
2719
2718
|
* </note>
|
|
2719
|
+
* @public
|
|
2720
2720
|
*/
|
|
2721
2721
|
NextToken?: string;
|
|
2722
2722
|
}
|
|
@@ -2725,8 +2725,8 @@ export interface ListServicesResponse {
|
|
|
2725
2725
|
*/
|
|
2726
2726
|
export interface ListTagsForResourceRequest {
|
|
2727
2727
|
/**
|
|
2728
|
-
* @public
|
|
2729
2728
|
* <p>The Amazon Resource Name (ARN) of the resource that you want to retrieve tags for.</p>
|
|
2729
|
+
* @public
|
|
2730
2730
|
*/
|
|
2731
2731
|
ResourceARN: string | undefined;
|
|
2732
2732
|
}
|
|
@@ -2735,14 +2735,14 @@ export interface ListTagsForResourceRequest {
|
|
|
2735
2735
|
*/
|
|
2736
2736
|
export interface ListTagsForResourceResponse {
|
|
2737
2737
|
/**
|
|
2738
|
-
* @public
|
|
2739
2738
|
* <p>The tags that are assigned to the resource.</p>
|
|
2739
|
+
* @public
|
|
2740
2740
|
*/
|
|
2741
2741
|
Tags?: Tag[];
|
|
2742
2742
|
}
|
|
2743
2743
|
/**
|
|
2744
|
-
* @public
|
|
2745
2744
|
* <p>The operation can't be completed because the resource was not found.</p>
|
|
2745
|
+
* @public
|
|
2746
2746
|
*/
|
|
2747
2747
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
2748
2748
|
readonly name: "ResourceNotFoundException";
|
|
@@ -2754,107 +2754,107 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
2754
2754
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
2755
2755
|
}
|
|
2756
2756
|
/**
|
|
2757
|
-
* @public
|
|
2758
2757
|
* <p>Updated Start of
|
|
2759
2758
|
* Authority (SOA) properties for a public or private DNS namespace.</p>
|
|
2759
|
+
* @public
|
|
2760
2760
|
*/
|
|
2761
2761
|
export interface SOAChange {
|
|
2762
2762
|
/**
|
|
2763
|
-
* @public
|
|
2764
2763
|
* <p>The updated time to
|
|
2765
2764
|
* live (TTL) for purposes of negative caching.</p>
|
|
2765
|
+
* @public
|
|
2766
2766
|
*/
|
|
2767
2767
|
TTL: number | undefined;
|
|
2768
2768
|
}
|
|
2769
2769
|
/**
|
|
2770
|
-
* @public
|
|
2771
2770
|
* <p>Updated DNS
|
|
2772
2771
|
* properties for the private DNS namespace.</p>
|
|
2772
|
+
* @public
|
|
2773
2773
|
*/
|
|
2774
2774
|
export interface PrivateDnsPropertiesMutableChange {
|
|
2775
2775
|
/**
|
|
2776
|
-
* @public
|
|
2777
2776
|
* <p>Updated fields for
|
|
2778
2777
|
* the Start of Authority (SOA) record for the hosted zone for the private DNS
|
|
2779
2778
|
* namespace.</p>
|
|
2779
|
+
* @public
|
|
2780
2780
|
*/
|
|
2781
2781
|
SOA: SOAChange | undefined;
|
|
2782
2782
|
}
|
|
2783
2783
|
/**
|
|
2784
|
-
* @public
|
|
2785
2784
|
* <p>Updated properties
|
|
2786
2785
|
* for the private DNS namespace.</p>
|
|
2786
|
+
* @public
|
|
2787
2787
|
*/
|
|
2788
2788
|
export interface PrivateDnsNamespacePropertiesChange {
|
|
2789
2789
|
/**
|
|
2790
|
-
* @public
|
|
2791
2790
|
* <p>Updated DNS
|
|
2792
2791
|
* properties for the private DNS namespace.</p>
|
|
2792
|
+
* @public
|
|
2793
2793
|
*/
|
|
2794
2794
|
DnsProperties: PrivateDnsPropertiesMutableChange | undefined;
|
|
2795
2795
|
}
|
|
2796
2796
|
/**
|
|
2797
|
-
* @public
|
|
2798
2797
|
* <p>Updated properties
|
|
2799
2798
|
* for the private DNS namespace.</p>
|
|
2799
|
+
* @public
|
|
2800
2800
|
*/
|
|
2801
2801
|
export interface PrivateDnsNamespaceChange {
|
|
2802
2802
|
/**
|
|
2803
|
-
* @public
|
|
2804
2803
|
* <p>An updated
|
|
2805
2804
|
* description for the private DNS namespace.</p>
|
|
2805
|
+
* @public
|
|
2806
2806
|
*/
|
|
2807
2807
|
Description?: string;
|
|
2808
2808
|
/**
|
|
2809
|
-
* @public
|
|
2810
2809
|
* <p>Properties to be
|
|
2811
2810
|
* updated in the private DNS namespace.</p>
|
|
2811
|
+
* @public
|
|
2812
2812
|
*/
|
|
2813
2813
|
Properties?: PrivateDnsNamespacePropertiesChange;
|
|
2814
2814
|
}
|
|
2815
2815
|
/**
|
|
2816
|
-
* @public
|
|
2817
2816
|
* <p>Updated DNS
|
|
2818
2817
|
* properties for the public DNS namespace.</p>
|
|
2818
|
+
* @public
|
|
2819
2819
|
*/
|
|
2820
2820
|
export interface PublicDnsPropertiesMutableChange {
|
|
2821
2821
|
/**
|
|
2822
|
-
* @public
|
|
2823
2822
|
* <p>Updated fields for
|
|
2824
2823
|
* the Start of Authority (SOA) record for the hosted zone for the public DNS
|
|
2825
2824
|
* namespace.</p>
|
|
2825
|
+
* @public
|
|
2826
2826
|
*/
|
|
2827
2827
|
SOA: SOAChange | undefined;
|
|
2828
2828
|
}
|
|
2829
2829
|
/**
|
|
2830
|
-
* @public
|
|
2831
2830
|
* <p>Updated properties
|
|
2832
2831
|
* for the public DNS namespace.</p>
|
|
2832
|
+
* @public
|
|
2833
2833
|
*/
|
|
2834
2834
|
export interface PublicDnsNamespacePropertiesChange {
|
|
2835
2835
|
/**
|
|
2836
|
-
* @public
|
|
2837
2836
|
* <p>Updated DNS
|
|
2838
2837
|
* properties for the hosted zone for the public DNS namespace.</p>
|
|
2838
|
+
* @public
|
|
2839
2839
|
*/
|
|
2840
2840
|
DnsProperties: PublicDnsPropertiesMutableChange | undefined;
|
|
2841
2841
|
}
|
|
2842
2842
|
/**
|
|
2843
|
-
* @public
|
|
2844
2843
|
* <p>Updated properties
|
|
2845
2844
|
* for the public DNS namespace.</p>
|
|
2845
|
+
* @public
|
|
2846
2846
|
*/
|
|
2847
2847
|
export interface PublicDnsNamespaceChange {
|
|
2848
2848
|
/**
|
|
2849
|
-
* @public
|
|
2850
2849
|
* <p>An updated
|
|
2851
2850
|
* description for the public DNS namespace.</p>
|
|
2851
|
+
* @public
|
|
2852
2852
|
*/
|
|
2853
2853
|
Description?: string;
|
|
2854
2854
|
/**
|
|
2855
|
-
* @public
|
|
2856
2855
|
* <p>Properties to be
|
|
2857
2856
|
* updated in the public DNS namespace.</p>
|
|
2857
|
+
* @public
|
|
2858
2858
|
*/
|
|
2859
2859
|
Properties?: PublicDnsNamespacePropertiesChange;
|
|
2860
2860
|
}
|
|
@@ -2863,12 +2863,11 @@ export interface PublicDnsNamespaceChange {
|
|
|
2863
2863
|
*/
|
|
2864
2864
|
export interface RegisterInstanceRequest {
|
|
2865
2865
|
/**
|
|
2866
|
-
* @public
|
|
2867
2866
|
* <p>The ID of the service that you want to use for settings for the instance.</p>
|
|
2867
|
+
* @public
|
|
2868
2868
|
*/
|
|
2869
2869
|
ServiceId: string | undefined;
|
|
2870
2870
|
/**
|
|
2871
|
-
* @public
|
|
2872
2871
|
* <p>An identifier that you want to associate with the instance. Note the following:</p>
|
|
2873
2872
|
* <ul>
|
|
2874
2873
|
* <li>
|
|
@@ -2900,20 +2899,20 @@ export interface RegisterInstanceRequest {
|
|
|
2900
2899
|
* for the service contains <code>SRV</code> because the <code>InstanceId</code> is discoverable by
|
|
2901
2900
|
* public DNS queries.</p>
|
|
2902
2901
|
* </note>
|
|
2902
|
+
* @public
|
|
2903
2903
|
*/
|
|
2904
2904
|
InstanceId: string | undefined;
|
|
2905
2905
|
/**
|
|
2906
|
-
* @public
|
|
2907
2906
|
* <p>A unique string that identifies the request and that allows failed
|
|
2908
2907
|
* <code>RegisterInstance</code> requests to be retried without the risk of executing the operation
|
|
2909
2908
|
* twice. You must use a unique <code>CreatorRequestId</code> string every time you submit a
|
|
2910
2909
|
* <code>RegisterInstance</code> request if you're registering additional instances for the same
|
|
2911
2910
|
* namespace and service. <code>CreatorRequestId</code> can be any unique string (for example, a
|
|
2912
2911
|
* date/time stamp).</p>
|
|
2912
|
+
* @public
|
|
2913
2913
|
*/
|
|
2914
2914
|
CreatorRequestId?: string;
|
|
2915
2915
|
/**
|
|
2916
|
-
* @public
|
|
2917
2916
|
* <p>A string map that contains the following information for the service that you specify in
|
|
2918
2917
|
* <code>ServiceId</code>:</p>
|
|
2919
2918
|
* <ul>
|
|
@@ -3021,6 +3020,7 @@ export interface RegisterInstanceRequest {
|
|
|
3021
3020
|
* exceed 5,000 characters.</p>
|
|
3022
3021
|
* </dd>
|
|
3023
3022
|
* </dl>
|
|
3023
|
+
* @public
|
|
3024
3024
|
*/
|
|
3025
3025
|
Attributes: Record<string, string> | undefined;
|
|
3026
3026
|
}
|
|
@@ -3029,9 +3029,9 @@ export interface RegisterInstanceRequest {
|
|
|
3029
3029
|
*/
|
|
3030
3030
|
export interface RegisterInstanceResponse {
|
|
3031
3031
|
/**
|
|
3032
|
-
* @public
|
|
3033
3032
|
* <p>A value that you can use to determine whether the request completed successfully.
|
|
3034
3033
|
* To get the status of the operation, see <a href="https://docs.aws.amazon.com/cloud-map/latest/api/API_GetOperation.html">GetOperation</a>.</p>
|
|
3034
|
+
* @public
|
|
3035
3035
|
*/
|
|
3036
3036
|
OperationId?: string;
|
|
3037
3037
|
}
|
|
@@ -3040,14 +3040,14 @@ export interface RegisterInstanceResponse {
|
|
|
3040
3040
|
*/
|
|
3041
3041
|
export interface TagResourceRequest {
|
|
3042
3042
|
/**
|
|
3043
|
-
* @public
|
|
3044
3043
|
* <p>The Amazon Resource Name (ARN) of the resource that you want to retrieve tags for.</p>
|
|
3044
|
+
* @public
|
|
3045
3045
|
*/
|
|
3046
3046
|
ResourceARN: string | undefined;
|
|
3047
3047
|
/**
|
|
3048
|
-
* @public
|
|
3049
3048
|
* <p>The tags to add to the specified resource. Specifying the tag key is required. You can set
|
|
3050
3049
|
* the value of a tag to an empty string, but you can't set the value of a tag to null.</p>
|
|
3050
|
+
* @public
|
|
3051
3051
|
*/
|
|
3052
3052
|
Tags: Tag[] | undefined;
|
|
3053
3053
|
}
|
|
@@ -3061,13 +3061,13 @@ export interface TagResourceResponse {
|
|
|
3061
3061
|
*/
|
|
3062
3062
|
export interface UntagResourceRequest {
|
|
3063
3063
|
/**
|
|
3064
|
-
* @public
|
|
3065
3064
|
* <p>The Amazon Resource Name (ARN) of the resource that you want to retrieve tags for.</p>
|
|
3065
|
+
* @public
|
|
3066
3066
|
*/
|
|
3067
3067
|
ResourceARN: string | undefined;
|
|
3068
3068
|
/**
|
|
3069
|
-
* @public
|
|
3070
3069
|
* <p>The tag keys to remove from the specified resource.</p>
|
|
3070
|
+
* @public
|
|
3071
3071
|
*/
|
|
3072
3072
|
TagKeys: string[] | undefined;
|
|
3073
3073
|
}
|
|
@@ -3081,23 +3081,23 @@ export interface UntagResourceResponse {
|
|
|
3081
3081
|
*/
|
|
3082
3082
|
export interface UpdateHttpNamespaceRequest {
|
|
3083
3083
|
/**
|
|
3084
|
-
* @public
|
|
3085
3084
|
* <p>The ID of the
|
|
3086
3085
|
* namespace that you want to update.</p>
|
|
3086
|
+
* @public
|
|
3087
3087
|
*/
|
|
3088
3088
|
Id: string | undefined;
|
|
3089
3089
|
/**
|
|
3090
|
-
* @public
|
|
3091
3090
|
* <p>A unique string that
|
|
3092
3091
|
* identifies the request and that allows failed <code>UpdateHttpNamespace</code> requests to be
|
|
3093
3092
|
* retried without the risk of running the operation twice. <code>UpdaterRequestId</code> can be any
|
|
3094
3093
|
* unique string (for example, a date/timestamp).</p>
|
|
3094
|
+
* @public
|
|
3095
3095
|
*/
|
|
3096
3096
|
UpdaterRequestId?: string;
|
|
3097
3097
|
/**
|
|
3098
|
-
* @public
|
|
3099
3098
|
* <p>Updated properties
|
|
3100
3099
|
* for the the HTTP namespace.</p>
|
|
3100
|
+
* @public
|
|
3101
3101
|
*/
|
|
3102
3102
|
Namespace: HttpNamespaceChange | undefined;
|
|
3103
3103
|
}
|
|
@@ -3106,9 +3106,9 @@ export interface UpdateHttpNamespaceRequest {
|
|
|
3106
3106
|
*/
|
|
3107
3107
|
export interface UpdateHttpNamespaceResponse {
|
|
3108
3108
|
/**
|
|
3109
|
-
* @public
|
|
3110
3109
|
* <p>A value that you can use to determine whether the request completed successfully.
|
|
3111
3110
|
* To get the status of the operation, see <a href="https://docs.aws.amazon.com/cloud-map/latest/api/API_GetOperation.html">GetOperation</a>.</p>
|
|
3111
|
+
* @public
|
|
3112
3112
|
*/
|
|
3113
3113
|
OperationId?: string;
|
|
3114
3114
|
}
|
|
@@ -3117,19 +3117,19 @@ export interface UpdateHttpNamespaceResponse {
|
|
|
3117
3117
|
*/
|
|
3118
3118
|
export interface UpdateInstanceCustomHealthStatusRequest {
|
|
3119
3119
|
/**
|
|
3120
|
-
* @public
|
|
3121
3120
|
* <p>The ID of the service that includes the configuration for the custom health check that you
|
|
3122
3121
|
* want to change the status for.</p>
|
|
3122
|
+
* @public
|
|
3123
3123
|
*/
|
|
3124
3124
|
ServiceId: string | undefined;
|
|
3125
3125
|
/**
|
|
3126
|
-
* @public
|
|
3127
3126
|
* <p>The ID of the instance that you want to change the health status for.</p>
|
|
3127
|
+
* @public
|
|
3128
3128
|
*/
|
|
3129
3129
|
InstanceId: string | undefined;
|
|
3130
3130
|
/**
|
|
3131
|
-
* @public
|
|
3132
3131
|
* <p>The new status of the instance, <code>HEALTHY</code> or <code>UNHEALTHY</code>.</p>
|
|
3132
|
+
* @public
|
|
3133
3133
|
*/
|
|
3134
3134
|
Status: CustomHealthStatus | undefined;
|
|
3135
3135
|
}
|
|
@@ -3138,23 +3138,23 @@ export interface UpdateInstanceCustomHealthStatusRequest {
|
|
|
3138
3138
|
*/
|
|
3139
3139
|
export interface UpdatePrivateDnsNamespaceRequest {
|
|
3140
3140
|
/**
|
|
3141
|
-
* @public
|
|
3142
3141
|
* <p>The ID of the
|
|
3143
3142
|
* namespace that you want to update.</p>
|
|
3143
|
+
* @public
|
|
3144
3144
|
*/
|
|
3145
3145
|
Id: string | undefined;
|
|
3146
3146
|
/**
|
|
3147
|
-
* @public
|
|
3148
3147
|
* <p>A unique string that
|
|
3149
3148
|
* identifies the request and that allows failed <code>UpdatePrivateDnsNamespace</code> requests to
|
|
3150
3149
|
* be retried without the risk of running the operation twice. <code>UpdaterRequestId</code> can be
|
|
3151
3150
|
* any unique string (for example, a date/timestamp).</p>
|
|
3151
|
+
* @public
|
|
3152
3152
|
*/
|
|
3153
3153
|
UpdaterRequestId?: string;
|
|
3154
3154
|
/**
|
|
3155
|
-
* @public
|
|
3156
3155
|
* <p>Updated properties
|
|
3157
3156
|
* for the private DNS namespace.</p>
|
|
3157
|
+
* @public
|
|
3158
3158
|
*/
|
|
3159
3159
|
Namespace: PrivateDnsNamespaceChange | undefined;
|
|
3160
3160
|
}
|
|
@@ -3163,9 +3163,9 @@ export interface UpdatePrivateDnsNamespaceRequest {
|
|
|
3163
3163
|
*/
|
|
3164
3164
|
export interface UpdatePrivateDnsNamespaceResponse {
|
|
3165
3165
|
/**
|
|
3166
|
-
* @public
|
|
3167
3166
|
* <p>A value that you can use to determine whether the request completed successfully.
|
|
3168
3167
|
* To get the status of the operation, see <a href="https://docs.aws.amazon.com/cloud-map/latest/api/API_GetOperation.html">GetOperation</a>.</p>
|
|
3168
|
+
* @public
|
|
3169
3169
|
*/
|
|
3170
3170
|
OperationId?: string;
|
|
3171
3171
|
}
|
|
@@ -3174,23 +3174,23 @@ export interface UpdatePrivateDnsNamespaceResponse {
|
|
|
3174
3174
|
*/
|
|
3175
3175
|
export interface UpdatePublicDnsNamespaceRequest {
|
|
3176
3176
|
/**
|
|
3177
|
-
* @public
|
|
3178
3177
|
* <p>The ID of the
|
|
3179
3178
|
* namespace being updated.</p>
|
|
3179
|
+
* @public
|
|
3180
3180
|
*/
|
|
3181
3181
|
Id: string | undefined;
|
|
3182
3182
|
/**
|
|
3183
|
-
* @public
|
|
3184
3183
|
* <p>A unique string that
|
|
3185
3184
|
* identifies the request and that allows failed <code>UpdatePublicDnsNamespace</code> requests to
|
|
3186
3185
|
* be retried without the risk of running the operation twice. <code>UpdaterRequestId</code> can be
|
|
3187
3186
|
* any unique string (for example, a date/timestamp).</p>
|
|
3187
|
+
* @public
|
|
3188
3188
|
*/
|
|
3189
3189
|
UpdaterRequestId?: string;
|
|
3190
3190
|
/**
|
|
3191
|
-
* @public
|
|
3192
3191
|
* <p>Updated properties
|
|
3193
3192
|
* for the public DNS namespace.</p>
|
|
3193
|
+
* @public
|
|
3194
3194
|
*/
|
|
3195
3195
|
Namespace: PublicDnsNamespaceChange | undefined;
|
|
3196
3196
|
}
|
|
@@ -3199,34 +3199,34 @@ export interface UpdatePublicDnsNamespaceRequest {
|
|
|
3199
3199
|
*/
|
|
3200
3200
|
export interface UpdatePublicDnsNamespaceResponse {
|
|
3201
3201
|
/**
|
|
3202
|
-
* @public
|
|
3203
3202
|
* <p>A value that you can use to determine whether the request completed successfully.
|
|
3204
3203
|
* To get the status of the operation, see <a href="https://docs.aws.amazon.com/cloud-map/latest/api/API_GetOperation.html">GetOperation</a>.</p>
|
|
3204
|
+
* @public
|
|
3205
3205
|
*/
|
|
3206
3206
|
OperationId?: string;
|
|
3207
3207
|
}
|
|
3208
3208
|
/**
|
|
3209
|
-
* @public
|
|
3210
3209
|
* <p>A complex type that contains changes to an existing service.</p>
|
|
3210
|
+
* @public
|
|
3211
3211
|
*/
|
|
3212
3212
|
export interface ServiceChange {
|
|
3213
3213
|
/**
|
|
3214
|
-
* @public
|
|
3215
3214
|
* <p>A description for the service.</p>
|
|
3215
|
+
* @public
|
|
3216
3216
|
*/
|
|
3217
3217
|
Description?: string;
|
|
3218
3218
|
/**
|
|
3219
|
-
* @public
|
|
3220
3219
|
* <p>Information about the Route 53 DNS records that you want Cloud Map to create when you register
|
|
3221
3220
|
* an instance.</p>
|
|
3221
|
+
* @public
|
|
3222
3222
|
*/
|
|
3223
3223
|
DnsConfig?: DnsConfigChange;
|
|
3224
3224
|
/**
|
|
3225
|
-
* @public
|
|
3226
3225
|
* <p>
|
|
3227
3226
|
* <i>Public DNS and HTTP namespaces only.</i> Settings for an optional health
|
|
3228
3227
|
* check. If you specify settings for a health check, Cloud Map associates the health check with
|
|
3229
3228
|
* the records that you specify in <code>DnsConfig</code>.</p>
|
|
3229
|
+
* @public
|
|
3230
3230
|
*/
|
|
3231
3231
|
HealthCheckConfig?: HealthCheckConfig;
|
|
3232
3232
|
}
|
|
@@ -3235,13 +3235,13 @@ export interface ServiceChange {
|
|
|
3235
3235
|
*/
|
|
3236
3236
|
export interface UpdateServiceRequest {
|
|
3237
3237
|
/**
|
|
3238
|
-
* @public
|
|
3239
3238
|
* <p>The ID of the service that you want to update.</p>
|
|
3239
|
+
* @public
|
|
3240
3240
|
*/
|
|
3241
3241
|
Id: string | undefined;
|
|
3242
3242
|
/**
|
|
3243
|
-
* @public
|
|
3244
3243
|
* <p>A complex type that contains the new settings for the service.</p>
|
|
3244
|
+
* @public
|
|
3245
3245
|
*/
|
|
3246
3246
|
Service: ServiceChange | undefined;
|
|
3247
3247
|
}
|
|
@@ -3250,9 +3250,9 @@ export interface UpdateServiceRequest {
|
|
|
3250
3250
|
*/
|
|
3251
3251
|
export interface UpdateServiceResponse {
|
|
3252
3252
|
/**
|
|
3253
|
-
* @public
|
|
3254
3253
|
* <p>A value that you can use to determine whether the request completed successfully.
|
|
3255
3254
|
* To get the status of the operation, see <a href="https://docs.aws.amazon.com/cloud-map/latest/api/API_GetOperation.html">GetOperation</a>.</p>
|
|
3255
|
+
* @public
|
|
3256
3256
|
*/
|
|
3257
3257
|
OperationId?: string;
|
|
3258
3258
|
}
|