Skip to content

Commit

Permalink
Release v1.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed Jul 19, 2019
1 parent 16736b0 commit 8ae9ae0
Show file tree
Hide file tree
Showing 11 changed files with 546 additions and 330 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Release v1.21.1 (2019-07-19)
===

### Service Client Updates
* `aws/endpoints`: Updated Regions and Endpoints metadata.
* `service/iotevents`: Updates service API and documentation
* `service/sqs`: Updates service documentation
* This release updates the information about the availability of FIFO queues and includes miscellaneous fixes.

Release v1.21.0 (2019-07-18)
===

Expand Down
24 changes: 24 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.21.0"
const SDKVersion = "1.21.1"
45 changes: 43 additions & 2 deletions models/apis/iotevents/2018-07-27/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,11 @@
"iotTopicPublish":{"shape":"IotTopicPublishAction"},
"setTimer":{"shape":"SetTimerAction"},
"clearTimer":{"shape":"ClearTimerAction"},
"resetTimer":{"shape":"ResetTimerAction"}
"resetTimer":{"shape":"ResetTimerAction"},
"lambda":{"shape":"LambdaAction"},
"iotEvents":{"shape":"IotEventsAction"},
"sqs":{"shape":"SqsAction"},
"firehose":{"shape":"FirehoseAction"}
}
},
"Actions":{
Expand Down Expand Up @@ -400,6 +404,7 @@
"members":{
}
},
"DeliveryStreamName":{"type":"string"},
"DescribeDetectorModelRequest":{
"type":"structure",
"required":["detectorModelName"],
Expand Down Expand Up @@ -568,6 +573,18 @@
"type":"list",
"member":{"shape":"Event"}
},
"FirehoseAction":{
"type":"structure",
"required":["deliveryStreamName"],
"members":{
"deliveryStreamName":{"shape":"DeliveryStreamName"},
"separator":{"shape":"FirehoseSeparator"}
}
},
"FirehoseSeparator":{
"type":"string",
"pattern":"([\\n\\t])|(\\r\\n)|(,)"
},
"Input":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -652,6 +669,13 @@
"error":{"httpStatusCode":400},
"exception":true
},
"IotEventsAction":{
"type":"structure",
"required":["inputName"],
"members":{
"inputName":{"shape":"InputName"}
}
},
"IotTopicPublishAction":{
"type":"structure",
"required":["mqttTopic"],
Expand All @@ -663,7 +687,14 @@
"type":"string",
"max":128,
"min":1,
"pattern":"^[a-zA-Z0-9\\-_]+$"
"pattern":"^[a-zA-Z0-9\\-_:]+$"
},
"LambdaAction":{
"type":"structure",
"required":["functionArn"],
"members":{
"functionArn":{"shape":"AmazonResourceName"}
}
},
"LimitExceededException":{
"type":"structure",
Expand Down Expand Up @@ -822,6 +853,7 @@
"loggingOptions":{"shape":"LoggingOptions"}
}
},
"QueueUrl":{"type":"string"},
"ResetTimerAction":{
"type":"structure",
"required":["timerName"],
Expand Down Expand Up @@ -894,6 +926,14 @@
"value":{"shape":"VariableValue"}
}
},
"SqsAction":{
"type":"structure",
"required":["queueUrl"],
"members":{
"queueUrl":{"shape":"QueueUrl"},
"useBase64":{"shape":"UseBase64"}
}
},
"State":{
"type":"structure",
"required":["stateName"],
Expand Down Expand Up @@ -1074,6 +1114,7 @@
"inputConfiguration":{"shape":"InputConfiguration"}
}
},
"UseBase64":{"type":"boolean"},
"VariableName":{
"type":"string",
"max":128,
Expand Down
110 changes: 80 additions & 30 deletions models/apis/iotevents/2018-07-27/docs-2.json

Large diffs are not rendered by default.

64 changes: 32 additions & 32 deletions models/apis/sqs/2012-11-05/docs-2.json

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions models/endpoints/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -1650,6 +1650,28 @@
"us-west-2" : { }
}
},
"iotevents" : {
"endpoints" : {
"ap-northeast-1" : { },
"ap-southeast-2" : { },
"eu-central-1" : { },
"eu-west-1" : { },
"us-east-1" : { },
"us-east-2" : { },
"us-west-2" : { }
}
},
"ioteventsdata" : {
"endpoints" : {
"ap-northeast-1" : { },
"ap-southeast-2" : { },
"eu-central-1" : { },
"eu-west-1" : { },
"us-east-1" : { },
"us-east-2" : { },
"us-west-2" : { }
}
},
"iotthingsgraph" : {
"defaults" : {
"credentialScope" : {
Expand Down
Loading

0 comments on commit 8ae9ae0

Please sign in to comment.