aws-sdk-migrationhubrefactorspaces 1.6.0 → 1.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bbc3d42562648ba7d86f3e64799138ccefeeed86e718aa1966af90cdf050299e
4
- data.tar.gz: 4cb64b97ece67213cbb5a6b83f9dbf33f9b33d1a16af797f1dfca3335ce70075
3
+ metadata.gz: ea1cd38d7b222267562a7a19f852e3d924e46ebc0cedb85405d8b51e7f459279
4
+ data.tar.gz: 2bb022041307e123ff7404a3abfab3c04f5647c45d7da3098c8fb41b0a23fd53
5
5
  SHA512:
6
- metadata.gz: 48ce2878d343c24e496977903bc8987248656e87ffffa2976819da1ebd77819232ec8699cc03e08eb0c193a051009ff5d00c9f9ff154d99c06bf3c593eb7eaaf
7
- data.tar.gz: 8f0bd6143713d461d4b0bae184e50fb95d8f0c657912b094853b4f4a46a1cc98a0f3318ee728b0dcc8b659c22f5c7e6cba87f1b7c9a43872811474e1ce8462db
6
+ metadata.gz: 3d1039b56a8fe96ad23aadcfa27ae8c13f8b189f4b9bdc5bb975fa0f5e8fd2f6cff3179aef51461630683eff6078b36aa443658ddcd22d3ea0a7bd90d415d8c5
7
+ data.tar.gz: 2e6cdd3347236105148d813b8867e4d964642ee63120a4649f379fe8e7539686c8df05fa4b35bad6b49fbeac1d967583258a1e005a35dc57c931f4dd02200730
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.7.0 (2022-06-23)
5
+ ------------------
6
+
7
+ * Feature - This release adds the new API UpdateRoute that allows route to be updated to ACTIVE/INACTIVE state. In addition, CreateRoute API will now allow users to create route in ACTIVE/INACTIVE state.
8
+
4
9
  1.6.0 (2022-05-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.7.0
@@ -531,6 +531,12 @@ module Aws::MigrationHubRefactorSpaces
531
531
  # routes, then the first route must be created as a `DEFAULT`
532
532
  # `RouteType`.
533
533
  #
534
+ # When created, the default route defaults to an active state so state
535
+ # is not a required input. However, like all other state values the
536
+ # state of the default route can be updated after creation, but only
537
+ # when all other routes are also inactive. Conversely, no route can be
538
+ # active without the default route also being active.
539
+ #
534
540
  # When you create a route, Refactor Spaces configures the Amazon API
535
541
  # Gateway to send traffic to the target service as follows:
536
542
  #
@@ -546,9 +552,12 @@ module Aws::MigrationHubRefactorSpaces
546
552
  # configures the Lambda function's resource policy to allow the
547
553
  # application's API Gateway to invoke the function.
548
554
  #
549
- # A one-time health check is performed on the service when the route is
550
- # created. If the health check fails, the route transitions to `FAILED`,
551
- # and no traffic is sent to the service.
555
+ # A one-time health check is performed on the service when either the
556
+ # route is updated from inactive to active, or when it is created with
557
+ # an active state. If the health check fails, the route transitions the
558
+ # route state to `FAILED`, an error code of
559
+ # `SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE` is provided, and no traffic is
560
+ # sent to the service.
552
561
  #
553
562
  # For Lambda functions, the Lambda function state is checked. If the
554
563
  # function is not active, the function configuration is updated so that
@@ -557,21 +566,24 @@ module Aws::MigrationHubRefactorSpaces
557
566
  # [GetFunctionConfiguration's State response parameter][1] in the
558
567
  # *Lambda Developer Guide*.
559
568
  #
560
- # For public URLs, a connection is opened to the public endpoint. If the
561
- # URL is not reachable, the health check fails. For private URLs, a
562
- # target group is created and the target group health check is run.
563
- #
564
- # The `HealthCheckProtocol`, `HealthCheckPort`, and `HealthCheckPath`
565
- # are the same protocol, port, and path specified in the URL or health
566
- # URL, if used. All other settings use the default values, as described
567
- # in [Health checks for your target groups][2]. The health check is
569
+ # For Lambda endpoints, a check is performed to determine that a Lambda
570
+ # function with the specified ARN exists. If it does not exist, the
571
+ # health check fails. For public URLs, a connection is opened to the
572
+ # public endpoint. If the URL is not reachable, the health check fails.
573
+ #
574
+ # For private URLS, a target group is created on the Elastic Load
575
+ # Balancing and the target group health check is run. The
576
+ # `HealthCheckProtocol`, `HealthCheckPort`, and `HealthCheckPath` are
577
+ # the same protocol, port, and path specified in the URL or health URL,
578
+ # if used. All other settings use the default values, as described in
579
+ # [Health checks for your target groups][2]. The health check is
568
580
  # considered successful if at least one target within the target group
569
581
  # transitions to a healthy state.
570
582
  #
571
583
  # Services can have HTTP or HTTPS URL endpoints. For HTTPS URLs,
572
584
  # publicly-signed certificates are supported. Private Certificate
573
- # Authorities (CAs) are permitted only if the CA's domain is publicly
574
- # resolvable.
585
+ # Authorities (CAs) are permitted only if the CA's domain is also
586
+ # publicly resolvable.
575
587
  #
576
588
  #
577
589
  #
@@ -588,6 +600,9 @@ module Aws::MigrationHubRefactorSpaces
588
600
  # **A suitable default value is auto-generated.** You should normally
589
601
  # not need to pass this option.**
590
602
  #
603
+ # @option params [Types::DefaultRouteInput] :default_route
604
+ # Configuration for the default route type.
605
+ #
591
606
  # @option params [required, String] :environment_identifier
592
607
  # The ID of the environment in which the route is created.
593
608
  #
@@ -629,6 +644,9 @@ module Aws::MigrationHubRefactorSpaces
629
644
  # resp = client.create_route({
630
645
  # application_identifier: "ApplicationId", # required
631
646
  # client_token: "ClientToken",
647
+ # default_route: {
648
+ # activation_state: "ACTIVE", # accepts ACTIVE, INACTIVE
649
+ # },
632
650
  # environment_identifier: "EnvironmentId", # required
633
651
  # route_type: "DEFAULT", # required, accepts DEFAULT, URI_PATH
634
652
  # service_identifier: "ServiceId", # required
@@ -636,7 +654,7 @@ module Aws::MigrationHubRefactorSpaces
636
654
  # "TagMapKeyString" => "TagMapValueString",
637
655
  # },
638
656
  # uri_path_route: {
639
- # activation_state: "ACTIVE", # required, accepts ACTIVE
657
+ # activation_state: "ACTIVE", # required, accepts ACTIVE, INACTIVE
640
658
  # include_child_paths: false,
641
659
  # methods: ["DELETE"], # accepts DELETE, GET, HEAD, OPTIONS, PATCH, POST, PUT
642
660
  # source_path: "UriPath", # required
@@ -657,7 +675,7 @@ module Aws::MigrationHubRefactorSpaces
657
675
  # resp.state #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED", "UPDATING", "INACTIVE"
658
676
  # resp.tags #=> Hash
659
677
  # resp.tags["TagMapKeyString"] #=> String
660
- # resp.uri_path_route.activation_state #=> String, one of "ACTIVE"
678
+ # resp.uri_path_route.activation_state #=> String, one of "ACTIVE", "INACTIVE"
661
679
  # resp.uri_path_route.include_child_paths #=> Boolean
662
680
  # resp.uri_path_route.methods #=> Array
663
681
  # resp.uri_path_route.methods[0] #=> String, one of "DELETE", "GET", "HEAD", "OPTIONS", "PATCH", "POST", "PUT"
@@ -1707,7 +1725,7 @@ module Aws::MigrationHubRefactorSpaces
1707
1725
  # </note>
1708
1726
  #
1709
1727
  # @option params [required, String] :resource_arn
1710
- # The Amazon Resource Name (ARN) of the resource
1728
+ # The Amazon Resource Name (ARN) of the resource.
1711
1729
  #
1712
1730
  # @option params [required, Hash<String,String>] :tags
1713
1731
  # The new or modified tags for the resource.
@@ -1761,6 +1779,57 @@ module Aws::MigrationHubRefactorSpaces
1761
1779
  req.send_request(options)
1762
1780
  end
1763
1781
 
1782
+ # Updates an Amazon Web Services Migration Hub Refactor Spaces route.
1783
+ #
1784
+ # @option params [required, String] :activation_state
1785
+ # If set to `ACTIVE`, traffic is forwarded to this route’s service after
1786
+ # the route is updated.
1787
+ #
1788
+ # @option params [required, String] :application_identifier
1789
+ # The ID of the application within which the route is being updated.
1790
+ #
1791
+ # @option params [required, String] :environment_identifier
1792
+ # The ID of the environment in which the route is being updated.
1793
+ #
1794
+ # @option params [required, String] :route_identifier
1795
+ # The unique identifier of the route to update.
1796
+ #
1797
+ # @return [Types::UpdateRouteResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1798
+ #
1799
+ # * {Types::UpdateRouteResponse#application_id #application_id} => String
1800
+ # * {Types::UpdateRouteResponse#arn #arn} => String
1801
+ # * {Types::UpdateRouteResponse#last_updated_time #last_updated_time} => Time
1802
+ # * {Types::UpdateRouteResponse#route_id #route_id} => String
1803
+ # * {Types::UpdateRouteResponse#service_id #service_id} => String
1804
+ # * {Types::UpdateRouteResponse#state #state} => String
1805
+ #
1806
+ # @example Request syntax with placeholder values
1807
+ #
1808
+ # resp = client.update_route({
1809
+ # activation_state: "ACTIVE", # required, accepts ACTIVE, INACTIVE
1810
+ # application_identifier: "ApplicationId", # required
1811
+ # environment_identifier: "EnvironmentId", # required
1812
+ # route_identifier: "RouteId", # required
1813
+ # })
1814
+ #
1815
+ # @example Response structure
1816
+ #
1817
+ # resp.application_id #=> String
1818
+ # resp.arn #=> String
1819
+ # resp.last_updated_time #=> Time
1820
+ # resp.route_id #=> String
1821
+ # resp.service_id #=> String
1822
+ # resp.state #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED", "UPDATING", "INACTIVE"
1823
+ #
1824
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migration-hub-refactor-spaces-2021-10-26/UpdateRoute AWS API Documentation
1825
+ #
1826
+ # @overload update_route(params = {})
1827
+ # @param [Hash] params ({})
1828
+ def update_route(params = {}, options = {})
1829
+ req = build_request(:update_route, params)
1830
+ req.send_request(options)
1831
+ end
1832
+
1764
1833
  # @!endgroup
1765
1834
 
1766
1835
  # @param params ({})
@@ -1774,7 +1843,7 @@ module Aws::MigrationHubRefactorSpaces
1774
1843
  params: params,
1775
1844
  config: config)
