aws-sdk-networkmanager 1.22.0 → 1.25.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.
@@ -83,6 +83,26 @@ module Aws::NetworkManager
83
83
  include Aws::Structure
84
84
  end
85
85
 
86
+ # Describes the current status of an account within an Amazon Web
87
+ # Services Organization, including service-linked roles (SLRs).
88
+ #
89
+ # @!attribute [rw] account_id
90
+ # The ID of an account within the Amazon Web Services Organization.
91
+ # @return [String]
92
+ #
93
+ # @!attribute [rw] slr_deployment_status
94
+ # The status of SLR deployment for the account.
95
+ # @return [String]
96
+ #
97
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/AccountStatus AWS API Documentation
98
+ #
99
+ class AccountStatus < Struct.new(
100
+ :account_id,
101
+ :slr_deployment_status)
102
+ SENSITIVE = []
103
+ include Aws::Structure
104
+ end
105
+
86
106
  # @note When making an API call, you may pass AssociateConnectPeerRequest
87
107
  # data as a hash:
88
108
  #
@@ -276,7 +296,7 @@ module Aws::NetworkManager
276
296
  # Describes a core network attachment.
277
297
  #
278
298
  # @!attribute [rw] core_network_id
279
- # A core network ID.
299
+ # The ID of a core network.
280
300
  # @return [String]
281
301
  #
282
302
  # @!attribute [rw] core_network_arn
@@ -500,7 +520,7 @@ module Aws::NetworkManager
500
520
  # @return [Types::ConnectPeerConfiguration]
501
521
  #
502
522
  # @!attribute [rw] tags
503
- # The tags associated with the Connect peer.
523
+ # The list of key-value tags associated with the Connect peer.
504
524
  # @return [Array<Types::Tag>]
505
525
  #
506
526
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ConnectPeer AWS API Documentation
@@ -642,7 +662,7 @@ module Aws::NetworkManager
642
662
  # @return [Time]
643
663
  #
644
664
  # @!attribute [rw] tags
645
- # The tags associated with a Connect peer summary.
665
+ # The list of key-value tags associated with the Connect peer summary.
646
666
  # @return [Array<Types::Tag>]
647
667
  #
648
668
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ConnectPeerSummary AWS API Documentation
@@ -782,7 +802,7 @@ module Aws::NetworkManager
782
802
  # @return [Array<Types::CoreNetworkEdge>]
783
803
  #
784
804
  # @!attribute [rw] tags
785
- # The tags associated with a core network.
805
+ # The list of key-value tags associated with a core network.
786
806
  # @return [Array<Types::Tag>]
787
807
  #
788
808
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetwork AWS API Documentation
@@ -823,6 +843,12 @@ module Aws::NetworkManager
823
843
  # The new value for a core network
824
844
  # @return [Types::CoreNetworkChangeValues]
825
845
  #
846
+ # @!attribute [rw] identifier_path
847
+ # Uniquely identifies the path for a change within the changeset. For
848
+ # example, the `IdentifierPath` for a core network segment change
849
+ # might be `"CORE_NETWORK_SEGMENT/us-east-1/devsegment"`.
850
+ # @return [String]
851
+ #
826
852
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkChange AWS API Documentation
827
853
  #
