aws-sdk-migrationhubrefactorspaces 1.8.0 → 1.10.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: 9bb479f3d71b1cbce645633cdaf0e018ec470678be1dc6bb6f6ae5feddd83f70
4
- data.tar.gz: 25c1be91649c1251e988b45fc6ce9195ca1125b53f11d806a4cfcfb9aa1cee4d
3
+ metadata.gz: 2dbf9041d7f4db15d89fe724247197022c75257f1c59c2d70bcd6af964ce9384
4
+ data.tar.gz: 8c687248dd0c7849eb39989103c5cd9c9d4bf666dca628b2cd5d567957ea65c3
5
5
  SHA512:
6
- metadata.gz: 398c5b154a5744dd96cfcecfa5f878232e6b3ff0dd24c72cb8ba1af54815845ce57d3229fe9f1277c04e872c09328c42f82900bc0d9a15fd1e1186a3f8f87f2f
7
- data.tar.gz: fbaafe9accfc13b4ceef66689bdd40e68f8d5c0fc550eba52a44c028db58dc15dc699269f4fd89aa3b48246edf4e40f143c648757255204b6787f416b5f42926
6
+ metadata.gz: f8940a73e7004e7ab110a73cfa538ec602fdb30b02cd10293e1aa731e4098f426c97194af93450a12135eaf206bc38465ede0ae1c92c1a79336046bb715dda30
7
+ data.tar.gz: 7b60bff1e79192b019a482923574e1a8c143cd69dd49edfe1da50d0b258126546c24cdac71b72b1575845fa0cbd5d6b5bb58ce20289047129d462474e3901941
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.10.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
11
+ 1.9.0 (2022-12-12)
12
+ ------------------
13
+
14
+ * Feature - This release adds support for Lambda alias service endpoints. Lambda alias ARNs can now be passed into CreateService.
15
+
4
16
  1.8.0 (2022-10-25)
5
17
  ------------------
6
18
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.8.0
1
+ 1.10.0
@@ -588,6 +588,13 @@ module Aws::MigrationHubRefactorSpaces
588
588
  # health check fails. For public URLs, a connection is opened to the
589
589
  # public endpoint. If the URL is not reachable, the health check fails.
590
590
  #
591
+ # Refactor Spaces automatically resolves the public Domain Name System
592
+ # (DNS) names that are set in CreateServiceRequest$UrlEndpoint when you
593
+ # create a service. The DNS names resolve when the DNS time-to-live
594
+ # (TTL) expires, or every 60 seconds for TTLs less than 60 seconds. This
595
+ # periodic DNS resolution ensures that the route configuration remains
596
+ # up-to-date.
597
+ #
591
598
  # For private URLS, a target group is created on the Elastic Load
592
599
  # Balancing and the target group health check is run. The
593
600
  # `HealthCheckProtocol`, `HealthCheckPort`, and `HealthCheckPath` are
@@ -751,7 +758,11 @@ module Aws::MigrationHubRefactorSpaces
751
758
  # pair..
752
759
  #
753
760
  # @option params [Types::UrlEndpointInput] :url_endpoint
754
- # The configuration for the URL endpoint type.
761
+ # The configuration for the URL endpoint type. When creating a route to
762
+ # a service, Refactor Spaces automatically resolves the address in the
763
+ # `UrlEndpointInput` object URL when the Domain Name System (DNS)
764
+ # time-to-live (TTL) expires, or every 60 seconds for TTLs less than 60
765
+ # seconds.
755
766
  #
756
767
  # @option params [String] :vpc_id
757
768
  # The ID of the VPC.
@@ -1860,7 +1871,7 @@ module Aws::MigrationHubRefactorSpaces
1860
1871
  params: params,
1861
1872
  config: config)
1862
1873
  context[:gem_name] = 'aws-sdk-migrationhubrefactorspaces'
1863
- context[:gem_version] = '1.8.0'
1874
+ context[:gem_version] = '1.10.0'
1864
1875
  Seahorse::Client::Request.new(handlers, context)
1865
1876
  end
1866
1877
 
@@ -9,103 +9,43 @@
9
9
 
10
10
  module Aws::MigrationHubRefactorSpaces
