@aws-sdk/client-internetmonitor 3.478.0 → 3.484.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 (61) hide show
  1. package/dist-cjs/commands/CreateMonitorCommand.js +18 -41
  2. package/dist-cjs/commands/DeleteMonitorCommand.js +18 -41
  3. package/dist-cjs/commands/GetHealthEventCommand.js +18 -41
  4. package/dist-cjs/commands/GetMonitorCommand.js +18 -41
  5. package/dist-cjs/commands/GetQueryResultsCommand.js +18 -41
  6. package/dist-cjs/commands/GetQueryStatusCommand.js +18 -41
  7. package/dist-cjs/commands/ListHealthEventsCommand.js +18 -41
  8. package/dist-cjs/commands/ListMonitorsCommand.js +18 -41
  9. package/dist-cjs/commands/ListTagsForResourceCommand.js +18 -41
  10. package/dist-cjs/commands/StartQueryCommand.js +18 -41
  11. package/dist-cjs/commands/StopQueryCommand.js +18 -41
  12. package/dist-cjs/commands/TagResourceCommand.js +18 -41
  13. package/dist-cjs/commands/UntagResourceCommand.js +18 -41
  14. package/dist-cjs/commands/UpdateMonitorCommand.js +18 -41
  15. package/dist-cjs/endpoint/EndpointParameters.js +7 -1
  16. package/dist-es/commands/CreateMonitorCommand.js +18 -41
  17. package/dist-es/commands/DeleteMonitorCommand.js +18 -41
  18. package/dist-es/commands/GetHealthEventCommand.js +18 -41
  19. package/dist-es/commands/GetMonitorCommand.js +18 -41
  20. package/dist-es/commands/GetQueryResultsCommand.js +18 -41
  21. package/dist-es/commands/GetQueryStatusCommand.js +18 -41
  22. package/dist-es/commands/ListHealthEventsCommand.js +18 -41
  23. package/dist-es/commands/ListMonitorsCommand.js +18 -41
  24. package/dist-es/commands/ListTagsForResourceCommand.js +18 -41
  25. package/dist-es/commands/StartQueryCommand.js +18 -41
  26. package/dist-es/commands/StopQueryCommand.js +18 -41
  27. package/dist-es/commands/TagResourceCommand.js +18 -41
  28. package/dist-es/commands/UntagResourceCommand.js +18 -41
  29. package/dist-es/commands/UpdateMonitorCommand.js +18 -41
  30. package/dist-es/endpoint/EndpointParameters.js +6 -0
  31. package/dist-types/commands/CreateMonitorCommand.d.ts +6 -21
  32. package/dist-types/commands/DeleteMonitorCommand.d.ts +6 -21
  33. package/dist-types/commands/GetHealthEventCommand.d.ts +6 -21
  34. package/dist-types/commands/GetMonitorCommand.d.ts +6 -21
  35. package/dist-types/commands/GetQueryResultsCommand.d.ts +6 -21
  36. package/dist-types/commands/GetQueryStatusCommand.d.ts +6 -21
  37. package/dist-types/commands/ListHealthEventsCommand.d.ts +6 -21
  38. package/dist-types/commands/ListMonitorsCommand.d.ts +6 -21
  39. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -21
  40. package/dist-types/commands/StartQueryCommand.d.ts +6 -21
  41. package/dist-types/commands/StopQueryCommand.d.ts +6 -21
  42. package/dist-types/commands/TagResourceCommand.d.ts +6 -21
  43. package/dist-types/commands/UntagResourceCommand.d.ts +6 -21
  44. package/dist-types/commands/UpdateMonitorCommand.d.ts +6 -21
  45. package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
  46. package/dist-types/ts3.4/commands/CreateMonitorCommand.d.ts +14 -23
  47. package/dist-types/ts3.4/commands/DeleteMonitorCommand.d.ts +14 -23
  48. package/dist-types/ts3.4/commands/GetHealthEventCommand.d.ts +14 -23
  49. package/dist-types/ts3.4/commands/GetMonitorCommand.d.ts +14 -23
  50. package/dist-types/ts3.4/commands/GetQueryResultsCommand.d.ts +14 -23
  51. package/dist-types/ts3.4/commands/GetQueryStatusCommand.d.ts +14 -23
  52. package/dist-types/ts3.4/commands/ListHealthEventsCommand.d.ts +14 -23
  53. package/dist-types/ts3.4/commands/ListMonitorsCommand.d.ts +14 -23
  54. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +14 -23
  55. package/dist-types/ts3.4/commands/StartQueryCommand.d.ts +14 -23
  56. package/dist-types/ts3.4/commands/StopQueryCommand.d.ts +14 -23
  57. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +14 -23
  58. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +14 -23
  59. package/dist-types/ts3.4/commands/UpdateMonitorCommand.d.ts +14 -23
  60. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
  61. package/package.json +11 -11
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
5
4
  import { UpdateMonitorInput, UpdateMonitorOutput } from "../models/models_0";
