@aws-sdk/client-servicediscovery 3.296.0 → 3.297.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/dist-types/ServiceDiscovery.d.ts +27 -0
  2. package/dist-types/ServiceDiscoveryClient.d.ts +24 -4
  3. package/dist-types/commands/CreateHttpNamespaceCommand.d.ts +16 -0
  4. package/dist-types/commands/CreatePrivateDnsNamespaceCommand.d.ts +16 -0
  5. package/dist-types/commands/CreatePublicDnsNamespaceCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateServiceCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteNamespaceCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteServiceCommand.d.ts +16 -0
  9. package/dist-types/commands/DeregisterInstanceCommand.d.ts +16 -0
  10. package/dist-types/commands/DiscoverInstancesCommand.d.ts +16 -0
  11. package/dist-types/commands/GetInstanceCommand.d.ts +16 -0
  12. package/dist-types/commands/GetInstancesHealthStatusCommand.d.ts +16 -0
  13. package/dist-types/commands/GetNamespaceCommand.d.ts +16 -0
  14. package/dist-types/commands/GetOperationCommand.d.ts +16 -0
  15. package/dist-types/commands/GetServiceCommand.d.ts +16 -0
  16. package/dist-types/commands/ListInstancesCommand.d.ts +16 -0
  17. package/dist-types/commands/ListNamespacesCommand.d.ts +16 -0
  18. package/dist-types/commands/ListOperationsCommand.d.ts +16 -0
  19. package/dist-types/commands/ListServicesCommand.d.ts +16 -0
  20. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  21. package/dist-types/commands/RegisterInstanceCommand.d.ts +16 -0
  22. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  23. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  24. package/dist-types/commands/UpdateHttpNamespaceCommand.d.ts +16 -0
  25. package/dist-types/commands/UpdateInstanceCustomHealthStatusCommand.d.ts +16 -0
  26. package/dist-types/commands/UpdatePrivateDnsNamespaceCommand.d.ts +16 -0
  27. package/dist-types/commands/UpdatePublicDnsNamespaceCommand.d.ts +16 -0
  28. package/dist-types/commands/UpdateServiceCommand.d.ts +16 -0
  29. package/dist-types/models/ServiceDiscoveryServiceException.d.ts +2 -0
  30. package/dist-types/models/models_0.d.ts +251 -1
  31. package/dist-types/pagination/GetInstancesHealthStatusPaginator.d.ts +3 -0
  32. package/dist-types/pagination/Interfaces.d.ts +3 -0
  33. package/dist-types/pagination/ListInstancesPaginator.d.ts +3 -0
  34. package/dist-types/pagination/ListNamespacesPaginator.d.ts +3 -0
  35. package/dist-types/pagination/ListOperationsPaginator.d.ts +3 -0
  36. package/dist-types/pagination/ListServicesPaginator.d.ts +3 -0
  37. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DiscoverInstancesRequest, DiscoverInstancesResponse } from "../models/models_0";
5
5
  import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DiscoverInstancesCommand}.
8
10
  */
9
11
  export interface DiscoverInstancesCommandInput extends DiscoverInstancesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DiscoverInstancesCommand}.
13
17
  */
14
18
  export interface DiscoverInstancesCommandOutput extends DiscoverInstancesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Discovers registered instances for a specified namespace and service. You can use
18
23
  * <code>DiscoverInstances</code> to discover instances for any type of namespace. For public and
19
24
  * private DNS namespaces, you can also use DNS queries to discover instances.</p>
@@ -27,6 +32,8 @@ export interface DiscoverInstancesCommandOutput extends DiscoverInstancesRespons
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param DiscoverInstancesCommandInput - {@link DiscoverInstancesCommandInput}
36
+ * @returns {@link DiscoverInstancesCommandOutput}
30
37
  * @see {@link DiscoverInstancesCommandInput} for command's `input` shape.
31
38
  * @see {@link DiscoverInstancesCommandOutput} for command's `response` shape.