1776
1845
  context[:gem_name] = 'aws-sdk-migrationhubrefactorspaces'
1777
- context[:gem_version] = '1.6.0'
1846
+ context[:gem_version] = '1.7.0'
1778
1847
  Seahorse::Client::Request.new(handlers, context)
1779
1848
  end
1780
1849
 
@@ -41,6 +41,7 @@ module Aws::MigrationHubRefactorSpaces
41
41
  CreateRouteResponse = Shapes::StructureShape.new(name: 'CreateRouteResponse')
42
42
  CreateServiceRequest = Shapes::StructureShape.new(name: 'CreateServiceRequest')
43
43
  CreateServiceResponse = Shapes::StructureShape.new(name: 'CreateServiceResponse')
44
+ DefaultRouteInput = Shapes::StructureShape.new(name: 'DefaultRouteInput')
44
45
  DeleteApplicationRequest = Shapes::StructureShape.new(name: 'DeleteApplicationRequest')
45
46
  DeleteApplicationResponse = Shapes::StructureShape.new(name: 'DeleteApplicationResponse')
46
47
  DeleteEnvironmentRequest = Shapes::StructureShape.new(name: 'DeleteEnvironmentRequest')
@@ -137,6 +138,8 @@ module Aws::MigrationHubRefactorSpaces
137
138
  TransitGatewayId = Shapes::StringShape.new(name: 'TransitGatewayId')
