aws-sdk-devicefarm 1.30.0 → 1.35.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 +5 -5
- data/lib/aws-sdk-devicefarm.rb +9 -4
- data/lib/aws-sdk-devicefarm/client.rb +108 -14
- data/lib/aws-sdk-devicefarm/client_api.rb +2 -0
- data/lib/aws-sdk-devicefarm/customizations.rb +1 -0
- data/lib/aws-sdk-devicefarm/errors.rb +36 -12
- data/lib/aws-sdk-devicefarm/resource.rb +3 -0
- data/lib/aws-sdk-devicefarm/types.rb +204 -0
- metadata +5 -5
@@ -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:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::DeviceFarm
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
14
|
# @param options ({})
|
@@ -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:
|
@@ -70,6 +72,7 @@ module Aws::DeviceFarm
|
|
70
72
|
:max_slots,
|
71
73
|
:default_job_timeout_minutes,
|
72
74
|
:skip_app_resign)
|
75
|
+
SENSITIVE = []
|
73
76
|
include Aws::Structure
|
74
77
|
end
|
75
78
|
|
@@ -83,6 +86,7 @@ module Aws::DeviceFarm
|
|
83
86
|
#
|
84
87
|
class ArgumentException < Struct.new(
|
85
88
|
:message)
|
89
|
+
SENSITIVE = []
|
86
90
|
include Aws::Structure
|
87
91
|
end
|
88
92
|
|
@@ -177,6 +181,7 @@ module Aws::DeviceFarm
|
|
177
181
|
:type,
|
178
182
|
:extension,
|
179
183
|
:url)
|
184
|
+
SENSITIVE = []
|
180
185
|
include Aws::Structure
|
181
186
|
end
|
182
187
|
|
@@ -202,6 +207,7 @@ module Aws::DeviceFarm
|
|
202
207
|
:frequency,
|
203
208
|
:architecture,
|
204
209
|
:clock)
|
210
|
+
SENSITIVE = []
|
205
211
|
include Aws::Structure
|
206
212
|
end
|
207
213
|
|
@@ -214,6 +220,7 @@ module Aws::DeviceFarm
|
|
214
220
|
#
|
215
221
|
class CannotDeleteException < Struct.new(
|
216
222
|
:message)
|
223
|
+
SENSITIVE = []
|
217
224
|
include Aws::Structure
|
218
225
|
end
|
219
226
|
|
@@ -257,6 +264,7 @@ module Aws::DeviceFarm
|
|
257
264
|
:errored,
|
258
265
|
:stopped,
|
259
266
|
:skipped)
|
267
|
+
SENSITIVE = []
|
260
268
|
include Aws::Structure
|
261
269
|
end
|
262
270
|
|
@@ -314,6 +322,7 @@ module Aws::DeviceFarm
|
|
314
322
|
:description,
|
315
323
|
:rules,
|
316
324
|
:max_devices)
|
325
|
+
SENSITIVE = []
|
317
326
|
include Aws::Structure
|
318
327
|
end
|
319
328
|
|
@@ -327,6 +336,7 @@ module Aws::DeviceFarm
|
|
327
336
|
#
|
328
337
|
class CreateDevicePoolResult < Struct.new(
|
329
338
|
:device_pool)
|
339
|
+
SENSITIVE = []
|
330
340
|
include Aws::Structure
|
331
341
|
end
|
332
342
|
|
@@ -375,6 +385,7 @@ module Aws::DeviceFarm
|
|
375
385
|
:package_cleanup,
|
376
386
|
:exclude_app_packages_from_cleanup,
|
377
387
|
:reboot_after_use)
|
388
|
+
SENSITIVE = []
|
378
389
|
include Aws::Structure
|
379
390
|
end
|
380
391
|
|
@@ -386,6 +397,7 @@ module Aws::DeviceFarm
|
|
386
397
|
#
|
387
398
|
class CreateInstanceProfileResult < Struct.new(
|
388
399
|
:instance_profile)
|
400
|
+
SENSITIVE = []
|
389
401
|
include Aws::Structure
|
390
402
|
end
|
391
403
|
|
@@ -479,6 +491,7 @@ module Aws::DeviceFarm
|
|
479
491
|
:downlink_jitter_ms,
|
480
492
|
:uplink_loss_percent,
|
481
493
|
:downlink_loss_percent)
|
494
|
+
SENSITIVE = []
|
482
495
|
include Aws::Structure
|
483
496
|
end
|
484
497
|
|
@@ -491,6 +504,7 @@ module Aws::DeviceFarm
|
|
491
504
|
#
|
492
505
|
class CreateNetworkProfileResult < Struct.new(
|
493
506
|
:network_profile)
|
507
|
+
SENSITIVE = []
|
494
508
|
include Aws::Structure
|
495
509
|
end
|
496
510
|
|
@@ -519,6 +533,7 @@ module Aws::DeviceFarm
|
|
519
533
|
class CreateProjectRequest < Struct.new(
|
520
534
|
:name,
|
521
535
|
:default_job_timeout_minutes)
|
536
|
+
SENSITIVE = []
|
522
537
|
include Aws::Structure
|
523
538
|
end
|
524
539
|
|
@@ -532,6 +547,7 @@ module Aws::DeviceFarm
|
|
532
547
|
#
|
533
548
|
class CreateProjectResult < Struct.new(
|
534
549
|
:project)
|
550
|
+
SENSITIVE = []
|
535
551
|
include Aws::Structure
|
536
552
|
end
|
537
553
|
|
@@ -559,6 +575,7 @@ module Aws::DeviceFarm
|
|
559
575
|
class CreateRemoteAccessSessionConfiguration < Struct.new(
|
560
576
|
:billing_method,
|
561
577
|
:vpce_configuration_arns)
|
578
|
+
SENSITIVE = []
|
562
579
|
include Aws::Structure
|
563
580
|
end
|
564
581
|
|
@@ -699,6 +716,7 @@ module Aws::DeviceFarm
|
|
699
716
|
:configuration,
|
700
717
|
:interaction_mode,
|
701
718
|
:skip_app_resign)
|
719
|
+
SENSITIVE = []
|
702
720
|
include Aws::Structure
|
703
721
|
end
|
704
722
|
|
@@ -714,6 +732,7 @@ module Aws::DeviceFarm
|
|
714
732
|
#
|
715
733
|
class CreateRemoteAccessSessionResult < Struct.new(
|
716
734
|
:remote_access_session)
|
735
|
+
SENSITIVE = []
|
717
736
|
include Aws::Structure
|
718
737
|
end
|
719
738
|
|
@@ -738,6 +757,7 @@ module Aws::DeviceFarm
|
|
738
757
|
class CreateTestGridProjectRequest < Struct.new(
|
739
758
|
:name,
|
740
759
|
:description)
|
760
|
+
SENSITIVE = []
|
741
761
|
include Aws::Structure
|
742
762
|
end
|
743
763
|
|
@@ -749,6 +769,7 @@ module Aws::DeviceFarm
|
|
749
769
|
#
|
750
770
|
class CreateTestGridProjectResult < Struct.new(
|
751
771
|
:test_grid_project)
|
772
|
+
SENSITIVE = []
|
752
773
|
include Aws::Structure
|
753
774
|
end
|
754
775
|
|
@@ -774,6 +795,7 @@ module Aws::DeviceFarm
|
|
774
795
|
class CreateTestGridUrlRequest < Struct.new(
|
775
796
|
:project_arn,
|
776
797
|
:expires_in_seconds)
|
798
|
+
SENSITIVE = []
|
777
799
|
include Aws::Structure
|
778
800
|
end
|
779
801
|
|
@@ -792,6 +814,7 @@ module Aws::DeviceFarm
|
|
792
814
|
class CreateTestGridUrlResult < Struct.new(
|
793
815
|
:url,
|
794
816
|
:expires)
|
817
|
+
SENSITIVE = []
|
795
818
|
include Aws::Structure
|
796
819
|
end
|
797
820
|
|
@@ -904,6 +927,7 @@ module Aws::DeviceFarm
|
|
904
927
|
:name,
|
905
928
|
:type,
|
906
929
|
:content_type)
|
930
|
+
SENSITIVE = []
|
907
931
|
include Aws::Structure
|
908
932
|
end
|
909
933
|
|
@@ -917,6 +941,7 @@ module Aws::DeviceFarm
|
|
917
941
|
#
|
918
942
|
class CreateUploadResult < Struct.new(
|
919
943
|
:upload)
|
944
|
+
SENSITIVE = []
|
920
945
|
include Aws::Structure
|
921
946
|
end
|
922
947
|
|
@@ -957,6 +982,7 @@ module Aws::DeviceFarm
|
|
957
982
|
:vpce_service_name,
|
958
983
|
:service_dns_name,
|
959
984
|
:vpce_configuration_description)
|
985
|
+
SENSITIVE = []
|
960
986
|
include Aws::Structure
|
961
987
|
end
|
962
988
|
|
@@ -969,6 +995,7 @@ module Aws::DeviceFarm
|
|
969
995
|
#
|
970
996
|
class CreateVPCEConfigurationResult < Struct.new(
|
971
997
|
:vpce_configuration)
|
998
|
+
SENSITIVE = []
|
972
999
|
include Aws::Structure
|
973
1000
|
end
|
974
1001
|
|
@@ -1012,6 +1039,7 @@ module Aws::DeviceFarm
|
|
1012
1039
|
:ios_paths,
|
1013
1040
|
:android_paths,
|
1014
1041
|
:device_host_paths)
|
1042
|
+
SENSITIVE = []
|
1015
1043
|
include Aws::Structure
|
1016
1044
|
end
|
1017
1045
|
|
@@ -1033,6 +1061,7 @@ module Aws::DeviceFarm
|
|
1033
1061
|
#
|
1034
1062
|
class DeleteDevicePoolRequest < Struct.new(
|
1035
1063
|
:arn)
|
1064
|
+
SENSITIVE = []
|
1036
1065
|
include Aws::Structure
|
1037
1066
|
end
|
1038
1067
|
|
@@ -1058,6 +1087,7 @@ module Aws::DeviceFarm
|
|
1058
1087
|
#
|
1059
1088
|
class DeleteInstanceProfileRequest < Struct.new(
|
1060
1089
|
:arn)
|
1090
|
+
SENSITIVE = []
|
1061
1091
|
include Aws::Structure
|
1062
1092
|
end
|
1063
1093
|
|
@@ -1080,6 +1110,7 @@ module Aws::DeviceFarm
|
|
1080
1110
|
#
|
1081
1111
|
class DeleteNetworkProfileRequest < Struct.new(
|
1082
1112
|
:arn)
|
1113
|
+
SENSITIVE = []
|
1083
1114
|
include Aws::Structure
|
1084
1115
|
end
|
1085
1116
|
|
@@ -1105,6 +1136,7 @@ module Aws::DeviceFarm
|
|
1105
1136
|
#
|
1106
1137
|
class DeleteProjectRequest < Struct.new(
|
1107
1138
|
:arn)
|
1139
|
+
SENSITIVE = []
|
1108
1140
|
include Aws::Structure
|
1109
1141
|
end
|
1110
1142
|
|
@@ -1132,6 +1164,7 @@ module Aws::DeviceFarm
|
|
1132
1164
|
#
|
1133
1165
|
class DeleteRemoteAccessSessionRequest < Struct.new(
|
1134
1166
|
:arn)
|
1167
|
+
SENSITIVE = []
|
1135
1168
|
include Aws::Structure
|
1136
1169
|
end
|
1137
1170
|
|
@@ -1159,6 +1192,7 @@ module Aws::DeviceFarm
|
|
1159
1192
|
#
|
1160
1193
|
class DeleteRunRequest < Struct.new(
|
1161
1194
|
:arn)
|
1195
|
+
SENSITIVE = []
|
1162
1196
|
include Aws::Structure
|
1163
1197
|
end
|
1164
1198
|
|
@@ -1184,6 +1218,7 @@ module Aws::DeviceFarm
|
|
1184
1218
|
#
|
1185
1219
|
class DeleteTestGridProjectRequest < Struct.new(
|
1186
1220
|
:project_arn)
|
1221
|
+
SENSITIVE = []
|
1187
1222
|
include Aws::Structure
|
1188
1223
|
end
|
1189
1224
|
|
@@ -1209,6 +1244,7 @@ module Aws::DeviceFarm
|
|
1209
1244
|
#
|
1210
1245
|
class DeleteUploadRequest < Struct.new(
|
1211
1246
|
:arn)
|
1247
|
+
SENSITIVE = []
|
1212
1248
|
include Aws::Structure
|
1213
1249
|
end
|
1214
1250
|
|
@@ -1234,6 +1270,7 @@ module Aws::DeviceFarm
|
|
1234
1270
|
#
|
1235
1271
|
class DeleteVPCEConfigurationRequest < Struct.new(
|
1236
1272
|
:arn)
|
1273
|
+
SENSITIVE = []
|
1237
1274
|
include Aws::Structure
|
1238
1275
|
end
|
1239
1276
|
|
@@ -1373,6 +1410,7 @@ module Aws::DeviceFarm
|
|
1373
1410
|
:fleet_name,
|
1374
1411
|
:instances,
|
1375
1412
|
:availability)
|
1413
|
+
SENSITIVE = []
|
1376
1414
|
include Aws::Structure
|
1377
1415
|
end
|
1378
1416
|
|
@@ -1519,6 +1557,7 @@ module Aws::DeviceFarm
|
|
1519
1557
|
:attribute,
|
1520
1558
|
:operator,
|
1521
1559
|
:values)
|
1560
|
+
SENSITIVE = []
|
1522
1561
|
include Aws::Structure
|
1523
1562
|
end
|
1524
1563
|
|
@@ -1557,6 +1596,7 @@ module Aws::DeviceFarm
|
|
1557
1596
|
:status,
|
1558
1597
|
:udid,
|
1559
1598
|
:instance_profile)
|
1599
|
+
SENSITIVE = []
|
1560
1600
|
include Aws::Structure
|
1561
1601
|
end
|
1562
1602
|
|
@@ -1585,6 +1625,7 @@ module Aws::DeviceFarm
|
|
1585
1625
|
:total,
|
1586
1626
|
:metered,
|
1587
1627
|
:unmetered)
|
1628
|
+
SENSITIVE = []
|
1588
1629
|
include Aws::Structure
|
1589
1630
|
end
|
1590
1631
|
|
@@ -1638,6 +1679,7 @@ module Aws::DeviceFarm
|
|
1638
1679
|
:type,
|
1639
1680
|
:rules,
|
1640
1681
|
:max_devices)
|
1682
|
+
SENSITIVE = []
|
1641
1683
|
include Aws::Structure
|
1642
1684
|
end
|
1643
1685
|
|
@@ -1661,6 +1703,7 @@ module Aws::DeviceFarm
|
|
1661
1703
|
:device,
|
1662
1704
|
:compatible,
|
1663
1705
|
:incompatibility_messages)
|
1706
|
+
SENSITIVE = []
|
1664
1707
|
include Aws::Structure
|
1665
1708
|
end
|
1666
1709
|
|
@@ -1778,6 +1821,7 @@ module Aws::DeviceFarm
|
|
1778
1821
|
class DeviceSelectionConfiguration < Struct.new(
|
1779
1822
|
:filters,
|
1780
1823
|
:max_devices)
|
1824
|
+
SENSITIVE = []
|
1781
1825
|
include Aws::Structure
|
1782
1826
|
end
|
1783
1827
|
|
@@ -1805,6 +1849,7 @@ module Aws::DeviceFarm
|
|
1805
1849
|
:filters,
|
1806
1850
|
:matched_devices_count,
|
1807
1851
|
:max_devices)
|
1852
|
+
SENSITIVE = []
|
1808
1853
|
include Aws::Structure
|
1809
1854
|
end
|
1810
1855
|
|
@@ -1862,6 +1907,7 @@ module Aws::DeviceFarm
|
|
1862
1907
|
:app_packages_cleanup,
|
1863
1908
|
:video_capture,
|
1864
1909
|
:skip_app_resign)
|
1910
|
+
SENSITIVE = []
|
1865
1911
|
include Aws::Structure
|
1866
1912
|
end
|
1867
1913
|
|
@@ -1884,6 +1930,7 @@ module Aws::DeviceFarm
|
|
1884
1930
|
#
|
1885
1931
|
class GetAccountSettingsResult < Struct.new(
|
1886
1932
|
:account_settings)
|
1933
|
+
SENSITIVE = []
|
1887
1934
|
include Aws::Structure
|
1888
1935
|
end
|
1889
1936
|
|
@@ -1903,6 +1950,7 @@ module Aws::DeviceFarm
|
|
1903
1950
|
#
|
1904
1951
|
class GetDeviceInstanceRequest < Struct.new(
|
1905
1952
|
:arn)
|
1953
|
+
SENSITIVE = []
|
1906
1954
|
include Aws::Structure
|
1907
1955
|
end
|
1908
1956
|
|
@@ -1914,6 +1962,7 @@ module Aws::DeviceFarm
|
|
1914
1962
|
#
|
1915
1963
|
class GetDeviceInstanceResult < Struct.new(
|
1916
1964
|
:device_instance)
|
1965
|
+
SENSITIVE = []
|
1917
1966
|
include Aws::Structure
|
1918
1967
|
end
|
1919
1968
|
|
@@ -2030,6 +2079,7 @@ module Aws::DeviceFarm
|
|
2030
2079
|
:test_type,
|
2031
2080
|
:test,
|
2032
2081
|
:configuration)
|
2082
|
+
SENSITIVE = []
|
2033
2083
|
include Aws::Structure
|
2034
2084
|
end
|
2035
2085
|
|
@@ -2048,6 +2098,7 @@ module Aws::DeviceFarm
|
|
2048
2098
|
class GetDevicePoolCompatibilityResult < Struct.new(
|
2049
2099
|
:compatible_devices,
|
2050
2100
|
:incompatible_devices)
|
2101
|
+
SENSITIVE = []
|
2051
2102
|
include Aws::Structure
|
2052
2103
|
end
|
2053
2104
|
|
@@ -2068,6 +2119,7 @@ module Aws::DeviceFarm
|
|
2068
2119
|
#
|
2069
2120
|
class GetDevicePoolRequest < Struct.new(
|
2070
2121
|
:arn)
|
2122
|
+
SENSITIVE = []
|
2071
2123
|
include Aws::Structure
|
2072
2124
|
end
|
2073
2125
|
|
@@ -2081,6 +2133,7 @@ module Aws::DeviceFarm
|
|
2081
2133
|
#
|
2082
2134
|
class GetDevicePoolResult < Struct.new(
|
2083
2135
|
:device_pool)
|
2136
|
+
SENSITIVE = []
|
2084
2137
|
include Aws::Structure
|
2085
2138
|
end
|
2086
2139
|
|
@@ -2101,6 +2154,7 @@ module Aws::DeviceFarm
|
|
2101
2154
|
#
|
2102
2155
|
class GetDeviceRequest < Struct.new(
|
2103
2156
|
:arn)
|
2157
|
+
SENSITIVE = []
|
2104
2158
|
include Aws::Structure
|
2105
2159
|
end
|
2106
2160
|
|
@@ -2114,6 +2168,7 @@ module Aws::DeviceFarm
|
|
2114
2168
|
#
|
2115
2169
|
class GetDeviceResult < Struct.new(
|
2116
2170
|
:device)
|
2171
|
+
SENSITIVE = []
|
2117
2172
|
include Aws::Structure
|
2118
2173
|
end
|
2119
2174
|
|
@@ -2132,6 +2187,7 @@ module Aws::DeviceFarm
|
|
2132
2187
|
#
|
2133
2188
|
class GetInstanceProfileRequest < Struct.new(
|
2134
2189
|
:arn)
|
2190
|
+
SENSITIVE = []
|
2135
2191
|
include Aws::Structure
|
2136
2192
|
end
|
2137
2193
|
|
@@ -2143,6 +2199,7 @@ module Aws::DeviceFarm
|
|
2143
2199
|
#
|
2144
2200
|
class GetInstanceProfileResult < Struct.new(
|
2145
2201
|
:instance_profile)
|
2202
|
+
SENSITIVE = []
|
2146
2203
|
include Aws::Structure
|
2147
2204
|
end
|
2148
2205
|
|
@@ -2163,6 +2220,7 @@ module Aws::DeviceFarm
|
|
2163
2220
|
#
|
2164
2221
|
class GetJobRequest < Struct.new(
|
2165
2222
|
:arn)
|
2223
|
+
SENSITIVE = []
|
2166
2224
|
include Aws::Structure
|
2167
2225
|
end
|
2168
2226
|
|
@@ -2176,6 +2234,7 @@ module Aws::DeviceFarm
|
|
2176
2234
|
#
|
2177
2235
|
class GetJobResult < Struct.new(
|
2178
2236
|
:job)
|
2237
|
+
SENSITIVE = []
|
2179
2238
|
include Aws::Structure
|
2180
2239
|
end
|
2181
2240
|
|
@@ -2194,6 +2253,7 @@ module Aws::DeviceFarm
|
|
2194
2253
|
#
|
2195
2254
|
class GetNetworkProfileRequest < Struct.new(
|
2196
2255
|
:arn)
|
2256
|
+
SENSITIVE = []
|
2197
2257
|
include Aws::Structure
|
2198
2258
|
end
|
2199
2259
|
|
@@ -2205,6 +2265,7 @@ module Aws::DeviceFarm
|
|
2205
2265
|
#
|
2206
2266
|
class GetNetworkProfileResult < Struct.new(
|
2207
2267
|
:network_profile)
|
2268
|
+
SENSITIVE = []
|
2208
2269
|
include Aws::Structure
|
2209
2270
|
end
|
2210
2271
|
|
@@ -2228,6 +2289,7 @@ module Aws::DeviceFarm
|
|
2228
2289
|
#
|
2229
2290
|
class GetOfferingStatusRequest < Struct.new(
|
2230
2291
|
:next_token)
|
2292
|
+
SENSITIVE = []
|
2231
2293
|
include Aws::Structure
|
2232
2294
|
end
|
2233
2295
|
|
@@ -2253,6 +2315,7 @@ module Aws::DeviceFarm
|
|
2253
2315
|
:current,
|
2254
2316
|
:next_period,
|
2255
2317
|
:next_token)
|
2318
|
+
SENSITIVE = []
|
2256
2319
|
include Aws::Structure
|
2257
2320
|
end
|
2258
2321
|
|
@@ -2273,6 +2336,7 @@ module Aws::DeviceFarm
|
|
2273
2336
|
#
|
2274
2337
|
class GetProjectRequest < Struct.new(
|
2275
2338
|
:arn)
|
2339
|
+
SENSITIVE = []
|
2276
2340
|
include Aws::Structure
|
2277
2341
|
end
|
2278
2342
|
|
@@ -2286,6 +2350,7 @@ module Aws::DeviceFarm
|
|
2286
2350
|
#
|
2287
2351
|
class GetProjectResult < Struct.new(
|
2288
2352
|
:project)
|
2353
|
+
SENSITIVE = []
|
2289
2354
|
include Aws::Structure
|
2290
2355
|
end
|
2291
2356
|
|
@@ -2308,6 +2373,7 @@ module Aws::DeviceFarm
|
|
2308
2373
|
#
|
2309
2374
|
class GetRemoteAccessSessionRequest < Struct.new(
|
2310
2375
|
:arn)
|
2376
|
+
SENSITIVE = []
|
2311
2377
|
include Aws::Structure
|
2312
2378
|
end
|
2313
2379
|
|
@@ -2323,6 +2389,7 @@ module Aws::DeviceFarm
|
|
2323
2389
|
#
|
2324
2390
|
class GetRemoteAccessSessionResult < Struct.new(
|
2325
2391
|
:remote_access_session)
|
2392
|
+
SENSITIVE = []
|
2326
2393
|
include Aws::Structure
|
2327
2394
|
end
|
2328
2395
|
|
@@ -2343,6 +2410,7 @@ module Aws::DeviceFarm
|
|
2343
2410
|
#
|
2344
2411
|
class GetRunRequest < Struct.new(
|
2345
2412
|
:arn)
|
2413
|
+
SENSITIVE = []
|
2346
2414
|
include Aws::Structure
|
2347
2415
|
end
|
2348
2416
|
|
@@ -2356,6 +2424,7 @@ module Aws::DeviceFarm
|
|
2356
2424
|
#
|
2357
2425
|
class GetRunResult < Struct.new(
|
2358
2426
|
:run)
|
2427
|
+
SENSITIVE = []
|
2359
2428
|
include Aws::Structure
|
2360
2429
|
end
|
2361
2430
|
|
@@ -2376,6 +2445,7 @@ module Aws::DeviceFarm
|
|
2376
2445
|
#
|
2377
2446
|
class GetSuiteRequest < Struct.new(
|
2378
2447
|
:arn)
|
2448
|
+
SENSITIVE = []
|
2379
2449
|
include Aws::Structure
|
2380
2450
|
end
|
2381
2451
|
|
@@ -2389,6 +2459,7 @@ module Aws::DeviceFarm
|
|
2389
2459
|
#
|
2390
2460
|
class GetSuiteResult < Struct.new(
|
2391
2461
|
:suite)
|
2462
|
+
SENSITIVE = []
|
2392
2463
|
include Aws::Structure
|
2393
2464
|
end
|
2394
2465
|
|
@@ -2408,6 +2479,7 @@ module Aws::DeviceFarm
|
|
2408
2479
|
#
|
2409
2480
|
class GetTestGridProjectRequest < Struct.new(
|
2410
2481
|
:project_arn)
|
2482
|
+
SENSITIVE = []
|
2411
2483
|
include Aws::Structure
|
2412
2484
|
end
|
2413
2485
|
|
@@ -2419,6 +2491,7 @@ module Aws::DeviceFarm
|
|
2419
2491
|
#
|
2420
2492
|
class GetTestGridProjectResult < Struct.new(
|
2421
2493
|
:test_grid_project)
|
2494
|
+
SENSITIVE = []
|
2422
2495
|
include Aws::Structure
|
2423
2496
|
end
|
2424
2497
|
|
@@ -2450,6 +2523,7 @@ module Aws::DeviceFarm
|
|
2450
2523
|
:project_arn,
|
2451
2524
|
:session_id,
|
2452
2525
|
:session_arn)
|
2526
|
+
SENSITIVE = []
|
2453
2527
|
include Aws::Structure
|
2454
2528
|
end
|
2455
2529
|
|
@@ -2461,6 +2535,7 @@ module Aws::DeviceFarm
|
|
2461
2535
|
#
|
2462
2536
|
class GetTestGridSessionResult < Struct.new(
|
2463
2537
|
:test_grid_session)
|
2538
|
+
SENSITIVE = []
|
2464
2539
|
include Aws::Structure
|
2465
2540
|
end
|
2466
2541
|
|
@@ -2481,6 +2556,7 @@ module Aws::DeviceFarm
|
|
2481
2556
|
#
|
2482
2557
|
class GetTestRequest < Struct.new(
|
2483
2558
|
:arn)
|
2559
|
+
SENSITIVE = []
|
2484
2560
|
include Aws::Structure
|
2485
2561
|
end
|
2486
2562
|
|
@@ -2494,6 +2570,7 @@ module Aws::DeviceFarm
|
|
2494
2570
|
#
|
2495
2571
|
class GetTestResult < Struct.new(
|
2496
2572
|
:test)
|
2573
|
+
SENSITIVE = []
|
2497
2574
|
include Aws::Structure
|
2498
2575
|
end
|
2499
2576
|
|
@@ -2514,6 +2591,7 @@ module Aws::DeviceFarm
|
|
2514
2591
|
#
|
2515
2592
|
class GetUploadRequest < Struct.new(
|
2516
2593
|
:arn)
|
2594
|
+
SENSITIVE = []
|
2517
2595
|
include Aws::Structure
|
2518
2596
|
end
|
2519
2597
|
|
@@ -2528,6 +2606,7 @@ module Aws::DeviceFarm
|
|
2528
2606
|
#
|
2529
2607
|
class GetUploadResult < Struct.new(
|
2530
2608
|
:upload)
|
2609
|
+
SENSITIVE = []
|
2531
2610
|
include Aws::Structure
|
2532
2611
|
end
|
2533
2612
|
|
@@ -2547,6 +2626,7 @@ module Aws::DeviceFarm
|
|
2547
2626
|
#
|
2548
2627
|
class GetVPCEConfigurationRequest < Struct.new(
|
2549
2628
|
:arn)
|
2629
|
+
SENSITIVE = []
|
2550
2630
|
include Aws::Structure
|
2551
2631
|
end
|
2552
2632
|
|
@@ -2559,6 +2639,7 @@ module Aws::DeviceFarm
|
|
2559
2639
|
#
|
2560
2640
|
class GetVPCEConfigurationResult < Struct.new(
|
2561
2641
|
:vpce_configuration)
|
2642
|
+
SENSITIVE = []
|
2562
2643
|
include Aws::Structure
|
2563
2644
|
end
|
2564
2645
|
|
@@ -2572,6 +2653,7 @@ module Aws::DeviceFarm
|
|
2572
2653
|
#
|
2573
2654
|
class IdempotencyException < Struct.new(
|
2574
2655
|
:message)
|
2656
|
+
SENSITIVE = []
|
2575
2657
|
include Aws::Structure
|
2576
2658
|
end
|
2577
2659
|
|
@@ -2604,6 +2686,7 @@ module Aws::DeviceFarm
|
|
2604
2686
|
class IncompatibilityMessage < Struct.new(
|
2605
2687
|
:message,
|
2606
2688
|
:type)
|
2689
|
+
SENSITIVE = []
|
2607
2690
|
include Aws::Structure
|
2608
2691
|
end
|
2609
2692
|
|
@@ -2633,6 +2716,7 @@ module Aws::DeviceFarm
|
|
2633
2716
|
class InstallToRemoteAccessSessionRequest < Struct.new(
|
2634
2717
|
:remote_access_session_arn,
|
2635
2718
|
:app_arn)
|
2719
|
+
SENSITIVE = []
|
2636
2720
|
include Aws::Structure
|
2637
2721
|
end
|
2638
2722
|
|
@@ -2647,6 +2731,7 @@ module Aws::DeviceFarm
|
|
2647
2731
|
#
|
2648
2732
|
class InstallToRemoteAccessSessionResult < Struct.new(
|
2649
2733
|
:app_upload)
|
2734
|
+
SENSITIVE = []
|
2650
2735
|
include Aws::Structure
|
2651
2736
|
end
|
2652
2737
|
|
@@ -2691,6 +2776,7 @@ module Aws::DeviceFarm
|
|
2691
2776
|
:reboot_after_use,
|
2692
2777
|
:name,
|
2693
2778
|
:description)
|
2779
|
+
SENSITIVE = []
|
2694
2780
|
include Aws::Structure
|
2695
2781
|
end
|
2696
2782
|
|
@@ -2705,6 +2791,7 @@ module Aws::DeviceFarm
|
|
2705
2791
|
#
|
2706
2792
|
class InternalServiceException < Struct.new(
|
2707
2793
|
:message)
|
2794
|
+
SENSITIVE = []
|
2708
2795
|
include Aws::Structure
|
2709
2796
|
end
|
2710
2797
|
|
@@ -2718,6 +2805,7 @@ module Aws::DeviceFarm
|
|
2718
2805
|
#
|
2719
2806
|
class InvalidOperationException < Struct.new(
|
2720
2807
|
:message)
|
2808
|
+
SENSITIVE = []
|
2721
2809
|
include Aws::Structure
|
2722
2810
|
end
|
2723
2811
|
|
@@ -2878,6 +2966,7 @@ module Aws::DeviceFarm
|
|
2878
2966
|
:device_minutes,
|
2879
2967
|
:video_endpoint,
|
2880
2968
|
:video_capture)
|
2969
|
+
SENSITIVE = []
|
2881
2970
|
include Aws::Structure
|
2882
2971
|
end
|
2883
2972
|
|
@@ -2891,6 +2980,7 @@ module Aws::DeviceFarm
|
|
2891
2980
|
#
|
2892
2981
|
class LimitExceededException < Struct.new(
|
2893
2982
|
:message)
|
2983
|
+
SENSITIVE = []
|
2894
2984
|
include Aws::Structure
|
2895
2985
|
end
|
2896
2986
|
|
@@ -2933,6 +3023,7 @@ module Aws::DeviceFarm
|
|
2933
3023
|
:arn,
|
2934
3024
|
:type,
|
2935
3025
|
:next_token)
|
3026
|
+
SENSITIVE = []
|
2936
3027
|
include Aws::Structure
|
2937
3028
|
end
|
2938
3029
|
|
@@ -2954,6 +3045,7 @@ module Aws::DeviceFarm
|
|
2954
3045
|
class ListArtifactsResult < Struct.new(
|
2955
3046
|
:artifacts,
|
2956
3047
|
:next_token)
|
3048
|
+
SENSITIVE = []
|
2957
3049
|
include Aws::Structure
|
2958
3050
|
end
|
2959
3051
|
|
@@ -2981,6 +3073,7 @@ module Aws::DeviceFarm
|
|
2981
3073
|
class ListDeviceInstancesRequest < Struct.new(
|
2982
3074
|
:max_results,
|
2983
3075
|
:next_token)
|
3076
|
+
SENSITIVE = []
|
2984
3077
|
include Aws::Structure
|
2985
3078
|
end
|
2986
3079
|
|
@@ -2998,6 +3091,7 @@ module Aws::DeviceFarm
|
|
2998
3091
|
class ListDeviceInstancesResult < Struct.new(
|
2999
3092
|
:device_instances,
|
3000
3093
|
:next_token)
|
3094
|
+
SENSITIVE = []
|
3001
3095
|
include Aws::Structure
|
3002
3096
|
end
|
3003
3097
|
|
@@ -3040,6 +3134,7 @@ module Aws::DeviceFarm
|
|
3040
3134
|
:arn,
|
3041
3135
|
:type,
|
3042
3136
|
:next_token)
|
3137
|
+
SENSITIVE = []
|
3043
3138
|
include Aws::Structure
|
3044
3139
|
end
|
3045
3140
|
|
@@ -3061,6 +3156,7 @@ module Aws::DeviceFarm
|
|
3061
3156
|
class ListDevicePoolsResult < Struct.new(
|
3062
3157
|
:device_pools,
|
3063
3158
|
:next_token)
|
3159
|
+
SENSITIVE = []
|
3064
3160
|
include Aws::Structure
|
3065
3161
|
end
|
3066
3162
|
|
@@ -3170,6 +3266,7 @@ module Aws::DeviceFarm
|
|
3170
3266
|
:arn,
|
3171
3267
|
:next_token,
|
3172
3268
|
:filters)
|
3269
|
+
SENSITIVE = []
|
3173
3270
|
include Aws::Structure
|
3174
3271
|
end
|
3175
3272
|
|
@@ -3191,6 +3288,7 @@ module Aws::DeviceFarm
|
|
3191
3288
|
class ListDevicesResult < Struct.new(
|
3192
3289
|
:devices,
|
3193
3290
|
:next_token)
|
3291
|
+
SENSITIVE = []
|
3194
3292
|
include Aws::Structure
|
3195
3293
|
end
|
3196
3294
|
|
@@ -3218,6 +3316,7 @@ module Aws::DeviceFarm
|
|
3218
3316
|
class ListInstanceProfilesRequest < Struct.new(
|
3219
3317
|
:max_results,
|
3220
3318
|
:next_token)
|
3319
|
+
SENSITIVE = []
|
3221
3320
|
include Aws::Structure
|
3222
3321
|
end
|
3223
3322
|
|
@@ -3235,6 +3334,7 @@ module Aws::DeviceFarm
|
|
3235
3334
|
class ListInstanceProfilesResult < Struct.new(
|
3236
3335
|
:instance_profiles,
|
3237
3336
|
:next_token)
|
3337
|
+
SENSITIVE = []
|
3238
3338
|
include Aws::Structure
|
3239
3339
|
end
|
3240
3340
|
|
@@ -3263,6 +3363,7 @@ module Aws::DeviceFarm
|
|
3263
3363
|
class ListJobsRequest < Struct.new(
|
3264
3364
|
:arn,
|
3265
3365
|
:next_token)
|
3366
|
+
SENSITIVE = []
|
3266
3367
|
include Aws::Structure
|
3267
3368
|
end
|
3268
3369
|
|
@@ -3284,6 +3385,7 @@ module Aws::DeviceFarm
|
|
3284
3385
|
class ListJobsResult < Struct.new(
|
3285
3386
|
:jobs,
|
3286
3387
|
:next_token)
|
3388
|
+
SENSITIVE = []
|
3287
3389
|
include Aws::Structure
|
3288
3390
|
end
|
3289
3391
|
|
@@ -3318,6 +3420,7 @@ module Aws::DeviceFarm
|
|
3318
3420
|
:arn,
|
3319
3421
|
:type,
|
3320
3422
|
:next_token)
|
3423
|
+
SENSITIVE = []
|
3321
3424
|
include Aws::Structure
|
3322
3425
|
end
|
3323
3426
|
|
@@ -3336,6 +3439,7 @@ module Aws::DeviceFarm
|
|
3336
3439
|
class ListNetworkProfilesResult < Struct.new(
|
3337
3440
|
:network_profiles,
|
3338
3441
|
:next_token)
|
3442
|
+
SENSITIVE = []
|
3339
3443
|
include Aws::Structure
|
3340
3444
|
end
|
3341
3445
|
|
@@ -3356,6 +3460,7 @@ module Aws::DeviceFarm
|
|
3356
3460
|
#
|
3357
3461
|
class ListOfferingPromotionsRequest < Struct.new(
|
3358
3462
|
:next_token)
|
3463
|
+
SENSITIVE = []
|
3359
3464
|
include Aws::Structure
|
3360
3465
|
end
|
3361
3466
|
|
@@ -3373,6 +3478,7 @@ module Aws::DeviceFarm
|
|
3373
3478
|
class ListOfferingPromotionsResult < Struct.new(
|
3374
3479
|
:offering_promotions,
|
3375
3480
|
:next_token)
|
3481
|
+
SENSITIVE = []
|
3376
3482
|
include Aws::Structure
|
3377
3483
|
end
|
3378
3484
|
|
@@ -3395,6 +3501,7 @@ module Aws::DeviceFarm
|
|
3395
3501
|
#
|
3396
3502
|
class ListOfferingTransactionsRequest < Struct.new(
|
3397
3503
|
:next_token)
|
3504
|
+
SENSITIVE = []
|
3398
3505
|
include Aws::Structure
|
3399
3506
|
end
|
3400
3507
|
|
@@ -3416,6 +3523,7 @@ module Aws::DeviceFarm
|
|
3416
3523
|
class ListOfferingTransactionsResult < Struct.new(
|
3417
3524
|
:offering_transactions,
|
3418
3525
|
:next_token)
|
3526
|
+
SENSITIVE = []
|
3419
3527
|
include Aws::Structure
|
3420
3528
|
end
|
3421
3529
|
|
@@ -3438,6 +3546,7 @@ module Aws::DeviceFarm
|
|
3438
3546
|
#
|
3439
3547
|
class ListOfferingsRequest < Struct.new(
|
3440
3548
|
:next_token)
|
3549
|
+
SENSITIVE = []
|
3441
3550
|
include Aws::Structure
|
3442
3551
|
end
|
3443
3552
|
|
@@ -3458,6 +3567,7 @@ module Aws::DeviceFarm
|
|
3458
3567
|
class ListOfferingsResult < Struct.new(
|
3459
3568
|
:offerings,
|
3460
3569
|
:next_token)
|
3570
|
+
SENSITIVE = []
|
3461
3571
|
include Aws::Structure
|
3462
3572
|
end
|
3463
3573
|
|
@@ -3488,6 +3598,7 @@ module Aws::DeviceFarm
|
|
3488
3598
|
class ListProjectsRequest < Struct.new(
|
3489
3599
|
:arn,
|
3490
3600
|
:next_token)
|
3601
|
+
SENSITIVE = []
|
3491
3602
|
include Aws::Structure
|
3492
3603
|
end
|
3493
3604
|
|
@@ -3509,6 +3620,7 @@ module Aws::DeviceFarm
|
|
3509
3620
|
class ListProjectsResult < Struct.new(
|
3510
3621
|
:projects,
|
3511
3622
|
:next_token)
|
3623
|
+
SENSITIVE = []
|
3512
3624
|
include Aws::Structure
|
3513
3625
|
end
|
3514
3626
|
|
@@ -3539,6 +3651,7 @@ module Aws::DeviceFarm
|
|
3539
3651
|
class ListRemoteAccessSessionsRequest < Struct.new(
|
3540
3652
|
:arn,
|
3541
3653
|
:next_token)
|
3654
|
+
SENSITIVE = []
|
3542
3655
|
include Aws::Structure
|
3543
3656
|
end
|
3544
3657
|
|
@@ -3561,6 +3674,7 @@ module Aws::DeviceFarm
|
|
3561
3674
|
class ListRemoteAccessSessionsResult < Struct.new(
|
3562
3675
|
:remote_access_sessions,
|
3563
3676
|
:next_token)
|
3677
|
+
SENSITIVE = []
|
3564
3678
|
include Aws::Structure
|
3565
3679
|
end
|
3566
3680
|
|
@@ -3590,6 +3704,7 @@ module Aws::DeviceFarm
|
|
3590
3704
|
class ListRunsRequest < Struct.new(
|
3591
3705
|
:arn,
|
3592
3706
|
:next_token)
|
3707
|
+
SENSITIVE = []
|
3593
3708
|
include Aws::Structure
|
3594
3709
|
end
|
3595
3710
|
|
@@ -3611,6 +3726,7 @@ module Aws::DeviceFarm
|
|
3611
3726
|
class ListRunsResult < Struct.new(
|
3612
3727
|
:runs,
|
3613
3728
|
:next_token)
|
3729
|
+
SENSITIVE = []
|
3614
3730
|
include Aws::Structure
|
3615
3731
|
end
|
3616
3732
|
|
@@ -3639,6 +3755,7 @@ module Aws::DeviceFarm
|
|
3639
3755
|
class ListSamplesRequest < Struct.new(
|
3640
3756
|
:arn,
|
3641
3757
|
:next_token)
|
3758
|
+
SENSITIVE = []
|
3642
3759
|
include Aws::Structure
|
3643
3760
|
end
|
3644
3761
|
|
@@ -3660,6 +3777,7 @@ module Aws::DeviceFarm
|
|
3660
3777
|
class ListSamplesResult < Struct.new(
|
3661
3778
|
:samples,
|
3662
3779
|
:next_token)
|
3780
|
+
SENSITIVE = []
|
3663
3781
|
include Aws::Structure
|
3664
3782
|
end
|
3665
3783
|
|
@@ -3688,6 +3806,7 @@ module Aws::DeviceFarm
|
|
3688
3806
|
class ListSuitesRequest < Struct.new(
|
3689
3807
|
:arn,
|
3690
3808
|
:next_token)
|
3809
|
+
SENSITIVE = []
|
3691
3810
|
include Aws::Structure
|
3692
3811
|
end
|
3693
3812
|
|
@@ -3709,6 +3828,7 @@ module Aws::DeviceFarm
|
|
3709
3828
|
class ListSuitesResult < Struct.new(
|
3710
3829
|
:suites,
|
3711
3830
|
:next_token)
|
3831
|
+
SENSITIVE = []
|
3712
3832
|
include Aws::Structure
|
3713
3833
|
end
|
3714
3834
|
|
@@ -3731,6 +3851,7 @@ module Aws::DeviceFarm
|
|
3731
3851
|
#
|
3732
3852
|
class ListTagsForResourceRequest < Struct.new(
|
3733
3853
|
:resource_arn)
|
3854
|
+
SENSITIVE = []
|
3734
3855
|
include Aws::Structure
|
3735
3856
|
end
|
3736
3857
|
|
@@ -3744,6 +3865,7 @@ module Aws::DeviceFarm
|
|
3744
3865
|
#
|
3745
3866
|
class ListTagsForResourceResponse < Struct.new(
|
3746
3867
|
:tags)
|
3868
|
+
SENSITIVE = []
|
3747
3869
|
include Aws::Structure
|
3748
3870
|
end
|
3749
3871
|
|
@@ -3768,6 +3890,7 @@ module Aws::DeviceFarm
|
|
3768
3890
|
class ListTestGridProjectsRequest < Struct.new(
|
3769
3891
|
:max_result,
|
3770
3892
|
:next_token)
|
3893
|
+
SENSITIVE = []
|
3771
3894
|
include Aws::Structure
|
3772
3895
|
end
|
3773
3896
|
|
@@ -3786,6 +3909,7 @@ module Aws::DeviceFarm
|
|
3786
3909
|
class ListTestGridProjectsResult < Struct.new(
|
3787
3910
|
:test_grid_projects,
|
3788
3911
|
:next_token)
|
3912
|
+
SENSITIVE = []
|
3789
3913
|
include Aws::Structure
|
3790
3914
|
end
|
3791
3915
|
|
@@ -3816,6 +3940,7 @@ module Aws::DeviceFarm
|
|
3816
3940
|
:session_arn,
|
3817
3941
|
:max_result,
|
3818
3942
|
:next_token)
|
3943
|
+
SENSITIVE = []
|
3819
3944
|
include Aws::Structure
|
3820
3945
|
end
|
3821
3946
|
|
@@ -3832,6 +3957,7 @@ module Aws::DeviceFarm
|
|
3832
3957
|
class ListTestGridSessionActionsResult < Struct.new(
|
3833
3958
|
:actions,
|
3834
3959
|
:next_token)
|
3960
|
+
SENSITIVE = []
|
3835
3961
|
include Aws::Structure
|
3836
3962
|
end
|
3837
3963
|
|
@@ -3868,6 +3994,7 @@ module Aws::DeviceFarm
|
|
3868
3994
|
:type,
|
3869
3995
|
:max_result,
|
3870
3996
|
:next_token)
|
3997
|
+
SENSITIVE = []
|
3871
3998
|
include Aws::Structure
|
3872
3999
|
end
|
3873
4000
|
|
@@ -3884,6 +4011,7 @@ module Aws::DeviceFarm
|
|
3884
4011
|
class ListTestGridSessionArtifactsResult < Struct.new(
|
3885
4012
|
:artifacts,
|
3886
4013
|
:next_token)
|
4014
|
+
SENSITIVE = []
|
3887
4015
|
include Aws::Structure
|
3888
4016
|
end
|
3889
4017
|
|
@@ -3944,6 +4072,7 @@ module Aws::DeviceFarm
|
|
3944
4072
|
:end_time_before,
|
3945
4073
|
:max_result,
|
3946
4074
|
:next_token)
|
4075
|
+
SENSITIVE = []
|
3947
4076
|
include Aws::Structure
|
3948
4077
|
end
|
3949
4078
|
|
@@ -3961,6 +4090,7 @@ module Aws::DeviceFarm
|
|
3961
4090
|
class ListTestGridSessionsResult < Struct.new(
|
3962
4091
|
:test_grid_sessions,
|
3963
4092
|
:next_token)
|
4093
|
+
SENSITIVE = []
|
3964
4094
|
include Aws::Structure
|
3965
4095
|
end
|
3966
4096
|
|
@@ -3989,6 +4119,7 @@ module Aws::DeviceFarm
|
|
3989
4119
|
class ListTestsRequest < Struct.new(
|
3990
4120
|
:arn,
|
3991
4121
|
:next_token)
|
4122
|
+
SENSITIVE = []
|
3992
4123
|
include Aws::Structure
|
3993
4124
|
end
|
3994
4125
|
|
@@ -4010,6 +4141,7 @@ module Aws::DeviceFarm
|
|
4010
4141
|
class ListTestsResult < Struct.new(
|
4011
4142
|
:tests,
|
4012
4143
|
:next_token)
|
4144
|
+
SENSITIVE = []
|
4013
4145
|
include Aws::Structure
|
4014
4146
|
end
|
4015
4147
|
|
@@ -4038,6 +4170,7 @@ module Aws::DeviceFarm
|
|
4038
4170
|
class ListUniqueProblemsRequest < Struct.new(
|
4039
4171
|
:arn,
|
4040
4172
|
:next_token)
|
4173
|
+
SENSITIVE = []
|
4041
4174
|
include Aws::Structure
|
4042
4175
|
end
|
4043
4176
|
|
@@ -4075,6 +4208,7 @@ module Aws::DeviceFarm
|
|
4075
4208
|
class ListUniqueProblemsResult < Struct.new(
|
4076
4209
|
:unique_problems,
|
4077
4210
|
:next_token)
|
4211
|
+
SENSITIVE = []
|
4078
4212
|
include Aws::Structure
|
4079
4213
|
end
|
4080
4214
|
|
@@ -4176,6 +4310,7 @@ module Aws::DeviceFarm
|
|
4176
4310
|
:arn,
|
4177
4311
|
:type,
|
4178
4312
|
:next_token)
|
4313
|
+
SENSITIVE = []
|
4179
4314
|
include Aws::Structure
|
4180
4315
|
end
|
4181
4316
|
|
@@ -4197,6 +4332,7 @@ module Aws::DeviceFarm
|
|
4197
4332
|
class ListUploadsResult < Struct.new(
|
4198
4333
|
:uploads,
|
4199
4334
|
:next_token)
|
4335
|
+
SENSITIVE = []
|
4200
4336
|
include Aws::Structure
|
4201
4337
|
end
|
4202
4338
|
|
@@ -4224,6 +4360,7 @@ module Aws::DeviceFarm
|
|
4224
4360
|
class ListVPCEConfigurationsRequest < Struct.new(
|
4225
4361
|
:max_results,
|
4226
4362
|
:next_token)
|
4363
|
+
SENSITIVE = []
|
4227
4364
|
include Aws::Structure
|
4228
4365
|
end
|
4229
4366
|
|
@@ -4243,6 +4380,7 @@ module Aws::DeviceFarm
|
|
4243
4380
|
class ListVPCEConfigurationsResult < Struct.new(
|
4244
4381
|
:vpce_configurations,
|
4245
4382
|
:next_token)
|
4383
|
+
SENSITIVE = []
|
4246
4384
|
include Aws::Structure
|
4247
4385
|
end
|
4248
4386
|
|
@@ -4272,6 +4410,7 @@ module Aws::DeviceFarm
|
|
4272
4410
|
class Location < Struct.new(
|
4273
4411
|
:latitude,
|
4274
4412
|
:longitude)
|
4413
|
+
SENSITIVE = []
|
4275
4414
|
include Aws::Structure
|
4276
4415
|
end
|
4277
4416
|
|
@@ -4292,6 +4431,7 @@ module Aws::DeviceFarm
|
|
4292
4431
|
class MonetaryAmount < Struct.new(
|
4293
4432
|
:amount,
|
4294
4433
|
:currency_code)
|
4434
|
+
SENSITIVE = []
|
4295
4435
|
include Aws::Structure
|
4296
4436
|
end
|
4297
4437
|
|
@@ -4369,6 +4509,7 @@ module Aws::DeviceFarm
|
|
4369
4509
|
:downlink_jitter_ms,
|
4370
4510
|
:uplink_loss_percent,
|
4371
4511
|
:downlink_loss_percent)
|
4512
|
+
SENSITIVE = []
|
4372
4513
|
include Aws::Structure
|
4373
4514
|
end
|
4374
4515
|
|
@@ -4383,6 +4524,7 @@ module Aws::DeviceFarm
|
|
4383
4524
|
#
|
4384
4525
|
class NotEligibleException < Struct.new(
|
4385
4526
|
:message)
|
4527
|
+
SENSITIVE = []
|
4386
4528
|
include Aws::Structure
|
4387
4529
|
end
|
4388
4530
|
|
@@ -4396,6 +4538,7 @@ module Aws::DeviceFarm
|
|
4396
4538
|
#
|
4397
4539
|
class NotFoundException < Struct.new(
|
4398
4540
|
:message)
|
4541
|
+
SENSITIVE = []
|
4399
4542
|
include Aws::Structure
|
4400
4543
|
end
|
4401
4544
|
|
@@ -4429,6 +4572,7 @@ module Aws::DeviceFarm
|
|
4429
4572
|
:type,
|
4430
4573
|
:platform,
|
4431
4574
|
:recurring_charges)
|
4575
|
+
SENSITIVE = []
|
4432
4576
|
include Aws::Structure
|
4433
4577
|
end
|
4434
4578
|
|
@@ -4447,6 +4591,7 @@ module Aws::DeviceFarm
|
|
4447
4591
|
class OfferingPromotion < Struct.new(
|
4448
4592
|
:id,
|
4449
4593
|
:description)
|
4594
|
+
SENSITIVE = []
|
4450
4595
|
include Aws::Structure
|
4451
4596
|
end
|
4452
4597
|
|
@@ -4475,6 +4620,7 @@ module Aws::DeviceFarm
|
|
4475
4620
|
:offering,
|
4476
4621
|
:quantity,
|
4477
4622
|
:effective_on)
|
4623
|
+
SENSITIVE = []
|
4478
4624
|
include Aws::Structure
|
4479
4625
|
end
|
4480
4626
|
|
@@ -4508,6 +4654,7 @@ module Aws::DeviceFarm
|
|
4508
4654
|
:offering_promotion_id,
|
4509
4655
|
:created_on,
|
4510
4656
|
:cost)
|
4657
|
+
SENSITIVE = []
|
4511
4658
|
include Aws::Structure
|
4512
4659
|
end
|
4513
4660
|
|
@@ -4567,6 +4714,7 @@ module Aws::DeviceFarm
|
|
4567
4714
|
:device,
|
4568
4715
|
:result,
|
4569
4716
|
:message)
|
4717
|
+
SENSITIVE = []
|
4570
4718
|
include Aws::Structure
|
4571
4719
|
end
|
4572
4720
|
|
@@ -4585,6 +4733,7 @@ module Aws::DeviceFarm
|
|
4585
4733
|
class ProblemDetail < Struct.new(
|
4586
4734
|
:arn,
|
4587
4735
|
:name)
|
4736
|
+
SENSITIVE = []
|
4588
4737
|
include Aws::Structure
|
4589
4738
|
end
|
4590
4739
|
|
@@ -4615,6 +4764,7 @@ module Aws::DeviceFarm
|
|
4615
4764
|
:name,
|
4616
4765
|
:default_job_timeout_minutes,
|
4617
4766
|
:created)
|
4767
|
+
SENSITIVE = []
|
4618
4768
|
include Aws::Structure
|
4619
4769
|
end
|
4620
4770
|
|
@@ -4647,6 +4797,7 @@ module Aws::DeviceFarm
|
|
4647
4797
|
:offering_id,
|
4648
4798
|
:quantity,
|
4649
4799
|
:offering_promotion_id)
|
4800
|
+
SENSITIVE = []
|
4650
4801
|
include Aws::Structure
|
4651
4802
|
end
|
4652
4803
|
|
@@ -4660,6 +4811,7 @@ module Aws::DeviceFarm
|
|
4660
4811
|
#
|
4661
4812
|
class PurchaseOfferingResult < Struct.new(
|
4662
4813
|
:offering_transaction)
|
4814
|
+
SENSITIVE = []
|
4663
4815
|
include Aws::Structure
|
4664
4816
|
end
|
4665
4817
|
|
@@ -4703,6 +4855,7 @@ module Aws::DeviceFarm
|
|
4703
4855
|
:bluetooth,
|
4704
4856
|
:nfc,
|
4705
4857
|
:gps)
|
4858
|
+
SENSITIVE = []
|
4706
4859
|
include Aws::Structure
|
4707
4860
|
end
|
4708
4861
|
|
@@ -4721,6 +4874,7 @@ module Aws::DeviceFarm
|
|
4721
4874
|
class RecurringCharge < Struct.new(
|
4722
4875
|
:cost,
|
4723
4876
|
:frequency)
|
4877
|
+
SENSITIVE = []
|
4724
4878
|
include Aws::Structure
|
4725
4879
|
end
|
4726
4880
|
|
@@ -4928,6 +5082,7 @@ module Aws::DeviceFarm
|
|
4928
5082
|
:device_udid,
|
4929
5083
|
:interaction_mode,
|
4930
5084
|
:skip_app_resign)
|
5085
|
+
SENSITIVE = []
|
4931
5086
|
include Aws::Structure
|
4932
5087
|
end
|
4933
5088
|
|
@@ -4954,6 +5109,7 @@ module Aws::DeviceFarm
|
|
4954
5109
|
class RenewOfferingRequest < Struct.new(
|
4955
5110
|
:offering_id,
|
4956
5111
|
:quantity)
|
5112
|
+
SENSITIVE = []
|
4957
5113
|
include Aws::Structure
|
4958
5114
|
end
|
4959
5115
|
|
@@ -4967,6 +5123,7 @@ module Aws::DeviceFarm
|
|
4967
5123
|
#
|
4968
5124
|
class RenewOfferingResult < Struct.new(
|
4969
5125
|
:offering_transaction)
|
5126
|
+
SENSITIVE = []
|
4970
5127
|
include Aws::Structure
|
4971
5128
|
end
|
4972
5129
|
|
@@ -4986,6 +5143,7 @@ module Aws::DeviceFarm
|
|
4986
5143
|
class Resolution < Struct.new(
|
4987
5144
|
:width,
|
4988
5145
|
:height)
|
5146
|
+
SENSITIVE = []
|
4989
5147
|
include Aws::Structure
|
4990
5148
|
end
|
4991
5149
|
|
@@ -5115,6 +5273,7 @@ module Aws::DeviceFarm
|
|
5115
5273
|
:attribute,
|
5116
5274
|
:operator,
|
5117
5275
|
:value)
|
5276
|
+
SENSITIVE = []
|
5118
5277
|
include Aws::Structure
|
5119
5278
|
end
|
5120
5279
|
|
@@ -5391,6 +5550,7 @@ module Aws::DeviceFarm
|
|
5391
5550
|
:skip_app_resign,
|
5392
5551
|
:test_spec_arn,
|
5393
5552
|
:device_selection_result)
|
5553
|
+
SENSITIVE = []
|
5394
5554
|
include Aws::Structure
|
5395
5555
|
end
|
5396
5556
|
|
@@ -5457,6 +5617,7 @@ module Aws::DeviceFarm
|
|
5457
5617
|
:arn,
|
5458
5618
|
:type,
|
5459
5619
|
:url)
|
5620
|
+
SENSITIVE = []
|
5460
5621
|
include Aws::Structure
|
5461
5622
|
end
|
5462
5623
|
|
@@ -5550,6 +5711,7 @@ module Aws::DeviceFarm
|
|
5550
5711
|
:radios,
|
5551
5712
|
:auxiliary_apps,
|
5552
5713
|
:billing_method)
|
5714
|
+
SENSITIVE = []
|
5553
5715
|
include Aws::Structure
|
5554
5716
|
end
|
5555
5717
|
|
@@ -5665,6 +5827,7 @@ module Aws::DeviceFarm
|
|
5665
5827
|
:test,
|
5666
5828
|
:configuration,
|
5667
5829
|
:execution_configuration)
|
5830
|
+
SENSITIVE = []
|
5668
5831
|
include Aws::Structure
|
5669
5832
|
end
|
5670
5833
|
|
@@ -5678,6 +5841,7 @@ module Aws::DeviceFarm
|
|
5678
5841
|
#
|
5679
5842
|
class ScheduleRunResult < Struct.new(
|
5680
5843
|
:run)
|
5844
|
+
SENSITIVE = []
|
5681
5845
|
include Aws::Structure
|
5682
5846
|
end
|
5683
5847
|
|
@@ -5851,6 +6015,7 @@ module Aws::DeviceFarm
|
|
5851
6015
|
:test_spec_arn,
|
5852
6016
|
:filter,
|
5853
6017
|
:parameters)
|
6018
|
+
SENSITIVE = []
|
5854
6019
|
include Aws::Structure
|
5855
6020
|
end
|
5856
6021
|
|
@@ -5864,6 +6029,7 @@ module Aws::DeviceFarm
|
|
5864
6029
|
#
|
5865
6030
|
class ServiceAccountException < Struct.new(
|
5866
6031
|
:message)
|
6032
|
+
SENSITIVE = []
|
5867
6033
|
include Aws::Structure
|
5868
6034
|
end
|
5869
6035
|
|
@@ -5883,6 +6049,7 @@ module Aws::DeviceFarm
|
|
5883
6049
|
#
|
5884
6050
|
class StopJobRequest < Struct.new(
|
5885
6051
|
:arn)
|
6052
|
+
SENSITIVE = []
|
5886
6053
|
include Aws::Structure
|
5887
6054
|
end
|
5888
6055
|
|
@@ -5894,6 +6061,7 @@ module Aws::DeviceFarm
|
|
5894
6061
|
#
|
5895
6062
|
class StopJobResult < Struct.new(
|
5896
6063
|
:job)
|
6064
|
+
SENSITIVE = []
|
5897
6065
|
include Aws::Structure
|
5898
6066
|
end
|
5899
6067
|
|
@@ -5914,6 +6082,7 @@ module Aws::DeviceFarm
|
|
5914
6082
|
#
|
5915
6083
|
class StopRemoteAccessSessionRequest < Struct.new(
|
5916
6084
|
:arn)
|
6085
|
+
SENSITIVE = []
|
5917
6086
|
include Aws::Structure
|
5918
6087
|
end
|
5919
6088
|
|
@@ -5929,6 +6098,7 @@ module Aws::DeviceFarm
|
|
5929
6098
|
#
|
5930
6099
|
class StopRemoteAccessSessionResult < Struct.new(
|
5931
6100
|
:remote_access_session)
|
6101
|
+
SENSITIVE = []
|
5932
6102
|
include Aws::Structure
|
5933
6103
|
end
|
5934
6104
|
|
@@ -5950,6 +6120,7 @@ module Aws::DeviceFarm
|
|
5950
6120
|
#
|
5951
6121
|
class StopRunRequest < Struct.new(
|
5952
6122
|
:arn)
|
6123
|
+
SENSITIVE = []
|
5953
6124
|
include Aws::Structure
|
5954
6125
|
end
|
5955
6126
|
|
@@ -5963,6 +6134,7 @@ module Aws::DeviceFarm
|
|
5963
6134
|
#
|
5964
6135
|
class StopRunResult < Struct.new(
|
5965
6136
|
:run)
|
6137
|
+
SENSITIVE = []
|
5966
6138
|
include Aws::Structure
|
5967
6139
|
end
|
5968
6140
|
|
@@ -6107,6 +6279,7 @@ module Aws::DeviceFarm
|
|
6107
6279
|
:counters,
|
6108
6280
|
:message,
|
6109
6281
|
:device_minutes)
|
6282
|
+
SENSITIVE = []
|
6110
6283
|
include Aws::Structure
|
6111
6284
|
end
|
6112
6285
|
|
@@ -6139,6 +6312,7 @@ module Aws::DeviceFarm
|
|
6139
6312
|
class Tag < Struct.new(
|
6140
6313
|
:key,
|
6141
6314
|
:value)
|
6315
|
+
SENSITIVE = []
|
6142
6316
|
include Aws::Structure
|
6143
6317
|
end
|
6144
6318
|
|
@@ -6155,6 +6329,7 @@ module Aws::DeviceFarm
|
|
6155
6329
|
class TagOperationException < Struct.new(
|
6156
6330
|
:message,
|
6157
6331
|
:resource_name)
|
6332
|
+
SENSITIVE = []
|
6158
6333
|
include Aws::Structure
|
6159
6334
|
end
|
6160
6335
|
|
@@ -6172,6 +6347,7 @@ module Aws::DeviceFarm
|
|
6172
6347
|
class TagPolicyException < Struct.new(
|
6173
6348
|
:message,
|
6174
6349
|
:resource_name)
|
6350
|
+
SENSITIVE = []
|
6175
6351
|
include Aws::Structure
|
6176
6352
|
end
|
6177
6353
|
|
@@ -6207,6 +6383,7 @@ module Aws::DeviceFarm
|
|
6207
6383
|
class TagResourceRequest < Struct.new(
|
6208
6384
|
:resource_arn,
|
6209
6385
|
:tags)
|
6386
|
+
SENSITIVE = []
|
6210
6387
|
include Aws::Structure
|
6211
6388
|
end
|
6212
6389
|
|
@@ -6354,6 +6531,7 @@ module Aws::DeviceFarm
|
|
6354
6531
|
:counters,
|
6355
6532
|
:message,
|
6356
6533
|
:device_minutes)
|
6534
|
+
SENSITIVE = []
|
6357
6535
|
include Aws::Structure
|
6358
6536
|
end
|
6359
6537
|
|
@@ -6383,6 +6561,7 @@ module Aws::DeviceFarm
|
|
6383
6561
|
:name,
|
6384
6562
|
:description,
|
6385
6563
|
:created)
|
6564
|
+
SENSITIVE = []
|
6386
6565
|
include Aws::Structure
|
6387
6566
|
end
|
6388
6567
|
|
@@ -6423,6 +6602,7 @@ module Aws::DeviceFarm
|
|
6423
6602
|
:ended,
|
6424
6603
|
:billing_minutes,
|
6425
6604
|
:selenium_properties)
|
6605
|
+
SENSITIVE = []
|
6426
6606
|
include Aws::Structure
|
6427
6607
|
end
|
6428
6608
|
|
@@ -6457,6 +6637,7 @@ module Aws::DeviceFarm
|
|
6457
6637
|
:duration,
|
6458
6638
|
:status_code,
|
6459
6639
|
:request_method)
|
6640
|
+
SENSITIVE = []
|
6460
6641
|
include Aws::Structure
|
6461
6642
|
end
|
6462
6643
|
|
@@ -6486,6 +6667,7 @@ module Aws::DeviceFarm
|
|
6486
6667
|
:filename,
|
6487
6668
|
:type,
|
6488
6669
|
:url)
|
6670
|
+
SENSITIVE = []
|
6489
6671
|
include Aws::Structure
|
6490
6672
|
end
|
6491
6673
|
|
@@ -6503,6 +6685,7 @@ module Aws::DeviceFarm
|
|
6503
6685
|
class TooManyTagsException < Struct.new(
|
6504
6686
|
:message,
|
6505
6687
|
:resource_name)
|
6688
|
+
SENSITIVE = []
|
6506
6689
|
include Aws::Structure
|
6507
6690
|
end
|
6508
6691
|
|
@@ -6523,6 +6706,7 @@ module Aws::DeviceFarm
|
|
6523
6706
|
class TrialMinutes < Struct.new(
|
6524
6707
|
:total,
|
6525
6708
|
:remaining)
|
6709
|
+
SENSITIVE = []
|
6526
6710
|
include Aws::Structure
|
6527
6711
|
end
|
6528
6712
|
|
@@ -6541,6 +6725,7 @@ module Aws::DeviceFarm
|
|
6541
6725
|
class UniqueProblem < Struct.new(
|
6542
6726
|
:message,
|
6543
6727
|
:problems)
|
6728
|
+
SENSITIVE = []
|
6544
6729
|
include Aws::Structure
|
6545
6730
|
end
|
6546
6731
|
|
@@ -6569,6 +6754,7 @@ module Aws::DeviceFarm
|
|
6569
6754
|
class UntagResourceRequest < Struct.new(
|
6570
6755
|
:resource_arn,
|
6571
6756
|
:tag_keys)
|
6757
|
+
SENSITIVE = []
|
6572
6758
|
include Aws::Structure
|
6573
6759
|
end
|
6574
6760
|
|
@@ -6605,6 +6791,7 @@ module Aws::DeviceFarm
|
|
6605
6791
|
:arn,
|
6606
6792
|
:profile_arn,
|
6607
6793
|
:labels)
|
6794
|
+
SENSITIVE = []
|
6608
6795
|
include Aws::Structure
|
6609
6796
|
end
|
6610
6797
|
|
@@ -6616,6 +6803,7 @@ module Aws::DeviceFarm
|
|
6616
6803
|
#
|
6617
6804
|
class UpdateDeviceInstanceResult < Struct.new(
|
6618
6805
|
:device_instance)
|
6806
|
+
SENSITIVE = []
|
6619
6807
|
include Aws::Structure
|
6620
6808
|
end
|
6621
6809
|
|
@@ -6693,6 +6881,7 @@ module Aws::DeviceFarm
|
|
6693
6881
|
:rules,
|
6694
6882
|
:max_devices,
|
6695
6883
|
:clear_max_devices)
|
6884
|
+
SENSITIVE = []
|
6696
6885
|
include Aws::Structure
|
6697
6886
|
end
|
6698
6887
|
|
@@ -6706,6 +6895,7 @@ module Aws::DeviceFarm
|
|
6706
6895
|
#
|
6707
6896
|
class UpdateDevicePoolResult < Struct.new(
|
6708
6897
|
:device_pool)
|
6898
|
+
SENSITIVE = []
|
6709
6899
|
include Aws::Structure
|
6710
6900
|
end
|
6711
6901
|
|
@@ -6760,6 +6950,7 @@ module Aws::DeviceFarm
|
|
6760
6950
|
:package_cleanup,
|
6761
6951
|
:exclude_app_packages_from_cleanup,
|
6762
6952
|
:reboot_after_use)
|
6953
|
+
SENSITIVE = []
|
6763
6954
|
include Aws::Structure
|
6764
6955
|
end
|
6765
6956
|
|
@@ -6771,6 +6962,7 @@ module Aws::DeviceFarm
|
|
6771
6962
|
#
|
6772
6963
|
class UpdateInstanceProfileResult < Struct.new(
|
6773
6964
|
:instance_profile)
|
6965
|
+
SENSITIVE = []
|
6774
6966
|
include Aws::Structure
|
6775
6967
|
end
|
6776
6968
|
|
@@ -6867,6 +7059,7 @@ module Aws::DeviceFarm
|
|
6867
7059
|
:downlink_jitter_ms,
|
6868
7060
|
:uplink_loss_percent,
|
6869
7061
|
:downlink_loss_percent)
|
7062
|
+
SENSITIVE = []
|
6870
7063
|
include Aws::Structure
|
6871
7064
|
end
|
6872
7065
|
|
@@ -6878,6 +7071,7 @@ module Aws::DeviceFarm
|
|
6878
7071
|
#
|
6879
7072
|
class UpdateNetworkProfileResult < Struct.new(
|
6880
7073
|
:network_profile)
|
7074
|
+
SENSITIVE = []
|
6881
7075
|
include Aws::Structure
|
6882
7076
|
end
|
6883
7077
|
|
@@ -6912,6 +7106,7 @@ module Aws::DeviceFarm
|
|
6912
7106
|
:arn,
|
6913
7107
|
:name,
|
6914
7108
|
:default_job_timeout_minutes)
|
7109
|
+
SENSITIVE = []
|
6915
7110
|
include Aws::Structure
|
6916
7111
|
end
|
6917
7112
|
|
@@ -6925,6 +7120,7 @@ module Aws::DeviceFarm
|
|
6925
7120
|
#
|
6926
7121
|
class UpdateProjectResult < Struct.new(
|
6927
7122
|
:project)
|
7123
|
+
SENSITIVE = []
|
6928
7124
|
include Aws::Structure
|
6929
7125
|
end
|
6930
7126
|
|
@@ -6955,6 +7151,7 @@ module Aws::DeviceFarm
|
|
6955
7151
|
:project_arn,
|
6956
7152
|
:name,
|
6957
7153
|
:description)
|
7154
|
+
SENSITIVE = []
|
6958
7155
|
include Aws::Structure
|
6959
7156
|
end
|
6960
7157
|
|
@@ -6966,6 +7163,7 @@ module Aws::DeviceFarm
|
|
6966
7163
|
#
|
6967
7164
|
class UpdateTestGridProjectResult < Struct.new(
|
6968
7165
|
:test_grid_project)
|
7166
|
+
SENSITIVE = []
|
6969
7167
|
include Aws::Structure
|
6970
7168
|
end
|
6971
7169
|
|
@@ -7005,6 +7203,7 @@ module Aws::DeviceFarm
|
|
7005
7203
|
:name,
|
7006
7204
|
:content_type,
|
7007
7205
|
:edit_content)
|
7206
|
+
SENSITIVE = []
|
7008
7207
|
include Aws::Structure
|
7009
7208
|
end
|
7010
7209
|
|
@@ -7016,6 +7215,7 @@ module Aws::DeviceFarm
|
|
7016
7215
|
#
|
7017
7216
|
class UpdateUploadResult < Struct.new(
|
7018
7217
|
:upload)
|
7218
|
+
SENSITIVE = []
|
7019
7219
|
include Aws::Structure
|
7020
7220
|
end
|
7021
7221
|
|
@@ -7063,6 +7263,7 @@ module Aws::DeviceFarm
|
|
7063
7263
|
:vpce_service_name,
|
7064
7264
|
:service_dns_name,
|
7065
7265
|
:vpce_configuration_description)
|
7266
|
+
SENSITIVE = []
|
7066
7267
|
include Aws::Structure
|
7067
7268
|
end
|
7068
7269
|
|
@@ -7075,6 +7276,7 @@ module Aws::DeviceFarm
|
|
7075
7276
|
#
|
7076
7277
|
class UpdateVPCEConfigurationResult < Struct.new(
|
7077
7278
|
:vpce_configuration)
|
7279
|
+
SENSITIVE = []
|
7078
7280
|
include Aws::Structure
|
7079
7281
|
end
|
7080
7282
|
|
@@ -7218,6 +7420,7 @@ module Aws::DeviceFarm
|
|
7218
7420
|
:content_type,
|
7219
7421
|
:message,
|
7220
7422
|
:category)
|
7423
|
+
SENSITIVE = []
|
7221
7424
|
include Aws::Structure
|
7222
7425
|
end
|
7223
7426
|
|
@@ -7256,6 +7459,7 @@ module Aws::DeviceFarm
|
|
7256
7459
|
:vpce_service_name,
|
7257
7460
|
:service_dns_name,
|
7258
7461
|
:vpce_configuration_description)
|
7462
|
+
SENSITIVE = []
|
7259
7463
|
include Aws::Structure
|
7260
7464
|
end
|
7261
7465
|
|