32
39
  * @see {@link ServiceDiscoveryClientResolvedConfig | config} for ServiceDiscoveryClient's `config` shape.
@@ -82,11 +89,20 @@ export interface DiscoverInstancesCommandOutput extends DiscoverInstancesRespons
82
89
  export declare class DiscoverInstancesCommand extends $Command<DiscoverInstancesCommandInput, DiscoverInstancesCommandOutput, ServiceDiscoveryClientResolvedConfig> {
83
90
  readonly input: DiscoverInstancesCommandInput;
84
91
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
92
+ /**
93
+ * @public
94
+ */
85
95
  constructor(input: DiscoverInstancesCommandInput);
86
96
  /**
87
97
  * @internal
88
98
  */
89
99
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DiscoverInstancesCommandInput, DiscoverInstancesCommandOutput>;
100
+ /**
101
+ * @internal
102
+ */
90
103
  private serialize;
104
+ /**
105
+ * @internal
106
+ */
91
107
  private deserialize;
92
108
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetInstanceRequest, GetInstanceResponse } from "../models/models_0";
5
5
  import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetInstanceCommand}.
8
10
  */
9
11
  export interface GetInstanceCommandInput extends GetInstanceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetInstanceCommand}.
13
17
  */
14
18
  export interface GetInstanceCommandOutput extends GetInstanceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets information about a specified instance.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetInstanceCommandOutput extends GetInstanceResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetInstanceCommandInput - {@link GetInstanceCommandInput}
34
+ * @returns {@link GetInstanceCommandOutput}
28
35
  * @see {@link GetInstanceCommandInput} for command's `input` shape.
29
36
  * @see {@link GetInstanceCommandOutput} for command's `response` shape.
30
37
  * @see {@link ServiceDiscoveryClientResolvedConfig | config} for ServiceDiscoveryClient's `config` shape.
@@ -77,11 +84,20 @@ export interface GetInstanceCommandOutput extends GetInstanceResponse, __Metadat
77
84
  export declare class GetInstanceCommand extends $Command<GetInstanceCommandInput, GetInstanceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
78
85
  readonly input: GetInstanceCommandInput;
79
86
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
87
+ /**
88
+ * @public
89
+ */
80
90
  constructor(input: GetInstanceCommandInput);
81
91
  /**
82
92
  * @internal
83
93
  */
84
94
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetInstanceCommandInput, GetInstanceCommandOutput>;
95
+ /**
96
+ * @internal
97
+ */
85
98
  private serialize;
99
+ /**
100
+ * @internal
101
+ */
86
102
  private deserialize;
87
103
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetInstancesHealthStatusRequest, GetInstancesHealthStatusResponse } from "../models/models_0";
5
5
  import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetInstancesHealthStatusCommand}.
8
10
  */
9
11
  export interface GetInstancesHealthStatusCommandInput extends GetInstancesHealthStatusRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetInstancesHealthStatusCommand}.
13
17
  */
14
18
  export interface GetInstancesHealthStatusCommandOutput extends GetInstancesHealthStatusResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets the current health status (<code>Healthy</code>, <code>Unhealthy</code>, or
18
23
  * <code>Unknown</code>) of one or more instances that are associated with a specified
19
24
  * service.</p>
@@ -31,6 +36,8 @@ export interface GetInstancesHealthStatusCommandOutput extends GetInstancesHealt
31
36
  * const response = await client.send(command);
