@aws-sdk/client-internetmonitor 3.300.0 → 3.301.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-types/commands/CreateMonitorCommand.d.ts +3 -3
- package/dist-types/commands/DeleteMonitorCommand.d.ts +1 -1
- package/dist-types/commands/GetHealthEventCommand.d.ts +1 -1
- package/dist-types/commands/GetMonitorCommand.d.ts +1 -1
- package/dist-types/commands/ListHealthEventsCommand.d.ts +1 -1
- package/dist-types/commands/ListMonitorsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateMonitorCommand.d.ts +2 -2
- package/package.json +3 -3
|
@@ -29,13 +29,13 @@ export interface CreateMonitorCommandOutput extends CreateMonitorOutput, __Metad
|
|
|
29
29
|
* import { InternetMonitorClient, CreateMonitorCommand } from "@aws-sdk/client-internetmonitor"; // ES Modules import
|
|
30
30
|
* // const { InternetMonitorClient, CreateMonitorCommand } = require("@aws-sdk/client-internetmonitor"); // CommonJS import
|
|
31
31
|
* const client = new InternetMonitorClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // CreateMonitorInput
|
|
33
33
|
* MonitorName: "STRING_VALUE", // required
|
|
34
|
-
* Resources: [
|
|
34
|
+
* Resources: [ // SetOfARNs
|
|
35
35
|
* "STRING_VALUE",
|
|
36
36
|
* ],
|
|
37
37
|
* ClientToken: "STRING_VALUE",
|
|
38
|
-
* Tags: {
|
|
38
|
+
* Tags: { // TagMap
|
|
39
39
|
* "<keys>": "STRING_VALUE",
|
|
40
40
|
* },
|
|
41
41
|
* MaxCityNetworksToMonitor: Number("int"), // required
|
|
@@ -26,7 +26,7 @@ export interface DeleteMonitorCommandOutput extends DeleteMonitorOutput, __Metad
|
|
|
26
26
|
* import { InternetMonitorClient, DeleteMonitorCommand } from "@aws-sdk/client-internetmonitor"; // ES Modules import
|
|
27
27
|
* // const { InternetMonitorClient, DeleteMonitorCommand } = require("@aws-sdk/client-internetmonitor"); // CommonJS import
|
|
28
28
|
* const client = new InternetMonitorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteMonitorInput
|
|
30
30
|
* MonitorName: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteMonitorCommand(input);
|
|
@@ -30,7 +30,7 @@ export interface GetHealthEventCommandOutput extends GetHealthEventOutput, __Met
|
|
|
30
30
|
* import { InternetMonitorClient, GetHealthEventCommand } from "@aws-sdk/client-internetmonitor"; // ES Modules import
|
|
31
31
|
* // const { InternetMonitorClient, GetHealthEventCommand } = require("@aws-sdk/client-internetmonitor"); // CommonJS import
|
|
32
32
|
* const client = new InternetMonitorClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // GetHealthEventInput
|
|
34
34
|
* MonitorName: "STRING_VALUE", // required
|
|
35
35
|
* EventId: "STRING_VALUE", // required
|
|
36
36
|
* };
|
|
@@ -27,7 +27,7 @@ export interface GetMonitorCommandOutput extends GetMonitorOutput, __MetadataBea
|
|
|
27
27
|
* import { InternetMonitorClient, GetMonitorCommand } from "@aws-sdk/client-internetmonitor"; // ES Modules import
|
|
28
28
|
* // const { InternetMonitorClient, GetMonitorCommand } = require("@aws-sdk/client-internetmonitor"); // CommonJS import
|
|
29
29
|
* const client = new InternetMonitorClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // GetMonitorInput
|
|
31
31
|
* MonitorName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetMonitorCommand(input);
|
|
@@ -30,7 +30,7 @@ export interface ListHealthEventsCommandOutput extends ListHealthEventsOutput, _
|
|
|
30
30
|
* import { InternetMonitorClient, ListHealthEventsCommand } from "@aws-sdk/client-internetmonitor"; // ES Modules import
|
|
31
31
|
* // const { InternetMonitorClient, ListHealthEventsCommand } = require("@aws-sdk/client-internetmonitor"); // CommonJS import
|
|
32
32
|
* const client = new InternetMonitorClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // ListHealthEventsInput
|
|
34
34
|
* MonitorName: "STRING_VALUE", // required
|
|
35
35
|
* StartTime: new Date("TIMESTAMP"),
|
|
36
36
|
* EndTime: new Date("TIMESTAMP"),
|
|
@@ -26,7 +26,7 @@ export interface ListMonitorsCommandOutput extends ListMonitorsOutput, __Metadat
|
|
|
26
26
|
* import { InternetMonitorClient, ListMonitorsCommand } from "@aws-sdk/client-internetmonitor"; // ES Modules import
|
|
27
27
|
* // const { InternetMonitorClient, ListMonitorsCommand } = require("@aws-sdk/client-internetmonitor"); // CommonJS import
|
|
28
28
|
* const client = new InternetMonitorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListMonitorsInput
|
|
30
30
|
* NextToken: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* MonitorStatus: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
26
26
|
* import { InternetMonitorClient, ListTagsForResourceCommand } from "@aws-sdk/client-internetmonitor"; // ES Modules import
|
|
27
27
|
* // const { InternetMonitorClient, ListTagsForResourceCommand } = require("@aws-sdk/client-internetmonitor"); // CommonJS import
|
|
28
28
|
* const client = new InternetMonitorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceInput
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -27,9 +27,9 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
27
27
|
* import { InternetMonitorClient, TagResourceCommand } from "@aws-sdk/client-internetmonitor"; // ES Modules import
|
|
28
28
|
* // const { InternetMonitorClient, TagResourceCommand } = require("@aws-sdk/client-internetmonitor"); // CommonJS import
|
|
29
29
|
* const client = new InternetMonitorClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // TagResourceInput
|
|
31
31
|
* ResourceArn: "STRING_VALUE", // required
|
|
32
|
-
* Tags: { // required
|
|
32
|
+
* Tags: { // TagMap // required
|
|
33
33
|
* "<keys>": "STRING_VALUE",
|
|
34
34
|
* },
|
|
35
35
|
* };
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
26
26
|
* import { InternetMonitorClient, UntagResourceCommand } from "@aws-sdk/client-internetmonitor"; // ES Modules import
|
|
27
27
|
* // const { InternetMonitorClient, UntagResourceCommand } = require("@aws-sdk/client-internetmonitor"); // CommonJS import
|
|
28
28
|
* const client = new InternetMonitorClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceInput
|
|
30
30
|
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [ // required
|
|
31
|
+
* TagKeys: [ // TagKeys // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -27,9 +27,9 @@ export interface UpdateMonitorCommandOutput extends UpdateMonitorOutput, __Metad
|
|
|
27
27
|
* import { InternetMonitorClient, UpdateMonitorCommand } from "@aws-sdk/client-internetmonitor"; // ES Modules import
|
|
28
28
|
* // const { InternetMonitorClient, UpdateMonitorCommand } = require("@aws-sdk/client-internetmonitor"); // CommonJS import
|
|
29
29
|
* const client = new InternetMonitorClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UpdateMonitorInput
|
|
31
31
|
* MonitorName: "STRING_VALUE", // required
|
|
32
|
-
* ResourcesToAdd: [
|
|
32
|
+
* ResourcesToAdd: [ // SetOfARNs
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* ResourcesToRemove: [
|
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.
|
|
4
|
+
"version": "3.301.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,9 +21,9 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|