aws-sdk-networkmanager 1.22.0 → 1.25.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-networkmanager/client.rb +478 -26
- data/lib/aws-sdk-networkmanager/client_api.rb +290 -0
- data/lib/aws-sdk-networkmanager/types.rb +655 -9
- data/lib/aws-sdk-networkmanager.rb +1 -1
- metadata +2 -2
@@ -375,7 +375,7 @@ module Aws::NetworkManager
|
|
375
375
|
# resp.attachment.core_network_arn #=> String
|
376
376
|
# resp.attachment.attachment_id #=> String
|
377
377
|
# resp.attachment.owner_account_id #=> String
|
378
|
-
# resp.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC"
|
378
|
+
# resp.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "TRANSIT_GATEWAY_ROUTE_TABLE"
|
379
379
|
# resp.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
|
380
380
|
# resp.attachment.edge_location #=> String
|
381
381
|
# resp.attachment.resource_arn #=> String
|
@@ -455,10 +455,10 @@ module Aws::NetworkManager
|
|
455
455
|
# device.
|
456
456
|
#
|
457
457
|
# You can only associate customer gateways that are connected to a VPN
|
458
|
-
# attachment on a transit gateway
|
459
|
-
#
|
460
|
-
#
|
461
|
-
#
|
458
|
+
# attachment on a transit gateway or core network registered in your
|
459
|
+
# global network. When you register a transit gateway or core network,
|
460
|
+
# customer gateways that are connected to the transit gateway are
|
461
|
+
# automatically included in the global network. To list customer
|
462
462
|
# gateways that are connected to a transit gateway, use the
|
463
463
|
# [DescribeVpnConnections][1] EC2 API and filter by
|
464
464
|
# `transit-gateway-id`.
|
@@ -663,7 +663,7 @@ module Aws::NetworkManager
|
|
663
663
|
# resp.connect_attachment.attachment.core_network_arn #=> String
|
664
664
|
# resp.connect_attachment.attachment.attachment_id #=> String
|
665
665
|
# resp.connect_attachment.attachment.owner_account_id #=> String
|
666
|
-
# resp.connect_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC"
|
666
|
+
# resp.connect_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "TRANSIT_GATEWAY_ROUTE_TABLE"
|
667
667
|
# resp.connect_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
|
668
668
|
# resp.connect_attachment.attachment.edge_location #=> String
|
669
669
|
# resp.connect_attachment.attachment.resource_arn #=> String
|
@@ -691,7 +691,7 @@ module Aws::NetworkManager
|
|
691
691
|
req.send_request(options)
|
692
692
|
end
|
693
693
|
|
694
|
-
# Creates a core network
|
694
|
+
# Creates a core network Connect peer for a specified core network
|
695
695
|
# connect attachment between a core network and an appliance. The peer
|
696
696
|
# address and transit gateway address must be the same IP address family
|
697
697
|
# (IPv4 or IPv6).
|
@@ -1222,8 +1222,8 @@ module Aws::NetworkManager
|
|
1222
1222
|
req.send_request(options)
|
1223
1223
|
end
|
1224
1224
|
|
1225
|
-
# Creates
|
1226
|
-
# network.
|
1225
|
+
# Creates an Amazon Web Services site-to-site VPN attachment on an edge
|
1226
|
+
# location of a core network.
|
1227
1227
|
#
|
1228
1228
|
# @option params [required, String] :core_network_id
|
1229
1229
|
# The ID of a core network where you're creating a site-to-site VPN
|
@@ -1265,7 +1265,7 @@ module Aws::NetworkManager
|
|
1265
1265
|
# resp.site_to_site_vpn_attachment.attachment.core_network_arn #=> String
|
1266
1266
|
# resp.site_to_site_vpn_attachment.attachment.attachment_id #=> String
|
1267
1267
|
# resp.site_to_site_vpn_attachment.attachment.owner_account_id #=> String
|
1268
|
-
# resp.site_to_site_vpn_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC"
|
1268
|
+
# resp.site_to_site_vpn_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "TRANSIT_GATEWAY_ROUTE_TABLE"
|
1269
1269
|
# resp.site_to_site_vpn_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
|
1270
1270
|
# resp.site_to_site_vpn_attachment.attachment.edge_location #=> String
|
1271
1271
|
# resp.site_to_site_vpn_attachment.attachment.resource_arn #=> String
|
@@ -1292,6 +1292,136 @@ module Aws::NetworkManager
|
|
1292
1292
|
req.send_request(options)
|
1293
1293
|
end
|
1294
1294
|
|
1295
|
+
# Creates a transit gateway peering connection.
|
1296
|
+
#
|
1297
|
+
# @option params [required, String] :core_network_id
|
1298
|
+
# The ID of a core network.
|
1299
|
+
#
|
1300
|
+
# @option params [required, String] :transit_gateway_arn
|
1301
|
+
# The ARN of the transit gateway for the peering request.
|
1302
|
+
#
|
1303
|
+
# @option params [Array<Types::Tag>] :tags
|
1304
|
+
# The list of key-value tags associated with the request.
|
1305
|
+
#
|
1306
|
+
# @option params [String] :client_token
|
1307
|
+
# The client token associated with the request.
|
1308
|
+
#
|
1309
|
+
# **A suitable default value is auto-generated.** You should normally
|
1310
|
+
# not need to pass this option.**
|
1311
|
+
#
|
1312
|
+
# @return [Types::CreateTransitGatewayPeeringResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1313
|
+
#
|
1314
|
+
# * {Types::CreateTransitGatewayPeeringResponse#transit_gateway_peering #transit_gateway_peering} => Types::TransitGatewayPeering
|
1315
|
+
#
|
1316
|
+
# @example Request syntax with placeholder values
|
1317
|
+
#
|
1318
|
+
# resp = client.create_transit_gateway_peering({
|
1319
|
+
# core_network_id: "CoreNetworkId", # required
|
1320
|
+
# transit_gateway_arn: "TransitGatewayArn", # required
|
1321
|
+
# tags: [
|
1322
|
+
# {
|
1323
|
+
# key: "TagKey",
|
1324
|
+
# value: "TagValue",
|
1325
|
+
# },
|
1326
|
+
# ],
|
1327
|
+
# client_token: "ClientToken",
|
1328
|
+
# })
|
1329
|
+
#
|
1330
|
+
# @example Response structure
|
1331
|
+
#
|
1332
|
+
# resp.transit_gateway_peering.peering.core_network_id #=> String
|
1333
|
+
# resp.transit_gateway_peering.peering.core_network_arn #=> String
|
1334
|
+
# resp.transit_gateway_peering.peering.peering_id #=> String
|
1335
|
+
# resp.transit_gateway_peering.peering.owner_account_id #=> String
|
1336
|
+
# resp.transit_gateway_peering.peering.peering_type #=> String, one of "TRANSIT_GATEWAY"
|
1337
|
+
# resp.transit_gateway_peering.peering.state #=> String, one of "CREATING", "FAILED", "AVAILABLE", "DELETING"
|
1338
|
+
# resp.transit_gateway_peering.peering.edge_location #=> String
|
1339
|
+
# resp.transit_gateway_peering.peering.resource_arn #=> String
|
1340
|
+
# resp.transit_gateway_peering.peering.tags #=> Array
|
1341
|
+
# resp.transit_gateway_peering.peering.tags[0].key #=> String
|
1342
|
+
# resp.transit_gateway_peering.peering.tags[0].value #=> String
|
1343
|
+
# resp.transit_gateway_peering.peering.created_at #=> Time
|
1344
|
+
# resp.transit_gateway_peering.transit_gateway_arn #=> String
|
1345
|
+
# resp.transit_gateway_peering.transit_gateway_peering_attachment_id #=> String
|
1346
|
+
#
|
1347
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateTransitGatewayPeering AWS API Documentation
|
1348
|
+
#
|
1349
|
+
# @overload create_transit_gateway_peering(params = {})
|
1350
|
+
# @param [Hash] params ({})
|
1351
|
+
def create_transit_gateway_peering(params = {}, options = {})
|
1352
|
+
req = build_request(:create_transit_gateway_peering, params)
|
1353
|
+
req.send_request(options)
|
1354
|
+
end
|
1355
|
+
|
1356
|
+
# Creates a transit gateway route table attachment.
|
1357
|
+
#
|
1358
|
+
# @option params [required, String] :peering_id
|
1359
|
+
# The ID of the peer for the
|
1360
|
+
#
|
1361
|
+
# @option params [required, String] :transit_gateway_route_table_arn
|
1362
|
+
# The ARN of the transit gateway route table for the attachment request.
|
1363
|
+
#
|
1364
|
+
# @option params [Array<Types::Tag>] :tags
|
1365
|
+
# The list of key-value tags associated with the request.
|
1366
|
+
#
|
1367
|
+
# @option params [String] :client_token
|
1368
|
+
# The client token associated with the request.
|
1369
|
+
#
|
1370
|
+
# **A suitable default value is auto-generated.** You should normally
|
1371
|
+
# not need to pass this option.**
|
1372
|
+
#
|
1373
|
+
# @return [Types::CreateTransitGatewayRouteTableAttachmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1374
|
+
#
|
1375
|
+
# * {Types::CreateTransitGatewayRouteTableAttachmentResponse#transit_gateway_route_table_attachment #transit_gateway_route_table_attachment} => Types::TransitGatewayRouteTableAttachment
|
1376
|
+
#
|
1377
|
+
# @example Request syntax with placeholder values
|
1378
|
+
#
|
1379
|
+
# resp = client.create_transit_gateway_route_table_attachment({
|
1380
|
+
# peering_id: "PeeringId", # required
|
1381
|
+
# transit_gateway_route_table_arn: "TransitGatewayRouteTableArn", # required
|
1382
|
+
# tags: [
|
1383
|
+
# {
|
1384
|
+
# key: "TagKey",
|
1385
|
+
# value: "TagValue",
|
1386
|
+
# },
|
1387
|
+
# ],
|
1388
|
+
# client_token: "ClientToken",
|
1389
|
+
# })
|
1390
|
+
#
|
1391
|
+
# @example Response structure
|
1392
|
+
#
|
1393
|
+
# resp.transit_gateway_route_table_attachment.attachment.core_network_id #=> String
|
1394
|
+
# resp.transit_gateway_route_table_attachment.attachment.core_network_arn #=> String
|
1395
|
+
# resp.transit_gateway_route_table_attachment.attachment.attachment_id #=> String
|
1396
|
+
# resp.transit_gateway_route_table_attachment.attachment.owner_account_id #=> String
|
1397
|
+
# resp.transit_gateway_route_table_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "TRANSIT_GATEWAY_ROUTE_TABLE"
|
1398
|
+
# resp.transit_gateway_route_table_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
|
1399
|
+
# resp.transit_gateway_route_table_attachment.attachment.edge_location #=> String
|
1400
|
+
# resp.transit_gateway_route_table_attachment.attachment.resource_arn #=> String
|
1401
|
+
# resp.transit_gateway_route_table_attachment.attachment.attachment_policy_rule_number #=> Integer
|
1402
|
+
# resp.transit_gateway_route_table_attachment.attachment.segment_name #=> String
|
1403
|
+
# resp.transit_gateway_route_table_attachment.attachment.tags #=> Array
|
1404
|
+
# resp.transit_gateway_route_table_attachment.attachment.tags[0].key #=> String
|
1405
|
+
# resp.transit_gateway_route_table_attachment.attachment.tags[0].value #=> String
|
1406
|
+
# resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.tags #=> Array
|
1407
|
+
# resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.tags[0].key #=> String
|
1408
|
+
# resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.tags[0].value #=> String
|
1409
|
+
# resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
|
1410
|
+
# resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.segment_name #=> String
|
1411
|
+
# resp.transit_gateway_route_table_attachment.attachment.created_at #=> Time
|
1412
|
+
# resp.transit_gateway_route_table_attachment.attachment.updated_at #=> Time
|
1413
|
+
# resp.transit_gateway_route_table_attachment.peering_id #=> String
|
1414
|
+
# resp.transit_gateway_route_table_attachment.transit_gateway_route_table_arn #=> String
|
1415
|
+
#
|
1416
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateTransitGatewayRouteTableAttachment AWS API Documentation
|
1417
|
+
#
|
1418
|
+
# @overload create_transit_gateway_route_table_attachment(params = {})
|
1419
|
+
# @param [Hash] params ({})
|
1420
|
+
def create_transit_gateway_route_table_attachment(params = {}, options = {})
|
1421
|
+
req = build_request(:create_transit_gateway_route_table_attachment, params)
|
1422
|
+
req.send_request(options)
|
1423
|
+
end
|
1424
|
+
|
1295
1425
|
# Creates a VPC attachment on an edge location of a core network.
|
1296
1426
|
#
|
1297
1427
|
# @option params [required, String] :core_network_id
|
@@ -1343,7 +1473,7 @@ module Aws::NetworkManager
|
|
1343
1473
|
# resp.vpc_attachment.attachment.core_network_arn #=> String
|
1344
1474
|
# resp.vpc_attachment.attachment.attachment_id #=> String
|
1345
1475
|
# resp.vpc_attachment.attachment.owner_account_id #=> String
|
1346
|
-
# resp.vpc_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC"
|
1476
|
+
# resp.vpc_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "TRANSIT_GATEWAY_ROUTE_TABLE"
|
1347
1477
|
# resp.vpc_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
|
1348
1478
|
# resp.vpc_attachment.attachment.edge_location #=> String
|
1349
1479
|
# resp.vpc_attachment.attachment.resource_arn #=> String
|
@@ -1393,7 +1523,7 @@ module Aws::NetworkManager
|
|
1393
1523
|
# resp.attachment.core_network_arn #=> String
|
1394
1524
|
# resp.attachment.attachment_id #=> String
|
1395
1525
|
# resp.attachment.owner_account_id #=> String
|
1396
|
-
# resp.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC"
|
1526
|
+
# resp.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "TRANSIT_GATEWAY_ROUTE_TABLE"
|
1397
1527
|
# resp.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
|
1398
1528
|
# resp.attachment.edge_location #=> String
|
1399
1529
|
# resp.attachment.resource_arn #=> String
|
@@ -1652,8 +1782,8 @@ module Aws::NetworkManager
|
|
1652
1782
|
end
|
1653
1783
|
|
1654
1784
|
# Deletes an existing global network. You must first delete all global
|
1655
|
-
# network objects (devices, links, and sites)
|
1656
|
-
# gateways.
|
1785
|
+
# network objects (devices, links, and sites), deregister all transit
|
1786
|
+
# gateways, and delete any core networks.
|
1657
1787
|
#
|
1658
1788
|
# @option params [required, String] :global_network_id
|
1659
1789
|
# The ID of the global network.
|
@@ -1734,6 +1864,45 @@ module Aws::NetworkManager
|
|
1734
1864
|
req.send_request(options)
|
1735
1865
|
end
|
1736
1866
|
|
1867
|
+
# Deletes an existing peering connection.
|
1868
|
+
#
|
1869
|
+
# @option params [required, String] :peering_id
|
1870
|
+
# The ID of the peering connection to delete.
|
1871
|
+
#
|
1872
|
+
# @return [Types::DeletePeeringResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1873
|
+
#
|
1874
|
+
# * {Types::DeletePeeringResponse#peering #peering} => Types::Peering
|
1875
|
+
#
|
1876
|
+
# @example Request syntax with placeholder values
|
1877
|
+
#
|
1878
|
+
# resp = client.delete_peering({
|
1879
|
+
# peering_id: "PeeringId", # required
|
1880
|
+
# })
|
1881
|
+
#
|
1882
|
+
# @example Response structure
|
1883
|
+
#
|
1884
|
+
# resp.peering.core_network_id #=> String
|
1885
|
+
# resp.peering.core_network_arn #=> String
|
1886
|
+
# resp.peering.peering_id #=> String
|
1887
|
+
# resp.peering.owner_account_id #=> String
|
1888
|
+
# resp.peering.peering_type #=> String, one of "TRANSIT_GATEWAY"
|
1889
|
+
# resp.peering.state #=> String, one of "CREATING", "FAILED", "AVAILABLE", "DELETING"
|
1890
|
+
# resp.peering.edge_location #=> String
|
1891
|
+
# resp.peering.resource_arn #=> String
|
1892
|
+
# resp.peering.tags #=> Array
|
1893
|
+
# resp.peering.tags[0].key #=> String
|
1894
|
+
# resp.peering.tags[0].value #=> String
|
1895
|
+
# resp.peering.created_at #=> Time
|
1896
|
+
#
|
1897
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DeletePeering AWS API Documentation
|
1898
|
+
#
|
1899
|
+
# @overload delete_peering(params = {})
|
1900
|
+
# @param [Hash] params ({})
|
1901
|
+
def delete_peering(params = {}, options = {})
|
1902
|
+
req = build_request(:delete_peering, params)
|
1903
|
+
req.send_request(options)
|
1904
|
+
end
|
1905
|
+
|
1737
1906
|
# Deletes a resource policy for the specified resource. This revokes the
|
1738
1907
|
# access of the principals specified in the resource policy.
|
1739
1908
|
#
|
@@ -2086,7 +2255,7 @@ module Aws::NetworkManager
|
|
2086
2255
|
# resp.connect_attachment.attachment.core_network_arn #=> String
|
2087
2256
|
# resp.connect_attachment.attachment.attachment_id #=> String
|
2088
2257
|
# resp.connect_attachment.attachment.owner_account_id #=> String
|
2089
|
-
# resp.connect_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC"
|
2258
|
+
# resp.connect_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "TRANSIT_GATEWAY_ROUTE_TABLE"
|
2090
2259
|
# resp.connect_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
|
2091
2260
|
# resp.connect_attachment.attachment.edge_location #=> String
|
2092
2261
|
# resp.connect_attachment.attachment.resource_arn #=> String
|
@@ -2271,8 +2440,7 @@ module Aws::NetworkManager
|
|
2271
2440
|
req.send_request(options)
|
2272
2441
|
end
|
2273
2442
|
|
2274
|
-
# Returns information about a core network.
|
2275
|
-
# LIVE policy.
|
2443
|
+
# Returns information about the LIVE policy for a core network.
|
2276
2444
|
#
|
2277
2445
|
# @option params [required, String] :core_network_id
|
2278
2446
|
# The ID of a core network.
|
@@ -2319,6 +2487,59 @@ module Aws::NetworkManager
|
|
2319
2487
|
req.send_request(options)
|
2320
2488
|
end
|
2321
2489
|
|
2490
|
+
# Returns information about a core network change event.
|
2491
|
+
#
|
2492
|
+
# @option params [required, String] :core_network_id
|
2493
|
+
# The ID of a core network.
|
2494
|
+
#
|
2495
|
+
# @option params [required, Integer] :policy_version_id
|
2496
|
+
# The ID of the policy version.
|
2497
|
+
#
|
2498
|
+
# @option params [Integer] :max_results
|
2499
|
+
# The maximum number of results to return.
|
2500
|
+
#
|
2501
|
+
# @option params [String] :next_token
|
2502
|
+
# The token for the next page of results.
|
2503
|
+
#
|
2504
|
+
# @return [Types::GetCoreNetworkChangeEventsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2505
|
+
#
|
2506
|
+
# * {Types::GetCoreNetworkChangeEventsResponse#core_network_change_events #core_network_change_events} => Array<Types::CoreNetworkChangeEvent>
|
2507
|
+
# * {Types::GetCoreNetworkChangeEventsResponse#next_token #next_token} => String
|
2508
|
+
#
|
2509
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2510
|
+
#
|
2511
|
+
# @example Request syntax with placeholder values
|
2512
|
+
#
|
2513
|
+
# resp = client.get_core_network_change_events({
|
2514
|
+
# core_network_id: "CoreNetworkId", # required
|
2515
|
+
# policy_version_id: 1, # required
|
2516
|
+
# max_results: 1,
|
2517
|
+
# next_token: "NextToken",
|
2518
|
+
# })
|
2519
|
+
#
|
2520
|
+
# @example Response structure
|
2521
|
+
#
|
2522
|
+
# resp.core_network_change_events #=> Array
|
2523
|
+
# resp.core_network_change_events[0].type #=> String, one of "CORE_NETWORK_SEGMENT", "CORE_NETWORK_EDGE", "ATTACHMENT_MAPPING", "ATTACHMENT_ROUTE_PROPAGATION", "ATTACHMENT_ROUTE_STATIC", "CORE_NETWORK_CONFIGURATION", "SEGMENTS_CONFIGURATION", "SEGMENT_ACTIONS_CONFIGURATION", "ATTACHMENT_POLICIES_CONFIGURATION"
|
2524
|
+
# resp.core_network_change_events[0].action #=> String, one of "ADD", "MODIFY", "REMOVE"
|
2525
|
+
# resp.core_network_change_events[0].identifier_path #=> String
|
2526
|
+
# resp.core_network_change_events[0].event_time #=> Time
|
2527
|
+
# resp.core_network_change_events[0].status #=> String, one of "NOT_STARTED", "IN_PROGRESS", "COMPLETE", "FAILED"
|
2528
|
+
# resp.core_network_change_events[0].values.edge_location #=> String
|
2529
|
+
# resp.core_network_change_events[0].values.segment_name #=> String
|
2530
|
+
# resp.core_network_change_events[0].values.attachment_id #=> String
|
2531
|
+
# resp.core_network_change_events[0].values.cidr #=> String
|
2532
|
+
# resp.next_token #=> String
|
2533
|
+
#
|
2534
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetCoreNetworkChangeEvents AWS API Documentation
|
2535
|
+
#
|
2536
|
+
# @overload get_core_network_change_events(params = {})
|
2537
|
+
# @param [Hash] params ({})
|
2538
|
+
def get_core_network_change_events(params = {}, options = {})
|
2539
|
+
req = build_request(:get_core_network_change_events, params)
|
2540
|
+
req.send_request(options)
|
2541
|
+
end
|
2542
|
+
|
2322
2543
|
# Returns a change set between the LIVE core network policy and a
|
2323
2544
|
# submitted policy.
|
2324
2545
|
#
|
@@ -2353,7 +2574,7 @@ module Aws::NetworkManager
|
|
2353
2574
|
# @example Response structure
|
2354
2575
|
#
|
2355
2576
|
# resp.core_network_changes #=> Array
|
2356
|
-
# resp.core_network_changes[0].type #=> String, one of "CORE_NETWORK_SEGMENT", "CORE_NETWORK_EDGE", "ATTACHMENT_MAPPING", "ATTACHMENT_ROUTE_PROPAGATION", "ATTACHMENT_ROUTE_STATIC"
|
2577
|
+
# resp.core_network_changes[0].type #=> String, one of "CORE_NETWORK_SEGMENT", "CORE_NETWORK_EDGE", "ATTACHMENT_MAPPING", "ATTACHMENT_ROUTE_PROPAGATION", "ATTACHMENT_ROUTE_STATIC", "CORE_NETWORK_CONFIGURATION", "SEGMENTS_CONFIGURATION", "SEGMENT_ACTIONS_CONFIGURATION", "ATTACHMENT_POLICIES_CONFIGURATION"
|
2357
2578
|
# resp.core_network_changes[0].action #=> String, one of "ADD", "MODIFY", "REMOVE"
|
2358
2579
|
# resp.core_network_changes[0].identifier #=> String
|
2359
2580
|
# resp.core_network_changes[0].previous_values.segment_name #=> String
|
@@ -2376,6 +2597,7 @@ module Aws::NetworkManager
|
|
2376
2597
|
# resp.core_network_changes[0].new_values.inside_cidr_blocks[0] #=> String
|
2377
2598
|
# resp.core_network_changes[0].new_values.shared_segments #=> Array
|
2378
2599
|
# resp.core_network_changes[0].new_values.shared_segments[0] #=> String
|
2600
|
+
# resp.core_network_changes[0].identifier_path #=> String
|
2379
2601
|
# resp.next_token #=> String
|
2380
2602
|
#
|
2381
2603
|
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetCoreNetworkChangeSet AWS API Documentation
|
@@ -2387,7 +2609,7 @@ module Aws::NetworkManager
|
|
2387
2609
|
req.send_request(options)
|
2388
2610
|
end
|
2389
2611
|
|
2390
|
-
#
|
2612
|
+
# Returns details about a core network policy. You can get details about
|
2391
2613
|
# your current live policy or any previous policy version.
|
2392
2614
|
#
|
2393
2615
|
# @option params [required, String] :core_network_id
|
@@ -3315,7 +3537,7 @@ module Aws::NetworkManager
|
|
3315
3537
|
# resp.site_to_site_vpn_attachment.attachment.core_network_arn #=> String
|
3316
3538
|
# resp.site_to_site_vpn_attachment.attachment.attachment_id #=> String
|
3317
3539
|
# resp.site_to_site_vpn_attachment.attachment.owner_account_id #=> String
|
3318
|
-
# resp.site_to_site_vpn_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC"
|
3540
|
+
# resp.site_to_site_vpn_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "TRANSIT_GATEWAY_ROUTE_TABLE"
|
3319
3541
|
# resp.site_to_site_vpn_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
|
3320
3542
|
# resp.site_to_site_vpn_attachment.attachment.edge_location #=> String
|
3321
3543
|
# resp.site_to_site_vpn_attachment.attachment.resource_arn #=> String
|
@@ -3448,6 +3670,47 @@ module Aws::NetworkManager
|
|
3448
3670
|
req.send_request(options)
|
3449
3671
|
end
|
3450
3672
|
|
3673
|
+
# Returns information about a transit gateway peer.
|
3674
|
+
#
|
3675
|
+
# @option params [required, String] :peering_id
|
3676
|
+
# The ID of the peering request.
|
3677
|
+
#
|
3678
|
+
# @return [Types::GetTransitGatewayPeeringResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3679
|
+
#
|
3680
|
+
# * {Types::GetTransitGatewayPeeringResponse#transit_gateway_peering #transit_gateway_peering} => Types::TransitGatewayPeering
|
3681
|
+
#
|
3682
|
+
# @example Request syntax with placeholder values
|
3683
|
+
#
|
3684
|
+
# resp = client.get_transit_gateway_peering({
|
3685
|
+
# peering_id: "PeeringId", # required
|
3686
|
+
# })
|
3687
|
+
#
|
3688
|
+
# @example Response structure
|
3689
|
+
#
|
3690
|
+
# resp.transit_gateway_peering.peering.core_network_id #=> String
|
3691
|
+
# resp.transit_gateway_peering.peering.core_network_arn #=> String
|
3692
|
+
# resp.transit_gateway_peering.peering.peering_id #=> String
|
3693
|
+
# resp.transit_gateway_peering.peering.owner_account_id #=> String
|
3694
|
+
# resp.transit_gateway_peering.peering.peering_type #=> String, one of "TRANSIT_GATEWAY"
|
3695
|
+
# resp.transit_gateway_peering.peering.state #=> String, one of "CREATING", "FAILED", "AVAILABLE", "DELETING"
|
3696
|
+
# resp.transit_gateway_peering.peering.edge_location #=> String
|
3697
|
+
# resp.transit_gateway_peering.peering.resource_arn #=> String
|
3698
|
+
# resp.transit_gateway_peering.peering.tags #=> Array
|
3699
|
+
# resp.transit_gateway_peering.peering.tags[0].key #=> String
|
3700
|
+
# resp.transit_gateway_peering.peering.tags[0].value #=> String
|
3701
|
+
# resp.transit_gateway_peering.peering.created_at #=> Time
|
3702
|
+
# resp.transit_gateway_peering.transit_gateway_arn #=> String
|
3703
|
+
# resp.transit_gateway_peering.transit_gateway_peering_attachment_id #=> String
|
3704
|
+
#
|
3705
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetTransitGatewayPeering AWS API Documentation
|
3706
|
+
#
|
3707
|
+
# @overload get_transit_gateway_peering(params = {})
|
3708
|
+
# @param [Hash] params ({})
|
3709
|
+
def get_transit_gateway_peering(params = {}, options = {})
|
3710
|
+
req = build_request(:get_transit_gateway_peering, params)
|
3711
|
+
req.send_request(options)
|
3712
|
+
end
|
3713
|
+
|
3451
3714
|
# Gets information about the transit gateway registrations in a
|
3452
3715
|
# specified global network.
|
3453
3716
|
#
|
@@ -3498,6 +3761,55 @@ module Aws::NetworkManager
|
|
3498
3761
|
req.send_request(options)
|
3499
3762
|
end
|
3500
3763
|
|
3764
|
+
# Returns information about a transit gateway route table attachment.
|
3765
|
+
#
|
3766
|
+
# @option params [required, String] :attachment_id
|
3767
|
+
# The ID of the transit gateway route table attachment.
|
3768
|
+
#
|
3769
|
+
# @return [Types::GetTransitGatewayRouteTableAttachmentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3770
|
+
#
|
3771
|
+
# * {Types::GetTransitGatewayRouteTableAttachmentResponse#transit_gateway_route_table_attachment #transit_gateway_route_table_attachment} => Types::TransitGatewayRouteTableAttachment
|
3772
|
+
#
|
3773
|
+
# @example Request syntax with placeholder values
|
3774
|
+
#
|
3775
|
+
# resp = client.get_transit_gateway_route_table_attachment({
|
3776
|
+
# attachment_id: "AttachmentId", # required
|
3777
|
+
# })
|
3778
|
+
#
|
3779
|
+
# @example Response structure
|
3780
|
+
#
|
3781
|
+
# resp.transit_gateway_route_table_attachment.attachment.core_network_id #=> String
|
3782
|
+
# resp.transit_gateway_route_table_attachment.attachment.core_network_arn #=> String
|
3783
|
+
# resp.transit_gateway_route_table_attachment.attachment.attachment_id #=> String
|
3784
|
+
# resp.transit_gateway_route_table_attachment.attachment.owner_account_id #=> String
|
3785
|
+
# resp.transit_gateway_route_table_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "TRANSIT_GATEWAY_ROUTE_TABLE"
|
3786
|
+
# resp.transit_gateway_route_table_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
|
3787
|
+
# resp.transit_gateway_route_table_attachment.attachment.edge_location #=> String
|
3788
|
+
# resp.transit_gateway_route_table_attachment.attachment.resource_arn #=> String
|
3789
|
+
# resp.transit_gateway_route_table_attachment.attachment.attachment_policy_rule_number #=> Integer
|
3790
|
+
# resp.transit_gateway_route_table_attachment.attachment.segment_name #=> String
|
3791
|
+
# resp.transit_gateway_route_table_attachment.attachment.tags #=> Array
|
3792
|
+
# resp.transit_gateway_route_table_attachment.attachment.tags[0].key #=> String
|
3793
|
+
# resp.transit_gateway_route_table_attachment.attachment.tags[0].value #=> String
|
3794
|
+
# resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.tags #=> Array
|
3795
|
+
# resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.tags[0].key #=> String
|
3796
|
+
# resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.tags[0].value #=> String
|
3797
|
+
# resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.attachment_policy_rule_number #=> Integer
|
3798
|
+
# resp.transit_gateway_route_table_attachment.attachment.proposed_segment_change.segment_name #=> String
|
3799
|
+
# resp.transit_gateway_route_table_attachment.attachment.created_at #=> Time
|
3800
|
+
# resp.transit_gateway_route_table_attachment.attachment.updated_at #=> Time
|
3801
|
+
# resp.transit_gateway_route_table_attachment.peering_id #=> String
|
3802
|
+
# resp.transit_gateway_route_table_attachment.transit_gateway_route_table_arn #=> String
|
3803
|
+
#
|
3804
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetTransitGatewayRouteTableAttachment AWS API Documentation
|
3805
|
+
#
|
3806
|
+
# @overload get_transit_gateway_route_table_attachment(params = {})
|
3807
|
+
# @param [Hash] params ({})
|
3808
|
+
def get_transit_gateway_route_table_attachment(params = {}, options = {})
|
3809
|
+
req = build_request(:get_transit_gateway_route_table_attachment, params)
|
3810
|
+
req.send_request(options)
|
3811
|
+
end
|
3812
|
+
|
3501
3813
|
# Returns information about a VPC attachment.
|
3502
3814
|
#
|
3503
3815
|
# @option params [required, String] :attachment_id
|
@@ -3519,7 +3831,7 @@ module Aws::NetworkManager
|
|
3519
3831
|
# resp.vpc_attachment.attachment.core_network_arn #=> String
|
3520
3832
|
# resp.vpc_attachment.attachment.attachment_id #=> String
|
3521
3833
|
# resp.vpc_attachment.attachment.owner_account_id #=> String
|
3522
|
-
# resp.vpc_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC"
|
3834
|
+
# resp.vpc_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "TRANSIT_GATEWAY_ROUTE_TABLE"
|
3523
3835
|
# resp.vpc_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
|
3524
3836
|
# resp.vpc_attachment.attachment.edge_location #=> String
|
3525
3837
|
# resp.vpc_attachment.attachment.resource_arn #=> String
|
@@ -3579,7 +3891,7 @@ module Aws::NetworkManager
|
|
3579
3891
|
#
|
3580
3892
|
# resp = client.list_attachments({
|
3581
3893
|
# core_network_id: "CoreNetworkId",
|
3582
|
-
# attachment_type: "CONNECT", # accepts CONNECT, SITE_TO_SITE_VPN, VPC
|
3894
|
+
# attachment_type: "CONNECT", # accepts CONNECT, SITE_TO_SITE_VPN, VPC, TRANSIT_GATEWAY_ROUTE_TABLE
|
3583
3895
|
# edge_location: "ExternalRegionCode",
|
3584
3896
|
# state: "REJECTED", # accepts REJECTED, PENDING_ATTACHMENT_ACCEPTANCE, CREATING, FAILED, AVAILABLE, UPDATING, PENDING_NETWORK_UPDATE, PENDING_TAG_ACCEPTANCE, DELETING
|
3585
3897
|
# max_results: 1,
|
@@ -3593,7 +3905,7 @@ module Aws::NetworkManager
|
|
3593
3905
|
# resp.attachments[0].core_network_arn #=> String
|
3594
3906
|
# resp.attachments[0].attachment_id #=> String
|
3595
3907
|
# resp.attachments[0].owner_account_id #=> String
|
3596
|
-
# resp.attachments[0].attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC"
|
3908
|
+
# resp.attachments[0].attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "TRANSIT_GATEWAY_ROUTE_TABLE"
|
3597
3909
|
# resp.attachments[0].state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
|
3598
3910
|
# resp.attachments[0].edge_location #=> String
|
3599
3911
|
# resp.attachments[0].resource_arn #=> String
|
@@ -3764,6 +4076,110 @@ module Aws::NetworkManager
|
|
3764
4076
|
req.send_request(options)
|
3765
4077
|
end
|
3766
4078
|
|
4079
|
+
# Gets the status of the Service Linked Role (SLR) deployment for the
|
4080
|
+
# accounts in a given Amazon Web Services Organization.
|
4081
|
+
#
|
4082
|
+
# @option params [Integer] :max_results
|
4083
|
+
# The maximum number of results to return.
|
4084
|
+
#
|
4085
|
+
# @option params [String] :next_token
|
4086
|
+
# The token for the next page of results.
|
4087
|
+
#
|
4088
|
+
# @return [Types::ListOrganizationServiceAccessStatusResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4089
|
+
#
|
4090
|
+
# * {Types::ListOrganizationServiceAccessStatusResponse#organization_status #organization_status} => Types::OrganizationStatus
|
4091
|
+
# * {Types::ListOrganizationServiceAccessStatusResponse#next_token #next_token} => String
|
4092
|
+
#
|
4093
|
+
# @example Request syntax with placeholder values
|
4094
|
+
#
|
4095
|
+
# resp = client.list_organization_service_access_status({
|
4096
|
+
# max_results: 1,
|
4097
|
+
# next_token: "NextToken",
|
4098
|
+
# })
|
4099
|
+
#
|
4100
|
+
# @example Response structure
|
4101
|
+
#
|
4102
|
+
# resp.organization_status.organization_id #=> String
|
4103
|
+
# resp.organization_status.organization_aws_service_access_status #=> String
|
4104
|
+
# resp.organization_status.slr_deployment_status #=> String
|
4105
|
+
# resp.organization_status.account_status_list #=> Array
|
4106
|
+
# resp.organization_status.account_status_list[0].account_id #=> String
|
4107
|
+
# resp.organization_status.account_status_list[0].slr_deployment_status #=> String
|
4108
|
+
# resp.next_token #=> String
|
4109
|
+
#
|
4110
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListOrganizationServiceAccessStatus AWS API Documentation
|
4111
|
+
#
|
4112
|
+
# @overload list_organization_service_access_status(params = {})
|
4113
|
+
# @param [Hash] params ({})
|
4114
|
+
def list_organization_service_access_status(params = {}, options = {})
|
4115
|
+
req = build_request(:list_organization_service_access_status, params)
|
4116
|
+
req.send_request(options)
|
4117
|
+
end
|
4118
|
+
|
4119
|
+
# Lists the peerings for a core network.
|
4120
|
+
#
|
4121
|
+
# @option params [String] :core_network_id
|
4122
|
+
# The ID of a core network.
|
4123
|
+
#
|
4124
|
+
# @option params [String] :peering_type
|
4125
|
+
# Returns a list of a peering requests.
|
4126
|
+
#
|
4127
|
+
# @option params [String] :edge_location
|
4128
|
+
# Returns a list edge locations for the
|
4129
|
+
#
|
4130
|
+
# @option params [String] :state
|
4131
|
+
# Returns a list of the peering request states.
|
4132
|
+
#
|
4133
|
+
# @option params [Integer] :max_results
|
4134
|
+
# The maximum number of results to return.
|
4135
|
+
#
|
4136
|
+
# @option params [String] :next_token
|
4137
|
+
# The token for the next page of results.
|
4138
|
+
#
|
4139
|
+
# @return [Types::ListPeeringsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4140
|
+
#
|
4141
|
+
# * {Types::ListPeeringsResponse#peerings #peerings} => Array<Types::Peering>
|
4142
|
+
# * {Types::ListPeeringsResponse#next_token #next_token} => String
|
4143
|
+
#
|
4144
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
4145
|
+
#
|
4146
|
+
# @example Request syntax with placeholder values
|
4147
|
+
#
|
4148
|
+
# resp = client.list_peerings({
|
4149
|
+
# core_network_id: "CoreNetworkId",
|
4150
|
+
# peering_type: "TRANSIT_GATEWAY", # accepts TRANSIT_GATEWAY
|
4151
|
+
# edge_location: "ExternalRegionCode",
|
4152
|
+
# state: "CREATING", # accepts CREATING, FAILED, AVAILABLE, DELETING
|
4153
|
+
# max_results: 1,
|
4154
|
+
# next_token: "NextToken",
|
4155
|
+
# })
|
4156
|
+
#
|
4157
|
+
# @example Response structure
|
4158
|
+
#
|
4159
|
+
# resp.peerings #=> Array
|
4160
|
+
# resp.peerings[0].core_network_id #=> String
|
4161
|
+
# resp.peerings[0].core_network_arn #=> String
|
4162
|
+
# resp.peerings[0].peering_id #=> String
|
4163
|
+
# resp.peerings[0].owner_account_id #=> String
|
4164
|
+
# resp.peerings[0].peering_type #=> String, one of "TRANSIT_GATEWAY"
|
4165
|
+
# resp.peerings[0].state #=> String, one of "CREATING", "FAILED", "AVAILABLE", "DELETING"
|
4166
|
+
# resp.peerings[0].edge_location #=> String
|
4167
|
+
# resp.peerings[0].resource_arn #=> String
|
4168
|
+
# resp.peerings[0].tags #=> Array
|
4169
|
+
# resp.peerings[0].tags[0].key #=> String
|
4170
|
+
# resp.peerings[0].tags[0].value #=> String
|
4171
|
+
# resp.peerings[0].created_at #=> Time
|
4172
|
+
# resp.next_token #=> String
|
4173
|
+
#
|
4174
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListPeerings AWS API Documentation
|
4175
|
+
#
|
4176
|
+
# @overload list_peerings(params = {})
|
4177
|
+
# @param [Hash] params ({})
|
4178
|
+
def list_peerings(params = {}, options = {})
|
4179
|
+
req = build_request(:list_peerings, params)
|
4180
|
+
req.send_request(options)
|
4181
|
+
end
|
4182
|
+
|
3767
4183
|
# Lists the tags for a specified resource.
|
3768
4184
|
#
|
3769
4185
|
# @option params [required, String] :resource_arn
|
@@ -3946,7 +4362,7 @@ module Aws::NetworkManager
|
|
3946
4362
|
# resp.attachment.core_network_arn #=> String
|
3947
4363
|
# resp.attachment.attachment_id #=> String
|
3948
4364
|
# resp.attachment.owner_account_id #=> String
|
3949
|
-
# resp.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC"
|
4365
|
+
# resp.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "TRANSIT_GATEWAY_ROUTE_TABLE"
|
3950
4366
|
# resp.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
|
3951
4367
|
# resp.attachment.edge_location #=> String
|
3952
4368
|
# resp.attachment.resource_arn #=> String
|
@@ -4016,6 +4432,42 @@ module Aws::NetworkManager
|
|
4016
4432
|
req.send_request(options)
|
4017
4433
|
end
|
4018
4434
|
|
4435
|
+
# Enables for the Network Manager service for an Amazon Web Services
|
4436
|
+
# Organization. This can only be called by a management account within
|
4437
|
+
# the organization.
|
4438
|
+
#
|
4439
|
+
# @option params [required, String] :action
|
4440
|
+
# The action to take for the update request. This can be either `ENABLE`
|
4441
|
+
# or `DISABLE`.
|
4442
|
+
#
|
4443
|
+
# @return [Types::StartOrganizationServiceAccessUpdateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4444
|
+
#
|
4445
|
+
# * {Types::StartOrganizationServiceAccessUpdateResponse#organization_status #organization_status} => Types::OrganizationStatus
|
4446
|
+
#
|
4447
|
+
# @example Request syntax with placeholder values
|
4448
|
+
#
|
4449
|
+
# resp = client.start_organization_service_access_update({
|
4450
|
+
# action: "Action", # required
|
4451
|
+
# })
|
4452
|
+
#
|
4453
|
+
# @example Response structure
|
4454
|
+
#
|
4455
|
+
# resp.organization_status.organization_id #=> String
|
4456
|
+
# resp.organization_status.organization_aws_service_access_status #=> String
|
4457
|
+
# resp.organization_status.slr_deployment_status #=> String
|
4458
|
+
# resp.organization_status.account_status_list #=> Array
|
4459
|
+
# resp.organization_status.account_status_list[0].account_id #=> String
|
4460
|
+
# resp.organization_status.account_status_list[0].slr_deployment_status #=> String
|
4461
|
+
#
|
4462
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/StartOrganizationServiceAccessUpdate AWS API Documentation
|
4463
|
+
#
|
4464
|
+
# @overload start_organization_service_access_update(params = {})
|
4465
|
+
# @param [Hash] params ({})
|
4466
|
+
def start_organization_service_access_update(params = {}, options = {})
|
4467
|
+
req = build_request(:start_organization_service_access_update, params)
|
4468
|
+
req.send_request(options)
|
4469
|
+
end
|
4470
|
+
|
4019
4471
|
# Starts analyzing the routing path between the specified source and
|
4020
4472
|
# destination. For more information, see [Route Analyzer][1].
|
4021
4473
|
#
|
@@ -4629,7 +5081,7 @@ module Aws::NetworkManager
|
|
4629
5081
|
# resp.vpc_attachment.attachment.core_network_arn #=> String
|
4630
5082
|
# resp.vpc_attachment.attachment.attachment_id #=> String
|
4631
5083
|
# resp.vpc_attachment.attachment.owner_account_id #=> String
|
4632
|
-
# resp.vpc_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC"
|
5084
|
+
# resp.vpc_attachment.attachment.attachment_type #=> String, one of "CONNECT", "SITE_TO_SITE_VPN", "VPC", "TRANSIT_GATEWAY_ROUTE_TABLE"
|
4633
5085
|
# resp.vpc_attachment.attachment.state #=> String, one of "REJECTED", "PENDING_ATTACHMENT_ACCEPTANCE", "CREATING", "FAILED", "AVAILABLE", "UPDATING", "PENDING_NETWORK_UPDATE", "PENDING_TAG_ACCEPTANCE", "DELETING"
|
4634
5086
|
# resp.vpc_attachment.attachment.edge_location #=> String
|
4635
5087
|
# resp.vpc_attachment.attachment.resource_arn #=> String
|
@@ -4671,7 +5123,7 @@ module Aws::NetworkManager
|
|
4671
5123
|
params: params,
|
4672
5124
|
config: config)
|
4673
5125
|
context[:gem_name] = 'aws-sdk-networkmanager'
|
4674
|
-
context[:gem_version] = '1.
|
5126
|
+
context[:gem_version] = '1.25.0'
|
4675
5127
|
Seahorse::Client::Request.new(handlers, context)
|
4676
5128
|
end
|
4677
5129
|
|