11
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
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://refactor-spaces-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://refactor-spaces-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://refactor-spaces.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://refactor-spaces.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  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
50
  end
111
51
  end
@@ -71,14 +71,6 @@ module Aws::MigrationHubRefactorSpaces
71
71
 
72
72
  # A wrapper object holding the Amazon API Gateway endpoint input.
73
73
  #
74
- # @note When making an API call, you may pass ApiGatewayProxyInput
75
- # data as a hash:
76
- #
77
- # {
78
- # endpoint_type: "REGIONAL", # accepts REGIONAL, PRIVATE
79
- # stage_name: "StageName",
80
- # }
81
- #
82
74
  # @!attribute [rw] endpoint_type
83
75
  # The type of endpoint to use for the API Gateway proxy. If no value
84
76
  # is specified in the request, the value is set to `REGIONAL` by
@@ -253,24 +245,6 @@ module Aws::MigrationHubRefactorSpaces
253
245
  include Aws::Structure
254
246
  end
255
247
 
256
- # @note When making an API call, you may pass CreateApplicationRequest
257
- # data as a hash:
258
- #
259
- # {
260
- # api_gateway_proxy: {
261
- # endpoint_type: "REGIONAL", # accepts REGIONAL, PRIVATE
262
- # stage_name: "StageName",
263
- # },
264
- # client_token: "ClientToken",
265
- # environment_identifier: "EnvironmentId", # required
266
- # name: "ApplicationName", # required
267
- # proxy_type: "API_GATEWAY", # required, accepts API_GATEWAY
268
- # tags: {
269
- # "TagMapKeyString" => "TagMapValueString",
270
- # },
271
- # vpc_id: "VpcId", # required
272
- # }
273
- #
274
248
  # @!attribute [rw] api_gateway_proxy
275
249
  # A wrapper object holding the API Gateway endpoint type and stage
276
250
  # name for the proxy.
@@ -404,19 +378,6 @@ module Aws::MigrationHubRefactorSpaces
404
378
  include Aws::Structure
405
379
  end
406
380
 
407
- # @note When making an API call, you may pass CreateEnvironmentRequest
408
- # data as a hash:
409
- #
410
- # {
411
- # client_token: "ClientToken",
412
- # description: "Description",
413
- # name: "EnvironmentName", # required
414
- # network_fabric_type: "TRANSIT_GATEWAY", # required, accepts TRANSIT_GATEWAY
415
- # tags: {
416
- # "TagMapKeyString" => "TagMapValueString",
417
- # },
418
- # }
419
- #
420
381
  # @!attribute [rw] client_token
421
382
  # A unique, case-sensitive identifier that you provide to ensure the
422
383
  # idempotency of the request.
@@ -514,29 +475,6 @@ module Aws::MigrationHubRefactorSpaces
514
475
  include Aws::Structure
515
476
  end
516
477
 
517
- # @note When making an API call, you may pass CreateRouteRequest
518
- # data as a hash:
519
- #
520
- # {
521
- # application_identifier: "ApplicationId", # required
522
- # client_token: "ClientToken",
523
- # default_route: {
524
- # activation_state: "ACTIVE", # accepts ACTIVE, INACTIVE
525
- # },
526
- # environment_identifier: "EnvironmentId", # required
527
- # route_type: "DEFAULT", # required, accepts DEFAULT, URI_PATH
528
- # service_identifier: "ServiceId", # required
529
- # tags: {
530
- # "TagMapKeyString" => "TagMapValueString",
531
- # },
532
- # uri_path_route: {
533
- # activation_state: "ACTIVE", # required, accepts ACTIVE, INACTIVE
534
- # include_child_paths: false,
535
- # methods: ["DELETE"], # accepts DELETE, GET, HEAD, OPTIONS, PATCH, POST, PUT
536
- # source_path: "UriPath", # required
537
- # },
538
- # }
539
- #
540
478
  # @!attribute [rw] application_identifier
541
479
  # The ID of the application within which the route is being created.
542
480
  # @return [String]
@@ -675,29 +613,6 @@ module Aws::MigrationHubRefactorSpaces
675
613
  include Aws::Structure
676
614
  end
