@aws-sdk/client-internetmonitor 3.337.0 → 3.338.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 (53) hide show
  1. package/dist-cjs/InternetMonitorClient.js +2 -1
  2. package/dist-cjs/commands/CreateMonitorCommand.js +2 -1
  3. package/dist-cjs/commands/DeleteMonitorCommand.js +2 -1
  4. package/dist-cjs/commands/GetHealthEventCommand.js +2 -1
  5. package/dist-cjs/commands/GetMonitorCommand.js +2 -1
  6. package/dist-cjs/commands/ListHealthEventsCommand.js +2 -1
  7. package/dist-cjs/commands/ListMonitorsCommand.js +2 -1
  8. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -1
  9. package/dist-cjs/commands/TagResourceCommand.js +2 -1
  10. package/dist-cjs/commands/UntagResourceCommand.js +2 -1
  11. package/dist-cjs/commands/UpdateMonitorCommand.js +2 -1
  12. package/dist-cjs/index.js +2 -2
  13. package/dist-cjs/models/InternetMonitorServiceException.js +2 -1
  14. package/dist-es/InternetMonitorClient.js +1 -0
  15. package/dist-es/commands/CreateMonitorCommand.js +1 -0
  16. package/dist-es/commands/DeleteMonitorCommand.js +1 -0
  17. package/dist-es/commands/GetHealthEventCommand.js +1 -0
  18. package/dist-es/commands/GetMonitorCommand.js +1 -0
  19. package/dist-es/commands/ListHealthEventsCommand.js +1 -0
  20. package/dist-es/commands/ListMonitorsCommand.js +1 -0
  21. package/dist-es/commands/ListTagsForResourceCommand.js +1 -0
  22. package/dist-es/commands/TagResourceCommand.js +1 -0
  23. package/dist-es/commands/UntagResourceCommand.js +1 -0
  24. package/dist-es/commands/UpdateMonitorCommand.js +1 -0
  25. package/dist-es/index.js +2 -2
  26. package/dist-es/models/InternetMonitorServiceException.js +1 -0
  27. package/dist-types/InternetMonitorClient.d.ts +3 -3
  28. package/dist-types/commands/CreateMonitorCommand.d.ts +4 -0
  29. package/dist-types/commands/DeleteMonitorCommand.d.ts +4 -0
  30. package/dist-types/commands/GetHealthEventCommand.d.ts +4 -0
  31. package/dist-types/commands/GetMonitorCommand.d.ts +4 -0
  32. package/dist-types/commands/ListHealthEventsCommand.d.ts +4 -0
  33. package/dist-types/commands/ListMonitorsCommand.d.ts +4 -0
  34. package/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -0
  35. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  36. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  37. package/dist-types/commands/UpdateMonitorCommand.d.ts +4 -0
  38. package/dist-types/index.d.ts +22 -2
  39. package/dist-types/models/InternetMonitorServiceException.d.ts +1 -0
  40. package/dist-types/ts3.4/InternetMonitorClient.d.ts +3 -3
  41. package/dist-types/ts3.4/commands/CreateMonitorCommand.d.ts +1 -0
  42. package/dist-types/ts3.4/commands/DeleteMonitorCommand.d.ts +1 -0
  43. package/dist-types/ts3.4/commands/GetHealthEventCommand.d.ts +1 -0
  44. package/dist-types/ts3.4/commands/GetMonitorCommand.d.ts +1 -0
  45. package/dist-types/ts3.4/commands/ListHealthEventsCommand.d.ts +1 -0
  46. package/dist-types/ts3.4/commands/ListMonitorsCommand.d.ts +1 -0
  47. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -0
  48. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -0
  49. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -0
  50. package/dist-types/ts3.4/commands/UpdateMonitorCommand.d.ts +1 -0
  51. package/dist-types/ts3.4/index.d.ts +2 -2
  52. package/dist-types/ts3.4/models/InternetMonitorServiceException.d.ts +1 -0
  53. package/package.json +28 -28
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.InternetMonitorClient = void 0;
3
+ exports.InternetMonitorClient = exports.__Client = void 0;
4
4
  const config_resolver_1 = require("@aws-sdk/config-resolver");
