vendor: update all dependencies to latest versions

This commit is contained in:
Nick Craig-Wood 2018-01-16 13:20:59 +00:00
parent 8e83fb6fb9
commit 7d3a17725d
4878 changed files with 1974229 additions and 201215 deletions

View file

@ -71,7 +71,7 @@ const (
// BLOCK, or COUNT.
//
// * You tried to update a ByteMatchSet with a FieldToMatchType other than
// HEADER, QUERY_STRING, or URI.
// HEADER, METHOD, QUERY_STRING, URI, or BODY.
//
// * You tried to update a ByteMatchSet with a Field of HEADER but no value
// for Data.
@ -80,6 +80,12 @@ const (
// a resource with which a web ACL cannot be associated.
ErrCodeInvalidParameterException = "InvalidParameterException"
// ErrCodeInvalidRegexPatternException for service response error code
// "InvalidRegexPatternException".
//
// The regular expression (regex) you specified in RegexPatternString is invalid.
ErrCodeInvalidRegexPatternException = "InvalidRegexPatternException"
// ErrCodeLimitsExceededException for service response error code
// "LimitsExceededException".
//
@ -148,4 +154,10 @@ const (
// The operation failed because you tried to create, update, or delete an object
// by using a change token that has already been used.
ErrCodeStaleDataException = "StaleDataException"
// ErrCodeSubscriptionNotFoundException for service response error code
// "SubscriptionNotFoundException".
//
// The specified subscription does not exist.
ErrCodeSubscriptionNotFoundException = "SubscriptionNotFoundException"
)