@aws-sdk/client-networkmonitor 3.490.0 → 3.496.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/NetworkMonitor.js +1 -35
- package/dist-cjs/NetworkMonitorClient.js +1 -43
- package/dist-cjs/commands/CreateMonitorCommand.js +1 -28
- package/dist-cjs/commands/CreateProbeCommand.js +1 -28
- package/dist-cjs/commands/DeleteMonitorCommand.js +1 -28
- package/dist-cjs/commands/DeleteProbeCommand.js +1 -28
- package/dist-cjs/commands/GetMonitorCommand.js +1 -28
- package/dist-cjs/commands/GetProbeCommand.js +1 -28
- package/dist-cjs/commands/ListMonitorsCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateMonitorCommand.js +1 -28
- package/dist-cjs/commands/UpdateProbeCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -15
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +1504 -11
- package/dist-cjs/models/NetworkMonitorServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -122
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListMonitorsPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -5
- package/dist-cjs/protocols/Aws_restJson1.js +1 -957
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.NetworkMonitorServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
-
class NetworkMonitorServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, NetworkMonitorServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.NetworkMonitorServiceException = NetworkMonitorServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED
|
@@ -1,122 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ResourceNotFoundException = exports.ProbeState = exports.ValidationException = exports.ThrottlingException = exports.ServiceQuotaExceededException = exports.InternalServerException = exports.MonitorState = exports.Protocol = exports.ConflictException = exports.AddressFamily = exports.AccessDeniedException = void 0;
|
|
4
|
-
const NetworkMonitorServiceException_1 = require("./NetworkMonitorServiceException");
|
|
5
|
-
class AccessDeniedException extends NetworkMonitorServiceException_1.NetworkMonitorServiceException {
|
|
6
|
-
constructor(opts) {
|
|
7
|
-
super({
|
|
8
|
-
name: "AccessDeniedException",
|
|
9
|
-
$fault: "client",
|
|
10
|
-
...opts,
|
|
11
|
-
});
|
|
12
|
-
this.name = "AccessDeniedException";
|
|
13
|
-
this.$fault = "client";
|
|
14
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
18
|
-
exports.AddressFamily = {
|
|
19
|
-
IPV4: "IPV4",
|
|
20
|
-
IPV6: "IPV6",
|
|
21
|
-
};
|
|
22
|
-
class ConflictException extends NetworkMonitorServiceException_1.NetworkMonitorServiceException {
|
|
23
|
-
constructor(opts) {
|
|
24
|
-
super({
|
|
25
|
-
name: "ConflictException",
|
|
26
|
-
$fault: "client",
|
|
27
|
-
...opts,
|
|
28
|
-
});
|
|
29
|
-
this.name = "ConflictException";
|
|
30
|
-
this.$fault = "client";
|
|
31
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
exports.ConflictException = ConflictException;
|
|
35
|
-
exports.Protocol = {
|
|
36
|
-
ICMP: "ICMP",
|
|
37
|
-
TCP: "TCP",
|
|
38
|
-
};
|
|
39
|
-
exports.MonitorState = {
|
|
40
|
-
ACTIVE: "ACTIVE",
|
|
41
|
-
DELETING: "DELETING",
|
|
42
|
-
ERROR: "ERROR",
|
|
43
|
-
INACTIVE: "INACTIVE",
|
|
44
|
-
PENDING: "PENDING",
|
|
45
|
-
};
|
|
46
|
-
class InternalServerException extends NetworkMonitorServiceException_1.NetworkMonitorServiceException {
|
|
47
|
-
constructor(opts) {
|
|
48
|
-
super({
|
|
49
|
-
name: "InternalServerException",
|
|
50
|
-
$fault: "server",
|
|
51
|
-
...opts,
|
|
52
|
-
});
|
|
53
|
-
this.name = "InternalServerException";
|
|
54
|
-
this.$fault = "server";
|
|
55
|
-
this.$retryable = {};
|
|
56
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
exports.InternalServerException = InternalServerException;
|
|
60
|
-
class ServiceQuotaExceededException extends NetworkMonitorServiceException_1.NetworkMonitorServiceException {
|
|
61
|
-
constructor(opts) {
|
|
62
|
-
super({
|
|
63
|
-
name: "ServiceQuotaExceededException",
|
|
64
|
-
$fault: "client",
|
|
65
|
-
...opts,
|
|
66
|
-
});
|
|
67
|
-
this.name = "ServiceQuotaExceededException";
|
|
68
|
-
this.$fault = "client";
|
|
69
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
73
|
-
class ThrottlingException extends NetworkMonitorServiceException_1.NetworkMonitorServiceException {
|
|
74
|
-
constructor(opts) {
|
|
75
|
-
super({
|
|
76
|
-
name: "ThrottlingException",
|
|
77
|
-
$fault: "client",
|
|
78
|
-
...opts,
|
|
79
|
-
});
|
|
80
|
-
this.name = "ThrottlingException";
|
|
81
|
-
this.$fault = "client";
|
|
82
|
-
this.$retryable = {
|
|
83
|
-
throttling: true,
|
|
84
|
-
};
|
|
85
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
exports.ThrottlingException = ThrottlingException;
|
|
89
|
-
class ValidationException extends NetworkMonitorServiceException_1.NetworkMonitorServiceException {
|
|
90
|
-
constructor(opts) {
|
|
91
|
-
super({
|
|
92
|
-
name: "ValidationException",
|
|
93
|
-
$fault: "client",
|
|
94
|
-
...opts,
|
|
95
|
-
});
|
|
96
|
-
this.name = "ValidationException";
|
|
97
|
-
this.$fault = "client";
|
|
98
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
exports.ValidationException = ValidationException;
|
|
102
|
-
exports.ProbeState = {
|
|
103
|
-
ACTIVE: "ACTIVE",
|
|
104
|
-
DELETED: "DELETED",
|
|
105
|
-
DELETING: "DELETING",
|
|
106
|
-
ERROR: "ERROR",
|
|
107
|
-
INACTIVE: "INACTIVE",
|
|
108
|
-
PENDING: "PENDING",
|
|
109
|
-
};
|
|
110
|
-
class ResourceNotFoundException extends NetworkMonitorServiceException_1.NetworkMonitorServiceException {
|
|
111
|
-
constructor(opts) {
|
|
112
|
-
super({
|
|
113
|
-
name: "ResourceNotFoundException",
|
|
114
|
-
$fault: "client",
|
|
115
|
-
...opts,
|
|
116
|
-
});
|
|
117
|
-
this.name = "ResourceNotFoundException";
|
|
118
|
-
this.$fault = "client";
|
|
119
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListMonitors = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListMonitorsCommand_1 = require("../commands/ListMonitorsCommand");
|
|
6
|
-
const NetworkMonitorClient_1 = require("../NetworkMonitorClient");
|
|
7
|
-
exports.paginateListMonitors = (0, core_1.createPaginator)(NetworkMonitorClient_1.NetworkMonitorClient, ListMonitorsCommand_1.ListMonitorsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,5 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./ListMonitorsPaginator"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|