Skip to content

Commit

Permalink
Update models for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
jeskew committed Aug 4, 2015
1 parent b34b8a5 commit e896109
Show file tree
Hide file tree
Showing 3 changed files with 139 additions and 22 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,12 @@
# CHANGELOG

## next release

* `Aws\DeviceFarm` - Added support for the `GetAccountSettings` operation and
update documentation to reflect new iOS support.
* Made PHP7 test failures fail the build.
* Added support for custom user-agent additions.

## 3.2.3 - 2015-07-30

* `Aws\OpsWorks` - Added support for operations on ECS clusters.
Expand Down
82 changes: 77 additions & 5 deletions src/data/devicefarm/2015-06-23/api-2.json
Expand Up @@ -91,6 +91,33 @@
}
]
},
"GetAccountSettings":{
"name":"GetAccountSettings",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetAccountSettingsRequest"},
"output":{"shape":"GetAccountSettingsResult"},
"errors":[
{
"shape":"ArgumentException",
"exception":true
},
{
"shape":"NotFoundException",
"exception":true
},
{
"shape":"LimitExceededException",
"exception":true
},
{
"shape":"ServiceAccountException",
"exception":true
}
]
},
"GetDevice":{
"name":"GetDevice",
"http":{
Expand Down Expand Up @@ -664,6 +691,18 @@
}
},
"shapes":{
"AWSAccountNumber":{
"type":"string",
"min":2,
"max":16
},
"AccountSettings":{
"type":"structure",
"members":{
"awsAccountNumber":{"shape":"AWSAccountNumber"},
"unmeteredDevices":{"shape":"PurchasedDevicesMap"}
}
},
"AmazonResourceName":{
"type":"string",
"min":32
Expand Down Expand Up @@ -722,6 +761,13 @@
"type":"list",
"member":{"shape":"Artifact"}
},
"BillingMethod":{
"type":"string",
"enum":[
"METERED",
"UNMETERED"
]
},
"Boolean":{"type":"boolean"},
"CPU":{
"type":"structure",
Expand Down Expand Up @@ -839,7 +885,10 @@
},
"DevicePlatform":{
"type":"string",
"enum":["ANDROID"]
"enum":[
"ANDROID",
"IOS"
]
},
"DevicePool":{
"type":"structure",
Expand Down Expand Up @@ -906,6 +955,17 @@
"min":0,
"max":1024
},
"GetAccountSettingsRequest":{
"type":"structure",
"members":{
}
},
"GetAccountSettingsResult":{
"type":"structure",
"members":{
"accountSettings":{"shape":"AccountSettings"}
}
},
"GetDevicePoolCompatibilityRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -1317,6 +1377,11 @@
"type":"list",
"member":{"shape":"Project"}
},
"PurchasedDevicesMap":{
"type":"map",
"key":{"shape":"DevicePlatform"},
"value":{"shape":"Integer"}
},
"Radios":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -1370,7 +1435,8 @@
"counters":{"shape":"Counters"},
"message":{"shape":"Message"},
"totalJobs":{"shape":"Integer"},
"completedJobs":{"shape":"Integer"}
"completedJobs":{"shape":"Integer"},
"billingMethod":{"shape":"BillingMethod"}
}
},
"Runs":{
Expand Down Expand Up @@ -1419,7 +1485,8 @@
"locale":{"shape":"String"},
"location":{"shape":"Location"},
"radios":{"shape":"Radios"},
"auxiliaryApps":{"shape":"AmazonResourceNames"}
"auxiliaryApps":{"shape":"AmazonResourceNames"},
"billingMethod":{"shape":"BillingMethod"}
}
},
"ScheduleRunRequest":{
Expand Down Expand Up @@ -1511,7 +1578,9 @@
"APPIUM_JAVA_TESTNG",
"CALABASH",
"INSTRUMENTATION",
"UIAUTOMATOR"
"UIAUTOMATION",
"UIAUTOMATOR",
"XCTEST"
]
},
"Tests":{
Expand Down Expand Up @@ -1566,12 +1635,15 @@
"type":"string",
"enum":[
"ANDROID_APP",
"IOS_APP",
"EXTERNAL_DATA",
"APPIUM_JAVA_JUNIT_TEST_PACKAGE",
"APPIUM_JAVA_TESTNG_TEST_PACKAGE",
"CALABASH_TEST_PACKAGE",
"INSTRUMENTATION_TEST_PACKAGE",
"UIAUTOMATOR_TEST_PACKAGE"
"UIAUTOMATION_TEST_PACKAGE",
"UIAUTOMATOR_TEST_PACKAGE",
"XCTEST_TEST_PACKAGE"
]
},
"Uploads":{
Expand Down

0 comments on commit e896109

Please sign in to comment.