828
854
  class CoreNetworkChange < Struct.new(
@@ -830,7 +856,80 @@ module Aws::NetworkManager
830
856
  :action,
831
857
  :identifier,
832
858
  :previous_values,
833
- :new_values)
859
+ :new_values,
860
+ :identifier_path)
861
+ SENSITIVE = []
862
+ include Aws::Structure
863
+ end
864
+
865
+ # Describes a core network change event. This can be a change to a
866
+ # segment, attachment, route, etc.
867
+ #
868
+ # @!attribute [rw] type
869
+ # Describes the type of change event.
870
+ # @return [String]
871
+ #
872
+ # @!attribute [rw] action
873
+ # The action taken for the change event.
874
+ # @return [String]
875
+ #
876
+ # @!attribute [rw] identifier_path
877
+ # Uniquely identifies the path for a change within the changeset. For
878
+ # example, the `IdentifierPath` for a core network segment change
879
+ # might be `"CORE_NETWORK_SEGMENT/us-east-1/devsegment"`.
880
+ # @return [String]
881
+ #
882
+ # @!attribute [rw] event_time
883
+ # The timestamp for an event change in status.
884
+ # @return [Time]
885
+ #
886
+ # @!attribute [rw] status
887
+ # The status of the core network change event.
888
+ # @return [String]
889
+ #
890
+ # @!attribute [rw] values
891
+ # Details of the change event.
892
+ # @return [Types::CoreNetworkChangeEventValues]
893
+ #
894
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkChangeEvent AWS API Documentation
895
+ #
896
+ class CoreNetworkChangeEvent < Struct.new(
897
+ :type,
898
+ :action,
899
+ :identifier_path,
900
+ :event_time,
901
+ :status,
902
+ :values)
903
+ SENSITIVE = []
904
+ include Aws::Structure
905
+ end
906
+
907
+ # Describes a core network change event.
908
+ #
909
+ # @!attribute [rw] edge_location
910
+ # The edge location for the core network change event.
911
+ # @return [String]
912
+ #
913
+ # @!attribute [rw] segment_name
914
+ # The segment name if the change event is associated with a segment.
915
+ # @return [String]
916
+ #
917
+ # @!attribute [rw] attachment_id
918
+ # The ID of the attachment if the change event is associated with an
919
+ # attachment.
920
+ # @return [String]
921
+ #
922
+ # @!attribute [rw] cidr
923
+ # For a `STATIC_ROUTE` event, this is the IP address.
924
+ # @return [String]
925
+ #
926
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkChangeEventValues AWS API Documentation
927
+ #
928
+ class CoreNetworkChangeEventValues < Struct.new(
929
+ :edge_location,
930
+ :segment_name,
931
+ :attachment_id,
932
+ :cidr)
834
933
  SENSITIVE = []
835
934
  include Aws::Structure
836
935
  end
@@ -1782,6 +1881,123 @@ module Aws::NetworkManager
1782
1881
  include Aws::Structure
1783
1882
  end
1784
1883
 