138
139
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
139
140
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
141
+ UpdateRouteRequest = Shapes::StructureShape.new(name: 'UpdateRouteRequest')
142
+ UpdateRouteResponse = Shapes::StructureShape.new(name: 'UpdateRouteResponse')
140
143
  Uri = Shapes::StringShape.new(name: 'Uri')
141
144
  UriPath = Shapes::StringShape.new(name: 'UriPath')
142
145
  UriPathRouteInput = Shapes::StructureShape.new(name: 'UriPathRouteInput')
@@ -245,6 +248,7 @@ module Aws::MigrationHubRefactorSpaces
245
248
 
246
249
  CreateRouteRequest.add_member(:application_identifier, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location: "uri", location_name: "ApplicationIdentifier"))
247
250
  CreateRouteRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
251
+ CreateRouteRequest.add_member(:default_route, Shapes::ShapeRef.new(shape: DefaultRouteInput, location_name: "DefaultRoute"))
248
252
  CreateRouteRequest.add_member(:environment_identifier, Shapes::ShapeRef.new(shape: EnvironmentId, required: true, location: "uri", location_name: "EnvironmentIdentifier"))
249
253
  CreateRouteRequest.add_member(:route_type, Shapes::ShapeRef.new(shape: RouteType, required: true, location_name: "RouteType"))
