aws-sdk-migrationhubrefactorspaces 1.12.0 → 1.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-migrationhubrefactorspaces/client.rb +6 -1
- data/lib/aws-sdk-migrationhubrefactorspaces/client_api.rb +3 -0
- data/lib/aws-sdk-migrationhubrefactorspaces/types.rb +43 -8
- data/lib/aws-sdk-migrationhubrefactorspaces.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 56d19e61b896462ea8dc20e8297bf26cf009b5e35972c0f68f4bfaf0db2f9b23
|
4
|
+
data.tar.gz: 97fd06fc19ed3e736eae702147807eddce82617a28ebdfcdb18e373279a3a8a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 140a3bf3f043bab721c4016a7fdd745d9e52b1398a868ef76a98ba6ab2f2a6f6cdff9d256f0a577c997ff6eeebff4ac3c79386ce9e0a38152c7313846e0a6902
|
7
|
+
data.tar.gz: e47878874f3550cfad3ea9f537a45787514e5f344d371ddef0a4e2661d8ab8a843aa0092507e44c849cdd1167f034b46de07d00ceba6564a7d029a6b9c6db7b7
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.13.0 (2023-05-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This SDK update allows for path parameter syntax to be passed to the CreateRoute API. Path parameter syntax require parameters to be enclosed in {} characters. This update also includes a new AppendSourcePath field which lets users forward the source path to the Service URL endpoint.
|
8
|
+
|
4
9
|
1.12.0 (2023-04-14)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.13.0
|
@@ -730,6 +730,7 @@ module Aws::MigrationHubRefactorSpaces
|
|
730
730
|
# },
|
731
731
|
# uri_path_route: {
|
732
732
|
# activation_state: "ACTIVE", # required, accepts ACTIVE, INACTIVE
|
733
|
+
# append_source_path: false,
|
733
734
|
# include_child_paths: false,
|
734
735
|
# methods: ["DELETE"], # accepts DELETE, GET, HEAD, OPTIONS, PATCH, POST, PUT
|
735
736
|
# source_path: "UriPath", # required
|
@@ -751,6 +752,7 @@ module Aws::MigrationHubRefactorSpaces
|
|
751
752
|
# resp.tags #=> Hash
|
752
753
|
# resp.tags["TagMapKeyString"] #=> String
|
753
754
|
# resp.uri_path_route.activation_state #=> String, one of "ACTIVE", "INACTIVE"
|
755
|
+
# resp.uri_path_route.append_source_path #=> Boolean
|
754
756
|
# resp.uri_path_route.include_child_paths #=> Boolean
|
755
757
|
# resp.uri_path_route.methods #=> Array
|
756
758
|
# resp.uri_path_route.methods[0] #=> String, one of "DELETE", "GET", "HEAD", "OPTIONS", "PATCH", "POST", "PUT"
|
@@ -1264,6 +1266,7 @@ module Aws::MigrationHubRefactorSpaces
|
|
1264
1266
|
#
|
1265
1267
|
# @return [Types::GetRouteResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1266
1268
|
#
|
1269
|
+
# * {Types::GetRouteResponse#append_source_path #append_source_path} => Boolean
|
1267
1270
|
# * {Types::GetRouteResponse#application_id #application_id} => String
|
1268
1271
|
# * {Types::GetRouteResponse#arn #arn} => String
|
1269
1272
|
# * {Types::GetRouteResponse#created_by_account_id #created_by_account_id} => String
|
@@ -1292,6 +1295,7 @@ module Aws::MigrationHubRefactorSpaces
|
|
1292
1295
|
#
|
1293
1296
|
# @example Response structure
|
1294
1297
|
#
|
1298
|
+
# resp.append_source_path #=> Boolean
|
1295
1299
|
# resp.application_id #=> String
|
1296
1300
|
# resp.arn #=> String
|
1297
1301
|
# resp.created_by_account_id #=> String
|
@@ -1620,6 +1624,7 @@ module Aws::MigrationHubRefactorSpaces
|
|
1620
1624
|
#
|
1621
1625
|
# resp.next_token #=> String
|
1622
1626
|
# resp.route_summary_list #=> Array
|
1627
|
+
# resp.route_summary_list[0].append_source_path #=> Boolean
|
1623
1628
|
# resp.route_summary_list[0].application_id #=> String
|
1624
1629
|
# resp.route_summary_list[0].arn #=> String
|
1625
1630
|
# resp.route_summary_list[0].created_by_account_id #=> String
|
@@ -1922,7 +1927,7 @@ module Aws::MigrationHubRefactorSpaces
|
|
1922
1927
|
params: params,
|
1923
1928
|
config: config)
|
1924
1929
|
context[:gem_name] = 'aws-sdk-migrationhubrefactorspaces'
|
1925
|
-
context[:gem_version] = '1.
|
1930
|
+
context[:gem_version] = '1.13.0'
|
1926
1931
|
Seahorse::Client::Request.new(handlers, context)
|
1927
1932
|
end
|
1928
1933
|
|
@@ -440,6 +440,7 @@ module Aws::MigrationHubRefactorSpaces
|
|
440
440
|
GetRouteRequest.add_member(:route_identifier, Shapes::ShapeRef.new(shape: RouteId, required: true, location: "uri", location_name: "RouteIdentifier"))
|
441
441
|
GetRouteRequest.struct_class = Types::GetRouteRequest
|
442
442
|
|
443
|
+
GetRouteResponse.add_member(:append_source_path, Shapes::ShapeRef.new(shape: Boolean, location_name: "AppendSourcePath"))
|
443
444
|
GetRouteResponse.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, location_name: "ApplicationId"))
|
444
445
|
GetRouteResponse.add_member(:arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "Arn"))
|
445
446
|
GetRouteResponse.add_member(:created_by_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "CreatedByAccountId"))
|
@@ -568,6 +569,7 @@ module Aws::MigrationHubRefactorSpaces
|
|
568
569
|
|
569
570
|
RouteSummaries.member = Shapes::ShapeRef.new(shape: RouteSummary)
|
570
571
|
|
572
|
+
RouteSummary.add_member(:append_source_path, Shapes::ShapeRef.new(shape: Boolean, location_name: "AppendSourcePath"))
|
571
573
|
RouteSummary.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, location_name: "ApplicationId"))
|
572
574
|
RouteSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "Arn"))
|
573
575
|
RouteSummary.add_member(:created_by_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "CreatedByAccountId"))
|
@@ -653,6 +655,7 @@ module Aws::MigrationHubRefactorSpaces
|
|
653
655
|
UpdateRouteResponse.struct_class = Types::UpdateRouteResponse
|
654
656
|
|
655
657
|
UriPathRouteInput.add_member(:activation_state, Shapes::ShapeRef.new(shape: RouteActivationState, required: true, location_name: "ActivationState"))
|
658
|
+
UriPathRouteInput.add_member(:append_source_path, Shapes::ShapeRef.new(shape: Boolean, location_name: "AppendSourcePath"))
|
656
659
|
UriPathRouteInput.add_member(:include_child_paths, Shapes::ShapeRef.new(shape: Boolean, location_name: "IncludeChildPaths"))
|
657
660
|
UriPathRouteInput.add_member(:methods, Shapes::ShapeRef.new(shape: HttpMethods, location_name: "Methods"))
|
658
661
|
UriPathRouteInput.add_member(:source_path, Shapes::ShapeRef.new(shape: UriPath, required: true, location_name: "SourcePath"))
|
@@ -79,8 +79,16 @@ module Aws::MigrationHubRefactorSpaces
|
|
79
79
|
# If the value is set to `PRIVATE` in the request, this creates a
|
80
80
|
# private API endpoint that is isolated from the public internet. The
|
81
81
|
# private endpoint can only be accessed by using Amazon Virtual
|
82
|
-
# Private Cloud (Amazon VPC) endpoints for Amazon API
|
83
|
-
#
|
82
|
+
# Private Cloud (Amazon VPC) interface endpoints for the Amazon API
|
83
|
+
# Gateway that has been granted access. For more information about
|
84
|
+
# creating a private connection with Refactor Spaces and interface
|
85
|
+
# endpoint (Amazon Web Services PrivateLink) availability, see [Access
|
86
|
+
# Refactor Spaces using an interface endpoint (Amazon Web Services
|
87
|
+
# PrivateLink)][1].
|
88
|
+
#
|
89
|
+
#
|
90
|
+
#
|
91
|
+
# [1]: https://docs.aws.amazon.com/migrationhub-refactor-spaces/latest/userguide/vpc-interface-endpoints.html
|
84
92
|
# @return [String]
|
85
93
|
#
|
86
94
|
# @!attribute [rw] stage_name
|
@@ -1414,6 +1422,11 @@ module Aws::MigrationHubRefactorSpaces
|
|
1414
1422
|
include Aws::Structure
|
1415
1423
|
end
|
1416
1424
|
|
1425
|
+
# @!attribute [rw] append_source_path
|
1426
|
+
# If set to `true`, this option appends the source path to the service
|
1427
|
+
# URL endpoint.
|
1428
|
+
# @return [Boolean]
|
1429
|
+
#
|
1417
1430
|
# @!attribute [rw] application_id
|
1418
1431
|
# The ID of the application that the route belongs to.
|
1419
1432
|
# @return [String]
|
@@ -1481,8 +1494,11 @@ module Aws::MigrationHubRefactorSpaces
|
|
1481
1494
|
# @return [String]
|
1482
1495
|
#
|
1483
1496
|
# @!attribute [rw] source_path
|
1484
|
-
#
|
1485
|
-
# relative to the base of the application.
|
1497
|
+
# This is the path that Refactor Spaces uses to match traffic. Paths
|
1498
|
+
# must start with `/` and are relative to the base of the application.
|
1499
|
+
# To use path parameters in the source path, add a variable in curly
|
1500
|
+
# braces. For example, the resource path \\\{user\\} represents a path
|
1501
|
+
# parameter called 'user'.
|
1486
1502
|
# @return [String]
|
1487
1503
|
#
|
1488
1504
|
# @!attribute [rw] state
|
@@ -1498,6 +1514,7 @@ module Aws::MigrationHubRefactorSpaces
|
|
1498
1514
|
# @see http://docs.aws.amazon.com/goto/WebAPI/migration-hub-refactor-spaces-2021-10-26/GetRouteResponse AWS API Documentation
|
1499
1515
|
#
|
1500
1516
|
class GetRouteResponse < Struct.new(
|
1517
|
+
:append_source_path,
|
1501
1518
|
:application_id,
|
1502
1519
|
:arn,
|
1503
1520
|
:created_by_account_id,
|
@@ -1992,6 +2009,11 @@ module Aws::MigrationHubRefactorSpaces
|
|
1992
2009
|
|
1993
2010
|
# The summary information for the routes as a response to `ListRoutes`.
|
1994
2011
|
#
|
2012
|
+
# @!attribute [rw] append_source_path
|
2013
|
+
# If set to `true`, this option appends the source path to the service
|
2014
|
+
# URL endpoint.
|
2015
|
+
# @return [Boolean]
|
2016
|
+
#
|
1995
2017
|
# @!attribute [rw] application_id
|
1996
2018
|
# The unique identifier of the application.
|
1997
2019
|
# @return [String]
|
@@ -2053,8 +2075,11 @@ module Aws::MigrationHubRefactorSpaces
|
|
2053
2075
|
# @return [String]
|
2054
2076
|
#
|
2055
2077
|
# @!attribute [rw] source_path
|
2056
|
-
#
|
2057
|
-
# relative to the base of the application.
|
2078
|
+
# This is the path that Refactor Spaces uses to match traffic. Paths
|
2079
|
+
# must start with `/` and are relative to the base of the application.
|
2080
|
+
# To use path parameters in the source path, add a variable in curly
|
2081
|
+
# braces. For example, the resource path \\\{user\\} represents a path
|
2082
|
+
# parameter called 'user'.
|
2058
2083
|
# @return [String]
|
2059
2084
|
#
|
2060
2085
|
# @!attribute [rw] state
|
@@ -2068,6 +2093,7 @@ module Aws::MigrationHubRefactorSpaces
|
|
2068
2093
|
# @see http://docs.aws.amazon.com/goto/WebAPI/migration-hub-refactor-spaces-2021-10-26/RouteSummary AWS API Documentation
|
2069
2094
|
#
|
2070
2095
|
class RouteSummary < Struct.new(
|
2096
|
+
:append_source_path,
|
2071
2097
|
:application_id,
|
2072
2098
|
:arn,
|
2073
2099
|
:created_by_account_id,
|
@@ -2371,6 +2397,11 @@ module Aws::MigrationHubRefactorSpaces
|
|
2371
2397
|
# after the route is created.
|
2372
2398
|
# @return [String]
|
2373
2399
|
#
|
2400
|
+
# @!attribute [rw] append_source_path
|
2401
|
+
# If set to `true`, this option appends the source path to the service
|
2402
|
+
# URL endpoint.
|
2403
|
+
# @return [Boolean]
|
2404
|
+
#
|
2374
2405
|
# @!attribute [rw] include_child_paths
|
2375
2406
|
# Indicates whether to match all subpaths of the given source path. If
|
2376
2407
|
# this value is `false`, requests must match the source path exactly
|
@@ -2384,14 +2415,18 @@ module Aws::MigrationHubRefactorSpaces
|
|
2384
2415
|
# @return [Array<String>]
|
2385
2416
|
#
|
2386
2417
|
# @!attribute [rw] source_path
|
2387
|
-
#
|
2388
|
-
# relative to the base of the application.
|
2418
|
+
# This is the path that Refactor Spaces uses to match traffic. Paths
|
2419
|
+
# must start with `/` and are relative to the base of the application.
|
2420
|
+
# To use path parameters in the source path, add a variable in curly
|
2421
|
+
# braces. For example, the resource path \\\{user\\} represents a path
|
2422
|
+
# parameter called 'user'.
|
2389
2423
|
# @return [String]
|
2390
2424
|
#
|
2391
2425
|
# @see http://docs.aws.amazon.com/goto/WebAPI/migration-hub-refactor-spaces-2021-10-26/UriPathRouteInput AWS API Documentation
|
2392
2426
|
#
|
2393
2427
|
class UriPathRouteInput < Struct.new(
|
2394
2428
|
:activation_state,
|
2429
|
+
:append_source_path,
|
2395
2430
|
:include_child_paths,
|
2396
2431
|
:methods,
|
2397
2432
|
:source_path)
|
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.13.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: 2023-
|
11
|
+
date: 2023-05-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|