aws-sdk-migrationhubrefactorspaces 1.10.0 → 1.12.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: 2dbf9041d7f4db15d89fe724247197022c75257f1c59c2d70bcd6af964ce9384
4
- data.tar.gz: 8c687248dd0c7849eb39989103c5cd9c9d4bf666dca628b2cd5d567957ea65c3
3
+ metadata.gz: 80d06c403301186b77650eeb4453f23090bd0fed052db5c2e68ad1ad823066ad
4
+ data.tar.gz: 521eabd3d48d55d5d602ba623226a6531dac813be6e19b133ba0b405b86f8a9d
5
5
  SHA512:
6
- metadata.gz: f8940a73e7004e7ab110a73cfa538ec602fdb30b02cd10293e1aa731e4098f426c97194af93450a12135eaf206bc38465ede0ae1c92c1a79336046bb715dda30
7
- data.tar.gz: 7b60bff1e79192b019a482923574e1a8c143cd69dd49edfe1da50d0b258126546c24cdac71b72b1575845fa0cbd5d6b5bb58ce20289047129d462474e3901941
6
+ metadata.gz: d120a376ddf2dd190845b7b3a626ce28541a9c05f88a76502146d10751e720af28b030338f3996bf15accd2f21305d5b641fc861867882698d7b8c07c330411e
7
+ data.tar.gz: 455dab7663fc7221778f2fdf343d7f9e05f97d11d08c182bd461a650cf92c076378808bd92da72c6eba00901ff2cc29bed739b57324a4e6b26b5f62bd2247514
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.12.0 (2023-04-14)
5
+ ------------------
6
+
7
+ * Feature - Doc only update for Refactor Spaces environments without network bridge feature.
8
+
9
+ 1.11.0 (2023-02-09)
10
+ ------------------
11
+
12
+ * Feature - This release adds support for creating environments with a network fabric type of NONE
13
+
4
14
  1.10.0 (2023-01-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.10.0
1
+ 1.12.0
@@ -375,6 +375,19 @@ module Aws::MigrationHubRefactorSpaces
375
375
  # Gateway, API Gateway VPC link, and Network Load Balancer for the
376
376
  # application proxy inside your account.
377
377
  #
378
+ # In environments created with a
379
+ # [CreateEnvironment:NetworkFabricType][1] of `NONE` you need to
380
+ # configure [ VPC to VPC connectivity][2] between your service VPC and
381
+ # the application proxy VPC to route traffic through the application
382
+ # proxy to a service with a private URL endpoint. For more information,
383
+ # see [ Create an application][3] in the *Refactor Spaces User Guide*.
384
+ #
385
+ #
386
+ #
387
+ # [1]: https://docs.aws.amazon.com/migrationhub-refactor-spaces/latest/APIReference/API_CreateEnvironment.html#migrationhubrefactorspaces-CreateEnvironment-request-NetworkFabricType
388
+ # [2]: https://docs.aws.amazon.com/whitepapers/latest/aws-vpc-connectivity-options/amazon-vpc-to-amazon-vpc-connectivity-options.html
389
+ # [3]: https://docs.aws.amazon.com/migrationhub-refactor-spaces/latest/userguide/getting-started-create-application.html
390
+ #
378
391
  # @option params [Types::ApiGatewayProxyInput] :api_gateway_proxy
379
392
  # A wrapper object holding the API Gateway endpoint type and stage name
380
393
  # for the proxy.
@@ -469,8 +482,20 @@ module Aws::MigrationHubRefactorSpaces
469
482
  # environment. They are referred to as the *environment owner*. The
470
483
  # environment owner has cross-account visibility and control of Refactor
471
484
  # Spaces resources that are added to the environment by other accounts
472
- # that the environment is shared with. When creating an environment,
473
- # Refactor Spaces provisions a transit gateway in your account.
485
+ # that the environment is shared with.
486
+ #
487
+ # When creating an environment with a
488
+ # [CreateEnvironment:NetworkFabricType][1] of `TRANSIT_GATEWAY`,
489
+ # Refactor Spaces provisions a transit gateway to enable services in
490
+ # VPCs to communicate directly across accounts. If
491
+ # [CreateEnvironment:NetworkFabricType][1] is `NONE`, Refactor Spaces
492
+ # does not create a transit gateway and you must use your network
493
+ # infrastructure to route traffic to services with private URL
494
+ # endpoints.
495
+ #
496
+ #
497
+ #
498
+ # [1]: https://docs.aws.amazon.com/migrationhub-refactor-spaces/latest/APIReference/API_CreateEnvironment.html#migrationhubrefactorspaces-CreateEnvironment-request-NetworkFabricType
474
499
  #
475
500
  # @option params [String] :client_token
476
501
  # A unique, case-sensitive identifier that you provide to ensure the
@@ -512,7 +537,7 @@ module Aws::MigrationHubRefactorSpaces
512
537
  # client_token: "ClientToken",
513
538
  # description: "Description",
514
539
  # name: "EnvironmentName", # required
515
- # network_fabric_type: "TRANSIT_GATEWAY", # required, accepts TRANSIT_GATEWAY
540
+ # network_fabric_type: "TRANSIT_GATEWAY", # required, accepts TRANSIT_GATEWAY, NONE
516
541
  # tags: {
517
542
  # "TagMapKeyString" => "TagMapValueString",
518
543
  # },
@@ -526,7 +551,7 @@ module Aws::MigrationHubRefactorSpaces
526
551
  # resp.environment_id #=> String
527
552
  # resp.last_updated_time #=> Time
528
553
  # resp.name #=> String
529
- # resp.network_fabric_type #=> String, one of "TRANSIT_GATEWAY"
554
+ # resp.network_fabric_type #=> String, one of "TRANSIT_GATEWAY", "NONE"
530
555
  # resp.owner_account_id #=> String
531
556
  # resp.state #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED"
532
557
  # resp.tags #=> Hash
@@ -557,62 +582,88 @@ module Aws::MigrationHubRefactorSpaces
557
582
  # When you create a route, Refactor Spaces configures the Amazon API
558
583
  # Gateway to send traffic to the target service as follows:
559
584
  #
560
- # * If the service has a URL endpoint, and the endpoint resolves to a
585
+ # * **URL Endpoints**
586
+ #
587
+ # If the service has a URL endpoint, and the endpoint resolves to a
561
588
  # private IP address, Refactor Spaces routes traffic using the API
562
- # Gateway VPC link.
589
+ # Gateway VPC link. If a service endpoint resolves to a public IP
590
+ # address, Refactor Spaces routes traffic over the public internet.
591
+ # Services can have HTTP or HTTPS URL endpoints. For HTTPS URLs,
592
+ # publicly-signed certificates are supported. Private Certificate
593
+ # Authorities (CAs) are permitted only if the CA's domain is also
594
+ # publicly resolvable.
595
+ #
596
+ # Refactor Spaces automatically resolves the public Domain Name System
597
+ # (DNS) names that are set in `CreateService:UrlEndpoint `when you
598
+ # create a service. The DNS names resolve when the DNS time-to-live
599
+ # (TTL) expires, or every 60 seconds for TTLs less than 60 seconds.
600
+ # This periodic DNS resolution ensures that the route configuration
601
+ # remains up-to-date.
602
+ #
603
+ #
604
+ #
605
+ # **One-time health check**
563
606
  #
564
- # * If the service has a URL endpoint, and the endpoint resolves to a
565
- # public IP address, Refactor Spaces routes traffic over the public
566
- # internet.
607
+ # A one-time health check is performed on the service when either the
608
+ # route is updated from inactive to active, or when it is created with
609
+ # an active state. If the health check fails, the route transitions
610
+ # the route state to `FAILED`, an error code of
611
+ # `SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE` is provided, and no traffic
612
+ # is sent to the service.
567
613
  #
568
- # * If the service has an Lambda function endpoint, then Refactor Spaces
614
+ # For private URLs, a target group is created on the Network Load
615
+ # Balancer and the load balancer target group runs default target
616
+ # health checks. By default, the health check is run against the
617
+ # service endpoint URL. Optionally, the health check can be performed
618
+ # against a different protocol, port, and/or path using the
619
+ # [CreateService:UrlEndpoint][1] parameter. All other health check
620
+ # settings for the load balancer use the default values described in
621
+ # the [Health checks for your target groups][2] in the *Elastic Load
622
+ # Balancing guide*. The health check is considered successful if at
623
+ # least one target within the target group transitions to a healthy
624
+ # state.
625
+ #
626
+ #
627
+ #
628
+ # * **Lambda function endpoints**
629
+ #
630
+ # If the service has an Lambda function endpoint, then Refactor Spaces
569
631
  # configures the Lambda function's resource policy to allow the
570
632
  # application's API Gateway to invoke the function.
571
633
  #
572
- # A one-time health check is performed on the service when either the
573
- # route is updated from inactive to active, or when it is created with
574
- # an active state. If the health check fails, the route transitions the
575
- # route state to `FAILED`, an error code of
576
- # `SERVICE_ENDPOINT_HEALTH_CHECK_FAILURE` is provided, and no traffic is
577
- # sent to the service.
578
- #
579
- # For Lambda functions, the Lambda function state is checked. If the
580
- # function is not active, the function configuration is updated so that
581
- # Lambda resources are provisioned. If the Lambda state is `Failed`,
582
- # then the route creation fails. For more information, see the
583
- # [GetFunctionConfiguration's State response parameter][1] in the
584
- # *Lambda Developer Guide*.
585
- #
586
- # For Lambda endpoints, a check is performed to determine that a Lambda
587
- # function with the specified ARN exists. If it does not exist, the
588
- # health check fails. For public URLs, a connection is opened to the
589
- # public endpoint. If the URL is not reachable, the health check fails.
590
- #
591
- # 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
- #
598
- # For private URLS, a target group is created on the Elastic Load
599
- # Balancing and the target group health check is run. The
600
- # `HealthCheckProtocol`, `HealthCheckPort`, and `HealthCheckPath` are
601
- # the same protocol, port, and path specified in the URL or health URL,
602
- # if used. All other settings use the default values, as described in
603
- # [Health checks for your target groups][2]. The health check is
604
- # considered successful if at least one target within the target group
605
- # transitions to a healthy state.
606
- #
607
- # Services can have HTTP or HTTPS URL endpoints. For HTTPS URLs,
608
- # publicly-signed certificates are supported. Private Certificate
609
- # Authorities (CAs) are permitted only if the CA's domain is also
610
- # publicly resolvable.
611
- #
612
- #
613
- #
614
- # [1]: https://docs.aws.amazon.com/lambda/latest/dg/API_GetFunctionConfiguration.html#SSS-GetFunctionConfiguration-response-State
634
+ # The Lambda function state is checked. If the function is not active,
635
+ # the function configuration is updated so that Lambda resources are
636
+ # provisioned. If the Lambda state is `Failed`, then the route
637
+ # creation fails. For more information, see the
638
+ # [GetFunctionConfiguration's State response parameter][3] in the
639
+ # *Lambda Developer Guide*.
640
+ #
641
+ # A check is performed to determine that a Lambda function with the
642
+ # specified ARN exists. If it does not exist, the health check fails.
643
+ # For public URLs, a connection is opened to the public endpoint. If
644
+ # the URL is not reachable, the health check fails.
645
+ #
646
+ # **Environments without a network bridge**
647
+ #
648
+ # When you create environments without a network bridge
649
+ # ([CreateEnvironment:NetworkFabricType][4] is `NONE)` and you use your
650
+ # own networking infrastructure, you need to configure [VPC to VPC
651
+ # connectivity][5] between your network and the application proxy VPC.
652
+ # Route creation from the application proxy to service endpoints will
653
+ # fail if your network is not configured to connect to the application
654
+ # proxy VPC. For more information, see [ Create a route][6] in the
655
+ # *Refactor Spaces User Guide*.
656
+ #
657
+ #
658
+ #
659
+ #
660
+ #
661
+ # [1]: https://docs.aws.amazon.com/migrationhub-refactor-spaces/latest/APIReference/API_CreateService.html#migrationhubrefactorspaces-CreateService-request-UrlEndpoint
615
662
  # [2]: https://docs.aws.amazon.com/elasticloadbalancing/latest/application/target-group-health-checks.html
663
+ # [3]: https://docs.aws.amazon.com/lambda/latest/dg/API_GetFunctionConfiguration.html#SSS-GetFunctionConfiguration-response-State
664
+ # [4]: https://docs.aws.amazon.com/migrationhub-refactor-spaces/latest/APIReference/API_CreateEnvironment.html#migrationhubrefactorspaces-CreateEnvironment-request-NetworkFabricType
665
+ # [5]: https://docs.aws.amazon.com/whitepapers/latest/aws-vpc-connectivity-options/amazon-vpc-to-amazon-vpc-connectivity-options.html
666
+ # [6]: https://docs.aws.amazon.com/migrationhub-refactor-spaces/latest/userguide/getting-started-create-role.html
616
667
  #
617
668
  # @option params [required, String] :application_identifier
618
669
  # The ID of the application within which the route is being created.
@@ -1154,7 +1205,7 @@ module Aws::MigrationHubRefactorSpaces
1154
1205
  # resp.error.resource_type #=> String, one of "ENVIRONMENT", "APPLICATION", "ROUTE", "SERVICE", "TRANSIT_GATEWAY", "TRANSIT_GATEWAY_ATTACHMENT", "API_GATEWAY", "NLB", "TARGET_GROUP", "LOAD_BALANCER_LISTENER", "VPC_LINK", "LAMBDA", "VPC", "SUBNET", "ROUTE_TABLE", "SECURITY_GROUP", "VPC_ENDPOINT_SERVICE_CONFIGURATION", "RESOURCE_SHARE", "IAM_ROLE"
1155
1206
  # resp.last_updated_time #=> Time
1156
1207
  # resp.name #=> String
1157
- # resp.network_fabric_type #=> String, one of "TRANSIT_GATEWAY"
1208
+ # resp.network_fabric_type #=> String, one of "TRANSIT_GATEWAY", "NONE"
1158
1209
  # resp.owner_account_id #=> String
1159
1210
  # resp.state #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED"
1160
1211
  # resp.tags #=> Hash
@@ -1515,7 +1566,7 @@ module Aws::MigrationHubRefactorSpaces
1515
1566
  # resp.environment_summary_list[0].error.resource_type #=> String, one of "ENVIRONMENT", "APPLICATION", "ROUTE", "SERVICE", "TRANSIT_GATEWAY", "TRANSIT_GATEWAY_ATTACHMENT", "API_GATEWAY", "NLB", "TARGET_GROUP", "LOAD_BALANCER_LISTENER", "VPC_LINK", "LAMBDA", "VPC", "SUBNET", "ROUTE_TABLE", "SECURITY_GROUP", "VPC_ENDPOINT_SERVICE_CONFIGURATION", "RESOURCE_SHARE", "IAM_ROLE"
1516
1567
  # resp.environment_summary_list[0].last_updated_time #=> Time
1517
1568
  # resp.environment_summary_list[0].name #=> String
1518
- # resp.environment_summary_list[0].network_fabric_type #=> String, one of "TRANSIT_GATEWAY"
1569
+ # resp.environment_summary_list[0].network_fabric_type #=> String, one of "TRANSIT_GATEWAY", "NONE"
1519
1570
  # resp.environment_summary_list[0].owner_account_id #=> String
1520
1571
  # resp.environment_summary_list[0].state #=> String, one of "CREATING", "ACTIVE", "DELETING", "FAILED"
1521
1572
  # resp.environment_summary_list[0].tags #=> Hash
@@ -1871,7 +1922,7 @@ module Aws::MigrationHubRefactorSpaces
1871
1922
  params: params,
1872
1923
  config: config)