32
37
  * ```
33
38
  *
39
+ * @param GetInstancesHealthStatusCommandInput - {@link GetInstancesHealthStatusCommandInput}
40
+ * @returns {@link GetInstancesHealthStatusCommandOutput}
34
41
  * @see {@link GetInstancesHealthStatusCommandInput} for command's `input` shape.
35
42
  * @see {@link GetInstancesHealthStatusCommandOutput} for command's `response` shape.
36
43
  * @see {@link ServiceDiscoveryClientResolvedConfig | config} for ServiceDiscoveryClient's `config` shape.
@@ -76,11 +83,20 @@ export interface GetInstancesHealthStatusCommandOutput extends GetInstancesHealt
76
83
  export declare class GetInstancesHealthStatusCommand extends $Command<GetInstancesHealthStatusCommandInput, GetInstancesHealthStatusCommandOutput, ServiceDiscoveryClientResolvedConfig> {
77
84
  readonly input: GetInstancesHealthStatusCommandInput;
78
85
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
86
+ /**
87
+ * @public
88
+ */
79
89
  constructor(input: GetInstancesHealthStatusCommandInput);
80
90
  /**
81
91
  * @internal
82
92
  */
83
93
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetInstancesHealthStatusCommandInput, GetInstancesHealthStatusCommandOutput>;
94
+ /**
95
+ * @internal
96
+ */
84
97
  private serialize;
98
+ /**
99
+ * @internal
100
+ */
85
101
  private deserialize;
86
102
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetNamespaceRequest, GetNamespaceResponse } from "../models/models_0";
5
5
  import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetNamespaceCommand}.
8
10
  */
9
11
  export interface GetNamespaceCommandInput extends GetNamespaceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetNamespaceCommand}.
13
17
  */
14
18
  export interface GetNamespaceCommandOutput extends GetNamespaceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets information about a namespace.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetNamespaceCommandOutput extends GetNamespaceResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetNamespaceCommandInput - {@link GetNamespaceCommandInput}
34
+ * @returns {@link GetNamespaceCommandOutput}
28
35
  * @see {@link GetNamespaceCommandInput} for command's `input` shape.
29
36
  * @see {@link GetNamespaceCommandOutput} for command's `response` shape.
30
37
  * @see {@link ServiceDiscoveryClientResolvedConfig | config} for ServiceDiscoveryClient's `config` shape.
@@ -72,11 +79,20 @@ export interface GetNamespaceCommandOutput extends GetNamespaceResponse, __Metad
72
79
  export declare class GetNamespaceCommand extends $Command<GetNamespaceCommandInput, GetNamespaceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
73
80
  readonly input: GetNamespaceCommandInput;
74
81
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
82
+ /**
83
+ * @public
84
+ */
75
85
  constructor(input: GetNamespaceCommandInput);
76
86
  /**
77
87
  * @internal
78
88
  */
79
89
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetNamespaceCommandInput, GetNamespaceCommandOutput>;
90
+ /**
91
+ * @internal
92
+ */
80
93
  private serialize;
94
+ /**
95
+ * @internal
96
+ */
81
97
  private deserialize;
82
98
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetOperationRequest, GetOperationResponse } from "../models/models_0";
5
5
  import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetOperationCommand}.
8
10
  */
9
11
  export interface GetOperationCommandInput extends GetOperationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetOperationCommand}.
13
17
  */
14
18
  export interface GetOperationCommandOutput extends GetOperationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets information about any operation that returns an operation ID in the response, such as a
18
23
  * <code>CreateService</code> request.</p>
19
24
  * <note>
@@ -29,6 +34,8 @@ export interface GetOperationCommandOutput extends GetOperationResponse, __Metad
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param GetOperationCommandInput - {@link GetOperationCommandInput}
38
+ * @returns {@link GetOperationCommandOutput}
32
39
  * @see {@link GetOperationCommandInput} for command's `input` shape.
33
40
  * @see {@link GetOperationCommandOutput} for command's `response` shape.
34
41
  * @see {@link ServiceDiscoveryClientResolvedConfig | config} for ServiceDiscoveryClient's `config` shape.
@@ -76,11 +83,20 @@ export interface GetOperationCommandOutput extends GetOperationResponse, __Metad
76
83
  export declare class GetOperationCommand extends $Command<GetOperationCommandInput, GetOperationCommandOutput, ServiceDiscoveryClientResolvedConfig> {
77
84
  readonly input: GetOperationCommandInput;
78
85
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
86
+ /**
87
+ * @public
88
+ */
79
89
  constructor(input: GetOperationCommandInput);
80
90
  /**
81
91
  * @internal
82
92
  */
83
93
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetOperationCommandInput, GetOperationCommandOutput>;
94
+ /**
95
+ * @internal
96
+ */
84
97
  private serialize;
98
+ /**
99
+ * @internal
100
+ */
85
101
  private deserialize;
86
102
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetServiceRequest, GetServiceResponse } from "../models/models_0";
5
5
  import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetServiceCommand}.
8
10
  */
9
11
  export interface GetServiceCommandInput extends GetServiceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetServiceCommand}.
13
17
  */
14
18
  export interface GetServiceCommandOutput extends GetServiceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets the settings for a specified service.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetServiceCommandOutput extends GetServiceResponse, __MetadataB
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetServiceCommandInput - {@link GetServiceCommandInput}
34
+ * @returns {@link GetServiceCommandOutput}
28
35
  * @see {@link GetServiceCommandInput} for command's `input` shape.
29
36
  * @see {@link GetServiceCommandOutput} for command's `response` shape.
30
37
  * @see {@link ServiceDiscoveryClientResolvedConfig | config} for ServiceDiscoveryClient's `config` shape.
@@ -76,11 +83,20 @@ export interface GetServiceCommandOutput extends GetServiceResponse, __MetadataB
76
83
  export declare class GetServiceCommand extends $Command<GetServiceCommandInput, GetServiceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
77
84
  readonly input: GetServiceCommandInput;
78
85
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
86
+ /**
87
+ * @public
88
+ */
79
89
  constructor(input: GetServiceCommandInput);
80
90
  /**
81
91
  * @internal
82
92
  */
83
93
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetServiceCommandInput, GetServiceCommandOutput>;
94
+ /**
95
+ * @internal
96
+ */
84
97
  private serialize;
98
+ /**
99
+ * @internal
100
+ */
85
101
  private deserialize;
86
102
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListInstancesRequest, ListInstancesResponse } from "../models/models_0";
5
5
  import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListInstancesCommand}.
8
10
  */
9
11
  export interface ListInstancesCommandInput extends ListInstancesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListInstancesCommand}.
13
17
  */
14
18
  export interface ListInstancesCommandOutput extends ListInstancesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists summary information about the instances that you registered by using a specified
18
23
  * service.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListInstancesCommandOutput extends ListInstancesResponse, __Met
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListInstancesCommandInput - {@link ListInstancesCommandInput}
35
+ * @returns {@link ListInstancesCommandOutput}
29
36
  * @see {@link ListInstancesCommandInput} for command's `input` shape.
30
37
  * @see {@link ListInstancesCommandOutput} for command's `response` shape.
31
38
  * @see {@link ServiceDiscoveryClientResolvedConfig | config} for ServiceDiscoveryClient's `config` shape.
@@ -72,11 +79,20 @@ export interface ListInstancesCommandOutput extends ListInstancesResponse, __Met
72
79
  export declare class ListInstancesCommand extends $Command<ListInstancesCommandInput, ListInstancesCommandOutput, ServiceDiscoveryClientResolvedConfig> {
73
80
  readonly input: ListInstancesCommandInput;
74
81
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
82
+ /**
83
+ * @public
84
+ */
75
85
  constructor(input: ListInstancesCommandInput);
76
86
  /**
77
87
  * @internal
78
88
  */
79
89
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListInstancesCommandInput, ListInstancesCommandOutput>;
90
+ /**
91
+ * @internal
92
+ */
80
93
  private serialize;
94
+ /**
95
+ * @internal
96
+ */
81
97
  private deserialize;
82
98
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListNamespacesRequest, ListNamespacesResponse } from "../models/models_0";
5
5
  import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListNamespacesCommand}.
8
10
  */
9
11
  export interface ListNamespacesCommandInput extends ListNamespacesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListNamespacesCommand}.
13
17
  */
14
18
  export interface ListNamespacesCommandOutput extends ListNamespacesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists summary information about the namespaces that were created by the current Amazon Web Services account.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListNamespacesCommandOutput extends ListNamespacesResponse, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListNamespacesCommandInput - {@link ListNamespacesCommandInput}
34
+ * @returns {@link ListNamespacesCommandOutput}
28
35
  * @see {@link ListNamespacesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListNamespacesCommandOutput} for command's `response` shape.
30
37
  * @see {@link ServiceDiscoveryClientResolvedConfig | config} for ServiceDiscoveryClient's `config` shape.
@@ -103,11 +110,20 @@ export interface ListNamespacesCommandOutput extends ListNamespacesResponse, __M
103
110
  export declare class ListNamespacesCommand extends $Command<ListNamespacesCommandInput, ListNamespacesCommandOutput, ServiceDiscoveryClientResolvedConfig> {
104
111
  readonly input: ListNamespacesCommandInput;
105
112
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
113
+ /**
114
+ * @public
115
+ */
106
116
  constructor(input: ListNamespacesCommandInput);
107
117
  /**
108
118
  * @internal
109
119
  */
110
120
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListNamespacesCommandInput, ListNamespacesCommandOutput>;
121
+ /**
122
+ * @internal
123
+ */
111
124
  private serialize;
125
+ /**
126
+ * @internal
127
+ */
112
128
  private deserialize;
113
129
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListOperationsRequest, ListOperationsResponse } from "../models/models_0";
5
5
  import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListOperationsCommand}.
8
10
  */
9
11
  export interface ListOperationsCommandInput extends ListOperationsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListOperationsCommand}.
13
17
  */
14
18
  export interface ListOperationsCommandOutput extends ListOperationsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists operations that match the criteria that you specify.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListOperationsCommandOutput extends ListOperationsResponse, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListOperationsCommandInput - {@link ListOperationsCommandInput}
34
+ * @returns {@link ListOperationsCommandOutput}
28
35
  * @see {@link ListOperationsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListOperationsCommandOutput} for command's `response` shape.
30
37
  * @see {@link ServiceDiscoveryClientResolvedConfig | config} for ServiceDiscoveryClient's `config` shape.
@@ -82,11 +89,20 @@ export interface ListOperationsCommandOutput extends ListOperationsResponse, __M
82
89
  export declare class ListOperationsCommand extends $Command<ListOperationsCommandInput, ListOperationsCommandOutput, ServiceDiscoveryClientResolvedConfig> {
83
90
  readonly input: ListOperationsCommandInput;
84
91
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
92
+ /**
93
+ * @public
94
+ */
85
95
  constructor(input: ListOperationsCommandInput);
86
96
  /**
87
97
  * @internal
88
98
  */
89
99
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOperationsCommandInput, ListOperationsCommandOutput>;
100
+ /**
101
+ * @internal
102
+ */
90
103
  private serialize;
104
+ /**
105
+ * @internal
106
+ */
91
107
  private deserialize;
92
108
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListServicesRequest, ListServicesResponse } from "../models/models_0";
5
5
  import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListServicesCommand}.
8
10
  */
9
11
  export interface ListServicesCommandInput extends ListServicesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListServicesCommand}.
13
17
  */
14
18
  export interface ListServicesCommandOutput extends ListServicesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists summary information for all the services that are associated with one or more
18
23
  * specified namespaces.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListServicesCommandInput - {@link ListServicesCommandInput}
35
+ * @returns {@link ListServicesCommandOutput}
29
36
  * @see {@link ListServicesCommandInput} for command's `input` shape.
30
37
  * @see {@link ListServicesCommandOutput} for command's `response` shape.
31
38
  * @see {@link ServiceDiscoveryClientResolvedConfig | config} for ServiceDiscoveryClient's `config` shape.
@@ -75,11 +82,20 @@ export interface ListServicesCommandOutput extends ListServicesResponse, __Metad
75
82
  export declare class ListServicesCommand extends $Command<ListServicesCommandInput, ListServicesCommandOutput, ServiceDiscoveryClientResolvedConfig> {
76
83
  readonly input: ListServicesCommandInput;
77
84
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
85
+ /**
86
+ * @public
87
+ */
78
88
  constructor(input: ListServicesCommandInput);
79
89
  /**
80
90
  * @internal
81
91
  */
82
92
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListServicesCommandInput, ListServicesCommandOutput>;
93
+ /**
94
+ * @internal
95
+ */
83
96
  private serialize;
97
+ /**
98
+ * @internal
99
+ */
84
100
  private deserialize;
85
101
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
5
  import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists tags for the specified resource.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link ServiceDiscoveryClientResolvedConfig | config} for ServiceDiscoveryClient's `config` shape.
@@ -72,11 +79,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
72
79
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
73
80
  readonly input: ListTagsForResourceCommandInput;
74
81
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
82
+ /**
83
+ * @public
84
+ */
75
85
  constructor(input: ListTagsForResourceCommandInput);
76
86
  /**
77
87
  * @internal
78
88
  */
79
89
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
90
+ /**
91
+ * @internal
92
+ */
80
93
  private serialize;
94
+ /**
95
+ * @internal
96
+ */
81
97
  private deserialize;
82
98
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { RegisterInstanceRequest, RegisterInstanceResponse } from "../models/models_0";
5
5
  import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link RegisterInstanceCommand}.
8
10
  */
9
11
  export interface RegisterInstanceCommandInput extends RegisterInstanceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link RegisterInstanceCommand}.
13
17
  */
14
18
  export interface RegisterInstanceCommandOutput extends RegisterInstanceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates or updates one or more records and, optionally, creates a health check based on the
18
23
  * settings in a specified service. When you submit a <code>RegisterInstance</code> request, the
19
24
  * following occurs:</p>
@@ -68,6 +73,8 @@ export interface RegisterInstanceCommandOutput extends RegisterInstanceResponse,
68
73
  * const response = await client.send(command);
69
74
  * ```
