@aws-sdk/client-internetmonitor 3.533.0 → 3.540.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/endpoint/endpointResolver.js +4 -2
- package/dist-cjs/index.js +0 -3
- package/dist-es/endpoint/endpointResolver.js +3 -1
- package/dist-es/index.js +0 -1
- package/dist-types/InternetMonitor.d.ts +2 -1
- package/dist-types/InternetMonitorClient.d.ts +1 -1
- package/dist-types/commands/CreateMonitorCommand.d.ts +2 -1
- package/dist-types/commands/DeleteMonitorCommand.d.ts +2 -1
- package/dist-types/commands/GetHealthEventCommand.d.ts +2 -1
- package/dist-types/commands/GetMonitorCommand.d.ts +2 -1
- package/dist-types/commands/GetQueryResultsCommand.d.ts +2 -1
- package/dist-types/commands/GetQueryStatusCommand.d.ts +2 -1
- package/dist-types/commands/ListHealthEventsCommand.d.ts +2 -1
- package/dist-types/commands/ListMonitorsCommand.d.ts +2 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/StartQueryCommand.d.ts +2 -1
- package/dist-types/commands/StopQueryCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateMonitorCommand.d.ts +2 -1
- package/dist-types/index.d.ts +0 -1
- package/dist-types/models/models_0.d.ts +175 -175
- package/dist-types/ts3.4/InternetMonitor.d.ts +1 -0
- package/dist-types/ts3.4/commands/CreateMonitorCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteMonitorCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetHealthEventCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetMonitorCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetQueryResultsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetQueryStatusCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListHealthEventsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListMonitorsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StartQueryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/StopQueryCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateMonitorCommand.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +0 -1
- package/package.json +40 -40
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.defaultEndpointResolver = void 0;
|
|
4
|
-
const util_endpoints_1 = require("@
|
|
4
|
+
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
|
+
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
5
6
|
const ruleset_1 = require("./ruleset");
|
|
6
7
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
7
|
-
return (0,
|
|
8
|
+
return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
|
|
8
9
|
endpointParams: endpointParams,
|
|
9
10
|
logger: context.logger,
|
|
10
11
|
});
|
|
11
12
|
};
|
|
12
13
|
exports.defaultEndpointResolver = defaultEndpointResolver;
|
|
14
|
+
util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -1471,9 +1471,6 @@ var paginateListHealthEvents = (0, import_core.createPaginator)(InternetMonitorC
|
|
|
1471
1471
|
// src/pagination/ListMonitorsPaginator.ts
|
|
1472
1472
|
|
|
1473
1473
|
var paginateListMonitors = (0, import_core.createPaginator)(InternetMonitorClient, ListMonitorsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1474
|
-
|
|
1475
|
-
// src/index.ts
|
|
1476
|
-
var import_util_endpoints = require("@aws-sdk/util-endpoints");
|
|
1477
1474
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1478
1475
|
|
|
1479
1476
|
0 && (module.exports = {
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
+
import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
|
|
2
3
|
import { ruleSet } from "./ruleset";
|
|
3
4
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
4
5
|
return resolveEndpoint(ruleSet, {
|
|
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
|
6
7
|
logger: context.logger,
|
|
7
8
|
});
|
|
8
9
|
};
|
|
10
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
package/dist-es/index.js
CHANGED
|
@@ -60,6 +60,7 @@ export interface InternetMonitor {
|
|
|
60
60
|
/**
|
|
61
61
|
* @see {@link ListMonitorsCommand}
|
|
62
62
|
*/
|
|
63
|
+
listMonitors(): Promise<ListMonitorsCommandOutput>;
|
|
63
64
|
listMonitors(args: ListMonitorsCommandInput, options?: __HttpHandlerOptions): Promise<ListMonitorsCommandOutput>;
|
|
64
65
|
listMonitors(args: ListMonitorsCommandInput, cb: (err: any, data?: ListMonitorsCommandOutput) => void): void;
|
|
65
66
|
listMonitors(args: ListMonitorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMonitorsCommandOutput) => void): void;
|
|
@@ -101,7 +102,6 @@ export interface InternetMonitor {
|
|
|
101
102
|
updateMonitor(args: UpdateMonitorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMonitorCommandOutput) => void): void;
|
|
102
103
|
}
|
|
103
104
|
/**
|
|
104
|
-
* @public
|
|
105
105
|
* <p>Amazon CloudWatch Internet Monitor provides visibility into how internet issues impact the performance and availability
|
|
106
106
|
* between your applications hosted on Amazon Web Services and your end users. It can reduce the time it takes for you to diagnose
|
|
107
107
|
* internet issues from days to minutes. Internet Monitor uses the connectivity data that Amazon Web Services captures from its global
|
|
@@ -118,6 +118,7 @@ export interface InternetMonitor {
|
|
|
118
118
|
* where your application's internet traffic is. Internet Monitor then provides internet measurements from Amazon Web Services that are specific to
|
|
119
119
|
* the locations and ASNs (typically, internet service providers or ISPs) that communicate with your application.</p>
|
|
120
120
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-InternetMonitor.html">Using Amazon CloudWatch Internet Monitor</a> in the <i>Amazon CloudWatch User Guide</i>.</p>
|
|
121
|
+
* @public
|
|
121
122
|
*/
|
|
122
123
|
export declare class InternetMonitor extends InternetMonitorClient implements InternetMonitor {
|
|
123
124
|
}
|
|
@@ -165,7 +165,6 @@ export type InternetMonitorClientResolvedConfigType = __SmithyResolvedConfigurat
|
|
|
165
165
|
export interface InternetMonitorClientResolvedConfig extends InternetMonitorClientResolvedConfigType {
|
|
166
166
|
}
|
|
167
167
|
/**
|
|
168
|
-
* @public
|
|
169
168
|
* <p>Amazon CloudWatch Internet Monitor provides visibility into how internet issues impact the performance and availability
|
|
170
169
|
* between your applications hosted on Amazon Web Services and your end users. It can reduce the time it takes for you to diagnose
|
|
171
170
|
* internet issues from days to minutes. Internet Monitor uses the connectivity data that Amazon Web Services captures from its global
|
|
@@ -182,6 +181,7 @@ export interface InternetMonitorClientResolvedConfig extends InternetMonitorClie
|
|
|
182
181
|
* where your application's internet traffic is. Internet Monitor then provides internet measurements from Amazon Web Services that are specific to
|
|
183
182
|
* the locations and ASNs (typically, internet service providers or ISPs) that communicate with your application.</p>
|
|
184
183
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-InternetMonitor.html">Using Amazon CloudWatch Internet Monitor</a> in the <i>Amazon CloudWatch User Guide</i>.</p>
|
|
184
|
+
* @public
|
|
185
185
|
*/
|
|
186
186
|
export declare class InternetMonitorClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, InternetMonitorClientResolvedConfig> {
|
|
187
187
|
/**
|
|
@@ -22,10 +22,10 @@ export interface CreateMonitorCommandOutput extends CreateMonitorOutput, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateMonitorCommand_base: {
|
|
24
24
|
new (input: CreateMonitorCommandInput): import("@smithy/smithy-client").CommandImpl<CreateMonitorCommandInput, CreateMonitorCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateMonitorCommandInput): import("@smithy/smithy-client").CommandImpl<CreateMonitorCommandInput, CreateMonitorCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a monitor in Amazon CloudWatch Internet Monitor. A monitor is built based on information from the application resources that you add: VPCs,
|
|
30
30
|
* Network Load Balancers (NLBs), Amazon CloudFront distributions, and Amazon WorkSpaces directories. Internet Monitor then publishes internet measurements from Amazon Web Services
|
|
31
31
|
* that are specific to the <i>city-networks</i>. That is, the locations and ASNs (typically internet service providers or ISPs),
|
|
@@ -110,6 +110,7 @@ declare const CreateMonitorCommand_base: {
|
|
|
110
110
|
* @throws {@link InternetMonitorServiceException}
|
|
111
111
|
* <p>Base exception class for all service exceptions from InternetMonitor service.</p>
|
|
112
112
|
*
|
|
113
|
+
* @public
|
|
113
114
|
*/
|
|
114
115
|
export declare class CreateMonitorCommand extends CreateMonitorCommand_base {
|
|
115
116
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteMonitorCommandOutput extends DeleteMonitorOutput, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteMonitorCommand_base: {
|
|
24
24
|
new (input: DeleteMonitorCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMonitorCommandInput, DeleteMonitorCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteMonitorCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMonitorCommandInput, DeleteMonitorCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a monitor in Amazon CloudWatch Internet Monitor. </p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -63,6 +63,7 @@ declare const DeleteMonitorCommand_base: {
|
|
|
63
63
|
* @throws {@link InternetMonitorServiceException}
|
|
64
64
|
* <p>Base exception class for all service exceptions from InternetMonitor service.</p>
|
|
65
65
|
*
|
|
66
|
+
* @public
|
|
66
67
|
*/
|
|
67
68
|
export declare class DeleteMonitorCommand extends DeleteMonitorCommand_base {
|
|
68
69
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetHealthEventCommandOutput extends GetHealthEventOutput, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetHealthEventCommand_base: {
|
|
24
24
|
new (input: GetHealthEventCommandInput): import("@smithy/smithy-client").CommandImpl<GetHealthEventCommandInput, GetHealthEventCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetHealthEventCommandInput): import("@smithy/smithy-client").CommandImpl<GetHealthEventCommandInput, GetHealthEventCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets information the Amazon CloudWatch Internet Monitor has created and stored about a health event for a specified monitor. This information includes the impacted locations,
|
|
30
30
|
* and all the information related to the event, by location.</p>
|
|
31
31
|
* <p>The information returned includes the impact on performance, availability, and round-trip time, information about the network providers (ASNs),
|
|
@@ -130,6 +130,7 @@ declare const GetHealthEventCommand_base: {
|
|
|
130
130
|
* @throws {@link InternetMonitorServiceException}
|
|
131
131
|
* <p>Base exception class for all service exceptions from InternetMonitor service.</p>
|
|
132
132
|
*
|
|
133
|
+
* @public
|
|
133
134
|
*/
|
|
134
135
|
export declare class GetHealthEventCommand extends GetHealthEventCommand_base {
|
|
135
136
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetMonitorCommandOutput extends GetMonitorOutput, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetMonitorCommand_base: {
|
|
24
24
|
new (input: GetMonitorCommandInput): import("@smithy/smithy-client").CommandImpl<GetMonitorCommandInput, GetMonitorCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetMonitorCommandInput): import("@smithy/smithy-client").CommandImpl<GetMonitorCommandInput, GetMonitorCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Gets information about a monitor in Amazon CloudWatch Internet Monitor based on a monitor name. The information returned includes the Amazon Resource Name (ARN), create time,
|
|
30
30
|
* modified time, resources included in the monitor, and status information.</p>
|
|
31
31
|
* @example
|
|
@@ -101,6 +101,7 @@ declare const GetMonitorCommand_base: {
|
|
|
101
101
|
* @throws {@link InternetMonitorServiceException}
|
|
102
102
|
* <p>Base exception class for all service exceptions from InternetMonitor service.</p>
|
|
103
103
|
*
|
|
104
|
+
* @public
|
|
104
105
|
*/
|
|
105
106
|
export declare class GetMonitorCommand extends GetMonitorCommand_base {
|
|
106
107
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetQueryResultsCommandOutput extends GetQueryResultsOutput, __M
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetQueryResultsCommand_base: {
|
|
24
24
|
new (input: GetQueryResultsCommandInput): import("@smithy/smithy-client").CommandImpl<GetQueryResultsCommandInput, GetQueryResultsCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetQueryResultsCommandInput): import("@smithy/smithy-client").CommandImpl<GetQueryResultsCommandInput, GetQueryResultsCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Return the data for a query with the Amazon CloudWatch Internet Monitor query interface. Specify the query that you want to return results for by providing
|
|
30
30
|
* a <code>QueryId</code> and a monitor name.</p>
|
|
31
31
|
* <p>For more information about using the query interface, including examples, see
|
|
@@ -86,6 +86,7 @@ declare const GetQueryResultsCommand_base: {
|
|
|
86
86
|
* @throws {@link InternetMonitorServiceException}
|
|
87
87
|
* <p>Base exception class for all service exceptions from InternetMonitor service.</p>
|
|
88
88
|
*
|
|
89
|
+
* @public
|
|
89
90
|
*/
|
|
90
91
|
export declare class GetQueryResultsCommand extends GetQueryResultsCommand_base {
|
|
91
92
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetQueryStatusCommandOutput extends GetQueryStatusOutput, __Met
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetQueryStatusCommand_base: {
|
|
24
24
|
new (input: GetQueryStatusCommandInput): import("@smithy/smithy-client").CommandImpl<GetQueryStatusCommandInput, GetQueryStatusCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetQueryStatusCommandInput): import("@smithy/smithy-client").CommandImpl<GetQueryStatusCommandInput, GetQueryStatusCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns the current status of a query for the Amazon CloudWatch Internet Monitor query interface, for a specified query ID and monitor.
|
|
30
30
|
* When you run a query, check the status to make sure that the query has <code>SUCCEEDED</code> before you review the results.</p>
|
|
31
31
|
* <ul>
|
|
@@ -92,6 +92,7 @@ declare const GetQueryStatusCommand_base: {
|
|
|
92
92
|
* @throws {@link InternetMonitorServiceException}
|
|
93
93
|
* <p>Base exception class for all service exceptions from InternetMonitor service.</p>
|
|
94
94
|
*
|
|
95
|
+
* @public
|
|
95
96
|
*/
|
|
96
97
|
export declare class GetQueryStatusCommand extends GetQueryStatusCommand_base {
|
|
97
98
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListHealthEventsCommandOutput extends ListHealthEventsOutput, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListHealthEventsCommand_base: {
|
|
24
24
|
new (input: ListHealthEventsCommandInput): import("@smithy/smithy-client").CommandImpl<ListHealthEventsCommandInput, ListHealthEventsCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListHealthEventsCommandInput): import("@smithy/smithy-client").CommandImpl<ListHealthEventsCommandInput, ListHealthEventsCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all health events for a monitor in Amazon CloudWatch Internet Monitor. Returns information for health events including the event start and end time and
|
|
30
30
|
* the status.</p>
|
|
31
31
|
* <note>
|
|
@@ -139,6 +139,7 @@ declare const ListHealthEventsCommand_base: {
|
|
|
139
139
|
* @throws {@link InternetMonitorServiceException}
|
|
140
140
|
* <p>Base exception class for all service exceptions from InternetMonitor service.</p>
|
|
141
141
|
*
|
|
142
|
+
* @public
|
|
142
143
|
*/
|
|
143
144
|
export declare class ListHealthEventsCommand extends ListHealthEventsCommand_base {
|
|
144
145
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListMonitorsCommandOutput extends ListMonitorsOutput, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListMonitorsCommand_base: {
|
|
24
24
|
new (input: ListMonitorsCommandInput): import("@smithy/smithy-client").CommandImpl<ListMonitorsCommandInput, ListMonitorsCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListMonitorsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListMonitorsCommandInput, ListMonitorsCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists all of your monitors for Amazon CloudWatch Internet Monitor and their statuses, along with the Amazon Resource Name (ARN) and name of each monitor.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -75,6 +75,7 @@ declare const ListMonitorsCommand_base: {
|
|
|
75
75
|
* @throws {@link InternetMonitorServiceException}
|
|
76
76
|
* <p>Base exception class for all service exceptions from InternetMonitor service.</p>
|
|
77
77
|
*
|
|
78
|
+
* @public
|
|
78
79
|
*/
|
|
79
80
|
export declare class ListMonitorsCommand extends ListMonitorsCommand_base {
|
|
80
81
|
}
|
|
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
22
22
|
}
|
|
23
23
|
declare const ListTagsForResourceCommand_base: {
|
|
24
24
|
new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Lists the tags for a resource. Tags are supported only for monitors in Amazon CloudWatch Internet Monitor.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -70,6 +70,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
70
70
|
* @throws {@link InternetMonitorServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from InternetMonitor service.</p>
|
|
72
72
|
*
|
|
73
|
+
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
75
76
|
}
|
|
@@ -22,10 +22,10 @@ export interface StartQueryCommandOutput extends StartQueryOutput, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const StartQueryCommand_base: {
|
|
24
24
|
new (input: StartQueryCommandInput): import("@smithy/smithy-client").CommandImpl<StartQueryCommandInput, StartQueryCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StartQueryCommandInput): import("@smithy/smithy-client").CommandImpl<StartQueryCommandInput, StartQueryCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Start a query to return data for a specific query type for the Amazon CloudWatch Internet Monitor query interface. Specify a time period
|
|
30
30
|
* for the data that you want returned by using <code>StartTime</code> and <code>EndTime</code>. You filter the query
|
|
31
31
|
* results to return by providing parameters that you specify with <code>FilterParameters</code>.</p>
|
|
@@ -85,6 +85,7 @@ declare const StartQueryCommand_base: {
|
|
|
85
85
|
* @throws {@link InternetMonitorServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from InternetMonitor service.</p>
|
|
87
87
|
*
|
|
88
|
+
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class StartQueryCommand extends StartQueryCommand_base {
|
|
90
91
|
}
|
|
@@ -22,10 +22,10 @@ export interface StopQueryCommandOutput extends StopQueryOutput, __MetadataBeare
|
|
|
22
22
|
}
|
|
23
23
|
declare const StopQueryCommand_base: {
|
|
24
24
|
new (input: StopQueryCommandInput): import("@smithy/smithy-client").CommandImpl<StopQueryCommandInput, StopQueryCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: StopQueryCommandInput): import("@smithy/smithy-client").CommandImpl<StopQueryCommandInput, StopQueryCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Stop a query that is progress for a specific monitor.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -67,6 +67,7 @@ declare const StopQueryCommand_base: {
|
|
|
67
67
|
* @throws {@link InternetMonitorServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from InternetMonitor service.</p>
|
|
69
69
|
*
|
|
70
|
+
* @public
|
|
70
71
|
*/
|
|
71
72
|
export declare class StopQueryCommand extends StopQueryCommand_base {
|
|
72
73
|
}
|
|
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
22
22
|
}
|
|
23
23
|
declare const TagResourceCommand_base: {
|
|
24
24
|
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Adds a tag to a resource. Tags are supported only for monitors in Amazon CloudWatch Internet Monitor. You can add a maximum of 50 tags in Internet Monitor.</p>
|
|
30
30
|
* <p>A minimum of one tag is required for this call. It returns an error if you use the <code>TagResource</code> request with 0 tags.</p>
|
|
31
31
|
* @example
|
|
@@ -70,6 +70,7 @@ declare const TagResourceCommand_base: {
|
|
|
70
70
|
* @throws {@link InternetMonitorServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from InternetMonitor service.</p>
|
|
72
72
|
*
|
|
73
|
+
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
75
76
|
}
|
|
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const UntagResourceCommand_base: {
|
|
24
24
|
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Removes a tag from a resource.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -69,6 +69,7 @@ declare const UntagResourceCommand_base: {
|
|
|
69
69
|
* @throws {@link InternetMonitorServiceException}
|
|
70
70
|
* <p>Base exception class for all service exceptions from InternetMonitor service.</p>
|
|
71
71
|
*
|
|
72
|
+
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
74
75
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateMonitorCommandOutput extends UpdateMonitorOutput, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateMonitorCommand_base: {
|
|
24
24
|
new (input: UpdateMonitorCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateMonitorCommandInput, UpdateMonitorCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateMonitorCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateMonitorCommandInput, UpdateMonitorCommandOutput, InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
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
|
|
30
30
|
* (locations and ASNs), to add or remove resources, or to change the status of the monitor. Note that you can't change the name of a monitor.</p>
|
|
31
31
|
* <p>The city-network maximum that you choose is the limit, but you only pay for the number of city-networks that are actually monitored.
|
|
@@ -106,6 +106,7 @@ declare const UpdateMonitorCommand_base: {
|
|
|
106
106
|
* @throws {@link InternetMonitorServiceException}
|
|
107
107
|
* <p>Base exception class for all service exceptions from InternetMonitor service.</p>
|
|
108
108
|
*
|
|
109
|
+
* @public
|
|
109
110
|
*/
|
|
110
111
|
export declare class UpdateMonitorCommand extends UpdateMonitorCommand_base {
|
|
111
112
|
}
|
package/dist-types/index.d.ts
CHANGED
|
@@ -26,5 +26,4 @@ export { InternetMonitorExtensionConfiguration } from "./extensionConfiguration"
|
|
|
26
26
|
export * from "./commands";
|
|
27
27
|
export * from "./pagination";
|
|
28
28
|
export * from "./models";
|
|
29
|
-
import "@aws-sdk/util-endpoints";
|
|
30
29
|
export { InternetMonitorServiceException } from "./models/InternetMonitorServiceException";
|