1884
+ # @note When making an API call, you may pass CreateTransitGatewayPeeringRequest
1885
+ # data as a hash:
1886
+ #
1887
+ # {
1888
+ # core_network_id: "CoreNetworkId", # required
1889
+ # transit_gateway_arn: "TransitGatewayArn", # required
1890
+ # tags: [
1891
+ # {
1892
+ # key: "TagKey",
1893
+ # value: "TagValue",
1894
+ # },
1895
+ # ],
1896
+ # client_token: "ClientToken",
1897
+ # }
1898
+ #
1899
+ # @!attribute [rw] core_network_id
1900
+ # The ID of a core network.
1901
+ # @return [String]
1902
+ #
1903
+ # @!attribute [rw] transit_gateway_arn
1904
+ # The ARN of the transit gateway for the peering request.
1905
+ # @return [String]
1906
+ #
1907
+ # @!attribute [rw] tags
1908
+ # The list of key-value tags associated with the request.
1909
+ # @return [Array<Types::Tag>]
1910
+ #
1911
+ # @!attribute [rw] client_token
1912
+ # The client token associated with the request.
1913
+ #
1914
+ # **A suitable default value is auto-generated.** You should normally
1915
+ # not need to pass this option.
1916
+ # @return [String]
1917
+ #
1918
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateTransitGatewayPeeringRequest AWS API Documentation
1919
+ #
1920
+ class CreateTransitGatewayPeeringRequest < Struct.new(
1921
+ :core_network_id,
1922
+ :transit_gateway_arn,
1923
+ :tags,
1924
+ :client_token)
1925
+ SENSITIVE = []
1926
+ include Aws::Structure
1927
+ end
1928
+
1929
+ # @!attribute [rw] transit_gateway_peering
1930
+ # Returns information about the transit gateway peering connection
1931
+ # request.
1932
+ # @return [Types::TransitGatewayPeering]
1933
+ #
1934
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateTransitGatewayPeeringResponse AWS API Documentation
1935
+ #
1936
+ class CreateTransitGatewayPeeringResponse < Struct.new(
1937
+ :transit_gateway_peering)
1938
+ SENSITIVE = []
1939
+ include Aws::Structure
1940
+ end
1941
+
1942
+ # @note When making an API call, you may pass CreateTransitGatewayRouteTableAttachmentRequest
1943
+ # data as a hash:
1944
+ #
1945
+ # {
1946
+ # peering_id: "PeeringId", # required
1947
+ # transit_gateway_route_table_arn: "TransitGatewayRouteTableArn", # required
1948
+ # tags: [
1949
+ # {
1950
+ # key: "TagKey",
1951
+ # value: "TagValue",
1952
+ # },
1953
+ # ],
1954
+ # client_token: "ClientToken",
1955
+ # }
1956
+ #
1957
+ # @!attribute [rw] peering_id
1958
+ # The ID of the peer for the
1959
+ # @return [String]
1960
+ #
1961
+ # @!attribute [rw] transit_gateway_route_table_arn
1962
+ # The ARN of the transit gateway route table for the attachment
1963
+ # request.
1964
+ # @return [String]
1965
+ #
1966
+ # @!attribute [rw] tags
1967
+ # The list of key-value tags associated with the request.
1968
+ # @return [Array<Types::Tag>]
1969
+ #
1970
+ # @!attribute [rw] client_token
1971
+ # The client token associated with the request.
1972
+ #
1973
+ # **A suitable default value is auto-generated.** You should normally
1974
+ # not need to pass this option.
1975
+ # @return [String]
1976
+ #
1977
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateTransitGatewayRouteTableAttachmentRequest AWS API Documentation
1978
+ #
1979
+ class CreateTransitGatewayRouteTableAttachmentRequest < Struct.new(
1980
+ :peering_id,
1981
+ :transit_gateway_route_table_arn,
1982
+ :tags,
1983
+ :client_token)
1984
+ SENSITIVE = []
1985
+ include Aws::Structure
1986
+ end
1987
+
1988
+ # @!attribute [rw] transit_gateway_route_table_attachment
1989
+ # The route table associated with the create transit gateway route
1990
+ # table attachment request.
1991
+ # @return [Types::TransitGatewayRouteTableAttachment]
1992
+ #
1993
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CreateTransitGatewayRouteTableAttachmentResponse AWS API Documentation
1994
+ #
1995
+ class CreateTransitGatewayRouteTableAttachmentResponse < Struct.new(
1996
+ :transit_gateway_route_table_attachment)
1997
+ SENSITIVE = []
1998
+ include Aws::Structure
1999
+ end
2000
+
1785
2001
  # @note When making an API call, you may pass CreateVpcAttachmentRequest
1786
2002
  # data as a hash:
1787
2003
  #
@@ -2160,6 +2376,37 @@ module Aws::NetworkManager
2160
2376
  include Aws::Structure
2161
2377
  end
2162
2378
 
2379
+ # @note When making an API call, you may pass DeletePeeringRequest
2380
+ # data as a hash:
2381
+ #
2382
+ # {
2383
+ # peering_id: "PeeringId", # required
2384
+ # }
2385
+ #
2386
+ # @!attribute [rw] peering_id
2387
+ # The ID of the peering connection to delete.
2388
+ # @return [String]
2389
+ #
2390
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DeletePeeringRequest AWS API Documentation
2391
+ #
2392
+ class DeletePeeringRequest < Struct.new(
2393
+ :peering_id)
2394
+ SENSITIVE = []
2395
+ include Aws::Structure
2396
+ end
2397
+
2398
+ # @!attribute [rw] peering
2399
+ # Information about a deleted peering connection.
2400
+ # @return [Types::Peering]
2401
+ #
2402
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/DeletePeeringResponse AWS API Documentation
2403
+ #
2404
+ class DeletePeeringResponse < Struct.new(
2405
+ :peering)
2406
+ SENSITIVE = []
2407
+ include Aws::Structure
2408
+ end
2409
+
2163
2410
  # @note When making an API call, you may pass DeleteResourcePolicyRequest