250
254
  CreateRouteRequest.add_member(:service_identifier, Shapes::ShapeRef.new(shape: ServiceId, required: true, location_name: "ServiceIdentifier"))
@@ -296,6 +300,9 @@ module Aws::MigrationHubRefactorSpaces
296
300
  CreateServiceResponse.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "VpcId"))
297
301
  CreateServiceResponse.struct_class = Types::CreateServiceResponse
298
302
 
303
+ DefaultRouteInput.add_member(:activation_state, Shapes::ShapeRef.new(shape: RouteActivationState, location_name: "ActivationState"))
304
+ DefaultRouteInput.struct_class = Types::DefaultRouteInput
305
+
299
306
  DeleteApplicationRequest.add_member(:application_identifier, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location: "uri", location_name: "ApplicationIdentifier"))
300
307
  DeleteApplicationRequest.add_member(:environment_identifier, Shapes::ShapeRef.new(shape: EnvironmentId, required: true, location: "uri", location_name: "EnvironmentIdentifier"))
301
308
  DeleteApplicationRequest.struct_class = Types::DeleteApplicationRequest
@@ -631,6 +638,20 @@ module Aws::MigrationHubRefactorSpaces
631
638
 
632
639
  UntagResourceResponse.struct_class = Types::UntagResourceResponse
633
640
 
