aws-sdk-networkmanager 1.23.0 → 1.24.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -83,10 +83,15 @@ 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
+ #
86
89
  # @!attribute [rw] account_id
90
+ # The ID of an account within the Amazon Web Services Organization.
87
91
  # @return [String]
88
92
  #
89
93
  # @!attribute [rw] slr_deployment_status
94
+ # The status of SLR deployment for the account.
90
95
  # @return [String]
91
96
  #
92
97
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/AccountStatus AWS API Documentation
@@ -291,7 +296,7 @@ module Aws::NetworkManager
291
296
  # Describes a core network attachment.
292
297
  #
293
298
  # @!attribute [rw] core_network_id
294
- # A core network ID.
299
+ # The ID of a core network.
295
300
  # @return [String]
296
301
  #
297
302
  # @!attribute [rw] core_network_arn
@@ -515,7 +520,7 @@ module Aws::NetworkManager
515
520
  # @return [Types::ConnectPeerConfiguration]
516
521
  #
517
522
  # @!attribute [rw] tags
518
- # The tags associated with the Connect peer.
523
+ # The list of key-value tags associated with the Connect peer.
519
524
  # @return [Array<Types::Tag>]
520
525
  #
521
526
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ConnectPeer AWS API Documentation
@@ -657,7 +662,7 @@ module Aws::NetworkManager
657
662
  # @return [Time]
658
663
  #
659
664
  # @!attribute [rw] tags
660
- # The tags associated with a Connect peer summary.
665
+ # The list of key-value tags associated with the Connect peer summary.
661
666
  # @return [Array<Types::Tag>]
662
667
  #
663
668
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ConnectPeerSummary AWS API Documentation
@@ -797,7 +802,7 @@ module Aws::NetworkManager
797
802
  # @return [Array<Types::CoreNetworkEdge>]
798
803
  #
799
804
  # @!attribute [rw] tags
800
- # The tags associated with a core network.
805
+ # The list of key-value tags associated with a core network.
801
806
  # @return [Array<Types::Tag>]
802
807
  #
803
808
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetwork AWS API Documentation
@@ -838,6 +843,12 @@ module Aws::NetworkManager
838
843
  # The new value for a core network
839
844
  # @return [Types::CoreNetworkChangeValues]
840
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
+ #
841
852
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/CoreNetworkChange AWS API Documentation
842
853
  #
843
854
  class CoreNetworkChange < Struct.new(
@@ -845,7 +856,80 @@ module Aws::NetworkManager
845
856
  :action,
846
857
  :identifier,
847
858
  :previous_values,
848
- :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)
849
933
  SENSITIVE = []
850
934
  include Aws::Structure
851
935
  end
@@ -1797,6 +1881,123 @@ module Aws::NetworkManager
1797
1881
  include Aws::Structure
1798
1882
  end
1799
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
+
1800
2001
  # @note When making an API call, you may pass CreateVpcAttachmentRequest
1801
2002
  # data as a hash:
1802
2003
  #
@@ -2175,6 +2376,37 @@ module Aws::NetworkManager
2175
2376
  include Aws::Structure
2176
2377
  end
2177
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
+
2178
2410
  # @note When making an API call, you may pass DeleteResourcePolicyRequest
2179
2411
  # data as a hash:
2180
2412
  #
@@ -2758,6 +2990,60 @@ module Aws::NetworkManager
2758
2990
  include Aws::Structure
2759
2991
  end
2760
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
+
2761
3047
  # @note When making an API call, you may pass GetCoreNetworkChangeSetRequest
2762
3048
  # data as a hash:
2763
3049
  #
@@ -3911,6 +4197,37 @@ module Aws::NetworkManager
3911
4197
  include Aws::Structure
3912
4198
  end
3913
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
+
3914
4231
  # @note When making an API call, you may pass GetTransitGatewayRegistrationsRequest
3915
4232
  # data as a hash:
3916
4233
  #
@@ -3966,6 +4283,38 @@ module Aws::NetworkManager
3966
4283
  include Aws::Structure
3967
4284
  end
3968
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
+
3969
4318
  # @note When making an API call, you may pass GetVpcAttachmentRequest
3970
4319
  # data as a hash:
3971
4320
  #
@@ -4154,7 +4503,7 @@ module Aws::NetworkManager
4154
4503
  #
4155
4504
  # {
4156
4505
  # core_network_id: "CoreNetworkId",
4157
- # 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
4158
4507
  # edge_location: "ExternalRegionCode",
4159
4508
  # state: "REJECTED", # accepts REJECTED, PENDING_ATTACHMENT_ACCEPTANCE, CREATING, FAILED, AVAILABLE, UPDATING, PENDING_NETWORK_UPDATE, PENDING_TAG_ACCEPTANCE, DELETING
4160
4509
  # max_results: 1,
@@ -4368,9 +4717,11 @@ module Aws::NetworkManager
4368
4717
  # }
4369
4718
  #
4370
4719
  # @!attribute [rw] max_results
4720
+ # The maximum number of results to return.
4371
4721
  # @return [Integer]
4372
4722
  #
4373
4723
  # @!attribute [rw] next_token
4724
+ # The token for the next page of results.
4374
4725
  # @return [String]
4375
4726
  #
4376
4727
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListOrganizationServiceAccessStatusRequest AWS API Documentation
@@ -4383,9 +4734,11 @@ module Aws::NetworkManager
4383
4734
  end