2164
2411
  # data as a hash:
2165
2412
  #
@@ -2743,6 +2990,60 @@ module Aws::NetworkManager
2743
2990
  include Aws::Structure
2744
2991
  end
2745
2992
 
2993
+ # @note When making an API call, you may pass GetCoreNetworkChangeEventsRequest
2994
+ # data as a hash:
2995
+ #
2996
+ # {
2997
+ # core_network_id: "CoreNetworkId", # required
2998
+ # policy_version_id: 1, # required
2999
+ # max_results: 1,
3000
+ # next_token: "NextToken",
3001
+ # }
3002
+ #
3003
+ # @!attribute [rw] core_network_id
3004
+ # The ID of a core network.
3005
+ # @return [String]
3006
+ #
3007
+ # @!attribute [rw] policy_version_id
3008
+ # The ID of the policy version.
3009
+ # @return [Integer]
3010
+ #
3011
+ # @!attribute [rw] max_results
3012
+ # The maximum number of results to return.
3013
+ # @return [Integer]
3014
+ #
3015
+ # @!attribute [rw] next_token
3016
+ # The token for the next page of results.
3017
+ # @return [String]
3018
+ #
3019
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetCoreNetworkChangeEventsRequest AWS API Documentation
3020
+ #
3021
+ class GetCoreNetworkChangeEventsRequest < Struct.new(
3022
+ :core_network_id,
3023
+ :policy_version_id,
3024
+ :max_results,
3025
+ :next_token)
3026
+ SENSITIVE = []
3027
+ include Aws::Structure
3028
+ end
3029
+
3030
+ # @!attribute [rw] core_network_change_events
3031
+ # The response to `GetCoreNetworkChangeEventsRequest`.
3032
+ # @return [Array<Types::CoreNetworkChangeEvent>]
3033
+ #
3034
+ # @!attribute [rw] next_token
3035
+ # The token for the next page of results.
3036
+ # @return [String]
3037
+ #
3038
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetCoreNetworkChangeEventsResponse AWS API Documentation
3039
+ #
3040
+ class GetCoreNetworkChangeEventsResponse < Struct.new(
3041
+ :core_network_change_events,
3042
+ :next_token)
3043
+ SENSITIVE = []
3044
+ include Aws::Structure
3045
+ end
3046
+
2746
3047
  # @note When making an API call, you may pass GetCoreNetworkChangeSetRequest
2747
3048
  # data as a hash:
2748
3049
  #
@@ -3896,6 +4197,37 @@ module Aws::NetworkManager
3896
4197
  include Aws::Structure
3897
4198
  end
3898
4199
 
4200
+ # @note When making an API call, you may pass GetTransitGatewayPeeringRequest
4201
+ # data as a hash:
4202
+ #
4203
+ # {
4204
+ # peering_id: "PeeringId", # required
4205
+ # }
4206
+ #
4207
+ # @!attribute [rw] peering_id
4208
+ # The ID of the peering request.
4209
+ # @return [String]
4210
+ #
4211
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetTransitGatewayPeeringRequest AWS API Documentation
4212
+ #
4213
+ class GetTransitGatewayPeeringRequest < Struct.new(
4214
+ :peering_id)
4215
+ SENSITIVE = []
4216
+ include Aws::Structure
4217
+ end
4218
+
4219
+ # @!attribute [rw] transit_gateway_peering
4220
+ # Returns information about a transit gateway peering.
4221
+ # @return [Types::TransitGatewayPeering]
4222
+ #
4223
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetTransitGatewayPeeringResponse AWS API Documentation
4224
+ #
4225
+ class GetTransitGatewayPeeringResponse < Struct.new(
4226
+ :transit_gateway_peering)
4227
+ SENSITIVE = []
4228
+ include Aws::Structure
4229
+ end
4230
+
3899
4231
  # @note When making an API call, you may pass GetTransitGatewayRegistrationsRequest
3900
4232
  # data as a hash:
3901
4233
  #
@@ -3951,6 +4283,38 @@ module Aws::NetworkManager
3951
4283
  include Aws::Structure
3952
4284
  end
3953
4285
 
4286
+ # @note When making an API call, you may pass GetTransitGatewayRouteTableAttachmentRequest
4287
+ # data as a hash:
4288
+ #
4289
+ # {
4290
+ # attachment_id: "AttachmentId", # required
4291
+ # }
4292
+ #
4293
+ # @!attribute [rw] attachment_id
4294
+ # The ID of the transit gateway route table attachment.
4295
+ # @return [String]
4296
+ #
4297
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetTransitGatewayRouteTableAttachmentRequest AWS API Documentation
4298
+ #
4299
+ class GetTransitGatewayRouteTableAttachmentRequest < Struct.new(
4300
+ :attachment_id)
4301
+ SENSITIVE = []
4302
+ include Aws::Structure
4303
+ end
4304
+
4305
+ # @!attribute [rw] transit_gateway_route_table_attachment
4306
+ # Returns information about the transit gateway route table
4307
+ # attachment.
4308
+ # @return [Types::TransitGatewayRouteTableAttachment]
4309
+ #
4310
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/GetTransitGatewayRouteTableAttachmentResponse AWS API Documentation
4311
+ #
4312
+ class GetTransitGatewayRouteTableAttachmentResponse < Struct.new(
4313
+ :transit_gateway_route_table_attachment)
4314
+ SENSITIVE = []
4315
+ include Aws::Structure
4316
+ end
4317
+
3954
4318
  # @note When making an API call, you may pass GetVpcAttachmentRequest
3955
4319
  # data as a hash:
3956
4320
  #
@@ -3984,7 +4348,7 @@ module Aws::NetworkManager
3984
4348
 
3985
4349
  # Describes a global network. This is a single private network acting as
3986
4350
  # a high-level container for your network objects, including an Amazon
3987
- # Web Services-manged Core Network.
4351
+ # Web Services-managed Core Network.
3988
4352
  #
3989
4353
  # @!attribute [rw] global_network_id
3990
4354
  # The ID of the global network.
@@ -4139,7 +4503,7 @@ module Aws::NetworkManager
4139
4503
  #
4140
4504
  # {
4141
4505
  # core_network_id: "CoreNetworkId",
4142
- # attachment_type: "CONNECT", # accepts CONNECT, SITE_TO_SITE_VPN, VPC
4506
+ # attachment_type: "CONNECT", # accepts CONNECT, SITE_TO_SITE_VPN, VPC, TRANSIT_GATEWAY_ROUTE_TABLE
4143
4507
  # edge_location: "ExternalRegionCode",
4144
4508
  # state: "REJECTED", # accepts REJECTED, PENDING_ATTACHMENT_ACCEPTANCE, CREATING, FAILED, AVAILABLE, UPDATING, PENDING_NETWORK_UPDATE, PENDING_TAG_ACCEPTANCE, DELETING
4145
4509
  # max_results: 1,
@@ -4344,6 +4708,114 @@ module Aws::NetworkManager
4344
4708
  include Aws::Structure
4345
4709
  end
4346
4710
 
