Skip to content

Commit

Permalink
Merge pull request #2325 from aws/release
Browse files Browse the repository at this point in the history
Release v1.15.89
  • Loading branch information
aws-sdk-go-automation authored Dec 3, 2018
2 parents 88388f1 + 6b08b08 commit 4ea06c7
Show file tree
Hide file tree
Showing 14 changed files with 820 additions and 111 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
Release v1.15.89 (2018-12-03)
===

### Service Client Updates
* `service/devicefarm`: Updates service API and documentation
* Customers can now schedule runs without a need to create a Device Pool. They also get realtime information on public device availability.
* `aws/endpoints`: Updated Regions and Endpoints metadata.
* `service/mediaconvert`: Updates service documentation
* Documentation updates for mediaconvert
* `service/servicecatalog`: Updates service documentation
* Documentation updates for servicecatalog
* `service/storagegateway`: Updates service API and documentation
* API list-local-disks returns a list of the gateway's local disks. This release adds a field DiskAttributeList to these disks.

Release v1.15.88 (2018-11-29)
===

Expand Down
32 changes: 32 additions & 0 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.15.88"
const SDKVersion = "1.15.89"
85 changes: 81 additions & 4 deletions models/apis/devicefarm/2015-06-23/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1392,7 +1392,8 @@
"remoteDebugEnabled":{"shape":"Boolean"},
"fleetType":{"shape":"String"},
"fleetName":{"shape":"String"},
"instances":{"shape":"DeviceInstances"}
"instances":{"shape":"DeviceInstances"},
"availability":{"shape":"DeviceAvailability"}
}
},
"DeviceAttribute":{
Expand All @@ -1410,6 +1411,61 @@
"FLEET_TYPE"
]
},
"DeviceAvailability":{
"type":"string",
"enum":[
"TEMPORARY_NOT_AVAILABLE",
"BUSY",
"AVAILABLE",
"HIGHLY_AVAILABLE"
]
},
"DeviceFilter":{
"type":"structure",
"members":{
"attribute":{"shape":"DeviceFilterAttribute"},
"operator":{"shape":"DeviceFilterOperator"},
"values":{"shape":"DeviceFilterValues"}
}
},
"DeviceFilterAttribute":{
"type":"string",
"enum":[
"ARN",
"PLATFORM",
"OS_VERSION",
"MODEL",
"AVAILABILITY",
"FORM_FACTOR",
"MANUFACTURER",
"REMOTE_ACCESS_ENABLED",
"REMOTE_DEBUG_ENABLED",
"INSTANCE_ARN",
"INSTANCE_LABELS",
"FLEET_TYPE"
]
},
"DeviceFilterOperator":{
"type":"string",
"enum":[
"EQUALS",
"LESS_THAN",
"LESS_THAN_OR_EQUALS",
"GREATER_THAN",
"GREATER_THAN_OR_EQUALS",
"IN",
"NOT_IN",
"CONTAINS"
]
},
"DeviceFilterValues":{
"type":"list",
"member":{"shape":"String"}
},
"DeviceFilters":{
"type":"list",
"member":{"shape":"DeviceFilter"}
},
"DeviceFormFactor":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -1484,6 +1540,25 @@
"type":"list",
"member":{"shape":"DevicePool"}
},
"DeviceSelectionConfiguration":{
"type":"structure",
"required":[
"filters",
"maxDevices"
],
"members":{
"filters":{"shape":"DeviceFilters"},
"maxDevices":{"shape":"Integer"}
}
},
"DeviceSelectionResult":{
"type":"structure",
"members":{
"filters":{"shape":"DeviceFilters"},
"matchedDevicesCount":{"shape":"Integer"},
"maxDevices":{"shape":"Integer"}
}
},
"Devices":{
"type":"list",
"member":{"shape":"Device"}
Expand Down Expand Up @@ -1923,7 +1998,8 @@
"type":"structure",
"members":{
"arn":{"shape":"AmazonResourceName"},
"nextToken":{"shape":"PaginationToken"}
"nextToken":{"shape":"PaginationToken"},
"filters":{"shape":"DeviceFilters"}
}
},
"ListDevicesResult":{
Expand Down Expand Up @@ -2503,7 +2579,8 @@
"customerArtifactPaths":{"shape":"CustomerArtifactPaths"},
"webUrl":{"shape":"String"},
"skipAppResign":{"shape":"SkipAppResign"},
"testSpecArn":{"shape":"AmazonResourceName"}
"testSpecArn":{"shape":"AmazonResourceName"},
"deviceSelectionResult":{"shape":"DeviceSelectionResult"}
}
},
"Runs":{
Expand Down Expand Up @@ -2562,13 +2639,13 @@
"type":"structure",
"required":[
"projectArn",
"devicePoolArn",
"test"
],
"members":{
"projectArn":{"shape":"AmazonResourceName"},
"appArn":{"shape":"AmazonResourceName"},
"devicePoolArn":{"shape":"AmazonResourceName"},
"deviceSelectionConfiguration":{"shape":"DeviceSelectionConfiguration"},
"name":{"shape":"Name"},
"test":{"shape":"ScheduleRunTest"},
"configuration":{"shape":"ScheduleRunConfiguration"},
Expand Down
Loading

0 comments on commit 4ea06c7

Please sign in to comment.