@aws-sdk/client-device-farm 3.1115.0 → 3.1116.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/index.js CHANGED
@@ -69,7 +69,7 @@ const commonParams = {
69
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
70
70
  };
71
71
 
72
- var version = "3.1114.0";
72
+ var version = "3.1115.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -1033,8 +1033,8 @@ var CreateProjectResult$ = [3, n0, _CPRr,
1033
1033
  ];
1034
1034
  var CreateRemoteAccessSessionConfiguration$ = [3, n0, _CRASC,
1035
1035
  0,
1036
- [_aA, _bM, _vCA, _dPe],
1037
- [64 | 0, 0, 64 | 0, () => DeviceProxy$]
1036
+ [_aA, _bM, _vCA, _dPe, _pa],
1037
+ [64 | 0, 0, 64 | 0, () => DeviceProxy$, 128 | 0]
1038
1038
  ];
1039
1039
  var CreateRemoteAccessSessionRequest$ = [3, n0, _CRASR,
1040
1040
  0,
@@ -745,8 +745,8 @@ export var CreateProjectResult$ = [3, n0, _CPRr,
745
745
  ];
746
746
  export var CreateRemoteAccessSessionConfiguration$ = [3, n0, _CRASC,
747
747
  0,
748
- [_aA, _bM, _vCA, _dPe],
749
- [64 | 0, 0, 64 | 0, () => DeviceProxy$]
748
+ [_aA, _bM, _vCA, _dPe, _pa],
749
+ [64 | 0, 0, 64 | 0, () => DeviceProxy$, 128 | 0]
750
750
  ];
751
751
  export var CreateRemoteAccessSessionRequest$ = [3, n0, _CRASR,
752
752
  0,
@@ -1865,6 +1865,7 @@ var OfferingStatusMap = [2, n0, _OSM,
1865
1865
  0, 0, () => OfferingStatus$
1866
1866
  ];
1867
1867
  var PurchasedDevicesMap = 128 | 1;
1868
+ var RemoteAccessParameters = 128 | 0;
1868
1869
  var TestParameters = 128 | 0;
1869
1870
  var UniqueProblemsByExecutionResultMap = [2, n0, _UPBERM,
1870
1871
  0, 0, () => UniqueProblems
@@ -51,6 +51,9 @@ declare const CreateRemoteAccessSessionCommand_base: {
51
51
  * host: "STRING_VALUE", // required
52
52
  * port: Number("int"), // required
53
53
  * },
54
+ * parameters: { // RemoteAccessParameters
55
+ * "<keys>": "STRING_VALUE",
56
+ * },
54
57
  * },
55
58
  * interactionMode: "INTERACTIVE" || "NO_VIDEO" || "VIDEO_ONLY",
56
59
  * skipAppResign: true || false,
@@ -24,13 +24,14 @@ declare const GetTestGridSessionCommand_base: {
24
24
  getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
25
  };
26
26
  /**
27
- * <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>
27
+ * <p>A session is an instance of a browser created through a <code>RemoteWebDriver</code> with the URL from <code>
28
+ * CreateTestGridUrlResult</code>. You can use the following to look up sessions:</p>
28
29
  * <ul>
29
30
  * <li>
30
- * <p>The session ARN (<a>GetTestGridSessionRequest$sessionArn</a>).</p>
31
+ * <p>The session ARN.</p>
31
32
  * </li>
32
33
  * <li>
33
- * <p>The project ARN and a session ID (<a>GetTestGridSessionRequest$projectArn</a> and <a>GetTestGridSessionRequest$sessionId</a>).</p>
34
+ * <p>The project ARN and a session ID.</p>
34
35
  * </li>
35
36
  * </ul>
36
37
  * <p></p>
@@ -25,6 +25,9 @@ declare const ListSamplesCommand_base: {
25
25
  };
26
26
  /**
27
27
  * <p>Gets information about samples, given an AWS Device Farm job ARN.</p>
28
+ * <important>
29
+ * <p>Device Farm does not support performance data samples during test executions.</p>
30
+ * </important>
28
31
  * @example
29
32
  * Use a bare-bones client and the command you need to make an API call.
30
33
  * ```javascript
@@ -870,6 +870,20 @@ export interface CreateRemoteAccessSessionConfiguration {
870
870
  * @public
871
871
  */
872
872
  deviceProxy?: DeviceProxy | undefined;
873
+ /**
874
+ * <p>The name-value string pairs that specify additional settings for the remote access
875
+ * session.</p>
876
+ * <ul>
877
+ * <li>
878
+ * <p>
879
+ * <code>appium:version</code>: The major version of the Appium server to use for
880
+ * the session (for example, 2 or 3). The service may reject the selected version
881
+ * if it is not available for the selected device.</p>
882
+ * </li>
883
+ * </ul>
884
+ * @public
885
+ */
886
+ parameters?: Record<string, string> | undefined;
873
887
  }
874
888
  /**
875
889
  * <p>Creates and submits a request to start a remote access session.</p>
@@ -1440,13 +1454,13 @@ export interface CreateTestGridUrlRequest {
1440
1454
  */
1441
1455
  export interface CreateTestGridUrlResult {
1442
1456
  /**
1443
- * <p>A signed URL, expiring in <a>CreateTestGridUrlRequest$expiresInSeconds</a> seconds, to be passed
1457
+ * <p>A signed URL, expiring in the time specified by the <code>CreateTestGridUrlRequest</code>, to be passed
1444
1458
  * to a <code>RemoteWebDriver</code>. </p>
1445
1459
  * @public
1446
1460
  */
1447
1461
  url?: string | undefined;
1448
1462
  /**
1449
- * <p>The number of seconds the URL from <a>CreateTestGridUrlResult$url</a> stays active.</p>
1463
+ * <p>The number of seconds the URL stays active from creation.</p>
1450
1464
  * @public
1451
1465
  */
1452
1466
  expires?: Date | undefined;
@@ -2288,35 +2302,6 @@ export interface ScheduleRunTest {
2288
2302
  /**
2289
2303
  * <p>The test's parameters, such as test framework parameters and fixture settings.
2290
2304
  * Parameters are represented by name-value pairs of strings.</p>
2291
- * <p>For all tests:</p>
2292
- * <ul>
2293
- * <li>
2294
- * <p>
2295
- * <code>app_performance_monitoring</code>: Performance monitoring is enabled by default.
2296
- * Set this parameter to false to disable it.</p>
2297
- * </li>
2298
- * </ul>
2299
- * <p>For Appium tests (all types):</p>
2300
- * <ul>
2301
- * <li>
2302
- * <p>appium_version: The Appium version. Currently supported values are 1.6.5
2303
- * (and later), latest, and default.</p>
2304
- * <ul>
2305
- * <li>
2306
- * <p>latest runs the latest Appium version supported by Device
2307
- * Farm (1.9.1).</p>
2308
- * </li>
2309
- * <li>
2310
- * <p>For default, Device Farm selects a compatible version of
2311
- * Appium for the device. The current behavior is to run 1.7.2 on Android
2312
- * devices and iOS 9 and earlier and 1.7.2 for iOS 10 and later.</p>
2313
- * </li>
2314
- * <li>
2315
- * <p>This behavior is subject to change.</p>
2316
- * </li>
2317
- * </ul>
2318
- * </li>
2319
- * </ul>
2320
2305
  * <p>For fuzz tests (Android only):</p>
2321
2306
  * <ul>
2322
2307
  * <li>
@@ -4800,6 +4785,9 @@ export interface ListSamplesRequest {
4800
4785
  }
4801
4786
  /**
4802
4787
  * <p>Represents a sample of performance data.</p>
4788
+ * <important>
4789
+ * <p>Device Farm does not support performance data samples during test executions.</p>
4790
+ * </important>
4803
4791
  * @public
4804
4792
  */
4805
4793
  export interface Sample {
@@ -174,6 +174,7 @@ export interface CreateRemoteAccessSessionConfiguration {
174
174
  billingMethod?: BillingMethod | undefined;
175
175
  vpceConfigurationArns?: string[] | undefined;
176
176
  deviceProxy?: DeviceProxy | undefined;
177
+ parameters?: Record<string, string> | undefined;
177
178
  }
178
179
  export interface CreateRemoteAccessSessionRequest {
179
180
  projectArn: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-device-farm",
3
- "version": "3.1115.0",
3
+ "version": "3.1116.0",
4
4
  "description": "AWS SDK for JavaScript Device Farm Client for Node.js, Browser and React Native",
5
5
  "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-device-farm",
6
6
  "license": "Apache-2.0",
@@ -48,13 +48,13 @@
48
48
  "test:index": "tsc -p tsconfig.test.json && node ./test/index-objects.spec.mjs"
49
49
  },
50
50
  "dependencies": {
51
- "@aws-sdk/core": "^3.977.8",
52
- "@aws-sdk/credential-provider-node": "^3.972.80",
53
- "@aws-sdk/types": "^3.974.4",
54
- "@smithy/core": "^3.31.1",
55
- "@smithy/fetch-http-handler": "^5.6.13",
56
- "@smithy/node-http-handler": "^4.9.13",
57
- "@smithy/types": "^4.16.1",
51
+ "@aws-sdk/core": "^3.977.9",
52
+ "@aws-sdk/credential-provider-node": "^3.972.81",
53
+ "@aws-sdk/types": "^3.974.5",
54
+ "@smithy/core": "^3.33.3",
55
+ "@smithy/fetch-http-handler": "^5.7.2",
56
+ "@smithy/node-http-handler": "^4.11.3",
57
+ "@smithy/types": "^4.17.2",
58
58
  "tslib": "^2.6.2"
59
59
  },
60
60
  "devDependencies": {