@aws-sdk/client-servicediscovery 3.300.0 → 3.303.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-cjs/models/models_0.js +83 -99
- package/dist-es/models/models_0.js +83 -99
- package/dist-types/commands/CreateHttpNamespaceCommand.d.ts +3 -3
- package/dist-types/commands/CreatePrivateDnsNamespaceCommand.d.ts +6 -6
- package/dist-types/commands/CreatePublicDnsNamespaceCommand.d.ts +6 -6
- package/dist-types/commands/CreateServiceCommand.d.ts +8 -8
- package/dist-types/commands/DeleteNamespaceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteServiceCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DiscoverInstancesCommand.d.ts +2 -2
- package/dist-types/commands/GetInstanceCommand.d.ts +1 -1
- package/dist-types/commands/GetInstancesHealthStatusCommand.d.ts +2 -2
- package/dist-types/commands/GetNamespaceCommand.d.ts +1 -1
- package/dist-types/commands/GetOperationCommand.d.ts +1 -1
- package/dist-types/commands/GetServiceCommand.d.ts +1 -1
- package/dist-types/commands/ListInstancesCommand.d.ts +1 -1
- package/dist-types/commands/ListNamespacesCommand.d.ts +4 -4
- package/dist-types/commands/ListOperationsCommand.d.ts +4 -4
- package/dist-types/commands/ListServicesCommand.d.ts +4 -4
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/RegisterInstanceCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateHttpNamespaceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateInstanceCustomHealthStatusCommand.d.ts +1 -1
- package/dist-types/commands/UpdatePrivateDnsNamespaceCommand.d.ts +5 -5
- package/dist-types/commands/UpdatePublicDnsNamespaceCommand.d.ts +5 -5
- package/dist-types/commands/UpdateServiceCommand.d.ts +6 -6
- package/dist-types/models/models_0.d.ts +163 -83
- package/dist-types/ts3.4/models/models_0.d.ts +109 -83
- package/package.json +34 -34
|
@@ -26,7 +26,7 @@ export interface GetServiceCommandOutput extends GetServiceResponse, __MetadataB
|
|
|
26
26
|
* import { ServiceDiscoveryClient, GetServiceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
|
|
27
27
|
* // const { ServiceDiscoveryClient, GetServiceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
|
|
28
28
|
* const client = new ServiceDiscoveryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // GetServiceRequest
|
|
30
30
|
* Id: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetServiceCommand(input);
|
|
@@ -27,7 +27,7 @@ export interface ListInstancesCommandOutput extends ListInstancesResponse, __Met
|
|
|
27
27
|
* import { ServiceDiscoveryClient, ListInstancesCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
|
|
28
28
|
* // const { ServiceDiscoveryClient, ListInstancesCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
|
|
29
29
|
* const client = new ServiceDiscoveryClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListInstancesRequest
|
|
31
31
|
* ServiceId: "STRING_VALUE", // required
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* MaxResults: Number("int"),
|
|
@@ -26,13 +26,13 @@ export interface ListNamespacesCommandOutput extends ListNamespacesResponse, __M
|
|
|
26
26
|
* import { ServiceDiscoveryClient, ListNamespacesCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
|
|
27
27
|
* // const { ServiceDiscoveryClient, ListNamespacesCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
|
|
28
28
|
* const client = new ServiceDiscoveryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListNamespacesRequest
|
|
30
30
|
* NextToken: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
|
-
* Filters: [
|
|
33
|
-
* {
|
|
32
|
+
* Filters: [ // NamespaceFilters
|
|
33
|
+
* { // NamespaceFilter
|
|
34
34
|
* Name: "TYPE" || "NAME" || "HTTP_NAME", // required
|
|
35
|
-
* Values: [ // required
|
|
35
|
+
* Values: [ // FilterValues // required
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
38
|
* Condition: "EQ" || "IN" || "BETWEEN" || "BEGINS_WITH",
|
|
@@ -26,13 +26,13 @@ export interface ListOperationsCommandOutput extends ListOperationsResponse, __M
|
|
|
26
26
|
* import { ServiceDiscoveryClient, ListOperationsCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
|
|
27
27
|
* // const { ServiceDiscoveryClient, ListOperationsCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
|
|
28
28
|
* const client = new ServiceDiscoveryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListOperationsRequest
|
|
30
30
|
* NextToken: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
|
-
* Filters: [
|
|
33
|
-
* {
|
|
32
|
+
* Filters: [ // OperationFilters
|
|
33
|
+
* { // OperationFilter
|
|
34
34
|
* Name: "NAMESPACE_ID" || "SERVICE_ID" || "STATUS" || "TYPE" || "UPDATE_DATE", // required
|
|
35
|
-
* Values: [ // required
|
|
35
|
+
* Values: [ // FilterValues // required
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
38
|
* Condition: "EQ" || "IN" || "BETWEEN" || "BEGINS_WITH",
|
|
@@ -27,13 +27,13 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad
|
|
|
27
27
|
* import { ServiceDiscoveryClient, ListServicesCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
|
|
28
28
|
* // const { ServiceDiscoveryClient, ListServicesCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
|
|
29
29
|
* const client = new ServiceDiscoveryClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListServicesRequest
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
33
|
-
* Filters: [
|
|
34
|
-
* {
|
|
33
|
+
* Filters: [ // ServiceFilters
|
|
34
|
+
* { // ServiceFilter
|
|
35
35
|
* Name: "NAMESPACE_ID", // required
|
|
36
|
-
* Values: [ // required
|
|
36
|
+
* Values: [ // FilterValues // required
|
|
37
37
|
* "STRING_VALUE",
|
|
38
38
|
* ],
|
|
39
39
|
* Condition: "EQ" || "IN" || "BETWEEN" || "BEGINS_WITH",
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { ServiceDiscoveryClient, ListTagsForResourceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
|
|
27
27
|
* // const { ServiceDiscoveryClient, ListTagsForResourceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
|
|
28
28
|
* const client = new ServiceDiscoveryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* ResourceARN: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -69,11 +69,11 @@ export interface RegisterInstanceCommandOutput extends RegisterInstanceResponse,
|
|
|
69
69
|
* import { ServiceDiscoveryClient, RegisterInstanceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
|
|
70
70
|
* // const { ServiceDiscoveryClient, RegisterInstanceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
|
|
71
71
|
* const client = new ServiceDiscoveryClient(config);
|
|
72
|
-
* const input = {
|
|
72
|
+
* const input = { // RegisterInstanceRequest
|
|
73
73
|
* ServiceId: "STRING_VALUE", // required
|
|
74
74
|
* InstanceId: "STRING_VALUE", // required
|
|
75
75
|
* CreatorRequestId: "STRING_VALUE",
|
|
76
|
-
* Attributes: { // required
|
|
76
|
+
* Attributes: { // Attributes // required
|
|
77
77
|
* "<keys>": "STRING_VALUE",
|
|
78
78
|
* },
|
|
79
79
|
* };
|
|
@@ -26,10 +26,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { ServiceDiscoveryClient, TagResourceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
|
|
27
27
|
* // const { ServiceDiscoveryClient, TagResourceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
|
|
28
28
|
* const client = new ServiceDiscoveryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* ResourceARN: "STRING_VALUE", // required
|
|
31
|
-
* Tags: [ // required
|
|
32
|
-
* {
|
|
31
|
+
* Tags: [ // TagList // required
|
|
32
|
+
* { // Tag
|
|
33
33
|
* Key: "STRING_VALUE", // required
|
|
34
34
|
* Value: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { ServiceDiscoveryClient, UntagResourceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
|
|
27
27
|
* // const { ServiceDiscoveryClient, UntagResourceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
|
|
28
28
|
* const client = new ServiceDiscoveryClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* ResourceARN: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [ // required
|
|
31
|
+
* TagKeys: [ // TagKeyList // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -27,10 +27,10 @@ export interface UpdateHttpNamespaceCommandOutput extends UpdateHttpNamespaceRes
|
|
|
27
27
|
* import { ServiceDiscoveryClient, UpdateHttpNamespaceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
|
|
28
28
|
* // const { ServiceDiscoveryClient, UpdateHttpNamespaceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
|
|
29
29
|
* const client = new ServiceDiscoveryClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UpdateHttpNamespaceRequest
|
|
31
31
|
* Id: "STRING_VALUE", // required
|
|
32
32
|
* UpdaterRequestId: "STRING_VALUE",
|
|
33
|
-
* Namespace: {
|
|
33
|
+
* Namespace: { // HttpNamespaceChange
|
|
34
34
|
* Description: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
36
36
|
* };
|
|
@@ -32,7 +32,7 @@ export interface UpdateInstanceCustomHealthStatusCommandOutput extends __Metadat
|
|
|
32
32
|
* import { ServiceDiscoveryClient, UpdateInstanceCustomHealthStatusCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
|
|
33
33
|
* // const { ServiceDiscoveryClient, UpdateInstanceCustomHealthStatusCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
|
|
34
34
|
* const client = new ServiceDiscoveryClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // UpdateInstanceCustomHealthStatusRequest
|
|
36
36
|
* ServiceId: "STRING_VALUE", // required
|
|
37
37
|
* InstanceId: "STRING_VALUE", // required
|
|
38
38
|
* Status: "HEALTHY" || "UNHEALTHY", // required
|
|
@@ -27,14 +27,14 @@ export interface UpdatePrivateDnsNamespaceCommandOutput extends UpdatePrivateDns
|
|
|
27
27
|
* import { ServiceDiscoveryClient, UpdatePrivateDnsNamespaceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
|
|
28
28
|
* // const { ServiceDiscoveryClient, UpdatePrivateDnsNamespaceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
|
|
29
29
|
* const client = new ServiceDiscoveryClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UpdatePrivateDnsNamespaceRequest
|
|
31
31
|
* Id: "STRING_VALUE", // required
|
|
32
32
|
* UpdaterRequestId: "STRING_VALUE",
|
|
33
|
-
* Namespace: {
|
|
33
|
+
* Namespace: { // PrivateDnsNamespaceChange
|
|
34
34
|
* Description: "STRING_VALUE",
|
|
35
|
-
* Properties: {
|
|
36
|
-
* DnsProperties: {
|
|
37
|
-
* SOA: {
|
|
35
|
+
* Properties: { // PrivateDnsNamespacePropertiesChange
|
|
36
|
+
* DnsProperties: { // PrivateDnsPropertiesMutableChange
|
|
37
|
+
* SOA: { // SOAChange
|
|
38
38
|
* TTL: Number("long"), // required
|
|
39
39
|
* },
|
|
40
40
|
* },
|
|
@@ -27,14 +27,14 @@ export interface UpdatePublicDnsNamespaceCommandOutput extends UpdatePublicDnsNa
|
|
|
27
27
|
* import { ServiceDiscoveryClient, UpdatePublicDnsNamespaceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
|
|
28
28
|
* // const { ServiceDiscoveryClient, UpdatePublicDnsNamespaceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
|
|
29
29
|
* const client = new ServiceDiscoveryClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UpdatePublicDnsNamespaceRequest
|
|
31
31
|
* Id: "STRING_VALUE", // required
|
|
32
32
|
* UpdaterRequestId: "STRING_VALUE",
|
|
33
|
-
* Namespace: {
|
|
33
|
+
* Namespace: { // PublicDnsNamespaceChange
|
|
34
34
|
* Description: "STRING_VALUE",
|
|
35
|
-
* Properties: {
|
|
36
|
-
* DnsProperties: {
|
|
37
|
-
* SOA: {
|
|
35
|
+
* Properties: { // PublicDnsNamespacePropertiesChange
|
|
36
|
+
* DnsProperties: { // PublicDnsPropertiesMutableChange
|
|
37
|
+
* SOA: { // SOAChange
|
|
38
38
|
* TTL: Number("long"), // required
|
|
39
39
|
* },
|
|
40
40
|
* },
|
|
@@ -52,19 +52,19 @@ export interface UpdateServiceCommandOutput extends UpdateServiceResponse, __Met
|
|
|
52
52
|
* import { ServiceDiscoveryClient, UpdateServiceCommand } from "@aws-sdk/client-servicediscovery"; // ES Modules import
|
|
53
53
|
* // const { ServiceDiscoveryClient, UpdateServiceCommand } = require("@aws-sdk/client-servicediscovery"); // CommonJS import
|
|
54
54
|
* const client = new ServiceDiscoveryClient(config);
|
|
55
|
-
* const input = {
|
|
55
|
+
* const input = { // UpdateServiceRequest
|
|
56
56
|
* Id: "STRING_VALUE", // required
|
|
57
|
-
* Service: {
|
|
57
|
+
* Service: { // ServiceChange
|
|
58
58
|
* Description: "STRING_VALUE",
|
|
59
|
-
* DnsConfig: {
|
|
60
|
-
* DnsRecords: [ // required
|
|
61
|
-
* {
|
|
59
|
+
* DnsConfig: { // DnsConfigChange
|
|
60
|
+
* DnsRecords: [ // DnsRecordList // required
|
|
61
|
+
* { // DnsRecord
|
|
62
62
|
* Type: "SRV" || "A" || "AAAA" || "CNAME", // required
|
|
63
63
|
* TTL: Number("long"), // required
|
|
64
64
|
* },
|
|
65
65
|
* ],
|
|
66
66
|
* },
|
|
67
|
-
* HealthCheckConfig: {
|
|
67
|
+
* HealthCheckConfig: { // HealthCheckConfig
|
|
68
68
|
* Type: "HTTP" || "HTTPS" || "TCP", // required
|
|
69
69
|
* ResourcePath: "STRING_VALUE",
|
|
70
70
|
* FailureThreshold: Number("int"),
|
|
@@ -290,13 +290,18 @@ export interface CreatePublicDnsNamespaceResponse {
|
|
|
290
290
|
}
|
|
291
291
|
/**
|
|
292
292
|
* @public
|
|
293
|
+
* @enum
|
|
293
294
|
*/
|
|
294
|
-
export declare
|
|
295
|
-
A
|
|
296
|
-
AAAA
|
|
297
|
-
CNAME
|
|
298
|
-
SRV
|
|
299
|
-
}
|
|
295
|
+
export declare const RecordType: {
|
|
296
|
+
readonly A: "A";
|
|
297
|
+
readonly AAAA: "AAAA";
|
|
298
|
+
readonly CNAME: "CNAME";
|
|
299
|
+
readonly SRV: "SRV";
|
|
300
|
+
};
|
|
301
|
+
/**
|
|
302
|
+
* @public
|
|
303
|
+
*/
|
|
304
|
+
export type RecordType = (typeof RecordType)[keyof typeof RecordType];
|
|
300
305
|
/**
|
|
301
306
|
* @public
|
|
302
307
|
* <p>A complex type that contains information about the Route 53 DNS records that you want
|
|
@@ -457,11 +462,16 @@ export interface DnsRecord {
|
|
|
457
462
|
}
|
|
458
463
|
/**
|
|
459
464
|
* @public
|
|
465
|
+
* @enum
|
|
460
466
|
*/
|
|
461
|
-
export declare
|
|
462
|
-
MULTIVALUE
|
|
463
|
-
WEIGHTED
|
|
464
|
-
}
|
|
467
|
+
export declare const RoutingPolicy: {
|
|
468
|
+
readonly MULTIVALUE: "MULTIVALUE";
|
|
469
|
+
readonly WEIGHTED: "WEIGHTED";
|
|
470
|
+
};
|
|
471
|
+
/**
|
|
472
|
+
* @public
|
|
473
|
+
*/
|
|
474
|
+
export type RoutingPolicy = (typeof RoutingPolicy)[keyof typeof RoutingPolicy];
|
|
465
475
|
/**
|
|
466
476
|
* @public
|
|
467
477
|
* <p>A complex type that contains information about the Amazon Route 53 DNS records that you want
|
|
@@ -531,12 +541,17 @@ export interface DnsConfig {
|
|
|
531
541
|
}
|
|
532
542
|
/**
|
|
533
543
|
* @public
|
|
544
|
+
* @enum
|
|
534
545
|
*/
|
|
535
|
-
export declare
|
|
536
|
-
HTTP
|
|
537
|
-
HTTPS
|
|
538
|
-
TCP
|
|
539
|
-
}
|
|
546
|
+
export declare const HealthCheckType: {
|
|
547
|
+
readonly HTTP: "HTTP";
|
|
548
|
+
readonly HTTPS: "HTTPS";
|
|
549
|
+
readonly TCP: "TCP";
|
|
550
|
+
};
|
|
551
|
+
/**
|
|
552
|
+
* @public
|
|
553
|
+
*/
|
|
554
|
+
export type HealthCheckType = (typeof HealthCheckType)[keyof typeof HealthCheckType];
|
|
540
555
|
/**
|
|
541
556
|
* @public
|
|
542
557
|
* <p>
|
|
@@ -735,10 +750,15 @@ export interface HealthCheckCustomConfig {
|
|
|
735
750
|
}
|
|
736
751
|
/**
|
|
737
752
|
* @public
|
|
753
|
+
* @enum
|
|
738
754
|
*/
|
|
739
|
-
export declare
|
|
740
|
-
HTTP
|
|
741
|
-
}
|
|
755
|
+
export declare const ServiceTypeOption: {
|
|
756
|
+
readonly HTTP: "HTTP";
|
|
757
|
+
};
|
|
758
|
+
/**
|
|
759
|
+
* @public
|
|
760
|
+
*/
|
|
761
|
+
export type ServiceTypeOption = (typeof ServiceTypeOption)[keyof typeof ServiceTypeOption];
|
|
742
762
|
/**
|
|
743
763
|
* @public
|
|
744
764
|
*/
|
|
@@ -829,12 +849,17 @@ export interface CreateServiceRequest {
|
|
|
829
849
|
}
|
|
830
850
|
/**
|
|
831
851
|
* @public
|
|
852
|
+
* @enum
|
|
832
853
|
*/
|
|
833
|
-
export declare
|
|
834
|
-
DNS
|
|
835
|
-
DNS_HTTP
|
|
836
|
-
HTTP
|
|
837
|
-
}
|
|
854
|
+
export declare const ServiceType: {
|
|
855
|
+
readonly DNS: "DNS";
|
|
856
|
+
readonly DNS_HTTP: "DNS_HTTP";
|
|
857
|
+
readonly HTTP: "HTTP";
|
|
858
|
+
};
|
|
859
|
+
/**
|
|
860
|
+
* @public
|
|
861
|
+
*/
|
|
862
|
+
export type ServiceType = (typeof ServiceType)[keyof typeof ServiceType];
|
|
838
863
|
/**
|
|
839
864
|
* @public
|
|
840
865
|
* <p>A complex type that contains information about the specified service.</p>
|
|
@@ -983,11 +1008,16 @@ export declare class CustomHealthNotFound extends __BaseException {
|
|
|
983
1008
|
}
|
|
984
1009
|
/**
|
|
985
1010
|
* @public
|
|
1011
|
+
* @enum
|
|
986
1012
|
*/
|
|
987
|
-
export declare
|
|
988
|
-
HEALTHY
|
|
989
|
-
UNHEALTHY
|
|
990
|
-
}
|
|
1013
|
+
export declare const CustomHealthStatus: {
|
|
1014
|
+
readonly HEALTHY: "HEALTHY";
|
|
1015
|
+
readonly UNHEALTHY: "UNHEALTHY";
|
|
1016
|
+
};
|
|
1017
|
+
/**
|
|
1018
|
+
* @public
|
|
1019
|
+
*/
|
|
1020
|
+
export type CustomHealthStatus = (typeof CustomHealthStatus)[keyof typeof CustomHealthStatus];
|
|
991
1021
|
/**
|
|
992
1022
|
* @public
|
|
993
1023
|
*/
|
|
@@ -1087,13 +1117,18 @@ export declare class InstanceNotFound extends __BaseException {
|
|
|
1087
1117
|
}
|
|
1088
1118
|
/**
|
|
1089
1119
|
* @public
|
|
1120
|
+
* @enum
|
|
1090
1121
|
*/
|
|
1091
|
-
export declare
|
|
1092
|
-
ALL
|
|
1093
|
-
HEALTHY
|
|
1094
|
-
HEALTHY_OR_ELSE_ALL
|
|
1095
|
-
UNHEALTHY
|
|
1096
|
-
}
|
|
1122
|
+
export declare const HealthStatusFilter: {
|
|
1123
|
+
readonly ALL: "ALL";
|
|
1124
|
+
readonly HEALTHY: "HEALTHY";
|
|
1125
|
+
readonly HEALTHY_OR_ELSE_ALL: "HEALTHY_OR_ELSE_ALL";
|
|
1126
|
+
readonly UNHEALTHY: "UNHEALTHY";
|
|
1127
|
+
};
|
|
1128
|
+
/**
|
|
1129
|
+
* @public
|
|
1130
|
+
*/
|
|
1131
|
+
export type HealthStatusFilter = (typeof HealthStatusFilter)[keyof typeof HealthStatusFilter];
|
|
1097
1132
|
/**
|
|
1098
1133
|
* @public
|
|
1099
1134
|
*/
|
|
@@ -1157,12 +1192,17 @@ export interface DiscoverInstancesRequest {
|
|
|
1157
1192
|
}
|
|
1158
1193
|
/**
|
|
1159
1194
|
* @public
|
|
1195
|
+
* @enum
|
|
1160
1196
|
*/
|
|
1161
|
-
export declare
|
|
1162
|
-
HEALTHY
|
|
1163
|
-
UNHEALTHY
|
|
1164
|
-
UNKNOWN
|
|
1165
|
-
}
|
|
1197
|
+
export declare const HealthStatus: {
|
|
1198
|
+
readonly HEALTHY: "HEALTHY";
|
|
1199
|
+
readonly UNHEALTHY: "UNHEALTHY";
|
|
1200
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
1201
|
+
};
|
|
1202
|
+
/**
|
|
1203
|
+
* @public
|
|
1204
|
+
*/
|
|
1205
|
+
export type HealthStatus = (typeof HealthStatus)[keyof typeof HealthStatus];
|
|
1166
1206
|
/**
|
|
1167
1207
|
* @public
|
|
1168
1208
|
* <p>In a response to a <a href="https://docs.aws.amazon.com/cloud-map/latest/api/API_DiscoverInstances.html">DiscoverInstances</a> request,
|
|
@@ -1254,13 +1294,18 @@ export interface DnsProperties {
|
|
|
1254
1294
|
}
|
|
1255
1295
|
/**
|
|
1256
1296
|
* @public
|
|
1297
|
+
* @enum
|
|
1257
1298
|
*/
|
|
1258
|
-
export declare
|
|
1259
|
-
BEGINS_WITH
|
|
1260
|
-
BETWEEN
|
|
1261
|
-
EQ
|
|
1262
|
-
IN
|
|
1263
|
-
}
|
|
1299
|
+
export declare const FilterCondition: {
|
|
1300
|
+
readonly BEGINS_WITH: "BEGINS_WITH";
|
|
1301
|
+
readonly BETWEEN: "BETWEEN";
|
|
1302
|
+
readonly EQ: "EQ";
|
|
1303
|
+
readonly IN: "IN";
|
|
1304
|
+
};
|
|
1305
|
+
/**
|
|
1306
|
+
* @public
|
|
1307
|
+
*/
|
|
1308
|
+
export type FilterCondition = (typeof FilterCondition)[keyof typeof FilterCondition];
|
|
1264
1309
|
/**
|
|
1265
1310
|
* @public
|
|
1266
1311
|
*/
|
|
@@ -1511,12 +1556,17 @@ export interface NamespaceProperties {
|
|
|
1511
1556
|
}
|
|
1512
1557
|
/**
|
|
1513
1558
|
* @public
|
|
1559
|
+
* @enum
|
|
1514
1560
|
*/
|
|
1515
|
-
export declare
|
|
1516
|
-
DNS_PRIVATE
|
|
1517
|
-
DNS_PUBLIC
|
|
1518
|
-
HTTP
|
|
1519
|
-
}
|
|
1561
|
+
export declare const NamespaceType: {
|
|
1562
|
+
readonly DNS_PRIVATE: "DNS_PRIVATE";
|
|
1563
|
+
readonly DNS_PUBLIC: "DNS_PUBLIC";
|
|
1564
|
+
readonly HTTP: "HTTP";
|
|
1565
|
+
};
|
|
1566
|
+
/**
|
|
1567
|
+
* @public
|
|
1568
|
+
*/
|
|
1569
|
+
export type NamespaceType = (typeof NamespaceType)[keyof typeof NamespaceType];
|
|
1520
1570
|
/**
|
|
1521
1571
|
* @public
|
|
1522
1572
|
* <p>A complex type that contains information about a specified namespace.</p>
|
|
@@ -1601,32 +1651,47 @@ export interface GetOperationRequest {
|
|
|
1601
1651
|
}
|
|
1602
1652
|
/**
|
|
1603
1653
|
* @public
|
|
1654
|
+
* @enum
|
|
1604
1655
|
*/
|
|
1605
|
-
export declare
|
|
1606
|
-
FAIL
|
|
1607
|
-
PENDING
|
|
1608
|
-
SUBMITTED
|
|
1609
|
-
SUCCESS
|
|
1610
|
-
}
|
|
1656
|
+
export declare const OperationStatus: {
|
|
1657
|
+
readonly FAIL: "FAIL";
|
|
1658
|
+
readonly PENDING: "PENDING";
|
|
1659
|
+
readonly SUBMITTED: "SUBMITTED";
|
|
1660
|
+
readonly SUCCESS: "SUCCESS";
|
|
1661
|
+
};
|
|
1611
1662
|
/**
|
|
1612
1663
|
* @public
|
|
1613
1664
|
*/
|
|
1614
|
-
export
|
|
1615
|
-
INSTANCE = "INSTANCE",
|
|
1616
|
-
NAMESPACE = "NAMESPACE",
|
|
1617
|
-
SERVICE = "SERVICE"
|
|
1618
|
-
}
|
|
1665
|
+
export type OperationStatus = (typeof OperationStatus)[keyof typeof OperationStatus];
|
|
1619
1666
|
/**
|
|
1620
1667
|
* @public
|
|
1668
|
+
* @enum
|
|
1621
1669
|
*/
|
|
1622
|
-
export declare
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1670
|
+
export declare const OperationTargetType: {
|
|
1671
|
+
readonly INSTANCE: "INSTANCE";
|
|
1672
|
+
readonly NAMESPACE: "NAMESPACE";
|
|
1673
|
+
readonly SERVICE: "SERVICE";
|
|
1674
|
+
};
|
|
1675
|
+
/**
|
|
1676
|
+
* @public
|
|
1677
|
+
*/
|
|
1678
|
+
export type OperationTargetType = (typeof OperationTargetType)[keyof typeof OperationTargetType];
|
|
1679
|
+
/**
|
|
1680
|
+
* @public
|
|
1681
|
+
* @enum
|
|
1682
|
+
*/
|
|
1683
|
+
export declare const OperationType: {
|
|
1684
|
+
readonly CREATE_NAMESPACE: "CREATE_NAMESPACE";
|
|
1685
|
+
readonly DELETE_NAMESPACE: "DELETE_NAMESPACE";
|
|
1686
|
+
readonly DEREGISTER_INSTANCE: "DEREGISTER_INSTANCE";
|
|
1687
|
+
readonly REGISTER_INSTANCE: "REGISTER_INSTANCE";
|
|
1688
|
+
readonly UPDATE_NAMESPACE: "UPDATE_NAMESPACE";
|
|
1689
|
+
readonly UPDATE_SERVICE: "UPDATE_SERVICE";
|
|
1690
|
+
};
|
|
1691
|
+
/**
|
|
1692
|
+
* @public
|
|
1693
|
+
*/
|
|
1694
|
+
export type OperationType = (typeof OperationType)[keyof typeof OperationType];
|
|
1630
1695
|
/**
|
|
1631
1696
|
* @public
|
|
1632
1697
|
* <p>A complex type that contains information about a specified operation.</p>
|
|
@@ -1899,12 +1964,17 @@ export interface ListInstancesResponse {
|
|
|
1899
1964
|
}
|
|
1900
1965
|
/**
|
|
1901
1966
|
* @public
|
|
1967
|
+
* @enum
|
|
1902
1968
|
*/
|
|
1903
|
-
export declare
|
|
1904
|
-
HTTP_NAME
|
|
1905
|
-
NAME
|
|
1906
|
-
TYPE
|
|
1907
|
-
}
|
|
1969
|
+
export declare const NamespaceFilterName: {
|
|
1970
|
+
readonly HTTP_NAME: "HTTP_NAME";
|
|
1971
|
+
readonly NAME: "NAME";
|
|
1972
|
+
readonly TYPE: "TYPE";
|
|
1973
|
+
};
|
|
1974
|
+
/**
|
|
1975
|
+
* @public
|
|
1976
|
+
*/
|
|
1977
|
+
export type NamespaceFilterName = (typeof NamespaceFilterName)[keyof typeof NamespaceFilterName];
|
|
1908
1978
|
/**
|
|
1909
1979
|
* @public
|
|
1910
1980
|
* <p>A complex type that identifies the namespaces that you want to list. You can choose to list
|
|
@@ -2065,14 +2135,19 @@ export interface ListNamespacesResponse {
|
|
|
2065
2135
|
}
|
|
2066
2136
|
/**
|
|
2067
2137
|
* @public
|
|
2138
|
+
* @enum
|
|
2068
2139
|
*/
|
|
2069
|
-
export declare
|
|
2070
|
-
NAMESPACE_ID
|
|
2071
|
-
SERVICE_ID
|
|
2072
|
-
STATUS
|
|
2073
|
-
TYPE
|
|
2074
|
-
UPDATE_DATE
|
|
2075
|
-
}
|
|
2140
|
+
export declare const OperationFilterName: {
|
|
2141
|
+
readonly NAMESPACE_ID: "NAMESPACE_ID";
|
|
2142
|
+
readonly SERVICE_ID: "SERVICE_ID";
|
|
2143
|
+
readonly STATUS: "STATUS";
|
|
2144
|
+
readonly TYPE: "TYPE";
|
|
2145
|
+
readonly UPDATE_DATE: "UPDATE_DATE";
|
|
2146
|
+
};
|
|
2147
|
+
/**
|
|
2148
|
+
* @public
|
|
2149
|
+
*/
|
|
2150
|
+
export type OperationFilterName = (typeof OperationFilterName)[keyof typeof OperationFilterName];
|
|
2076
2151
|
/**
|
|
2077
2152
|
* @public
|
|
2078
2153
|
* <p>A complex type that lets you select the operations that you want to list.</p>
|
|
@@ -2258,10 +2333,15 @@ export interface ListOperationsResponse {
|
|
|
2258
2333
|
}
|
|
2259
2334
|
/**
|
|
2260
2335
|
* @public
|
|
2336
|
+
* @enum
|
|
2261
2337
|
*/
|
|
2262
|
-
export declare
|
|
2263
|
-
NAMESPACE_ID
|
|
2264
|
-
}
|
|
2338
|
+
export declare const ServiceFilterName: {
|
|
2339
|
+
readonly NAMESPACE_ID: "NAMESPACE_ID";
|
|
2340
|
+
};
|
|
2341
|
+
/**
|
|
2342
|
+
* @public
|
|
2343
|
+
*/
|
|
2344
|
+
export type ServiceFilterName = (typeof ServiceFilterName)[keyof typeof ServiceFilterName];
|
|
2265
2345
|
/**
|
|
2266
2346
|
* @public
|
|
2267
2347
|
* <p>A complex type that lets you specify the namespaces that you want to list services
|