aws-sdk-migrationhubrefactorspaces 1.6.0 → 1.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-migrationhubrefactorspaces/client.rb +105 -19
- data/lib/aws-sdk-migrationhubrefactorspaces/client_api.rb +34 -0
- data/lib/aws-sdk-migrationhubrefactorspaces/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-migrationhubrefactorspaces/endpoint_provider.rb +111 -0
- data/lib/aws-sdk-migrationhubrefactorspaces/endpoints.rb +351 -0
- data/lib/aws-sdk-migrationhubrefactorspaces/plugins/endpoints.rb +116 -0
- data/lib/aws-sdk-migrationhubrefactorspaces/types.rb +123 -7
- data/lib/aws-sdk-migrationhubrefactorspaces.rb +5 -1
- metadata +8 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9bb479f3d71b1cbce645633cdaf0e018ec470678be1dc6bb6f6ae5feddd83f70
|
4
|
+
data.tar.gz: 25c1be91649c1251e988b45fc6ce9195ca1125b53f11d806a4cfcfb9aa1cee4d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 398c5b154a5744dd96cfcecfa5f878232e6b3ff0dd24c72cb8ba1af54815845ce57d3229fe9f1277c04e872c09328c42f82900bc0d9a15fd1e1186a3f8f87f2f
|
7
|
+
data.tar.gz: fbaafe9accfc13b4ceef66689bdd40e68f8d5c0fc550eba52a44c028db58dc15dc699269f4fd89aa3b48246edf4e40f143c648757255204b6787f416b5f42926
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.8.0 (2022-10-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.7.0 (2022-06-23)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* 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.
|
13
|
+
|
4
14
|
1.6.0 (2022-05-10)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.8.0
|
@@ -30,7 +30,7 @@ require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
30
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
31
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
33
|
-
require 'aws-sdk-core/plugins/
|
33
|
+
require 'aws-sdk-core/plugins/sign.rb'
|
34
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
35
35
|
|
36
36
|
Aws::Plugins::GlobalConfiguration.add_identifier(:migrationhubrefactorspaces)
|
@@ -79,8 +79,9 @@ module Aws::MigrationHubRefactorSpaces
|
|
79
79
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
80
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
82
|
-
add_plugin(Aws::Plugins::
|
82
|
+
add_plugin(Aws::Plugins::Sign)
|
83
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
84
|
+
add_plugin(Aws::MigrationHubRefactorSpaces::Plugins::Endpoints)
|
84
85
|
|
85
86
|
# @overload initialize(options)
|
86
87
|
# @param [Hash] options
|
@@ -287,6 +288,19 @@ module Aws::MigrationHubRefactorSpaces
|
|
287
288
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
288
289
|
# requests are made, and retries are disabled.
|
289
290
|
#
|
291
|
+
# @option options [Aws::TokenProvider] :token_provider
|
292
|
+
# A Bearer Token Provider. This can be an instance of any one of the
|
293
|
+
# following classes:
|
294
|
+
#
|
295
|
+
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
296
|
+
# tokens.
|
297
|
+
#
|
298
|
+
# * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
|
299
|
+
# access token generated from `aws login`.
|
300
|
+
#
|
301
|
+
# When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
|
302
|
+
# will be used to search for tokens configured for your profile in shared configuration files.
|
303
|
+
#
|
290
304
|
# @option options [Boolean] :use_dualstack_endpoint
|
291
305
|
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
292
306
|
# will be used if available.
|
@@ -300,6 +314,9 @@ module Aws::MigrationHubRefactorSpaces
|
|
300
314
|
# When `true`, request parameters are validated before
|
301
315
|
# sending the request.
|
302
316
|
#
|
317
|
+
# @option options [Aws::MigrationHubRefactorSpaces::EndpointProvider] :endpoint_provider
|
318
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::MigrationHubRefactorSpaces::EndpointParameters`
|
319
|
+
#
|
303
320
|
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
304
321
|
# requests through. Formatted like 'http://proxy.com:123'.
|
305
322
|
#
|
@@ -531,6 +548,12 @@ module Aws::MigrationHubRefactorSpaces
|
|
531
548
|
# routes, then the first route must be created as a `DEFAULT`
|
532
549
|
# `RouteType`.
|
533
550
|
#
|
551
|
+
# When created, the default route defaults to an active state so state
|
552
|
+
# is not a required input. However, like all other state values the
|
553
|
+
# state of the default route can be updated after creation, but only
|
554
|
+
# when all other routes are also inactive. Conversely, no route can be
|
555
|
+
# active without the default route also being active.
|
556
|
+
#
|
534
557
|
# When you create a route, Refactor Spaces configures the Amazon API
|
535
558
|
# Gateway to send traffic to the target service as follows:
|
536
559
|
#
|
@@ -546,9 +569,12 @@ module Aws::MigrationHubRefactorSpaces
|
|
546
569
|
# configures the Lambda function's resource policy to allow the
|
547
570
|
# application's API Gateway to invoke the function.
|
548
571
|
#
|
549
|
-
# A one-time health check is performed on the service when the
|
550
|
-
#
|
551
|
-
#
|
572
|
+
# A one-time health check is performed on the service when either the
|
573
|
+
# route is updated from inactive to active, or when it is created with
|
574
|
+
# an active state. If the health check fails, the route transitions the
|
575
|
+
# route state to `FAILED`, an error code of
|
576
|
+
# `SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE` is provided, and no traffic is
|
577
|
+
# sent to the service.
|
552
578
|
#
|
553
579
|
# For Lambda functions, the Lambda function state is checked. If the
|
554
580
|
# function is not active, the function configuration is updated so that
|
@@ -557,21 +583,24 @@ module Aws::MigrationHubRefactorSpaces
|
|
557
583
|
# [GetFunctionConfiguration's State response parameter][1] in the
|
558
584
|
# *Lambda Developer Guide*.
|
559
585
|
#
|
560
|
-
# For
|
561
|
-
#
|
562
|
-
#
|
563
|
-
#
|
564
|
-
#
|
565
|
-
#
|
566
|
-
#
|
567
|
-
#
|
586
|
+
# For Lambda endpoints, a check is performed to determine that a Lambda
|
587
|
+
# function with the specified ARN exists. If it does not exist, the
|
588
|
+
# health check fails. For public URLs, a connection is opened to the
|
589
|
+
# public endpoint. If the URL is not reachable, the health check fails.
|
590
|
+
#
|
591
|
+
# For private URLS, a target group is created on the Elastic Load
|
592
|
+
# Balancing and the target group health check is run. The
|
593
|
+
# `HealthCheckProtocol`, `HealthCheckPort`, and `HealthCheckPath` are
|
594
|
+
# the same protocol, port, and path specified in the URL or health URL,
|
595
|
+
# if used. All other settings use the default values, as described in
|
596
|
+
# [Health checks for your target groups][2]. The health check is
|
568
597
|
# considered successful if at least one target within the target group
|
569
598
|
# transitions to a healthy state.
|
570
599
|
#
|
571
600
|
# Services can have HTTP or HTTPS URL endpoints. For HTTPS URLs,
|
572
601
|
# publicly-signed certificates are supported. Private Certificate
|
573
|
-
# Authorities (CAs) are permitted only if the CA's domain is
|
574
|
-
# resolvable.
|
602
|
+
# Authorities (CAs) are permitted only if the CA's domain is also
|
603
|
+
# publicly resolvable.
|
575
604
|
#
|
576
605
|
#
|
577
606
|
#
|
@@ -588,6 +617,9 @@ module Aws::MigrationHubRefactorSpaces
|
|
588
617
|
# **A suitable default value is auto-generated.** You should normally
|
589
618
|
# not need to pass this option.**
|
590
619
|
#
|
620
|
+
# @option params [Types::DefaultRouteInput] :default_route
|
621
|
+
# Configuration for the default route type.
|
622
|
+
#
|
591
623
|
# @option params [required, String] :environment_identifier
|
592
624
|
# The ID of the environment in which the route is created.
|
593
625
|
#
|
@@ -629,6 +661,9 @@ module Aws::MigrationHubRefactorSpaces
|
|
629
661
|
# resp = client.create_route({
|
630
662
|
# application_identifier: "ApplicationId", # required
|
631
663
|
# client_token: "ClientToken",
|
664
|
+
# default_route: {
|
665
|
+
# activation_state: "ACTIVE", # accepts ACTIVE, INACTIVE
|
666
|
+
# },
|
632
667
|
# environment_identifier: "EnvironmentId", # required
|
633
668
|
# route_type: "DEFAULT", # required, accepts DEFAULT, URI_PATH
|
634
669
|
# service_identifier: "ServiceId", # required
|
@@ -636,7 +671,7 @@ module Aws::MigrationHubRefactorSpaces
|
|
636
671
|
# "TagMapKeyString" => "TagMapValueString",
|
637
672
|
# },
|
638
673
|
# uri_path_route: {
|
639
|
-
# activation_state: "ACTIVE", # required, accepts ACTIVE
|
674
|
+
# activation_state: "ACTIVE", # required, accepts ACTIVE, INACTIVE
|
640
675
|
# include_child_paths: false,
|
641
676
|
# methods: ["DELETE"], # accepts DELETE, GET, HEAD, OPTIONS, PATCH, POST, PUT
|
642
677
|
# source_path: "UriPath", # required
|
@@ -657,7 +692,7 @@ module Aws::MigrationHubRefactorSpaces
|
|
657
692
|
# resp.state #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED", "UPDATING", "INACTIVE"
|
658
693
|
# resp.tags #=> Hash
|
659
694
|
# resp.tags["TagMapKeyString"] #=> String
|
660
|
-
# resp.uri_path_route.activation_state #=> String, one of "ACTIVE"
|
695
|
+
# resp.uri_path_route.activation_state #=> String, one of "ACTIVE", "INACTIVE"
|
661
696
|
# resp.uri_path_route.include_child_paths #=> Boolean
|
662
697
|
# resp.uri_path_route.methods #=> Array
|
663
698
|
# resp.uri_path_route.methods[0] #=> String, one of "DELETE", "GET", "HEAD", "OPTIONS", "PATCH", "POST", "PUT"
|
@@ -1707,7 +1742,7 @@ module Aws::MigrationHubRefactorSpaces
|
|
1707
1742
|
# </note>
|
1708
1743
|
#
|
1709
1744
|
# @option params [required, String] :resource_arn
|
1710
|
-
# The Amazon Resource Name (ARN) of the resource
|
1745
|
+
# The Amazon Resource Name (ARN) of the resource.
|
1711
1746
|
#
|
1712
1747
|
# @option params [required, Hash<String,String>] :tags
|
1713
1748
|
# The new or modified tags for the resource.
|
@@ -1761,6 +1796,57 @@ module Aws::MigrationHubRefactorSpaces
|
|
1761
1796
|
req.send_request(options)
|
1762
1797
|
end
|
1763
1798
|
|
1799
|
+
# Updates an Amazon Web Services Migration Hub Refactor Spaces route.
|
1800
|
+
#
|
1801
|
+
# @option params [required, String] :activation_state
|
1802
|
+
# If set to `ACTIVE`, traffic is forwarded to this route’s service after
|
1803
|
+
# the route is updated.
|
1804
|
+
#
|
1805
|
+
# @option params [required, String] :application_identifier
|
1806
|
+
# The ID of the application within which the route is being updated.
|
1807
|
+
#
|
1808
|
+
# @option params [required, String] :environment_identifier
|
1809
|
+
# The ID of the environment in which the route is being updated.
|
1810
|
+
#
|
1811
|
+
# @option params [required, String] :route_identifier
|
1812
|
+
# The unique identifier of the route to update.
|
1813
|
+
#
|
1814
|
+
# @return [Types::UpdateRouteResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1815
|
+
#
|
1816
|
+
# * {Types::UpdateRouteResponse#application_id #application_id} => String
|
1817
|
+
# * {Types::UpdateRouteResponse#arn #arn} => String
|
1818
|
+
# * {Types::UpdateRouteResponse#last_updated_time #last_updated_time} => Time
|
1819
|
+
# * {Types::UpdateRouteResponse#route_id #route_id} => String
|
1820
|
+
# * {Types::UpdateRouteResponse#service_id #service_id} => String
|
1821
|
+
# * {Types::UpdateRouteResponse#state #state} => String
|
1822
|
+
#
|
1823
|
+
# @example Request syntax with placeholder values
|
1824
|
+
#
|
1825
|
+
# resp = client.update_route({
|
1826
|
+
# activation_state: "ACTIVE", # required, accepts ACTIVE, INACTIVE
|
1827
|
+
# application_identifier: "ApplicationId", # required
|
1828
|
+
# environment_identifier: "EnvironmentId", # required
|
1829
|
+
# route_identifier: "RouteId", # required
|
1830
|
+
# })
|
1831
|
+
#
|
1832
|
+
# @example Response structure
|
1833
|
+
#
|
1834
|
+
# resp.application_id #=> String
|
1835
|
+
# resp.arn #=> String
|
1836
|
+
# resp.last_updated_time #=> Time
|
1837
|
+
# resp.route_id #=> String
|
1838
|
+
# resp.service_id #=> String
|
1839
|
+
# resp.state #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED", "UPDATING", "INACTIVE"
|
1840
|
+
#
|
1841
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/migration-hub-refactor-spaces-2021-10-26/UpdateRoute AWS API Documentation
|
1842
|
+
#
|
1843
|
+
# @overload update_route(params = {})
|
1844
|
+
# @param [Hash] params ({})
|
1845
|
+
def update_route(params = {}, options = {})
|
1846
|
+
req = build_request(:update_route, params)
|
1847
|
+
req.send_request(options)
|
1848
|
+
end
|
1849
|
+
|
1764
1850
|
# @!endgroup
|
1765
1851
|
|
1766
1852
|
# @param params ({})
|
@@ -1774,7 +1860,7 @@ module Aws::MigrationHubRefactorSpaces
|
|
1774
1860
|
params: params,
|
1775
1861
|
config: config)
|
1776
1862
|
context[:gem_name] = 'aws-sdk-migrationhubrefactorspaces'
|
1777
|
-
context[:gem_version] = '1.
|
1863
|
+
context[:gem_version] = '1.8.0'
|
1778
1864
|
Seahorse::Client::Request.new(handlers, context)
|
1779
1865
|
end
|
1780
1866
|
|
@@ -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
|
@@ -0,0 +1,66 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
module Aws::MigrationHubRefactorSpaces
|
11
|
+
# Endpoint parameters used to influence endpoints per request.
|
12
|
+
#
|
13
|
+
# @!attribute region
|
14
|
+
# The AWS region used to dispatch the request.
|
15
|
+
#
|
16
|
+
# @return [String]
|
17
|
+
#
|
18
|
+
# @!attribute use_dual_stack
|
19
|
+
# When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
|
20
|
+
#
|
21
|
+
# @return [Boolean]
|
22
|
+
#
|
23
|
+
# @!attribute use_fips
|
24
|
+
# When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
|
25
|
+
#
|
26
|
+
# @return [Boolean]
|
27
|
+
#
|
28
|
+
# @!attribute endpoint
|
29
|
+
# Override the endpoint used to send this request
|
30
|
+
#
|
31
|
+
# @return [String]
|
32
|
+
#
|
33
|
+
EndpointParameters = Struct.new(
|
34
|
+
:region,
|
35
|
+
:use_dual_stack,
|
36
|
+
:use_fips,
|
37
|
+
:endpoint,
|
38
|
+
) do
|
39
|
+
include Aws::Structure
|
40
|
+
|
41
|
+
# @api private
|
42
|
+
class << self
|
43
|
+
PARAM_MAP = {
|
44
|
+
'Region' => :region,
|
45
|
+
'UseDualStack' => :use_dual_stack,
|
46
|
+
'UseFIPS' => :use_fips,
|
47
|
+
'Endpoint' => :endpoint,
|
48
|
+
}.freeze
|
49
|
+
end
|
50
|
+
|
51
|
+
def initialize(options = {})
|
52
|
+
self[:region] = options[:region]
|
53
|
+
self[:use_dual_stack] = options[:use_dual_stack]
|
54
|
+
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
55
|
+
if self[:use_dual_stack].nil?
|
56
|
+
raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
|
57
|
+
end
|
58
|
+
self[:use_fips] = options[:use_fips]
|
59
|
+
self[:use_fips] = false if self[:use_fips].nil?
|
60
|
+
if self[:use_fips].nil?
|
61
|
+
raise ArgumentError, "Missing required EndpointParameter: :use_fips"
|
62
|
+
end
|
63
|
+
self[:endpoint] = options[:endpoint]
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
@@ -0,0 +1,111 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
module Aws::MigrationHubRefactorSpaces
|
11
|
+
class EndpointProvider
|
12
|
+
def initialize(rule_set = nil)
|
13
|
+
@@rule_set ||= begin
|
14
|
+
endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
|
15
|
+
Aws::Endpoints::RuleSet.new(
|
16
|
+
version: endpoint_rules['version'],
|
17
|
+
service_id: endpoint_rules['serviceId'],
|
18
|
+
parameters: endpoint_rules['parameters'],
|
19
|
+
rules: endpoint_rules['rules']
|
20
|
+
)
|
21
|
+
end
|
22
|
+
@provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
|
23
|
+
end
|
24
|
+
|
25
|
+
def resolve_endpoint(parameters)
|
26
|
+
@provider.resolve_endpoint(parameters)
|
27
|
+
end
|
28
|
+
|
29
|
+
# @api private
|
30
|
+
RULES = <<-JSON
|
31
|
+
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
+
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
|
33
|
+
dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
|
34
|
+
cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
|
35
|
+
dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
|
36
|
+
ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
|
37
|
+
ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
|
38
|
+
ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
|
39
|
+
aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
|
40
|
+
OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
|
41
|
+
UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
|
42
|
+
dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
|
43
|
+
UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
|
44
|
+
dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
|
45
|
+
ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
|
46
|
+
IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
|
47
|
+
aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
|
48
|
+
bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
|
49
|
+
ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
|
50
|
+
Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
|
51
|
+
cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
|
52
|
+
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
53
|
+
aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
|
54
|
+
cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
|
55
|
+
InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
|
56
|
+
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
57
|
+
UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
|
58
|
+
SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
|
59
|
+
eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
|
60
|
+
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
61
|
+
LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
|
62
|
+
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
|
63
|
+
b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
|
64
|
+
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
|
65
|
+
RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
66
|
+
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
67
|
+
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
68
|
+
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
69
|
+
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
70
|
+
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
71
|
+
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
72
|
+
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
73
|
+
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
74
|
+
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
75
|
+
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
76
|
+
dCI6eyJ1cmwiOiJodHRwczovL3JlZmFjdG9yLXNwYWNlcy1maXBzLntSZWdp
|
77
|
+
b259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInBy
|
78
|
+
b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
|
79
|
+
XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3Rh
|
80
|
+
Y2sgYXJlIGVuYWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBz
|
81
|
+
dXBwb3J0IG9uZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRp
|
82
|
+
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6
|
83
|
+
IlVzZUZJUFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJj
|
84
|
+
b25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1
|
85
|
+
ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJl
|
86
|
+
c3VsdCJ9LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVs
|
87
|
+
ZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRw
|
88
|
+
czovL3JlZmFjdG9yLXNwYWNlcy1maXBzLntSZWdpb259LntQYXJ0aXRpb25S
|
89
|
+
ZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7
|
90
|
+
fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJy
|
91
|
+
b3IiOiJGSVBTIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMg
|
92
|
+
bm90IHN1cHBvcnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRp
|
93
|
+
b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJV
|
94
|
+
c2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpb
|
95
|
+
eyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2Ijpb
|
96
|
+
dHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlv
|
97
|
+
blJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRy
|
98
|
+
ZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVy
|
99
|
+
bCI6Imh0dHBzOi8vcmVmYWN0b3Itc3BhY2VzLntSZWdpb259LntQYXJ0aXRp
|
100
|
+
b25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9
|
101
|
+
LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRp
|
102
|
+
b25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhp
|
103
|
+
cyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBl
|
104
|
+
IjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVy
|
105
|
+
bCI6Imh0dHBzOi8vcmVmYWN0b3Itc3BhY2VzLntSZWdpb259LntQYXJ0aXRp
|
106
|
+
b25SZXN1bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJz
|
107
|
+
Ijp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
|
108
|
+
|
109
|
+
JSON
|
110
|
+
end
|
111
|
+
end
|
@@ -0,0 +1,351 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
|
11
|
+
module Aws::MigrationHubRefactorSpaces
|
12
|
+
module Endpoints
|
13
|
+
|
14
|
+
class CreateApplication
|
15
|
+
def self.build(context)
|
16
|
+
unless context.config.regional_endpoint
|
17
|
+
endpoint = context.config.endpoint.to_s
|
18
|
+
end
|
19
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
20
|
+
region: context.config.region,
|
21
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
22
|
+
use_fips: context.config.use_fips_endpoint,
|
23
|
+
endpoint: endpoint,
|
24
|
+
)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
class CreateEnvironment
|
29
|
+
def self.build(context)
|
30
|
+
unless context.config.regional_endpoint
|
31
|
+
endpoint = context.config.endpoint.to_s
|
32
|
+
end
|
33
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
34
|
+
region: context.config.region,
|
35
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
36
|
+
use_fips: context.config.use_fips_endpoint,
|
37
|
+
endpoint: endpoint,
|
38
|
+
)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
class CreateRoute
|
43
|
+
def self.build(context)
|
44
|
+
unless context.config.regional_endpoint
|
45
|
+
endpoint = context.config.endpoint.to_s
|
46
|
+
end
|
47
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
48
|
+
region: context.config.region,
|
49
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
50
|
+
use_fips: context.config.use_fips_endpoint,
|
51
|
+
endpoint: endpoint,
|
52
|
+
)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
class CreateService
|
57
|
+
def self.build(context)
|
58
|
+
unless context.config.regional_endpoint
|
59
|
+
endpoint = context.config.endpoint.to_s
|
60
|
+
end
|
61
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
62
|
+
region: context.config.region,
|
63
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
64
|
+
use_fips: context.config.use_fips_endpoint,
|
65
|
+
endpoint: endpoint,
|
66
|
+
)
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
class DeleteApplication
|
71
|
+
def self.build(context)
|
72
|
+
unless context.config.regional_endpoint
|
73
|
+
endpoint = context.config.endpoint.to_s
|
74
|
+
end
|
75
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
76
|
+
region: context.config.region,
|
77
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
78
|
+
use_fips: context.config.use_fips_endpoint,
|
79
|
+
endpoint: endpoint,
|
80
|
+
)
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
class DeleteEnvironment
|
85
|
+
def self.build(context)
|
86
|
+
unless context.config.regional_endpoint
|
87
|
+
endpoint = context.config.endpoint.to_s
|
88
|
+
end
|
89
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
90
|
+
region: context.config.region,
|
91
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
92
|
+
use_fips: context.config.use_fips_endpoint,
|
93
|
+
endpoint: endpoint,
|
94
|
+
)
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
class DeleteResourcePolicy
|
99
|
+
def self.build(context)
|
100
|
+
unless context.config.regional_endpoint
|
101
|
+
endpoint = context.config.endpoint.to_s
|
102
|
+
end
|
103
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
104
|
+
region: context.config.region,
|
105
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
106
|
+
use_fips: context.config.use_fips_endpoint,
|
107
|
+
endpoint: endpoint,
|
108
|
+
)
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
class DeleteRoute
|
113
|
+
def self.build(context)
|
114
|
+
unless context.config.regional_endpoint
|
115
|
+
endpoint = context.config.endpoint.to_s
|
116
|
+
end
|
117
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
118
|
+
region: context.config.region,
|
119
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
120
|
+
use_fips: context.config.use_fips_endpoint,
|
121
|
+
endpoint: endpoint,
|
122
|
+
)
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
class DeleteService
|
127
|
+
def self.build(context)
|
128
|
+
unless context.config.regional_endpoint
|
129
|
+
endpoint = context.config.endpoint.to_s
|
130
|
+
end
|
131
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
132
|
+
region: context.config.region,
|
133
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
134
|
+
use_fips: context.config.use_fips_endpoint,
|
135
|
+
endpoint: endpoint,
|
136
|
+
)
|
137
|
+
end
|
138
|
+
end
|
139
|
+
|
140
|
+
class GetApplication
|
141
|
+
def self.build(context)
|
142
|
+
unless context.config.regional_endpoint
|
143
|
+
endpoint = context.config.endpoint.to_s
|
144
|
+
end
|
145
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
146
|
+
region: context.config.region,
|
147
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
148
|
+
use_fips: context.config.use_fips_endpoint,
|
149
|
+
endpoint: endpoint,
|
150
|
+
)
|
151
|
+
end
|
152
|
+
end
|
153
|
+
|
154
|
+
class GetEnvironment
|
155
|
+
def self.build(context)
|
156
|
+
unless context.config.regional_endpoint
|
157
|
+
endpoint = context.config.endpoint.to_s
|
158
|
+
end
|
159
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
160
|
+
region: context.config.region,
|
161
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
162
|
+
use_fips: context.config.use_fips_endpoint,
|
163
|
+
endpoint: endpoint,
|
164
|
+
)
|
165
|
+
end
|
166
|
+
end
|
167
|
+
|
168
|
+
class GetResourcePolicy
|
169
|
+
def self.build(context)
|
170
|
+
unless context.config.regional_endpoint
|
171
|
+
endpoint = context.config.endpoint.to_s
|
172
|
+
end
|
173
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
174
|
+
region: context.config.region,
|
175
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
176
|
+
use_fips: context.config.use_fips_endpoint,
|
177
|
+
endpoint: endpoint,
|
178
|
+
)
|
179
|
+
end
|
180
|
+
end
|
181
|
+
|
182
|
+
class GetRoute
|
183
|
+
def self.build(context)
|
184
|
+
unless context.config.regional_endpoint
|
185
|
+
endpoint = context.config.endpoint.to_s
|
186
|
+
end
|
187
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
188
|
+
region: context.config.region,
|
189
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
190
|
+
use_fips: context.config.use_fips_endpoint,
|
191
|
+
endpoint: endpoint,
|
192
|
+
)
|
193
|
+
end
|
194
|
+
end
|
195
|
+
|
196
|
+
class GetService
|
197
|
+
def self.build(context)
|
198
|
+
unless context.config.regional_endpoint
|
199
|
+
endpoint = context.config.endpoint.to_s
|
200
|
+
end
|
201
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
202
|
+
region: context.config.region,
|
203
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
204
|
+
use_fips: context.config.use_fips_endpoint,
|
205
|
+
endpoint: endpoint,
|
206
|
+
)
|
207
|
+
end
|
208
|
+
end
|
209
|
+
|
210
|
+
class ListApplications
|
211
|
+
def self.build(context)
|
212
|
+
unless context.config.regional_endpoint
|
213
|
+
endpoint = context.config.endpoint.to_s
|
214
|
+
end
|
215
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
216
|
+
region: context.config.region,
|
217
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
218
|
+
use_fips: context.config.use_fips_endpoint,
|
219
|
+
endpoint: endpoint,
|
220
|
+
)
|
221
|
+
end
|
222
|
+
end
|
223
|
+
|
224
|
+
class ListEnvironmentVpcs
|
225
|
+
def self.build(context)
|
226
|
+
unless context.config.regional_endpoint
|
227
|
+
endpoint = context.config.endpoint.to_s
|
228
|
+
end
|
229
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
230
|
+
region: context.config.region,
|
231
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
232
|
+
use_fips: context.config.use_fips_endpoint,
|
233
|
+
endpoint: endpoint,
|
234
|
+
)
|
235
|
+
end
|
236
|
+
end
|
237
|
+
|
238
|
+
class ListEnvironments
|
239
|
+
def self.build(context)
|
240
|
+
unless context.config.regional_endpoint
|
241
|
+
endpoint = context.config.endpoint.to_s
|
242
|
+
end
|
243
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
244
|
+
region: context.config.region,
|
245
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
246
|
+
use_fips: context.config.use_fips_endpoint,
|
247
|
+
endpoint: endpoint,
|
248
|
+
)
|
249
|
+
end
|
250
|
+
end
|
251
|
+
|
252
|
+
class ListRoutes
|
253
|
+
def self.build(context)
|
254
|
+
unless context.config.regional_endpoint
|
255
|
+
endpoint = context.config.endpoint.to_s
|
256
|
+
end
|
257
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
258
|
+
region: context.config.region,
|
259
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
260
|
+
use_fips: context.config.use_fips_endpoint,
|
261
|
+
endpoint: endpoint,
|
262
|
+
)
|
263
|
+
end
|
264
|
+
end
|
265
|
+
|
266
|
+
class ListServices
|
267
|
+
def self.build(context)
|
268
|
+
unless context.config.regional_endpoint
|
269
|
+
endpoint = context.config.endpoint.to_s
|
270
|
+
end
|
271
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
272
|
+
region: context.config.region,
|
273
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
274
|
+
use_fips: context.config.use_fips_endpoint,
|
275
|
+
endpoint: endpoint,
|
276
|
+
)
|
277
|
+
end
|
278
|
+
end
|
279
|
+
|
280
|
+
class ListTagsForResource
|
281
|
+
def self.build(context)
|
282
|
+
unless context.config.regional_endpoint
|
283
|
+
endpoint = context.config.endpoint.to_s
|
284
|
+
end
|
285
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
286
|
+
region: context.config.region,
|
287
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
288
|
+
use_fips: context.config.use_fips_endpoint,
|
289
|
+
endpoint: endpoint,
|
290
|
+
)
|
291
|
+
end
|
292
|
+
end
|
293
|
+
|
294
|
+
class PutResourcePolicy
|
295
|
+
def self.build(context)
|
296
|
+
unless context.config.regional_endpoint
|
297
|
+
endpoint = context.config.endpoint.to_s
|
298
|
+
end
|
299
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
300
|
+
region: context.config.region,
|
301
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
302
|
+
use_fips: context.config.use_fips_endpoint,
|
303
|
+
endpoint: endpoint,
|
304
|
+
)
|
305
|
+
end
|
306
|
+
end
|
307
|
+
|
308
|
+
class TagResource
|
309
|
+
def self.build(context)
|
310
|
+
unless context.config.regional_endpoint
|
311
|
+
endpoint = context.config.endpoint.to_s
|
312
|
+
end
|
313
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
314
|
+
region: context.config.region,
|
315
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
316
|
+
use_fips: context.config.use_fips_endpoint,
|
317
|
+
endpoint: endpoint,
|
318
|
+
)
|
319
|
+
end
|
320
|
+
end
|
321
|
+
|
322
|
+
class UntagResource
|
323
|
+
def self.build(context)
|
324
|
+
unless context.config.regional_endpoint
|
325
|
+
endpoint = context.config.endpoint.to_s
|
326
|
+
end
|
327
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
328
|
+
region: context.config.region,
|
329
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
330
|
+
use_fips: context.config.use_fips_endpoint,
|
331
|
+
endpoint: endpoint,
|
332
|
+
)
|
333
|
+
end
|
334
|
+
end
|
335
|
+
|
336
|
+
class UpdateRoute
|
337
|
+
def self.build(context)
|
338
|
+
unless context.config.regional_endpoint
|
339
|
+
endpoint = context.config.endpoint.to_s
|
340
|
+
end
|
341
|
+
Aws::MigrationHubRefactorSpaces::EndpointParameters.new(
|
342
|
+
region: context.config.region,
|
343
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
344
|
+
use_fips: context.config.use_fips_endpoint,
|
345
|
+
endpoint: endpoint,
|
346
|
+
)
|
347
|
+
end
|
348
|
+
end
|
349
|
+
|
350
|
+
end
|
351
|
+
end
|
@@ -0,0 +1,116 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
|
11
|
+
module Aws::MigrationHubRefactorSpaces
|
12
|
+
module Plugins
|
13
|
+
class Endpoints < Seahorse::Client::Plugin
|
14
|
+
option(
|
15
|
+
:endpoint_provider,
|
16
|
+
doc_type: 'Aws::MigrationHubRefactorSpaces::EndpointProvider',
|
17
|
+
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
|
+
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
|
+
'where `parameters` is a Struct similar to '\
|
20
|
+
'`Aws::MigrationHubRefactorSpaces::EndpointParameters`'
|
21
|
+
) do |cfg|
|
22
|
+
Aws::MigrationHubRefactorSpaces::EndpointProvider.new
|
23
|
+
end
|
24
|
+
|
25
|
+
# @api private
|
26
|
+
class Handler < Seahorse::Client::Handler
|
27
|
+
def call(context)
|
28
|
+
# If endpoint was discovered, do not resolve or apply the endpoint.
|
29
|
+
unless context[:discovered_endpoint]
|
30
|
+
params = parameters_for_operation(context)
|
31
|
+
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
|
+
|
33
|
+
context.http_request.endpoint = endpoint.url
|
34
|
+
apply_endpoint_headers(context, endpoint.headers)
|
35
|
+
end
|
36
|
+
|
37
|
+
context[:endpoint_params] = params
|
38
|
+
context[:auth_scheme] =
|
39
|
+
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
40
|
+
|
41
|
+
@handler.call(context)
|
42
|
+
end
|
43
|
+
|
44
|
+
private
|
45
|
+
|
46
|
+
def apply_endpoint_headers(context, headers)
|
47
|
+
headers.each do |key, values|
|
48
|
+
value = values
|
49
|
+
.compact
|
50
|
+
.map { |s| Seahorse::Util.escape_header_list_string(s.to_s) }
|
51
|
+
.join(',')
|
52
|
+
|
53
|
+
context.http_request.headers[key] = value
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
def parameters_for_operation(context)
|
58
|
+
case context.operation_name
|
59
|
+
when :create_application
|
60
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::CreateApplication.build(context)
|
61
|
+
when :create_environment
|
62
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::CreateEnvironment.build(context)
|
63
|
+
when :create_route
|
64
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::CreateRoute.build(context)
|
65
|
+
when :create_service
|
66
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::CreateService.build(context)
|
67
|
+
when :delete_application
|
68
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::DeleteApplication.build(context)
|
69
|
+
when :delete_environment
|
70
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::DeleteEnvironment.build(context)
|
71
|
+
when :delete_resource_policy
|
72
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::DeleteResourcePolicy.build(context)
|
73
|
+
when :delete_route
|
74
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::DeleteRoute.build(context)
|
75
|
+
when :delete_service
|
76
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::DeleteService.build(context)
|
77
|
+
when :get_application
|
78
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::GetApplication.build(context)
|
79
|
+
when :get_environment
|
80
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::GetEnvironment.build(context)
|
81
|
+
when :get_resource_policy
|
82
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::GetResourcePolicy.build(context)
|
83
|
+
when :get_route
|
84
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::GetRoute.build(context)
|
85
|
+
when :get_service
|
86
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::GetService.build(context)
|
87
|
+
when :list_applications
|
88
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::ListApplications.build(context)
|
89
|
+
when :list_environment_vpcs
|
90
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::ListEnvironmentVpcs.build(context)
|
91
|
+
when :list_environments
|
92
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::ListEnvironments.build(context)
|
93
|
+
when :list_routes
|
94
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::ListRoutes.build(context)
|
95
|
+
when :list_services
|
96
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::ListServices.build(context)
|
97
|
+
when :list_tags_for_resource
|
98
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::ListTagsForResource.build(context)
|
99
|
+
when :put_resource_policy
|
100
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::PutResourcePolicy.build(context)
|
101
|
+
when :tag_resource
|
102
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::TagResource.build(context)
|
103
|
+
when :untag_resource
|
104
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::UntagResource.build(context)
|
105
|
+
when :update_route
|
106
|
+
Aws::MigrationHubRefactorSpaces::Endpoints::UpdateRoute.build(context)
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
def add_handlers(handlers, _config)
|
112
|
+
handlers.add(Handler, step: :build, priority: 75)
|
113
|
+
end
|
114
|
+
end
|
115
|
+
end
|
116
|
+
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
|
-
#
|
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
|
-
#
|
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
|
@@ -13,9 +13,13 @@ require 'aws-sigv4'
|
|
13
13
|
|
14
14
|
require_relative 'aws-sdk-migrationhubrefactorspaces/types'
|
15
15
|
require_relative 'aws-sdk-migrationhubrefactorspaces/client_api'
|
16
|
+
require_relative 'aws-sdk-migrationhubrefactorspaces/plugins/endpoints.rb'
|
16
17
|
require_relative 'aws-sdk-migrationhubrefactorspaces/client'
|
17
18
|
require_relative 'aws-sdk-migrationhubrefactorspaces/errors'
|
18
19
|
require_relative 'aws-sdk-migrationhubrefactorspaces/resource'
|
20
|
+
require_relative 'aws-sdk-migrationhubrefactorspaces/endpoint_parameters'
|
21
|
+
require_relative 'aws-sdk-migrationhubrefactorspaces/endpoint_provider'
|
22
|
+
require_relative 'aws-sdk-migrationhubrefactorspaces/endpoints'
|
19
23
|
require_relative 'aws-sdk-migrationhubrefactorspaces/customizations'
|
20
24
|
|
21
25
|
# This module provides support for AWS Migration Hub Refactor Spaces. This module is available in the
|
@@ -48,6 +52,6 @@ require_relative 'aws-sdk-migrationhubrefactorspaces/customizations'
|
|
48
52
|
# @!group service
|
49
53
|
module Aws::MigrationHubRefactorSpaces
|
50
54
|
|
51
|
-
GEM_VERSION = '1.
|
55
|
+
GEM_VERSION = '1.8.0'
|
52
56
|
|
53
57
|
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.
|
4
|
+
version: 1.8.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-
|
11
|
+
date: 2022-10-25 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.165.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.165.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -59,7 +59,11 @@ files:
|
|
59
59
|
- lib/aws-sdk-migrationhubrefactorspaces/client.rb
|
60
60
|
- lib/aws-sdk-migrationhubrefactorspaces/client_api.rb
|
61
61
|
- lib/aws-sdk-migrationhubrefactorspaces/customizations.rb
|
62
|
+
- lib/aws-sdk-migrationhubrefactorspaces/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-migrationhubrefactorspaces/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-migrationhubrefactorspaces/endpoints.rb
|
62
65
|
- lib/aws-sdk-migrationhubrefactorspaces/errors.rb
|
66
|
+
- lib/aws-sdk-migrationhubrefactorspaces/plugins/endpoints.rb
|
63
67
|
- lib/aws-sdk-migrationhubrefactorspaces/resource.rb
|
64
68
|
- lib/aws-sdk-migrationhubrefactorspaces/types.rb
|
65
69
|
homepage: https://github.com/aws/aws-sdk-ruby
|