4711
+ # @note When making an API call, you may pass ListOrganizationServiceAccessStatusRequest
4712
+ # data as a hash:
4713
+ #
4714
+ # {
4715
+ # max_results: 1,
4716
+ # next_token: "NextToken",
4717
+ # }
4718
+ #
4719
+ # @!attribute [rw] max_results
4720
+ # The maximum number of results to return.
4721
+ # @return [Integer]
4722
+ #
4723
+ # @!attribute [rw] next_token
4724
+ # The token for the next page of results.
4725
+ # @return [String]
4726
+ #
4727
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListOrganizationServiceAccessStatusRequest AWS API Documentation
4728
+ #
4729
+ class ListOrganizationServiceAccessStatusRequest < Struct.new(
4730
+ :max_results,
4731
+ :next_token)
4732
+ SENSITIVE = []
4733
+ include Aws::Structure
4734
+ end
4735
+
4736
+ # @!attribute [rw] organization_status
4737
+ # Displays the status of an Amazon Web Services Organization.
4738
+ # @return [Types::OrganizationStatus]
4739
+ #
4740
+ # @!attribute [rw] next_token
4741
+ # The token for the next page of results.
4742
+ # @return [String]
4743
+ #
4744
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListOrganizationServiceAccessStatusResponse AWS API Documentation
4745
+ #
4746
+ class ListOrganizationServiceAccessStatusResponse < Struct.new(
4747
+ :organization_status,
4748
+ :next_token)
4749
+ SENSITIVE = []
4750
+ include Aws::Structure
4751
+ end
4752
+
4753
+ # @note When making an API call, you may pass ListPeeringsRequest
4754
+ # data as a hash:
4755
+ #
4756
+ # {
4757
+ # core_network_id: "CoreNetworkId",
4758
+ # peering_type: "TRANSIT_GATEWAY", # accepts TRANSIT_GATEWAY
4759
+ # edge_location: "ExternalRegionCode",
4760
+ # state: "CREATING", # accepts CREATING, FAILED, AVAILABLE, DELETING
4761
+ # max_results: 1,
4762
+ # next_token: "NextToken",
4763
+ # }
4764
+ #
4765
+ # @!attribute [rw] core_network_id
4766
+ # The ID of a core network.
4767
+ # @return [String]
4768
+ #
4769
+ # @!attribute [rw] peering_type
4770
+ # Returns a list of a peering requests.
4771
+ # @return [String]
4772
+ #
4773
+ # @!attribute [rw] edge_location
4774
+ # Returns a list edge locations for the
4775
+ # @return [String]
4776
+ #
4777
+ # @!attribute [rw] state
4778
+ # Returns a list of the peering request states.
4779
+ # @return [String]
4780
+ #
4781
+ # @!attribute [rw] max_results
4782
+ # The maximum number of results to return.
4783
+ # @return [Integer]
4784
+ #
4785
+ # @!attribute [rw] next_token
4786
+ # The token for the next page of results.
4787
+ # @return [String]
4788
+ #
4789
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListPeeringsRequest AWS API Documentation
4790
+ #
4791
+ class ListPeeringsRequest < Struct.new(
4792
+ :core_network_id,
4793
+ :peering_type,
4794
+ :edge_location,
4795
+ :state,
4796
+ :max_results,
4797
+ :next_token)
4798
+ SENSITIVE = []
4799
+ include Aws::Structure
4800
+ end
4801
+
4802
+ # @!attribute [rw] peerings
4803
+ # Lists the transit gateway peerings for the `ListPeerings` request.
4804
+ # @return [Array<Types::Peering>]
4805
+ #
4806
+ # @!attribute [rw] next_token
4807
+ # The token for the next page of results.
4808
+ # @return [String]
4809
+ #
4810
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListPeeringsResponse AWS API Documentation
4811
+ #
4812
+ class ListPeeringsResponse < Struct.new(
4813
+ :peerings,
4814
+ :next_token)
4815
+ SENSITIVE = []
4816
+ include Aws::Structure
4817
+ end
4818
+
4347
4819
  # @note When making an API call, you may pass ListTagsForResourceRequest
4348
4820
  # data as a hash:
4349
4821
  #
@@ -4415,7 +4887,7 @@ module Aws::NetworkManager
4415
4887
  # @return [String]
4416
4888
  #
4417
4889
  # @!attribute [rw] core_network_id
4418
- # a core network ID.
4890
+ # The ID of a core network.
4419
4891
  # @return [String]
4420
4892
  #
4421
4893
  # @!attribute [rw] aws_region
@@ -4693,6 +5165,40 @@ module Aws::NetworkManager
4693
5165
  include Aws::Structure
4694
5166
  end
4695
5167
 