70
75
  *
76
+ * @param RegisterInstanceCommandInput - {@link RegisterInstanceCommandInput}
77
+ * @returns {@link RegisterInstanceCommandOutput}
71
78
  * @see {@link RegisterInstanceCommandInput} for command's `input` shape.
72
79
  * @see {@link RegisterInstanceCommandOutput} for command's `response` shape.
73
80
  * @see {@link ServiceDiscoveryClientResolvedConfig | config} for ServiceDiscoveryClient's `config` shape.
@@ -123,11 +130,20 @@ export interface RegisterInstanceCommandOutput extends RegisterInstanceResponse,
123
130
  export declare class RegisterInstanceCommand extends $Command<RegisterInstanceCommandInput, RegisterInstanceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
124
131
  readonly input: RegisterInstanceCommandInput;
125
132
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
133
+ /**
134
+ * @public
135
+ */
126
136
  constructor(input: RegisterInstanceCommandInput);
127
137
  /**
128
138
  * @internal
129
139
  */
130
140
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterInstanceCommandInput, RegisterInstanceCommandOutput>;
141
+ /**
142
+ * @internal
143
+ */
131
144
  private serialize;
145
+ /**
146
+ * @internal
147
+ */
132
148
  private deserialize;
133
149
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
5
  import { ServiceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ServiceDiscoveryClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Adds one or more tags to the specified resource.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
34
+ * @returns {@link TagResourceCommandOutput}
28
35
  * @see {@link TagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link ServiceDiscoveryClientResolvedConfig | config} for ServiceDiscoveryClient's `config` shape.
@@ -72,11 +79,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
72
79
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ServiceDiscoveryClientResolvedConfig> {
73
80
  readonly input: TagResourceCommandInput;
74
81
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
82
+ /**
83
+ * @public
84
+ */
75
85
  constructor(input: TagResourceCommandInput);
76
86
  /**
77
87
  * @internal
78
88
  */
79
89
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ServiceDiscoveryClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
90
+ /**
91
+ * @internal
92
+ */
80
93
  private serialize;
94
+ /**
95
+ * @internal
96
+ */
81
97
  private deserialize;
82
98
  }