641
+ UpdateRouteRequest.add_member(:activation_state, Shapes::ShapeRef.new(shape: RouteActivationState, required: true, location_name: "ActivationState"))
642
+ UpdateRouteRequest.add_member(:application_identifier, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location: "uri", location_name: "ApplicationIdentifier"))
643
+ UpdateRouteRequest.add_member(:environment_identifier, Shapes::ShapeRef.new(shape: EnvironmentId, required: true, location: "uri", location_name: "EnvironmentIdentifier"))
644
+ UpdateRouteRequest.add_member(:route_identifier, Shapes::ShapeRef.new(shape: RouteId, required: true, location: "uri", location_name: "RouteIdentifier"))
645
+ UpdateRouteRequest.struct_class = Types::UpdateRouteRequest
646
+
647
+ UpdateRouteResponse.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, location_name: "ApplicationId"))
648
+ UpdateRouteResponse.add_member(:arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "Arn"))
649
+ UpdateRouteResponse.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastUpdatedTime"))
650
+ UpdateRouteResponse.add_member(:route_id, Shapes::ShapeRef.new(shape: RouteId, location_name: "RouteId"))
651
+ UpdateRouteResponse.add_member(:service_id, Shapes::ShapeRef.new(shape: ServiceId, location_name: "ServiceId"))
652
+ UpdateRouteResponse.add_member(:state, Shapes::ShapeRef.new(shape: RouteState, location_name: "State"))
653
+ UpdateRouteResponse.struct_class = Types::UpdateRouteResponse
654
+
634
655
  UriPathRouteInput.add_member(:activation_state, Shapes::ShapeRef.new(shape: RouteActivationState, required: true, location_name: "ActivationState"))
635
656
  UriPathRouteInput.add_member(:include_child_paths, Shapes::ShapeRef.new(shape: Boolean, location_name: "IncludeChildPaths"))
636
657
  UriPathRouteInput.add_member(:methods, Shapes::ShapeRef.new(shape: HttpMethods, location_name: "Methods"))
@@ -1011,6 +1032,19 @@ module Aws::MigrationHubRefactorSpaces
1011
1032
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1012
1033
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1013
1034
  end)
1035
+
1036
+ api.add_operation(:update_route, Seahorse::Model::Operation.new.tap do |o|
1037
+ o.name = "UpdateRoute"
1038
+ o.http_method = "PATCH"
1039
+ o.http_request_uri = "/environments/{EnvironmentIdentifier}/applications/{ApplicationIdentifier}/routes/{RouteIdentifier}"
1040
+ o.input = Shapes::ShapeRef.new(shape: UpdateRouteRequest)
1041
+ o.output = Shapes::ShapeRef.new(shape: UpdateRouteResponse)
1042
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1043
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1044
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1045
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1046
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1047
+ end)
1014
1048
  end
1015
1049
 
1016
1050
  end
@@ -520,6 +520,9 @@ module Aws::MigrationHubRefactorSpaces
520
520
  # {
521
521
  # application_identifier: "ApplicationId", # required
522
522
  # client_token: "ClientToken",
523
+ # default_route: {
524
+ # activation_state: "ACTIVE", # accepts ACTIVE, INACTIVE
525
+ # },
523
526
  # environment_identifier: "EnvironmentId", # required
524
527
  # route_type: "DEFAULT", # required, accepts DEFAULT, URI_PATH
525
528
  # service_identifier: "ServiceId", # required
@@ -527,7 +530,7 @@ module Aws::MigrationHubRefactorSpaces
527
530
  # "TagMapKeyString" => "TagMapValueString",
528
531
  # },
529
532
  # uri_path_route: {
530
- # activation_state: "ACTIVE", # required, accepts ACTIVE
533
+ # activation_state: "ACTIVE", # required, accepts ACTIVE, INACTIVE
531
534
  # include_child_paths: false,
532
535
  # methods: ["DELETE"], # accepts DELETE, GET, HEAD, OPTIONS, PATCH, POST, PUT
533
536
  # source_path: "UriPath", # required
@@ -546,6 +549,10 @@ module Aws::MigrationHubRefactorSpaces
546
549
  # not need to pass this option.
547
550
  # @return [String]
548
551
  #
552
+ # @!attribute [rw] default_route
553
+ # Configuration for the default route type.
554
+ # @return [Types::DefaultRouteInput]
555
+ #
549
556
  # @!attribute [rw] environment_identifier
550
557
  # The ID of the environment in which the route is created.
551
558
  # @return [String]
