UNPKG

73.4 kBTypeScriptView Raw
1import {Request} from '../lib/request';
2import {Response} from '../lib/response';
3import {AWSError} from '../lib/error';
4import {Service} from '../lib/service';
5import {ServiceConfigurationOptions} from '../lib/service';
6import {ConfigBase as Config} from '../lib/config';
7interface Blob {}
8declare class ServiceDiscovery extends Service {
9 /**
10 * Constructs a service object. This object has one method for each API operation.
11 */
12 constructor(options?: ServiceDiscovery.Types.ClientConfiguration)
13 config: Config & ServiceDiscovery.Types.ClientConfiguration;
14 /**
15 * Creates an HTTP namespace. Service instances that you register using an HTTP namespace can be discovered using a DiscoverInstances request but can't be discovered using DNS. For the current limit on the number of namespaces that you can create using the same AWS account, see AWS Cloud Map Limits in the AWS Cloud Map Developer Guide.
16 */
17 createHttpNamespace(params: ServiceDiscovery.Types.CreateHttpNamespaceRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.CreateHttpNamespaceResponse) => void): Request<ServiceDiscovery.Types.CreateHttpNamespaceResponse, AWSError>;
18 /**
19 * Creates an HTTP namespace. Service instances that you register using an HTTP namespace can be discovered using a DiscoverInstances request but can't be discovered using DNS. For the current limit on the number of namespaces that you can create using the same AWS account, see AWS Cloud Map Limits in the AWS Cloud Map Developer Guide.
20 */
21 createHttpNamespace(callback?: (err: AWSError, data: ServiceDiscovery.Types.CreateHttpNamespaceResponse) => void): Request<ServiceDiscovery.Types.CreateHttpNamespaceResponse, AWSError>;
22 /**
23 * Creates a private namespace based on DNS, which will be visible only inside a specified Amazon VPC. The namespace defines your service naming scheme. For example, if you name your namespace example.com and name your service backend, the resulting DNS name for the service will be backend.example.com. For the current limit on the number of namespaces that you can create using the same AWS account, see AWS Cloud Map Limits in the AWS Cloud Map Developer Guide.
24 */
25 createPrivateDnsNamespace(params: ServiceDiscovery.Types.CreatePrivateDnsNamespaceRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.CreatePrivateDnsNamespaceResponse) => void): Request<ServiceDiscovery.Types.CreatePrivateDnsNamespaceResponse, AWSError>;
26 /**
27 * Creates a private namespace based on DNS, which will be visible only inside a specified Amazon VPC. The namespace defines your service naming scheme. For example, if you name your namespace example.com and name your service backend, the resulting DNS name for the service will be backend.example.com. For the current limit on the number of namespaces that you can create using the same AWS account, see AWS Cloud Map Limits in the AWS Cloud Map Developer Guide.
28 */
29 createPrivateDnsNamespace(callback?: (err: AWSError, data: ServiceDiscovery.Types.CreatePrivateDnsNamespaceResponse) => void): Request<ServiceDiscovery.Types.CreatePrivateDnsNamespaceResponse, AWSError>;
30 /**
31 * Creates a public namespace based on DNS, which will be visible on the internet. The namespace defines your service naming scheme. For example, if you name your namespace example.com and name your service backend, the resulting DNS name for the service will be backend.example.com. For the current limit on the number of namespaces that you can create using the same AWS account, see AWS Cloud Map Limits in the AWS Cloud Map Developer Guide.
32 */
33 createPublicDnsNamespace(params: ServiceDiscovery.Types.CreatePublicDnsNamespaceRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.CreatePublicDnsNamespaceResponse) => void): Request<ServiceDiscovery.Types.CreatePublicDnsNamespaceResponse, AWSError>;
34 /**
35 * Creates a public namespace based on DNS, which will be visible on the internet. The namespace defines your service naming scheme. For example, if you name your namespace example.com and name your service backend, the resulting DNS name for the service will be backend.example.com. For the current limit on the number of namespaces that you can create using the same AWS account, see AWS Cloud Map Limits in the AWS Cloud Map Developer Guide.
36 */
37 createPublicDnsNamespace(callback?: (err: AWSError, data: ServiceDiscovery.Types.CreatePublicDnsNamespaceResponse) => void): Request<ServiceDiscovery.Types.CreatePublicDnsNamespaceResponse, AWSError>;
38 /**
39 * Creates a service, which defines the configuration for the following entities: For public and private DNS namespaces, one of the following combinations of DNS records in Amazon Route 53: A AAAA A and AAAA SRV CNAME Optionally, a health check After you create the service, you can submit a RegisterInstance request, and AWS Cloud Map uses the values in the configuration to create the specified entities. For the current limit on the number of instances that you can register using the same namespace and using the same service, see AWS Cloud Map Limits in the AWS Cloud Map Developer Guide.
40 */
41 createService(params: ServiceDiscovery.Types.CreateServiceRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.CreateServiceResponse) => void): Request<ServiceDiscovery.Types.CreateServiceResponse, AWSError>;
42 /**
43 * Creates a service, which defines the configuration for the following entities: For public and private DNS namespaces, one of the following combinations of DNS records in Amazon Route 53: A AAAA A and AAAA SRV CNAME Optionally, a health check After you create the service, you can submit a RegisterInstance request, and AWS Cloud Map uses the values in the configuration to create the specified entities. For the current limit on the number of instances that you can register using the same namespace and using the same service, see AWS Cloud Map Limits in the AWS Cloud Map Developer Guide.
44 */
45 createService(callback?: (err: AWSError, data: ServiceDiscovery.Types.CreateServiceResponse) => void): Request<ServiceDiscovery.Types.CreateServiceResponse, AWSError>;
46 /**
47 * Deletes a namespace from the current account. If the namespace still contains one or more services, the request fails.
48 */
49 deleteNamespace(params: ServiceDiscovery.Types.DeleteNamespaceRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.DeleteNamespaceResponse) => void): Request<ServiceDiscovery.Types.DeleteNamespaceResponse, AWSError>;
50 /**
51 * Deletes a namespace from the current account. If the namespace still contains one or more services, the request fails.
52 */
53 deleteNamespace(callback?: (err: AWSError, data: ServiceDiscovery.Types.DeleteNamespaceResponse) => void): Request<ServiceDiscovery.Types.DeleteNamespaceResponse, AWSError>;
54 /**
55 * Deletes a specified service. If the service still contains one or more registered instances, the request fails.
56 */
57 deleteService(params: ServiceDiscovery.Types.DeleteServiceRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.DeleteServiceResponse) => void): Request<ServiceDiscovery.Types.DeleteServiceResponse, AWSError>;
58 /**
59 * Deletes a specified service. If the service still contains one or more registered instances, the request fails.
60 */
61 deleteService(callback?: (err: AWSError, data: ServiceDiscovery.Types.DeleteServiceResponse) => void): Request<ServiceDiscovery.Types.DeleteServiceResponse, AWSError>;
62 /**
63 * Deletes the Amazon Route 53 DNS records and health check, if any, that AWS Cloud Map created for the specified instance.
64 */
65 deregisterInstance(params: ServiceDiscovery.Types.DeregisterInstanceRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.DeregisterInstanceResponse) => void): Request<ServiceDiscovery.Types.DeregisterInstanceResponse, AWSError>;
66 /**
67 * Deletes the Amazon Route 53 DNS records and health check, if any, that AWS Cloud Map created for the specified instance.
68 */
69 deregisterInstance(callback?: (err: AWSError, data: ServiceDiscovery.Types.DeregisterInstanceResponse) => void): Request<ServiceDiscovery.Types.DeregisterInstanceResponse, AWSError>;
70 /**
71 * Discovers registered instances for a specified namespace and service.
72 */
73 discoverInstances(params: ServiceDiscovery.Types.DiscoverInstancesRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.DiscoverInstancesResponse) => void): Request<ServiceDiscovery.Types.DiscoverInstancesResponse, AWSError>;
74 /**
75 * Discovers registered instances for a specified namespace and service.
76 */
77 discoverInstances(callback?: (err: AWSError, data: ServiceDiscovery.Types.DiscoverInstancesResponse) => void): Request<ServiceDiscovery.Types.DiscoverInstancesResponse, AWSError>;
78 /**
79 * Gets information about a specified instance.
80 */
81 getInstance(params: ServiceDiscovery.Types.GetInstanceRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.GetInstanceResponse) => void): Request<ServiceDiscovery.Types.GetInstanceResponse, AWSError>;
82 /**
83 * Gets information about a specified instance.
84 */
85 getInstance(callback?: (err: AWSError, data: ServiceDiscovery.Types.GetInstanceResponse) => void): Request<ServiceDiscovery.Types.GetInstanceResponse, AWSError>;
86 /**
87 * Gets the current health status (Healthy, Unhealthy, or Unknown) of one or more instances that are associated with a specified service. There is a brief delay between when you register an instance and when the health status for the instance is available.
88 */
89 getInstancesHealthStatus(params: ServiceDiscovery.Types.GetInstancesHealthStatusRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.GetInstancesHealthStatusResponse) => void): Request<ServiceDiscovery.Types.GetInstancesHealthStatusResponse, AWSError>;
90 /**
91 * Gets the current health status (Healthy, Unhealthy, or Unknown) of one or more instances that are associated with a specified service. There is a brief delay between when you register an instance and when the health status for the instance is available.
92 */
93 getInstancesHealthStatus(callback?: (err: AWSError, data: ServiceDiscovery.Types.GetInstancesHealthStatusResponse) => void): Request<ServiceDiscovery.Types.GetInstancesHealthStatusResponse, AWSError>;
94 /**
95 * Gets information about a namespace.
96 */
97 getNamespace(params: ServiceDiscovery.Types.GetNamespaceRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.GetNamespaceResponse) => void): Request<ServiceDiscovery.Types.GetNamespaceResponse, AWSError>;
98 /**
99 * Gets information about a namespace.
100 */
101 getNamespace(callback?: (err: AWSError, data: ServiceDiscovery.Types.GetNamespaceResponse) => void): Request<ServiceDiscovery.Types.GetNamespaceResponse, AWSError>;
102 /**
103 * Gets information about any operation that returns an operation ID in the response, such as a CreateService request. To get a list of operations that match specified criteria, see ListOperations.
104 */
105 getOperation(params: ServiceDiscovery.Types.GetOperationRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.GetOperationResponse) => void): Request<ServiceDiscovery.Types.GetOperationResponse, AWSError>;
106 /**
107 * Gets information about any operation that returns an operation ID in the response, such as a CreateService request. To get a list of operations that match specified criteria, see ListOperations.
108 */
109 getOperation(callback?: (err: AWSError, data: ServiceDiscovery.Types.GetOperationResponse) => void): Request<ServiceDiscovery.Types.GetOperationResponse, AWSError>;
110 /**
111 * Gets the settings for a specified service.
112 */
113 getService(params: ServiceDiscovery.Types.GetServiceRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.GetServiceResponse) => void): Request<ServiceDiscovery.Types.GetServiceResponse, AWSError>;
114 /**
115 * Gets the settings for a specified service.
116 */
117 getService(callback?: (err: AWSError, data: ServiceDiscovery.Types.GetServiceResponse) => void): Request<ServiceDiscovery.Types.GetServiceResponse, AWSError>;
118 /**
119 * Lists summary information about the instances that you registered by using a specified service.
120 */
121 listInstances(params: ServiceDiscovery.Types.ListInstancesRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.ListInstancesResponse) => void): Request<ServiceDiscovery.Types.ListInstancesResponse, AWSError>;
122 /**
123 * Lists summary information about the instances that you registered by using a specified service.
124 */
125 listInstances(callback?: (err: AWSError, data: ServiceDiscovery.Types.ListInstancesResponse) => void): Request<ServiceDiscovery.Types.ListInstancesResponse, AWSError>;
126 /**
127 * Lists summary information about the namespaces that were created by the current AWS account.
128 */
129 listNamespaces(params: ServiceDiscovery.Types.ListNamespacesRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.ListNamespacesResponse) => void): Request<ServiceDiscovery.Types.ListNamespacesResponse, AWSError>;
130 /**
131 * Lists summary information about the namespaces that were created by the current AWS account.
132 */
133 listNamespaces(callback?: (err: AWSError, data: ServiceDiscovery.Types.ListNamespacesResponse) => void): Request<ServiceDiscovery.Types.ListNamespacesResponse, AWSError>;
134 /**
135 * Lists operations that match the criteria that you specify.
136 */
137 listOperations(params: ServiceDiscovery.Types.ListOperationsRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.ListOperationsResponse) => void): Request<ServiceDiscovery.Types.ListOperationsResponse, AWSError>;
138 /**
139 * Lists operations that match the criteria that you specify.
140 */
141 listOperations(callback?: (err: AWSError, data: ServiceDiscovery.Types.ListOperationsResponse) => void): Request<ServiceDiscovery.Types.ListOperationsResponse, AWSError>;
142 /**
143 * Lists summary information for all the services that are associated with one or more specified namespaces.
144 */
145 listServices(params: ServiceDiscovery.Types.ListServicesRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.ListServicesResponse) => void): Request<ServiceDiscovery.Types.ListServicesResponse, AWSError>;
146 /**
147 * Lists summary information for all the services that are associated with one or more specified namespaces.
148 */
149 listServices(callback?: (err: AWSError, data: ServiceDiscovery.Types.ListServicesResponse) => void): Request<ServiceDiscovery.Types.ListServicesResponse, AWSError>;
150 /**
151 * Creates or updates one or more records and, optionally, creates a health check based on the settings in a specified service. When you submit a RegisterInstance request, the following occurs: For each DNS record that you define in the service that is specified by ServiceId, a record is created or updated in the hosted zone that is associated with the corresponding namespace. If the service includes HealthCheckConfig, a health check is created based on the settings in the health check configuration. The health check, if any, is associated with each of the new or updated records. One RegisterInstance request must complete before you can submit another request and specify the same service ID and instance ID. For more information, see CreateService. When AWS Cloud Map receives a DNS query for the specified DNS name, it returns the applicable value: If the health check is healthy: returns all the records If the health check is unhealthy: returns the applicable value for the last healthy instance If you didn't specify a health check configuration: returns all the records For the current limit on the number of instances that you can register using the same namespace and using the same service, see AWS Cloud Map Limits in the AWS Cloud Map Developer Guide.
152 */
153 registerInstance(params: ServiceDiscovery.Types.RegisterInstanceRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.RegisterInstanceResponse) => void): Request<ServiceDiscovery.Types.RegisterInstanceResponse, AWSError>;
154 /**
155 * Creates or updates one or more records and, optionally, creates a health check based on the settings in a specified service. When you submit a RegisterInstance request, the following occurs: For each DNS record that you define in the service that is specified by ServiceId, a record is created or updated in the hosted zone that is associated with the corresponding namespace. If the service includes HealthCheckConfig, a health check is created based on the settings in the health check configuration. The health check, if any, is associated with each of the new or updated records. One RegisterInstance request must complete before you can submit another request and specify the same service ID and instance ID. For more information, see CreateService. When AWS Cloud Map receives a DNS query for the specified DNS name, it returns the applicable value: If the health check is healthy: returns all the records If the health check is unhealthy: returns the applicable value for the last healthy instance If you didn't specify a health check configuration: returns all the records For the current limit on the number of instances that you can register using the same namespace and using the same service, see AWS Cloud Map Limits in the AWS Cloud Map Developer Guide.
156 */
157 registerInstance(callback?: (err: AWSError, data: ServiceDiscovery.Types.RegisterInstanceResponse) => void): Request<ServiceDiscovery.Types.RegisterInstanceResponse, AWSError>;
158 /**
159 * Submits a request to change the health status of a custom health check to healthy or unhealthy. You can use UpdateInstanceCustomHealthStatus to change the status only for custom health checks, which you define using HealthCheckCustomConfig when you create a service. You can't use it to change the status for Route 53 health checks, which you define using HealthCheckConfig. For more information, see HealthCheckCustomConfig.
160 */
161 updateInstanceCustomHealthStatus(params: ServiceDiscovery.Types.UpdateInstanceCustomHealthStatusRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
162 /**
163 * Submits a request to change the health status of a custom health check to healthy or unhealthy. You can use UpdateInstanceCustomHealthStatus to change the status only for custom health checks, which you define using HealthCheckCustomConfig when you create a service. You can't use it to change the status for Route 53 health checks, which you define using HealthCheckConfig. For more information, see HealthCheckCustomConfig.
164 */
165 updateInstanceCustomHealthStatus(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
166 /**
167 * Submits a request to perform the following operations: Add or delete DnsRecords configurations Update the TTL setting for existing DnsRecords configurations Add, update, or delete HealthCheckConfig for a specified service For public and private DNS namespaces, you must specify all DnsRecords configurations (and, optionally, HealthCheckConfig) that you want to appear in the updated service. Any current configurations that don't appear in an UpdateService request are deleted. When you update the TTL setting for a service, AWS Cloud Map also updates the corresponding settings in all the records and health checks that were created by using the specified service.
168 */
169 updateService(params: ServiceDiscovery.Types.UpdateServiceRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.UpdateServiceResponse) => void): Request<ServiceDiscovery.Types.UpdateServiceResponse, AWSError>;
170 /**
171 * Submits a request to perform the following operations: Add or delete DnsRecords configurations Update the TTL setting for existing DnsRecords configurations Add, update, or delete HealthCheckConfig for a specified service For public and private DNS namespaces, you must specify all DnsRecords configurations (and, optionally, HealthCheckConfig) that you want to appear in the updated service. Any current configurations that don't appear in an UpdateService request are deleted. When you update the TTL setting for a service, AWS Cloud Map also updates the corresponding settings in all the records and health checks that were created by using the specified service.
172 */
173 updateService(callback?: (err: AWSError, data: ServiceDiscovery.Types.UpdateServiceResponse) => void): Request<ServiceDiscovery.Types.UpdateServiceResponse, AWSError>;
174}
175declare namespace ServiceDiscovery {
176 export type Arn = string;
177 export type AttrKey = string;
178 export type AttrValue = string;
179 export type Attributes = {[key: string]: AttrValue};
180 export type Code = string;
181 export interface CreateHttpNamespaceRequest {
182 /**
183 * The name that you want to assign to this namespace.
184 */
185 Name: NamespaceName;
186 /**
187 * A unique string that identifies the request and that allows failed CreateHttpNamespace requests to be retried without the risk of executing the operation twice. CreatorRequestId can be any unique string, for example, a date/time stamp.
188 */
189 CreatorRequestId?: ResourceId;
190 /**
191 * A description for the namespace.
192 */
193 Description?: ResourceDescription;
194 }
195 export interface CreateHttpNamespaceResponse {
196 /**
197 * A value that you can use to determine whether the request completed successfully. To get the status of the operation, see GetOperation.
198 */
199 OperationId?: OperationId;
200 }
201 export interface CreatePrivateDnsNamespaceRequest {
202 /**
203 * The name that you want to assign to this namespace. When you create a private DNS namespace, AWS Cloud Map automatically creates an Amazon Route 53 private hosted zone that has the same name as the namespace.
204 */
205 Name: NamespaceName;
206 /**
207 * A unique string that identifies the request and that allows failed CreatePrivateDnsNamespace requests to be retried without the risk of executing the operation twice. CreatorRequestId can be any unique string, for example, a date/time stamp.
208 */
209 CreatorRequestId?: ResourceId;
210 /**
211 * A description for the namespace.
212 */
213 Description?: ResourceDescription;
214 /**
215 * The ID of the Amazon VPC that you want to associate the namespace with.
216 */
217 Vpc: ResourceId;
218 }
219 export interface CreatePrivateDnsNamespaceResponse {
220 /**
221 * A value that you can use to determine whether the request completed successfully. To get the status of the operation, see GetOperation.
222 */
223 OperationId?: OperationId;
224 }
225 export interface CreatePublicDnsNamespaceRequest {
226 /**
227 * The name that you want to assign to this namespace.
228 */
229 Name: NamespaceName;
230 /**
231 * A unique string that identifies the request and that allows failed CreatePublicDnsNamespace requests to be retried without the risk of executing the operation twice. CreatorRequestId can be any unique string, for example, a date/time stamp.
232 */
233 CreatorRequestId?: ResourceId;
234 /**
235 * A description for the namespace.
236 */
237 Description?: ResourceDescription;
238 }
239 export interface CreatePublicDnsNamespaceResponse {
240 /**
241 * A value that you can use to determine whether the request completed successfully. To get the status of the operation, see GetOperation.
242 */
243 OperationId?: OperationId;
244 }
245 export interface CreateServiceRequest {
246 /**
247 * The name that you want to assign to the service.
248 */
249 Name: ServiceName;
250 /**
251 * The ID of the namespace that you want to use to create the service.
252 */
253 NamespaceId?: ResourceId;
254 /**
255 * A unique string that identifies the request and that allows failed CreateService requests to be retried without the risk of executing the operation twice. CreatorRequestId can be any unique string, for example, a date/time stamp.
256 */
257 CreatorRequestId?: ResourceId;
258 /**
259 * A description for the service.
260 */
261 Description?: ResourceDescription;
262 /**
263 * A complex type that contains information about the Amazon Route 53 records that you want AWS Cloud Map to create when you register an instance.
264 */
265 DnsConfig?: DnsConfig;
266 /**
267 * Public DNS namespaces only. A complex type that contains settings for an optional Route 53 health check. If you specify settings for a health check, AWS Cloud Map associates the health check with all the Route 53 DNS records that you specify in DnsConfig. If you specify a health check configuration, you can specify either HealthCheckCustomConfig or HealthCheckConfig but not both. For information about the charges for health checks, see AWS Cloud Map Pricing.
268 */
269 HealthCheckConfig?: HealthCheckConfig;
270 /**
271 * A complex type that contains information about an optional custom health check. If you specify a health check configuration, you can specify either HealthCheckCustomConfig or HealthCheckConfig but not both.
272 */
273 HealthCheckCustomConfig?: HealthCheckCustomConfig;
274 }
275 export interface CreateServiceResponse {
276 /**
277 * A complex type that contains information about the new service.
278 */
279 Service?: Service;
280 }
281 export type CustomHealthStatus = "HEALTHY"|"UNHEALTHY"|string;
282 export interface DeleteNamespaceRequest {
283 /**
284 * The ID of the namespace that you want to delete.
285 */
286 Id: ResourceId;
287 }
288 export interface DeleteNamespaceResponse {
289 /**
290 * A value that you can use to determine whether the request completed successfully. To get the status of the operation, see GetOperation.
291 */
292 OperationId?: OperationId;
293 }
294 export interface DeleteServiceRequest {
295 /**
296 * The ID of the service that you want to delete.
297 */
298 Id: ResourceId;
299 }
300 export interface DeleteServiceResponse {
301 }
302 export interface DeregisterInstanceRequest {
303 /**
304 * The ID of the service that the instance is associated with.
305 */
306 ServiceId: ResourceId;
307 /**
308 * The value that you specified for Id in the RegisterInstance request.
309 */
310 InstanceId: ResourceId;
311 }
312 export interface DeregisterInstanceResponse {
313 /**
314 * A value that you can use to determine whether the request completed successfully. For more information, see GetOperation.
315 */
316 OperationId?: OperationId;
317 }
318 export interface DiscoverInstancesRequest {
319 /**
320 * The name of the namespace that you specified when you registered the instance.
321 */
322 NamespaceName: NamespaceName;
323 /**
324 * The name of the service that you specified when you registered the instance.
325 */
326 ServiceName: ServiceName;
327 /**
328 * The maximum number of instances that you want Cloud Map to return in the response to a DiscoverInstances request. If you don't specify a value for MaxResults, Cloud Map returns up to 100 instances.
329 */
330 MaxResults?: MaxResults;
331 /**
332 * A string map that contains attributes with values that you can use to filter instances by any custom attribute that you specified when you registered the instance. Only instances that match all the specified key/value pairs will be returned.
333 */
334 QueryParameters?: Attributes;
335 /**
336 * The health status of the instances that you want to discover.
337 */
338 HealthStatus?: HealthStatusFilter;
339 }
340 export interface DiscoverInstancesResponse {
341 /**
342 * A complex type that contains one HttpInstanceSummary for each registered instance.
343 */
344 Instances?: HttpInstanceSummaryList;
345 }
346 export interface DnsConfig {
347 /**
348 * The ID of the namespace to use for DNS configuration.
349 */
350 NamespaceId?: ResourceId;
351 /**
352 * The routing policy that you want to apply to all Route 53 DNS records that AWS Cloud Map creates when you register an instance and specify this service. If you want to use this service to register instances that create alias records, specify WEIGHTED for the routing policy. You can specify the following values: MULTIVALUE If you define a health check for the service and the health check is healthy, Route 53 returns the applicable value for up to eight instances. For example, suppose the service includes configurations for one A record and a health check, and you use the service to register 10 instances. Route 53 responds to DNS queries with IP addresses for up to eight healthy instances. If fewer than eight instances are healthy, Route 53 responds to every DNS query with the IP addresses for all of the healthy instances. If you don't define a health check for the service, Route 53 assumes that all instances are healthy and returns the values for up to eight instances. For more information about the multivalue routing policy, see Multivalue Answer Routing in the Route 53 Developer Guide. WEIGHTED Route 53 returns the applicable value from one randomly selected instance from among the instances that you registered using the same service. Currently, all records have the same weight, so you can't route more or less traffic to any instances. For example, suppose the service includes configurations for one A record and a health check, and you use the service to register 10 instances. Route 53 responds to DNS queries with the IP address for one randomly selected instance from among the healthy instances. If no instances are healthy, Route 53 responds to DNS queries as if all of the instances were healthy. If you don't define a health check for the service, Route 53 assumes that all instances are healthy and returns the applicable value for one randomly selected instance. For more information about the weighted routing policy, see Weighted Routing in the Route 53 Developer Guide.
353 */
354 RoutingPolicy?: RoutingPolicy;
355 /**
356 * An array that contains one DnsRecord object for each Route 53 DNS record that you want AWS Cloud Map to create when you register an instance.
357 */
358 DnsRecords: DnsRecordList;
359 }
360 export interface DnsConfigChange {
361 /**
362 * An array that contains one DnsRecord object for each Route 53 record that you want AWS Cloud Map to create when you register an instance.
363 */
364 DnsRecords: DnsRecordList;
365 }
366 export interface DnsProperties {
367 /**
368 * The ID for the Route 53 hosted zone that AWS Cloud Map creates when you create a namespace.
369 */
370 HostedZoneId?: ResourceId;
371 }
372 export interface DnsRecord {
373 /**
374 * The type of the resource, which indicates the type of value that Route 53 returns in response to DNS queries. Note the following: A, AAAA, and SRV records: You can specify settings for a maximum of one A, one AAAA, and one SRV record. You can specify them in any combination. CNAME records: If you specify CNAME for Type, you can't define any other records. This is a limitation of DNS: you can't create a CNAME record and any other type of record that has the same name as a CNAME record. Alias records: If you want AWS Cloud Map to create a Route 53 alias record when you register an instance, specify A or AAAA for Type. All records: You specify settings other than TTL and Type when you register an instance. The following values are supported: A Route 53 returns the IP address of the resource in IPv4 format, such as 192.0.2.44. AAAA Route 53 returns the IP address of the resource in IPv6 format, such as 2001:0db8:85a3:0000:0000:abcd:0001:2345. CNAME Route 53 returns the domain name of the resource, such as www.example.com. Note the following: You specify the domain name that you want to route traffic to when you register an instance. For more information, see RegisterInstanceRequest$Attributes. You must specify WEIGHTED for the value of RoutingPolicy. You can't specify both CNAME for Type and settings for HealthCheckConfig. If you do, the request will fail with an InvalidInput error. SRV Route 53 returns the value for an SRV record. The value for an SRV record uses the following values: priority weight port service-hostname Note the following about the values: The values of priority and weight are both set to 1 and can't be changed. The value of port comes from the value that you specify for the AWS_INSTANCE_PORT attribute when you submit a RegisterInstance request. The value of service-hostname is a concatenation of the following values: The value that you specify for InstanceId when you register an instance. The name of the service. The name of the namespace. For example, if the value of InstanceId is test, the name of the service is backend, and the name of the namespace is example.com, the value of service-hostname is: test.backend.example.com If you specify settings for an SRV record and if you specify values for AWS_INSTANCE_IPV4, AWS_INSTANCE_IPV6, or both in the RegisterInstance request, AWS Cloud Map automatically creates A and/or AAAA records that have the same name as the value of service-hostname in the SRV record. You can ignore these records.
375 */
376 Type: RecordType;
377 /**
378 * The amount of time, in seconds, that you want DNS resolvers to cache the settings for this record. Alias records don't include a TTL because Route 53 uses the TTL for the AWS resource that an alias record routes traffic to. If you include the AWS_ALIAS_DNS_NAME attribute when you submit a RegisterInstance request, the TTL value is ignored. Always specify a TTL for the service; you can use a service to register instances that create either alias or non-alias records.
379 */
380 TTL: RecordTTL;
381 }
382 export type DnsRecordList = DnsRecord[];
383 export type FailureThreshold = number;
384 export type FilterCondition = "EQ"|"IN"|"BETWEEN"|string;
385 export type FilterValue = string;
386 export type FilterValues = FilterValue[];
387 export interface GetInstanceRequest {
388 /**
389 * The ID of the service that the instance is associated with.
390 */
391 ServiceId: ResourceId;
392 /**
393 * The ID of the instance that you want to get information about.
394 */
395 InstanceId: ResourceId;
396 }
397 export interface GetInstanceResponse {
398 /**
399 * A complex type that contains information about a specified instance.
400 */
401 Instance?: Instance;
402 }
403 export interface GetInstancesHealthStatusRequest {
404 /**
405 * The ID of the service that the instance is associated with.
406 */
407 ServiceId: ResourceId;
408 /**
409 * An array that contains the IDs of all the instances that you want to get the health status for. If you omit Instances, AWS Cloud Map returns the health status for all the instances that are associated with the specified service. To get the IDs for the instances that you've registered by using a specified service, submit a ListInstances request.
410 */
411 Instances?: InstanceIdList;
412 /**
413 * The maximum number of instances that you want AWS Cloud Map to return in the response to a GetInstancesHealthStatus request. If you don't specify a value for MaxResults, AWS Cloud Map returns up to 100 instances.
414 */
415 MaxResults?: MaxResults;
416 /**
417 * For the first GetInstancesHealthStatus request, omit this value. If more than MaxResults instances match the specified criteria, you can submit another GetInstancesHealthStatus request to get the next group of results. Specify the value of NextToken from the previous response in the next request.
418 */
419 NextToken?: NextToken;
420 }
421 export interface GetInstancesHealthStatusResponse {
422 /**
423 * A complex type that contains the IDs and the health status of the instances that you specified in the GetInstancesHealthStatus request.
424 */
425 Status?: InstanceHealthStatusMap;
426 /**
427 * If more than MaxResults instances match the specified criteria, you can submit another GetInstancesHealthStatus request to get the next group of results. Specify the value of NextToken from the previous response in the next request.
428 */
429 NextToken?: NextToken;
430 }
431 export interface GetNamespaceRequest {
432 /**
433 * The ID of the namespace that you want to get information about.
434 */
435 Id: ResourceId;
436 }
437 export interface GetNamespaceResponse {
438 /**
439 * A complex type that contains information about the specified namespace.
440 */
441 Namespace?: Namespace;
442 }
443 export interface GetOperationRequest {
444 /**
445 * The ID of the operation that you want to get more information about.
446 */
447 OperationId: ResourceId;
448 }
449 export interface GetOperationResponse {
450 /**
451 * A complex type that contains information about the operation.
452 */
453 Operation?: Operation;
454 }
455 export interface GetServiceRequest {
456 /**
457 * The ID of the service that you want to get settings for.
458 */
459 Id: ResourceId;
460 }
461 export interface GetServiceResponse {
462 /**
463 * A complex type that contains information about the service.
464 */
465 Service?: Service;
466 }
467 export interface HealthCheckConfig {
468 /**
469 * The type of health check that you want to create, which indicates how Route 53 determines whether an endpoint is healthy. You can't change the value of Type after you create a health check. You can create the following types of health checks: HTTP: Route 53 tries to establish a TCP connection. If successful, Route 53 submits an HTTP request and waits for an HTTP status code of 200 or greater and less than 400. HTTPS: Route 53 tries to establish a TCP connection. If successful, Route 53 submits an HTTPS request and waits for an HTTP status code of 200 or greater and less than 400. If you specify HTTPS for the value of Type, the endpoint must support TLS v1.0 or later. TCP: Route 53 tries to establish a TCP connection. If you specify TCP for Type, don't specify a value for ResourcePath. For more information, see How Route 53 Determines Whether an Endpoint Is Healthy in the Route 53 Developer Guide.
470 */
471 Type: HealthCheckType;
472 /**
473 * The path that you want Route 53 to request when performing health checks. The path can be any value for which your endpoint will return an HTTP status code of 2xx or 3xx when the endpoint is healthy, such as the file /docs/route53-health-check.html. Route 53 automatically adds the DNS name for the service. If you don't specify a value for ResourcePath, the default value is /. If you specify TCP for Type, you must not specify a value for ResourcePath.
474 */
475 ResourcePath?: ResourcePath;
476 /**
477 * The number of consecutive health checks that an endpoint must pass or fail for Route 53 to change the current status of the endpoint from unhealthy to healthy or vice versa. For more information, see How Route 53 Determines Whether an Endpoint Is Healthy in the Route 53 Developer Guide.
478 */
479 FailureThreshold?: FailureThreshold;
480 }
481 export interface HealthCheckCustomConfig {
482 /**
483 * The number of 30-second intervals that you want Cloud Map to wait after receiving an UpdateInstanceCustomHealthStatus request before it changes the health status of a service instance. For example, suppose you specify a value of 2 for FailureTheshold, and then your application sends an UpdateInstanceCustomHealthStatus request. Cloud Map waits for approximately 60 seconds (2 x 30) before changing the status of the service instance based on that request. Sending a second or subsequent UpdateInstanceCustomHealthStatus request with the same value before FailureThreshold x 30 seconds has passed doesn't accelerate the change. Cloud Map still waits FailureThreshold x 30 seconds after the first request to make the change.
484 */
485 FailureThreshold?: FailureThreshold;
486 }
487 export type HealthCheckType = "HTTP"|"HTTPS"|"TCP"|string;
488 export type HealthStatus = "HEALTHY"|"UNHEALTHY"|"UNKNOWN"|string;
489 export type HealthStatusFilter = "HEALTHY"|"UNHEALTHY"|"ALL"|string;
490 export interface HttpInstanceSummary {
491 /**
492 * The ID of an instance that matches the values that you specified in the request.
493 */
494 InstanceId?: ResourceId;
495 /**
496 * The name of the namespace that you specified when you registered the instance.
497 */
498 NamespaceName?: NamespaceName;
499 /**
500 * The name of the service that you specified when you registered the instance.
501 */
502 ServiceName?: ServiceName;
503 /**
504 * If you configured health checking in the service, the current health status of the service instance.
505 */
506 HealthStatus?: HealthStatus;
507 /**
508 * If you included any attributes when you registered the instance, the values of those attributes.
509 */
510 Attributes?: Attributes;
511 }
512 export type HttpInstanceSummaryList = HttpInstanceSummary[];
513 export interface HttpProperties {
514 /**
515 * The name of an HTTP namespace.
516 */
517 HttpName?: NamespaceName;
518 }
519 export interface Instance {
520 /**
521 * An identifier that you want to associate with the instance. Note the following: If the service that is specified by ServiceId includes settings for an SRV record, the value of InstanceId is automatically included as part of the value for the SRV record. For more information, see DnsRecord$Type. You can use this value to update an existing instance. To register a new instance, you must specify a value that is unique among instances that you register by using the same service. If you specify an existing InstanceId and ServiceId, AWS Cloud Map updates the existing DNS records. If there's also an existing health check, AWS Cloud Map deletes the old health check and creates a new one. The health check isn't deleted immediately, so it will still appear for a while if you submit a ListHealthChecks request, for example.
522 */
523 Id: ResourceId;
524 /**
525 * A unique string that identifies the request and that allows failed RegisterInstance requests to be retried without the risk of executing the operation twice. You must use a unique CreatorRequestId string every time you submit a RegisterInstance request if you're registering additional instances for the same namespace and service. CreatorRequestId can be any unique string, for example, a date/time stamp.
526 */
527 CreatorRequestId?: ResourceId;
528 /**
529 * A string map that contains the following information for the service that you specify in ServiceId: The attributes that apply to the records that are defined in the service. For each attribute, the applicable value. Supported attribute keys include the following: AWS_ALIAS_DNS_NAME If you want AWS Cloud Map to create a Route 53 alias record that routes traffic to an Elastic Load Balancing load balancer, specify the DNS name that is associated with the load balancer. For information about how to get the DNS name, see "DNSName" in the topic AliasTarget. Note the following: The configuration for the service that is specified by ServiceId must include settings for an A record, an AAAA record, or both. In the service that is specified by ServiceId, the value of RoutingPolicy must be WEIGHTED. If the service that is specified by ServiceId includes HealthCheckConfig settings, AWS Cloud Map will create the health check, but it won't associate the health check with the alias record. Auto naming currently doesn't support creating alias records that route traffic to AWS resources other than ELB load balancers. If you specify a value for AWS_ALIAS_DNS_NAME, don't specify values for any of the AWS_INSTANCE attributes. AWS_INSTANCE_CNAME If the service configuration includes a CNAME record, the domain name that you want Route 53 to return in response to DNS queries, for example, example.com. This value is required if the service specified by ServiceId includes settings for an CNAME record. AWS_INSTANCE_IPV4 If the service configuration includes an A record, the IPv4 address that you want Route 53 to return in response to DNS queries, for example, 192.0.2.44. This value is required if the service specified by ServiceId includes settings for an A record. If the service includes settings for an SRV record, you must specify a value for AWS_INSTANCE_IPV4, AWS_INSTANCE_IPV6, or both. AWS_INSTANCE_IPV6 If the service configuration includes an AAAA record, the IPv6 address that you want Route 53 to return in response to DNS queries, for example, 2001:0db8:85a3:0000:0000:abcd:0001:2345. This value is required if the service specified by ServiceId includes settings for an AAAA record. If the service includes settings for an SRV record, you must specify a value for AWS_INSTANCE_IPV4, AWS_INSTANCE_IPV6, or both. AWS_INSTANCE_PORT If the service includes an SRV record, the value that you want Route 53 to return for the port. If the service includes HealthCheckConfig, the port on the endpoint that you want Route 53 to send requests to. This value is required if you specified settings for an SRV record when you created the service.
530 */
531 Attributes?: Attributes;
532 }
533 export type InstanceHealthStatusMap = {[key: string]: HealthStatus};
534 export type InstanceIdList = ResourceId[];
535 export interface InstanceSummary {
536 /**
537 * The ID for an instance that you created by using a specified service.
538 */
539 Id?: ResourceId;
540 /**
541 * A string map that contains the following information: The attributes that are associate with the instance. For each attribute, the applicable value. Supported attribute keys include the following: AWS_ALIAS_DNS_NAME: For an alias record that routes traffic to an Elastic Load Balancing load balancer, the DNS name that is associated with the load balancer. AWS_INSTANCE_CNAME: For a CNAME record, the domain name that Route 53 returns in response to DNS queries, for example, example.com. AWS_INSTANCE_IPV4: For an A record, the IPv4 address that Route 53 returns in response to DNS queries, for example, 192.0.2.44. AWS_INSTANCE_IPV6: For an AAAA record, the IPv6 address that Route 53 returns in response to DNS queries, for example, 2001:0db8:85a3:0000:0000:abcd:0001:2345. AWS_INSTANCE_PORT: For an SRV record, the value that Route 53 returns for the port. In addition, if the service includes HealthCheckConfig, the port on the endpoint that Route 53 sends requests to.
542 */
543 Attributes?: Attributes;
544 }
545 export type InstanceSummaryList = InstanceSummary[];
546 export interface ListInstancesRequest {
547 /**
548 * The ID of the service that you want to list instances for.
549 */
550 ServiceId: ResourceId;
551 /**
552 * For the first ListInstances request, omit this value. If more than MaxResults instances match the specified criteria, you can submit another ListInstances request to get the next group of results. Specify the value of NextToken from the previous response in the next request.
553 */
554 NextToken?: NextToken;
555 /**
556 * The maximum number of instances that you want AWS Cloud Map to return in the response to a ListInstances request. If you don't specify a value for MaxResults, AWS Cloud Map returns up to 100 instances.
557 */
558 MaxResults?: MaxResults;
559 }
560 export interface ListInstancesResponse {
561 /**
562 * Summary information about the instances that are associated with the specified service.
563 */
564 Instances?: InstanceSummaryList;
565 /**
566 * If more than MaxResults instances match the specified criteria, you can submit another ListInstances request to get the next group of results. Specify the value of NextToken from the previous response in the next request.
567 */
568 NextToken?: NextToken;
569 }
570 export interface ListNamespacesRequest {
571 /**
572 * For the first ListNamespaces request, omit this value. If the response contains NextToken, submit another ListNamespaces request to get the next group of results. Specify the value of NextToken from the previous response in the next request. AWS Cloud Map gets MaxResults namespaces and then filters them based on the specified criteria. It's possible that no namespaces in the first MaxResults namespaces matched the specified criteria but that subsequent groups of MaxResults namespaces do contain namespaces that match the criteria.
573 */
574 NextToken?: NextToken;
575 /**
576 * The maximum number of namespaces that you want AWS Cloud Map to return in the response to a ListNamespaces request. If you don't specify a value for MaxResults, AWS Cloud Map returns up to 100 namespaces.
577 */
578 MaxResults?: MaxResults;
579 /**
580 * A complex type that contains specifications for the namespaces that you want to list. If you specify more than one filter, a namespace must match all filters to be returned by ListNamespaces.
581 */
582 Filters?: NamespaceFilters;
583 }
584 export interface ListNamespacesResponse {
585 /**
586 * An array that contains one NamespaceSummary object for each namespace that matches the specified filter criteria.
587 */
588 Namespaces?: NamespaceSummariesList;
589 /**
590 * If the response contains NextToken, submit another ListNamespaces request to get the next group of results. Specify the value of NextToken from the previous response in the next request. AWS Cloud Map gets MaxResults namespaces and then filters them based on the specified criteria. It's possible that no namespaces in the first MaxResults namespaces matched the specified criteria but that subsequent groups of MaxResults namespaces do contain namespaces that match the criteria.
591 */
592 NextToken?: NextToken;
593 }
594 export interface ListOperationsRequest {
595 /**
596 * For the first ListOperations request, omit this value. If the response contains NextToken, submit another ListOperations request to get the next group of results. Specify the value of NextToken from the previous response in the next request. AWS Cloud Map gets MaxResults operations and then filters them based on the specified criteria. It's possible that no operations in the first MaxResults operations matched the specified criteria but that subsequent groups of MaxResults operations do contain operations that match the criteria.
597 */
598 NextToken?: NextToken;
599 /**
600 * The maximum number of items that you want AWS Cloud Map to return in the response to a ListOperations request. If you don't specify a value for MaxResults, AWS Cloud Map returns up to 100 operations.
601 */
602 MaxResults?: MaxResults;
603 /**
604 * A complex type that contains specifications for the operations that you want to list, for example, operations that you started between a specified start date and end date. If you specify more than one filter, an operation must match all filters to be returned by ListOperations.
605 */
606 Filters?: OperationFilters;
607 }
608 export interface ListOperationsResponse {
609 /**
610 * Summary information about the operations that match the specified criteria.
611 */
612 Operations?: OperationSummaryList;
613 /**
614 * If the response contains NextToken, submit another ListOperations request to get the next group of results. Specify the value of NextToken from the previous response in the next request. AWS Cloud Map gets MaxResults operations and then filters them based on the specified criteria. It's possible that no operations in the first MaxResults operations matched the specified criteria but that subsequent groups of MaxResults operations do contain operations that match the criteria.
615 */
616 NextToken?: NextToken;
617 }
618 export interface ListServicesRequest {
619 /**
620 * For the first ListServices request, omit this value. If the response contains NextToken, submit another ListServices request to get the next group of results. Specify the value of NextToken from the previous response in the next request. AWS Cloud Map gets MaxResults services and then filters them based on the specified criteria. It's possible that no services in the first MaxResults services matched the specified criteria but that subsequent groups of MaxResults services do contain services that match the criteria.
621 */
622 NextToken?: NextToken;
623 /**
624 * The maximum number of services that you want AWS Cloud Map to return in the response to a ListServices request. If you don't specify a value for MaxResults, AWS Cloud Map returns up to 100 services.
625 */
626 MaxResults?: MaxResults;
627 /**
628 * A complex type that contains specifications for the namespaces that you want to list services for. If you specify more than one filter, an operation must match all filters to be returned by ListServices.
629 */
630 Filters?: ServiceFilters;
631 }
632 export interface ListServicesResponse {
633 /**
634 * An array that contains one ServiceSummary object for each service that matches the specified filter criteria.
635 */
636 Services?: ServiceSummariesList;
637 /**
638 * If the response contains NextToken, submit another ListServices request to get the next group of results. Specify the value of NextToken from the previous response in the next request. AWS Cloud Map gets MaxResults services and then filters them based on the specified criteria. It's possible that no services in the first MaxResults services matched the specified criteria but that subsequent groups of MaxResults services do contain services that match the criteria.
639 */
640 NextToken?: NextToken;
641 }
642 export type MaxResults = number;
643 export type Message = string;
644 export interface Namespace {
645 /**
646 * The ID of a namespace.
647 */
648 Id?: ResourceId;
649 /**
650 * The Amazon Resource Name (ARN) that AWS Cloud Map assigns to the namespace when you create it.
651 */
652 Arn?: Arn;
653 /**
654 * The name of the namespace, such as example.com.
655 */
656 Name?: NamespaceName;
657 /**
658 * The type of the namespace. Valid values are DNS_PUBLIC and DNS_PRIVATE.
659 */
660 Type?: NamespaceType;
661 /**
662 * The description that you specify for the namespace when you create it.
663 */
664 Description?: ResourceDescription;
665 /**
666 * The number of services that are associated with the namespace.
667 */
668 ServiceCount?: ResourceCount;
669 /**
670 * A complex type that contains information that's specific to the type of the namespace.
671 */
672 Properties?: NamespaceProperties;
673 /**
674 * The date that the namespace was created, in Unix date/time format and Coordinated Universal Time (UTC). The value of CreateDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
675 */
676 CreateDate?: Timestamp;
677 /**
678 * A unique string that identifies the request and that allows failed requests to be retried without the risk of executing an operation twice.
679 */
680 CreatorRequestId?: ResourceId;
681 }
682 export interface NamespaceFilter {
683 /**
684 * Specify TYPE.
685 */
686 Name: NamespaceFilterName;
687 /**
688 * If you specify EQ for Condition, specify either DNS_PUBLIC or DNS_PRIVATE. If you specify IN for Condition, you can specify DNS_PUBLIC, DNS_PRIVATE, or both.
689 */
690 Values: FilterValues;
691 /**
692 * The operator that you want to use to determine whether ListNamespaces returns a namespace. Valid values for condition include: EQ: When you specify EQ for the condition, you can choose to list only public namespaces or private namespaces, but not both. EQ is the default condition and can be omitted. IN: When you specify IN for the condition, you can choose to list public namespaces, private namespaces, or both. BETWEEN: Not applicable
693 */
694 Condition?: FilterCondition;
695 }
696 export type NamespaceFilterName = "TYPE"|string;
697 export type NamespaceFilters = NamespaceFilter[];
698 export type NamespaceName = string;
699 export interface NamespaceProperties {
700 /**
701 * A complex type that contains the ID for the Route 53 hosted zone that AWS Cloud Map creates when you create a namespace.
702 */
703 DnsProperties?: DnsProperties;
704 /**
705 * A complex type that contains the name of an HTTP namespace.
706 */
707 HttpProperties?: HttpProperties;
708 }
709 export type NamespaceSummariesList = NamespaceSummary[];
710 export interface NamespaceSummary {
711 /**
712 * The ID of the namespace.
713 */
714 Id?: ResourceId;
715 /**
716 * The Amazon Resource Name (ARN) that AWS Cloud Map assigns to the namespace when you create it.
717 */
718 Arn?: Arn;
719 /**
720 * The name of the namespace. When you create a namespace, AWS Cloud Map automatically creates a Route 53 hosted zone that has the same name as the namespace.
721 */
722 Name?: NamespaceName;
723 /**
724 * The type of the namespace, either public or private.
725 */
726 Type?: NamespaceType;
727 /**
728 * A description for the namespace.
729 */
730 Description?: ResourceDescription;
731 /**
732 * The number of services that were created using the namespace.
733 */
734 ServiceCount?: ResourceCount;
735 Properties?: NamespaceProperties;
736 /**
737 * The date and time that the namespace was created.
738 */
739 CreateDate?: Timestamp;
740 }
741 export type NamespaceType = "DNS_PUBLIC"|"DNS_PRIVATE"|"HTTP"|string;
742 export type NextToken = string;
743 export interface Operation {
744 /**
745 * The ID of the operation that you want to get information about.
746 */
747 Id?: OperationId;
748 /**
749 * The name of the operation that is associated with the specified ID.
750 */
751 Type?: OperationType;
752 /**
753 * The status of the operation. Values include the following: SUBMITTED: This is the initial state immediately after you submit a request. PENDING: AWS Cloud Map is performing the operation. SUCCESS: The operation succeeded. FAIL: The operation failed. For the failure reason, see ErrorMessage.
754 */
755 Status?: OperationStatus;
756 /**
757 * If the value of Status is FAIL, the reason that the operation failed.
758 */
759 ErrorMessage?: Message;
760 /**
761 * The code associated with ErrorMessage. Values for ErrorCode include the following: ACCESS_DENIED CANNOT_CREATE_HOSTED_ZONE EXPIRED_TOKEN HOSTED_ZONE_NOT_FOUND INTERNAL_FAILURE INVALID_CHANGE_BATCH THROTTLED_REQUEST
762 */
763 ErrorCode?: Code;
764 /**
765 * The date and time that the request was submitted, in Unix date/time format and Coordinated Universal Time (UTC). The value of CreateDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
766 */
767 CreateDate?: Timestamp;
768 /**
769 * The date and time that the value of Status changed to the current value, in Unix date/time format and Coordinated Universal Time (UTC). The value of UpdateDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
770 */
771 UpdateDate?: Timestamp;
772 /**
773 * The name of the target entity that is associated with the operation: NAMESPACE: The namespace ID is returned in the ResourceId property. SERVICE: The service ID is returned in the ResourceId property. INSTANCE: The instance ID is returned in the ResourceId property.
774 */
775 Targets?: OperationTargetsMap;
776 }
777 export interface OperationFilter {
778 /**
779 * Specify the operations that you want to get: NAMESPACE_ID: Gets operations related to specified namespaces. SERVICE_ID: Gets operations related to specified services. STATUS: Gets operations based on the status of the operations: SUBMITTED, PENDING, SUCCEED, or FAIL. TYPE: Gets specified types of operation. UPDATE_DATE: Gets operations that changed status during a specified date/time range.
780 */
781 Name: OperationFilterName;
782 /**
783 * Specify values that are applicable to the value that you specify for Name: NAMESPACE_ID: Specify one namespace ID. SERVICE_ID: Specify one service ID. STATUS: Specify one or more statuses: SUBMITTED, PENDING, SUCCEED, or FAIL. TYPE: Specify one or more of the following types: CREATE_NAMESPACE, DELETE_NAMESPACE, UPDATE_SERVICE, REGISTER_INSTANCE, or DEREGISTER_INSTANCE. UPDATE_DATE: Specify a start date and an end date in Unix date/time format and Coordinated Universal Time (UTC). The start date must be the first value.
784 */
785 Values: FilterValues;
786 /**
787 * The operator that you want to use to determine whether an operation matches the specified value. Valid values for condition include: EQ: When you specify EQ for the condition, you can specify only one value. EQ is supported for NAMESPACE_ID, SERVICE_ID, STATUS, and TYPE. EQ is the default condition and can be omitted. IN: When you specify IN for the condition, you can specify a list of one or more values. IN is supported for STATUS and TYPE. An operation must match one of the specified values to be returned in the response. BETWEEN: Specify a start date and an end date in Unix date/time format and Coordinated Universal Time (UTC). The start date must be the first value. BETWEEN is supported for UPDATE_DATE.
788 */
789 Condition?: FilterCondition;
790 }
791 export type OperationFilterName = "NAMESPACE_ID"|"SERVICE_ID"|"STATUS"|"TYPE"|"UPDATE_DATE"|string;
792 export type OperationFilters = OperationFilter[];
793 export type OperationId = string;
794 export type OperationStatus = "SUBMITTED"|"PENDING"|"SUCCESS"|"FAIL"|string;
795 export interface OperationSummary {
796 /**
797 * The ID for an operation.
798 */
799 Id?: OperationId;
800 /**
801 * The status of the operation. Values include the following: SUBMITTED: This is the initial state immediately after you submit a request. PENDING: AWS Cloud Map is performing the operation. SUCCESS: The operation succeeded. FAIL: The operation failed. For the failure reason, see ErrorMessage.
802 */
803 Status?: OperationStatus;
804 }
805 export type OperationSummaryList = OperationSummary[];
806 export type OperationTargetType = "NAMESPACE"|"SERVICE"|"INSTANCE"|string;
807 export type OperationTargetsMap = {[key: string]: ResourceId};
808 export type OperationType = "CREATE_NAMESPACE"|"DELETE_NAMESPACE"|"UPDATE_SERVICE"|"REGISTER_INSTANCE"|"DEREGISTER_INSTANCE"|string;
809 export type RecordTTL = number;
810 export type RecordType = "SRV"|"A"|"AAAA"|"CNAME"|string;
811 export interface RegisterInstanceRequest {
812 /**
813 * The ID of the service that you want to use for settings for the instance.
814 */
815 ServiceId: ResourceId;
816 /**
817 * An identifier that you want to associate with the instance. Note the following: If the service that is specified by ServiceId includes settings for an SRV record, the value of InstanceId is automatically included as part of the value for the SRV record. For more information, see DnsRecord$Type. You can use this value to update an existing instance. To register a new instance, you must specify a value that is unique among instances that you register by using the same service. If you specify an existing InstanceId and ServiceId, AWS Cloud Map updates the existing DNS records, if any. If there's also an existing health check, AWS Cloud Map deletes the old health check and creates a new one. The health check isn't deleted immediately, so it will still appear for a while if you submit a ListHealthChecks request, for example.
818 */
819 InstanceId: ResourceId;
820 /**
821 * A unique string that identifies the request and that allows failed RegisterInstance requests to be retried without the risk of executing the operation twice. You must use a unique CreatorRequestId string every time you submit a RegisterInstance request if you're registering additional instances for the same namespace and service. CreatorRequestId can be any unique string, for example, a date/time stamp.
822 */
823 CreatorRequestId?: ResourceId;
824 /**
825 * A string map that contains the following information for the service that you specify in ServiceId: The attributes that apply to the records that are defined in the service. For each attribute, the applicable value. Supported attribute keys include the following: AWS_ALIAS_DNS_NAME If you want AWS Cloud Map to create an Amazon Route 53 alias record that routes traffic to an Elastic Load Balancing load balancer, specify the DNS name that is associated with the load balancer. For information about how to get the DNS name, see "DNSName" in the topic AliasTarget in the Route 53 API Reference. Note the following: The configuration for the service that is specified by ServiceId must include settings for an A record, an AAAA record, or both. In the service that is specified by ServiceId, the value of RoutingPolicy must be WEIGHTED. If the service that is specified by ServiceId includes HealthCheckConfig settings, AWS Cloud Map will create the Route 53 health check, but it won't associate the health check with the alias record. Auto naming currently doesn't support creating alias records that route traffic to AWS resources other than ELB load balancers. If you specify a value for AWS_ALIAS_DNS_NAME, don't specify values for any of the AWS_INSTANCE attributes. AWS_INIT_HEALTH_STATUS If the service configuration includes HealthCheckCustomConfig, you can optionally use AWS_INIT_HEALTH_STATUS to specify the initial status of the custom health check, HEALTHY or UNHEALTHY. If you don't specify a value for AWS_INIT_HEALTH_STATUS, the initial status is HEALTHY. AWS_INSTANCE_CNAME If the service configuration includes a CNAME record, the domain name that you want Route 53 to return in response to DNS queries, for example, example.com. This value is required if the service specified by ServiceId includes settings for an CNAME record. AWS_INSTANCE_IPV4 If the service configuration includes an A record, the IPv4 address that you want Route 53 to return in response to DNS queries, for example, 192.0.2.44. This value is required if the service specified by ServiceId includes settings for an A record. If the service includes settings for an SRV record, you must specify a value for AWS_INSTANCE_IPV4, AWS_INSTANCE_IPV6, or both. AWS_INSTANCE_IPV6 If the service configuration includes an AAAA record, the IPv6 address that you want Route 53 to return in response to DNS queries, for example, 2001:0db8:85a3:0000:0000:abcd:0001:2345. This value is required if the service specified by ServiceId includes settings for an AAAA record. If the service includes settings for an SRV record, you must specify a value for AWS_INSTANCE_IPV4, AWS_INSTANCE_IPV6, or both. AWS_INSTANCE_PORT If the service includes an SRV record, the value that you want Route 53 to return for the port. If the service includes HealthCheckConfig, the port on the endpoint that you want Route 53 to send requests to. This value is required if you specified settings for an SRV record when you created the service. Custom attributes You can add up to 30 custom attributes. For each key-value pair, the maximum length of the attribute name is 255 characters, and the maximum length of the attribute value is 1,024 characters.
826 */
827 Attributes: Attributes;
828 }
829 export interface RegisterInstanceResponse {
830 /**
831 * A value that you can use to determine whether the request completed successfully. To get the status of the operation, see GetOperation.
832 */
833 OperationId?: OperationId;
834 }
835 export type ResourceCount = number;
836 export type ResourceDescription = string;
837 export type ResourceId = string;
838 export type ResourcePath = string;
839 export type RoutingPolicy = "MULTIVALUE"|"WEIGHTED"|string;
840 export interface Service {
841 /**
842 * The ID that AWS Cloud Map assigned to the service when you created it.
843 */
844 Id?: ResourceId;
845 /**
846 * The Amazon Resource Name (ARN) that AWS Cloud Map assigns to the service when you create it.
847 */
848 Arn?: Arn;
849 /**
850 * The name of the service.
851 */
852 Name?: ServiceName;
853 /**
854 * The ID of the namespace that was used to create the service.
855 */
856 NamespaceId?: ResourceId;
857 /**
858 * The description of the service.
859 */
860 Description?: ResourceDescription;
861 /**
862 * The number of instances that are currently associated with the service. Instances that were previously associated with the service but that have been deleted are not included in the count.
863 */
864 InstanceCount?: ResourceCount;
865 /**
866 * A complex type that contains information about the Route 53 DNS records that you want AWS Cloud Map to create when you register an instance.
867 */
868 DnsConfig?: DnsConfig;
869 /**
870 * Public DNS namespaces only. A complex type that contains settings for an optional health check. If you specify settings for a health check, AWS Cloud Map associates the health check with the records that you specify in DnsConfig. For information about the charges for health checks, see Amazon Route 53 Pricing.
871 */
872 HealthCheckConfig?: HealthCheckConfig;
873 /**
874 * A complex type that contains information about an optional custom health check. If you specify a health check configuration, you can specify either HealthCheckCustomConfig or HealthCheckConfig but not both.
875 */
876 HealthCheckCustomConfig?: HealthCheckCustomConfig;
877 /**
878 * The date and time that the service was created, in Unix format and Coordinated Universal Time (UTC). The value of CreateDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
879 */
880 CreateDate?: Timestamp;
881 /**
882 * A unique string that identifies the request and that allows failed requests to be retried without the risk of executing the operation twice. CreatorRequestId can be any unique string, for example, a date/time stamp.
883 */
884 CreatorRequestId?: ResourceId;
885 }
886 export interface ServiceChange {
887 /**
888 * A description for the service.
889 */
890 Description?: ResourceDescription;
891 /**
892 * A complex type that contains information about the Route 53 DNS records that you want AWS Cloud Map to create when you register an instance.
893 */
894 DnsConfig: DnsConfigChange;
895 HealthCheckConfig?: HealthCheckConfig;
896 }
897 export interface ServiceFilter {
898 /**
899 * Specify NAMESPACE_ID.
900 */
901 Name: ServiceFilterName;
902 /**
903 * The values that are applicable to the value that you specify for Condition to filter the list of services.
904 */
905 Values: FilterValues;
906 /**
907 * The operator that you want to use to determine whether a service is returned by ListServices. Valid values for Condition include the following: EQ: When you specify EQ, specify one namespace ID for Values. EQ is the default condition and can be omitted. IN: When you specify IN, specify a list of the IDs for the namespaces that you want ListServices to return a list of services for. BETWEEN: Not applicable.
908 */
909 Condition?: FilterCondition;
910 }
911 export type ServiceFilterName = "NAMESPACE_ID"|string;
912 export type ServiceFilters = ServiceFilter[];
913 export type ServiceName = string;
914 export type ServiceSummariesList = ServiceSummary[];
915 export interface ServiceSummary {
916 /**
917 * The ID that AWS Cloud Map assigned to the service when you created it.
918 */
919 Id?: ResourceId;
920 /**
921 * The Amazon Resource Name (ARN) that AWS Cloud Map assigns to the service when you create it.
922 */
923 Arn?: Arn;
924 /**
925 * The name of the service.
926 */
927 Name?: ServiceName;
928 /**
929 * The description that you specify when you create the service.
930 */
931 Description?: ResourceDescription;
932 /**
933 * The number of instances that are currently associated with the service. Instances that were previously associated with the service but that have been deleted are not included in the count.
934 */
935 InstanceCount?: ResourceCount;
936 DnsConfig?: DnsConfig;
937 HealthCheckConfig?: HealthCheckConfig;
938 HealthCheckCustomConfig?: HealthCheckCustomConfig;
939 /**
940 * The date and time that the service was created.
941 */
942 CreateDate?: Timestamp;
943 }
944 export type Timestamp = Date;
945 export interface UpdateInstanceCustomHealthStatusRequest {
946 /**
947 * The ID of the service that includes the configuration for the custom health check that you want to change the status for.
948 */
949 ServiceId: ResourceId;
950 /**
951 * The ID of the instance that you want to change the health status for.
952 */
953 InstanceId: ResourceId;
954 /**
955 * The new status of the instance, HEALTHY or UNHEALTHY.
956 */
957 Status: CustomHealthStatus;
958 }
959 export interface UpdateServiceRequest {
960 /**
961 * The ID of the service that you want to update.
962 */
963 Id: ResourceId;
964 /**
965 * A complex type that contains the new settings for the service.
966 */
967 Service: ServiceChange;
968 }
969 export interface UpdateServiceResponse {
970 /**
971 * A value that you can use to determine whether the request completed successfully. To get the status of the operation, see GetOperation.
972 */
973 OperationId?: OperationId;
974 }
975 /**
976 * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
977 */
978 export type apiVersion = "2017-03-14"|"latest"|string;
979 export interface ClientApiVersions {
980 /**
981 * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
982 */
983 apiVersion?: apiVersion;
984 }
985 export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
986 /**
987 * Contains interfaces for use with the ServiceDiscovery client.
988 */
989 export import Types = ServiceDiscovery;
990}
991export = ServiceDiscovery;