aws-sdk-mturk 1.23.1 → 1.28.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-mturk.rb +5 -2
- data/lib/aws-sdk-mturk/client.rb +25 -8
- data/lib/aws-sdk-mturk/client_api.rb +2 -0
- data/lib/aws-sdk-mturk/errors.rb +2 -0
- data/lib/aws-sdk-mturk/resource.rb +2 -0
- data/lib/aws-sdk-mturk/types.rb +82 -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: 65afb3fe9a8bade75fdc8d0933a2eea7f8a9f40cf0e52288939add2ad3da1d22
|
4
|
+
data.tar.gz: 4d3542b1b4928c6983d8691b349e92bfc7fe527c2ee4de0ee8738d22811d9560
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a7948b10bfee5686910ff872d35d4987a034aac36bd9d25200e6292740b446d84aa52ba11e506962ca9ee864778182e24fedeb9921a7bba4a1bc3e7f996af99d
|
7
|
+
data.tar.gz: e02bc6b7a6216ee32a076f6abefab140fdb87212bd5d2c8d8eb8333cafc8a488f35c333f0727917cfa93f163d9a64529fc10900fd77e215b6ad86e99fb1efc6f
|
data/lib/aws-sdk-mturk.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-mturk/customizations'
|
|
42
45
|
#
|
43
46
|
# See {Errors} for more information.
|
44
47
|
#
|
45
|
-
#
|
48
|
+
# @!group service
|
46
49
|
module Aws::MTurk
|
47
50
|
|
48
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.28.0'
|
49
52
|
|
50
53
|
end
|
data/lib/aws-sdk-mturk/client.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:
|
@@ -83,13 +85,28 @@ module Aws::MTurk
|
|
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::MTurk
|
|
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
|
@@ -2842,7 +2859,7 @@ module Aws::MTurk
|
|
2842
2859
|
params: params,
|
2843
2860
|
config: config)
|
2844
2861
|
context[:gem_name] = 'aws-sdk-mturk'
|
2845
|
-
context[:gem_version] = '1.
|
2862
|
+
context[:gem_version] = '1.28.0'
|
2846
2863
|
Seahorse::Client::Request.new(handlers, context)
|
2847
2864
|
end
|
2848
2865
|
|
data/lib/aws-sdk-mturk/errors.rb
CHANGED
data/lib/aws-sdk-mturk/types.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:
|
@@ -32,6 +34,7 @@ module Aws::MTurk
|
|
32
34
|
class AcceptQualificationRequestRequest < Struct.new(
|
33
35
|
:qualification_request_id,
|
34
36
|
:integer_value)
|
37
|
+
SENSITIVE = []
|
35
38
|
include Aws::Structure
|
36
39
|
end
|
37
40
|
|
@@ -69,6 +72,7 @@ module Aws::MTurk
|
|
69
72
|
:assignment_id,
|
70
73
|
:requester_feedback,
|
71
74
|
:override_rejection)
|
75
|
+
SENSITIVE = []
|
72
76
|
include Aws::Structure
|
73
77
|
end
|
74
78
|
|
@@ -163,6 +167,7 @@ module Aws::MTurk
|
|
163
167
|
:deadline,
|
164
168
|
:answer,
|
165
169
|
:requester_feedback)
|
170
|
+
SENSITIVE = []
|
166
171
|
include Aws::Structure
|
167
172
|
end
|
168
173
|
|
@@ -204,6 +209,7 @@ module Aws::MTurk
|
|
204
209
|
:worker_id,
|
205
210
|
:integer_value,
|
206
211
|
:send_notification)
|
212
|
+
SENSITIVE = []
|
207
213
|
include Aws::Structure
|
208
214
|
end
|
209
215
|
|
@@ -241,6 +247,7 @@ module Aws::MTurk
|
|
241
247
|
:assignment_id,
|
242
248
|
:reason,
|
243
249
|
:grant_time)
|
250
|
+
SENSITIVE = []
|
244
251
|
include Aws::Structure
|
245
252
|
end
|
246
253
|
|
@@ -277,6 +284,7 @@ module Aws::MTurk
|
|
277
284
|
:hit_id,
|
278
285
|
:number_of_additional_assignments,
|
279
286
|
:unique_request_token)
|
287
|
+
SENSITIVE = []
|
280
288
|
include Aws::Structure
|
281
289
|
end
|
282
290
|
|
@@ -503,6 +511,7 @@ module Aws::MTurk
|
|
503
511
|
:hit_review_policy,
|
504
512
|
:hit_layout_id,
|
505
513
|
:hit_layout_parameters)
|
514
|
+
SENSITIVE = []
|
506
515
|
include Aws::Structure
|
507
516
|
end
|
508
517
|
|
@@ -516,6 +525,7 @@ module Aws::MTurk
|
|
516
525
|
#
|
517
526
|
class CreateHITResponse < Struct.new(
|
518
527
|
:hit)
|
528
|
+
SENSITIVE = []
|
519
529
|
include Aws::Structure
|
520
530
|
end
|
521
531
|
|
@@ -606,6 +616,7 @@ module Aws::MTurk
|
|
606
616
|
:keywords,
|
607
617
|
:description,
|
608
618
|
:qualification_requirements)
|
619
|
+
SENSITIVE = []
|
609
620
|
include Aws::Structure
|
610
621
|
end
|
611
622
|
|
@@ -617,6 +628,7 @@ module Aws::MTurk
|
|
617
628
|
#
|
618
629
|
class CreateHITTypeResponse < Struct.new(
|
619
630
|
:hit_type_id)
|
631
|
+
SENSITIVE = []
|
620
632
|
include Aws::Structure
|
621
633
|
end
|
622
634
|
|
@@ -767,6 +779,7 @@ module Aws::MTurk
|
|
767
779
|
:hit_review_policy,
|
768
780
|
:hit_layout_id,
|
769
781
|
:hit_layout_parameters)
|
782
|
+
SENSITIVE = []
|
770
783
|
include Aws::Structure
|
771
784
|
end
|
772
785
|
|
@@ -780,6 +793,7 @@ module Aws::MTurk
|
|
780
793
|
#
|
781
794
|
class CreateHITWithHITTypeResponse < Struct.new(
|
782
795
|
:hit)
|
796
|
+
SENSITIVE = []
|
783
797
|
include Aws::Structure
|
784
798
|
end
|
785
799
|
|
@@ -893,6 +907,7 @@ module Aws::MTurk
|
|
893
907
|
:test_duration_in_seconds,
|
894
908
|
:auto_granted,
|
895
909
|
:auto_granted_value)
|
910
|
+
SENSITIVE = []
|
896
911
|
include Aws::Structure
|
897
912
|
end
|
898
913
|
|
@@ -905,6 +920,7 @@ module Aws::MTurk
|
|
905
920
|
#
|
906
921
|
class CreateQualificationTypeResponse < Struct.new(
|
907
922
|
:qualification_type)
|
923
|
+
SENSITIVE = []
|
908
924
|
include Aws::Structure
|
909
925
|
end
|
910
926
|
|
@@ -931,6 +947,7 @@ module Aws::MTurk
|
|
931
947
|
class CreateWorkerBlockRequest < Struct.new(
|
932
948
|
:worker_id,
|
933
949
|
:reason)
|
950
|
+
SENSITIVE = []
|
934
951
|
include Aws::Structure
|
935
952
|
end
|
936
953
|
|
@@ -953,6 +970,7 @@ module Aws::MTurk
|
|
953
970
|
#
|
954
971
|
class DeleteHITRequest < Struct.new(
|
955
972
|
:hit_id)
|
973
|
+
SENSITIVE = []
|
956
974
|
include Aws::Structure
|
957
975
|
end
|
958
976
|
|
@@ -975,6 +993,7 @@ module Aws::MTurk
|
|
975
993
|
#
|
976
994
|
class DeleteQualificationTypeRequest < Struct.new(
|
977
995
|
:qualification_type_id)
|
996
|
+
SENSITIVE = []
|
978
997
|
include Aws::Structure
|
979
998
|
end
|
980
999
|
|
@@ -1004,6 +1023,7 @@ module Aws::MTurk
|
|
1004
1023
|
class DeleteWorkerBlockRequest < Struct.new(
|
1005
1024
|
:worker_id,
|
1006
1025
|
:reason)
|
1026
|
+
SENSITIVE = []
|
1007
1027
|
include Aws::Structure
|
1008
1028
|
end
|
1009
1029
|
|
@@ -1039,6 +1059,7 @@ module Aws::MTurk
|
|
1039
1059
|
:worker_id,
|
1040
1060
|
:qualification_type_id,
|
1041
1061
|
:reason)
|
1062
|
+
SENSITIVE = []
|
1042
1063
|
include Aws::Structure
|
1043
1064
|
end
|
1044
1065
|
|
@@ -1065,6 +1086,7 @@ module Aws::MTurk
|
|
1065
1086
|
class GetAccountBalanceResponse < Struct.new(
|
1066
1087
|
:available_balance,
|
1067
1088
|
:on_hold_balance)
|
1089
|
+
SENSITIVE = []
|
1068
1090
|
include Aws::Structure
|
1069
1091
|
end
|
1070
1092
|
|
@@ -1083,6 +1105,7 @@ module Aws::MTurk
|
|
1083
1105
|
#
|
1084
1106
|
class GetAssignmentRequest < Struct.new(
|
1085
1107
|
:assignment_id)
|
1108
|
+
SENSITIVE = []
|
1086
1109
|
include Aws::Structure
|
1087
1110
|
end
|
1088
1111
|
|
@@ -1100,6 +1123,7 @@ module Aws::MTurk
|
|
1100
1123
|
class GetAssignmentResponse < Struct.new(
|
1101
1124
|
:assignment,
|
1102
1125
|
:hit)
|
1126
|
+
SENSITIVE = []
|
1103
1127
|
include Aws::Structure
|
1104
1128
|
end
|
1105
1129
|
|
@@ -1126,6 +1150,7 @@ module Aws::MTurk
|
|
1126
1150
|
class GetFileUploadURLRequest < Struct.new(
|
1127
1151
|
:assignment_id,
|
1128
1152
|
:question_identifier)
|
1153
|
+
SENSITIVE = []
|
1129
1154
|
include Aws::Structure
|
1130
1155
|
end
|
1131
1156
|
|
@@ -1138,6 +1163,7 @@ module Aws::MTurk
|
|
1138
1163
|
#
|
1139
1164
|
class GetFileUploadURLResponse < Struct.new(
|
1140
1165
|
:file_upload_url)
|
1166
|
+
SENSITIVE = []
|
1141
1167
|
include Aws::Structure
|
1142
1168
|
end
|
1143
1169
|
|
@@ -1156,6 +1182,7 @@ module Aws::MTurk
|
|
1156
1182
|
#
|
1157
1183
|
class GetHITRequest < Struct.new(
|
1158
1184
|
:hit_id)
|
1185
|
+
SENSITIVE = []
|
1159
1186
|
include Aws::Structure
|
1160
1187
|
end
|
1161
1188
|
|
@@ -1167,6 +1194,7 @@ module Aws::MTurk
|
|
1167
1194
|
#
|
1168
1195
|
class GetHITResponse < Struct.new(
|
1169
1196
|
:hit)
|
1197
|
+
SENSITIVE = []
|
1170
1198
|
include Aws::Structure
|
1171
1199
|
end
|
1172
1200
|
|
@@ -1191,6 +1219,7 @@ module Aws::MTurk
|
|
1191
1219
|
class GetQualificationScoreRequest < Struct.new(
|
1192
1220
|
:qualification_type_id,
|
1193
1221
|
:worker_id)
|
1222
|
+
SENSITIVE = []
|
1194
1223
|
include Aws::Structure
|
1195
1224
|
end
|
1196
1225
|
|
@@ -1203,6 +1232,7 @@ module Aws::MTurk
|
|
1203
1232
|
#
|
1204
1233
|
class GetQualificationScoreResponse < Struct.new(
|
1205
1234
|
:qualification)
|
1235
|
+
SENSITIVE = []
|
1206
1236
|
include Aws::Structure
|
1207
1237
|
end
|
1208
1238
|
|
@@ -1221,6 +1251,7 @@ module Aws::MTurk
|
|
1221
1251
|
#
|
1222
1252
|
class GetQualificationTypeRequest < Struct.new(
|
1223
1253
|
:qualification_type_id)
|
1254
|
+
SENSITIVE = []
|
1224
1255
|
include Aws::Structure
|
1225
1256
|
end
|
1226
1257
|
|
@@ -1232,6 +1263,7 @@ module Aws::MTurk
|
|
1232
1263
|
#
|
1233
1264
|
class GetQualificationTypeResponse < Struct.new(
|
1234
1265
|
:qualification_type)
|
1266
|
+
SENSITIVE = []
|
1235
1267
|
include Aws::Structure
|
1236
1268
|
end
|
1237
1269
|
|
@@ -1368,6 +1400,7 @@ module Aws::MTurk
|
|
1368
1400
|
:number_of_assignments_pending,
|
1369
1401
|
:number_of_assignments_available,
|
1370
1402
|
:number_of_assignments_completed)
|
1403
|
+
SENSITIVE = []
|
1371
1404
|
include Aws::Structure
|
1372
1405
|
end
|
1373
1406
|
|
@@ -1397,6 +1430,7 @@ module Aws::MTurk
|
|
1397
1430
|
class HITLayoutParameter < Struct.new(
|
1398
1431
|
:name,
|
1399
1432
|
:value)
|
1433
|
+
SENSITIVE = []
|
1400
1434
|
include Aws::Structure
|
1401
1435
|
end
|
1402
1436
|
|
@@ -1433,6 +1467,7 @@ module Aws::MTurk
|
|
1433
1467
|
:next_token,
|
1434
1468
|
:max_results,
|
1435
1469
|
:assignment_statuses)
|
1470
|
+
SENSITIVE = []
|
1436
1471
|
include Aws::Structure
|
1437
1472
|
end
|
1438
1473
|
|
@@ -1458,6 +1493,7 @@ module Aws::MTurk
|
|
1458
1493
|
:next_token,
|
1459
1494
|
:num_results,
|
1460
1495
|
:assignments)
|
1496
|
+
SENSITIVE = []
|
1461
1497
|
include Aws::Structure
|
1462
1498
|
end
|
1463
1499
|
|
@@ -1499,6 +1535,7 @@ module Aws::MTurk
|
|
1499
1535
|
:assignment_id,
|
1500
1536
|
:next_token,
|
1501
1537
|
:max_results)
|
1538
|
+
SENSITIVE = []
|
1502
1539
|
include Aws::Structure
|
1503
1540
|
end
|
1504
1541
|
|
@@ -1526,6 +1563,7 @@ module Aws::MTurk
|
|
1526
1563
|
:num_results,
|
1527
1564
|
:next_token,
|
1528
1565
|
:bonus_payments)
|
1566
|
+
SENSITIVE = []
|
1529
1567
|
include Aws::Structure
|
1530
1568
|
end
|
1531
1569
|
|
@@ -1556,6 +1594,7 @@ module Aws::MTurk
|
|
1556
1594
|
:qualification_type_id,
|
1557
1595
|
:next_token,
|
1558
1596
|
:max_results)
|
1597
|
+
SENSITIVE = []
|
1559
1598
|
include Aws::Structure
|
1560
1599
|
end
|
1561
1600
|
|
@@ -1581,6 +1620,7 @@ module Aws::MTurk
|
|
1581
1620
|
:next_token,
|
1582
1621
|
:num_results,
|
1583
1622
|
:hits)
|
1623
|
+
SENSITIVE = []
|
1584
1624
|
include Aws::Structure
|
1585
1625
|
end
|
1586
1626
|
|
@@ -1604,6 +1644,7 @@ module Aws::MTurk
|
|
1604
1644
|
class ListHITsRequest < Struct.new(
|
1605
1645
|
:next_token,
|
1606
1646
|
:max_results)
|
1647
|
+
SENSITIVE = []
|
1607
1648
|
include Aws::Structure
|
1608
1649
|
end
|
1609
1650
|
|
@@ -1629,6 +1670,7 @@ module Aws::MTurk
|
|
1629
1670
|
:next_token,
|
1630
1671
|
:num_results,
|
1631
1672
|
:hits)
|
1673
|
+
SENSITIVE = []
|
1632
1674
|
include Aws::Structure
|
1633
1675
|
end
|
1634
1676
|
|
@@ -1662,6 +1704,7 @@ module Aws::MTurk
|
|
1662
1704
|
:qualification_type_id,
|
1663
1705
|
:next_token,
|
1664
1706
|
:max_results)
|
1707
|
+
SENSITIVE = []
|
1665
1708
|
include Aws::Structure
|
1666
1709
|
end
|
1667
1710
|
|
@@ -1690,6 +1733,7 @@ module Aws::MTurk
|
|
1690
1733
|
:num_results,
|
1691
1734
|
:next_token,
|
1692
1735
|
:qualification_requests)
|
1736
|
+
SENSITIVE = []
|
1693
1737
|
include Aws::Structure
|
1694
1738
|
end
|
1695
1739
|
|
@@ -1744,6 +1788,7 @@ module Aws::MTurk
|
|
1744
1788
|
:must_be_owned_by_caller,
|
1745
1789
|
:next_token,
|
1746
1790
|
:max_results)
|
1791
|
+
SENSITIVE = []
|
1747
1792
|
include Aws::Structure
|
1748
1793
|
end
|
1749
1794
|
|
@@ -1770,6 +1815,7 @@ module Aws::MTurk
|
|
1770
1815
|
:num_results,
|
1771
1816
|
:next_token,
|
1772
1817
|
:qualification_types)
|
1818
|
+
SENSITIVE = []
|
1773
1819
|
include Aws::Structure
|
1774
1820
|
end
|
1775
1821
|
|
@@ -1823,6 +1869,7 @@ module Aws::MTurk
|
|
1823
1869
|
:retrieve_results,
|
1824
1870
|
:next_token,
|
1825
1871
|
:max_results)
|
1872
|
+
SENSITIVE = []
|
1826
1873
|
include Aws::Structure
|
1827
1874
|
end
|
1828
1875
|
|
@@ -1866,6 +1913,7 @@ module Aws::MTurk
|
|
1866
1913
|
:assignment_review_report,
|
1867
1914
|
:hit_review_report,
|
1868
1915
|
:next_token)
|
1916
|
+
SENSITIVE = []
|
1869
1917
|
include Aws::Structure
|
1870
1918
|
end
|
1871
1919
|
|
@@ -1904,6 +1952,7 @@ module Aws::MTurk
|
|
1904
1952
|
:status,
|
1905
1953
|
:next_token,
|
1906
1954
|
:max_results)
|
1955
|
+
SENSITIVE = []
|
1907
1956
|
include Aws::Structure
|
1908
1957
|
end
|
1909
1958
|
|
@@ -1929,6 +1978,7 @@ module Aws::MTurk
|
|
1929
1978
|
:next_token,
|
1930
1979
|
:num_results,
|
1931
1980
|
:hits)
|
1981
|
+
SENSITIVE = []
|
1932
1982
|
include Aws::Structure
|
1933
1983
|
end
|
1934
1984
|
|
@@ -1952,6 +2002,7 @@ module Aws::MTurk
|
|
1952
2002
|
class ListWorkerBlocksRequest < Struct.new(
|
1953
2003
|
:next_token,
|
1954
2004
|
:max_results)
|
2005
|
+
SENSITIVE = []
|
1955
2006
|
include Aws::Structure
|
1956
2007
|
end
|
1957
2008
|
|
@@ -1978,6 +2029,7 @@ module Aws::MTurk
|
|
1978
2029
|
:next_token,
|
1979
2030
|
:num_results,
|
1980
2031
|
:worker_blocks)
|
2032
|
+
SENSITIVE = []
|
1981
2033
|
include Aws::Structure
|
1982
2034
|
end
|
1983
2035
|
|
@@ -2015,6 +2067,7 @@ module Aws::MTurk
|
|
2015
2067
|
:status,
|
2016
2068
|
:next_token,
|
2017
2069
|
:max_results)
|
2070
|
+
SENSITIVE = []
|
2018
2071
|
include Aws::Structure
|
2019
2072
|
end
|
2020
2073
|
|
@@ -2041,6 +2094,7 @@ module Aws::MTurk
|
|
2041
2094
|
:next_token,
|
2042
2095
|
:num_results,
|
2043
2096
|
:qualifications)
|
2097
|
+
SENSITIVE = []
|
2044
2098
|
include Aws::Structure
|
2045
2099
|
end
|
2046
2100
|
|
@@ -2071,6 +2125,7 @@ module Aws::MTurk
|
|
2071
2125
|
class Locale < Struct.new(
|
2072
2126
|
:country,
|
2073
2127
|
:subdivision)
|
2128
|
+
SENSITIVE = []
|
2074
2129
|
include Aws::Structure
|
2075
2130
|
end
|
2076
2131
|
|
@@ -2124,6 +2179,7 @@ module Aws::MTurk
|
|
2124
2179
|
:transport,
|
2125
2180
|
:version,
|
2126
2181
|
:event_types)
|
2182
|
+
SENSITIVE = []
|
2127
2183
|
include Aws::Structure
|
2128
2184
|
end
|
2129
2185
|
|
@@ -2148,6 +2204,7 @@ module Aws::MTurk
|
|
2148
2204
|
:notify_workers_failure_code,
|
2149
2205
|
:notify_workers_failure_message,
|
2150
2206
|
:worker_id)
|
2207
|
+
SENSITIVE = []
|
2151
2208
|
include Aws::Structure
|
2152
2209
|
end
|
2153
2210
|
|
@@ -2181,6 +2238,7 @@ module Aws::MTurk
|
|
2181
2238
|
:subject,
|
2182
2239
|
:message_text,
|
2183
2240
|
:worker_ids)
|
2241
|
+
SENSITIVE = []
|
2184
2242
|
include Aws::Structure
|
2185
2243
|
end
|
2186
2244
|
|
@@ -2194,6 +2252,7 @@ module Aws::MTurk
|
|
2194
2252
|
#
|
2195
2253
|
class NotifyWorkersResponse < Struct.new(
|
2196
2254
|
:notify_workers_failure_statuses)
|
2255
|
+
SENSITIVE = []
|
2197
2256
|
include Aws::Structure
|
2198
2257
|
end
|
2199
2258
|
|
@@ -2225,6 +2284,7 @@ module Aws::MTurk
|
|
2225
2284
|
class ParameterMapEntry < Struct.new(
|
2226
2285
|
:key,
|
2227
2286
|
:values)
|
2287
|
+
SENSITIVE = []
|
2228
2288
|
include Aws::Structure
|
2229
2289
|
end
|
2230
2290
|
|
@@ -2262,6 +2322,7 @@ module Aws::MTurk
|
|
2262
2322
|
:key,
|
2263
2323
|
:values,
|
2264
2324
|
:map_entries)
|
2325
|
+
SENSITIVE = []
|
2265
2326
|
include Aws::Structure
|
2266
2327
|
end
|
2267
2328
|
|
@@ -2307,6 +2368,7 @@ module Aws::MTurk
|
|
2307
2368
|
:integer_value,
|
2308
2369
|
:locale_value,
|
2309
2370
|
:status)
|
2371
|
+
SENSITIVE = []
|
2310
2372
|
include Aws::Structure
|
2311
2373
|
end
|
2312
2374
|
|
@@ -2358,6 +2420,7 @@ module Aws::MTurk
|
|
2358
2420
|
:test,
|
2359
2421
|
:answer,
|
2360
2422
|
:submit_time)
|
2423
|
+
SENSITIVE = []
|
2361
2424
|
include Aws::Structure
|
2362
2425
|
end
|
2363
2426
|
|
@@ -2469,6 +2532,7 @@ module Aws::MTurk
|
|
2469
2532
|
:locale_values,
|
2470
2533
|
:required_to_preview,
|
2471
2534
|
:actions_guarded)
|
2535
|
+
SENSITIVE = []
|
2472
2536
|
include Aws::Structure
|
2473
2537
|
end
|
2474
2538
|
|
@@ -2575,6 +2639,7 @@ module Aws::MTurk
|
|
2575
2639
|
:is_requestable,
|
2576
2640
|
:auto_granted,
|
2577
2641
|
:auto_granted_value)
|
2642
|
+
SENSITIVE = []
|
2578
2643
|
include Aws::Structure
|
2579
2644
|
end
|
2580
2645
|
|
@@ -2601,6 +2666,7 @@ module Aws::MTurk
|
|
2601
2666
|
class RejectAssignmentRequest < Struct.new(
|
2602
2667
|
:assignment_id,
|
2603
2668
|
:requester_feedback)
|
2669
|
+
SENSITIVE = []
|
2604
2670
|
include Aws::Structure
|
2605
2671
|
end
|
2606
2672
|
|
@@ -2631,6 +2697,7 @@ module Aws::MTurk
|
|
2631
2697
|
class RejectQualificationRequestRequest < Struct.new(
|
2632
2698
|
:qualification_request_id,
|
2633
2699
|
:reason)
|
2700
|
+
SENSITIVE = []
|
2634
2701
|
include Aws::Structure
|
2635
2702
|
end
|
2636
2703
|
|
@@ -2651,6 +2718,7 @@ module Aws::MTurk
|
|
2651
2718
|
class RequestError < Struct.new(
|
2652
2719
|
:message,
|
2653
2720
|
:turk_error_code)
|
2721
|
+
SENSITIVE = []
|
2654
2722
|
include Aws::Structure
|
2655
2723
|
end
|
2656
2724
|
|
@@ -2705,6 +2773,7 @@ module Aws::MTurk
|
|
2705
2773
|
:complete_time,
|
2706
2774
|
:result,
|
2707
2775
|
:error_code)
|
2776
|
+
SENSITIVE = []
|
2708
2777
|
include Aws::Structure
|
2709
2778
|
end
|
2710
2779
|
|
@@ -2744,6 +2813,7 @@ module Aws::MTurk
|
|
2744
2813
|
class ReviewPolicy < Struct.new(
|
2745
2814
|
:policy_name,
|
2746
2815
|
:parameters)
|
2816
|
+
SENSITIVE = []
|
2747
2817
|
include Aws::Structure
|
2748
2818
|
end
|
2749
2819
|
|
@@ -2765,6 +2835,7 @@ module Aws::MTurk
|
|
2765
2835
|
class ReviewReport < Struct.new(
|
2766
2836
|
:review_results,
|
2767
2837
|
:review_actions)
|
2838
|
+
SENSITIVE = []
|
2768
2839
|
include Aws::Structure
|
2769
2840
|
end
|
2770
2841
|
|
@@ -2813,6 +2884,7 @@ module Aws::MTurk
|
|
2813
2884
|
:question_id,
|
2814
2885
|
:key,
|
2815
2886
|
:value)
|
2887
|
+
SENSITIVE = []
|
2816
2888
|
include Aws::Structure
|
2817
2889
|
end
|
2818
2890
|
|
@@ -2864,6 +2936,7 @@ module Aws::MTurk
|
|
2864
2936
|
:assignment_id,
|
2865
2937
|
:reason,
|
2866
2938
|
:unique_request_token)
|
2939
|
+
SENSITIVE = []
|
2867
2940
|
include Aws::Structure
|
2868
2941
|
end
|
2869
2942
|
|
@@ -2903,6 +2976,7 @@ module Aws::MTurk
|
|
2903
2976
|
class SendTestEventNotificationRequest < Struct.new(
|
2904
2977
|
:notification,
|
2905
2978
|
:test_event_type)
|
2979
|
+
SENSITIVE = []
|
2906
2980
|
include Aws::Structure
|
2907
2981
|
end
|
2908
2982
|
|
@@ -2924,6 +2998,7 @@ module Aws::MTurk
|
|
2924
2998
|
class ServiceFault < Struct.new(
|
2925
2999
|
:message,
|
2926
3000
|
:turk_error_code)
|
3001
|
+
SENSITIVE = []
|
2927
3002
|
include Aws::Structure
|
2928
3003
|
end
|
2929
3004
|
|
@@ -2948,6 +3023,7 @@ module Aws::MTurk
|
|
2948
3023
|
class UpdateExpirationForHITRequest < Struct.new(
|
2949
3024
|
:hit_id,
|
2950
3025
|
:expire_at)
|
3026
|
+
SENSITIVE = []
|
2951
3027
|
include Aws::Structure
|
2952
3028
|
end
|
2953
3029
|
|
@@ -2982,6 +3058,7 @@ module Aws::MTurk
|
|
2982
3058
|
class UpdateHITReviewStatusRequest < Struct.new(
|
2983
3059
|
:hit_id,
|
2984
3060
|
:revert)
|
3061
|
+
SENSITIVE = []
|
2985
3062
|
include Aws::Structure
|
2986
3063
|
end
|
2987
3064
|
|
@@ -3010,6 +3087,7 @@ module Aws::MTurk
|
|
3010
3087
|
class UpdateHITTypeOfHITRequest < Struct.new(
|
3011
3088
|
:hit_id,
|
3012
3089
|
:hit_type_id)
|
3090
|
+
SENSITIVE = []
|
3013
3091
|
include Aws::Structure
|
3014
3092
|
end
|
3015
3093
|
|
@@ -3053,6 +3131,7 @@ module Aws::MTurk
|
|
3053
3131
|
:hit_type_id,
|
3054
3132
|
:notification,
|
3055
3133
|
:active)
|
3134
|
+
SENSITIVE = []
|
3056
3135
|
include Aws::Structure
|
3057
3136
|
end
|
3058
3137
|
|
@@ -3147,6 +3226,7 @@ module Aws::MTurk
|
|
3147
3226
|
:retry_delay_in_seconds,
|
3148
3227
|
:auto_granted,
|
3149
3228
|
:auto_granted_value)
|
3229
|
+
SENSITIVE = []
|
3150
3230
|
include Aws::Structure
|
3151
3231
|
end
|
3152
3232
|
|
@@ -3158,6 +3238,7 @@ module Aws::MTurk
|
|
3158
3238
|
#
|
3159
3239
|
class UpdateQualificationTypeResponse < Struct.new(
|
3160
3240
|
:qualification_type)
|
3241
|
+
SENSITIVE = []
|
3161
3242
|
include Aws::Structure
|
3162
3243
|
end
|
3163
3244
|
|
@@ -3178,6 +3259,7 @@ module Aws::MTurk
|
|
3178
3259
|
class WorkerBlock < Struct.new(
|
3179
3260
|
:worker_id,
|
3180
3261
|
:reason)
|
3262
|
+
SENSITIVE = []
|
3181
3263
|
include Aws::Structure
|
3182
3264
|
end
|
3183
3265
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mturk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.28.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
|