aws-sdk-migrationhubrefactorspaces 1.7.0 → 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ea1cd38d7b222267562a7a19f852e3d924e46ebc0cedb85405d8b51e7f459279
4
- data.tar.gz: 2bb022041307e123ff7404a3abfab3c04f5647c45d7da3098c8fb41b0a23fd53
3
+ metadata.gz: '02739ae09b62424c7ee99f583b280073e481c78686b6c0b94cd1e8bb5e01de24'
4
+ data.tar.gz: '096e45a1a0cfb39001f679a2690e953b1ee56a838d6aec28a1582e16d45ab4c5'
5
5
  SHA512:
6
- metadata.gz: 3d1039b56a8fe96ad23aadcfa27ae8c13f8b189f4b9bdc5bb975fa0f5e8fd2f6cff3179aef51461630683eff6078b36aa443658ddcd22d3ea0a7bd90d415d8c5
7
- data.tar.gz: 2e6cdd3347236105148d813b8867e4d964642ee63120a4649f379fe8e7539686c8df05fa4b35bad6b49fbeac1d967583258a1e005a35dc57c931f4dd02200730
6
+ metadata.gz: 4b06b0feb6eb636919c1fe672f9fc8502f165e8f08d7267d35e3e42030f47692a14dee92cb524e3eef7059e1a87e2fd9ef45d37e8b7f192aba2edc8e6c4f179b
7
+ data.tar.gz: f71ba195dc8b79ec1235cc044d7df8102ef09db9bded2d99d55773cdd1c2f63678430b787e82afd6ac5997d93fae917e9e2df75961cb22f11338764aa850cfa9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.9.0 (2022-12-12)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for Lambda alias service endpoints. Lambda alias ARNs can now be passed into CreateService.
8
+
9
+ 1.8.0 (2022-10-25)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.7.0 (2022-06-23)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.7.0
1
+ 1.9.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/signature_v4.rb'
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::SignatureV4)
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
  #
@@ -571,6 +588,13 @@ module Aws::MigrationHubRefactorSpaces
571
588
  # health check fails. For public URLs, a connection is opened to the
572
589
  # public endpoint. If the URL is not reachable, the health check fails.
573
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
+ #
574
598
  # For private URLS, a target group is created on the Elastic Load
575
599
  # Balancing and the target group health check is run. The
576
600
  # `HealthCheckProtocol`, `HealthCheckPort`, and `HealthCheckPath` are
@@ -734,7 +758,11 @@ module Aws::MigrationHubRefactorSpaces
734
758
  # pair..
735
759
  #
736
760
  # @option params [Types::UrlEndpointInput] :url_endpoint
737
- # 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.
738
766
  #
739
767
  # @option params [String] :vpc_id
740
768
  # The ID of the VPC.
@@ -1843,7 +1871,7 @@ module Aws::MigrationHubRefactorSpaces
1843
1871
  params: params,
1844
1872
  config: config)
1845
1873
  context[:gem_name] = 'aws-sdk-migrationhubrefactorspaces'
1846
- context[:gem_version] = '1.7.0'
1874
+ context[:gem_version] = '1.9.0'
1847
1875
  Seahorse::Client::Request.new(handlers, context)
1848
1876
  end
1849
1877
 
@@ -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
@@ -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
@@ -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.7.0'
55
+ GEM_VERSION = '1.9.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.7.0
4
+ version: 1.9.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-06-23 00:00:00.000000000 Z
11
+ date: 2022-12-12 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.127.0
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.127.0
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