@aws-sdk/client-device-farm 3.315.0 → 3.319.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.
- package/dist-cjs/DeviceFarm.js +81 -1078
- package/dist-es/DeviceFarm.js +81 -1078
- package/dist-types/DeviceFarm.d.ts +98 -232
- package/dist-types/ts3.4/DeviceFarm.d.ts +4 -1
- package/package.json +8 -8
|
@@ -77,621 +77,487 @@ import { UpdateTestGridProjectCommandInput, UpdateTestGridProjectCommandOutput }
|
|
|
77
77
|
import { UpdateUploadCommandInput, UpdateUploadCommandOutput } from "./commands/UpdateUploadCommand";
|
|
78
78
|
import { UpdateVPCEConfigurationCommandInput, UpdateVPCEConfigurationCommandOutput } from "./commands/UpdateVPCEConfigurationCommand";
|
|
79
79
|
import { DeviceFarmClient } from "./DeviceFarmClient";
|
|
80
|
-
|
|
81
|
-
* @public
|
|
82
|
-
* <p>Welcome to the AWS Device Farm API documentation, which contains APIs for:</p>
|
|
83
|
-
* <ul>
|
|
84
|
-
* <li>
|
|
85
|
-
* <p>Testing on desktop browsers</p>
|
|
86
|
-
* <p> Device Farm makes it possible for you to test your web applications on desktop browsers using
|
|
87
|
-
* Selenium. The APIs for desktop browser testing contain <code>TestGrid</code> in their names. For
|
|
88
|
-
* more information, see <a href="https://docs.aws.amazon.com/devicefarm/latest/testgrid/">Testing Web
|
|
89
|
-
* Applications on Selenium with Device Farm</a>.</p>
|
|
90
|
-
* </li>
|
|
91
|
-
* <li>
|
|
92
|
-
* <p>Testing on real mobile devices</p>
|
|
93
|
-
* <p>Device Farm makes it possible for you to test apps on physical phones, tablets, and other
|
|
94
|
-
* devices in the cloud. For more information, see the <a href="https://docs.aws.amazon.com/devicefarm/latest/developerguide/">Device Farm Developer Guide</a>.</p>
|
|
95
|
-
* </li>
|
|
96
|
-
* </ul>
|
|
97
|
-
*/
|
|
98
|
-
export declare class DeviceFarm extends DeviceFarmClient {
|
|
80
|
+
export interface DeviceFarm {
|
|
99
81
|
/**
|
|
100
|
-
* @
|
|
101
|
-
* <p>Creates a device pool.</p>
|
|
82
|
+
* @see {@link CreateDevicePoolCommand}
|
|
102
83
|
*/
|
|
103
84
|
createDevicePool(args: CreateDevicePoolCommandInput, options?: __HttpHandlerOptions): Promise<CreateDevicePoolCommandOutput>;
|
|
104
85
|
createDevicePool(args: CreateDevicePoolCommandInput, cb: (err: any, data?: CreateDevicePoolCommandOutput) => void): void;
|
|
105
86
|
createDevicePool(args: CreateDevicePoolCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDevicePoolCommandOutput) => void): void;
|
|
106
87
|
/**
|
|
107
|
-
* @
|
|
108
|
-
* <p>Creates a profile that can be applied to one or more private fleet device
|
|
109
|
-
* instances.</p>
|
|
88
|
+
* @see {@link CreateInstanceProfileCommand}
|
|
110
89
|
*/
|
|
111
90
|
createInstanceProfile(args: CreateInstanceProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateInstanceProfileCommandOutput>;
|
|
112
91
|
createInstanceProfile(args: CreateInstanceProfileCommandInput, cb: (err: any, data?: CreateInstanceProfileCommandOutput) => void): void;
|
|
113
92
|
createInstanceProfile(args: CreateInstanceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateInstanceProfileCommandOutput) => void): void;
|
|
114
93
|
/**
|
|
115
|
-
* @
|
|
116
|
-
* <p>Creates a network profile.</p>
|
|
94
|
+
* @see {@link CreateNetworkProfileCommand}
|
|
117
95
|
*/
|
|
118
96
|
createNetworkProfile(args: CreateNetworkProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateNetworkProfileCommandOutput>;
|
|
119
97
|
createNetworkProfile(args: CreateNetworkProfileCommandInput, cb: (err: any, data?: CreateNetworkProfileCommandOutput) => void): void;
|
|
120
98
|
createNetworkProfile(args: CreateNetworkProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNetworkProfileCommandOutput) => void): void;
|
|
121
99
|
/**
|
|
122
|
-
* @
|
|
123
|
-
* <p>Creates a project.</p>
|
|
100
|
+
* @see {@link CreateProjectCommand}
|
|
124
101
|
*/
|
|
125
102
|
createProject(args: CreateProjectCommandInput, options?: __HttpHandlerOptions): Promise<CreateProjectCommandOutput>;
|
|
126
103
|
createProject(args: CreateProjectCommandInput, cb: (err: any, data?: CreateProjectCommandOutput) => void): void;
|
|
127
104
|
createProject(args: CreateProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProjectCommandOutput) => void): void;
|
|
128
105
|
/**
|
|
129
|
-
* @
|
|
130
|
-
* <p>Specifies and starts a remote access session.</p>
|
|
106
|
+
* @see {@link CreateRemoteAccessSessionCommand}
|
|
131
107
|
*/
|
|
132
108
|
createRemoteAccessSession(args: CreateRemoteAccessSessionCommandInput, options?: __HttpHandlerOptions): Promise<CreateRemoteAccessSessionCommandOutput>;
|
|
133
109
|
createRemoteAccessSession(args: CreateRemoteAccessSessionCommandInput, cb: (err: any, data?: CreateRemoteAccessSessionCommandOutput) => void): void;
|
|
134
110
|
createRemoteAccessSession(args: CreateRemoteAccessSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRemoteAccessSessionCommandOutput) => void): void;
|
|
135
111
|
/**
|
|
136
|
-
* @
|
|
137
|
-
* <p>Creates a Selenium testing project. Projects are used to track <a>TestGridSession</a>
|
|
138
|
-
* instances.</p>
|
|
112
|
+
* @see {@link CreateTestGridProjectCommand}
|
|
139
113
|
*/
|
|
140
114
|
createTestGridProject(args: CreateTestGridProjectCommandInput, options?: __HttpHandlerOptions): Promise<CreateTestGridProjectCommandOutput>;
|
|
141
115
|
createTestGridProject(args: CreateTestGridProjectCommandInput, cb: (err: any, data?: CreateTestGridProjectCommandOutput) => void): void;
|
|
142
116
|
createTestGridProject(args: CreateTestGridProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTestGridProjectCommandOutput) => void): void;
|
|
143
117
|
/**
|
|
144
|
-
* @
|
|
145
|
-
* <p>Creates a signed, short-term URL that can be passed to a Selenium <code>RemoteWebDriver</code>
|
|
146
|
-
* constructor.</p>
|
|
118
|
+
* @see {@link CreateTestGridUrlCommand}
|
|
147
119
|
*/
|
|
148
120
|
createTestGridUrl(args: CreateTestGridUrlCommandInput, options?: __HttpHandlerOptions): Promise<CreateTestGridUrlCommandOutput>;
|
|
149
121
|
createTestGridUrl(args: CreateTestGridUrlCommandInput, cb: (err: any, data?: CreateTestGridUrlCommandOutput) => void): void;
|
|
150
122
|
createTestGridUrl(args: CreateTestGridUrlCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTestGridUrlCommandOutput) => void): void;
|
|
151
123
|
/**
|
|
152
|
-
* @
|
|
153
|
-
* <p>Uploads an app or test scripts.</p>
|
|
124
|
+
* @see {@link CreateUploadCommand}
|
|
154
125
|
*/
|
|
155
126
|
createUpload(args: CreateUploadCommandInput, options?: __HttpHandlerOptions): Promise<CreateUploadCommandOutput>;
|
|
156
127
|
createUpload(args: CreateUploadCommandInput, cb: (err: any, data?: CreateUploadCommandOutput) => void): void;
|
|
157
128
|
createUpload(args: CreateUploadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUploadCommandOutput) => void): void;
|
|
158
129
|
/**
|
|
159
|
-
* @
|
|
160
|
-
* <p>Creates a configuration record in Device Farm for your Amazon Virtual Private Cloud
|
|
161
|
-
* (VPC) endpoint.</p>
|
|
130
|
+
* @see {@link CreateVPCEConfigurationCommand}
|
|
162
131
|
*/
|
|
163
132
|
createVPCEConfiguration(args: CreateVPCEConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateVPCEConfigurationCommandOutput>;
|
|
164
133
|
createVPCEConfiguration(args: CreateVPCEConfigurationCommandInput, cb: (err: any, data?: CreateVPCEConfigurationCommandOutput) => void): void;
|
|
165
134
|
createVPCEConfiguration(args: CreateVPCEConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVPCEConfigurationCommandOutput) => void): void;
|
|
166
135
|
/**
|
|
167
|
-
* @
|
|
168
|
-
* <p>Deletes a device pool given the pool ARN. Does not allow deletion of curated pools
|
|
169
|
-
* owned by the system.</p>
|
|
136
|
+
* @see {@link DeleteDevicePoolCommand}
|
|
170
137
|
*/
|
|
171
138
|
deleteDevicePool(args: DeleteDevicePoolCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDevicePoolCommandOutput>;
|
|
172
139
|
deleteDevicePool(args: DeleteDevicePoolCommandInput, cb: (err: any, data?: DeleteDevicePoolCommandOutput) => void): void;
|
|
173
140
|
deleteDevicePool(args: DeleteDevicePoolCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDevicePoolCommandOutput) => void): void;
|
|
174
141
|
/**
|
|
175
|
-
* @
|
|
176
|
-
* <p>Deletes a profile that can be applied to one or more private device instances.</p>
|
|
142
|
+
* @see {@link DeleteInstanceProfileCommand}
|
|
177
143
|
*/
|
|
178
144
|
deleteInstanceProfile(args: DeleteInstanceProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteInstanceProfileCommandOutput>;
|
|
179
145
|
deleteInstanceProfile(args: DeleteInstanceProfileCommandInput, cb: (err: any, data?: DeleteInstanceProfileCommandOutput) => void): void;
|
|
180
146
|
deleteInstanceProfile(args: DeleteInstanceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteInstanceProfileCommandOutput) => void): void;
|
|
181
147
|
/**
|
|
182
|
-
* @
|
|
183
|
-
* <p>Deletes a network profile.</p>
|
|
148
|
+
* @see {@link DeleteNetworkProfileCommand}
|
|
184
149
|
*/
|
|
185
150
|
deleteNetworkProfile(args: DeleteNetworkProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNetworkProfileCommandOutput>;
|
|
186
151
|
deleteNetworkProfile(args: DeleteNetworkProfileCommandInput, cb: (err: any, data?: DeleteNetworkProfileCommandOutput) => void): void;
|
|
187
152
|
deleteNetworkProfile(args: DeleteNetworkProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNetworkProfileCommandOutput) => void): void;
|
|
188
153
|
/**
|
|
189
|
-
* @
|
|
190
|
-
* <p>Deletes an AWS Device Farm project, given the project ARN.</p>
|
|
191
|
-
* <p> Deleting this resource does not stop an in-progress run.</p>
|
|
154
|
+
* @see {@link DeleteProjectCommand}
|
|
192
155
|
*/
|
|
193
156
|
deleteProject(args: DeleteProjectCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProjectCommandOutput>;
|
|
194
157
|
deleteProject(args: DeleteProjectCommandInput, cb: (err: any, data?: DeleteProjectCommandOutput) => void): void;
|
|
195
158
|
deleteProject(args: DeleteProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProjectCommandOutput) => void): void;
|
|
196
159
|
/**
|
|
197
|
-
* @
|
|
198
|
-
* <p>Deletes a completed remote access session and its results.</p>
|
|
160
|
+
* @see {@link DeleteRemoteAccessSessionCommand}
|
|
199
161
|
*/
|
|
200
162
|
deleteRemoteAccessSession(args: DeleteRemoteAccessSessionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRemoteAccessSessionCommandOutput>;
|
|
201
163
|
deleteRemoteAccessSession(args: DeleteRemoteAccessSessionCommandInput, cb: (err: any, data?: DeleteRemoteAccessSessionCommandOutput) => void): void;
|
|
202
164
|
deleteRemoteAccessSession(args: DeleteRemoteAccessSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRemoteAccessSessionCommandOutput) => void): void;
|
|
203
165
|
/**
|
|
204
|
-
* @
|
|
205
|
-
* <p>Deletes the run, given the run ARN.</p>
|
|
206
|
-
* <p> Deleting this resource does not stop an in-progress run.</p>
|
|
166
|
+
* @see {@link DeleteRunCommand}
|
|
207
167
|
*/
|
|
208
168
|
deleteRun(args: DeleteRunCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRunCommandOutput>;
|
|
209
169
|
deleteRun(args: DeleteRunCommandInput, cb: (err: any, data?: DeleteRunCommandOutput) => void): void;
|
|
210
170
|
deleteRun(args: DeleteRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRunCommandOutput) => void): void;
|
|
211
171
|
/**
|
|
212
|
-
* @
|
|
213
|
-
* <p> Deletes a Selenium testing project and all content generated under it. </p>
|
|
214
|
-
* <important>
|
|
215
|
-
* <p>You cannot undo this operation.</p>
|
|
216
|
-
* </important>
|
|
217
|
-
* <note>
|
|
218
|
-
* <p>You cannot delete a project if it has active sessions.</p>
|
|
219
|
-
* </note>
|
|
172
|
+
* @see {@link DeleteTestGridProjectCommand}
|
|
220
173
|
*/
|
|
221
174
|
deleteTestGridProject(args: DeleteTestGridProjectCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTestGridProjectCommandOutput>;
|
|
222
175
|
deleteTestGridProject(args: DeleteTestGridProjectCommandInput, cb: (err: any, data?: DeleteTestGridProjectCommandOutput) => void): void;
|
|
223
176
|
deleteTestGridProject(args: DeleteTestGridProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTestGridProjectCommandOutput) => void): void;
|
|
224
177
|
/**
|
|
225
|
-
* @
|
|
226
|
-
* <p>Deletes an upload given the upload ARN.</p>
|
|
178
|
+
* @see {@link DeleteUploadCommand}
|
|
227
179
|
*/
|
|
228
180
|
deleteUpload(args: DeleteUploadCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUploadCommandOutput>;
|
|
229
181
|
deleteUpload(args: DeleteUploadCommandInput, cb: (err: any, data?: DeleteUploadCommandOutput) => void): void;
|
|
230
182
|
deleteUpload(args: DeleteUploadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUploadCommandOutput) => void): void;
|
|
231
183
|
/**
|
|
232
|
-
* @
|
|
233
|
-
* <p>Deletes a configuration for your Amazon Virtual Private Cloud (VPC) endpoint.</p>
|
|
184
|
+
* @see {@link DeleteVPCEConfigurationCommand}
|
|
234
185
|
*/
|
|
235
186
|
deleteVPCEConfiguration(args: DeleteVPCEConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVPCEConfigurationCommandOutput>;
|
|
236
187
|
deleteVPCEConfiguration(args: DeleteVPCEConfigurationCommandInput, cb: (err: any, data?: DeleteVPCEConfigurationCommandOutput) => void): void;
|
|
237
188
|
deleteVPCEConfiguration(args: DeleteVPCEConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVPCEConfigurationCommandOutput) => void): void;
|
|
238
189
|
/**
|
|
239
|
-
* @
|
|
240
|
-
* <p>Returns the number of unmetered iOS or unmetered Android devices that have been purchased by the
|
|
241
|
-
* account.</p>
|
|
190
|
+
* @see {@link GetAccountSettingsCommand}
|
|
242
191
|
*/
|
|
243
192
|
getAccountSettings(args: GetAccountSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetAccountSettingsCommandOutput>;
|
|
244
193
|
getAccountSettings(args: GetAccountSettingsCommandInput, cb: (err: any, data?: GetAccountSettingsCommandOutput) => void): void;
|
|
245
194
|
getAccountSettings(args: GetAccountSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAccountSettingsCommandOutput) => void): void;
|
|
246
195
|
/**
|
|
247
|
-
* @
|
|
248
|
-
* <p>Gets information about a unique device type.</p>
|
|
196
|
+
* @see {@link GetDeviceCommand}
|
|
249
197
|
*/
|
|
250
198
|
getDevice(args: GetDeviceCommandInput, options?: __HttpHandlerOptions): Promise<GetDeviceCommandOutput>;
|
|
251
199
|
getDevice(args: GetDeviceCommandInput, cb: (err: any, data?: GetDeviceCommandOutput) => void): void;
|
|
252
200
|
getDevice(args: GetDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeviceCommandOutput) => void): void;
|
|
253
201
|
/**
|
|
254
|
-
* @
|
|
255
|
-
* <p>Returns information about a device instance that belongs to a private device fleet.</p>
|
|
202
|
+
* @see {@link GetDeviceInstanceCommand}
|
|
256
203
|
*/
|
|
257
204
|
getDeviceInstance(args: GetDeviceInstanceCommandInput, options?: __HttpHandlerOptions): Promise<GetDeviceInstanceCommandOutput>;
|
|
258
205
|
getDeviceInstance(args: GetDeviceInstanceCommandInput, cb: (err: any, data?: GetDeviceInstanceCommandOutput) => void): void;
|
|
259
206
|
getDeviceInstance(args: GetDeviceInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeviceInstanceCommandOutput) => void): void;
|
|
260
207
|
/**
|
|
261
|
-
* @
|
|
262
|
-
* <p>Gets information about a device pool.</p>
|
|
208
|
+
* @see {@link GetDevicePoolCommand}
|
|
263
209
|
*/
|
|
264
210
|
getDevicePool(args: GetDevicePoolCommandInput, options?: __HttpHandlerOptions): Promise<GetDevicePoolCommandOutput>;
|
|
265
211
|
getDevicePool(args: GetDevicePoolCommandInput, cb: (err: any, data?: GetDevicePoolCommandOutput) => void): void;
|
|
266
212
|
getDevicePool(args: GetDevicePoolCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDevicePoolCommandOutput) => void): void;
|
|
267
213
|
/**
|
|
268
|
-
* @
|
|
269
|
-
* <p>Gets information about compatibility with a device pool.</p>
|
|
214
|
+
* @see {@link GetDevicePoolCompatibilityCommand}
|
|
270
215
|
*/
|
|
271
216
|
getDevicePoolCompatibility(args: GetDevicePoolCompatibilityCommandInput, options?: __HttpHandlerOptions): Promise<GetDevicePoolCompatibilityCommandOutput>;
|
|
272
217
|
getDevicePoolCompatibility(args: GetDevicePoolCompatibilityCommandInput, cb: (err: any, data?: GetDevicePoolCompatibilityCommandOutput) => void): void;
|
|
273
218
|
getDevicePoolCompatibility(args: GetDevicePoolCompatibilityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDevicePoolCompatibilityCommandOutput) => void): void;
|
|
274
219
|
/**
|
|
275
|
-
* @
|
|
276
|
-
* <p>Returns information about the specified instance profile.</p>
|
|
220
|
+
* @see {@link GetInstanceProfileCommand}
|
|
277
221
|
*/
|
|
278
222
|
getInstanceProfile(args: GetInstanceProfileCommandInput, options?: __HttpHandlerOptions): Promise<GetInstanceProfileCommandOutput>;
|
|
279
223
|
getInstanceProfile(args: GetInstanceProfileCommandInput, cb: (err: any, data?: GetInstanceProfileCommandOutput) => void): void;
|
|
280
224
|
getInstanceProfile(args: GetInstanceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetInstanceProfileCommandOutput) => void): void;
|
|
281
225
|
/**
|
|
282
|
-
* @
|
|
283
|
-
* <p>Gets information about a job.</p>
|
|
226
|
+
* @see {@link GetJobCommand}
|
|
284
227
|
*/
|
|
285
228
|
getJob(args: GetJobCommandInput, options?: __HttpHandlerOptions): Promise<GetJobCommandOutput>;
|
|
286
229
|
getJob(args: GetJobCommandInput, cb: (err: any, data?: GetJobCommandOutput) => void): void;
|
|
287
230
|
getJob(args: GetJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetJobCommandOutput) => void): void;
|
|
288
231
|
/**
|
|
289
|
-
* @
|
|
290
|
-
* <p>Returns information about a network profile.</p>
|
|
232
|
+
* @see {@link GetNetworkProfileCommand}
|
|
291
233
|
*/
|
|
292
234
|
getNetworkProfile(args: GetNetworkProfileCommandInput, options?: __HttpHandlerOptions): Promise<GetNetworkProfileCommandOutput>;
|
|
293
235
|
getNetworkProfile(args: GetNetworkProfileCommandInput, cb: (err: any, data?: GetNetworkProfileCommandOutput) => void): void;
|
|
294
236
|
getNetworkProfile(args: GetNetworkProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNetworkProfileCommandOutput) => void): void;
|
|
295
237
|
/**
|
|
296
|
-
* @
|
|
297
|
-
* <p>Gets the current status and future status of all offerings purchased by an AWS account. The response
|
|
298
|
-
* indicates how many offerings are currently available and the offerings that will be available in the next
|
|
299
|
-
* period. The API returns a <code>NotEligible</code> error if the user is not permitted to invoke the
|
|
300
|
-
* operation. If you must be able to invoke this operation, contact <a href="mailto:aws-devicefarm-support@amazon.com">aws-devicefarm-support@amazon.com</a>.</p>
|
|
238
|
+
* @see {@link GetOfferingStatusCommand}
|
|
301
239
|
*/
|
|
302
240
|
getOfferingStatus(args: GetOfferingStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetOfferingStatusCommandOutput>;
|
|
303
241
|
getOfferingStatus(args: GetOfferingStatusCommandInput, cb: (err: any, data?: GetOfferingStatusCommandOutput) => void): void;
|
|
304
242
|
getOfferingStatus(args: GetOfferingStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOfferingStatusCommandOutput) => void): void;
|
|
305
243
|
/**
|
|
306
|
-
* @
|
|
307
|
-
* <p>Gets information about a project.</p>
|
|
244
|
+
* @see {@link GetProjectCommand}
|
|
308
245
|
*/
|
|
309
246
|
getProject(args: GetProjectCommandInput, options?: __HttpHandlerOptions): Promise<GetProjectCommandOutput>;
|
|
310
247
|
getProject(args: GetProjectCommandInput, cb: (err: any, data?: GetProjectCommandOutput) => void): void;
|
|
311
248
|
getProject(args: GetProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProjectCommandOutput) => void): void;
|
|
312
249
|
/**
|
|
313
|
-
* @
|
|
314
|
-
* <p>Returns a link to a currently running remote access session.</p>
|
|
250
|
+
* @see {@link GetRemoteAccessSessionCommand}
|
|
315
251
|
*/
|
|
316
252
|
getRemoteAccessSession(args: GetRemoteAccessSessionCommandInput, options?: __HttpHandlerOptions): Promise<GetRemoteAccessSessionCommandOutput>;
|
|
317
253
|
getRemoteAccessSession(args: GetRemoteAccessSessionCommandInput, cb: (err: any, data?: GetRemoteAccessSessionCommandOutput) => void): void;
|
|
318
254
|
getRemoteAccessSession(args: GetRemoteAccessSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRemoteAccessSessionCommandOutput) => void): void;
|
|
319
255
|
/**
|
|
320
|
-
* @
|
|
321
|
-
* <p>Gets information about a run.</p>
|
|
256
|
+
* @see {@link GetRunCommand}
|
|
322
257
|
*/
|
|
323
258
|
getRun(args: GetRunCommandInput, options?: __HttpHandlerOptions): Promise<GetRunCommandOutput>;
|
|
324
259
|
getRun(args: GetRunCommandInput, cb: (err: any, data?: GetRunCommandOutput) => void): void;
|
|
325
260
|
getRun(args: GetRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRunCommandOutput) => void): void;
|
|
326
261
|
/**
|
|
327
|
-
* @
|
|
328
|
-
* <p>Gets information about a suite.</p>
|
|
262
|
+
* @see {@link GetSuiteCommand}
|
|
329
263
|
*/
|
|
330
264
|
getSuite(args: GetSuiteCommandInput, options?: __HttpHandlerOptions): Promise<GetSuiteCommandOutput>;
|
|
331
265
|
getSuite(args: GetSuiteCommandInput, cb: (err: any, data?: GetSuiteCommandOutput) => void): void;
|
|
332
266
|
getSuite(args: GetSuiteCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSuiteCommandOutput) => void): void;
|
|
333
267
|
/**
|
|
334
|
-
* @
|
|
335
|
-
* <p>Gets information about a test.</p>
|
|
268
|
+
* @see {@link GetTestCommand}
|
|
336
269
|
*/
|
|
337
270
|
getTest(args: GetTestCommandInput, options?: __HttpHandlerOptions): Promise<GetTestCommandOutput>;
|
|
338
271
|
getTest(args: GetTestCommandInput, cb: (err: any, data?: GetTestCommandOutput) => void): void;
|
|
339
272
|
getTest(args: GetTestCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTestCommandOutput) => void): void;
|
|
340
273
|
/**
|
|
341
|
-
* @
|
|
342
|
-
* <p>Retrieves information about a Selenium testing project.</p>
|
|
274
|
+
* @see {@link GetTestGridProjectCommand}
|
|
343
275
|
*/
|
|
344
276
|
getTestGridProject(args: GetTestGridProjectCommandInput, options?: __HttpHandlerOptions): Promise<GetTestGridProjectCommandOutput>;
|
|
345
277
|
getTestGridProject(args: GetTestGridProjectCommandInput, cb: (err: any, data?: GetTestGridProjectCommandOutput) => void): void;
|
|
346
278
|
getTestGridProject(args: GetTestGridProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTestGridProjectCommandOutput) => void): void;
|
|
347
279
|
/**
|
|
348
|
-
* @
|
|
349
|
-
* <p>A session is an instance of a browser created through a <code>RemoteWebDriver</code> with the URL from <a>CreateTestGridUrlResult$url</a>. You can use the following to look up sessions:</p>
|
|
350
|
-
* <ul>
|
|
351
|
-
* <li>
|
|
352
|
-
* <p>The session ARN (<a>GetTestGridSessionRequest$sessionArn</a>).</p>
|
|
353
|
-
* </li>
|
|
354
|
-
* <li>
|
|
355
|
-
* <p>The project ARN and a session ID (<a>GetTestGridSessionRequest$projectArn</a> and <a>GetTestGridSessionRequest$sessionId</a>).</p>
|
|
356
|
-
* </li>
|
|
357
|
-
* </ul>
|
|
358
|
-
* <p></p>
|
|
280
|
+
* @see {@link GetTestGridSessionCommand}
|
|
359
281
|
*/
|
|
360
282
|
getTestGridSession(args: GetTestGridSessionCommandInput, options?: __HttpHandlerOptions): Promise<GetTestGridSessionCommandOutput>;
|
|
361
283
|
getTestGridSession(args: GetTestGridSessionCommandInput, cb: (err: any, data?: GetTestGridSessionCommandOutput) => void): void;
|
|
362
284
|
getTestGridSession(args: GetTestGridSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTestGridSessionCommandOutput) => void): void;
|
|
363
285
|
/**
|
|
364
|
-
* @
|
|
365
|
-
* <p>Gets information about an upload.</p>
|
|
286
|
+
* @see {@link GetUploadCommand}
|
|
366
287
|
*/
|
|
367
288
|
getUpload(args: GetUploadCommandInput, options?: __HttpHandlerOptions): Promise<GetUploadCommandOutput>;
|
|
368
289
|
getUpload(args: GetUploadCommandInput, cb: (err: any, data?: GetUploadCommandOutput) => void): void;
|
|
369
290
|
getUpload(args: GetUploadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUploadCommandOutput) => void): void;
|
|
370
291
|
/**
|
|
371
|
-
* @
|
|
372
|
-
* <p>Returns information about the configuration settings for your Amazon Virtual Private
|
|
373
|
-
* Cloud (VPC) endpoint.</p>
|
|
292
|
+
* @see {@link GetVPCEConfigurationCommand}
|
|
374
293
|
*/
|
|
375
294
|
getVPCEConfiguration(args: GetVPCEConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetVPCEConfigurationCommandOutput>;
|
|
376
295
|
getVPCEConfiguration(args: GetVPCEConfigurationCommandInput, cb: (err: any, data?: GetVPCEConfigurationCommandOutput) => void): void;
|
|
377
296
|
getVPCEConfiguration(args: GetVPCEConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVPCEConfigurationCommandOutput) => void): void;
|
|
378
297
|
/**
|
|
379
|
-
* @
|
|
380
|
-
* <p>Installs an application to the device in a remote access session. For Android
|
|
381
|
-
* applications, the file must be in .apk format. For iOS applications, the file must be in
|
|
382
|
-
* .ipa format.</p>
|
|
298
|
+
* @see {@link InstallToRemoteAccessSessionCommand}
|
|
383
299
|
*/
|
|
384
300
|
installToRemoteAccessSession(args: InstallToRemoteAccessSessionCommandInput, options?: __HttpHandlerOptions): Promise<InstallToRemoteAccessSessionCommandOutput>;
|
|
385
301
|
installToRemoteAccessSession(args: InstallToRemoteAccessSessionCommandInput, cb: (err: any, data?: InstallToRemoteAccessSessionCommandOutput) => void): void;
|
|
386
302
|
installToRemoteAccessSession(args: InstallToRemoteAccessSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: InstallToRemoteAccessSessionCommandOutput) => void): void;
|
|
387
303
|
/**
|
|
388
|
-
* @
|
|
389
|
-
* <p>Gets information about artifacts.</p>
|
|
304
|
+
* @see {@link ListArtifactsCommand}
|
|
390
305
|
*/
|
|
391
306
|
listArtifacts(args: ListArtifactsCommandInput, options?: __HttpHandlerOptions): Promise<ListArtifactsCommandOutput>;
|
|
392
307
|
listArtifacts(args: ListArtifactsCommandInput, cb: (err: any, data?: ListArtifactsCommandOutput) => void): void;
|
|
393
308
|
listArtifacts(args: ListArtifactsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListArtifactsCommandOutput) => void): void;
|
|
394
309
|
/**
|
|
395
|
-
* @
|
|
396
|
-
* <p>Returns information about the private device instances associated with one or more AWS
|
|
397
|
-
* accounts.</p>
|
|
310
|
+
* @see {@link ListDeviceInstancesCommand}
|
|
398
311
|
*/
|
|
399
312
|
listDeviceInstances(args: ListDeviceInstancesCommandInput, options?: __HttpHandlerOptions): Promise<ListDeviceInstancesCommandOutput>;
|
|
400
313
|
listDeviceInstances(args: ListDeviceInstancesCommandInput, cb: (err: any, data?: ListDeviceInstancesCommandOutput) => void): void;
|
|
401
314
|
listDeviceInstances(args: ListDeviceInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeviceInstancesCommandOutput) => void): void;
|
|
402
315
|
/**
|
|
403
|
-
* @
|
|
404
|
-
* <p>Gets information about device pools.</p>
|
|
316
|
+
* @see {@link ListDevicePoolsCommand}
|
|
405
317
|
*/
|
|
406
318
|
listDevicePools(args: ListDevicePoolsCommandInput, options?: __HttpHandlerOptions): Promise<ListDevicePoolsCommandOutput>;
|
|
407
319
|
listDevicePools(args: ListDevicePoolsCommandInput, cb: (err: any, data?: ListDevicePoolsCommandOutput) => void): void;
|
|
408
320
|
listDevicePools(args: ListDevicePoolsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDevicePoolsCommandOutput) => void): void;
|
|
409
321
|
/**
|
|
410
|
-
* @
|
|
411
|
-
* <p>Gets information about unique device types.</p>
|
|
322
|
+
* @see {@link ListDevicesCommand}
|
|
412
323
|
*/
|
|
413
324
|
listDevices(args: ListDevicesCommandInput, options?: __HttpHandlerOptions): Promise<ListDevicesCommandOutput>;
|
|
414
325
|
listDevices(args: ListDevicesCommandInput, cb: (err: any, data?: ListDevicesCommandOutput) => void): void;
|
|
415
326
|
listDevices(args: ListDevicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDevicesCommandOutput) => void): void;
|
|
416
327
|
/**
|
|
417
|
-
* @
|
|
418
|
-
* <p>Returns information about all the instance profiles in an AWS account.</p>
|
|
328
|
+
* @see {@link ListInstanceProfilesCommand}
|
|
419
329
|
*/
|
|
420
330
|
listInstanceProfiles(args: ListInstanceProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListInstanceProfilesCommandOutput>;
|
|
421
331
|
listInstanceProfiles(args: ListInstanceProfilesCommandInput, cb: (err: any, data?: ListInstanceProfilesCommandOutput) => void): void;
|
|
422
332
|
listInstanceProfiles(args: ListInstanceProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInstanceProfilesCommandOutput) => void): void;
|
|
423
333
|
/**
|
|
424
|
-
* @
|
|
425
|
-
* <p>Gets information about jobs for a given test run.</p>
|
|
334
|
+
* @see {@link ListJobsCommand}
|
|
426
335
|
*/
|
|
427
336
|
listJobs(args: ListJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListJobsCommandOutput>;
|
|
428
337
|
listJobs(args: ListJobsCommandInput, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
|
|
429
338
|
listJobs(args: ListJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
|
|
430
339
|
/**
|
|
431
|
-
* @
|
|
432
|
-
* <p>Returns the list of available network profiles.</p>
|
|
340
|
+
* @see {@link ListNetworkProfilesCommand}
|
|
433
341
|
*/
|
|
434
342
|
listNetworkProfiles(args: ListNetworkProfilesCommandInput, options?: __HttpHandlerOptions): Promise<ListNetworkProfilesCommandOutput>;
|
|
435
343
|
listNetworkProfiles(args: ListNetworkProfilesCommandInput, cb: (err: any, data?: ListNetworkProfilesCommandOutput) => void): void;
|
|
436
344
|
listNetworkProfiles(args: ListNetworkProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNetworkProfilesCommandOutput) => void): void;
|
|
437
345
|
/**
|
|
438
|
-
* @
|
|
439
|
-
* <p>Returns a list of offering promotions. Each offering promotion record contains the ID and description
|
|
440
|
-
* of the promotion. The API returns a <code>NotEligible</code> error if the caller is not permitted to invoke
|
|
441
|
-
* the operation. Contact <a href="mailto:aws-devicefarm-support@amazon.com">aws-devicefarm-support@amazon.com</a> if you must be able to invoke this operation.</p>
|
|
346
|
+
* @see {@link ListOfferingPromotionsCommand}
|
|
442
347
|
*/
|
|
443
348
|
listOfferingPromotions(args: ListOfferingPromotionsCommandInput, options?: __HttpHandlerOptions): Promise<ListOfferingPromotionsCommandOutput>;
|
|
444
349
|
listOfferingPromotions(args: ListOfferingPromotionsCommandInput, cb: (err: any, data?: ListOfferingPromotionsCommandOutput) => void): void;
|
|
445
350
|
listOfferingPromotions(args: ListOfferingPromotionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOfferingPromotionsCommandOutput) => void): void;
|
|
446
351
|
/**
|
|
447
|
-
* @
|
|
448
|
-
* <p>Returns a list of products or offerings that the user can manage through the API. Each offering record
|
|
449
|
-
* indicates the recurring price per unit and the frequency for that offering. The API returns a
|
|
450
|
-
* <code>NotEligible</code> error if the user is not permitted to invoke the operation. If you must be
|
|
451
|
-
* able to invoke this operation, contact <a href="mailto:aws-devicefarm-support@amazon.com">aws-devicefarm-support@amazon.com</a>.</p>
|
|
352
|
+
* @see {@link ListOfferingsCommand}
|
|
452
353
|
*/
|
|
453
354
|
listOfferings(args: ListOfferingsCommandInput, options?: __HttpHandlerOptions): Promise<ListOfferingsCommandOutput>;
|
|
454
355
|
listOfferings(args: ListOfferingsCommandInput, cb: (err: any, data?: ListOfferingsCommandOutput) => void): void;
|
|
455
356
|
listOfferings(args: ListOfferingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOfferingsCommandOutput) => void): void;
|
|
456
357
|
/**
|
|
457
|
-
* @
|
|
458
|
-
* <p>Returns a list of all historical purchases, renewals, and system renewal transactions for an AWS
|
|
459
|
-
* account. The list is paginated and ordered by a descending timestamp (most recent transactions are first).
|
|
460
|
-
* The API returns a <code>NotEligible</code> error if the user is not permitted to invoke the operation. If
|
|
461
|
-
* you must be able to invoke this operation, contact <a href="mailto:aws-devicefarm-support@amazon.com">aws-devicefarm-support@amazon.com</a>.</p>
|
|
358
|
+
* @see {@link ListOfferingTransactionsCommand}
|
|
462
359
|
*/
|
|
463
360
|
listOfferingTransactions(args: ListOfferingTransactionsCommandInput, options?: __HttpHandlerOptions): Promise<ListOfferingTransactionsCommandOutput>;
|
|
464
361
|
listOfferingTransactions(args: ListOfferingTransactionsCommandInput, cb: (err: any, data?: ListOfferingTransactionsCommandOutput) => void): void;
|
|
465
362
|
listOfferingTransactions(args: ListOfferingTransactionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOfferingTransactionsCommandOutput) => void): void;
|
|
466
363
|
/**
|
|
467
|
-
* @
|
|
468
|
-
* <p>Gets information about projects.</p>
|
|
364
|
+
* @see {@link ListProjectsCommand}
|
|
469
365
|
*/
|
|
470
366
|
listProjects(args: ListProjectsCommandInput, options?: __HttpHandlerOptions): Promise<ListProjectsCommandOutput>;
|
|
471
367
|
listProjects(args: ListProjectsCommandInput, cb: (err: any, data?: ListProjectsCommandOutput) => void): void;
|
|
472
368
|
listProjects(args: ListProjectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProjectsCommandOutput) => void): void;
|
|
473
369
|
/**
|
|
474
|
-
* @
|
|
475
|
-
* <p>Returns a list of all currently running remote access sessions.</p>
|
|
370
|
+
* @see {@link ListRemoteAccessSessionsCommand}
|
|
476
371
|
*/
|
|
477
372
|
listRemoteAccessSessions(args: ListRemoteAccessSessionsCommandInput, options?: __HttpHandlerOptions): Promise<ListRemoteAccessSessionsCommandOutput>;
|
|
478
373
|
listRemoteAccessSessions(args: ListRemoteAccessSessionsCommandInput, cb: (err: any, data?: ListRemoteAccessSessionsCommandOutput) => void): void;
|
|
479
374
|
listRemoteAccessSessions(args: ListRemoteAccessSessionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRemoteAccessSessionsCommandOutput) => void): void;
|
|
480
375
|
/**
|
|
481
|
-
* @
|
|
482
|
-
* <p>Gets information about runs, given an AWS Device Farm project ARN.</p>
|
|
376
|
+
* @see {@link ListRunsCommand}
|
|
483
377
|
*/
|
|
484
378
|
listRuns(args: ListRunsCommandInput, options?: __HttpHandlerOptions): Promise<ListRunsCommandOutput>;
|
|
485
379
|
listRuns(args: ListRunsCommandInput, cb: (err: any, data?: ListRunsCommandOutput) => void): void;
|
|
486
380
|
listRuns(args: ListRunsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRunsCommandOutput) => void): void;
|
|
487
381
|
/**
|
|
488
|
-
* @
|
|
489
|
-
* <p>Gets information about samples, given an AWS Device Farm job ARN.</p>
|
|
382
|
+
* @see {@link ListSamplesCommand}
|
|
490
383
|
*/
|
|
491
384
|
listSamples(args: ListSamplesCommandInput, options?: __HttpHandlerOptions): Promise<ListSamplesCommandOutput>;
|
|
492
385
|
listSamples(args: ListSamplesCommandInput, cb: (err: any, data?: ListSamplesCommandOutput) => void): void;
|
|
493
386
|
listSamples(args: ListSamplesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSamplesCommandOutput) => void): void;
|
|
494
387
|
/**
|
|
495
|
-
* @
|
|
496
|
-
* <p>Gets information about test suites for a given job.</p>
|
|
388
|
+
* @see {@link ListSuitesCommand}
|
|
497
389
|
*/
|
|
498
390
|
listSuites(args: ListSuitesCommandInput, options?: __HttpHandlerOptions): Promise<ListSuitesCommandOutput>;
|
|
499
391
|
listSuites(args: ListSuitesCommandInput, cb: (err: any, data?: ListSuitesCommandOutput) => void): void;
|
|
500
392
|
listSuites(args: ListSuitesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSuitesCommandOutput) => void): void;
|
|
501
393
|
/**
|
|
502
|
-
* @
|
|
503
|
-
* <p>List the tags for an AWS Device Farm resource.</p>
|
|
394
|
+
* @see {@link ListTagsForResourceCommand}
|
|
504
395
|
*/
|
|
505
396
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
506
397
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
507
398
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
508
399
|
/**
|
|
509
|
-
* @
|
|
510
|
-
* <p>Gets a list of all Selenium testing projects in your account.</p>
|
|
400
|
+
* @see {@link ListTestGridProjectsCommand}
|
|
511
401
|
*/
|
|
512
402
|
listTestGridProjects(args: ListTestGridProjectsCommandInput, options?: __HttpHandlerOptions): Promise<ListTestGridProjectsCommandOutput>;
|
|
513
403
|
listTestGridProjects(args: ListTestGridProjectsCommandInput, cb: (err: any, data?: ListTestGridProjectsCommandOutput) => void): void;
|
|
514
404
|
listTestGridProjects(args: ListTestGridProjectsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTestGridProjectsCommandOutput) => void): void;
|
|
515
405
|
/**
|
|
516
|
-
* @
|
|
517
|
-
* <p>Returns a list of the actions taken in a <a>TestGridSession</a>.</p>
|
|
406
|
+
* @see {@link ListTestGridSessionActionsCommand}
|
|
518
407
|
*/
|
|
519
408
|
listTestGridSessionActions(args: ListTestGridSessionActionsCommandInput, options?: __HttpHandlerOptions): Promise<ListTestGridSessionActionsCommandOutput>;
|
|
520
409
|
listTestGridSessionActions(args: ListTestGridSessionActionsCommandInput, cb: (err: any, data?: ListTestGridSessionActionsCommandOutput) => void): void;
|
|
521
410
|
listTestGridSessionActions(args: ListTestGridSessionActionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTestGridSessionActionsCommandOutput) => void): void;
|
|
522
411
|
/**
|
|
523
|
-
* @
|
|
524
|
-
* <p>Retrieves a list of artifacts created during the session.</p>
|
|
412
|
+
* @see {@link ListTestGridSessionArtifactsCommand}
|
|
525
413
|
*/
|
|
526
414
|
listTestGridSessionArtifacts(args: ListTestGridSessionArtifactsCommandInput, options?: __HttpHandlerOptions): Promise<ListTestGridSessionArtifactsCommandOutput>;
|
|
527
415
|
listTestGridSessionArtifacts(args: ListTestGridSessionArtifactsCommandInput, cb: (err: any, data?: ListTestGridSessionArtifactsCommandOutput) => void): void;
|
|
528
416
|
listTestGridSessionArtifacts(args: ListTestGridSessionArtifactsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTestGridSessionArtifactsCommandOutput) => void): void;
|
|
529
417
|
/**
|
|
530
|
-
* @
|
|
531
|
-
* <p>Retrieves a list of sessions for a <a>TestGridProject</a>.</p>
|
|
418
|
+
* @see {@link ListTestGridSessionsCommand}
|
|
532
419
|
*/
|
|
533
420
|
listTestGridSessions(args: ListTestGridSessionsCommandInput, options?: __HttpHandlerOptions): Promise<ListTestGridSessionsCommandOutput>;
|
|
534
421
|
listTestGridSessions(args: ListTestGridSessionsCommandInput, cb: (err: any, data?: ListTestGridSessionsCommandOutput) => void): void;
|
|
535
422
|
listTestGridSessions(args: ListTestGridSessionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTestGridSessionsCommandOutput) => void): void;
|
|
536
423
|
/**
|
|
537
|
-
* @
|
|
538
|
-
* <p>Gets information about tests in a given test suite.</p>
|
|
424
|
+
* @see {@link ListTestsCommand}
|
|
539
425
|
*/
|
|
540
426
|
listTests(args: ListTestsCommandInput, options?: __HttpHandlerOptions): Promise<ListTestsCommandOutput>;
|
|
541
427
|
listTests(args: ListTestsCommandInput, cb: (err: any, data?: ListTestsCommandOutput) => void): void;
|
|
542
428
|
listTests(args: ListTestsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTestsCommandOutput) => void): void;
|
|
543
429
|
/**
|
|
544
|
-
* @
|
|
545
|
-
* <p>Gets information about unique problems, such as exceptions or crashes.</p>
|
|
546
|
-
* <p>Unique problems are defined as a single instance of an error across a run, job, or suite. For example,
|
|
547
|
-
* if a call in your application consistently raises an exception (<code>OutOfBoundsException in
|
|
548
|
-
* MyActivity.java:386</code>), <code>ListUniqueProblems</code> returns a single entry instead of many
|
|
549
|
-
* individual entries for that exception.</p>
|
|
430
|
+
* @see {@link ListUniqueProblemsCommand}
|
|
550
431
|
*/
|
|
551
432
|
listUniqueProblems(args: ListUniqueProblemsCommandInput, options?: __HttpHandlerOptions): Promise<ListUniqueProblemsCommandOutput>;
|
|
552
433
|
listUniqueProblems(args: ListUniqueProblemsCommandInput, cb: (err: any, data?: ListUniqueProblemsCommandOutput) => void): void;
|
|
553
434
|
listUniqueProblems(args: ListUniqueProblemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUniqueProblemsCommandOutput) => void): void;
|
|
554
435
|
/**
|
|
555
|
-
* @
|
|
556
|
-
* <p>Gets information about uploads, given an AWS Device Farm project ARN.</p>
|
|
436
|
+
* @see {@link ListUploadsCommand}
|
|
557
437
|
*/
|
|
558
438
|
listUploads(args: ListUploadsCommandInput, options?: __HttpHandlerOptions): Promise<ListUploadsCommandOutput>;
|
|
559
439
|
listUploads(args: ListUploadsCommandInput, cb: (err: any, data?: ListUploadsCommandOutput) => void): void;
|
|
560
440
|
listUploads(args: ListUploadsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUploadsCommandOutput) => void): void;
|
|
561
441
|
/**
|
|
562
|
-
* @
|
|
563
|
-
* <p>Returns information about all Amazon Virtual Private Cloud (VPC) endpoint
|
|
564
|
-
* configurations in the AWS account.</p>
|
|
442
|
+
* @see {@link ListVPCEConfigurationsCommand}
|
|
565
443
|
*/
|
|
566
444
|
listVPCEConfigurations(args: ListVPCEConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListVPCEConfigurationsCommandOutput>;
|
|
567
445
|
listVPCEConfigurations(args: ListVPCEConfigurationsCommandInput, cb: (err: any, data?: ListVPCEConfigurationsCommandOutput) => void): void;
|
|
568
446
|
listVPCEConfigurations(args: ListVPCEConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVPCEConfigurationsCommandOutput) => void): void;
|
|
569
447
|
/**
|
|
570
|
-
* @
|
|
571
|
-
* <p>Immediately purchases offerings for an AWS account. Offerings renew with the latest total purchased
|
|
572
|
-
* quantity for an offering, unless the renewal was overridden. The API returns a <code>NotEligible</code>
|
|
573
|
-
* error if the user is not permitted to invoke the operation. If you must be able to invoke this operation,
|
|
574
|
-
* contact <a href="mailto:aws-devicefarm-support@amazon.com">aws-devicefarm-support@amazon.com</a>.</p>
|
|
448
|
+
* @see {@link PurchaseOfferingCommand}
|
|
575
449
|
*/
|
|
576
450
|
purchaseOffering(args: PurchaseOfferingCommandInput, options?: __HttpHandlerOptions): Promise<PurchaseOfferingCommandOutput>;
|
|
577
451
|
purchaseOffering(args: PurchaseOfferingCommandInput, cb: (err: any, data?: PurchaseOfferingCommandOutput) => void): void;
|
|
578
452
|
purchaseOffering(args: PurchaseOfferingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PurchaseOfferingCommandOutput) => void): void;
|
|
579
453
|
/**
|
|
580
|
-
* @
|
|
581
|
-
* <p>Explicitly sets the quantity of devices to renew for an offering, starting from the
|
|
582
|
-
* <code>effectiveDate</code> of the next period. The API returns a <code>NotEligible</code> error if the
|
|
583
|
-
* user is not permitted to invoke the operation. If you must be able to invoke this operation, contact <a href="mailto:aws-devicefarm-support@amazon.com">aws-devicefarm-support@amazon.com</a>.</p>
|
|
454
|
+
* @see {@link RenewOfferingCommand}
|
|
584
455
|
*/
|
|
585
456
|
renewOffering(args: RenewOfferingCommandInput, options?: __HttpHandlerOptions): Promise<RenewOfferingCommandOutput>;
|
|
586
457
|
renewOffering(args: RenewOfferingCommandInput, cb: (err: any, data?: RenewOfferingCommandOutput) => void): void;
|
|
587
458
|
renewOffering(args: RenewOfferingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RenewOfferingCommandOutput) => void): void;
|
|
588
459
|
/**
|
|
589
|
-
* @
|
|
590
|
-
* <p>Schedules a run.</p>
|
|
460
|
+
* @see {@link ScheduleRunCommand}
|
|
591
461
|
*/
|
|
592
462
|
scheduleRun(args: ScheduleRunCommandInput, options?: __HttpHandlerOptions): Promise<ScheduleRunCommandOutput>;
|
|
593
463
|
scheduleRun(args: ScheduleRunCommandInput, cb: (err: any, data?: ScheduleRunCommandOutput) => void): void;
|
|
594
464
|
scheduleRun(args: ScheduleRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ScheduleRunCommandOutput) => void): void;
|
|
595
465
|
/**
|
|
596
|
-
* @
|
|
597
|
-
* <p>Initiates a stop request for the current job. AWS Device Farm immediately stops the job on the device
|
|
598
|
-
* where tests have not started. You are not billed for this device. On the device where tests have started,
|
|
599
|
-
* setup suite and teardown suite tests run to completion on the device. You are billed for setup, teardown,
|
|
600
|
-
* and any tests that were in progress or already completed.</p>
|
|
466
|
+
* @see {@link StopJobCommand}
|
|
601
467
|
*/
|
|
602
468
|
stopJob(args: StopJobCommandInput, options?: __HttpHandlerOptions): Promise<StopJobCommandOutput>;
|
|
603
469
|
stopJob(args: StopJobCommandInput, cb: (err: any, data?: StopJobCommandOutput) => void): void;
|
|
604
470
|
stopJob(args: StopJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopJobCommandOutput) => void): void;
|
|
605
471
|
/**
|
|
606
|
-
* @
|
|
607
|
-
* <p>Ends a specified remote access session.</p>
|
|
472
|
+
* @see {@link StopRemoteAccessSessionCommand}
|
|
608
473
|
*/
|
|
609
474
|
stopRemoteAccessSession(args: StopRemoteAccessSessionCommandInput, options?: __HttpHandlerOptions): Promise<StopRemoteAccessSessionCommandOutput>;
|
|
610
475
|
stopRemoteAccessSession(args: StopRemoteAccessSessionCommandInput, cb: (err: any, data?: StopRemoteAccessSessionCommandOutput) => void): void;
|
|
611
476
|
stopRemoteAccessSession(args: StopRemoteAccessSessionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopRemoteAccessSessionCommandOutput) => void): void;
|
|
612
477
|
/**
|
|
613
|
-
* @
|
|
614
|
-
* <p>Initiates a stop request for the current test run. AWS Device Farm immediately stops the run on devices
|
|
615
|
-
* where tests have not started. You are not billed for these devices. On devices where tests have started
|
|
616
|
-
* executing, setup suite and teardown suite tests run to completion on those devices. You are billed for
|
|
617
|
-
* setup, teardown, and any tests that were in progress or already completed.</p>
|
|
478
|
+
* @see {@link StopRunCommand}
|
|
618
479
|
*/
|
|
619
480
|
stopRun(args: StopRunCommandInput, options?: __HttpHandlerOptions): Promise<StopRunCommandOutput>;
|
|
620
481
|
stopRun(args: StopRunCommandInput, cb: (err: any, data?: StopRunCommandOutput) => void): void;
|
|
621
482
|
stopRun(args: StopRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopRunCommandOutput) => void): void;
|
|
622
483
|
/**
|
|
623
|
-
* @
|
|
624
|
-
* <p>Associates the specified tags to a resource with the specified <code>resourceArn</code>. If existing tags
|
|
625
|
-
* on a resource are not specified in the request parameters, they are not changed. When a resource is deleted,
|
|
626
|
-
* the tags associated with that resource are also deleted.</p>
|
|
484
|
+
* @see {@link TagResourceCommand}
|
|
627
485
|
*/
|
|
628
486
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
629
487
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
630
488
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
631
489
|
/**
|
|
632
|
-
* @
|
|
633
|
-
* <p>Deletes the specified tags from a resource.</p>
|
|
490
|
+
* @see {@link UntagResourceCommand}
|
|
634
491
|
*/
|
|
635
492
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
636
493
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
637
494
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
638
495
|
/**
|
|
639
|
-
* @
|
|
640
|
-
* <p>Updates information about a private device instance.</p>
|
|
496
|
+
* @see {@link UpdateDeviceInstanceCommand}
|
|
641
497
|
*/
|
|
642
498
|
updateDeviceInstance(args: UpdateDeviceInstanceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDeviceInstanceCommandOutput>;
|
|
643
499
|
updateDeviceInstance(args: UpdateDeviceInstanceCommandInput, cb: (err: any, data?: UpdateDeviceInstanceCommandOutput) => void): void;
|
|
644
500
|
updateDeviceInstance(args: UpdateDeviceInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDeviceInstanceCommandOutput) => void): void;
|
|
645
501
|
/**
|
|
646
|
-
* @
|
|
647
|
-
* <p>Modifies the name, description, and rules in a device pool given the attributes and
|
|
648
|
-
* the pool ARN. Rule updates are all-or-nothing, meaning they can only be updated as a
|
|
649
|
-
* whole (or not at all).</p>
|
|
502
|
+
* @see {@link UpdateDevicePoolCommand}
|
|
650
503
|
*/
|
|
651
504
|
updateDevicePool(args: UpdateDevicePoolCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDevicePoolCommandOutput>;
|
|
652
505
|
updateDevicePool(args: UpdateDevicePoolCommandInput, cb: (err: any, data?: UpdateDevicePoolCommandOutput) => void): void;
|
|
653
506
|
updateDevicePool(args: UpdateDevicePoolCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDevicePoolCommandOutput) => void): void;
|
|
654
507
|
/**
|
|
655
|
-
* @
|
|
656
|
-
* <p>Updates information about an existing private device instance profile.</p>
|
|
508
|
+
* @see {@link UpdateInstanceProfileCommand}
|
|
657
509
|
*/
|
|
658
510
|
updateInstanceProfile(args: UpdateInstanceProfileCommandInput, options?: __HttpHandlerOptions): Promise<UpdateInstanceProfileCommandOutput>;
|
|
659
511
|
updateInstanceProfile(args: UpdateInstanceProfileCommandInput, cb: (err: any, data?: UpdateInstanceProfileCommandOutput) => void): void;
|
|
660
512
|
updateInstanceProfile(args: UpdateInstanceProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateInstanceProfileCommandOutput) => void): void;
|
|
661
513
|
/**
|
|
662
|
-
* @
|
|
663
|
-
* <p>Updates the network profile.</p>
|
|
514
|
+
* @see {@link UpdateNetworkProfileCommand}
|
|
664
515
|
*/
|
|
665
516
|
updateNetworkProfile(args: UpdateNetworkProfileCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNetworkProfileCommandOutput>;
|
|
666
517
|
updateNetworkProfile(args: UpdateNetworkProfileCommandInput, cb: (err: any, data?: UpdateNetworkProfileCommandOutput) => void): void;
|
|
667
518
|
updateNetworkProfile(args: UpdateNetworkProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNetworkProfileCommandOutput) => void): void;
|
|
668
519
|
/**
|
|
669
|
-
* @
|
|
670
|
-
* <p>Modifies the specified project name, given the project ARN and a new
|
|
671
|
-
* name.</p>
|
|
520
|
+
* @see {@link UpdateProjectCommand}
|
|
672
521
|
*/
|
|
673
522
|
updateProject(args: UpdateProjectCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProjectCommandOutput>;
|
|
674
523
|
updateProject(args: UpdateProjectCommandInput, cb: (err: any, data?: UpdateProjectCommandOutput) => void): void;
|
|
675
524
|
updateProject(args: UpdateProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProjectCommandOutput) => void): void;
|
|
676
525
|
/**
|
|
677
|
-
* @
|
|
678
|
-
* <p>Change details of a project.</p>
|
|
526
|
+
* @see {@link UpdateTestGridProjectCommand}
|
|
679
527
|
*/
|
|
680
528
|
updateTestGridProject(args: UpdateTestGridProjectCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTestGridProjectCommandOutput>;
|
|
681
529
|
updateTestGridProject(args: UpdateTestGridProjectCommandInput, cb: (err: any, data?: UpdateTestGridProjectCommandOutput) => void): void;
|
|
682
530
|
updateTestGridProject(args: UpdateTestGridProjectCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTestGridProjectCommandOutput) => void): void;
|
|
683
531
|
/**
|
|
684
|
-
* @
|
|
685
|
-
* <p>Updates an uploaded test spec.</p>
|
|
532
|
+
* @see {@link UpdateUploadCommand}
|
|
686
533
|
*/
|
|
687
534
|
updateUpload(args: UpdateUploadCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUploadCommandOutput>;
|
|
688
535
|
updateUpload(args: UpdateUploadCommandInput, cb: (err: any, data?: UpdateUploadCommandOutput) => void): void;
|
|
689
536
|
updateUpload(args: UpdateUploadCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUploadCommandOutput) => void): void;
|
|
690
537
|
/**
|
|
691
|
-
* @
|
|
692
|
-
* <p>Updates information about an Amazon Virtual Private Cloud (VPC) endpoint configuration.</p>
|
|
538
|
+
* @see {@link UpdateVPCEConfigurationCommand}
|
|
693
539
|
*/
|
|
694
540
|
updateVPCEConfiguration(args: UpdateVPCEConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateVPCEConfigurationCommandOutput>;
|
|
695
541
|
updateVPCEConfiguration(args: UpdateVPCEConfigurationCommandInput, cb: (err: any, data?: UpdateVPCEConfigurationCommandOutput) => void): void;
|
|
696
542
|
updateVPCEConfiguration(args: UpdateVPCEConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateVPCEConfigurationCommandOutput) => void): void;
|
|
697
543
|
}
|
|
544
|
+
/**
|
|
545
|
+
* @public
|
|
546
|
+
* <p>Welcome to the AWS Device Farm API documentation, which contains APIs for:</p>
|
|
547
|
+
* <ul>
|
|
548
|
+
* <li>
|
|
549
|
+
* <p>Testing on desktop browsers</p>
|
|
550
|
+
* <p> Device Farm makes it possible for you to test your web applications on desktop browsers using
|
|
551
|
+
* Selenium. The APIs for desktop browser testing contain <code>TestGrid</code> in their names. For
|
|
552
|
+
* more information, see <a href="https://docs.aws.amazon.com/devicefarm/latest/testgrid/">Testing Web
|
|
553
|
+
* Applications on Selenium with Device Farm</a>.</p>
|
|
554
|
+
* </li>
|
|
555
|
+
* <li>
|
|
556
|
+
* <p>Testing on real mobile devices</p>
|
|
557
|
+
* <p>Device Farm makes it possible for you to test apps on physical phones, tablets, and other
|
|
558
|
+
* devices in the cloud. For more information, see the <a href="https://docs.aws.amazon.com/devicefarm/latest/developerguide/">Device Farm Developer Guide</a>.</p>
|
|
559
|
+
* </li>
|
|
560
|
+
* </ul>
|
|
561
|
+
*/
|
|
562
|
+
export declare class DeviceFarm extends DeviceFarmClient implements DeviceFarm {
|
|
563
|
+
}
|