aws-sdk-mgn 1.16.0 → 1.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mgn/client.rb +424 -10
- data/lib/aws-sdk-mgn/client_api.rb +294 -0
- data/lib/aws-sdk-mgn/endpoint_provider.rb +38 -95
- data/lib/aws-sdk-mgn/endpoints.rb +84 -0
- data/lib/aws-sdk-mgn/plugins/endpoints.rb +12 -0
- data/lib/aws-sdk-mgn/types.rb +688 -796
- data/lib/aws-sdk-mgn.rb +1 -1
- metadata +2 -2
@@ -431,6 +431,62 @@ module Aws::Mgn
|
|
431
431
|
end
|
432
432
|
end
|
433
433
|
|
434
|
+
class ListExportErrors
|
435
|
+
def self.build(context)
|
436
|
+
unless context.config.regional_endpoint
|
437
|
+
endpoint = context.config.endpoint.to_s
|
438
|
+
end
|
439
|
+
Aws::Mgn::EndpointParameters.new(
|
440
|
+
region: context.config.region,
|
441
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
442
|
+
use_fips: context.config.use_fips_endpoint,
|
443
|
+
endpoint: endpoint,
|
444
|
+
)
|
445
|
+
end
|
446
|
+
end
|
447
|
+
|
448
|
+
class ListExports
|
449
|
+
def self.build(context)
|
450
|
+
unless context.config.regional_endpoint
|
451
|
+
endpoint = context.config.endpoint.to_s
|
452
|
+
end
|
453
|
+
Aws::Mgn::EndpointParameters.new(
|
454
|
+
region: context.config.region,
|
455
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
456
|
+
use_fips: context.config.use_fips_endpoint,
|
457
|
+
endpoint: endpoint,
|
458
|
+
)
|
459
|
+
end
|
460
|
+
end
|
461
|
+
|
462
|
+
class ListImportErrors
|
463
|
+
def self.build(context)
|
464
|
+
unless context.config.regional_endpoint
|
465
|
+
endpoint = context.config.endpoint.to_s
|
466
|
+
end
|
467
|
+
Aws::Mgn::EndpointParameters.new(
|
468
|
+
region: context.config.region,
|
469
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
470
|
+
use_fips: context.config.use_fips_endpoint,
|
471
|
+
endpoint: endpoint,
|
472
|
+
)
|
473
|
+
end
|
474
|
+
end
|
475
|
+
|
476
|
+
class ListImports
|
477
|
+
def self.build(context)
|
478
|
+
unless context.config.regional_endpoint
|
479
|
+
endpoint = context.config.endpoint.to_s
|
480
|
+
end
|
481
|
+
Aws::Mgn::EndpointParameters.new(
|
482
|
+
region: context.config.region,
|
483
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
484
|
+
use_fips: context.config.use_fips_endpoint,
|
485
|
+
endpoint: endpoint,
|
486
|
+
)
|
487
|
+
end
|
488
|
+
end
|
489
|
+
|
434
490
|
class ListSourceServerActions
|
435
491
|
def self.build(context)
|
436
492
|
unless context.config.regional_endpoint
|
@@ -585,6 +641,34 @@ module Aws::Mgn
|
|
585
641
|
end
|
586
642
|
end
|
587
643
|
|
644
|
+
class StartExport
|
645
|
+
def self.build(context)
|
646
|
+
unless context.config.regional_endpoint
|
647
|
+
endpoint = context.config.endpoint.to_s
|
648
|
+
end
|
649
|
+
Aws::Mgn::EndpointParameters.new(
|
650
|
+
region: context.config.region,
|
651
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
652
|
+
use_fips: context.config.use_fips_endpoint,
|
653
|
+
endpoint: endpoint,
|
654
|
+
)
|
655
|
+
end
|
656
|
+
end
|
657
|
+
|
658
|
+
class StartImport
|
659
|
+
def self.build(context)
|
660
|
+
unless context.config.regional_endpoint
|
661
|
+
endpoint = context.config.endpoint.to_s
|
662
|
+
end
|
663
|
+
Aws::Mgn::EndpointParameters.new(
|
664
|
+
region: context.config.region,
|
665
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
666
|
+
use_fips: context.config.use_fips_endpoint,
|
667
|
+
endpoint: endpoint,
|
668
|
+
)
|
669
|
+
end
|
670
|
+
end
|
671
|
+
|
588
672
|
class StartReplication
|
589
673
|
def self.build(context)
|
590
674
|
unless context.config.regional_endpoint
|
@@ -116,6 +116,14 @@ module Aws::Mgn
|
|
116
116
|
Aws::Mgn::Endpoints::InitializeService.build(context)
|
117
117
|
when :list_applications
|
118
118
|
Aws::Mgn::Endpoints::ListApplications.build(context)
|
119
|
+
when :list_export_errors
|
120
|
+
Aws::Mgn::Endpoints::ListExportErrors.build(context)
|
121
|
+
when :list_exports
|
122
|
+
Aws::Mgn::Endpoints::ListExports.build(context)
|
123
|
+
when :list_import_errors
|
124
|
+
Aws::Mgn::Endpoints::ListImportErrors.build(context)
|
125
|
+
when :list_imports
|
126
|
+
Aws::Mgn::Endpoints::ListImports.build(context)
|
119
127
|
when :list_source_server_actions
|
120
128
|
Aws::Mgn::Endpoints::ListSourceServerActions.build(context)
|
121
129
|
when :list_tags_for_resource
|
@@ -138,6 +146,10 @@ module Aws::Mgn
|
|
138
146
|
Aws::Mgn::Endpoints::RetryDataReplication.build(context)
|
139
147
|
when :start_cutover
|
140
148
|
Aws::Mgn::Endpoints::StartCutover.build(context)
|
149
|
+
when :start_export
|
150
|
+
Aws::Mgn::Endpoints::StartExport.build(context)
|
151
|
+
when :start_import
|
152
|
+
Aws::Mgn::Endpoints::StartImport.build(context)
|
141
153
|
when :start_replication
|
142
154
|
Aws::Mgn::Endpoints::StartReplication.build(context)
|
143
155
|
when :start_test
|