677
615
 
678
- # @note When making an API call, you may pass CreateServiceRequest
679
- # data as a hash:
680
- #
681
- # {
682
- # application_identifier: "ApplicationId", # required
683
- # client_token: "ClientToken",
684
- # description: "Description",
685
- # endpoint_type: "LAMBDA", # required, accepts LAMBDA, URL
686
- # environment_identifier: "EnvironmentId", # required
687
- # lambda_endpoint: {
688
- # arn: "LambdaArn", # required
689
- # },
690
- # name: "ServiceName", # required
691
- # tags: {
692
- # "TagMapKeyString" => "TagMapValueString",
693
- # },
694
- # url_endpoint: {
695
- # health_url: "Uri",
696
- # url: "Uri", # required
697
- # },
698
- # vpc_id: "VpcId",
699
- # }
700
- #
701
616
  # @!attribute [rw] application_identifier
702
617
  # The ID of the application which the service is created.
703
618
  # @return [String]
@@ -738,7 +653,11 @@ module Aws::MigrationHubRefactorSpaces
738
653
  # @return [Hash<String,String>]
739
654
  #
740
655
  # @!attribute [rw] url_endpoint
741
- # The configuration for the URL endpoint type.
656
+ # The configuration for the URL endpoint type. When creating a route
657
+ # to a service, Refactor Spaces automatically resolves the address in
658
+ # the `UrlEndpointInput` object URL when the Domain Name System (DNS)
659
+ # time-to-live (TTL) expires, or every 60 seconds for TTLs less than
660
+ # 60 seconds.
742
661
  # @return [Types::UrlEndpointInput]
743
662
  #
744
663
  # @!attribute [rw] vpc_id
@@ -853,13 +772,6 @@ module Aws::MigrationHubRefactorSpaces
853
772
 
854
773
  # The configuration for the default route type.
855
774
  #
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
775
  # @!attribute [rw] activation_state
864
776
  # If set to `ACTIVE`, traffic is forwarded to this route’s service
865
777
  # after the route is created.
@@ -873,14 +785,6 @@ module Aws::MigrationHubRefactorSpaces
873
785
  include Aws::Structure
874
786
  end
875
787
 
876
- # @note When making an API call, you may pass DeleteApplicationRequest
877
- # data as a hash:
878
- #
879
- # {
880
- # application_identifier: "ApplicationId", # required
881
- # environment_identifier: "EnvironmentId", # required
882
- # }
883
- #
884
788
  # @!attribute [rw] application_identifier
885
789
  # The ID of the application.
886
790
  # @return [String]
@@ -935,13 +839,6 @@ module Aws::MigrationHubRefactorSpaces
935
839
  include Aws::Structure
936
840
  end
937
841
 
938
- # @note When making an API call, you may pass DeleteEnvironmentRequest
939
- # data as a hash:
940
- #
941
- # {
942
- # environment_identifier: "EnvironmentId", # required
943
- # }
944
- #
945
842
  # @!attribute [rw] environment_identifier
946
843
  # The ID of the environment.
947
844
  # @return [String]
@@ -986,13 +883,6 @@ module Aws::MigrationHubRefactorSpaces
986
883
  include Aws::Structure
987
884
  end
988
885
 
989
- # @note When making an API call, you may pass DeleteResourcePolicyRequest
990
- # data as a hash:
991
- #
992
- # {
993
- # identifier: "ResourcePolicyIdentifier", # required
994
- # }
995
- #
996
886
  # @!attribute [rw] identifier
997
887
  # Amazon Resource Name (ARN) of the resource associated with the
998
888
  # policy.
@@ -1010,15 +900,6 @@ module Aws::MigrationHubRefactorSpaces
1010
900
  #
1011
901
  class DeleteResourcePolicyResponse < Aws::EmptyStructure; end
1012
902
 
1013
- # @note When making an API call, you may pass DeleteRouteRequest
1014
- # data as a hash:
1015
- #
1016
- # {
1017
- # application_identifier: "ApplicationId", # required
1018
- # environment_identifier: "EnvironmentId", # required
1019
- # route_identifier: "RouteId", # required
1020
- # }
1021
- #
1022
903
  # @!attribute [rw] application_identifier
