aws-sdk-networkmanager 1.20.0 → 1.23.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-networkmanager/client.rb +80 -12
- data/lib/aws-sdk-networkmanager/client_api.rb +60 -0
- data/lib/aws-sdk-networkmanager/types.rb +106 -1
- data/lib/aws-sdk-networkmanager.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eca7f84a02553aac23dcb8e38ea71f31a34be966ea2b4b713e28e1436f0c929d
|
4
|
+
data.tar.gz: 5d45ce2d120234158ef99dd414778f01d9029fb55175699223422424e6c932e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7906d7dddff6f28faa859e06da3d578e6a6f6ce6e24ac727bd3aa4970fb32e82896bdd5f0f26b8ef295c212c20b4956bf75d5420648555d177b15d9cbec34cce
|
7
|
+
data.tar.gz: 3fb6d2f4f7fe758617a17c22b211b05ce7ae3d34a4e2af1575a65f18312d6c9dbdc6c3d23065ec0c431ed0b495074b11c36d06eb02221d5aee065100a86a9e4e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.23.0 (2022-05-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds Multi Account API support for a TGW Global Network, to enable and disable AWSServiceAccess with AwsOrganizations for Network Manager service and dependency CloudFormation StackSets service.
|
8
|
+
|
9
|
+
1.22.0 (2022-02-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.21.0 (2022-02-03)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.20.0 (2021-12-21)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.23.0
|
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
32
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
33
35
|
|
@@ -74,7 +76,9 @@ module Aws::NetworkManager
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
79
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
80
84
|
|
@@ -451,10 +455,10 @@ module Aws::NetworkManager
|
|
451
455
|
# device.
|
452
456
|
#
|
453
457
|
# You can only associate customer gateways that are connected to a VPN
|
454
|
-
# attachment on a transit gateway
|
455
|
-
#
|
456
|
-
#
|
457
|
-
#
|
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
|
458
462
|
# gateways that are connected to a transit gateway, use the
|
459
463
|
# [DescribeVpnConnections][1] EC2 API and filter by
|
460
464
|
# `transit-gateway-id`.
|
@@ -687,7 +691,7 @@ module Aws::NetworkManager
|
|
687
691
|
req.send_request(options)
|
688
692
|
end
|
689
693
|
|
690
|
-
# Creates a core network
|
694
|
+
# Creates a core network Connect peer for a specified core network
|
691
695
|
# connect attachment between a core network and an appliance. The peer
|
692
696
|
# address and transit gateway address must be the same IP address family
|
693
697
|
# (IPv4 or IPv6).
|
@@ -1218,8 +1222,8 @@ module Aws::NetworkManager
|
|
1218
1222
|
req.send_request(options)
|
1219
1223
|
end
|
1220
1224
|
|
1221
|
-
# Creates
|
1222
|
-
# network.
|
1225
|
+
# Creates an Amazon Web Services site-to-site VPN attachment on an edge
|
1226
|
+
# location of a core network.
|
1223
1227
|
#
|
1224
1228
|
# @option params [required, String] :core_network_id
|
1225
1229
|
# The ID of a core network where you're creating a site-to-site VPN
|
@@ -1648,8 +1652,8 @@ module Aws::NetworkManager
|
|
1648
1652
|
end
|
1649
1653
|
|
1650
1654
|
# Deletes an existing global network. You must first delete all global
|
1651
|
-
# network objects (devices, links, and sites)
|
1652
|
-
# gateways.
|
1655
|
+
# network objects (devices, links, and sites), deregister all transit
|
1656
|
+
# gateways, and delete any core networks.
|
1653
1657
|
#
|
1654
1658
|
# @option params [required, String] :global_network_id
|
1655
1659
|
# The ID of the global network.
|
@@ -2267,8 +2271,7 @@ module Aws::NetworkManager
|
|
2267
2271
|
req.send_request(options)
|
2268
2272
|
end
|
2269
2273
|
|
2270
|
-
# Returns information about a core network.
|
2271
|
-
# LIVE policy.
|
2274
|
+
# Returns information about the LIVE policy for a core network.
|
2272
2275
|
#
|
2273
2276
|
# @option params [required, String] :core_network_id
|
2274
2277
|
# The ID of a core network.
|
@@ -3760,6 +3763,41 @@ module Aws::NetworkManager
|
|
3760
3763
|
req.send_request(options)
|
3761
3764
|
end
|
3762
3765
|
|
3766
|
+
# @option params [Integer] :max_results
|
3767
|
+
#
|
3768
|
+
# @option params [String] :next_token
|
3769
|
+
#
|
3770
|
+
# @return [Types::ListOrganizationServiceAccessStatusResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3771
|
+
#
|
3772
|
+
# * {Types::ListOrganizationServiceAccessStatusResponse#organization_status #organization_status} => Types::OrganizationStatus
|
3773
|
+
# * {Types::ListOrganizationServiceAccessStatusResponse#next_token #next_token} => String
|
3774
|
+
#
|
3775
|
+
# @example Request syntax with placeholder values
|
3776
|
+
#
|
3777
|
+
# resp = client.list_organization_service_access_status({
|
3778
|
+
# max_results: 1,
|
3779
|
+
# next_token: "NextToken",
|
3780
|
+
# })
|
3781
|
+
#
|
3782
|
+
# @example Response structure
|
3783
|
+
#
|
3784
|
+
# resp.organization_status.organization_id #=> String
|
3785
|
+
# resp.organization_status.organization_aws_service_access_status #=> String
|
3786
|
+
# resp.organization_status.slr_deployment_status #=> String
|
3787
|
+
# resp.organization_status.account_status_list #=> Array
|
3788
|
+
# resp.organization_status.account_status_list[0].account_id #=> String
|
3789
|
+
# resp.organization_status.account_status_list[0].slr_deployment_status #=> String
|
3790
|
+
# resp.next_token #=> String
|
3791
|
+
#
|
3792
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListOrganizationServiceAccessStatus AWS API Documentation
|
3793
|
+
#
|
3794
|
+
# @overload list_organization_service_access_status(params = {})
|
3795
|
+
# @param [Hash] params ({})
|
3796
|
+
def list_organization_service_access_status(params = {}, options = {})
|
3797
|
+
req = build_request(:list_organization_service_access_status, params)
|
3798
|
+
req.send_request(options)
|
3799
|
+
end
|
3800
|
+
|
3763
3801
|
# Lists the tags for a specified resource.
|
3764
3802
|
#
|
3765
3803
|
# @option params [required, String] :resource_arn
|
@@ -4012,6 +4050,36 @@ module Aws::NetworkManager
|
|
4012
4050
|
req.send_request(options)
|
4013
4051
|
end
|
4014
4052
|
|
4053
|
+
# @option params [required, String] :action
|
4054
|
+
#
|
4055
|
+
# @return [Types::StartOrganizationServiceAccessUpdateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4056
|
+
#
|
4057
|
+
# * {Types::StartOrganizationServiceAccessUpdateResponse#organization_status #organization_status} => Types::OrganizationStatus
|
4058
|
+
#
|
4059
|
+
# @example Request syntax with placeholder values
|
4060
|
+
#
|
4061
|
+
# resp = client.start_organization_service_access_update({
|
4062
|
+
# action: "Action", # required
|
4063
|
+
# })
|
4064
|
+
#
|
4065
|
+
# @example Response structure
|
4066
|
+
#
|
4067
|
+
# resp.organization_status.organization_id #=> String
|
4068
|
+
# resp.organization_status.organization_aws_service_access_status #=> String
|
4069
|
+
# resp.organization_status.slr_deployment_status #=> String
|
4070
|
+
# resp.organization_status.account_status_list #=> Array
|
4071
|
+
# resp.organization_status.account_status_list[0].account_id #=> String
|
4072
|
+
# resp.organization_status.account_status_list[0].slr_deployment_status #=> String
|
4073
|
+
#
|
4074
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/StartOrganizationServiceAccessUpdate AWS API Documentation
|
4075
|
+
#
|
4076
|
+
# @overload start_organization_service_access_update(params = {})
|
4077
|
+
# @param [Hash] params ({})
|
4078
|
+
def start_organization_service_access_update(params = {}, options = {})
|
4079
|
+
req = build_request(:start_organization_service_access_update, params)
|
4080
|
+
req.send_request(options)
|
4081
|
+
end
|
4082
|
+
|
4015
4083
|
# Starts analyzing the routing path between the specified source and
|
4016
4084
|
# destination. For more information, see [Route Analyzer][1].
|
4017
4085
|
#
|
@@ -4667,7 +4735,7 @@ module Aws::NetworkManager
|
|
4667
4735
|
params: params,
|
4668
4736
|
config: config)
|
4669
4737
|
context[:gem_name] = 'aws-sdk-networkmanager'
|
4670
|
-
context[:gem_version] = '1.
|
4738
|
+
context[:gem_version] = '1.23.0'
|
4671
4739
|
Seahorse::Client::Request.new(handlers, context)
|
4672
4740
|
end
|
4673
4741
|
|
@@ -18,6 +18,10 @@ module Aws::NetworkManager
|
|
18
18
|
AcceptAttachmentRequest = Shapes::StructureShape.new(name: 'AcceptAttachmentRequest')
|
19
19
|
AcceptAttachmentResponse = Shapes::StructureShape.new(name: 'AcceptAttachmentResponse')
|
20
20
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
21
|
+
AccountId = Shapes::StringShape.new(name: 'AccountId')
|
22
|
+
AccountStatus = Shapes::StructureShape.new(name: 'AccountStatus')
|
23
|
+
AccountStatusList = Shapes::ListShape.new(name: 'AccountStatusList')
|
24
|
+
Action = Shapes::StringShape.new(name: 'Action')
|
21
25
|
AssociateConnectPeerRequest = Shapes::StructureShape.new(name: 'AssociateConnectPeerRequest')
|
22
26
|
AssociateConnectPeerResponse = Shapes::StructureShape.new(name: 'AssociateConnectPeerResponse')
|
23
27
|
AssociateCustomerGatewayRequest = Shapes::StructureShape.new(name: 'AssociateCustomerGatewayRequest')
|
@@ -233,6 +237,8 @@ module Aws::NetworkManager
|
|
233
237
|
ListCoreNetworkPolicyVersionsResponse = Shapes::StructureShape.new(name: 'ListCoreNetworkPolicyVersionsResponse')
|
234
238
|
ListCoreNetworksRequest = Shapes::StructureShape.new(name: 'ListCoreNetworksRequest')
|
235
239
|
ListCoreNetworksResponse = Shapes::StructureShape.new(name: 'ListCoreNetworksResponse')
|
240
|
+
ListOrganizationServiceAccessStatusRequest = Shapes::StructureShape.new(name: 'ListOrganizationServiceAccessStatusRequest')
|
241
|
+
ListOrganizationServiceAccessStatusResponse = Shapes::StructureShape.new(name: 'ListOrganizationServiceAccessStatusResponse')
|
236
242
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
237
243
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
238
244
|
Location = Shapes::StructureShape.new(name: 'Location')
|
@@ -251,6 +257,9 @@ module Aws::NetworkManager
|
|
251
257
|
NetworkTelemetry = Shapes::StructureShape.new(name: 'NetworkTelemetry')
|
252
258
|
NetworkTelemetryList = Shapes::ListShape.new(name: 'NetworkTelemetryList')
|
253
259
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
260
|
+
OrganizationAwsServiceAccessStatus = Shapes::StringShape.new(name: 'OrganizationAwsServiceAccessStatus')
|
261
|
+
OrganizationId = Shapes::StringShape.new(name: 'OrganizationId')
|
262
|
+
OrganizationStatus = Shapes::StructureShape.new(name: 'OrganizationStatus')
|
254
263
|
PathComponent = Shapes::StructureShape.new(name: 'PathComponent')
|
255
264
|
PathComponentList = Shapes::ListShape.new(name: 'PathComponentList')
|
256
265
|
ProposedSegmentChange = Shapes::StructureShape.new(name: 'ProposedSegmentChange')
|
@@ -287,6 +296,7 @@ module Aws::NetworkManager
|
|
287
296
|
RouteTableType = Shapes::StringShape.new(name: 'RouteTableType')
|
288
297
|
RouteType = Shapes::StringShape.new(name: 'RouteType')
|
289
298
|
RouteTypeList = Shapes::ListShape.new(name: 'RouteTypeList')
|
299
|
+
SLRDeploymentStatus = Shapes::StringShape.new(name: 'SLRDeploymentStatus')
|
290
300
|
ServerSideString = Shapes::StringShape.new(name: 'ServerSideString')
|
291
301
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
292
302
|
Site = Shapes::StructureShape.new(name: 'Site')
|
@@ -296,6 +306,8 @@ module Aws::NetworkManager
|
|
296
306
|
SiteList = Shapes::ListShape.new(name: 'SiteList')
|
297
307
|
SiteState = Shapes::StringShape.new(name: 'SiteState')
|
298
308
|
SiteToSiteVpnAttachment = Shapes::StructureShape.new(name: 'SiteToSiteVpnAttachment')
|
309
|
+
StartOrganizationServiceAccessUpdateRequest = Shapes::StructureShape.new(name: 'StartOrganizationServiceAccessUpdateRequest')
|
310
|
+
StartOrganizationServiceAccessUpdateResponse = Shapes::StructureShape.new(name: 'StartOrganizationServiceAccessUpdateResponse')
|
299
311
|
StartRouteAnalysisRequest = Shapes::StructureShape.new(name: 'StartRouteAnalysisRequest')
|
300
312
|
StartRouteAnalysisResponse = Shapes::StructureShape.new(name: 'StartRouteAnalysisResponse')
|
301
313
|
SubnetArn = Shapes::StringShape.new(name: 'SubnetArn')
|
@@ -363,6 +375,12 @@ module Aws::NetworkManager
|
|
363
375
|
AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: ServerSideString, required: true, location_name: "Message"))
|
364
376
|
AccessDeniedException.struct_class = Types::AccessDeniedException
|
365
377
|
|
378
|
+
AccountStatus.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "AccountId"))
|
379
|
+
AccountStatus.add_member(:slr_deployment_status, Shapes::ShapeRef.new(shape: SLRDeploymentStatus, location_name: "SLRDeploymentStatus"))
|
380
|
+
AccountStatus.struct_class = Types::AccountStatus
|
381
|
+
|
382
|
+
AccountStatusList.member = Shapes::ShapeRef.new(shape: AccountStatus)
|
383
|
+
|
366
384
|
AssociateConnectPeerRequest.add_member(:global_network_id, Shapes::ShapeRef.new(shape: GlobalNetworkId, required: true, location: "uri", location_name: "globalNetworkId"))
|
367
385
|
AssociateConnectPeerRequest.add_member(:connect_peer_id, Shapes::ShapeRef.new(shape: ConnectPeerId, required: true, location_name: "ConnectPeerId"))
|
368
386
|
AssociateConnectPeerRequest.add_member(:device_id, Shapes::ShapeRef.new(shape: DeviceId, required: true, location_name: "DeviceId"))
|
@@ -1172,6 +1190,14 @@ module Aws::NetworkManager
|
|
1172
1190
|
ListCoreNetworksResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1173
1191
|
ListCoreNetworksResponse.struct_class = Types::ListCoreNetworksResponse
|
1174
1192
|
|
1193
|
+
ListOrganizationServiceAccessStatusRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
1194
|
+
ListOrganizationServiceAccessStatusRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
1195
|
+
ListOrganizationServiceAccessStatusRequest.struct_class = Types::ListOrganizationServiceAccessStatusRequest
|
1196
|
+
|
1197
|
+
ListOrganizationServiceAccessStatusResponse.add_member(:organization_status, Shapes::ShapeRef.new(shape: OrganizationStatus, location_name: "OrganizationStatus"))
|
1198
|
+
ListOrganizationServiceAccessStatusResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1199
|
+
ListOrganizationServiceAccessStatusResponse.struct_class = Types::ListOrganizationServiceAccessStatusResponse
|
1200
|
+
|
1175
1201
|
ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ResourceArn, required: true, location: "uri", location_name: "resourceArn"))
|
1176
1202
|
ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
|
1177
1203
|
|
@@ -1247,6 +1273,12 @@ module Aws::NetworkManager
|
|
1247
1273
|
|
1248
1274
|
NetworkTelemetryList.member = Shapes::ShapeRef.new(shape: NetworkTelemetry)
|
1249
1275
|
|
1276
|
+
OrganizationStatus.add_member(:organization_id, Shapes::ShapeRef.new(shape: OrganizationId, location_name: "OrganizationId"))
|
1277
|
+
OrganizationStatus.add_member(:organization_aws_service_access_status, Shapes::ShapeRef.new(shape: OrganizationAwsServiceAccessStatus, location_name: "OrganizationAwsServiceAccessStatus"))
|
1278
|
+
OrganizationStatus.add_member(:slr_deployment_status, Shapes::ShapeRef.new(shape: SLRDeploymentStatus, location_name: "SLRDeploymentStatus"))
|
1279
|
+
OrganizationStatus.add_member(:account_status_list, Shapes::ShapeRef.new(shape: AccountStatusList, location_name: "AccountStatusList"))
|
1280
|
+
OrganizationStatus.struct_class = Types::OrganizationStatus
|
1281
|
+
|
1250
1282
|
PathComponent.add_member(:sequence, Shapes::ShapeRef.new(shape: Integer, location_name: "Sequence"))
|
1251
1283
|
PathComponent.add_member(:resource, Shapes::ShapeRef.new(shape: NetworkResourceSummary, location_name: "Resource"))
|
1252
1284
|
PathComponent.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: ConstrainedString, location_name: "DestinationCidrBlock"))
|
@@ -1374,6 +1406,12 @@ module Aws::NetworkManager
|
|
1374
1406
|
SiteToSiteVpnAttachment.add_member(:vpn_connection_arn, Shapes::ShapeRef.new(shape: VpnConnectionArn, location_name: "VpnConnectionArn"))
|
1375
1407
|
SiteToSiteVpnAttachment.struct_class = Types::SiteToSiteVpnAttachment
|
1376
1408
|
|
1409
|
+
StartOrganizationServiceAccessUpdateRequest.add_member(:action, Shapes::ShapeRef.new(shape: Action, required: true, location_name: "Action"))
|
1410
|
+
StartOrganizationServiceAccessUpdateRequest.struct_class = Types::StartOrganizationServiceAccessUpdateRequest
|
1411
|
+
|
1412
|
+
StartOrganizationServiceAccessUpdateResponse.add_member(:organization_status, Shapes::ShapeRef.new(shape: OrganizationStatus, location_name: "OrganizationStatus"))
|
1413
|
+
StartOrganizationServiceAccessUpdateResponse.struct_class = Types::StartOrganizationServiceAccessUpdateResponse
|
1414
|
+
|
1377
1415
|
StartRouteAnalysisRequest.add_member(:global_network_id, Shapes::ShapeRef.new(shape: GlobalNetworkId, required: true, location: "uri", location_name: "globalNetworkId"))
|
1378
1416
|
StartRouteAnalysisRequest.add_member(:source, Shapes::ShapeRef.new(shape: RouteAnalysisEndpointOptionsSpecification, required: true, location_name: "Source"))
|
1379
1417
|
StartRouteAnalysisRequest.add_member(:destination, Shapes::ShapeRef.new(shape: RouteAnalysisEndpointOptionsSpecification, required: true, location_name: "Destination"))
|
@@ -2466,6 +2504,14 @@ module Aws::NetworkManager
|
|
2466
2504
|
)
|
2467
2505
|
end)
|
2468
2506
|
|
2507
|
+
api.add_operation(:list_organization_service_access_status, Seahorse::Model::Operation.new.tap do |o|
|
2508
|
+
o.name = "ListOrganizationServiceAccessStatus"
|
2509
|
+
o.http_method = "GET"
|
2510
|
+
o.http_request_uri = "/organizations/service-access"
|
2511
|
+
o.input = Shapes::ShapeRef.new(shape: ListOrganizationServiceAccessStatusRequest)
|
2512
|
+
o.output = Shapes::ShapeRef.new(shape: ListOrganizationServiceAccessStatusResponse)
|
2513
|
+
end)
|
2514
|
+
|
2469
2515
|
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
2470
2516
|
o.name = "ListTagsForResource"
|
2471
2517
|
o.http_method = "GET"
|
@@ -2550,6 +2596,20 @@ module Aws::NetworkManager
|
|
2550
2596
|
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
2551
2597
|
end)
|
2552
2598
|
|
2599
|
+
api.add_operation(:start_organization_service_access_update, Seahorse::Model::Operation.new.tap do |o|
|
2600
|
+
o.name = "StartOrganizationServiceAccessUpdate"
|
2601
|
+
o.http_method = "POST"
|
2602
|
+
o.http_request_uri = "/organizations/service-access"
|
2603
|
+
o.input = Shapes::ShapeRef.new(shape: StartOrganizationServiceAccessUpdateRequest)
|
2604
|
+
o.output = Shapes::ShapeRef.new(shape: StartOrganizationServiceAccessUpdateResponse)
|
2605
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
2606
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
2607
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
2608
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
2609
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2610
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
2611
|
+
end)
|
2612
|
+
|
2553
2613
|
api.add_operation(:start_route_analysis, Seahorse::Model::Operation.new.tap do |o|
|
2554
2614
|
o.name = "StartRouteAnalysis"
|
2555
2615
|
o.http_method = "POST"
|
@@ -83,6 +83,21 @@ module Aws::NetworkManager
|
|
83
83
|
include Aws::Structure
|
84
84
|
end
|
85
85
|
|
86
|
+
# @!attribute [rw] account_id
|
87
|
+
# @return [String]
|
88
|
+
#
|
89
|
+
# @!attribute [rw] slr_deployment_status
|
90
|
+
# @return [String]
|
91
|
+
#
|
92
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/AccountStatus AWS API Documentation
|
93
|
+
#
|
94
|
+
class AccountStatus < Struct.new(
|
95
|
+
:account_id,
|
96
|
+
:slr_deployment_status)
|
97
|
+
SENSITIVE = []
|
98
|
+
include Aws::Structure
|
99
|
+
end
|
100
|
+
|
86
101
|
# @note When making an API call, you may pass AssociateConnectPeerRequest
|
87
102
|
# data as a hash:
|
88
103
|
#
|
@@ -3984,7 +3999,7 @@ module Aws::NetworkManager
|
|
3984
3999
|
|
3985
4000
|
# Describes a global network. This is a single private network acting as
|
3986
4001
|
# a high-level container for your network objects, including an Amazon
|
3987
|
-
# Web Services-
|
4002
|
+
# Web Services-managed Core Network.
|
3988
4003
|
#
|
3989
4004
|
# @!attribute [rw] global_network_id
|
3990
4005
|
# The ID of the global network.
|
@@ -4344,6 +4359,44 @@ module Aws::NetworkManager
|
|
4344
4359
|
include Aws::Structure
|
4345
4360
|
end
|
4346
4361
|
|
4362
|
+
# @note When making an API call, you may pass ListOrganizationServiceAccessStatusRequest
|
4363
|
+
# data as a hash:
|
4364
|
+
#
|
4365
|
+
# {
|
4366
|
+
# max_results: 1,
|
4367
|
+
# next_token: "NextToken",
|
4368
|
+
# }
|
4369
|
+
#
|
4370
|
+
# @!attribute [rw] max_results
|
4371
|
+
# @return [Integer]
|
4372
|
+
#
|
4373
|
+
# @!attribute [rw] next_token
|
4374
|
+
# @return [String]
|
4375
|
+
#
|
4376
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListOrganizationServiceAccessStatusRequest AWS API Documentation
|
4377
|
+
#
|
4378
|
+
class ListOrganizationServiceAccessStatusRequest < Struct.new(
|
4379
|
+
:max_results,
|
4380
|
+
:next_token)
|
4381
|
+
SENSITIVE = []
|
4382
|
+
include Aws::Structure
|
4383
|
+
end
|
4384
|
+
|
4385
|
+
# @!attribute [rw] organization_status
|
4386
|
+
# @return [Types::OrganizationStatus]
|
4387
|
+
#
|
4388
|
+
# @!attribute [rw] next_token
|
4389
|
+
# @return [String]
|
4390
|
+
#
|
4391
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListOrganizationServiceAccessStatusResponse AWS API Documentation
|
4392
|
+
#
|
4393
|
+
class ListOrganizationServiceAccessStatusResponse < Struct.new(
|
4394
|
+
:organization_status,
|
4395
|
+
:next_token)
|
4396
|
+
SENSITIVE = []
|
4397
|
+
include Aws::Structure
|
4398
|
+
end
|
4399
|
+
|
4347
4400
|
# @note When making an API call, you may pass ListTagsForResourceRequest
|
4348
4401
|
# data as a hash:
|
4349
4402
|
#
|
@@ -4693,6 +4746,29 @@ module Aws::NetworkManager
|
|
4693
4746
|
include Aws::Structure
|
4694
4747
|
end
|
4695
4748
|
|
4749
|
+
# @!attribute [rw] organization_id
|
4750
|
+
# @return [String]
|
4751
|
+
#
|
4752
|
+
# @!attribute [rw] organization_aws_service_access_status
|
4753
|
+
# @return [String]
|
4754
|
+
#
|
4755
|
+
# @!attribute [rw] slr_deployment_status
|
4756
|
+
# @return [String]
|
4757
|
+
#
|
4758
|
+
# @!attribute [rw] account_status_list
|
4759
|
+
# @return [Array<Types::AccountStatus>]
|
4760
|
+
#
|
4761
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/OrganizationStatus AWS API Documentation
|
4762
|
+
#
|
4763
|
+
class OrganizationStatus < Struct.new(
|
4764
|
+
:organization_id,
|
4765
|
+
:organization_aws_service_access_status,
|
4766
|
+
:slr_deployment_status,
|
4767
|
+
:account_status_list)
|
4768
|
+
SENSITIVE = []
|
4769
|
+
include Aws::Structure
|
4770
|
+
end
|
4771
|
+
|
4696
4772
|
# Describes a path component.
|
4697
4773
|
#
|
4698
4774
|
# @!attribute [rw] sequence
|
@@ -5302,6 +5378,35 @@ module Aws::NetworkManager
|
|
5302
5378
|
include Aws::Structure
|
5303
5379
|
end
|
5304
5380
|
|
5381
|
+
# @note When making an API call, you may pass StartOrganizationServiceAccessUpdateRequest
|
5382
|
+
# data as a hash:
|
5383
|
+
#
|
5384
|
+
# {
|
5385
|
+
# action: "Action", # required
|
5386
|
+
# }
|
5387
|
+
#
|
5388
|
+
# @!attribute [rw] action
|
5389
|
+
# @return [String]
|
5390
|
+
#
|
5391
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/StartOrganizationServiceAccessUpdateRequest AWS API Documentation
|
5392
|
+
#
|
5393
|
+
class StartOrganizationServiceAccessUpdateRequest < Struct.new(
|
5394
|
+
:action)
|
5395
|
+
SENSITIVE = []
|
5396
|
+
include Aws::Structure
|
5397
|
+
end
|
5398
|
+
|
5399
|
+
# @!attribute [rw] organization_status
|
5400
|
+
# @return [Types::OrganizationStatus]
|
5401
|
+
#
|
5402
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/StartOrganizationServiceAccessUpdateResponse AWS API Documentation
|
5403
|
+
#
|
5404
|
+
class StartOrganizationServiceAccessUpdateResponse < Struct.new(
|
5405
|
+
:organization_status)
|
5406
|
+
SENSITIVE = []
|
5407
|
+
include Aws::Structure
|
5408
|
+
end
|
5409
|
+
|
5305
5410
|
# @note When making an API call, you may pass StartRouteAnalysisRequest
|
5306
5411
|
# data as a hash:
|
5307
5412
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-networkmanager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.23.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-05-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.127.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|