Skip to content

Commit

Permalink
Release v1.30.22 (2020-05-06) (#3306)
Browse files Browse the repository at this point in the history
Release v1.30.22 (2020-05-06)
===

### Service Client Updates
* `service/codestar-connections`: Updates service API and documentation
* `service/comprehendmedical`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation committed May 6, 2020
1 parent 2bd8cb4 commit d807086
Show file tree
Hide file tree
Showing 12 changed files with 4,205 additions and 1,509 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,10 @@
Release v1.30.22 (2020-05-06)
===

### Service Client Updates
* `service/codestar-connections`: Updates service API and documentation
* `service/comprehendmedical`: Updates service API and documentation

Release v1.30.21 (2020-05-05)
===

Expand Down
38 changes: 26 additions & 12 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.21"
const SDKVersion = "1.30.22"
133 changes: 127 additions & 6 deletions models/apis/codestar-connections/2019-12-01/api-2.json
Expand Up @@ -57,6 +57,43 @@
},
"input":{"shape":"ListConnectionsInput"},
"output":{"shape":"ListConnectionsOutput"}
},
"ListTagsForResource":{
"name":"ListTagsForResource",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListTagsForResourceInput"},
"output":{"shape":"ListTagsForResourceOutput"},
"errors":[
{"shape":"ResourceNotFoundException"}
]
},
"TagResource":{
"name":"TagResource",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"TagResourceInput"},
"output":{"shape":"TagResourceOutput"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"LimitExceededException"}
]
},
"UntagResource":{
"name":"UntagResource",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"UntagResourceInput"},
"output":{"shape":"UntagResourceOutput"},
"errors":[
{"shape":"ResourceNotFoundException"}
]
}
},
"shapes":{
Expand All @@ -66,6 +103,11 @@
"min":12,
"pattern":"[0-9]{12}"
},
"AmazonResourceName":{
"type":"string",
"max":1011,
"min":1
},
"Connection":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -107,14 +149,16 @@
],
"members":{
"ProviderType":{"shape":"ProviderType"},
"ConnectionName":{"shape":"ConnectionName"}
"ConnectionName":{"shape":"ConnectionName"},
"Tags":{"shape":"TagList"}
}
},
"CreateConnectionOutput":{
"type":"structure",
"required":["ConnectionArn"],
"members":{
"ConnectionArn":{"shape":"ConnectionArn"}
"ConnectionArn":{"shape":"ConnectionArn"},
"Tags":{"shape":"TagList"}
}
},
"DeleteConnectionInput":{
Expand Down Expand Up @@ -168,16 +212,28 @@
"NextToken":{"shape":"NextToken"}
}
},
"ListTagsForResourceInput":{
"type":"structure",
"required":["ResourceArn"],
"members":{
"ResourceArn":{"shape":"AmazonResourceName"}
}
},
"ListTagsForResourceOutput":{
"type":"structure",
"members":{
"Tags":{"shape":"TagList"}
}
},
"MaxResults":{
"type":"integer",
"max":50,
"min":1
"max":5000,
"min":0
},
"NextToken":{
"type":"string",
"max":1024,
"min":1,
"pattern":"[a-zA-Z0-9=\\-\\\\/]+"
"min":1
},
"ProviderType":{
"type":"string",
Expand All @@ -189,6 +245,71 @@
"Message":{"shape":"ErrorMessage"}
},
"exception":true
},
"Tag":{
"type":"structure",
"required":[
"Key",
"Value"
],
"members":{
"Key":{"shape":"TagKey"},
"Value":{"shape":"TagValue"}
}
},
"TagKey":{
"type":"string",
"max":128,
"min":1
},
"TagKeyList":{
"type":"list",
"member":{"shape":"TagKey"},
"max":200,
"min":0
},
"TagList":{
"type":"list",
"member":{"shape":"Tag"},
"max":200,
"min":0
},
"TagResourceInput":{
"type":"structure",
"required":[
"ResourceArn",
"Tags"
],
"members":{
"ResourceArn":{"shape":"AmazonResourceName"},
"Tags":{"shape":"TagList"}
}
},
"TagResourceOutput":{
"type":"structure",
"members":{
}
},
"TagValue":{
"type":"string",
"max":256,
"min":0
},
"UntagResourceInput":{
"type":"structure",
"required":[
"ResourceArn",
"TagKeys"
],
"members":{
"ResourceArn":{"shape":"AmazonResourceName"},
"TagKeys":{"shape":"TagKeyList"}
}
},
"UntagResourceOutput":{
"type":"structure",
"members":{
}
}
}
}

0 comments on commit d807086

Please sign in to comment.