6
5
  /**
@@ -21,6 +20,10 @@ export interface UpdateMonitorCommandInput extends UpdateMonitorInput {
21
20
  */
22
21
  export interface UpdateMonitorCommandOutput extends UpdateMonitorOutput, __MetadataBearer {
23
22
  }
23
+ declare const UpdateMonitorCommand_base: {
24
+ new (input: UpdateMonitorCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateMonitorCommandInput, UpdateMonitorCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Updates a monitor. You can update a monitor to change the percentage of traffic to monitor or the maximum number of city-networks
@@ -104,23 +107,5 @@ export interface UpdateMonitorCommandOutput extends UpdateMonitorOutput, __Metad
104
107
  * <p>Base exception class for all service exceptions from InternetMonitor service.</p>
105
108
  *
106
109
  */
107
- export declare class UpdateMonitorCommand extends $Command<UpdateMonitorCommandInput, UpdateMonitorCommandOutput, InternetMonitorClientResolvedConfig> {
108
- readonly input: UpdateMonitorCommandInput;
109
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
110
- /**
111
- * @public
112
- */
113
- constructor(input: UpdateMonitorCommandInput);
114
- /**
115
- * @internal
116
- */
117
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: InternetMonitorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateMonitorCommandInput, UpdateMonitorCommandOutput>;
118
- /**
119
- * @internal
120
- */
121
- private serialize;
122
- /**
123
- * @internal
124
- */
125
- private deserialize;
110
+ export declare class UpdateMonitorCommand extends UpdateMonitorCommand_base {
126
111
  }
@@ -14,6 +14,24 @@ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
14
14
  export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
15
  defaultSigningName: string;
16
16
  };
17
+ export declare const commonParams: {
18
+ readonly UseFIPS: {
19
+ readonly type: "builtInParams";
20
+ readonly name: "useFipsEndpoint";
21
+ };
22
+ readonly Endpoint: {
23
+ readonly type: "builtInParams";
24
+ readonly name: "endpoint";
25
+ };
26
+ readonly Region: {
27
+ readonly type: "builtInParams";
28
+ readonly name: "region";
29
+ };
30
+ readonly UseDualStack: {
31
+ readonly type: "builtInParams";
32
+ readonly name: "useDualstackEndpoint";
33
+ };
34
+ };
17
35
  export interface EndpointParameters extends __EndpointParameters {
18
36
  Region?: string;
19
37
  UseDualStack?: boolean;
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  InternetMonitorClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface CreateMonitorCommandInput extends CreateMonitorInput {}
17
11
  export interface CreateMonitorCommandOutput
18
12
  extends CreateMonitorOutput,
19
13
  __MetadataBearer {}
20
- export declare class CreateMonitorCommand extends $Command<
21
- CreateMonitorCommandInput,
22
- CreateMonitorCommandOutput,
23
- InternetMonitorClientResolvedConfig
24
- > {
25
- readonly input: CreateMonitorCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: CreateMonitorCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: InternetMonitorClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<CreateMonitorCommandInput, CreateMonitorCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const CreateMonitorCommand_base: {
15
+ new (
16
+ input: CreateMonitorCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ CreateMonitorCommandInput,
19
+ CreateMonitorCommandOutput,
20
+ InternetMonitorClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class CreateMonitorCommand extends CreateMonitorCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  InternetMonitorClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface DeleteMonitorCommandInput extends DeleteMonitorInput {}
17
11
  export interface DeleteMonitorCommandOutput
18
12
  extends DeleteMonitorOutput,
19
13
  __MetadataBearer {}
20
- export declare class DeleteMonitorCommand extends $Command<
21
- DeleteMonitorCommandInput,
22
- DeleteMonitorCommandOutput,
23
- InternetMonitorClientResolvedConfig
24
- > {
25
- readonly input: DeleteMonitorCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: DeleteMonitorCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: InternetMonitorClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<DeleteMonitorCommandInput, DeleteMonitorCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const DeleteMonitorCommand_base: {
15
+ new (
16
+ input: DeleteMonitorCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ DeleteMonitorCommandInput,
19
+ DeleteMonitorCommandOutput,
20
+ InternetMonitorClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class DeleteMonitorCommand extends DeleteMonitorCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  InternetMonitorClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface GetHealthEventCommandInput extends GetHealthEventInput {}
17
11
  export interface GetHealthEventCommandOutput
18
12
  extends GetHealthEventOutput,
19
13
  __MetadataBearer {}
20
- export declare class GetHealthEventCommand extends $Command<
21
- GetHealthEventCommandInput,
22
- GetHealthEventCommandOutput,
23
- InternetMonitorClientResolvedConfig
24
- > {
25
- readonly input: GetHealthEventCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: GetHealthEventCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: InternetMonitorClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<GetHealthEventCommandInput, GetHealthEventCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const GetHealthEventCommand_base: {
15
+ new (
16
+ input: GetHealthEventCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ GetHealthEventCommandInput,
19
+ GetHealthEventCommandOutput,
20
+ InternetMonitorClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class GetHealthEventCommand extends GetHealthEventCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  InternetMonitorClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface GetMonitorCommandInput extends GetMonitorInput {}
17
11
  export interface GetMonitorCommandOutput
18
12
  extends GetMonitorOutput,
19
13
  __MetadataBearer {}
20
- export declare class GetMonitorCommand extends $Command<
21
- GetMonitorCommandInput,
22
- GetMonitorCommandOutput,
23
- InternetMonitorClientResolvedConfig
24
- > {
25
- readonly input: GetMonitorCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: GetMonitorCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: InternetMonitorClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<GetMonitorCommandInput, GetMonitorCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const GetMonitorCommand_base: {
15
+ new (
16
+ input: GetMonitorCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ GetMonitorCommandInput,
19
+ GetMonitorCommandOutput,
20
+ InternetMonitorClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class GetMonitorCommand extends GetMonitorCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  InternetMonitorClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -20,19 +14,16 @@ export interface GetQueryResultsCommandInput extends GetQueryResultsInput {}
20
14
  export interface GetQueryResultsCommandOutput
21
15
  extends GetQueryResultsOutput,
22
16
  __MetadataBearer {}
23
- export declare class GetQueryResultsCommand extends $Command<
24
- GetQueryResultsCommandInput,
25
- GetQueryResultsCommandOutput,
26
- InternetMonitorClientResolvedConfig
27
- > {
28
- readonly input: GetQueryResultsCommandInput;
29
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
- constructor(input: GetQueryResultsCommandInput);
31
- resolveMiddleware(
32
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
- configuration: InternetMonitorClientResolvedConfig,
34
- options?: __HttpHandlerOptions
35
- ): Handler<GetQueryResultsCommandInput, GetQueryResultsCommandOutput>;
36
- private serialize;
37
- private deserialize;
38
- }
17
+ declare const GetQueryResultsCommand_base: {
18
+ new (
19
+ input: GetQueryResultsCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ GetQueryResultsCommandInput,
22
+ GetQueryResultsCommandOutput,
23
+ InternetMonitorClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class GetQueryResultsCommand extends GetQueryResultsCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  InternetMonitorClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface GetQueryStatusCommandInput extends GetQueryStatusInput {}
17
11
  export interface GetQueryStatusCommandOutput
18
12
  extends GetQueryStatusOutput,
19
13
  __MetadataBearer {}
20
- export declare class GetQueryStatusCommand extends $Command<
21
- GetQueryStatusCommandInput,
22
- GetQueryStatusCommandOutput,
23
- InternetMonitorClientResolvedConfig
24
- > {
25
- readonly input: GetQueryStatusCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: GetQueryStatusCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: InternetMonitorClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<GetQueryStatusCommandInput, GetQueryStatusCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const GetQueryStatusCommand_base: {
15
+ new (
16
+ input: GetQueryStatusCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ GetQueryStatusCommandInput,
19
+ GetQueryStatusCommandOutput,
20
+ InternetMonitorClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class GetQueryStatusCommand extends GetQueryStatusCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  InternetMonitorClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -20,19 +14,16 @@ export interface ListHealthEventsCommandInput extends ListHealthEventsInput {}
20
14
  export interface ListHealthEventsCommandOutput
21
15
  extends ListHealthEventsOutput,
22
16
  __MetadataBearer {}
23
- export declare class ListHealthEventsCommand extends $Command<
24
- ListHealthEventsCommandInput,
25
- ListHealthEventsCommandOutput,
26
- InternetMonitorClientResolvedConfig
27
- > {
28
- readonly input: ListHealthEventsCommandInput;
29
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
- constructor(input: ListHealthEventsCommandInput);
31
- resolveMiddleware(
32
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
- configuration: InternetMonitorClientResolvedConfig,
34
- options?: __HttpHandlerOptions
35
- ): Handler<ListHealthEventsCommandInput, ListHealthEventsCommandOutput>;
36
- private serialize;
37
- private deserialize;
38
- }
17
+ declare const ListHealthEventsCommand_base: {
18
+ new (
19
+ input: ListHealthEventsCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ ListHealthEventsCommandInput,
22
+ ListHealthEventsCommandOutput,
23
+ InternetMonitorClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class ListHealthEventsCommand extends ListHealthEventsCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  InternetMonitorClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface ListMonitorsCommandInput extends ListMonitorsInput {}
17
11
  export interface ListMonitorsCommandOutput
18
12
  extends ListMonitorsOutput,
19
13
  __MetadataBearer {}
20
- export declare class ListMonitorsCommand extends $Command<
21
- ListMonitorsCommandInput,
22
- ListMonitorsCommandOutput,
23
- InternetMonitorClientResolvedConfig
24
- > {
25
- readonly input: ListMonitorsCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: ListMonitorsCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: InternetMonitorClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<ListMonitorsCommandInput, ListMonitorsCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const ListMonitorsCommand_base: {
15
+ new (
16
+ input: ListMonitorsCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ ListMonitorsCommandInput,
19
+ ListMonitorsCommandOutput,
20
+ InternetMonitorClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class ListMonitorsCommand extends ListMonitorsCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  InternetMonitorClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,19 +15,16 @@ export interface ListTagsForResourceCommandInput
21
15
  export interface ListTagsForResourceCommandOutput
22
16
  extends ListTagsForResourceOutput,
23
17
  __MetadataBearer {}
24
- export declare class ListTagsForResourceCommand extends $Command<
25
- ListTagsForResourceCommandInput,
26
- ListTagsForResourceCommandOutput,
27
- InternetMonitorClientResolvedConfig
28
- > {
29
- readonly input: ListTagsForResourceCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: ListTagsForResourceCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: InternetMonitorClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
37
- private serialize;
38
- private deserialize;
39
- }
18
+ declare const ListTagsForResourceCommand_base: {
19
+ new (
20
+ input: ListTagsForResourceCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListTagsForResourceCommandInput,
23
+ ListTagsForResourceCommandOutput,
24
+ InternetMonitorClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  InternetMonitorClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface StartQueryCommandInput extends StartQueryInput {}
17
11
  export interface StartQueryCommandOutput
18
12
  extends StartQueryOutput,
19
13
  __MetadataBearer {}
20
- export declare class StartQueryCommand extends $Command<
21
- StartQueryCommandInput,
22
- StartQueryCommandOutput,
23
- InternetMonitorClientResolvedConfig
24
- > {
25
- readonly input: StartQueryCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: StartQueryCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: InternetMonitorClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<StartQueryCommandInput, StartQueryCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const StartQueryCommand_base: {
15
+ new (
16
+ input: StartQueryCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ StartQueryCommandInput,
19
+ StartQueryCommandOutput,
20
+ InternetMonitorClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class StartQueryCommand extends StartQueryCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  InternetMonitorClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface StopQueryCommandInput extends StopQueryInput {}
17
11
  export interface StopQueryCommandOutput
18
12
  extends StopQueryOutput,
19
13
  __MetadataBearer {}
20
- export declare class StopQueryCommand extends $Command<
21
- StopQueryCommandInput,
22
- StopQueryCommandOutput,
23
- InternetMonitorClientResolvedConfig
24
- > {
25
- readonly input: StopQueryCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: StopQueryCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: InternetMonitorClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<StopQueryCommandInput, StopQueryCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const StopQueryCommand_base: {
15
+ new (
16
+ input: StopQueryCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ StopQueryCommandInput,
19
+ StopQueryCommandOutput,
20
+ InternetMonitorClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class StopQueryCommand extends StopQueryCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  InternetMonitorClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface TagResourceCommandInput extends TagResourceInput {}
17
11
  export interface TagResourceCommandOutput
18
12
  extends TagResourceOutput,
19
13
  __MetadataBearer {}
20
- export declare class TagResourceCommand extends $Command<
21
- TagResourceCommandInput,
22
- TagResourceCommandOutput,
23
- InternetMonitorClientResolvedConfig
24
- > {
25
- readonly input: TagResourceCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: TagResourceCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: InternetMonitorClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const TagResourceCommand_base: {
15
+ new (
16
+ input: TagResourceCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ TagResourceCommandInput,
19
+ TagResourceCommandOutput,
20
+ InternetMonitorClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class TagResourceCommand extends TagResourceCommand_base {}