Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.4.15 #877

Merged
merged 1 commit into from
Oct 6, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 22 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,30 @@
Release v1.4.14 (2016-09-29)
Release v1.4.15
===

Service Model Updates
---
`service/cognitoidentityprovider`: Update Amazon Cognito Identity Provider service model
`service/devicefarm`: Update AWS Device Farm documentation
`service/opsworks`: Update AWS OpsWorks service model
`service/s3`: Update Amazon Simple Storage Service model
`service/waf`: Update AWS WAF service model

SDK Bug Fixes
---
`aws/request`: Fix HTTP Request Body race condition #874

SDK Feature Updates
---
`aws/ec2metadata`: Add support for EC2 User Data #872
`aws/signer/v4`: Remove logic determining if request needs to be resigned #876

Release v1.4.14 (2016-09-29)
===
* `service/ec2`: api, documentation, and paginators updates.
* `service/s3`: api and documentation updates.

Release v1.4.13 (2016-09-27)
---
===
* `service/codepipeline`: documentation updates.
* `service/cloudformation`: api and documentation updates.
* `service/kms`: documentation updates.
Expand Down
111 changes: 105 additions & 6 deletions models/apis/cognito-idp/2016-04-18/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,33 @@
{"shape":"InternalErrorException"}
]
},
"AdminCreateUser":{
"name":"AdminCreateUser",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"AdminCreateUserRequest"},
"output":{"shape":"AdminCreateUserResponse"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"InvalidParameterException"},
{"shape":"UserNotFoundException"},
{"shape":"UsernameExistsException"},
{"shape":"InvalidPasswordException"},
{"shape":"CodeDeliveryFailureException"},
{"shape":"UnexpectedLambdaException"},
{"shape":"UserLambdaValidationException"},
{"shape":"InvalidLambdaResponseException"},
{"shape":"PreconditionNotMetException"},
{"shape":"InvalidSmsRoleAccessPolicyException"},
{"shape":"InvalidSmsRoleTrustRelationshipException"},
{"shape":"TooManyRequestsException"},
{"shape":"NotAuthorizedException"},
{"shape":"UnsupportedUserStateException"},
{"shape":"InternalErrorException"}
]
},
"AdminDeleteUser":{
"name":"AdminDeleteUser",
"http":{
Expand Down Expand Up @@ -246,6 +273,7 @@
{"shape":"CodeMismatchException"},
{"shape":"ExpiredCodeException"},
{"shape":"UnexpectedLambdaException"},
{"shape":"InvalidPasswordException"},
{"shape":"UserLambdaValidationException"},
{"shape":"InvalidLambdaResponseException"},
{"shape":"TooManyRequestsException"},
Expand Down Expand Up @@ -745,6 +773,8 @@
{"shape":"InvalidParameterException"},
{"shape":"NotAuthorizedException"},
{"shape":"TooManyRequestsException"},
{"shape":"PasswordResetRequiredException"},
{"shape":"UserNotConfirmedException"},
{"shape":"InternalErrorException"}
]
},
Expand Down Expand Up @@ -896,6 +926,7 @@
{"shape":"ExpiredCodeException"},
{"shape":"UnexpectedLambdaException"},
{"shape":"UserLambdaValidationException"},
{"shape":"InvalidPasswordException"},
{"shape":"InvalidLambdaResponseException"},
{"shape":"TooManyRequestsException"},
{"shape":"InvalidUserPoolConfigurationException"},
Expand Down Expand Up @@ -1132,6 +1163,42 @@
"members":{
}
},
"AdminCreateUserConfigType":{
"type":"structure",
"members":{
"AllowAdminCreateUserOnly":{"shape":"BooleanType"},
"UnusedAccountValidityDays":{"shape":"AdminCreateUserUnusedAccountValidityDaysType"},
"InviteMessageTemplate":{"shape":"MessageTemplateType"}
}
},
"AdminCreateUserRequest":{
"type":"structure",
"required":[
"UserPoolId",
"Username"
],
"members":{
"UserPoolId":{"shape":"UserPoolIdType"},
"Username":{"shape":"UsernameType"},
"UserAttributes":{"shape":"AttributeListType"},
"ValidationData":{"shape":"AttributeListType"},
"TemporaryPassword":{"shape":"PasswordType"},
"ForceAliasCreation":{"shape":"ForceAliasCreation"},
"MessageAction":{"shape":"MessageActionType"},
"DesiredDeliveryMediums":{"shape":"DeliveryMediumListType"}
}
},
"AdminCreateUserResponse":{
"type":"structure",
"members":{
"User":{"shape":"UserType"}
}
},
"AdminCreateUserUnusedAccountValidityDaysType":{
"type":"integer",
"max":90,
"min":0
},
"AdminDeleteUserAttributesRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -1501,7 +1568,8 @@
"CUSTOM_CHALLENGE",
"DEVICE_SRP_AUTH",
"DEVICE_PASSWORD_VERIFIER",
"ADMIN_NO_SRP_AUTH"
"ADMIN_NO_SRP_AUTH",
"NEW_PASSWORD_REQUIRED"
]
},
"ChallengeParametersType":{
Expand Down Expand Up @@ -1727,7 +1795,8 @@
"MfaConfiguration":{"shape":"UserPoolMfaType"},
"DeviceConfiguration":{"shape":"DeviceConfigurationType"},
"EmailConfiguration":{"shape":"EmailConfigurationType"},
"SmsConfiguration":{"shape":"SmsConfigurationType"}
"SmsConfiguration":{"shape":"SmsConfigurationType"},
"AdminCreateUserConfig":{"shape":"AdminCreateUserConfigType"}
}
},
"CreateUserPoolResponse":{
Expand Down Expand Up @@ -1786,6 +1855,10 @@
"AccessToken":{"shape":"TokenModelType"}
}
},
"DeliveryMediumListType":{
"type":"list",
"member":{"shape":"DeliveryMediumType"}
},
"DeliveryMediumType":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -2234,6 +2307,21 @@
"AttributeName":{"shape":"AttributeNameType"}
}
},
"MessageActionType":{
"type":"string",
"enum":[
"RESEND",
"SUPPRESS"
]
},
"MessageTemplateType":{
"type":"structure",
"members":{
"SMSMessage":{"shape":"SmsVerificationMessageType"},
"EmailMessage":{"shape":"EmailVerificationMessageType"},
"EmailSubject":{"shape":"EmailVerificationSubjectType"}
}
},
"MessageType":{"type":"string"},
"NewDeviceMetadataType":{
"type":"structure",
Expand Down Expand Up @@ -2540,6 +2628,13 @@
},
"exception":true
},
"UnsupportedUserStateException":{
"type":"structure",
"members":{
"message":{"shape":"MessageType"}
},
"exception":true
},
"UpdateDeviceStatusRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -2608,7 +2703,8 @@
"MfaConfiguration":{"shape":"UserPoolMfaType"},
"DeviceConfiguration":{"shape":"DeviceConfigurationType"},
"EmailConfiguration":{"shape":"EmailConfigurationType"},
"SmsConfiguration":{"shape":"SmsConfigurationType"}
"SmsConfiguration":{"shape":"SmsConfigurationType"},
"AdminCreateUserConfig":{"shape":"AdminCreateUserConfigType"}
}
},
"UpdateUserPoolResponse":{
Expand Down Expand Up @@ -2788,7 +2884,8 @@
"EmailConfiguration":{"shape":"EmailConfigurationType"},
"SmsConfiguration":{"shape":"SmsConfigurationType"},
"SmsConfigurationFailure":{"shape":"StringType"},
"EmailConfigurationFailure":{"shape":"StringType"}
"EmailConfigurationFailure":{"shape":"StringType"},
"AdminCreateUserConfig":{"shape":"AdminCreateUserConfigType"}
}
},
"UserStatusType":{
Expand All @@ -2799,7 +2896,8 @@
"ARCHIVED",
"COMPROMISED",
"UNKNOWN",
"RESET_REQUIRED"
"RESET_REQUIRED",
"FORCE_CHANGE_PASSWORD"
]
},
"UserType":{
Expand All @@ -2810,7 +2908,8 @@
"UserCreateDate":{"shape":"DateType"},
"UserLastModifiedDate":{"shape":"DateType"},
"Enabled":{"shape":"BooleanType"},
"UserStatus":{"shape":"UserStatusType"}
"UserStatus":{"shape":"UserStatusType"},
"MFAOptions":{"shape":"MFAOptionListType"}
}
},
"UsernameExistsException":{
Expand Down
Loading