1873
1924
  context[:gem_name] = 'aws-sdk-migrationhubrefactorspaces'
1874
- context[:gem_version] = '1.10.0'
1925
+ context[:gem_version] = '1.12.0'
1875
1926
  Seahorse::Client::Request.new(handlers, context)
1876
1927
  end
1877
1928
 
@@ -14,36 +14,39 @@ module Aws::MigrationHubRefactorSpaces
14
14
  use_dual_stack = parameters.use_dual_stack
15
15
  use_fips = parameters.use_fips
16
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
17
+ if Aws::Endpoints::Matchers.set?(endpoint)
33
18
  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"
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
38
20
  end
39
21
  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: {})
22
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
23
+ end
24
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
25
+ end
26
+ if Aws::Endpoints::Matchers.set?(region)
27
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
29
+ 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"))
30
+ return Aws::Endpoints::Endpoint.new(url: "https://refactor-spaces-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
31
+ end
32
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
+ end
34
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
+ return Aws::Endpoints::Endpoint.new(url: "https://refactor-spaces-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
+ end
38
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
39
+ end
40
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
41
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
42
+ return Aws::Endpoints::Endpoint.new(url: "https://refactor-spaces.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
43
+ end
44
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
42
45
  end
43
- raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
46
+ return Aws::Endpoints::Endpoint.new(url: "https://refactor-spaces.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
44
47
  end
45
- return Aws::Endpoints::Endpoint.new(url: "https://refactor-spaces.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
46
48
  end
49
+ raise ArgumentError, "Invalid Configuration: Missing Region"
47
50
  raise ArgumentError, 'No endpoint could be resolved'
48
51
 
49
52
  end
@@ -1077,7 +1077,7 @@ module Aws::MigrationHubRefactorSpaces
1077
1077
  # @return [Hash<String,String>]
1078
1078
  #
1079
1079
  # @!attribute [rw] transit_gateway_id
1080
- # The ID of the transit gateway set up by the environment.
1080
+ # The ID of the Transit Gateway set up by the environment.
1081
1081
  # @return [String]
1082
1082
  #
1083
1083
  # @see http://docs.aws.amazon.com/goto/WebAPI/migration-hub-refactor-spaces-2021-10-26/EnvironmentSummary AWS API Documentation
@@ -1343,7 +1343,8 @@ module Aws::MigrationHubRefactorSpaces
1343
1343
  # @return [Hash<String,String>]
1344
1344
  #
1345
1345
  # @!attribute [rw] transit_gateway_id
1346
- # The ID of the transit gateway set up by the environment.
1346
+ # The ID of the Transit Gateway set up by the environment, if
1347
+ # applicable.
1347
1348
  # @return [String]
1348
1349
  #
1349
1350
  # @see http://docs.aws.amazon.com/goto/WebAPI/migration-hub-refactor-spaces-2021-10-26/GetEnvironmentResponse AWS API Documentation
@@ -1464,11 +1465,11 @@ module Aws::MigrationHubRefactorSpaces
1464
1465
  # @!attribute [rw] route_id
1465
1466
  # The unique identifier of the route.
1466
1467
  #
1467
- # **DEFAULT**\: All traffic that does not match another route is
1468
+ # **DEFAULT**: All traffic that does not match another route is
1468
1469
  # forwarded to the default route. Applications must have a default
1469
1470
  # route before any other routes can be created.
1470
1471
  #
1471
- # **URI\_PATH**\: A route that is based on a URI path.
1472
+ # **URI\_PATH**: A route that is based on a URI path.
1472
1473
  # @return [String]
1473
1474
  #
1474
1475
  # @!attribute [rw] route_type
@@ -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.10.0'
55
+ GEM_VERSION = '1.12.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.10.0
4
+ version: 1.12.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-01-18 00:00:00.000000000 Z
11
+ date: 2023-04-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core