1023
904
  # The ID of the application to delete the route from.
1024
905
  # @return [String]
@@ -1078,15 +959,6 @@ module Aws::MigrationHubRefactorSpaces
1078
959
  include Aws::Structure
1079
960
  end
1080
961
 
1081
- # @note When making an API call, you may pass DeleteServiceRequest
1082
- # data as a hash:
1083
- #
1084
- # {
1085
- # application_identifier: "ApplicationId", # required
1086
- # environment_identifier: "EnvironmentId", # required
1087
- # service_identifier: "ServiceId", # required
1088
- # }
1089
- #
1090
962
  # @!attribute [rw] application_identifier
1091
963
  # Deletes a Refactor Spaces service.
1092
964
  #
@@ -1315,14 +1187,6 @@ module Aws::MigrationHubRefactorSpaces
1315
1187
  include Aws::Structure
1316
1188
  end
1317
1189
 
1318
- # @note When making an API call, you may pass GetApplicationRequest
1319
- # data as a hash:
1320
- #
1321
- # {
1322
- # application_identifier: "ApplicationId", # required
1323
- # environment_identifier: "EnvironmentId", # required
1324
- # }
1325
- #
1326
1190
  # @!attribute [rw] application_identifier
1327
1191
  # The ID of the application.
1328
1192
  # @return [String]
@@ -1420,13 +1284,6 @@ module Aws::MigrationHubRefactorSpaces
1420
1284
  include Aws::Structure
1421
1285
  end
1422
1286
 
1423
- # @note When making an API call, you may pass GetEnvironmentRequest
1424
- # data as a hash:
1425
- #
1426
- # {
1427
- # environment_identifier: "EnvironmentId", # required
1428
- # }
1429
- #
1430
1287
  # @!attribute [rw] environment_identifier
1431
1288
  # The ID of the environment.
1432
1289
  # @return [String]
@@ -1508,13 +1365,6 @@ module Aws::MigrationHubRefactorSpaces
1508
1365
  include Aws::Structure
1509
1366
  end
1510
1367
 
1511
- # @note When making an API call, you may pass GetResourcePolicyRequest
1512
- # data as a hash:
1513
- #
1514
- # {
1515
- # identifier: "ResourcePolicyIdentifier", # required
1516
- # }
1517
- #
1518
1368
  # @!attribute [rw] identifier
1519
1369
  # The Amazon Resource Name (ARN) of the resource associated with the
1520
1370
  # policy.
@@ -1541,15 +1391,6 @@ module Aws::MigrationHubRefactorSpaces
1541
1391
  include Aws::Structure
1542
1392
  end
1543
1393
 
1544
- # @note When making an API call, you may pass GetRouteRequest
1545
- # data as a hash:
1546
- #
1547
- # {
1548
- # application_identifier: "ApplicationId", # required
1549
- # environment_identifier: "EnvironmentId", # required
1550
- # route_identifier: "RouteId", # required
1551
- # }
1552
- #
1553
1394
  # @!attribute [rw] application_identifier
1554
1395
  # The ID of the application.
1555
1396
  # @return [String]
@@ -1677,15 +1518,6 @@ module Aws::MigrationHubRefactorSpaces
1677
1518
  include Aws::Structure
1678
1519
  end
1679
1520
 
1680
- # @note When making an API call, you may pass GetServiceRequest
1681
- # data as a hash:
1682
- #
1683
- # {
1684
- # application_identifier: "ApplicationId", # required
1685
- # environment_identifier: "EnvironmentId", # required
1686
- # service_identifier: "ServiceId", # required
1687
- # }
1688
- #
1689
1521
  # @!attribute [rw] application_identifier
1690
1522
  # The ID of the application.
1691
1523
  # @return [String]
@@ -1851,15 +1683,8 @@ module Aws::MigrationHubRefactorSpaces
1851
1683
 
1852
1684
  # The input for the Lambda endpoint type.
1853
1685
  #
1854
- # @note When making an API call, you may pass LambdaEndpointInput
1855
- # data as a hash:
1856
- #
1857
- # {
1858
- # arn: "LambdaArn", # required
1859
- # }
1860
- #
1861
1686
  # @!attribute [rw] arn
