Skip to content

Commit 1b65b24

Browse files
author
AWS
committed
AWS Device Farm Update: This release adds support for optionally including an app as part of a CreateRemoteAccessSession request
1 parent 36539e6 commit 1b65b24

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS Device Farm",
4+
"contributor": "",
5+
"description": "This release adds support for optionally including an app as part of a CreateRemoteAccessSession request"
6+
}

services/devicefarm/src/main/resources/codegen-resources/endpoint-rule-set.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,27 +5,27 @@
55
"builtIn": "AWS::Region",
66
"required": false,
77
"documentation": "The AWS region used to dispatch the request.",
8-
"type": "String"
8+
"type": "string"
99
},
1010
"UseDualStack": {
1111
"builtIn": "AWS::UseDualStack",
1212
"required": true,
1313
"default": false,
1414
"documentation": "When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.",
15-
"type": "Boolean"
15+
"type": "boolean"
1616
},
1717
"UseFIPS": {
1818
"builtIn": "AWS::UseFIPS",
1919
"required": true,
2020
"default": false,
2121
"documentation": "When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.",
22-
"type": "Boolean"
22+
"type": "boolean"
2323
},
2424
"Endpoint": {
2525
"builtIn": "SDK::Endpoint",
2626
"required": false,
2727
"documentation": "Override the endpoint used to send this request",
28-
"type": "String"
28+
"type": "string"
2929
}
3030
},
3131
"rules": [

services/devicefarm/src/main/resources/codegen-resources/service-2.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1383,6 +1383,12 @@
13831383
"type":"list",
13841384
"member":{"shape":"Artifact"}
13851385
},
1386+
"AuxiliaryAppArnList":{
1387+
"type":"list",
1388+
"member":{"shape":"AmazonResourceName"},
1389+
"max":3,
1390+
"min":0
1391+
},
13861392
"BillingMethod":{
13871393
"type":"string",
13881394
"enum":[
@@ -1635,6 +1641,10 @@
16351641
"CreateRemoteAccessSessionConfiguration":{
16361642
"type":"structure",
16371643
"members":{
1644+
"auxiliaryApps":{
1645+
"shape":"AuxiliaryAppArnList",
1646+
"documentation":"<p>A list of upload ARNs for app packages to be installed onto your device. (Maximum 3)</p>"
1647+
},
16381648
"billingMethod":{
16391649
"shape":"BillingMethod",
16401650
"documentation":"<p>The billing method for the remote access session.</p>"
@@ -1665,6 +1675,10 @@
16651675
"shape":"AmazonResourceName",
16661676
"documentation":"<p>The ARN of the device for which you want to create a remote access session.</p>"
16671677
},
1678+
"appArn":{
1679+
"shape":"AmazonResourceName",
1680+
"documentation":"<p>The Amazon Resource Name (ARN) of the app to create the remote access session.</p>"
1681+
},
16681682
"instanceArn":{
16691683
"shape":"AmazonResourceName",
16701684
"documentation":"<p>The Amazon Resource Name (ARN) of the device instance for which you want to create a remote access session.</p>"
@@ -4319,6 +4333,10 @@
43194333
"deviceProxy":{
43204334
"shape":"DeviceProxy",
43214335
"documentation":"<p>The device proxy configured for the remote access session.</p>"
4336+
},
4337+
"appUpload":{
4338+
"shape":"AmazonResourceName",
4339+
"documentation":"<p>The ARN for the app to be installed onto your device.</p>"
43224340
}
43234341
},
43244342
"documentation":"<p>Represents information about the remote access session.</p>"

0 commit comments

Comments
 (0)