5168
+ # The status of an Amazon Web Services Organization and the accounts
5169
+ # within that organization.
5170
+ #
5171
+ # @!attribute [rw] organization_id
5172
+ # The ID of an Amazon Web Services Organization.
5173
+ # @return [String]
5174
+ #
5175
+ # @!attribute [rw] organization_aws_service_access_status
5176
+ # The status of the organization's AWS service access. This will be
5177
+ # `ENABLED` or `DISABLED`.
5178
+ # @return [String]
5179
+ #
5180
+ # @!attribute [rw] slr_deployment_status
5181
+ # The status of the SLR deployment for the account. This will be
5182
+ # either `SUCCEEDED` or `IN_PROGRESS`.
5183
+ # @return [String]
5184
+ #
5185
+ # @!attribute [rw] account_status_list
5186
+ # The current service-linked role (SLR) deployment status for an
5187
+ # Amazon Web Services Organization's accounts. This will be either
5188
+ # `SUCCEEDED` or `IN_PROGRESS`.
5189
+ # @return [Array<Types::AccountStatus>]
5190
+ #
5191
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/OrganizationStatus AWS API Documentation
5192
+ #
5193
+ class OrganizationStatus < Struct.new(
5194
+ :organization_id,
5195
+ :organization_aws_service_access_status,
5196
+ :slr_deployment_status,
5197
+ :account_status_list)
5198
+ SENSITIVE = []
5199
+ include Aws::Structure
5200
+ end
5201
+
4696
5202
  # Describes a path component.
4697
5203
  #
4698
5204
  # @!attribute [rw] sequence
@@ -4717,11 +5223,70 @@ module Aws::NetworkManager
4717
5223
  include Aws::Structure
4718
5224
  end
4719
5225
 
5226
+ # Describes a peering connection.
5227
+ #
5228
+ # @!attribute [rw] core_network_id
5229
+ # The ID of the core network for the peering request.
5230
+ # @return [String]
5231
+ #
5232
+ # @!attribute [rw] core_network_arn
5233
+ # The ARN of a core network.
5234
+ # @return [String]
5235
+ #
5236
+ # @!attribute [rw] peering_id
5237
+ # The ID of the peering attachment.
5238
+ # @return [String]
5239
+ #
5240
+ # @!attribute [rw] owner_account_id
5241
+ # The ID of the account owner.
5242
+ # @return [String]
5243
+ #
5244
+ # @!attribute [rw] peering_type
5245
+ # The type of peering. This will be `TRANSIT_GATEWAY`.
5246
+ # @return [String]
5247
+ #
5248
+ # @!attribute [rw] state
5249
+ # The current state of the peering connection.
5250
+ # @return [String]
5251
+ #
5252
+ # @!attribute [rw] edge_location
5253
+ # The edge location for the peer.
5254
+ # @return [String]
5255
+ #
5256
+ # @!attribute [rw] resource_arn
5257
+ # The resource ARN of the peer.
5258
+ # @return [String]
5259
+ #
5260
+ # @!attribute [rw] tags
5261
+ # The list of key-value tags associated with the peering.
5262
+ # @return [Array<Types::Tag>]
5263
+ #
5264
+ # @!attribute [rw] created_at
5265
+ # The timestamp when the attachment peer was created.
5266
+ # @return [Time]
5267
+ #
5268
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/Peering AWS API Documentation
5269
+ #
5270
+ class Peering < Struct.new(
5271
+ :core_network_id,
5272
+ :core_network_arn,
5273
+ :peering_id,
5274
+ :owner_account_id,
5275
+ :peering_type,
5276
+ :state,
5277
+ :edge_location,
5278
+ :resource_arn,
5279
+ :tags,
5280
+ :created_at)
5281
+ SENSITIVE = []
5282
+ include Aws::Structure
5283
+ end
5284
+
4720
5285
  # Describes a proposed segment change. In some cases, the segment change
4721
5286
  # must first be evaluated and accepted.
4722
5287
  #
4723
5288
  # @!attribute [rw] tags
4724
- # The key-value tags that changed for the segment.
5289
+ # The list of key-value tags that changed for the segment.
4725
5290
  # @return [Array<Types::Tag>]
4726
5291
  #
4727
5292
  # @!attribute [rw] attachment_policy_rule_number