1862
- # The Amazon Resource Name (ARN) of the Lambda endpoint.
1687
+ # The Amazon Resource Name (ARN) of the Lambda function or alias.
1863
1688
  # @return [String]
1864
1689
  #
1865
1690
  # @see http://docs.aws.amazon.com/goto/WebAPI/migration-hub-refactor-spaces-2021-10-26/LambdaEndpointInput AWS API Documentation
@@ -1884,15 +1709,6 @@ module Aws::MigrationHubRefactorSpaces
1884
1709
  include Aws::Structure
1885
1710
  end
1886
1711
 
1887
- # @note When making an API call, you may pass ListApplicationsRequest
1888
- # data as a hash:
1889
- #
1890
- # {
1891
- # environment_identifier: "EnvironmentId", # required
1892
- # max_results: 1,
1893
- # next_token: "NextToken",
1894
- # }
1895
- #
1896
1712
  # @!attribute [rw] environment_identifier
1897
1713
  # The ID of the environment.
1898
1714
  # @return [String]
@@ -1934,15 +1750,6 @@ module Aws::MigrationHubRefactorSpaces
1934
1750
  include Aws::Structure
1935
1751
  end
1936
1752
 
1937
- # @note When making an API call, you may pass ListEnvironmentVpcsRequest
1938
- # data as a hash:
1939
- #
1940
- # {
1941
- # environment_identifier: "EnvironmentId", # required
1942
- # max_results: 1,
1943
- # next_token: "NextToken",
1944
- # }
1945
- #
1946
1753
  # @!attribute [rw] environment_identifier
1947
1754
  # The ID of the environment.
1948
1755
  # @return [String]
@@ -1984,14 +1791,6 @@ module Aws::MigrationHubRefactorSpaces
1984
1791
  include Aws::Structure
1985
1792
  end
1986
1793
 
1987
- # @note When making an API call, you may pass ListEnvironmentsRequest
1988
- # data as a hash:
1989
- #
1990
- # {
1991
- # max_results: 1,
1992
- # next_token: "NextToken",
1993
- # }
1994
- #
1995
1794
  # @!attribute [rw] max_results
1996
1795
  # The maximum number of results to return with a single call. To
1997
1796
  # retrieve the remaining results, make another call with the returned
@@ -2028,16 +1827,6 @@ module Aws::MigrationHubRefactorSpaces
2028
1827
  include Aws::Structure
2029
1828
  end
2030
1829
 
2031
- # @note When making an API call, you may pass ListRoutesRequest
2032
- # data as a hash:
2033
- #
2034
- # {
2035
- # application_identifier: "ApplicationId", # required
2036
- # environment_identifier: "EnvironmentId", # required
2037
- # max_results: 1,
2038
- # next_token: "NextToken",
2039
- # }
2040
- #
2041
1830
  # @!attribute [rw] application_identifier
2042
1831
  # The ID of the application.
2043
1832
  # @return [String]
@@ -2084,16 +1873,6 @@ module Aws::MigrationHubRefactorSpaces
2084
1873
  include Aws::Structure
2085
1874
  end
2086
1875
 
2087
- # @note When making an API call, you may pass ListServicesRequest
2088
- # data as a hash:
2089
- #
2090
- # {
2091
- # application_identifier: "ApplicationId", # required
2092
- # environment_identifier: "EnvironmentId", # required
2093
- # max_results: 1,
2094
- # next_token: "NextToken",
2095
- # }
2096
- #
2097
1876
  # @!attribute [rw] application_identifier
2098
1877
  # The ID of the application.
2099
1878
  # @return [String]
@@ -2140,13 +1919,6 @@ module Aws::MigrationHubRefactorSpaces
2140
1919
  include Aws::Structure
2141
1920
  end
2142
1921
 
2143
- # @note When making an API call, you may pass ListTagsForResourceRequest
2144
- # data as a hash:
2145
- #
2146
- # {
2147
- # resource_arn: "String", # required
2148
- # }
2149
- #
2150
1922
  # @!attribute [rw] resource_arn
2151
1923
  # The Amazon Resource Name (ARN) of the resource.
