Skip to content

Commit

Permalink
Release v1.30.9 (2020-04-17) (#3273)
Browse files Browse the repository at this point in the history
Release v1.30.9 (2020-04-17)
===

### Service Client Updates
* `service/frauddetector`: Updates service API and documentation
* `service/opsworkscm`: Updates service documentation and paginators
  * Documentation updates for opsworkscm
  • Loading branch information
aws-sdk-go-automation committed Apr 17, 2020
1 parent e2a8df0 commit a5cc7b5
Show file tree
Hide file tree
Showing 13 changed files with 1,020 additions and 27 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,11 @@
Release v1.30.9 (2020-04-17)
===

### Service Client Updates
* `service/frauddetector`: Updates service API and documentation
* `service/opsworkscm`: Updates service documentation and paginators
* Documentation updates for opsworkscm

Release v1.30.8 (2020-04-16)
===

Expand Down
8 changes: 6 additions & 2 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
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.30.8"
const SDKVersion = "1.30.9"
104 changes: 98 additions & 6 deletions models/apis/frauddetector/2019-11-15/api-2.json
Expand Up @@ -65,6 +65,7 @@
"output":{"shape":"CreateModelVersionResult"},
"errors":[
{"shape":"ValidationException"},
{"shape":"ResourceNotFoundException"},
{"shape":"InternalServerException"},
{"shape":"ThrottlingException"}
]
Expand Down Expand Up @@ -97,6 +98,21 @@
{"shape":"ThrottlingException"}
]
},
"DeleteDetector":{
"name":"DeleteDetector",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteDetectorRequest"},
"output":{"shape":"DeleteDetectorResult"},
"errors":[
{"shape":"ConflictException"},
{"shape":"ValidationException"},
{"shape":"InternalServerException"},
{"shape":"ThrottlingException"}
]
},
"DeleteDetectorVersion":{
"name":"DeleteDetectorVersion",
"http":{
Expand All @@ -109,7 +125,8 @@
{"shape":"ValidationException"},
{"shape":"ResourceNotFoundException"},
{"shape":"InternalServerException"},
{"shape":"ThrottlingException"}
{"shape":"ThrottlingException"},
{"shape":"ConflictException"}
]
},
"DeleteEvent":{
Expand All @@ -125,6 +142,21 @@
{"shape":"ThrottlingException"}
]
},
"DeleteRuleVersion":{
"name":"DeleteRuleVersion",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DeleteRuleVersionRequest"},
"output":{"shape":"DeleteRuleVersionResult"},
"errors":[
{"shape":"ConflictException"},
{"shape":"ValidationException"},
{"shape":"InternalServerException"},
{"shape":"ThrottlingException"}
]
},
"DescribeDetector":{
"name":"DescribeDetector",
"http":{
Expand Down Expand Up @@ -503,6 +535,14 @@
"errors":{"shape":"BatchGetVariableErrorList"}
}
},
"ConflictException":{
"type":"structure",
"required":["message"],
"members":{
"message":{"shape":"string"}
},
"exception":true
},
"CreateDetectorVersionRequest":{
"type":"structure",
"required":[
Expand All @@ -514,7 +554,8 @@
"description":{"shape":"description"},
"externalModelEndpoints":{"shape":"ListOfStrings"},
"rules":{"shape":"RuleList"},
"modelVersions":{"shape":"ListOfModelVersions"}
"modelVersions":{"shape":"ListOfModelVersions"},
"ruleExecutionMode":{"shape":"RuleExecutionMode"}
}
},
"CreateDetectorVersionResult":{
Expand Down Expand Up @@ -614,6 +655,18 @@
"BOOLEAN"
]
},
"DeleteDetectorRequest":{
"type":"structure",
"required":["detectorId"],
"members":{
"detectorId":{"shape":"identifier"}
}
},
"DeleteDetectorResult":{
"type":"structure",
"members":{
}
},
"DeleteDetectorVersionRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -642,6 +695,24 @@
"members":{
}
},
"DeleteRuleVersionRequest":{
"type":"structure",
"required":[
"detectorId",
"ruleId",
"ruleVersion"
],
"members":{
"detectorId":{"shape":"identifier"},
"ruleId":{"shape":"identifier"},
"ruleVersion":{"shape":"nonEmptyString"}
}
},
"DeleteRuleVersionResult":{
"type":"structure",
"members":{
}
},
"DescribeDetectorRequest":{
"type":"structure",
"required":["detectorId"],
Expand Down Expand Up @@ -778,7 +849,8 @@
"rules":{"shape":"RuleList"},
"status":{"shape":"DetectorVersionStatus"},
"lastUpdatedTime":{"shape":"time"},
"createdTime":{"shape":"time"}
"createdTime":{"shape":"time"},
"ruleExecutionMode":{"shape":"RuleExecutionMode"}
}
},
"GetDetectorsRequest":{
Expand Down Expand Up @@ -883,7 +955,8 @@
"type":"structure",
"members":{
"outcomes":{"shape":"ListOfStrings"},
"modelScores":{"shape":"ListOfModelScores"}
"modelScores":{"shape":"ListOfModelScores"},
"ruleResults":{"shape":"ListOfRuleResults"}
}
},
"GetRulesRequest":{
Expand Down Expand Up @@ -962,6 +1035,10 @@
"type":"list",
"member":{"shape":"ModelVersion"}
},
"ListOfRuleResults":{
"type":"list",
"member":{"shape":"RuleResult"}
},
"ListOfStrings":{
"type":"list",
"member":{"shape":"string"}
Expand Down Expand Up @@ -1274,10 +1351,24 @@
"type":"list",
"member":{"shape":"RuleDetail"}
},
"RuleExecutionMode":{
"type":"string",
"enum":[
"ALL_MATCHED",
"FIRST_MATCHED"
]
},
"RuleList":{
"type":"list",
"member":{"shape":"Rule"}
},
"RuleResult":{
"type":"structure",
"members":{
"ruleId":{"shape":"string"},
"outcomes":{"shape":"ListOfStrings"}
}
},
"RulesMaxResults":{
"type":"integer",
"box":true,
Expand Down Expand Up @@ -1335,7 +1426,8 @@
"externalModelEndpoints":{"shape":"ListOfStrings"},
"rules":{"shape":"RuleList"},
"description":{"shape":"description"},
"modelVersions":{"shape":"ListOfModelVersions"}
"modelVersions":{"shape":"ListOfModelVersions"},
"ruleExecutionMode":{"shape":"RuleExecutionMode"}
}
},
"UpdateDetectorVersionResult":{
Expand Down Expand Up @@ -1533,7 +1625,7 @@
"type":"string",
"max":512,
"min":1,
"pattern":"^s3:\\/\\/[^\\s]+$"
"pattern":"^s3:\\/\\/(.+)$"
},
"string":{"type":"string"},
"time":{"type":"string"}
Expand Down

0 comments on commit a5cc7b5

Please sign in to comment.