@@ -578,6 +585,7 @@ module Aws::MigrationHubRefactorSpaces
578
585
  class CreateRouteRequest < Struct.new(
579
586
  :application_identifier,
580
587
  :client_token,
588
+ :default_route,
581
589
  :environment_identifier,
582
590
  :route_type,
583
591
  :service_identifier,
@@ -633,7 +641,9 @@ module Aws::MigrationHubRefactorSpaces
633
641
  # @return [String]
634
642
  #
635
643
  # @!attribute [rw] state
636
- # The current state of the route.
644
+ # The current state of the route. Activation state only allows
645
+ # `ACTIVE` or `INACTIVE` as user inputs. `FAILED` is a route state
646
+ # that is system generated.
637
647
  # @return [String]
638
648
  #
639
649
  # @!attribute [rw] tags
@@ -643,7 +653,7 @@ module Aws::MigrationHubRefactorSpaces
643
653
  # @return [Hash<String,String>]
644
654
  #
645
655
  # @!attribute [rw] uri_path_route
646
- # onfiguration for the URI path route type.
656
+ # Configuration for the URI path route type.
647
657
  # @return [Types::UriPathRouteInput]
648
658
  #
649
659
  # @see http://docs.aws.amazon.com/goto/WebAPI/migration-hub-refactor-spaces-2021-10-26/CreateRouteResponse AWS API Documentation
@@ -841,6 +851,28 @@ module Aws::MigrationHubRefactorSpaces
841
851
  include Aws::Structure
842
852
  end
843
853
 
854
+ # The configuration for the default route type.
855
+ #
856
+ # @note When making an API call, you may pass DefaultRouteInput
857
+ # data as a hash:
858
+ #
859
+ # {
860
+ # activation_state: "ACTIVE", # accepts ACTIVE, INACTIVE
861
+ # }
862
+ #
863
+ # @!attribute [rw] activation_state
864
+ # If set to `ACTIVE`, traffic is forwarded to this route’s service
865
+ # after the route is created.
866
+ # @return [String]
867
+ #
868
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migration-hub-refactor-spaces-2021-10-26/DefaultRouteInput AWS API Documentation
869
+ #
870
+ class DefaultRouteInput < Struct.new(
871
+ :activation_state)
872
+ SENSITIVE = []
873
+ include Aws::Structure
874
+ end
875
+
844
876
  # @note When making an API call, you may pass DeleteApplicationRequest
845
877
  # data as a hash:
846
878
  #
@@ -2432,7 +2464,7 @@ module Aws::MigrationHubRefactorSpaces
2432
2464
  # }
2433
2465
  #
2434
2466
  # @!attribute [rw] resource_arn
2435
- # The Amazon Resource Name (ARN) of the resource
2467
+ # The Amazon Resource Name (ARN) of the resource.
2436
2468
  # @return [String]
2437
2469
  #
2438
2470
  # @!attribute [rw] tags
@@ -2511,21 +2543,105 @@ module Aws::MigrationHubRefactorSpaces
2511
2543
  #
2512
2544
  class UntagResourceResponse < Aws::EmptyStructure; end
2513
2545
 
2546
+ # @note When making an API call, you may pass UpdateRouteRequest
2547
+ # data as a hash:
2548
+ #
2549
+ # {
2550
+ # activation_state: "ACTIVE", # required, accepts ACTIVE, INACTIVE
2551
+ # application_identifier: "ApplicationId", # required
2552
+ # environment_identifier: "EnvironmentId", # required
2553
+ # route_identifier: "RouteId", # required
2554
+ # }
2555
+ #
2556
+ # @!attribute [rw] activation_state
2557
+ # If set to `ACTIVE`, traffic is forwarded to this route’s service
2558
+ # after the route is updated.
2559
+ # @return [String]
2560
+ #
2561
+ # @!attribute [rw] application_identifier
2562
+ # The ID of the application within which the route is being updated.
2563
+ # @return [String]
2564
+ #
2565
+ # @!attribute [rw] environment_identifier
2566
+ # The ID of the environment in which the route is being updated.
2567
+ # @return [String]
2568
+ #
2569
+ # @!attribute [rw] route_identifier
2570
+ # The unique identifier of the route to update.
2571
+ # @return [String]
2572
+ #
2573
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migration-hub-refactor-spaces-2021-10-26/UpdateRouteRequest AWS API Documentation
2574
+ #
2575
+ class UpdateRouteRequest < Struct.new(
2576
+ :activation_state,
2577
+ :application_identifier,
2578
+ :environment_identifier,
2579
+ :route_identifier)
2580
+ SENSITIVE = []
2581
+ include Aws::Structure
2582
+ end
2583
+
2584
+ # @!attribute [rw] application_id
2585
+ # The ID of the application in which the route is being updated.
2586
+ # @return [String]
2587
+ #
2588
+ # @!attribute [rw] arn
2589
+ # The Amazon Resource Name (ARN) of the route. The format for this ARN
2590
+ # is
2591
+ # `arn:aws:refactor-spaces:region:account-id:resource-type/resource-id
2592
+ # `. For more information about ARNs, see [ Amazon Resource Names
2593
+ # (ARNs)][1] in the *Amazon Web Services General Reference*.
2594
+ #
2595
+ #
2596
+ #
2597
+ # [1]: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
2598
+ # @return [String]
2599
+ #
2600
+ # @!attribute [rw] last_updated_time
2601
+ # A timestamp that indicates when the route was last updated.
2602
+ # @return [Time]
2603
+ #
2604
+ # @!attribute [rw] route_id
2605
+ # The unique identifier of the route.
2606
+ # @return [String]
2607
+ #
2608
+ # @!attribute [rw] service_id
2609
+ # The ID of service in which the route was created. Traffic that
2610
+ # matches this route is forwarded to this service.
2611
+ # @return [String]
2612
+ #
2613
+ # @!attribute [rw] state
2614
+ # The current state of the route.
2615
+ # @return [String]
2616
+ #
2617
+ # @see http://docs.aws.amazon.com/goto/WebAPI/migration-hub-refactor-spaces-2021-10-26/UpdateRouteResponse AWS API Documentation
2618
+ #
2619
+ class UpdateRouteResponse < Struct.new(
2620
+ :application_id,
2621
+ :arn,
2622
+ :last_updated_time,
2623
+ :route_id,
2624
+ :service_id,
2625
+ :state)
2626
+ SENSITIVE = []
2627
+ include Aws::Structure
2628
+ end
2629
+
2514
2630
  # The configuration for the URI path route type.
2515
2631
  #
2516
2632
  # @note When making an API call, you may pass UriPathRouteInput
2517
2633
  # data as a hash:
2518
2634
  #
2519
2635
  # {
2520
- # activation_state: "ACTIVE", # required, accepts ACTIVE
2636
+ # activation_state: "ACTIVE", # required, accepts ACTIVE, INACTIVE
2521
2637
  # include_child_paths: false,
2522
2638
  # methods: ["DELETE"], # accepts DELETE, GET, HEAD, OPTIONS, PATCH, POST, PUT
2523
2639
  # source_path: "UriPath", # required
2524
2640
  # }
2525
2641
  #
2526
2642
  # @!attribute [rw] activation_state
2527
- # Indicates whether traffic is forwarded to this route’s service after
2528
- # the route is created.
2643
+ # If set to `ACTIVE`, traffic is forwarded to this route’s service
2644
+ # after the route is created.
2529
2645
  # @return [String]
2530
2646
  #
2531
2647
  # @!attribute [rw] include_child_paths
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-migrationhubrefactorspaces/customizations'
48
48
  # @!group service
49
49
  module Aws::MigrationHubRefactorSpaces
50
50
 
51
- GEM_VERSION = '1.6.0'
51
+ GEM_VERSION = '1.7.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-migrationhubrefactorspaces
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.7.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: 2022-05-10 00:00:00.000000000 Z
11
+ date: 2022-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core