2152
1924
  # @return [String]
@@ -2171,14 +1943,6 @@ module Aws::MigrationHubRefactorSpaces
2171
1943
  include Aws::Structure
2172
1944
  end
2173
1945
 
2174
- # @note When making an API call, you may pass PutResourcePolicyRequest
2175
- # data as a hash:
2176
- #
2177
- # {
2178
- # policy: "PolicyString", # required
2179
- # resource_arn: "ResourceArn", # required
2180
- # }
2181
- #
2182
1946
  # @!attribute [rw] policy
2183
1947
  # A JSON-formatted string for an Amazon Web Services resource-based
2184
1948
  # policy.
@@ -2453,16 +2217,6 @@ module Aws::MigrationHubRefactorSpaces
2453
2217
  include Aws::Structure
2454
2218
  end
2455
2219
 
2456
- # @note When making an API call, you may pass TagResourceRequest
2457
- # data as a hash:
2458
- #
2459
- # {
2460
- # resource_arn: "String", # required
2461
- # tags: { # required
2462
- # "TagMapKeyString" => "TagMapValueString",
2463
- # },
2464
- # }
2465
- #
2466
2220
  # @!attribute [rw] resource_arn
2467
2221
  # The Amazon Resource Name (ARN) of the resource.
2468
2222
  # @return [String]
@@ -2514,14 +2268,6 @@ module Aws::MigrationHubRefactorSpaces
2514
2268
  include Aws::Structure
2515
2269
  end
2516
2270
 
2517
- # @note When making an API call, you may pass UntagResourceRequest
2518
- # data as a hash:
2519
- #
2520
- # {
2521
- # resource_arn: "String", # required
2522
- # tag_keys: ["String"], # required
2523
- # }
2524
- #
2525
2271
  # @!attribute [rw] resource_arn
2526
2272
  # The Amazon Resource Name (ARN) of the resource.
2527
2273
  # @return [String]
@@ -2543,16 +2289,6 @@ module Aws::MigrationHubRefactorSpaces
2543
2289
  #
2544
2290
  class UntagResourceResponse < Aws::EmptyStructure; end
2545
2291
 
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
2292
  # @!attribute [rw] activation_state
2557
2293
  # If set to `ACTIVE`, traffic is forwarded to this route’s service
2558
2294
  # after the route is updated.
@@ -2629,16 +2365,6 @@ module Aws::MigrationHubRefactorSpaces
2629
2365
 
2630
2366
  # The configuration for the URI path route type.
2631
2367
  #
2632
- # @note When making an API call, you may pass UriPathRouteInput
2633
- # data as a hash:
2634
- #
2635
- # {
2636
- # activation_state: "ACTIVE", # required, accepts ACTIVE, INACTIVE
2637
- # include_child_paths: false,
2638
- # methods: ["DELETE"], # accepts DELETE, GET, HEAD, OPTIONS, PATCH, POST, PUT
2639
- # source_path: "UriPath", # required
2640
- # }
2641
- #
2642
2368
  # @!attribute [rw] activation_state
2643
2369
  # If set to `ACTIVE`, traffic is forwarded to this route’s service
2644
2370
  # after the route is created.
@@ -2693,14 +2419,6 @@ module Aws::MigrationHubRefactorSpaces
2693
2419
 
2694
2420
  # The configuration for the URL endpoint type.
2695
2421
  #
2696
- # @note When making an API call, you may pass UrlEndpointInput
2697
- # data as a hash:
2698
- #
2699
- # {
2700
- # health_url: "Uri",
2701
- # url: "Uri", # required
2702
- # }
2703
- #
2704
2422
  # @!attribute [rw] health_url
2705
2423
  # The health check URL of the URL endpoint type. If the URL is a
2706
2424
  # public endpoint, the `HealthUrl` must also be a public endpoint. If
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-migrationhubrefactorspaces/customizations'
52
52
  # @!group service
53
53
  module Aws::MigrationHubRefactorSpaces
54
54
 
55
- GEM_VERSION = '1.8.0'
55
+ GEM_VERSION = '1.10.0'
56
56
 
57
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.8.0
4
+ version: 1.10.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-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core