5
5
  const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
6
6
  const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
@@ -11,6 +11,7 @@ const middleware_retry_1 = require("@aws-sdk/middleware-retry");
11
11
  const middleware_signing_1 = require("@aws-sdk/middleware-signing");
12
12
  const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
13
13
  const smithy_client_1 = require("@aws-sdk/smithy-client");
14
+ Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
14
15
  const EndpointParameters_1 = require("./endpoint/EndpointParameters");
15
16
  const runtimeConfig_1 = require("./runtimeConfig");
16
17
  class InternetMonitorClient extends smithy_client_1.Client {
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateMonitorCommand = void 0;
3
+ exports.CreateMonitorCommand = exports.$Command = void 0;
4
4
  const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@aws-sdk/middleware-serde");
6
6
  const smithy_client_1 = require("@aws-sdk/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
7
8
  const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
9
  class CreateMonitorCommand extends smithy_client_1.Command {
9
10
  static getEndpointParameterInstructions() {
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteMonitorCommand = void 0;
3
+ exports.DeleteMonitorCommand = exports.$Command = void 0;
4
4
  const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@aws-sdk/middleware-serde");
6
6
  const smithy_client_1 = require("@aws-sdk/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
7
8
  const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
9
  class DeleteMonitorCommand extends smithy_client_1.Command {
9
10
  static getEndpointParameterInstructions() {
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetHealthEventCommand = void 0;
3
+ exports.GetHealthEventCommand = exports.$Command = void 0;
4
4
  const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@aws-sdk/middleware-serde");
6
6
  const smithy_client_1 = require("@aws-sdk/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
7
8
  const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
9
  class GetHealthEventCommand extends smithy_client_1.Command {
9
10
  static getEndpointParameterInstructions() {
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetMonitorCommand = void 0;
3
+ exports.GetMonitorCommand = exports.$Command = void 0;
4
4
  const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@aws-sdk/middleware-serde");
6
6
  const smithy_client_1 = require("@aws-sdk/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
7
8
  const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
9
  class GetMonitorCommand extends smithy_client_1.Command {
9
10
  static getEndpointParameterInstructions() {
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListHealthEventsCommand = void 0;
3
+ exports.ListHealthEventsCommand = exports.$Command = void 0;
4
4
  const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@aws-sdk/middleware-serde");
6
6
  const smithy_client_1 = require("@aws-sdk/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
7
8
  const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
9
  class ListHealthEventsCommand extends smithy_client_1.Command {
9
10
  static getEndpointParameterInstructions() {
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListMonitorsCommand = void 0;
3
+ exports.ListMonitorsCommand = exports.$Command = void 0;
4
4
  const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@aws-sdk/middleware-serde");
6
6
  const smithy_client_1 = require("@aws-sdk/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
7
8
  const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
9
  class ListMonitorsCommand extends smithy_client_1.Command {
9
10
  static getEndpointParameterInstructions() {
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListTagsForResourceCommand = void 0;
3
+ exports.ListTagsForResourceCommand = exports.$Command = void 0;
4
4
  const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@aws-sdk/middleware-serde");
6
6
  const smithy_client_1 = require("@aws-sdk/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
7
8
  const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
9
  class ListTagsForResourceCommand extends smithy_client_1.Command {
9
10
  static getEndpointParameterInstructions() {
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TagResourceCommand = void 0;
3
+ exports.TagResourceCommand = exports.$Command = void 0;
4
4
  const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@aws-sdk/middleware-serde");
6
6
  const smithy_client_1 = require("@aws-sdk/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
7
8
  const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
9
  class TagResourceCommand extends smithy_client_1.Command {
9
10
  static getEndpointParameterInstructions() {
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UntagResourceCommand = void 0;
3
+ exports.UntagResourceCommand = exports.$Command = void 0;
4
4
  const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@aws-sdk/middleware-serde");
6
6
  const smithy_client_1 = require("@aws-sdk/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
7
8
  const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
9
  class UntagResourceCommand extends smithy_client_1.Command {
9
10
  static getEndpointParameterInstructions() {
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateMonitorCommand = void 0;
3
+ exports.UpdateMonitorCommand = exports.$Command = void 0;
4
4
  const middleware_endpoint_1 = require("@aws-sdk/middleware-endpoint");
5
5
  const middleware_serde_1 = require("@aws-sdk/middleware-serde");
6
6
  const smithy_client_1 = require("@aws-sdk/smithy-client");
7
+ Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
7
8
  const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
8
9
  class UpdateMonitorCommand extends smithy_client_1.Command {
9
10
  static getEndpointParameterInstructions() {
package/dist-cjs/index.js CHANGED
@@ -2,10 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.InternetMonitorServiceException = void 0;
4
4
  const tslib_1 = require("tslib");
5
- tslib_1.__exportStar(require("./InternetMonitor"), exports);
6
5
  tslib_1.__exportStar(require("./InternetMonitorClient"), exports);
6
+ tslib_1.__exportStar(require("./InternetMonitor"), exports);
7
7
  tslib_1.__exportStar(require("./commands"), exports);
8
- tslib_1.__exportStar(require("./models"), exports);
9
8
  tslib_1.__exportStar(require("./pagination"), exports);
9
+ tslib_1.__exportStar(require("./models"), exports);
10
10
  var InternetMonitorServiceException_1 = require("./models/InternetMonitorServiceException");
11
11
  Object.defineProperty(exports, "InternetMonitorServiceException", { enumerable: true, get: function () { return InternetMonitorServiceException_1.InternetMonitorServiceException; } });
@@ -1,7 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.InternetMonitorServiceException = void 0;
3
+ exports.InternetMonitorServiceException = exports.__ServiceException = void 0;
4
4
  const smithy_client_1 = require("@aws-sdk/smithy-client");
5
+ Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
5
6
  class InternetMonitorServiceException extends smithy_client_1.ServiceException {
6
7
  constructor(options) {
7
8
  super(options);
@@ -10,6 +10,7 @@ import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware
10
10
  import { Client as __Client, } from "@aws-sdk/smithy-client";
11
11
  import { resolveClientEndpointParameters, } from "./endpoint/EndpointParameters";
12
12
  import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
13
+ export { __Client };
13
14
  export class InternetMonitorClient extends __Client {
14
15
  constructor(configuration) {
15
16
  const _config_0 = __getRuntimeConfig(configuration);
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { de_CreateMonitorCommand, se_CreateMonitorCommand } from "../protocols/Aws_restJson1";
5
+ export { $Command };
5
6
  export class CreateMonitorCommand extends $Command {
6
7
  static getEndpointParameterInstructions() {
7
8
  return {
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { de_DeleteMonitorCommand, se_DeleteMonitorCommand } from "../protocols/Aws_restJson1";
5
+ export { $Command };
5
6
  export class DeleteMonitorCommand extends $Command {
6
7
  static getEndpointParameterInstructions() {
7
8
  return {
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { de_GetHealthEventCommand, se_GetHealthEventCommand } from "../protocols/Aws_restJson1";
5
+ export { $Command };
5
6
  export class GetHealthEventCommand extends $Command {
6
7
  static getEndpointParameterInstructions() {
7
8
  return {
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { de_GetMonitorCommand, se_GetMonitorCommand } from "../protocols/Aws_restJson1";
5
+ export { $Command };
5
6
  export class GetMonitorCommand extends $Command {
6
7
  static getEndpointParameterInstructions() {
7
8
  return {
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { de_ListHealthEventsCommand, se_ListHealthEventsCommand } from "../protocols/Aws_restJson1";
5
+ export { $Command };
5
6
  export class ListHealthEventsCommand extends $Command {
6
7
  static getEndpointParameterInstructions() {
7
8
  return {
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { de_ListMonitorsCommand, se_ListMonitorsCommand } from "../protocols/Aws_restJson1";
5
+ export { $Command };
5
6
  export class ListMonitorsCommand extends $Command {
6
7
  static getEndpointParameterInstructions() {
7
8
  return {
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_restJson1";
5
+ export { $Command };
5
6
  export class ListTagsForResourceCommand extends $Command {
6
7
  static getEndpointParameterInstructions() {
7
8
  return {
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_restJson1";
5
+ export { $Command };
5
6
  export class TagResourceCommand extends $Command {
6
7
  static getEndpointParameterInstructions() {
7
8
  return {
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_restJson1";
5
+ export { $Command };
5
6
  export class UntagResourceCommand extends $Command {
6
7
  static getEndpointParameterInstructions() {
7
8
  return {
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { de_UpdateMonitorCommand, se_UpdateMonitorCommand } from "../protocols/Aws_restJson1";
5
+ export { $Command };
5
6
  export class UpdateMonitorCommand extends $Command {
6
7
  static getEndpointParameterInstructions() {
7
8
  return {
package/dist-es/index.js CHANGED
@@ -1,6 +1,6 @@
1
- export * from "./InternetMonitor";
2
1
  export * from "./InternetMonitorClient";
2
+ export * from "./InternetMonitor";
3
3
  export * from "./commands";
4
- export * from "./models";
5
4
  export * from "./pagination";
5
+ export * from "./models";
6
6
  export { InternetMonitorServiceException } from "./models/InternetMonitorServiceException";
@@ -1,4 +1,5 @@
1
1
  import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
2
+ export { __ServiceException };
2
3
  export class InternetMonitorServiceException extends __ServiceException {
3
4
  constructor(options) {
4
5
  super(options);
@@ -19,6 +19,7 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
19
19
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
20
20
  import { UpdateMonitorCommandInput, UpdateMonitorCommandOutput } from "./commands/UpdateMonitorCommand";
21
21
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
22
+ export { __Client };
22
23
  /**
23
24
  * @public
24
25
  */
@@ -133,7 +134,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
133
134
  /**
134
135
  * @public
135
136
  */
136
- type InternetMonitorClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
137
+ export type InternetMonitorClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
137
138
  /**
138
139
  * @public
139
140
  *
@@ -144,7 +145,7 @@ export interface InternetMonitorClientConfig extends InternetMonitorClientConfig
144
145
  /**
145
146
  * @public
146
147
  */
147
- type InternetMonitorClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
148
+ export type InternetMonitorClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
148
149
  /**
149
150
  * @public
150
151
  *
@@ -184,4 +185,3 @@ export declare class InternetMonitorClient extends __Client<__HttpHandlerOptions
184
185
  */
185
186
  destroy(): void;
186
187
  }
187
- export {};
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
5
5
  import { CreateMonitorInput, CreateMonitorOutput } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
6
10
  /**
7
11
  * @public
8
12
  *
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
5
5
  import { DeleteMonitorInput, DeleteMonitorOutput } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
6
10
  /**
7
11
  * @public
8
12
  *
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
5
5
  import { GetHealthEventInput, GetHealthEventOutput } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
6
10
  /**
7
11
  * @public
8
12
  *
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
5
5
  import { GetMonitorInput, GetMonitorOutput } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
6
10
  /**
7
11
  * @public
8
12
  *
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
5
5
  import { ListHealthEventsInput, ListHealthEventsOutput } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
6
10
  /**
7
11
  * @public
8
12
  *
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
5
5
  import { ListMonitorsInput, ListMonitorsOutput } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
6
10
  /**
7
11
  * @public
8
12
  *
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
5
5
  import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
6
10
  /**
7
11
  * @public
8
12
  *
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
5
5
  import { TagResourceInput, TagResourceOutput } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
6
10
  /**
7
11
  * @public
8
12
  *
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
5
5
  import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
6
10
  /**
7
11
  * @public
8
12
  *
@@ -3,6 +3,10 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
3
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
4
  import { InternetMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../InternetMonitorClient";
5
5
  import { UpdateMonitorInput, UpdateMonitorOutput } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
6
10
  /**
7
11
  * @public
8
12
  *
@@ -1,6 +1,26 @@
1
- export * from "./InternetMonitor";
1
+ /**
2
+ * <p>Amazon CloudWatch Internet Monitor provides visibility into how internet issues impact the performance and availability
3
+ * between your applications hosted on Amazon Web Services and your end users. It reduces the time it takes for you to diagnose
4
+ * internet issues from days to minutes. Internet Monitor uses the connectivity data that Amazon Web Services captures from its global
5
+ * networking footprint to calculate a baseline of performance and availability for internet traffic. This
6
+ * is the same data that Amazon Web Services uses to monitor internet uptime and availability. With those measurements
7
+ * as a baseline, Internet Monitor raises awareness for you when there are significant problems for your
8
+ * end users in the different geographic locations where your application runs.</p>
9
+ * <p>Internet Monitor publishes internet measurements to CloudWatch Logs and CloudWatch Metrics,
10
+ * to easily support using CloudWatch tools with health information for geographies and networks specific to your application.
11
+ * Internet Monitor sends health events to Amazon EventBridge so that you can set up notifications. If an issue is caused by the Amazon Web Services network,
12
+ * you also automatically receive an Amazon Web Services Health Dashboard notification with the steps that Amazon Web Services is taking to mitigate the problem.</p>
13
+ * <p>To use Internet Monitor, you create a <i>monitor</i> and associate your application's resources
14
+ * with it, VPCs, CloudFront distributions, or WorkSpaces directories, to enable Internet Monitor to know
15
+ * where your application's internet traffic is. Internet Monitor then provides internet measurements from Amazon Web Services that are specific to
16
+ * the locations and networks that communicate with your application.</p>
17
+ * <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>
18
+ *
19
+ * @packageDocumentation
20
+ */
2
21
  export * from "./InternetMonitorClient";
22
+ export * from "./InternetMonitor";
3
23
  export * from "./commands";
4
- export * from "./models";
5
24
  export * from "./pagination";
25
+ export * from "./models";
6
26
  export { InternetMonitorServiceException } from "./models/InternetMonitorServiceException";
@@ -1,4 +1,5 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ export { __ServiceException, __ServiceExceptionOptions };
2
3
  /**
3
4
  * @public
4
5
  *
@@ -91,6 +91,7 @@ import {
91
91
  ClientResolvedEndpointParameters,
92
92
  EndpointParameters,
93
93
  } from "./endpoint/EndpointParameters";
94
+ export { __Client };
94
95
  export type ServiceInputTypes =
95
96
  | CreateMonitorCommandInput
96
97
  | DeleteMonitorCommandInput
@@ -137,7 +138,7 @@ export interface ClientDefaults
137
138
  logger?: __Logger;
138
139
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
139
140
  }
140
- type InternetMonitorClientConfigType = Partial<
141
+ export type InternetMonitorClientConfigType = Partial<
141
142
  __SmithyConfiguration<__HttpHandlerOptions>
142
143
  > &
143
144
  ClientDefaults &
@@ -150,7 +151,7 @@ type InternetMonitorClientConfigType = Partial<
150
151
  ClientInputEndpointParameters;
151
152
  export interface InternetMonitorClientConfig
152
153
  extends InternetMonitorClientConfigType {}
153
- type InternetMonitorClientResolvedConfigType =
154
+ export type InternetMonitorClientResolvedConfigType =
154
155
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
155
156
  Required<ClientDefaults> &
156
157
  RegionResolvedConfig &
@@ -172,4 +173,3 @@ export declare class InternetMonitorClient extends __Client<
172
173
  constructor(configuration: InternetMonitorClientConfig);
173
174
  destroy(): void;
174
175
  }
175
- export {};
@@ -12,6 +12,7 @@ import {
12
12
  ServiceOutputTypes,
13
13
  } from "../InternetMonitorClient";
14
14
  import { CreateMonitorInput, CreateMonitorOutput } from "../models/models_0";
15
+ export { __MetadataBearer, $Command };
15
16
  export interface CreateMonitorCommandInput extends CreateMonitorInput {}
16
17
  export interface CreateMonitorCommandOutput
17
18
  extends CreateMonitorOutput,
@@ -12,6 +12,7 @@ import {
12
12
  ServiceOutputTypes,
13
13
  } from "../InternetMonitorClient";
14
14
  import { DeleteMonitorInput, DeleteMonitorOutput } from "../models/models_0";
15
+ export { __MetadataBearer, $Command };
15
16
  export interface DeleteMonitorCommandInput extends DeleteMonitorInput {}
16
17
  export interface DeleteMonitorCommandOutput
17
18
  extends DeleteMonitorOutput,
@@ -12,6 +12,7 @@ import {
12
12
  ServiceOutputTypes,
13
13
  } from "../InternetMonitorClient";
14
14
  import { GetHealthEventInput, GetHealthEventOutput } from "../models/models_0";
15
+ export { __MetadataBearer, $Command };
15
16
  export interface GetHealthEventCommandInput extends GetHealthEventInput {}
16
17
  export interface GetHealthEventCommandOutput
17
18
  extends GetHealthEventOutput,
@@ -12,6 +12,7 @@ import {
12
12
  ServiceOutputTypes,
13
13
  } from "../InternetMonitorClient";
14
14
  import { GetMonitorInput, GetMonitorOutput } from "../models/models_0";
15
+ export { __MetadataBearer, $Command };
15
16
  export interface GetMonitorCommandInput extends GetMonitorInput {}
16
17
  export interface GetMonitorCommandOutput
17
18
  extends GetMonitorOutput,
@@ -15,6 +15,7 @@ import {
15
15
  ListHealthEventsInput,
16
16
  ListHealthEventsOutput,
17
17
  } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
18
19
  export interface ListHealthEventsCommandInput extends ListHealthEventsInput {}
19
20
  export interface ListHealthEventsCommandOutput
20
21
  extends ListHealthEventsOutput,
@@ -12,6 +12,7 @@ import {
12
12
  ServiceOutputTypes,
13
13
  } from "../InternetMonitorClient";
14
14
  import { ListMonitorsInput, ListMonitorsOutput } from "../models/models_0";
15
+ export { __MetadataBearer, $Command };
15
16
  export interface ListMonitorsCommandInput extends ListMonitorsInput {}
16
17
  export interface ListMonitorsCommandOutput
17
18
  extends ListMonitorsOutput,
@@ -15,6 +15,7 @@ import {
15
15
  ListTagsForResourceInput,
16
16
  ListTagsForResourceOutput,
17
17
  } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
18
19
  export interface ListTagsForResourceCommandInput
19
20
  extends ListTagsForResourceInput {}
20
21
  export interface ListTagsForResourceCommandOutput
@@ -12,6 +12,7 @@ import {
12
12
  ServiceOutputTypes,
13
13
  } from "../InternetMonitorClient";
14
14
  import { TagResourceInput, TagResourceOutput } from "../models/models_0";
15
+ export { __MetadataBearer, $Command };
15
16
  export interface TagResourceCommandInput extends TagResourceInput {}
16
17
  export interface TagResourceCommandOutput
17
18
  extends TagResourceOutput,
@@ -12,6 +12,7 @@ import {
12
12
  ServiceOutputTypes,
13
13
  } from "../InternetMonitorClient";
14
14
  import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
15
+ export { __MetadataBearer, $Command };
15
16
  export interface UntagResourceCommandInput extends UntagResourceInput {}
16
17
  export interface UntagResourceCommandOutput
17
18
  extends UntagResourceOutput,
@@ -12,6 +12,7 @@ import {
12
12
  ServiceOutputTypes,
13
13
  } from "../InternetMonitorClient";
14
14
  import { UpdateMonitorInput, UpdateMonitorOutput } from "../models/models_0";
15
+ export { __MetadataBearer, $Command };
15
16
  export interface UpdateMonitorCommandInput extends UpdateMonitorInput {}
16
17
  export interface UpdateMonitorCommandOutput
17
18
  extends UpdateMonitorOutput,
@@ -1,6 +1,6 @@
1
- export * from "./InternetMonitor";
2
1
  export * from "./InternetMonitorClient";
2
+ export * from "./InternetMonitor";
3
3
  export * from "./commands";
4
- export * from "./models";
5
4
  export * from "./pagination";
5
+ export * from "./models";
6
6
  export { InternetMonitorServiceException } from "./models/InternetMonitorServiceException";
@@ -2,6 +2,7 @@ import {
2
2
  ServiceException as __ServiceException,
3
3
  ServiceExceptionOptions as __ServiceExceptionOptions,
4
4
  } from "@aws-sdk/smithy-client";
5
+ export { __ServiceException, __ServiceExceptionOptions };
5
6
  export declare class InternetMonitorServiceException extends __ServiceException {
6
7
  constructor(options: __ServiceExceptionOptions);
7
8
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-internetmonitor",
3
3
  "description": "AWS SDK for JavaScript Internetmonitor Client for Node.js, Browser and React Native",
4
- "version": "3.337.0",
4
+ "version": "3.338.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,36 +21,36 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.337.0",
25
- "@aws-sdk/config-resolver": "3.337.0",
26
- "@aws-sdk/credential-provider-node": "3.337.0",
27
- "@aws-sdk/fetch-http-handler": "3.337.0",
28
- "@aws-sdk/hash-node": "3.337.0",
29
- "@aws-sdk/invalid-dependency": "3.337.0",
30
- "@aws-sdk/middleware-content-length": "3.337.0",
31
- "@aws-sdk/middleware-endpoint": "3.337.0",
32
- "@aws-sdk/middleware-host-header": "3.337.0",
33
- "@aws-sdk/middleware-logger": "3.337.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.337.0",
35
- "@aws-sdk/middleware-retry": "3.337.0",
36
- "@aws-sdk/middleware-serde": "3.337.0",
37
- "@aws-sdk/middleware-signing": "3.337.0",
38
- "@aws-sdk/middleware-stack": "3.337.0",
39
- "@aws-sdk/middleware-user-agent": "3.337.0",
40
- "@aws-sdk/node-config-provider": "3.337.0",
41
- "@aws-sdk/node-http-handler": "3.337.0",
42
- "@aws-sdk/smithy-client": "3.337.0",
43
- "@aws-sdk/types": "3.337.0",
44
- "@aws-sdk/url-parser": "3.337.0",
24
+ "@aws-sdk/client-sts": "3.338.0",
25
+ "@aws-sdk/config-resolver": "3.338.0",
26
+ "@aws-sdk/credential-provider-node": "3.338.0",
27
+ "@aws-sdk/fetch-http-handler": "3.338.0",
28
+ "@aws-sdk/hash-node": "3.338.0",
29
+ "@aws-sdk/invalid-dependency": "3.338.0",
30
+ "@aws-sdk/middleware-content-length": "3.338.0",
31
+ "@aws-sdk/middleware-endpoint": "3.338.0",
32
+ "@aws-sdk/middleware-host-header": "3.338.0",
33
+ "@aws-sdk/middleware-logger": "3.338.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.338.0",
35
+ "@aws-sdk/middleware-retry": "3.338.0",
36
+ "@aws-sdk/middleware-serde": "3.338.0",
37
+ "@aws-sdk/middleware-signing": "3.338.0",
38
+ "@aws-sdk/middleware-stack": "3.338.0",
39
+ "@aws-sdk/middleware-user-agent": "3.338.0",
40
+ "@aws-sdk/node-config-provider": "3.338.0",
41
+ "@aws-sdk/node-http-handler": "3.338.0",
42
+ "@aws-sdk/smithy-client": "3.338.0",
43
+ "@aws-sdk/types": "3.338.0",
44
+ "@aws-sdk/url-parser": "3.338.0",
45
45
  "@aws-sdk/util-base64": "3.310.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.310.0",
47
47
  "@aws-sdk/util-body-length-node": "3.310.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.337.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.337.0",
50
- "@aws-sdk/util-endpoints": "3.337.0",
51
- "@aws-sdk/util-retry": "3.337.0",
52
- "@aws-sdk/util-user-agent-browser": "3.337.0",
53
- "@aws-sdk/util-user-agent-node": "3.337.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.338.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.338.0",
50
+ "@aws-sdk/util-endpoints": "3.338.0",
51
+ "@aws-sdk/util-retry": "3.338.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.338.0",
53
+ "@aws-sdk/util-user-agent-node": "3.338.0",
54
54
  "@aws-sdk/util-utf8": "3.310.0",
55
55
  "@smithy/protocol-http": "^1.0.1",
56
56
  "@smithy/types": "^1.0.0",