@@ -5302,6 +5867,39 @@ module Aws::NetworkManager
5302
5867
  include Aws::Structure
5303
5868
  end
5304
5869
 
5870
+ # @note When making an API call, you may pass StartOrganizationServiceAccessUpdateRequest
5871
+ # data as a hash:
5872
+ #
5873
+ # {
5874
+ # action: "Action", # required
5875
+ # }
5876
+ #
5877
+ # @!attribute [rw] action
5878
+ # The action to take for the update request. This can be either
5879
+ # `ENABLE` or `DISABLE`.
5880
+ # @return [String]
5881
+ #
5882
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/StartOrganizationServiceAccessUpdateRequest AWS API Documentation
5883
+ #
5884
+ class StartOrganizationServiceAccessUpdateRequest < Struct.new(
5885
+ :action)
5886
+ SENSITIVE = []
5887
+ include Aws::Structure
5888
+ end
5889
+
5890
+ # @!attribute [rw] organization_status
5891
+ # The status of the service access update request for an Amazon Web
5892
+ # Services Organization.
5893
+ # @return [Types::OrganizationStatus]
5894
+ #
5895
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/StartOrganizationServiceAccessUpdateResponse AWS API Documentation
5896
+ #
5897
+ class StartOrganizationServiceAccessUpdateResponse < Struct.new(
5898
+ :organization_status)
5899
+ SENSITIVE = []
5900
+ include Aws::Structure
5901
+ end
5902
+
5305
5903
  # @note When making an API call, you may pass StartRouteAnalysisRequest
5306
5904
  # data as a hash:
5307
5905
  #
@@ -5482,6 +6080,30 @@ module Aws::NetworkManager
5482
6080
  include Aws::Structure
5483
6081
  end
5484
6082
 
6083
+ # Describes a transit gateway peering attachment.
6084
+ #
6085
+ # @!attribute [rw] peering
6086
+ # Describes a transit gateway peer connection.
6087
+ # @return [Types::Peering]
6088
+ #
6089
+ # @!attribute [rw] transit_gateway_arn
6090
+ # The ARN of the transit gateway.
6091
+ # @return [String]
6092
+ #
6093
+ # @!attribute [rw] transit_gateway_peering_attachment_id
6094
+ # The ID of the transit gateway peering attachment.
6095
+ # @return [String]
6096
+ #
6097
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/TransitGatewayPeering AWS API Documentation
6098
+ #
6099
+ class TransitGatewayPeering < Struct.new(
6100
+ :peering,
6101
+ :transit_gateway_arn,
6102
+ :transit_gateway_peering_attachment_id)
6103
+ SENSITIVE = []
6104
+ include Aws::Structure
6105
+ end
6106
+
5485
6107
  # Describes the registration of a transit gateway to a global network.
5486
6108
  #
5487
6109
  # @!attribute [rw] global_network_id
@@ -5525,6 +6147,30 @@ module Aws::NetworkManager
5525
6147
  include Aws::Structure
5526
6148
  end
5527
6149
 
6150
+ # Describes a transit gateway route table attachment.
6151
+ #
6152
+ # @!attribute [rw] attachment
6153
+ # Describes a core network attachment.
6154
+ # @return [Types::Attachment]
6155
+ #
6156
+ # @!attribute [rw] peering_id
6157
+ # The ID of the peering attachment.
6158
+ # @return [String]
6159
+ #
6160
+ # @!attribute [rw] transit_gateway_route_table_arn
6161
+ # The ARN of the transit gateway attachment route table.
6162
+ # @return [String]
6163
+ #
6164
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/TransitGatewayRouteTableAttachment AWS API Documentation
6165
+ #
6166
+ class TransitGatewayRouteTableAttachment < Struct.new(
6167
+ :attachment,
6168
+ :peering_id,
6169
+ :transit_gateway_route_table_arn)
6170
+ SENSITIVE = []
6171
+ include Aws::Structure
6172
+ end
6173
+
5528
6174
  # @note When making an API call, you may pass UntagResourceRequest
5529
6175
  # data as a hash:
5530
6176
  #