@aws-sdk/client-networkmonitor 3.686.0 → 3.691.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.
|
@@ -67,7 +67,7 @@ export interface CreateMonitorProbeInput {
|
|
|
67
67
|
* <p>The port associated with the <code>destination</code>. This is required only if the <code>protocol</code> is <code>TCP</code> and must be a number between <code>1</code> and <code>65536</code>.</p>
|
|
68
68
|
* @public
|
|
69
69
|
*/
|
|
70
|
-
destinationPort?: number;
|
|
70
|
+
destinationPort?: number | undefined;
|
|
71
71
|
/**
|
|
72
72
|
* <p>The protocol used for the network traffic between the <code>source</code> and <code>destination</code>. This must be either <code>TCP</code> or <code>ICMP</code>.</p>
|
|
73
73
|
* @public
|
|
@@ -77,12 +77,12 @@ export interface CreateMonitorProbeInput {
|
|
|
77
77
|
* <p>The size of the packets sent between the source and destination. This must be a number between <code>56</code> and <code>8500</code>.</p>
|
|
78
78
|
* @public
|
|
79
79
|
*/
|
|
80
|
-
packetSize?: number;
|
|
80
|
+
packetSize?: number | undefined;
|
|
81
81
|
/**
|
|
82
82
|
* <p>The list of key-value pairs created and assigned to the monitor.</p>
|
|
83
83
|
* @public
|
|
84
84
|
*/
|
|
85
|
-
probeTags?: Record<string, string
|
|
85
|
+
probeTags?: Record<string, string> | undefined;
|
|
86
86
|
}
|
|
87
87
|
/**
|
|
88
88
|
* @public
|
|
@@ -97,24 +97,24 @@ export interface CreateMonitorInput {
|
|
|
97
97
|
* <p>Displays a list of all of the probes created for a monitor.</p>
|
|
98
98
|
* @public
|
|
99
99
|
*/
|
|
100
|
-
probes?: CreateMonitorProbeInput[];
|
|
100
|
+
probes?: CreateMonitorProbeInput[] | undefined;
|
|
101
101
|
/**
|
|
102
102
|
* <p>The time, in seconds, that metrics are aggregated and sent to Amazon CloudWatch. Valid
|
|
103
103
|
* values are either <code>30</code> or <code>60</code>. <code>60</code> is the default if
|
|
104
104
|
* no period is chosen.</p>
|
|
105
105
|
* @public
|
|
106
106
|
*/
|
|
107
|
-
aggregationPeriod?: number;
|
|
107
|
+
aggregationPeriod?: number | undefined;
|
|
108
108
|
/**
|
|
109
109
|
* <p>Unique, case-sensitive identifier to ensure the idempotency of the request. Only returned if a client token was provided in the request.</p>
|
|
110
110
|
* @public
|
|
111
111
|
*/
|
|
112
|
-
clientToken?: string;
|
|
112
|
+
clientToken?: string | undefined;
|
|
113
113
|
/**
|
|
114
114
|
* <p>The list of key-value pairs created and assigned to the monitor.</p>
|
|
115
115
|
* @public
|
|
116
116
|
*/
|
|
117
|
-
tags?: Record<string, string
|
|
117
|
+
tags?: Record<string, string> | undefined;
|
|
118
118
|
}
|
|
119
119
|
/**
|
|
120
120
|
* @public
|
|
@@ -155,12 +155,12 @@ export interface CreateMonitorOutput {
|
|
|
155
155
|
* This will be either <code>30</code> or <code>60</code>. </p>
|
|
156
156
|
* @public
|
|
157
157
|
*/
|
|
158
|
-
aggregationPeriod?: number;
|
|
158
|
+
aggregationPeriod?: number | undefined;
|
|
159
159
|
/**
|
|
160
160
|
* <p>The list of key-value pairs assigned to the monitor.</p>
|
|
161
161
|
* @public
|
|
162
162
|
*/
|
|
163
|
-
tags?: Record<string, string
|
|
163
|
+
tags?: Record<string, string> | undefined;
|
|
164
164
|
}
|
|
165
165
|
/**
|
|
166
166
|
* <p>The request processing has failed because of an unknown error, exception or failure.</p>
|
|
@@ -233,7 +233,7 @@ export interface ProbeInput {
|
|
|
233
233
|
* <p>The port associated with the <code>destination</code>. This is required only if the <code>protocol</code> is <code>TCP</code> and must be a number between <code>1</code> and <code>65536</code>.</p>
|
|
234
234
|
* @public
|
|
235
235
|
*/
|
|
236
|
-
destinationPort?: number;
|
|
236
|
+
destinationPort?: number | undefined;
|
|
237
237
|
/**
|
|
238
238
|
* <p>The protocol used for the network traffic between the <code>source</code> and <code>destination</code>. This must be either <code>TCP</code> or <code>ICMP</code>.</p>
|
|
239
239
|
* @public
|
|
@@ -243,12 +243,12 @@ export interface ProbeInput {
|
|
|
243
243
|
* <p>The size of the packets sent between the source and destination. This must be a number between <code>56</code> and <code>8500</code>.</p>
|
|
244
244
|
* @public
|
|
245
245
|
*/
|
|
246
|
-
packetSize?: number;
|
|
246
|
+
packetSize?: number | undefined;
|
|
247
247
|
/**
|
|
248
248
|
* <p>The list of key-value pairs created and assigned to the monitor.</p>
|
|
249
249
|
* @public
|
|
250
250
|
*/
|
|
251
|
-
tags?: Record<string, string
|
|
251
|
+
tags?: Record<string, string> | undefined;
|
|
252
252
|
}
|
|
253
253
|
/**
|
|
254
254
|
* @public
|
|
@@ -268,12 +268,12 @@ export interface CreateProbeInput {
|
|
|
268
268
|
* <p>Unique, case-sensitive identifier to ensure the idempotency of the request. Only returned if a client token was provided in the request.</p>
|
|
269
269
|
* @public
|
|
270
270
|
*/
|
|
271
|
-
clientToken?: string;
|
|
271
|
+
clientToken?: string | undefined;
|
|
272
272
|
/**
|
|
273
273
|
* <p>The list of key-value pairs created and assigned to the probe.</p>
|
|
274
274
|
* @public
|
|
275
275
|
*/
|
|
276
|
-
tags?: Record<string, string
|
|
276
|
+
tags?: Record<string, string> | undefined;
|
|
277
277
|
}
|
|
278
278
|
/**
|
|
279
279
|
* @public
|
|
@@ -299,12 +299,12 @@ export interface CreateProbeOutput {
|
|
|
299
299
|
* <p>The ID of the probe for which details are returned.</p>
|
|
300
300
|
* @public
|
|
301
301
|
*/
|
|
302
|
-
probeId?: string;
|
|
302
|
+
probeId?: string | undefined;
|
|
303
303
|
/**
|
|
304
304
|
* <p>The ARN of the probe.</p>
|
|
305
305
|
* @public
|
|
306
306
|
*/
|
|
307
|
-
probeArn?: string;
|
|
307
|
+
probeArn?: string | undefined;
|
|
308
308
|
/**
|
|
309
309
|
* <p>The ARN of the probe.</p>
|
|
310
310
|
* @public
|
|
@@ -319,7 +319,7 @@ export interface CreateProbeOutput {
|
|
|
319
319
|
* <p>The port associated with the <code>destination</code>. This is required only if the <code>protocol</code> is <code>TCP</code> and must be a number between <code>1</code> and <code>65536</code>.</p>
|
|
320
320
|
* @public
|
|
321
321
|
*/
|
|
322
|
-
destinationPort?: number;
|
|
322
|
+
destinationPort?: number | undefined;
|
|
323
323
|
/**
|
|
324
324
|
* <p>The protocol used for the network traffic between the <code>source</code> and <code>destination</code>. This must be either <code>TCP</code> or <code>ICMP</code>.</p>
|
|
325
325
|
* @public
|
|
@@ -329,37 +329,37 @@ export interface CreateProbeOutput {
|
|
|
329
329
|
* <p>The size of the packets sent between the source and destination. This must be a number between <code>56</code> and <code>8500</code>.</p>
|
|
330
330
|
* @public
|
|
331
331
|
*/
|
|
332
|
-
packetSize?: number;
|
|
332
|
+
packetSize?: number | undefined;
|
|
333
333
|
/**
|
|
334
334
|
* <p>Indicates whether the IP address is <code>IPV4</code> or <code>IPV6</code>.</p>
|
|
335
335
|
* @public
|
|
336
336
|
*/
|
|
337
|
-
addressFamily?: AddressFamily;
|
|
337
|
+
addressFamily?: AddressFamily | undefined;
|
|
338
338
|
/**
|
|
339
339
|
* <p>The ID of the source VPC or subnet.</p>
|
|
340
340
|
* @public
|
|
341
341
|
*/
|
|
342
|
-
vpcId?: string;
|
|
342
|
+
vpcId?: string | undefined;
|
|
343
343
|
/**
|
|
344
344
|
* <p>The state of the probe.</p>
|
|
345
345
|
* @public
|
|
346
346
|
*/
|
|
347
|
-
state?: ProbeState;
|
|
347
|
+
state?: ProbeState | undefined;
|
|
348
348
|
/**
|
|
349
349
|
* <p>The time and date that the probe was created.</p>
|
|
350
350
|
* @public
|
|
351
351
|
*/
|
|
352
|
-
createdAt?: Date;
|
|
352
|
+
createdAt?: Date | undefined;
|
|
353
353
|
/**
|
|
354
354
|
* <p>The time and date when the probe was last modified. </p>
|
|
355
355
|
* @public
|
|
356
356
|
*/
|
|
357
|
-
modifiedAt?: Date;
|
|
357
|
+
modifiedAt?: Date | undefined;
|
|
358
358
|
/**
|
|
359
359
|
* <p>The list of key-value pairs assigned to the probe.</p>
|
|
360
360
|
* @public
|
|
361
361
|
*/
|
|
362
|
-
tags?: Record<string, string
|
|
362
|
+
tags?: Record<string, string> | undefined;
|
|
363
363
|
}
|
|
364
364
|
/**
|
|
365
365
|
* <p>The specified resource does not exist.</p>
|
|
@@ -427,12 +427,12 @@ export interface Probe {
|
|
|
427
427
|
* <p>The ID of the probe.</p>
|
|
428
428
|
* @public
|
|
429
429
|
*/
|
|
430
|
-
probeId?: string;
|
|
430
|
+
probeId?: string | undefined;
|
|
431
431
|
/**
|
|
432
432
|
* <p>The ARN of the probe.</p>
|
|
433
433
|
* @public
|
|
434
434
|
*/
|
|
435
|
-
probeArn?: string;
|
|
435
|
+
probeArn?: string | undefined;
|
|
436
436
|
/**
|
|
437
437
|
* <p>The ARN of the probe source subnet.</p>
|
|
438
438
|
* @public
|
|
@@ -447,7 +447,7 @@ export interface Probe {
|
|
|
447
447
|
* <p>The destination port for the probe. This is required only if the <code>protocol</code> is <code>TCP</code> and must be a number between <code>1</code> and <code>65536</code>.</p>
|
|
448
448
|
* @public
|
|
449
449
|
*/
|
|
450
|
-
destinationPort?: number;
|
|
450
|
+
destinationPort?: number | undefined;
|
|
451
451
|
/**
|
|
452
452
|
* <p>The network protocol for the destination. This can be either <code>TCP</code> or <code>ICMP</code>. If the protocol is <code>TCP</code>, then <code>port</code> is also required.</p>
|
|
453
453
|
* @public
|
|
@@ -457,37 +457,37 @@ export interface Probe {
|
|
|
457
457
|
* <p>The size of the packets traveling between the <code>source</code> and <code>destination</code>. This must be a number between <code>56</code> and </p>
|
|
458
458
|
* @public
|
|
459
459
|
*/
|
|
460
|
-
packetSize?: number;
|
|
460
|
+
packetSize?: number | undefined;
|
|
461
461
|
/**
|
|
462
462
|
* <p>The IPv4 or IPv6 address for the probe.</p>
|
|
463
463
|
* @public
|
|
464
464
|
*/
|
|
465
|
-
addressFamily?: AddressFamily;
|
|
465
|
+
addressFamily?: AddressFamily | undefined;
|
|
466
466
|
/**
|
|
467
467
|
* <p>The ID of the source VPC subnet.</p>
|
|
468
468
|
* @public
|
|
469
469
|
*/
|
|
470
|
-
vpcId?: string;
|
|
470
|
+
vpcId?: string | undefined;
|
|
471
471
|
/**
|
|
472
472
|
* <p>The state of the probe.</p>
|
|
473
473
|
* @public
|
|
474
474
|
*/
|
|
475
|
-
state?: ProbeState;
|
|
475
|
+
state?: ProbeState | undefined;
|
|
476
476
|
/**
|
|
477
477
|
* <p>The time and date the probe was created.</p>
|
|
478
478
|
* @public
|
|
479
479
|
*/
|
|
480
|
-
createdAt?: Date;
|
|
480
|
+
createdAt?: Date | undefined;
|
|
481
481
|
/**
|
|
482
482
|
* <p>The time and date that the probe was last modified.</p>
|
|
483
483
|
* @public
|
|
484
484
|
*/
|
|
485
|
-
modifiedAt?: Date;
|
|
485
|
+
modifiedAt?: Date | undefined;
|
|
486
486
|
/**
|
|
487
487
|
* <p>The list of key-value pairs created and assigned to the probe.</p>
|
|
488
488
|
* @public
|
|
489
489
|
*/
|
|
490
|
-
tags?: Record<string, string
|
|
490
|
+
tags?: Record<string, string> | undefined;
|
|
491
491
|
}
|
|
492
492
|
/**
|
|
493
493
|
* @public
|
|
@@ -517,12 +517,12 @@ export interface GetMonitorOutput {
|
|
|
517
517
|
* <p>The list of key-value pairs assigned to the monitor.</p>
|
|
518
518
|
* @public
|
|
519
519
|
*/
|
|
520
|
-
tags?: Record<string, string
|
|
520
|
+
tags?: Record<string, string> | undefined;
|
|
521
521
|
/**
|
|
522
522
|
* <p>The details about each probe associated with that monitor. </p>
|
|
523
523
|
* @public
|
|
524
524
|
*/
|
|
525
|
-
probes?: Probe[];
|
|
525
|
+
probes?: Probe[] | undefined;
|
|
526
526
|
/**
|
|
527
527
|
* <p>The time and date when the monitor was created.</p>
|
|
528
528
|
* @public
|
|
@@ -557,12 +557,12 @@ export interface GetProbeOutput {
|
|
|
557
557
|
* <p>The ID of the probe for which details are returned.</p>
|
|
558
558
|
* @public
|
|
559
559
|
*/
|
|
560
|
-
probeId?: string;
|
|
560
|
+
probeId?: string | undefined;
|
|
561
561
|
/**
|
|
562
562
|
* <p>The ARN of the probe.</p>
|
|
563
563
|
* @public
|
|
564
564
|
*/
|
|
565
|
-
probeArn?: string;
|
|
565
|
+
probeArn?: string | undefined;
|
|
566
566
|
/**
|
|
567
567
|
* <p>The ARN of the probe.</p>
|
|
568
568
|
* @public
|
|
@@ -577,7 +577,7 @@ export interface GetProbeOutput {
|
|
|
577
577
|
* <p>The port associated with the <code>destination</code>. This is required only if the <code>protocol</code> is <code>TCP</code> and must be a number between <code>1</code> and <code>65536</code>.</p>
|
|
578
578
|
* @public
|
|
579
579
|
*/
|
|
580
|
-
destinationPort?: number;
|
|
580
|
+
destinationPort?: number | undefined;
|
|
581
581
|
/**
|
|
582
582
|
* <p>The protocol used for the network traffic between the <code>source</code> and <code>destination</code>. This must be either <code>TCP</code> or <code>ICMP</code>.</p>
|
|
583
583
|
* @public
|
|
@@ -587,37 +587,37 @@ export interface GetProbeOutput {
|
|
|
587
587
|
* <p>The size of the packets sent between the source and destination. This must be a number between <code>56</code> and <code>8500</code>.</p>
|
|
588
588
|
* @public
|
|
589
589
|
*/
|
|
590
|
-
packetSize?: number;
|
|
590
|
+
packetSize?: number | undefined;
|
|
591
591
|
/**
|
|
592
592
|
* <p>Indicates whether the IP address is <code>IPV4</code> or <code>IPV6</code>.</p>
|
|
593
593
|
* @public
|
|
594
594
|
*/
|
|
595
|
-
addressFamily?: AddressFamily;
|
|
595
|
+
addressFamily?: AddressFamily | undefined;
|
|
596
596
|
/**
|
|
597
597
|
* <p>The ID of the source VPC or subnet.</p>
|
|
598
598
|
* @public
|
|
599
599
|
*/
|
|
600
|
-
vpcId?: string;
|
|
600
|
+
vpcId?: string | undefined;
|
|
601
601
|
/**
|
|
602
602
|
* <p>The state of the probe.</p>
|
|
603
603
|
* @public
|
|
604
604
|
*/
|
|
605
|
-
state?: ProbeState;
|
|
605
|
+
state?: ProbeState | undefined;
|
|
606
606
|
/**
|
|
607
607
|
* <p>The time and date that the probe was created.</p>
|
|
608
608
|
* @public
|
|
609
609
|
*/
|
|
610
|
-
createdAt?: Date;
|
|
610
|
+
createdAt?: Date | undefined;
|
|
611
611
|
/**
|
|
612
612
|
* <p>The time and date that the probe was last modified.</p>
|
|
613
613
|
* @public
|
|
614
614
|
*/
|
|
615
|
-
modifiedAt?: Date;
|
|
615
|
+
modifiedAt?: Date | undefined;
|
|
616
616
|
/**
|
|
617
617
|
* <p>The list of key-value pairs assigned to the probe.</p>
|
|
618
618
|
* @public
|
|
619
619
|
*/
|
|
620
|
-
tags?: Record<string, string
|
|
620
|
+
tags?: Record<string, string> | undefined;
|
|
621
621
|
}
|
|
622
622
|
/**
|
|
623
623
|
* @public
|
|
@@ -627,7 +627,7 @@ export interface ListMonitorsInput {
|
|
|
627
627
|
* <p>The token for the next page of results.</p>
|
|
628
628
|
* @public
|
|
629
629
|
*/
|
|
630
|
-
nextToken?: string;
|
|
630
|
+
nextToken?: string | undefined;
|
|
631
631
|
/**
|
|
632
632
|
* <p>The maximum number of results to return with a single call.
|
|
633
633
|
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
@@ -635,12 +635,12 @@ export interface ListMonitorsInput {
|
|
|
635
635
|
* returned.</p>
|
|
636
636
|
* @public
|
|
637
637
|
*/
|
|
638
|
-
maxResults?: number;
|
|
638
|
+
maxResults?: number | undefined;
|
|
639
639
|
/**
|
|
640
640
|
* <p>The list of all monitors and their states.</p>
|
|
641
641
|
* @public
|
|
642
642
|
*/
|
|
643
|
-
state?: string;
|
|
643
|
+
state?: string | undefined;
|
|
644
644
|
}
|
|
645
645
|
/**
|
|
646
646
|
* <p>Displays summary information about a monitor.</p>
|
|
@@ -666,12 +666,12 @@ export interface MonitorSummary {
|
|
|
666
666
|
* <p>The time, in seconds, that metrics are collected and sent to Amazon CloudWatch. Valid values are either <code>30</code> or <code>60</code>.</p>
|
|
667
667
|
* @public
|
|
668
668
|
*/
|
|
669
|
-
aggregationPeriod?: number;
|
|
669
|
+
aggregationPeriod?: number | undefined;
|
|
670
670
|
/**
|
|
671
671
|
* <p>The list of key-value pairs assigned to the monitor.</p>
|
|
672
672
|
* @public
|
|
673
673
|
*/
|
|
674
|
-
tags?: Record<string, string
|
|
674
|
+
tags?: Record<string, string> | undefined;
|
|
675
675
|
}
|
|
676
676
|
/**
|
|
677
677
|
* @public
|
|
@@ -686,7 +686,7 @@ export interface ListMonitorsOutput {
|
|
|
686
686
|
* <p>The token for the next page of results.</p>
|
|
687
687
|
* @public
|
|
688
688
|
*/
|
|
689
|
-
nextToken?: string;
|
|
689
|
+
nextToken?: string | undefined;
|
|
690
690
|
}
|
|
691
691
|
/**
|
|
692
692
|
* @public
|
|
@@ -706,7 +706,7 @@ export interface ListTagsForResourceOutput {
|
|
|
706
706
|
* <p>Lists the tags assigned to the resource.</p>
|
|
707
707
|
* @public
|
|
708
708
|
*/
|
|
709
|
-
tags?: Record<string, string
|
|
709
|
+
tags?: Record<string, string> | undefined;
|
|
710
710
|
}
|
|
711
711
|
/**
|
|
712
712
|
* @public
|
|
@@ -746,12 +746,12 @@ export interface UpdateMonitorOutput {
|
|
|
746
746
|
* <p>The changed aggregation period.</p>
|
|
747
747
|
* @public
|
|
748
748
|
*/
|
|
749
|
-
aggregationPeriod?: number;
|
|
749
|
+
aggregationPeriod?: number | undefined;
|
|
750
750
|
/**
|
|
751
751
|
* <p>The list of key-value pairs associated with the monitor.</p>
|
|
752
752
|
* @public
|
|
753
753
|
*/
|
|
754
|
-
tags?: Record<string, string
|
|
754
|
+
tags?: Record<string, string> | undefined;
|
|
755
755
|
}
|
|
756
756
|
/**
|
|
757
757
|
* @public
|
|
@@ -771,27 +771,27 @@ export interface UpdateProbeInput {
|
|
|
771
771
|
* <p>The state of the probe update.</p>
|
|
772
772
|
* @public
|
|
773
773
|
*/
|
|
774
|
-
state?: ProbeState;
|
|
774
|
+
state?: ProbeState | undefined;
|
|
775
775
|
/**
|
|
776
776
|
* <p>The updated IP address for the probe destination. This must be either an IPv4 or IPv6 address.</p>
|
|
777
777
|
* @public
|
|
778
778
|
*/
|
|
779
|
-
destination?: string;
|
|
779
|
+
destination?: string | undefined;
|
|
780
780
|
/**
|
|
781
781
|
* <p>The updated port for the probe destination. This is required only if the <code>protocol</code> is <code>TCP</code> and must be a number between <code>1</code> and <code>65536</code>.</p>
|
|
782
782
|
* @public
|
|
783
783
|
*/
|
|
784
|
-
destinationPort?: number;
|
|
784
|
+
destinationPort?: number | undefined;
|
|
785
785
|
/**
|
|
786
786
|
* <p>The updated network protocol for the destination. This can be either <code>TCP</code> or <code>ICMP</code>. If the protocol is <code>TCP</code>, then <code>port</code> is also required.</p>
|
|
787
787
|
* @public
|
|
788
788
|
*/
|
|
789
|
-
protocol?: Protocol;
|
|
789
|
+
protocol?: Protocol | undefined;
|
|
790
790
|
/**
|
|
791
791
|
* <p>he updated packets size for network traffic between the source and destination. This must be a number between <code>56</code> and <code>8500</code>.</p>
|
|
792
792
|
* @public
|
|
793
793
|
*/
|
|
794
|
-
packetSize?: number;
|
|
794
|
+
packetSize?: number | undefined;
|
|
795
795
|
}
|
|
796
796
|
/**
|
|
797
797
|
* @public
|
|
@@ -801,12 +801,12 @@ export interface UpdateProbeOutput {
|
|
|
801
801
|
* <p>The updated ID of the probe.</p>
|
|
802
802
|
* @public
|
|
803
803
|
*/
|
|
804
|
-
probeId?: string;
|
|
804
|
+
probeId?: string | undefined;
|
|
805
805
|
/**
|
|
806
806
|
* <p>The updated ARN of the probe.</p>
|
|
807
807
|
* @public
|
|
808
808
|
*/
|
|
809
|
-
probeArn?: string;
|
|
809
|
+
probeArn?: string | undefined;
|
|
810
810
|
/**
|
|
811
811
|
* <p>The updated ARN of the source subnet.</p>
|
|
812
812
|
* @public
|
|
@@ -821,7 +821,7 @@ export interface UpdateProbeOutput {
|
|
|
821
821
|
* <p>The updated destination port. This must be a number between <code>1</code> and <code>65536</code>.</p>
|
|
822
822
|
* @public
|
|
823
823
|
*/
|
|
824
|
-
destinationPort?: number;
|
|
824
|
+
destinationPort?: number | undefined;
|
|
825
825
|
/**
|
|
826
826
|
* <p>The updated protocol for the probe.</p>
|
|
827
827
|
* @public
|
|
@@ -831,37 +831,37 @@ export interface UpdateProbeOutput {
|
|
|
831
831
|
* <p>The updated packet size for the probe. </p>
|
|
832
832
|
* @public
|
|
833
833
|
*/
|
|
834
|
-
packetSize?: number;
|
|
834
|
+
packetSize?: number | undefined;
|
|
835
835
|
/**
|
|
836
836
|
* <p>The updated IP address family. This must be either <code>IPV4</code> or <code>IPV6</code>.</p>
|
|
837
837
|
* @public
|
|
838
838
|
*/
|
|
839
|
-
addressFamily?: AddressFamily;
|
|
839
|
+
addressFamily?: AddressFamily | undefined;
|
|
840
840
|
/**
|
|
841
841
|
* <p>The updated ID of the source VPC subnet ID.</p>
|
|
842
842
|
* @public
|
|
843
843
|
*/
|
|
844
|
-
vpcId?: string;
|
|
844
|
+
vpcId?: string | undefined;
|
|
845
845
|
/**
|
|
846
846
|
* <p>The state of the updated probe.</p>
|
|
847
847
|
* @public
|
|
848
848
|
*/
|
|
849
|
-
state?: ProbeState;
|
|
849
|
+
state?: ProbeState | undefined;
|
|
850
850
|
/**
|
|
851
851
|
* <p>The time and date that the probe was created.</p>
|
|
852
852
|
* @public
|
|
853
853
|
*/
|
|
854
|
-
createdAt?: Date;
|
|
854
|
+
createdAt?: Date | undefined;
|
|
855
855
|
/**
|
|
856
856
|
* <p>The time and date that the probe was last updated.</p>
|
|
857
857
|
* @public
|
|
858
858
|
*/
|
|
859
|
-
modifiedAt?: Date;
|
|
859
|
+
modifiedAt?: Date | undefined;
|
|
860
860
|
/**
|
|
861
861
|
* <p>Update tags for a probe.</p>
|
|
862
862
|
* @public
|
|
863
863
|
*/
|
|
864
|
-
tags?: Record<string, string
|
|
864
|
+
tags?: Record<string, string> | undefined;
|
|
865
865
|
}
|
|
866
866
|
/**
|
|
867
867
|
* @public
|
|
@@ -25,17 +25,17 @@ export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
|
25
25
|
export interface CreateMonitorProbeInput {
|
|
26
26
|
sourceArn: string | undefined;
|
|
27
27
|
destination: string | undefined;
|
|
28
|
-
destinationPort?: number;
|
|
28
|
+
destinationPort?: number | undefined;
|
|
29
29
|
protocol: Protocol | undefined;
|
|
30
|
-
packetSize?: number;
|
|
31
|
-
probeTags?: Record<string, string
|
|
30
|
+
packetSize?: number | undefined;
|
|
31
|
+
probeTags?: Record<string, string> | undefined;
|
|
32
32
|
}
|
|
33
33
|
export interface CreateMonitorInput {
|
|
34
34
|
monitorName: string | undefined;
|
|
35
|
-
probes?: CreateMonitorProbeInput[];
|
|
36
|
-
aggregationPeriod?: number;
|
|
37
|
-
clientToken?: string;
|
|
38
|
-
tags?: Record<string, string
|
|
35
|
+
probes?: CreateMonitorProbeInput[] | undefined;
|
|
36
|
+
aggregationPeriod?: number | undefined;
|
|
37
|
+
clientToken?: string | undefined;
|
|
38
|
+
tags?: Record<string, string> | undefined;
|
|
39
39
|
}
|
|
40
40
|
export declare const MonitorState: {
|
|
41
41
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -49,8 +49,8 @@ export interface CreateMonitorOutput {
|
|
|
49
49
|
monitorArn: string | undefined;
|
|
50
50
|
monitorName: string | undefined;
|
|
51
51
|
state: MonitorState | undefined;
|
|
52
|
-
aggregationPeriod?: number;
|
|
53
|
-
tags?: Record<string, string
|
|
52
|
+
aggregationPeriod?: number | undefined;
|
|
53
|
+
tags?: Record<string, string> | undefined;
|
|
54
54
|
}
|
|
55
55
|
export declare class InternalServerException extends __BaseException {
|
|
56
56
|
readonly name: "InternalServerException";
|
|
@@ -87,16 +87,16 @@ export declare class ValidationException extends __BaseException {
|
|
|
87
87
|
export interface ProbeInput {
|
|
88
88
|
sourceArn: string | undefined;
|
|
89
89
|
destination: string | undefined;
|
|
90
|
-
destinationPort?: number;
|
|
90
|
+
destinationPort?: number | undefined;
|
|
91
91
|
protocol: Protocol | undefined;
|
|
92
|
-
packetSize?: number;
|
|
93
|
-
tags?: Record<string, string
|
|
92
|
+
packetSize?: number | undefined;
|
|
93
|
+
tags?: Record<string, string> | undefined;
|
|
94
94
|
}
|
|
95
95
|
export interface CreateProbeInput {
|
|
96
96
|
monitorName: string | undefined;
|
|
97
97
|
probe: ProbeInput | undefined;
|
|
98
|
-
clientToken?: string;
|
|
99
|
-
tags?: Record<string, string
|
|
98
|
+
clientToken?: string | undefined;
|
|
99
|
+
tags?: Record<string, string> | undefined;
|
|
100
100
|
}
|
|
101
101
|
export declare const ProbeState: {
|
|
102
102
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -108,19 +108,19 @@ export declare const ProbeState: {
|
|
|
108
108
|
};
|
|
109
109
|
export type ProbeState = (typeof ProbeState)[keyof typeof ProbeState];
|
|
110
110
|
export interface CreateProbeOutput {
|
|
111
|
-
probeId?: string;
|
|
112
|
-
probeArn?: string;
|
|
111
|
+
probeId?: string | undefined;
|
|
112
|
+
probeArn?: string | undefined;
|
|
113
113
|
sourceArn: string | undefined;
|
|
114
114
|
destination: string | undefined;
|
|
115
|
-
destinationPort?: number;
|
|
115
|
+
destinationPort?: number | undefined;
|
|
116
116
|
protocol: Protocol | undefined;
|
|
117
|
-
packetSize?: number;
|
|
118
|
-
addressFamily?: AddressFamily;
|
|
119
|
-
vpcId?: string;
|
|
120
|
-
state?: ProbeState;
|
|
121
|
-
createdAt?: Date;
|
|
122
|
-
modifiedAt?: Date;
|
|
123
|
-
tags?: Record<string, string
|
|
117
|
+
packetSize?: number | undefined;
|
|
118
|
+
addressFamily?: AddressFamily | undefined;
|
|
119
|
+
vpcId?: string | undefined;
|
|
120
|
+
state?: ProbeState | undefined;
|
|
121
|
+
createdAt?: Date | undefined;
|
|
122
|
+
modifiedAt?: Date | undefined;
|
|
123
|
+
tags?: Record<string, string> | undefined;
|
|
124
124
|
}
|
|
125
125
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
126
126
|
readonly name: "ResourceNotFoundException";
|
|
@@ -142,27 +142,27 @@ export interface GetMonitorInput {
|
|
|
142
142
|
monitorName: string | undefined;
|
|
143
143
|
}
|
|
144
144
|
export interface Probe {
|
|
145
|
-
probeId?: string;
|
|
146
|
-
probeArn?: string;
|
|
145
|
+
probeId?: string | undefined;
|
|
146
|
+
probeArn?: string | undefined;
|
|
147
147
|
sourceArn: string | undefined;
|
|
148
148
|
destination: string | undefined;
|
|
149
|
-
destinationPort?: number;
|
|
149
|
+
destinationPort?: number | undefined;
|
|
150
150
|
protocol: Protocol | undefined;
|
|
151
|
-
packetSize?: number;
|
|
152
|
-
addressFamily?: AddressFamily;
|
|
153
|
-
vpcId?: string;
|
|
154
|
-
state?: ProbeState;
|
|
155
|
-
createdAt?: Date;
|
|
156
|
-
modifiedAt?: Date;
|
|
157
|
-
tags?: Record<string, string
|
|
151
|
+
packetSize?: number | undefined;
|
|
152
|
+
addressFamily?: AddressFamily | undefined;
|
|
153
|
+
vpcId?: string | undefined;
|
|
154
|
+
state?: ProbeState | undefined;
|
|
155
|
+
createdAt?: Date | undefined;
|
|
156
|
+
modifiedAt?: Date | undefined;
|
|
157
|
+
tags?: Record<string, string> | undefined;
|
|
158
158
|
}
|
|
159
159
|
export interface GetMonitorOutput {
|
|
160
160
|
monitorArn: string | undefined;
|
|
161
161
|
monitorName: string | undefined;
|
|
162
162
|
state: MonitorState | undefined;
|
|
163
163
|
aggregationPeriod: number | undefined;
|
|
164
|
-
tags?: Record<string, string
|
|
165
|
-
probes?: Probe[];
|
|
164
|
+
tags?: Record<string, string> | undefined;
|
|
165
|
+
probes?: Probe[] | undefined;
|
|
166
166
|
createdAt: Date | undefined;
|
|
167
167
|
modifiedAt: Date | undefined;
|
|
168
168
|
}
|
|
@@ -171,41 +171,41 @@ export interface GetProbeInput {
|
|
|
171
171
|
probeId: string | undefined;
|
|
172
172
|
}
|
|
173
173
|
export interface GetProbeOutput {
|
|
174
|
-
probeId?: string;
|
|
175
|
-
probeArn?: string;
|
|
174
|
+
probeId?: string | undefined;
|
|
175
|
+
probeArn?: string | undefined;
|
|
176
176
|
sourceArn: string | undefined;
|
|
177
177
|
destination: string | undefined;
|
|
178
|
-
destinationPort?: number;
|
|
178
|
+
destinationPort?: number | undefined;
|
|
179
179
|
protocol: Protocol | undefined;
|
|
180
|
-
packetSize?: number;
|
|
181
|
-
addressFamily?: AddressFamily;
|
|
182
|
-
vpcId?: string;
|
|
183
|
-
state?: ProbeState;
|
|
184
|
-
createdAt?: Date;
|
|
185
|
-
modifiedAt?: Date;
|
|
186
|
-
tags?: Record<string, string
|
|
180
|
+
packetSize?: number | undefined;
|
|
181
|
+
addressFamily?: AddressFamily | undefined;
|
|
182
|
+
vpcId?: string | undefined;
|
|
183
|
+
state?: ProbeState | undefined;
|
|
184
|
+
createdAt?: Date | undefined;
|
|
185
|
+
modifiedAt?: Date | undefined;
|
|
186
|
+
tags?: Record<string, string> | undefined;
|
|
187
187
|
}
|
|
188
188
|
export interface ListMonitorsInput {
|
|
189
|
-
nextToken?: string;
|
|
190
|
-
maxResults?: number;
|
|
191
|
-
state?: string;
|
|
189
|
+
nextToken?: string | undefined;
|
|
190
|
+
maxResults?: number | undefined;
|
|
191
|
+
state?: string | undefined;
|
|
192
192
|
}
|
|
193
193
|
export interface MonitorSummary {
|
|
194
194
|
monitorArn: string | undefined;
|
|
195
195
|
monitorName: string | undefined;
|
|
196
196
|
state: MonitorState | undefined;
|
|
197
|
-
aggregationPeriod?: number;
|
|
198
|
-
tags?: Record<string, string
|
|
197
|
+
aggregationPeriod?: number | undefined;
|
|
198
|
+
tags?: Record<string, string> | undefined;
|
|
199
199
|
}
|
|
200
200
|
export interface ListMonitorsOutput {
|
|
201
201
|
monitors: MonitorSummary[] | undefined;
|
|
202
|
-
nextToken?: string;
|
|
202
|
+
nextToken?: string | undefined;
|
|
203
203
|
}
|
|
204
204
|
export interface ListTagsForResourceInput {
|
|
205
205
|
resourceArn: string | undefined;
|
|
206
206
|
}
|
|
207
207
|
export interface ListTagsForResourceOutput {
|
|
208
|
-
tags?: Record<string, string
|
|
208
|
+
tags?: Record<string, string> | undefined;
|
|
209
209
|
}
|
|
210
210
|
export interface UpdateMonitorInput {
|
|
211
211
|
monitorName: string | undefined;
|
|
@@ -215,32 +215,32 @@ export interface UpdateMonitorOutput {
|
|
|
215
215
|
monitorArn: string | undefined;
|
|
216
216
|
monitorName: string | undefined;
|
|
217
217
|
state: MonitorState | undefined;
|
|
218
|
-
aggregationPeriod?: number;
|
|
219
|
-
tags?: Record<string, string
|
|
218
|
+
aggregationPeriod?: number | undefined;
|
|
219
|
+
tags?: Record<string, string> | undefined;
|
|
220
220
|
}
|
|
221
221
|
export interface UpdateProbeInput {
|
|
222
222
|
monitorName: string | undefined;
|
|
223
223
|
probeId: string | undefined;
|
|
224
|
-
state?: ProbeState;
|
|
225
|
-
destination?: string;
|
|
226
|
-
destinationPort?: number;
|
|
227
|
-
protocol?: Protocol;
|
|
228
|
-
packetSize?: number;
|
|
224
|
+
state?: ProbeState | undefined;
|
|
225
|
+
destination?: string | undefined;
|
|
226
|
+
destinationPort?: number | undefined;
|
|
227
|
+
protocol?: Protocol | undefined;
|
|
228
|
+
packetSize?: number | undefined;
|
|
229
229
|
}
|
|
230
230
|
export interface UpdateProbeOutput {
|
|
231
|
-
probeId?: string;
|
|
232
|
-
probeArn?: string;
|
|
231
|
+
probeId?: string | undefined;
|
|
232
|
+
probeArn?: string | undefined;
|
|
233
233
|
sourceArn: string | undefined;
|
|
234
234
|
destination: string | undefined;
|
|
235
|
-
destinationPort?: number;
|
|
235
|
+
destinationPort?: number | undefined;
|
|
236
236
|
protocol: Protocol | undefined;
|
|
237
|
-
packetSize?: number;
|
|
238
|
-
addressFamily?: AddressFamily;
|
|
239
|
-
vpcId?: string;
|
|
240
|
-
state?: ProbeState;
|
|
241
|
-
createdAt?: Date;
|
|
242
|
-
modifiedAt?: Date;
|
|
243
|
-
tags?: Record<string, string
|
|
237
|
+
packetSize?: number | undefined;
|
|
238
|
+
addressFamily?: AddressFamily | undefined;
|
|
239
|
+
vpcId?: string | undefined;
|
|
240
|
+
state?: ProbeState | undefined;
|
|
241
|
+
createdAt?: Date | undefined;
|
|
242
|
+
modifiedAt?: Date | undefined;
|
|
243
|
+
tags?: Record<string, string> | undefined;
|
|
244
244
|
}
|
|
245
245
|
export interface TagResourceInput {
|
|
246
246
|
resourceArn: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-networkmonitor",
|
|
3
3
|
"description": "AWS SDK for JavaScript Networkmonitor Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.691.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-networkmonitor",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|