aws-sdk-migrationhub 1.25.1 → 1.30.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/lib/aws-sdk-migrationhub.rb +5 -2
- data/lib/aws-sdk-migrationhub/client.rb +25 -8
- data/lib/aws-sdk-migrationhub/client_api.rb +2 -0
- data/lib/aws-sdk-migrationhub/errors.rb +2 -0
- data/lib/aws-sdk-migrationhub/resource.rb +2 -0
- data/lib/aws-sdk-migrationhub/types.rb +44 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0c7a08a7b10a1d385e70de6174773842b5f1515e8a50af620410b9c3002286fc
|
4
|
+
data.tar.gz: 67df21d8d7da0a4e60f8157deddc4b2ce639d15832190714fc6a32a0cd2261d9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc295a72cdfbae7f0c23a7dfa25bf56dfe396df552b3726607be51acd272eb426328c0202aad3529335d5d7cab45d89e9960b1c877a54365c0955f1b09a9e4f3
|
7
|
+
data.tar.gz: aa808a43f9727a5fc8ab582bba4eeea35569385a5c3ad4e4e9e76caf4f5ee0d920c0f2b93780adccbfa2a3d6c505b621d42746b3c4f6c9bbe2607938346cc2d4
|
data/lib/aws-sdk-migrationhub.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -42,9 +45,9 @@ require_relative 'aws-sdk-migrationhub/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::MigrationHub
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.30.0'
|
49
52
|
|
50
53
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -83,13 +85,28 @@ module Aws::MigrationHub
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
84
86
|
# credentials.
|
85
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
88
104
|
#
|
89
|
-
# * `Aws::
|
90
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
91
107
|
#
|
92
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
93
110
|
#
|
94
111
|
# When `:credentials` are not configured directly, the following
|
95
112
|
# locations will be searched for credentials:
|
@@ -99,10 +116,10 @@ module Aws::MigrationHub
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
100
117
|
# * `~/.aws/credentials`
|
101
118
|
# * `~/.aws/config`
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
103
|
-
# very aggressive. Construct and pass an instance of
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
105
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
106
123
|
#
|
107
124
|
# @option options [required, String] :region
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -1153,7 +1170,7 @@ module Aws::MigrationHub
|
|
1153
1170
|
params: params,
|
1154
1171
|
config: config)
|
1155
1172
|
context[:gem_name] = 'aws-sdk-migrationhub'
|
1156
|
-
context[:gem_version] = '1.
|
1173
|
+
context[:gem_version] = '1.30.0'
|
1157
1174
|
Seahorse::Client::Request.new(handlers, context)
|
1158
1175
|
end
|
1159
1176
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -17,6 +19,7 @@ module Aws::MigrationHub
|
|
17
19
|
#
|
18
20
|
class AccessDeniedException < Struct.new(
|
19
21
|
:message)
|
22
|
+
SENSITIVE = []
|
20
23
|
include Aws::Structure
|
21
24
|
end
|
22
25
|
|
@@ -43,6 +46,7 @@ module Aws::MigrationHub
|
|
43
46
|
:application_id,
|
44
47
|
:application_status,
|
45
48
|
:last_updated_time)
|
49
|
+
SENSITIVE = []
|
46
50
|
include Aws::Structure
|
47
51
|
end
|
48
52
|
|
@@ -85,6 +89,7 @@ module Aws::MigrationHub
|
|
85
89
|
:migration_task_name,
|
86
90
|
:created_artifact,
|
87
91
|
:dry_run)
|
92
|
+
SENSITIVE = []
|
88
93
|
include Aws::Structure
|
89
94
|
end
|
90
95
|
|
@@ -130,6 +135,7 @@ module Aws::MigrationHub
|
|
130
135
|
:migration_task_name,
|
131
136
|
:discovered_resource,
|
132
137
|
:dry_run)
|
138
|
+
SENSITIVE = []
|
133
139
|
include Aws::Structure
|
134
140
|
end
|
135
141
|
|
@@ -160,6 +166,7 @@ module Aws::MigrationHub
|
|
160
166
|
class CreateProgressUpdateStreamRequest < Struct.new(
|
161
167
|
:progress_update_stream_name,
|
162
168
|
:dry_run)
|
169
|
+
SENSITIVE = []
|
163
170
|
include Aws::Structure
|
164
171
|
end
|
165
172
|
|
@@ -192,6 +199,7 @@ module Aws::MigrationHub
|
|
192
199
|
class CreatedArtifact < Struct.new(
|
193
200
|
:name,
|
194
201
|
:description)
|
202
|
+
SENSITIVE = []
|
195
203
|
include Aws::Structure
|
196
204
|
end
|
197
205
|
|
@@ -218,6 +226,7 @@ module Aws::MigrationHub
|
|
218
226
|
class DeleteProgressUpdateStreamRequest < Struct.new(
|
219
227
|
:progress_update_stream_name,
|
220
228
|
:dry_run)
|
229
|
+
SENSITIVE = []
|
221
230
|
include Aws::Structure
|
222
231
|
end
|
223
232
|
|
@@ -241,6 +250,7 @@ module Aws::MigrationHub
|
|
241
250
|
#
|
242
251
|
class DescribeApplicationStateRequest < Struct.new(
|
243
252
|
:application_id)
|
253
|
+
SENSITIVE = []
|
244
254
|
include Aws::Structure
|
245
255
|
end
|
246
256
|
|
@@ -257,6 +267,7 @@ module Aws::MigrationHub
|
|
257
267
|
class DescribeApplicationStateResult < Struct.new(
|
258
268
|
:application_status,
|
259
269
|
:last_updated_time)
|
270
|
+
SENSITIVE = []
|
260
271
|
include Aws::Structure
|
261
272
|
end
|
262
273
|
|
@@ -282,6 +293,7 @@ module Aws::MigrationHub
|
|
282
293
|
class DescribeMigrationTaskRequest < Struct.new(
|
283
294
|
:progress_update_stream,
|
284
295
|
:migration_task_name)
|
296
|
+
SENSITIVE = []
|
285
297
|
include Aws::Structure
|
286
298
|
end
|
287
299
|
|
@@ -293,6 +305,7 @@ module Aws::MigrationHub
|
|
293
305
|
#
|
294
306
|
class DescribeMigrationTaskResult < Struct.new(
|
295
307
|
:migration_task)
|
308
|
+
SENSITIVE = []
|
296
309
|
include Aws::Structure
|
297
310
|
end
|
298
311
|
|
@@ -333,6 +346,7 @@ module Aws::MigrationHub
|
|
333
346
|
:migration_task_name,
|
334
347
|
:created_artifact_name,
|
335
348
|
:dry_run)
|
349
|
+
SENSITIVE = []
|
336
350
|
include Aws::Structure
|
337
351
|
end
|
338
352
|
|
@@ -376,6 +390,7 @@ module Aws::MigrationHub
|
|
376
390
|
:migration_task_name,
|
377
391
|
:configuration_id,
|
378
392
|
:dry_run)
|
393
|
+
SENSITIVE = []
|
379
394
|
include Aws::Structure
|
380
395
|
end
|
381
396
|
|
@@ -408,6 +423,7 @@ module Aws::MigrationHub
|
|
408
423
|
class DiscoveredResource < Struct.new(
|
409
424
|
:configuration_id,
|
410
425
|
:description)
|
426
|
+
SENSITIVE = []
|
411
427
|
include Aws::Structure
|
412
428
|
end
|
413
429
|
|
@@ -421,6 +437,7 @@ module Aws::MigrationHub
|
|
421
437
|
#
|
422
438
|
class DryRunOperation < Struct.new(
|
423
439
|
:message)
|
440
|
+
SENSITIVE = []
|
424
441
|
include Aws::Structure
|
425
442
|
end
|
426
443
|
|
@@ -433,6 +450,7 @@ module Aws::MigrationHub
|
|
433
450
|
#
|
434
451
|
class HomeRegionNotSetException < Struct.new(
|
435
452
|
:message)
|
453
|
+
SENSITIVE = []
|
436
454
|
include Aws::Structure
|
437
455
|
end
|
438
456
|
|
@@ -465,6 +483,7 @@ module Aws::MigrationHub
|
|
465
483
|
:progress_update_stream,
|
466
484
|
:migration_task_name,
|
467
485
|
:dry_run)
|
486
|
+
SENSITIVE = []
|
468
487
|
include Aws::Structure
|
469
488
|
end
|
470
489
|
|
@@ -482,6 +501,7 @@ module Aws::MigrationHub
|
|
482
501
|
#
|
483
502
|
class InternalServerError < Struct.new(
|
484
503
|
:message)
|
504
|
+
SENSITIVE = []
|
485
505
|
include Aws::Structure
|
486
506
|
end
|
487
507
|
|
@@ -495,6 +515,7 @@ module Aws::MigrationHub
|
|
495
515
|
#
|
496
516
|
class InvalidInputException < Struct.new(
|
497
517
|
:message)
|
518
|
+
SENSITIVE = []
|
498
519
|
include Aws::Structure
|
499
520
|
end
|
500
521
|
|
@@ -528,6 +549,7 @@ module Aws::MigrationHub
|
|
528
549
|
:application_ids,
|
529
550
|
:next_token,
|
530
551
|
:max_results)
|
552
|
+
SENSITIVE = []
|
531
553
|
include Aws::Structure
|
532
554
|
end
|
533
555
|
|
@@ -546,6 +568,7 @@ module Aws::MigrationHub
|
|
546
568
|
class ListApplicationStatesResult < Struct.new(
|
547
569
|
:application_state_list,
|
548
570
|
:next_token)
|
571
|
+
SENSITIVE = []
|
549
572
|
include Aws::Structure
|
550
573
|
end
|
551
574
|
|
@@ -585,6 +608,7 @@ module Aws::MigrationHub
|
|
585
608
|
:migration_task_name,
|
586
609
|
:next_token,
|
587
610
|
:max_results)
|
611
|
+
SENSITIVE = []
|
588
612
|
include Aws::Structure
|
589
613
|
end
|
590
614
|
|
@@ -604,6 +628,7 @@ module Aws::MigrationHub
|
|
604
628
|
class ListCreatedArtifactsResult < Struct.new(
|
605
629
|
:next_token,
|
606
630
|
:created_artifact_list)
|
631
|
+
SENSITIVE = []
|
607
632
|
include Aws::Structure
|
608
633
|
end
|
609
634
|
|
@@ -643,6 +668,7 @@ module Aws::MigrationHub
|
|
643
668
|
:migration_task_name,
|
644
669
|
:next_token,
|
645
670
|
:max_results)
|
671
|
+
SENSITIVE = []
|
646
672
|
include Aws::Structure
|
647
673
|
end
|
648
674
|
|
@@ -662,6 +688,7 @@ module Aws::MigrationHub
|
|
662
688
|
class ListDiscoveredResourcesResult < Struct.new(
|
663
689
|
:next_token,
|
664
690
|
:discovered_resource_list)
|
691
|
+
SENSITIVE = []
|
665
692
|
include Aws::Structure
|
666
693
|
end
|
667
694
|
|
@@ -694,6 +721,7 @@ module Aws::MigrationHub
|
|
694
721
|
:next_token,
|
695
722
|
:max_results,
|
696
723
|
:resource_name)
|
724
|
+
SENSITIVE = []
|
697
725
|
include Aws::Structure
|
698
726
|
end
|
699
727
|
|
@@ -714,6 +742,7 @@ module Aws::MigrationHub
|
|
714
742
|
class ListMigrationTasksResult < Struct.new(
|
715
743
|
:next_token,
|
716
744
|
:migration_task_summary_list)
|
745
|
+
SENSITIVE = []
|
717
746
|
include Aws::Structure
|
718
747
|
end
|
719
748
|
|
@@ -740,6 +769,7 @@ module Aws::MigrationHub
|
|
740
769
|
class ListProgressUpdateStreamsRequest < Struct.new(
|
741
770
|
:next_token,
|
742
771
|
:max_results)
|
772
|
+
SENSITIVE = []
|
743
773
|
include Aws::Structure
|
744
774
|
end
|
745
775
|
|
@@ -759,6 +789,7 @@ module Aws::MigrationHub
|
|
759
789
|
class ListProgressUpdateStreamsResult < Struct.new(
|
760
790
|
:progress_update_stream_summary_list,
|
761
791
|
:next_token)
|
792
|
+
SENSITIVE = []
|
762
793
|
include Aws::Structure
|
763
794
|
end
|
764
795
|
|
@@ -795,6 +826,7 @@ module Aws::MigrationHub
|
|
795
826
|
:task,
|
796
827
|
:update_date_time,
|
797
828
|
:resource_attribute_list)
|
829
|
+
SENSITIVE = []
|
798
830
|
include Aws::Structure
|
799
831
|
end
|
800
832
|
|
@@ -837,6 +869,7 @@ module Aws::MigrationHub
|
|
837
869
|
:progress_percent,
|
838
870
|
:status_detail,
|
839
871
|
:update_date_time)
|
872
|
+
SENSITIVE = []
|
840
873
|
include Aws::Structure
|
841
874
|
end
|
842
875
|
|
@@ -875,6 +908,7 @@ module Aws::MigrationHub
|
|
875
908
|
:status,
|
876
909
|
:update_date_time,
|
877
910
|
:dry_run)
|
911
|
+
SENSITIVE = []
|
878
912
|
include Aws::Structure
|
879
913
|
end
|
880
914
|
|
@@ -936,6 +970,7 @@ module Aws::MigrationHub
|
|
936
970
|
:update_date_time,
|
937
971
|
:next_update_seconds,
|
938
972
|
:dry_run)
|
973
|
+
SENSITIVE = []
|
939
974
|
include Aws::Structure
|
940
975
|
end
|
941
976
|
|
@@ -955,6 +990,7 @@ module Aws::MigrationHub
|
|
955
990
|
#
|
956
991
|
class PolicyErrorException < Struct.new(
|
957
992
|
:message)
|
993
|
+
SENSITIVE = []
|
958
994
|
include Aws::Structure
|
959
995
|
end
|
960
996
|
|
@@ -970,6 +1006,7 @@ module Aws::MigrationHub
|
|
970
1006
|
#
|
971
1007
|
class ProgressUpdateStreamSummary < Struct.new(
|
972
1008
|
:progress_update_stream_name)
|
1009
|
+
SENSITIVE = []
|
973
1010
|
include Aws::Structure
|
974
1011
|
end
|
975
1012
|
|
@@ -1040,6 +1077,7 @@ module Aws::MigrationHub
|
|
1040
1077
|
:migration_task_name,
|
1041
1078
|
:resource_attribute_list,
|
1042
1079
|
:dry_run)
|
1080
|
+
SENSITIVE = []
|
1043
1081
|
include Aws::Structure
|
1044
1082
|
end
|
1045
1083
|
|
@@ -1092,6 +1130,7 @@ module Aws::MigrationHub
|
|
1092
1130
|
class ResourceAttribute < Struct.new(
|
1093
1131
|
:type,
|
1094
1132
|
:value)
|
1133
|
+
SENSITIVE = []
|
1095
1134
|
include Aws::Structure
|
1096
1135
|
end
|
1097
1136
|
|
@@ -1107,6 +1146,7 @@ module Aws::MigrationHub
|
|
1107
1146
|
#
|
1108
1147
|
class ResourceNotFoundException < Struct.new(
|
1109
1148
|
:message)
|
1149
|
+
SENSITIVE = []
|
1110
1150
|
include Aws::Structure
|
1111
1151
|
end
|
1112
1152
|
|
@@ -1120,6 +1160,7 @@ module Aws::MigrationHub
|
|
1120
1160
|
#
|
1121
1161
|
class ServiceUnavailableException < Struct.new(
|
1122
1162
|
:message)
|
1163
|
+
SENSITIVE = []
|
1123
1164
|
include Aws::Structure
|
1124
1165
|
end
|
1125
1166
|
|
@@ -1154,6 +1195,7 @@ module Aws::MigrationHub
|
|
1154
1195
|
:status,
|
1155
1196
|
:status_detail,
|
1156
1197
|
:progress_percent)
|
1198
|
+
SENSITIVE = []
|
1157
1199
|
include Aws::Structure
|
1158
1200
|
end
|
1159
1201
|
|
@@ -1172,6 +1214,7 @@ module Aws::MigrationHub
|
|
1172
1214
|
class ThrottlingException < Struct.new(
|
1173
1215
|
:message,
|
1174
1216
|
:retry_after_seconds)
|
1217
|
+
SENSITIVE = []
|
1175
1218
|
include Aws::Structure
|
1176
1219
|
end
|
1177
1220
|
|
@@ -1185,6 +1228,7 @@ module Aws::MigrationHub
|
|
1185
1228
|
#
|
1186
1229
|
class UnauthorizedOperation < Struct.new(
|
1187
1230
|
:message)
|
1231
|
+
SENSITIVE = []
|
1188
1232
|
include Aws::Structure
|
1189
1233
|
end
|
1190
1234
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-migrationhub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.30.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:
|
11
|
+
date: 2021-02-02 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.
|
22
|
+
version: 3.112.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.
|
32
|
+
version: 3.112.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|