4384
4735
 
4385
4736
  # @!attribute [rw] organization_status
4737
+ # Displays the status of an Amazon Web Services Organization.
4386
4738
  # @return [Types::OrganizationStatus]
4387
4739
  #
4388
4740
  # @!attribute [rw] next_token
4741
+ # The token for the next page of results.
4389
4742
  # @return [String]
4390
4743
  #
4391
4744
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/ListOrganizationServiceAccessStatusResponse AWS API Documentation
@@ -4397,6 +4750,72 @@ module Aws::NetworkManager
4397
4750
  include Aws::Structure
4398
4751
  end
4399
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
+
4400
4819
  # @note When making an API call, you may pass ListTagsForResourceRequest
4401
4820
  # data as a hash:
4402
4821
  #
@@ -4468,7 +4887,7 @@ module Aws::NetworkManager
4468
4887
  # @return [String]
4469
4888
  #
4470
4889
  # @!attribute [rw] core_network_id
4471
- # a core network ID.
4890
+ # The ID of a core network.
4472
4891
  # @return [String]
4473
4892
  #
4474
4893
  # @!attribute [rw] aws_region
@@ -4746,16 +5165,27 @@ module Aws::NetworkManager
4746
5165
  include Aws::Structure
4747
5166
  end
4748
5167
 
5168
+ # The status of an Amazon Web Services Organization and the accounts
5169
+ # within that organization.
5170
+ #
4749
5171
  # @!attribute [rw] organization_id
5172
+ # The ID of an Amazon Web Services Organization.
4750
5173
  # @return [String]
4751
5174
  #
4752
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`.
4753
5178
  # @return [String]
4754
5179
  #
4755
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`.
4756
5183
  # @return [String]
4757
5184
  #
4758
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`.
4759
5189
  # @return [Array<Types::AccountStatus>]
4760
5190
  #
4761
5191
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/OrganizationStatus AWS API Documentation
@@ -4793,11 +5223,70 @@ module Aws::NetworkManager
4793
5223
  include Aws::Structure
4794
5224
  end
4795
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
+
4796
5285
  # Describes a proposed segment change. In some cases, the segment change
4797
5286
  # must first be evaluated and accepted.
4798
5287
  #
4799
5288
  # @!attribute [rw] tags
4800
- # The key-value tags that changed for the segment.
5289
+ # The list of key-value tags that changed for the segment.
4801
5290
  # @return [Array<Types::Tag>]
4802
5291
  #
4803
5292
  # @!attribute [rw] attachment_policy_rule_number
@@ -5386,6 +5875,8 @@ module Aws::NetworkManager
5386
5875
  # }
5387
5876
  #
5388
5877
  # @!attribute [rw] action
5878
+ # The action to take for the update request. This can be either
5879
+ # `ENABLE` or `DISABLE`.
5389
5880
  # @return [String]
5390
5881
  #
5391
5882
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/StartOrganizationServiceAccessUpdateRequest AWS API Documentation
@@ -5397,6 +5888,8 @@ module Aws::NetworkManager
5397
5888
  end
5398
5889
 
5399
5890
  # @!attribute [rw] organization_status
5891
+ # The status of the service access update request for an Amazon Web
5892
+ # Services Organization.
5400
5893
  # @return [Types::OrganizationStatus]
5401
5894
  #
5402
5895
  # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/StartOrganizationServiceAccessUpdateResponse AWS API Documentation
@@ -5587,6 +6080,25 @@ module Aws::NetworkManager
5587
6080
  include Aws::Structure
5588
6081
  end
5589
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
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/TransitGatewayPeering AWS API Documentation
6094
+ #
6095
+ class TransitGatewayPeering < Struct.new(
6096
+ :peering,
6097
+ :transit_gateway_arn)
6098
+ SENSITIVE = []
6099
+ include Aws::Structure
6100
+ end
6101
+
5590
6102
  # Describes the registration of a transit gateway to a global network.
5591
6103
  #
5592
6104
  # @!attribute [rw] global_network_id
@@ -5630,6 +6142,30 @@ module Aws::NetworkManager
5630
6142
  include Aws::Structure
5631
6143
  end
5632
6144
 
6145
+ # Describes a transit gateway route table attachment.
6146
+ #
6147
+ # @!attribute [rw] attachment
6148
+ # Describes a core network attachment.
6149
+ # @return [Types::Attachment]
6150
+ #
6151
+ # @!attribute [rw] peering_id
6152
+ # The ID of the peering attachment.
6153
+ # @return [String]
6154
+ #
6155
+ # @!attribute [rw] transit_gateway_route_table_arn
6156
+ # The ARN of the transit gateway attachment route table.
6157
+ # @return [String]
6158
+ #
6159
+ # @see http://docs.aws.amazon.com/goto/WebAPI/networkmanager-2019-07-05/TransitGatewayRouteTableAttachment AWS API Documentation
6160
+ #
6161
+ class TransitGatewayRouteTableAttachment < Struct.new(
6162
+ :attachment,
6163
+ :peering_id,
6164
+ :transit_gateway_route_table_arn)
6165
+ SENSITIVE = []
6166
+ include Aws::Structure
6167
+ end
6168
+
5633
6169
  # @note When making an API call, you may pass UntagResourceRequest
5634
6170
  # data as a hash:
5635
6171
  #