vendor: update all dependencies to latest versions
This commit is contained in:
parent
8e83fb6fb9
commit
7d3a17725d
4878 changed files with 1974229 additions and 201215 deletions
129
vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/ec2.json
generated
vendored
129
vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/ec2.json
generated
vendored
|
@ -147,19 +147,55 @@
|
|||
"InputShape": {
|
||||
"type": "structure",
|
||||
"members": {
|
||||
"ListArg": {
|
||||
"shape": "ListType"
|
||||
"ListStrings": {
|
||||
"shape": "ListStringType"
|
||||
},
|
||||
"ListBools": {
|
||||
"shape": "ListBoolType"
|
||||
},
|
||||
"ListFloats": {
|
||||
"shape": "ListFloatType"
|
||||
},
|
||||
"ListIntegers": {
|
||||
"shape": "ListIntegerType"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ListType": {
|
||||
"ListStringType": {
|
||||
"type": "list",
|
||||
"member": {
|
||||
"shape": "Strings"
|
||||
"shape": "StringType"
|
||||
}
|
||||
},
|
||||
"Strings": {
|
||||
"ListBoolType": {
|
||||
"type": "list",
|
||||
"member": {
|
||||
"shape": "BoolType"
|
||||
}
|
||||
},
|
||||
"ListFloatType": {
|
||||
"type": "list",
|
||||
"member": {
|
||||
"shape": "FloatType"
|
||||
}
|
||||
},
|
||||
"ListIntegerType": {
|
||||
"type": "list",
|
||||
"member": {
|
||||
"shape": "IntegerType"
|
||||
}
|
||||
},
|
||||
"StringType": {
|
||||
"type": "string"
|
||||
},
|
||||
"BoolType": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"FloatType": {
|
||||
"type": "float"
|
||||
},
|
||||
"IntegerType": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"cases": [
|
||||
|
@ -171,15 +207,30 @@
|
|||
"name": "OperationName"
|
||||
},
|
||||
"params": {
|
||||
"ListArg": [
|
||||
"ListStrings": [
|
||||
"foo",
|
||||
"bar",
|
||||
"baz"
|
||||
],
|
||||
"ListBools": [
|
||||
true,
|
||||
false,
|
||||
false
|
||||
],
|
||||
"ListFloats": [
|
||||
1.1,
|
||||
2.718,
|
||||
3.14
|
||||
],
|
||||
"ListIntegers": [
|
||||
0,
|
||||
1,
|
||||
2
|
||||
]
|
||||
},
|
||||
"serialized": {
|
||||
"uri": "/",
|
||||
"body": "Action=OperationName&Version=2014-01-01&ListArg.1=foo&ListArg.2=bar&ListArg.3=baz"
|
||||
"body": "Action=OperationName&Version=2014-01-01&ListStrings.1=foo&ListStrings.2=bar&ListStrings.3=baz&ListBools.1=true&ListBools.2=false&ListBools.3=false&ListFloats.1=1.1&ListFloats.2=2.718&ListFloats.3=3.14&ListIntegers.1=0&ListIntegers.2=1&ListIntegers.3=2"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
@ -410,5 +461,69 @@
|
|||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"description": "Enum",
|
||||
"metadata": {
|
||||
"protocol": "ec2",
|
||||
"apiVersion": "2014-01-01"
|
||||
},
|
||||
"shapes": {
|
||||
"InputShape": {
|
||||
"type": "structure",
|
||||
"members": {
|
||||
"FooEnum": {
|
||||
"shape": "EnumType"
|
||||
},
|
||||
"ListEnums": {
|
||||
"shape": "EnumList"
|
||||
}
|
||||
}
|
||||
},
|
||||
"EnumType":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"foo",
|
||||
"bar"
|
||||
]
|
||||
},
|
||||
"EnumList":{
|
||||
"type":"list",
|
||||
"member": {"shape": "EnumType"}
|
||||
}
|
||||
},
|
||||
"cases": [
|
||||
{
|
||||
"given": {
|
||||
"input": {
|
||||
"shape": "InputShape"
|
||||
},
|
||||
"name": "OperationName"
|
||||
},
|
||||
"params": {
|
||||
"ListEnums": ["foo", "", "bar"]
|
||||
},
|
||||
"serialized": {
|
||||
"uri": "/",
|
||||
"headers": {},
|
||||
"body": "Action=OperationName&Version=2014-01-01&ListEnums.1=foo&ListEnums.2=&ListEnums.3=bar"
|
||||
}
|
||||
},
|
||||
{
|
||||
"given": {
|
||||
"input": {
|
||||
"shape": "InputShape"
|
||||
},
|
||||
"name": "OperationName"
|
||||
},
|
||||
"params": {
|
||||
},
|
||||
"serialized": {
|
||||
"uri": "/",
|
||||
"headers": {},
|
||||
"body": "Action=OperationName&Version=2014-01-01"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
70
vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/json.json
generated
vendored
70
vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/json.json
generated
vendored
|
@ -535,5 +535,75 @@
|
|||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"description": "Enum",
|
||||
"metadata": {
|
||||
"protocol": "json",
|
||||
"apiVersion": "2014-01-01"
|
||||
},
|
||||
"shapes": {
|
||||
"InputShape": {
|
||||
"type": "structure",
|
||||
"members": {
|
||||
"FooEnum": {
|
||||
"shape": "EnumType"
|
||||
},
|
||||
"ListEnums": {
|
||||
"shape": "EnumList"
|
||||
}
|
||||
}
|
||||
},
|
||||
"EnumType":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"foo",
|
||||
"bar"
|
||||
]
|
||||
},
|
||||
"EnumList":{
|
||||
"type":"list",
|
||||
"member": {"shape": "EnumType"}
|
||||
}
|
||||
},
|
||||
"cases": [
|
||||
{
|
||||
"given": {
|
||||
"input": {
|
||||
"shape": "InputShape"
|
||||
},
|
||||
"http": {
|
||||
"method": "POST"
|
||||
},
|
||||
"name": "OperationName"
|
||||
},
|
||||
"params": {
|
||||
"FooEnum": "foo",
|
||||
"ListEnums": ["foo", "", "bar"]
|
||||
},
|
||||
"serialized": {
|
||||
"uri": "/",
|
||||
"headers": {},
|
||||
"body": "{\"FooEnum\": \"foo\", \"ListEnums\": [\"foo\", \"\", \"bar\"]}"
|
||||
}
|
||||
},
|
||||
{
|
||||
"given": {
|
||||
"input": {
|
||||
"shape": "InputShape"
|
||||
},
|
||||
"http": {
|
||||
"method": "POST"
|
||||
},
|
||||
"name": "OperationName"
|
||||
},
|
||||
"params": {
|
||||
},
|
||||
"serialized": {
|
||||
"uri": "/",
|
||||
"headers": {}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
89
vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/query.json
generated
vendored
89
vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/query.json
generated
vendored
|
@ -880,5 +880,94 @@
|
|||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"description": "Enum",
|
||||
"metadata": {
|
||||
"protocol": "query",
|
||||
"apiVersion": "2014-01-01"
|
||||
},
|
||||
"shapes": {
|
||||
"InputShape": {
|
||||
"type": "structure",
|
||||
"members": {
|
||||
"FooEnum": {
|
||||
"shape": "EnumType"
|
||||
},
|
||||
"ListEnums": {
|
||||
"shape": "EnumList"
|
||||
}
|
||||
}
|
||||
},
|
||||
"EnumType":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"foo",
|
||||
"bar"
|
||||
]
|
||||
},
|
||||
"EnumList":{
|
||||
"type":"list",
|
||||
"member": {"shape": "EnumType"}
|
||||
}
|
||||
},
|
||||
"cases": [
|
||||
{
|
||||
"given": {
|
||||
"input": {
|
||||
"shape": "InputShape"
|
||||
},
|
||||
"http": {
|
||||
"method": "POST"
|
||||
},
|
||||
"name": "OperationName"
|
||||
},
|
||||
"params": {
|
||||
"FooEnum": "foo",
|
||||
"ListEnums": ["foo", "", "bar"]
|
||||
},
|
||||
"serialized": {
|
||||
"uri": "/",
|
||||
"headers": {},
|
||||
"body": "Action=OperationName&Version=2014-01-01&FooEnum=foo&ListEnums.member.1=foo&ListEnums.member.2=&ListEnums.member.3=bar"
|
||||
}
|
||||
},
|
||||
{
|
||||
"given": {
|
||||
"input": {
|
||||
"shape": "InputShape"
|
||||
},
|
||||
"http": {
|
||||
"method": "POST"
|
||||
},
|
||||
"name": "OperationName"
|
||||
},
|
||||
"params": {
|
||||
"FooEnum": "foo"
|
||||
},
|
||||
"serialized": {
|
||||
"uri": "/",
|
||||
"headers": {},
|
||||
"body": "Action=OperationName&Version=2014-01-01&FooEnum=foo"
|
||||
}
|
||||
},
|
||||
{
|
||||
"given": {
|
||||
"input": {
|
||||
"shape": "InputShape"
|
||||
},
|
||||
"http": {
|
||||
"method": "POST"
|
||||
}, "name": "OperationName"
|
||||
},
|
||||
"params": {
|
||||
},
|
||||
"serialized": {
|
||||
"uri": "/",
|
||||
"headers": {},
|
||||
"body": "Action=OperationName&Version=2014-01-01"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
160
vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/rest-json.json
generated
vendored
160
vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/rest-json.json
generated
vendored
|
@ -1310,17 +1310,46 @@
|
|||
"shapes": {
|
||||
"InputShape": {
|
||||
"type": "structure",
|
||||
"payload": "Body",
|
||||
"members": {
|
||||
"Attr": {
|
||||
"HeaderField": {
|
||||
"shape": "StringType",
|
||||
"jsonvalue": true,
|
||||
"location": "header",
|
||||
"locationName": "X-Amz-Foo"
|
||||
"jsonvalue": true,
|
||||
"location": "header",
|
||||
"locationName": "X-Amz-Foo"
|
||||
},
|
||||
"QueryField": {
|
||||
"shape": "StringType",
|
||||
"jsonvalue": true,
|
||||
"location": "querystring",
|
||||
"locationName": "Bar"
|
||||
},
|
||||
"Body": {
|
||||
"shape": "BodyStructure"
|
||||
}
|
||||
}
|
||||
},
|
||||
"StringType": {
|
||||
"type": "string"
|
||||
},
|
||||
"ListType": {
|
||||
"type": "list",
|
||||
"member": {
|
||||
"shape": "StringType",
|
||||
"jsonvalue": true
|
||||
}
|
||||
},
|
||||
"BodyStructure": {
|
||||
"type": "structure",
|
||||
"members": {
|
||||
"BodyField": {
|
||||
"shape": "StringType",
|
||||
"jsonvalue": true
|
||||
},
|
||||
"BodyListField": {
|
||||
"shape": "ListType"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"cases": [
|
||||
|
@ -1335,12 +1364,16 @@
|
|||
"name": "OperationName"
|
||||
},
|
||||
"params": {
|
||||
"Attr": {"Foo":"Bar"}
|
||||
"HeaderField": {"Foo":"Bar"},
|
||||
"QueryField": {"Foo":"Bar"},
|
||||
"Body": {
|
||||
"BodyField": {"Foo":"Bar"}
|
||||
}
|
||||
},
|
||||
"serialized": {
|
||||
"uri": "/",
|
||||
"uri": "/?Bar=%7B%22Foo%22%3A%22Bar%22%7D",
|
||||
"headers": {"X-Amz-Foo": "eyJGb28iOiJCYXIifQ=="},
|
||||
"body": ""
|
||||
"body": "{\"BodyField\":\"{\\\"Foo\\\":\\\"Bar\\\"}\"}"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
@ -1353,6 +1386,27 @@
|
|||
},
|
||||
"name": "OperationName"
|
||||
},
|
||||
"params": {
|
||||
"Body": {
|
||||
"BodyListField": [{"Foo":"Bar"}]
|
||||
}
|
||||
},
|
||||
"serialized": {
|
||||
"uri": "/",
|
||||
"headers": {},
|
||||
"body": "{\"BodyListField\":[\"{\\\"Foo\\\":\\\"Bar\\\"}\"]}"
|
||||
}
|
||||
},
|
||||
{
|
||||
"given": {
|
||||
"input": {
|
||||
"shape": "InputShape"
|
||||
},
|
||||
"http": {
|
||||
"method": "POST"
|
||||
},
|
||||
"name": "OperationName"
|
||||
},
|
||||
"params": {
|
||||
},
|
||||
"serialized": {
|
||||
|
@ -1362,5 +1416,97 @@
|
|||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"description": "Enum",
|
||||
"metadata": {
|
||||
"protocol": "rest-json",
|
||||
"apiVersion": "2014-01-01"
|
||||
},
|
||||
"shapes": {
|
||||
"InputShape": {
|
||||
"type": "structure",
|
||||
"members": {
|
||||
"HeaderEnum": {
|
||||
"shape": "EnumType",
|
||||
"location": "header",
|
||||
"locationName": "x-amz-enum"
|
||||
},
|
||||
"FooEnum": {
|
||||
"shape": "EnumType"
|
||||
},
|
||||
"QueryFooEnum": {
|
||||
"shape": "EnumType",
|
||||
"location": "querystring",
|
||||
"locationName": "Enum"
|
||||
},
|
||||
"ListEnums": {
|
||||
"shape": "EnumList"
|
||||
},
|
||||
"QueryListEnums": {
|
||||
"shape": "EnumList",
|
||||
"location": "querystring",
|
||||
"locationName": "List"
|
||||
}
|
||||
}
|
||||
},
|
||||
"EnumType":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"foo",
|
||||
"bar",
|
||||
"0",
|
||||
"1"
|
||||
]
|
||||
},
|
||||
"EnumList":{
|
||||
"type":"list",
|
||||
"member": {"shape": "EnumType"}
|
||||
}
|
||||
},
|
||||
"cases": [
|
||||
{
|
||||
"given": {
|
||||
"input": {
|
||||
"shape": "InputShape"
|
||||
},
|
||||
"http": {
|
||||
"method": "POST",
|
||||
"requestUri": "/path"
|
||||
},
|
||||
"name": "OperationName"
|
||||
},
|
||||
"params": {
|
||||
"HeaderEnum": "baz",
|
||||
"FooEnum": "foo",
|
||||
"QueryFooEnum": "bar",
|
||||
"ListEnums": ["foo", "", "bar"],
|
||||
"QueryListEnums": ["0", "", "1"]
|
||||
},
|
||||
"serialized": {
|
||||
"uri": "/path?Enum=bar&List=0&List=1&List=",
|
||||
"headers": {"x-amz-enum": "baz"},
|
||||
"body": "{\"FooEnum\": \"foo\", \"ListEnums\": [\"foo\", \"\", \"bar\"]}"
|
||||
}
|
||||
},
|
||||
{
|
||||
"given": {
|
||||
"input": {
|
||||
"shape": "InputShape"
|
||||
},
|
||||
"http": {
|
||||
"method": "POST",
|
||||
"requestUri": "/path"
|
||||
},
|
||||
"name": "OperationName"
|
||||
},
|
||||
"params": {
|
||||
},
|
||||
"serialized": {
|
||||
"uri": "/path",
|
||||
"headers": {}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
92
vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/rest-xml.json
generated
vendored
92
vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/rest-xml.json
generated
vendored
|
@ -1692,5 +1692,97 @@
|
|||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"description": "Enum",
|
||||
"metadata": {
|
||||
"protocol": "rest-xml",
|
||||
"apiVersion": "2014-01-01"
|
||||
},
|
||||
"shapes": {
|
||||
"InputShape": {
|
||||
"type": "structure",
|
||||
"members": {
|
||||
"HeaderEnum": {
|
||||
"shape": "EnumType",
|
||||
"location": "header",
|
||||
"locationName": "x-amz-enum"
|
||||
},
|
||||
"FooEnum": {
|
||||
"shape": "EnumType"
|
||||
},
|
||||
"URIFooEnum": {
|
||||
"shape": "EnumType",
|
||||
"location": "uri",
|
||||
"locationName": "URIEnum"
|
||||
},
|
||||
"ListEnums": {
|
||||
"shape": "EnumList"
|
||||
},
|
||||
"URIListEnums": {
|
||||
"shape": "EnumList",
|
||||
"location": "querystring",
|
||||
"locationName": "ListEnums"
|
||||
}
|
||||
}
|
||||
},
|
||||
"EnumType":{
|
||||
"type":"string",
|
||||
"enum":[
|
||||
"foo",
|
||||
"bar",
|
||||
"0",
|
||||
"1"
|
||||
]
|
||||
},
|
||||
"EnumList":{
|
||||
"type":"list",
|
||||
"member": {"shape": "EnumType"}
|
||||
}
|
||||
},
|
||||
"cases": [
|
||||
{
|
||||
"given": {
|
||||
"input": {
|
||||
"shape": "InputShape"
|
||||
},
|
||||
"http": {
|
||||
"method": "POST",
|
||||
"requestUri": "/Enum/{URIEnum}"
|
||||
},
|
||||
"name": "OperationName"
|
||||
},
|
||||
"params": {
|
||||
"HeaderEnum": "baz",
|
||||
"FooEnum": "foo",
|
||||
"URIFooEnum": "bar",
|
||||
"ListEnums": ["foo", "", "bar"],
|
||||
"URIListEnums": ["0", "", "1"]
|
||||
},
|
||||
"serialized": {
|
||||
"uri": "/Enum/bar?ListEnums=0&ListEnums=&ListEnums=1",
|
||||
"headers": {"x-amz-enum": "baz"},
|
||||
"body": "<InputShape><FooEnum>foo</FooEnum><ListEnums><member>foo</member><member></member><member>bar</member></ListEnums></InputShape>"
|
||||
}
|
||||
},
|
||||
{
|
||||
"given": {
|
||||
"input": {
|
||||
"shape": "InputShape"
|
||||
},
|
||||
"http": {
|
||||
"method": "POST",
|
||||
"requestUri": "/path"
|
||||
},
|
||||
"name": "OperationName"
|
||||
},
|
||||
"params": {
|
||||
},
|
||||
"serialized": {
|
||||
"uri": "/path",
|
||||
"headers": {}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue