@aws-sdk/client-networkmonitor 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.
Files changed (35) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +4 -2
  2. package/dist-cjs/index.js +0 -3
  3. package/dist-es/endpoint/endpointResolver.js +3 -1
  4. package/dist-es/index.js +0 -1
  5. package/dist-types/NetworkMonitor.d.ts +2 -1
  6. package/dist-types/NetworkMonitorClient.d.ts +1 -1
  7. package/dist-types/commands/CreateMonitorCommand.d.ts +2 -1
  8. package/dist-types/commands/CreateProbeCommand.d.ts +2 -1
  9. package/dist-types/commands/DeleteMonitorCommand.d.ts +2 -1
  10. package/dist-types/commands/DeleteProbeCommand.d.ts +2 -1
  11. package/dist-types/commands/GetMonitorCommand.d.ts +2 -1
  12. package/dist-types/commands/GetProbeCommand.d.ts +2 -1
  13. package/dist-types/commands/ListMonitorsCommand.d.ts +2 -1
  14. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  15. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  16. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  17. package/dist-types/commands/UpdateMonitorCommand.d.ts +2 -1
  18. package/dist-types/commands/UpdateProbeCommand.d.ts +2 -1
  19. package/dist-types/index.d.ts +0 -1
  20. package/dist-types/models/models_0.d.ts +133 -133
  21. package/dist-types/ts3.4/NetworkMonitor.d.ts +1 -0
  22. package/dist-types/ts3.4/commands/CreateMonitorCommand.d.ts +9 -0
  23. package/dist-types/ts3.4/commands/CreateProbeCommand.d.ts +9 -0
  24. package/dist-types/ts3.4/commands/DeleteMonitorCommand.d.ts +9 -0
  25. package/dist-types/ts3.4/commands/DeleteProbeCommand.d.ts +9 -0
  26. package/dist-types/ts3.4/commands/GetMonitorCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/GetProbeCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/ListMonitorsCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  31. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  32. package/dist-types/ts3.4/commands/UpdateMonitorCommand.d.ts +9 -0
  33. package/dist-types/ts3.4/commands/UpdateProbeCommand.d.ts +9 -0
  34. package/dist-types/ts3.4/index.d.ts +0 -1
  35. 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("@smithy/util-endpoints");
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, util_endpoints_1.resolveEndpoint)(ruleset_1.ruleSet, {
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
@@ -1129,9 +1129,6 @@ var NetworkMonitor = _NetworkMonitor;
1129
1129
  // src/pagination/ListMonitorsPaginator.ts
1130
1130
 
1131
1131
  var paginateListMonitors = (0, import_core.createPaginator)(NetworkMonitorClient, ListMonitorsCommand, "nextToken", "nextToken", "maxResults");
1132
-
1133
- // src/index.ts
1134
- var import_util_endpoints = require("@aws-sdk/util-endpoints");
1135
1132
  // Annotate the CommonJS export names for ESM import in node:
1136
1133
 
1137
1134
  0 && (module.exports = {
@@ -1,4 +1,5 @@
1
- import { resolveEndpoint } from "@smithy/util-endpoints";
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
@@ -3,5 +3,4 @@ export * from "./NetworkMonitor";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
5
  export * from "./models";
6
- import "@aws-sdk/util-endpoints";
7
6
  export { NetworkMonitorServiceException } from "./models/NetworkMonitorServiceException";
@@ -52,6 +52,7 @@ export interface NetworkMonitor {
52
52
  /**
53
53
  * @see {@link ListMonitorsCommand}
54
54
  */
55
+ listMonitors(): Promise<ListMonitorsCommandOutput>;
55
56
  listMonitors(args: ListMonitorsCommandInput, options?: __HttpHandlerOptions): Promise<ListMonitorsCommandOutput>;
56
57
  listMonitors(args: ListMonitorsCommandInput, cb: (err: any, data?: ListMonitorsCommandOutput) => void): void;
57
58
  listMonitors(args: ListMonitorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMonitorsCommandOutput) => void): void;
@@ -87,7 +88,6 @@ export interface NetworkMonitor {
87
88
  updateProbe(args: UpdateProbeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProbeCommandOutput) => void): void;
88
89
  }
89
90
  /**
90
- * @public
91
91
  * <p>Amazon CloudWatch Network Monitor is an Amazon Web Services active network monitoring
92
92
  * service that identifies if a network issues exists within the Amazon Web Services network
93
93
  * or your own company network. Within Network Monitor you'll choose the source VPCs and
@@ -97,6 +97,7 @@ export interface NetworkMonitor {
97
97
  * destination combinations, each of which is called a probe, within a single monitor.
98
98
  * These probes then monitor network traffic to help you identify where network issues might be affecting your traffic.</p>
99
99
  * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/what-is-network-monitor.html">Using Amazon CloudWatch Network Monitor</a> in the <i>Amazon CloudWatch User Guide</i>.</p>
100
+ * @public
100
101
  */
101
102
  export declare class NetworkMonitor extends NetworkMonitorClient implements NetworkMonitor {
102
103
  }
@@ -163,7 +163,6 @@ export type NetworkMonitorClientResolvedConfigType = __SmithyResolvedConfigurati
163
163
  export interface NetworkMonitorClientResolvedConfig extends NetworkMonitorClientResolvedConfigType {
164
164
  }
165
165
  /**
166
- * @public
167
166
  * <p>Amazon CloudWatch Network Monitor is an Amazon Web Services active network monitoring
168
167
  * service that identifies if a network issues exists within the Amazon Web Services network
169
168
  * or your own company network. Within Network Monitor you'll choose the source VPCs and
@@ -173,6 +172,7 @@ export interface NetworkMonitorClientResolvedConfig extends NetworkMonitorClient
173
172
  * destination combinations, each of which is called a probe, within a single monitor.
174
173
  * These probes then monitor network traffic to help you identify where network issues might be affecting your traffic.</p>
175
174
  * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/what-is-network-monitor.html">Using Amazon CloudWatch Network Monitor</a> in the <i>Amazon CloudWatch User Guide</i>.</p>
175
+ * @public
176
176
  */
177
177
  export declare class NetworkMonitorClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, NetworkMonitorClientResolvedConfig> {
178
178
  /**
@@ -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, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateMonitorCommandInput): import("@smithy/smithy-client").CommandImpl<CreateMonitorCommandInput, CreateMonitorCommandOutput, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a monitor between a source subnet and destination IP address. Within a monitor you'll create one or more probes that monitor network traffic between your source Amazon Web Services VPC subnets and your destination IP addresses. Each probe then aggregates and sends metrics to Amazon CloudWatch.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -94,6 +94,7 @@ declare const CreateMonitorCommand_base: {
94
94
  * @throws {@link NetworkMonitorServiceException}
95
95
  * <p>Base exception class for all service exceptions from NetworkMonitor service.</p>
96
96
  *
97
+ * @public
97
98
  */
98
99
  export declare class CreateMonitorCommand extends CreateMonitorCommand_base {
99
100
  }
@@ -22,10 +22,10 @@ export interface CreateProbeCommandOutput extends CreateProbeOutput, __MetadataB
22
22
  }
23
23
  declare const CreateProbeCommand_base: {
24
24
  new (input: CreateProbeCommandInput): import("@smithy/smithy-client").CommandImpl<CreateProbeCommandInput, CreateProbeCommandOutput, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateProbeCommandInput): import("@smithy/smithy-client").CommandImpl<CreateProbeCommandInput, CreateProbeCommandOutput, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Create a probe within a monitor. Once you create a probe, and it begins monitoring your network traffic, you'll incur billing charges for that probe. </p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -99,6 +99,7 @@ declare const CreateProbeCommand_base: {
99
99
  * @throws {@link NetworkMonitorServiceException}
100
100
  * <p>Base exception class for all service exceptions from NetworkMonitor service.</p>
101
101
  *
102
+ * @public
102
103
  */
103
104
  export declare class CreateProbeCommand extends CreateProbeCommand_base {
104
105
  }
@@ -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, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteMonitorCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMonitorCommandInput, DeleteMonitorCommandOutput, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes a specified monitor.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -66,6 +66,7 @@ declare const DeleteMonitorCommand_base: {
66
66
  * @throws {@link NetworkMonitorServiceException}
67
67
  * <p>Base exception class for all service exceptions from NetworkMonitor service.</p>
68
68
  *
69
+ * @public
69
70
  */
70
71
  export declare class DeleteMonitorCommand extends DeleteMonitorCommand_base {
71
72
  }
@@ -22,10 +22,10 @@ export interface DeleteProbeCommandOutput extends DeleteProbeOutput, __MetadataB
22
22
  }
23
23
  declare const DeleteProbeCommand_base: {
24
24
  new (input: DeleteProbeCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteProbeCommandInput, DeleteProbeCommandOutput, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteProbeCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteProbeCommandInput, DeleteProbeCommandOutput, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes the specified monitor. Once a probe is deleted you'll no longer incur any billing fees for that probe.</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 DeleteProbeCommand_base: {
70
70
  * @throws {@link NetworkMonitorServiceException}
71
71
  * <p>Base exception class for all service exceptions from NetworkMonitor service.</p>
72
72
  *
73
+ * @public
73
74
  */
74
75
  export declare class DeleteProbeCommand extends DeleteProbeCommand_base {
75
76
  }
@@ -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, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetMonitorCommandInput): import("@smithy/smithy-client").CommandImpl<GetMonitorCommandInput, GetMonitorCommandOutput, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns details about a specific monitor.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -95,6 +95,7 @@ declare const GetMonitorCommand_base: {
95
95
  * @throws {@link NetworkMonitorServiceException}
96
96
  * <p>Base exception class for all service exceptions from NetworkMonitor service.</p>
97
97
  *
98
+ * @public
98
99
  */
99
100
  export declare class GetMonitorCommand extends GetMonitorCommand_base {
100
101
  }
@@ -22,10 +22,10 @@ export interface GetProbeCommandOutput extends GetProbeOutput, __MetadataBearer
22
22
  }
23
23
  declare const GetProbeCommand_base: {
24
24
  new (input: GetProbeCommandInput): import("@smithy/smithy-client").CommandImpl<GetProbeCommandInput, GetProbeCommandOutput, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetProbeCommandInput): import("@smithy/smithy-client").CommandImpl<GetProbeCommandInput, GetProbeCommandOutput, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns the details about a probe. You'll need both the <code>monitorName</code> and <code>probeId</code>. </p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -83,6 +83,7 @@ declare const GetProbeCommand_base: {
83
83
  * @throws {@link NetworkMonitorServiceException}
84
84
  * <p>Base exception class for all service exceptions from NetworkMonitor service.</p>
85
85
  *
86
+ * @public
86
87
  */
87
88
  export declare class GetProbeCommand extends GetProbeCommand_base {
88
89
  }
@@ -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, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListMonitorsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListMonitorsCommandInput, ListMonitorsCommandOutput, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns a list of all of your monitors.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -78,6 +78,7 @@ declare const ListMonitorsCommand_base: {
78
78
  * @throws {@link NetworkMonitorServiceException}
79
79
  * <p>Base exception class for all service exceptions from NetworkMonitor service.</p>
80
80
  *
81
+ * @public
81
82
  */
82
83
  export declare class ListMonitorsCommand extends ListMonitorsCommand_base {
83
84
  }
@@ -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, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists the tags assigned to this resource.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -73,6 +73,7 @@ declare const ListTagsForResourceCommand_base: {
73
73
  * @throws {@link NetworkMonitorServiceException}
74
74
  * <p>Base exception class for all service exceptions from NetworkMonitor service.</p>
75
75
  *
76
+ * @public
76
77
  */
77
78
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
78
79
  }
@@ -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, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Adds key-value pairs to a monitor or probe.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -72,6 +72,7 @@ declare const TagResourceCommand_base: {
72
72
  * @throws {@link NetworkMonitorServiceException}
73
73
  * <p>Base exception class for all service exceptions from NetworkMonitor service.</p>
74
74
  *
75
+ * @public
75
76
  */
76
77
  export declare class TagResourceCommand extends TagResourceCommand_base {
77
78
  }
@@ -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, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Removes a key-value pair from a monitor or probe.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -72,6 +72,7 @@ declare const UntagResourceCommand_base: {
72
72
  * @throws {@link NetworkMonitorServiceException}
73
73
  * <p>Base exception class for all service exceptions from NetworkMonitor service.</p>
74
74
  *
75
+ * @public
75
76
  */
76
77
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
77
78
  }
@@ -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, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdateMonitorCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateMonitorCommandInput, UpdateMonitorCommandOutput, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Updates the <code>aggregationPeriod</code> for a monitor. Monitors support an <code>aggregationPeriod</code> of either <code>30</code> or <code>60</code> seconds.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -78,6 +78,7 @@ declare const UpdateMonitorCommand_base: {
78
78
  * @throws {@link NetworkMonitorServiceException}
79
79
  * <p>Base exception class for all service exceptions from NetworkMonitor service.</p>
80
80
  *
81
+ * @public
81
82
  */
82
83
  export declare class UpdateMonitorCommand extends UpdateMonitorCommand_base {
83
84
  }
@@ -22,10 +22,10 @@ export interface UpdateProbeCommandOutput extends UpdateProbeOutput, __MetadataB
22
22
  }
23
23
  declare const UpdateProbeCommand_base: {
24
24
  new (input: UpdateProbeCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateProbeCommandInput, UpdateProbeCommandOutput, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdateProbeCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateProbeCommandInput, UpdateProbeCommandOutput, NetworkMonitorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Updates a monitor probe. This action requires both the <code>monitorName</code> and <code>probeId</code> parameters. Run <code>ListMonitors</code> to get a list of monitor names. Run <code>GetMonitor</code> to get a list of probes and probe IDs. </p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -91,6 +91,7 @@ declare const UpdateProbeCommand_base: {
91
91
  * @throws {@link NetworkMonitorServiceException}
92
92
  * <p>Base exception class for all service exceptions from NetworkMonitor service.</p>
93
93
  *
94
+ * @public
94
95
  */
95
96
  export declare class UpdateProbeCommand extends UpdateProbeCommand_base {
96
97
  }
@@ -19,5 +19,4 @@ export { NetworkMonitorExtensionConfiguration } from "./extensionConfiguration";
19
19
  export * from "./commands";
20
20
  export * from "./pagination";
21
21
  export * from "./models";
22
- import "@aws-sdk/util-endpoints";
23
22
  export { NetworkMonitorServiceException } from "./models/NetworkMonitorServiceException";