aws-sdk-networkflowmonitor 1.7.0 → 1.9.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-networkflowmonitor/client.rb +107 -72
- data/lib/aws-sdk-networkflowmonitor/client_api.rb +2 -0
- data/lib/aws-sdk-networkflowmonitor/types.rb +48 -24
- data/lib/aws-sdk-networkflowmonitor.rb +1 -1
- data/sig/client.rbs +3 -3
- data/sig/types.rbs +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6072920c2d819ed1a43930336d50ce6c5eff97c2b35ecb120af3704929deb103
|
4
|
+
data.tar.gz: 8dab9a9486d2f6bc362689a252e2e6ec1d9338cf06e374ac2ff20097a5cfd25c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4ca6b5eaf7a6155f9a0434ddabb23facd2bdd86cd82027dc09f07825425cbfc17403a1efe5446537eaced01e718e8b6385d7aad638617e7278162afd706f91ff
|
7
|
+
data.tar.gz: 84166f179f49b3b61d7b46427de0c6d8faaf328daed89fd3c348c87c21b8274ed51ce491b12d578c6305231fd635d89f36491cb0d60c776ee0d8dc7e92078a18
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.9.0 (2025-07-16)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Introducing 2 new scope status types - DEACTIVATING and DEACTIVATED.
|
8
|
+
|
9
|
+
1.8.0 (2025-06-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add ConflictExceptions to UpdateScope and DeleteScope operations for scopes being mutated.
|
13
|
+
|
4
14
|
1.7.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.9.0
|
@@ -621,7 +621,7 @@ module Aws::NetworkFlowMonitor
|
|
621
621
|
# @example Response structure
|
622
622
|
#
|
623
623
|
# resp.scope_id #=> String
|
624
|
-
# resp.status #=> String, one of "SUCCEEDED", "IN_PROGRESS", "FAILED"
|
624
|
+
# resp.status #=> String, one of "SUCCEEDED", "IN_PROGRESS", "FAILED", "DEACTIVATING", "DEACTIVATED"
|
625
625
|
# resp.scope_arn #=> String
|
626
626
|
# resp.tags #=> Hash
|
627
627
|
# resp.tags["TagKey"] #=> String
|
@@ -741,15 +741,17 @@ module Aws::NetworkFlowMonitor
|
|
741
741
|
# ID that was returned for your account by `CreateScope`.
|
742
742
|
#
|
743
743
|
# Top contributors in Network Flow Monitor are network flows with the
|
744
|
-
# highest values for a specific metric type
|
745
|
-
# workload insights
|
744
|
+
# highest values for a specific metric type. Top contributors can be
|
745
|
+
# across all workload insights, for a given scope, or for a specific
|
746
|
+
# monitor. Use the applicable call for the top contributors that you
|
747
|
+
# want to be returned.
|
746
748
|
#
|
747
749
|
# @option params [required, String] :monitor_name
|
748
750
|
# The name of the monitor.
|
749
751
|
#
|
750
752
|
# @option params [required, String] :query_id
|
751
753
|
# The identifier for the query. A query ID is an internally-generated
|
752
|
-
# identifier for a specific query returned from an API call to
|
754
|
+
# identifier for a specific query returned from an API call to create a
|
753
755
|
# query.
|
754
756
|
#
|
755
757
|
# @option params [String] :next_token
|
@@ -840,8 +842,10 @@ module Aws::NetworkFlowMonitor
|
|
840
842
|
# the scope ID that was returned for your account by `CreateScope`.
|
841
843
|
#
|
842
844
|
# Top contributors in Network Flow Monitor are network flows with the
|
843
|
-
# highest values for a specific metric type
|
844
|
-
# workload insights
|
845
|
+
# highest values for a specific metric type. Top contributors can be
|
846
|
+
# across all workload insights, for a given scope, or for a specific
|
847
|
+
# monitor. Use the applicable call for the top contributors that you
|
848
|
+
# want to be returned.
|
845
849
|
#
|
846
850
|
# @option params [required, String] :scope_id
|
847
851
|
# The identifier for the scope that includes the resources you want to
|
@@ -850,7 +854,7 @@ module Aws::NetworkFlowMonitor
|
|
850
854
|
#
|
851
855
|
# @option params [required, String] :query_id
|
852
856
|
# The identifier for the query. A query ID is an internally-generated
|
853
|
-
# identifier for a specific query returned from an API call to
|
857
|
+
# identifier for a specific query returned from an API call to create a
|
854
858
|
# query.
|
855
859
|
#
|
856
860
|
# @option params [String] :next_token
|
@@ -914,11 +918,13 @@ module Aws::NetworkFlowMonitor
|
|
914
918
|
# Use the scope ID that was returned for your account by `CreateScope`.
|
915
919
|
#
|
916
920
|
# Top contributors in Network Flow Monitor are network flows with the
|
917
|
-
# highest values for a specific metric type
|
918
|
-
# workload insights
|
921
|
+
# highest values for a specific metric type. Top contributors can be
|
922
|
+
# across all workload insights, for a given scope, or for a specific
|
923
|
+
# monitor. Use the applicable call for the top contributors that you
|
924
|
+
# want to be returned.
|
919
925
|
#
|
920
|
-
# The top contributor network flows overall for a specific metric
|
921
|
-
# for example, the number of retransmissions.
|
926
|
+
# The top contributor network flows overall are for a specific metric
|
927
|
+
# type, for example, the number of retransmissions.
|
922
928
|
#
|
923
929
|
# @option params [required, String] :scope_id
|
924
930
|
# The identifier for the scope that includes the resources you want to
|
@@ -927,7 +933,7 @@ module Aws::NetworkFlowMonitor
|
|
927
933
|
#
|
928
934
|
# @option params [required, String] :query_id
|
929
935
|
# The identifier for the query. A query ID is an internally-generated
|
930
|
-
# identifier for a specific query returned from an API call to
|
936
|
+
# identifier for a specific query returned from an API call to create a
|
931
937
|
# query.
|
932
938
|
#
|
933
939
|
# @option params [String] :next_token
|
@@ -978,11 +984,10 @@ module Aws::NetworkFlowMonitor
|
|
978
984
|
# query interface, for a specified query ID and monitor. This call
|
979
985
|
# returns the query status for the top contributors for a monitor.
|
980
986
|
#
|
981
|
-
# When you
|
982
|
-
# to make sure that it has has `SUCCEEDED` before you
|
983
|
-
#
|
984
|
-
#
|
985
|
-
# start the query, `StartQueryMonitorTopContributors`.
|
987
|
+
# When you create a query, use this call to check the status of the
|
988
|
+
# query to make sure that it has has `SUCCEEDED` before you review the
|
989
|
+
# results. Use the same query ID that you used for the corresponding API
|
990
|
+
# call to start (create) the query, `StartQueryMonitorTopContributors`.
|
986
991
|
#
|
987
992
|
# When you run a query, use this call to check the status of the query
|
988
993
|
# to make sure that the query has `SUCCEEDED` before you review the
|
@@ -1031,8 +1036,10 @@ module Aws::NetworkFlowMonitor
|
|
1031
1036
|
# call to start the query, `StartQueryWorkloadInsightsTopContributors`.
|
1032
1037
|
#
|
1033
1038
|
# Top contributors in Network Flow Monitor are network flows with the
|
1034
|
-
# highest values for a specific metric type
|
1035
|
-
# workload insights
|
1039
|
+
# highest values for a specific metric type. Top contributors can be
|
1040
|
+
# across all workload insights, for a given scope, or for a specific
|
1041
|
+
# monitor. Use the applicable call for the top contributors that you
|
1042
|
+
# want to be returned.
|
1036
1043
|
#
|
1037
1044
|
# @option params [required, String] :scope_id
|
1038
1045
|
# The identifier for the scope that includes the resources you want to
|
@@ -1080,11 +1087,13 @@ module Aws::NetworkFlowMonitor
|
|
1080
1087
|
# `StartQueryWorkloadInsightsTopContributorsData`.
|
1081
1088
|
#
|
1082
1089
|
# Top contributors in Network Flow Monitor are network flows with the
|
1083
|
-
# highest values for a specific metric type
|
1084
|
-
# workload insights
|
1090
|
+
# highest values for a specific metric type. Top contributors can be
|
1091
|
+
# across all workload insights, for a given scope, or for a specific
|
1092
|
+
# monitor. Use the applicable call for the top contributors that you
|
1093
|
+
# want to be returned.
|
1085
1094
|
#
|
1086
|
-
# The top contributor network flows overall for a specific metric
|
1087
|
-
# for example, the number of retransmissions.
|
1095
|
+
# The top contributor network flows overall are for a specific metric
|
1096
|
+
# type, for example, the number of retransmissions.
|
1088
1097
|
#
|
1089
1098
|
# @option params [required, String] :scope_id
|
1090
1099
|
# The identifier for the scope that includes the resources you want to
|
@@ -1147,7 +1156,7 @@ module Aws::NetworkFlowMonitor
|
|
1147
1156
|
# @example Response structure
|
1148
1157
|
#
|
1149
1158
|
# resp.scope_id #=> String
|
1150
|
-
# resp.status #=> String, one of "SUCCEEDED", "IN_PROGRESS", "FAILED"
|
1159
|
+
# resp.status #=> String, one of "SUCCEEDED", "IN_PROGRESS", "FAILED", "DEACTIVATING", "DEACTIVATED"
|
1151
1160
|
# resp.scope_arn #=> String
|
1152
1161
|
# resp.targets #=> Array
|
1153
1162
|
# resp.targets[0].target_identifier.target_id.account_id #=> String
|
@@ -1247,7 +1256,7 @@ module Aws::NetworkFlowMonitor
|
|
1247
1256
|
#
|
1248
1257
|
# resp.scopes #=> Array
|
1249
1258
|
# resp.scopes[0].scope_id #=> String
|
1250
|
-
# resp.scopes[0].status #=> String, one of "SUCCEEDED", "IN_PROGRESS", "FAILED"
|
1259
|
+
# resp.scopes[0].status #=> String, one of "SUCCEEDED", "IN_PROGRESS", "FAILED", "DEACTIVATING", "DEACTIVATED"
|
1251
1260
|
# resp.scopes[0].scope_arn #=> String
|
1252
1261
|
# resp.next_token #=> String
|
1253
1262
|
#
|
@@ -1289,14 +1298,23 @@ module Aws::NetworkFlowMonitor
|
|
1289
1298
|
req.send_request(options)
|
1290
1299
|
end
|
1291
1300
|
|
1292
|
-
#
|
1293
|
-
# interface
|
1294
|
-
#
|
1295
|
-
#
|
1301
|
+
# Create a query that you can use with the Network Flow Monitor query
|
1302
|
+
# interface to return the top contributors for a monitor. Specify the
|
1303
|
+
# monitor that you want to create the query for.
|
1304
|
+
#
|
1305
|
+
# The call returns a query ID that you can use with [
|
1306
|
+
# GetQueryResultsMonitorTopContributors][1] to run the query and return
|
1307
|
+
# the top contributors for a specific monitor.
|
1296
1308
|
#
|
1297
1309
|
# Top contributors in Network Flow Monitor are network flows with the
|
1298
|
-
# highest values for a specific metric type
|
1299
|
-
# workload insights
|
1310
|
+
# highest values for a specific metric type. Top contributors can be
|
1311
|
+
# across all workload insights, for a given scope, or for a specific
|
1312
|
+
# monitor. Use the applicable APIs for the top contributors that you
|
1313
|
+
# want to be returned.
|
1314
|
+
#
|
1315
|
+
#
|
1316
|
+
#
|
1317
|
+
# [1]: https://docs.aws.amazon.com/networkflowmonitor/2.0/APIReference/API_GetQueryResultsMonitorTopContributors.html
|
1300
1318
|
#
|
1301
1319
|
# @option params [required, String] :monitor_name
|
1302
1320
|
# The name of the monitor.
|
@@ -1311,9 +1329,10 @@ module Aws::NetworkFlowMonitor
|
|
1311
1329
|
#
|
1312
1330
|
# @option params [required, String] :metric_name
|
1313
1331
|
# The metric that you want to query top contributors for. That is, you
|
1314
|
-
# can specify
|
1315
|
-
# for
|
1316
|
-
# specific category, such as network flows between Availability
|
1332
|
+
# can specify a metric with this call and return the top contributor
|
1333
|
+
# network flows, for that type of metric, for a monitor and (optionally)
|
1334
|
+
# within a specific category, such as network flows between Availability
|
1335
|
+
# Zones.
|
1317
1336
|
#
|
1318
1337
|
# @option params [required, String] :destination_category
|
1319
1338
|
# The category that you want to query top contributors for, for a
|
@@ -1365,14 +1384,23 @@ module Aws::NetworkFlowMonitor
|
|
1365
1384
|
req.send_request(options)
|
1366
1385
|
end
|
1367
1386
|
|
1368
|
-
#
|
1369
|
-
#
|
1370
|
-
#
|
1371
|
-
#
|
1387
|
+
# Create a query with the Network Flow Monitor query interface that you
|
1388
|
+
# can run to return workload insights top contributors. Specify the
|
1389
|
+
# scope that you want to create a query for.
|
1390
|
+
#
|
1391
|
+
# The call returns a query ID that you can use with [
|
1392
|
+
# GetQueryResultsWorkloadInsightsTopContributors][1] to run the query
|
1393
|
+
# and return the top contributors for the workload insights for a scope.
|
1372
1394
|
#
|
1373
1395
|
# Top contributors in Network Flow Monitor are network flows with the
|
1374
|
-
# highest values for a specific metric type
|
1375
|
-
# workload insights
|
1396
|
+
# highest values for a specific metric type. Top contributors can be
|
1397
|
+
# across all workload insights, for a given scope, or for a specific
|
1398
|
+
# monitor. Use the applicable APIs for the top contributors that you
|
1399
|
+
# want to be returned.
|
1400
|
+
#
|
1401
|
+
#
|
1402
|
+
#
|
1403
|
+
# [1]: https://docs.aws.amazon.com/networkflowmonitor/2.0/APIReference/API_GetQueryResultsWorkloadInsightsTopContributors.html
|
1376
1404
|
#
|
1377
1405
|
# @option params [required, String] :scope_id
|
1378
1406
|
# The identifier for the scope that includes the resources you want to
|
@@ -1442,14 +1470,24 @@ module Aws::NetworkFlowMonitor
|
|
1442
1470
|
req.send_request(options)
|
1443
1471
|
end
|
1444
1472
|
|
1445
|
-
#
|
1446
|
-
#
|
1447
|
-
#
|
1448
|
-
#
|
1473
|
+
# Create a query with the Network Flow Monitor query interface that you
|
1474
|
+
# can run to return data for workload insights top contributors. Specify
|
1475
|
+
# the scope that you want to create a query for.
|
1476
|
+
#
|
1477
|
+
# The call returns a query ID that you can use with [
|
1478
|
+
# GetQueryResultsWorkloadInsightsTopContributorsData][1] to run the
|
1479
|
+
# query and return the data for the top contributors for the workload
|
1480
|
+
# insights for a scope.
|
1449
1481
|
#
|
1450
1482
|
# Top contributors in Network Flow Monitor are network flows with the
|
1451
|
-
# highest values for a specific metric type
|
1452
|
-
# workload insights
|
1483
|
+
# highest values for a specific metric type. Top contributors can be
|
1484
|
+
# across all workload insights, for a given scope, or for a specific
|
1485
|
+
# monitor. Use the applicable call for the top contributors that you
|
1486
|
+
# want to be returned.
|
1487
|
+
#
|
1488
|
+
#
|
1489
|
+
#
|
1490
|
+
# [1]: https://docs.aws.amazon.com/networkflowmonitor/2.0/APIReference/API_GetQueryResultsWorkloadInsightsTopContributorsData.html
|
1453
1491
|
#
|
1454
1492
|
# @option params [required, String] :scope_id
|
1455
1493
|
# The identifier for the scope that includes the resources you want to
|
@@ -1514,20 +1552,21 @@ module Aws::NetworkFlowMonitor
|
|
1514
1552
|
req.send_request(options)
|
1515
1553
|
end
|
1516
1554
|
|
1517
|
-
# Stop a query
|
1518
|
-
#
|
1519
|
-
# name. This query returns the top contributors for a specific monitor.
|
1555
|
+
# Stop a top contributors query for a monitor. Specify the query that
|
1556
|
+
# you want to stop by providing a query ID and a monitor name.
|
1520
1557
|
#
|
1521
1558
|
# Top contributors in Network Flow Monitor are network flows with the
|
1522
|
-
# highest values for a specific metric type
|
1523
|
-
# workload insights
|
1559
|
+
# highest values for a specific metric type. Top contributors can be
|
1560
|
+
# across all workload insights, for a given scope, or for a specific
|
1561
|
+
# monitor. Use the applicable call for the top contributors that you
|
1562
|
+
# want to be returned.
|
1524
1563
|
#
|
1525
1564
|
# @option params [required, String] :monitor_name
|
1526
1565
|
# The name of the monitor.
|
1527
1566
|
#
|
1528
1567
|
# @option params [required, String] :query_id
|
1529
1568
|
# The identifier for the query. A query ID is an internally-generated
|
1530
|
-
# identifier for a specific query returned from an API call to
|
1569
|
+
# identifier for a specific query returned from an API call to create a
|
1531
1570
|
# query.
|
1532
1571
|
#
|
1533
1572
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
@@ -1548,13 +1587,14 @@ module Aws::NetworkFlowMonitor
|
|
1548
1587
|
req.send_request(options)
|
1549
1588
|
end
|
1550
1589
|
|
1551
|
-
# Stop a query
|
1552
|
-
#
|
1553
|
-
# name. This query returns the top contributors for a specific monitor.
|
1590
|
+
# Stop a top contributors query for workload insights. Specify the query
|
1591
|
+
# that you want to stop by providing a query ID and a scope ID.
|
1554
1592
|
#
|
1555
1593
|
# Top contributors in Network Flow Monitor are network flows with the
|
1556
|
-
# highest values for a specific metric type
|
1557
|
-
# workload insights
|
1594
|
+
# highest values for a specific metric type. Top contributors can be
|
1595
|
+
# across all workload insights, for a given scope, or for a specific
|
1596
|
+
# monitor. Use the applicable call for the top contributors that you
|
1597
|
+
# want to be returned.
|
1558
1598
|
#
|
1559
1599
|
# @option params [required, String] :scope_id
|
1560
1600
|
# The identifier for the scope that includes the resources you want to
|
@@ -1563,7 +1603,7 @@ module Aws::NetworkFlowMonitor
|
|
1563
1603
|
#
|
1564
1604
|
# @option params [required, String] :query_id
|
1565
1605
|
# The identifier for the query. A query ID is an internally-generated
|
1566
|
-
# identifier for a specific query returned from an API call to
|
1606
|
+
# identifier for a specific query returned from an API call to create a
|
1567
1607
|
# query.
|
1568
1608
|
#
|
1569
1609
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
@@ -1584,19 +1624,14 @@ module Aws::NetworkFlowMonitor
|
|
1584
1624
|
req.send_request(options)
|
1585
1625
|
end
|
1586
1626
|
|
1587
|
-
#
|
1588
|
-
#
|
1589
|
-
# providing a query ID and a scope ID. This query returns data for the
|
1590
|
-
# top contributors for workload insights. Workload insights provide a
|
1591
|
-
# high level view of network flow performance data collected by agents
|
1592
|
-
# for a scope.
|
1627
|
+
# Stop a top contributors data query for workload insights. Specify the
|
1628
|
+
# query that you want to stop by providing a query ID and a scope ID.
|
1593
1629
|
#
|
1594
1630
|
# Top contributors in Network Flow Monitor are network flows with the
|
1595
|
-
# highest values for a specific metric type
|
1596
|
-
# workload insights
|
1597
|
-
#
|
1598
|
-
#
|
1599
|
-
# for example, the number of retransmissions.
|
1631
|
+
# highest values for a specific metric type. Top contributors can be
|
1632
|
+
# across all workload insights, for a given scope, or for a specific
|
1633
|
+
# monitor. Use the applicable call for the top contributors that you
|
1634
|
+
# want to be returned.
|
1600
1635
|
#
|
1601
1636
|
# @option params [required, String] :scope_id
|
1602
1637
|
# The identifier for the scope that includes the resources you want to
|
@@ -1605,7 +1640,7 @@ module Aws::NetworkFlowMonitor
|
|
1605
1640
|
#
|
1606
1641
|
# @option params [required, String] :query_id
|
1607
1642
|
# The identifier for the query. A query ID is an internally-generated
|
1608
|
-
# identifier for a specific query returned from an API call to
|
1643
|
+
# identifier for a specific query returned from an API call to create a
|
1609
1644
|
# query.
|
1610
1645
|
#
|
1611
1646
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
@@ -1830,7 +1865,7 @@ module Aws::NetworkFlowMonitor
|
|
1830
1865
|
# @example Response structure
|
1831
1866
|
#
|
1832
1867
|
# resp.scope_id #=> String
|
1833
|
-
# resp.status #=> String, one of "SUCCEEDED", "IN_PROGRESS", "FAILED"
|
1868
|
+
# resp.status #=> String, one of "SUCCEEDED", "IN_PROGRESS", "FAILED", "DEACTIVATING", "DEACTIVATED"
|
1834
1869
|
# resp.scope_arn #=> String
|
1835
1870
|
# resp.tags #=> Hash
|
1836
1871
|
# resp.tags["TagKey"] #=> String
|
@@ -1862,7 +1897,7 @@ module Aws::NetworkFlowMonitor
|
|
1862
1897
|
tracer: tracer
|
1863
1898
|
)
|
1864
1899
|
context[:gem_name] = 'aws-sdk-networkflowmonitor'
|
1865
|
-
context[:gem_version] = '1.
|
1900
|
+
context[:gem_version] = '1.9.0'
|
1866
1901
|
Seahorse::Client::Request.new(handlers, context)
|
1867
1902
|
end
|
1868
1903
|
|
@@ -580,6 +580,7 @@ module Aws::NetworkFlowMonitor
|
|
580
580
|
o.output = Shapes::ShapeRef.new(shape: DeleteScopeOutput)
|
581
581
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
582
582
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
583
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
583
584
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
584
585
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
585
586
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
@@ -890,6 +891,7 @@ module Aws::NetworkFlowMonitor
|
|
890
891
|
o.output = Shapes::ShapeRef.new(shape: UpdateScopeOutput)
|
891
892
|
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
892
893
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
894
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
893
895
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
894
896
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
895
897
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
@@ -184,8 +184,14 @@ module Aws::NetworkFlowMonitor
|
|
184
184
|
# @return [String]
|
185
185
|
#
|
186
186
|
# @!attribute [rw] status
|
187
|
-
# The status for a
|
188
|
-
#
|
187
|
+
# The status for a scope. The status can be one of the following:
|
188
|
+
# `SUCCEEDED`, `IN_PROGRESS`, `FAILED`, `DEACTIVATING`, or
|
189
|
+
# `DEACTIVATED`.
|
190
|
+
#
|
191
|
+
# A status of `DEACTIVATING` means that you've requested a scope to
|
192
|
+
# be deactivated and Network Flow Monitor is in the process of
|
193
|
+
# deactivating the scope. A status of `DEACTIVATED` means that the
|
194
|
+
# deactivating process is complete.
|
189
195
|
# @return [String]
|
190
196
|
#
|
191
197
|
# @!attribute [rw] scope_arn
|
@@ -317,8 +323,8 @@ module Aws::NetworkFlowMonitor
|
|
317
323
|
#
|
318
324
|
# @!attribute [rw] query_id
|
319
325
|
# The identifier for the query. A query ID is an internally-generated
|
320
|
-
# identifier for a specific query returned from an API call to
|
321
|
-
# query.
|
326
|
+
# identifier for a specific query returned from an API call to create
|
327
|
+
# a query.
|
322
328
|
# @return [String]
|
323
329
|
#
|
324
330
|
# @!attribute [rw] next_token
|
@@ -374,8 +380,8 @@ module Aws::NetworkFlowMonitor
|
|
374
380
|
#
|
375
381
|
# @!attribute [rw] query_id
|
376
382
|
# The identifier for the query. A query ID is an internally-generated
|
377
|
-
# identifier for a specific query returned from an API call to
|
378
|
-
# query.
|
383
|
+
# identifier for a specific query returned from an API call to create
|
384
|
+
# a query.
|
379
385
|
# @return [String]
|
380
386
|
#
|
381
387
|
# @!attribute [rw] next_token
|
@@ -430,8 +436,8 @@ module Aws::NetworkFlowMonitor
|
|
430
436
|
#
|
431
437
|
# @!attribute [rw] query_id
|
432
438
|
# The identifier for the query. A query ID is an internally-generated
|
433
|
-
# identifier for a specific query returned from an API call to
|
434
|
-
# query.
|
439
|
+
# identifier for a specific query returned from an API call to create
|
440
|
+
# a query.
|
435
441
|
# @return [String]
|
436
442
|
#
|
437
443
|
# @!attribute [rw] next_token
|
@@ -629,8 +635,14 @@ module Aws::NetworkFlowMonitor
|
|
629
635
|
# @return [String]
|
630
636
|
#
|
631
637
|
# @!attribute [rw] status
|
632
|
-
# The status
|
633
|
-
# `SUCCEEDED`, `IN_PROGRESS`,
|
638
|
+
# The status for a scope. The status can be one of the following:
|
639
|
+
# `SUCCEEDED`, `IN_PROGRESS`, `FAILED`, `DEACTIVATING`, or
|
640
|
+
# `DEACTIVATED`.
|
641
|
+
#
|
642
|
+
# A status of `DEACTIVATING` means that you've requested a scope to
|
643
|
+
# be deactivated and Network Flow Monitor is in the process of
|
644
|
+
# deactivating the scope. A status of `DEACTIVATED` means that the
|
645
|
+
# deactivating process is complete.
|
634
646
|
# @return [String]
|
635
647
|
#
|
636
648
|
# @!attribute [rw] scope_arn
|
@@ -1089,9 +1101,14 @@ module Aws::NetworkFlowMonitor
|
|
1089
1101
|
# @return [String]
|
1090
1102
|
#
|
1091
1103
|
# @!attribute [rw] status
|
1092
|
-
# The status
|
1093
|
-
#
|
1094
|
-
# `
|
1104
|
+
# The status for a scope. The status can be one of the following:
|
1105
|
+
# `SUCCEEDED`, `IN_PROGRESS`, `FAILED`, `DEACTIVATING`, or
|
1106
|
+
# `DEACTIVATED`.
|
1107
|
+
#
|
1108
|
+
# A status of `DEACTIVATING` means that you've requested a scope to
|
1109
|
+
# be deactivated and Network Flow Monitor is in the process of
|
1110
|
+
# deactivating the scope. A status of `DEACTIVATED` means that the
|
1111
|
+
# deactivating process is complete.
|
1095
1112
|
# @return [String]
|
1096
1113
|
#
|
1097
1114
|
# @!attribute [rw] scope_arn
|
@@ -1137,9 +1154,10 @@ module Aws::NetworkFlowMonitor
|
|
1137
1154
|
#
|
1138
1155
|
# @!attribute [rw] metric_name
|
1139
1156
|
# The metric that you want to query top contributors for. That is, you
|
1140
|
-
# can specify
|
1141
|
-
# for
|
1142
|
-
# specific category, such as network flows
|
1157
|
+
# can specify a metric with this call and return the top contributor
|
1158
|
+
# network flows, for that type of metric, for a monitor and
|
1159
|
+
# (optionally) within a specific category, such as network flows
|
1160
|
+
# between Availability Zones.
|
1143
1161
|
# @return [String]
|
1144
1162
|
#
|
1145
1163
|
# @!attribute [rw] destination_category
|
@@ -1344,8 +1362,8 @@ module Aws::NetworkFlowMonitor
|
|
1344
1362
|
#
|
1345
1363
|
# @!attribute [rw] query_id
|
1346
1364
|
# The identifier for the query. A query ID is an internally-generated
|
1347
|
-
# identifier for a specific query returned from an API call to
|
1348
|
-
# query.
|
1365
|
+
# identifier for a specific query returned from an API call to create
|
1366
|
+
# a query.
|
1349
1367
|
# @return [String]
|
1350
1368
|
#
|
1351
1369
|
# @see http://docs.aws.amazon.com/goto/WebAPI/networkflowmonitor-2023-04-19/StopQueryMonitorTopContributorsInput AWS API Documentation
|
@@ -1370,8 +1388,8 @@ module Aws::NetworkFlowMonitor
|
|
1370
1388
|
#
|
1371
1389
|
# @!attribute [rw] query_id
|
1372
1390
|
# The identifier for the query. A query ID is an internally-generated
|
1373
|
-
# identifier for a specific query returned from an API call to
|
1374
|
-
# query.
|
1391
|
+
# identifier for a specific query returned from an API call to create
|
1392
|
+
# a query.
|
1375
1393
|
# @return [String]
|
1376
1394
|
#
|
1377
1395
|
# @see http://docs.aws.amazon.com/goto/WebAPI/networkflowmonitor-2023-04-19/StopQueryWorkloadInsightsTopContributorsDataInput AWS API Documentation
|
@@ -1396,8 +1414,8 @@ module Aws::NetworkFlowMonitor
|
|
1396
1414
|
#
|
1397
1415
|
# @!attribute [rw] query_id
|
1398
1416
|
# The identifier for the query. A query ID is an internally-generated
|
1399
|
-
# identifier for a specific query returned from an API call to
|
1400
|
-
# query.
|
1417
|
+
# identifier for a specific query returned from an API call to create
|
1418
|
+
# a query.
|
1401
1419
|
# @return [String]
|
1402
1420
|
#
|
1403
1421
|
# @see http://docs.aws.amazon.com/goto/WebAPI/networkflowmonitor-2023-04-19/StopQueryWorkloadInsightsTopContributorsInput AWS API Documentation
|
@@ -1705,8 +1723,14 @@ module Aws::NetworkFlowMonitor
|
|
1705
1723
|
# @return [String]
|
1706
1724
|
#
|
1707
1725
|
# @!attribute [rw] status
|
1708
|
-
# The status for a
|
1709
|
-
#
|
1726
|
+
# The status for a scope. The status can be one of the following:
|
1727
|
+
# `SUCCEEDED`, `IN_PROGRESS`, `FAILED`, `DEACTIVATING`, or
|
1728
|
+
# `DEACTIVATED`.
|
1729
|
+
#
|
1730
|
+
# A status of `DEACTIVATING` means that you've requested a scope to
|
1731
|
+
# be deactivated and Network Flow Monitor is in the process of
|
1732
|
+
# deactivating the scope. A status of `DEACTIVATED` means that the
|
1733
|
+
# deactivating process is complete.
|
1710
1734
|
# @return [String]
|
1711
1735
|
#
|
1712
1736
|
# @!attribute [rw] scope_arn
|
data/sig/client.rbs
CHANGED
@@ -112,7 +112,7 @@ module Aws
|
|
112
112
|
interface _CreateScopeResponseSuccess
|
113
113
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateScopeOutput]
|
114
114
|
def scope_id: () -> ::String
|
115
|
-
def status: () -> ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
|
115
|
+
def status: () -> ("SUCCEEDED" | "IN_PROGRESS" | "FAILED" | "DEACTIVATING" | "DEACTIVATED")
|
116
116
|
def scope_arn: () -> ::String
|
117
117
|
def tags: () -> ::Hash[::String, ::String]
|
118
118
|
end
|
@@ -249,7 +249,7 @@ module Aws
|
|
249
249
|
interface _GetScopeResponseSuccess
|
250
250
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetScopeOutput]
|
251
251
|
def scope_id: () -> ::String
|
252
|
-
def status: () -> ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
|
252
|
+
def status: () -> ("SUCCEEDED" | "IN_PROGRESS" | "FAILED" | "DEACTIVATING" | "DEACTIVATED")
|
253
253
|
def scope_arn: () -> ::String
|
254
254
|
def targets: () -> ::Array[Types::TargetResource]
|
255
255
|
def tags: () -> ::Hash[::String, ::String]
|
@@ -434,7 +434,7 @@ module Aws
|
|
434
434
|
interface _UpdateScopeResponseSuccess
|
435
435
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateScopeOutput]
|
436
436
|
def scope_id: () -> ::String
|
437
|
-
def status: () -> ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
|
437
|
+
def status: () -> ("SUCCEEDED" | "IN_PROGRESS" | "FAILED" | "DEACTIVATING" | "DEACTIVATED")
|
438
438
|
def scope_arn: () -> ::String
|
439
439
|
def tags: () -> ::Hash[::String, ::String]
|
440
440
|
end
|
data/sig/types.rbs
CHANGED
@@ -49,7 +49,7 @@ module Aws::NetworkFlowMonitor
|
|
49
49
|
|
50
50
|
class CreateScopeOutput
|
51
51
|
attr_accessor scope_id: ::String
|
52
|
-
attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
|
52
|
+
attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED" | "DEACTIVATING" | "DEACTIVATED")
|
53
53
|
attr_accessor scope_arn: ::String
|
54
54
|
attr_accessor tags: ::Hash[::String, ::String]
|
55
55
|
SENSITIVE: []
|
@@ -172,7 +172,7 @@ module Aws::NetworkFlowMonitor
|
|
172
172
|
|
173
173
|
class GetScopeOutput
|
174
174
|
attr_accessor scope_id: ::String
|
175
|
-
attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
|
175
|
+
attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED" | "DEACTIVATING" | "DEACTIVATED")
|
176
176
|
attr_accessor scope_arn: ::String
|
177
177
|
attr_accessor targets: ::Array[Types::TargetResource]
|
178
178
|
attr_accessor tags: ::Hash[::String, ::String]
|
@@ -284,7 +284,7 @@ module Aws::NetworkFlowMonitor
|
|
284
284
|
|
285
285
|
class ScopeSummary
|
286
286
|
attr_accessor scope_id: ::String
|
287
|
-
attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
|
287
|
+
attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED" | "DEACTIVATING" | "DEACTIVATED")
|
288
288
|
attr_accessor scope_arn: ::String
|
289
289
|
SENSITIVE: []
|
290
290
|
end
|
@@ -450,7 +450,7 @@ module Aws::NetworkFlowMonitor
|
|
450
450
|
|
451
451
|
class UpdateScopeOutput
|
452
452
|
attr_accessor scope_id: ::String
|
453
|
-
attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
|
453
|
+
attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED" | "DEACTIVATING" | "DEACTIVATED")
|
454
454
|
attr_accessor scope_arn: ::String
|
455
455
|
attr_accessor tags: ::Hash[::String, ::String]
|
456
456
|
SENSITIVE: []
|