Update Go AWS SDK to the latest version

This commit is contained in:
Andrey Smirnov
2019-07-13 00:03:55 +03:00
committed by Andrey Smirnov
parent d08be990ef
commit 94a72b23ff
2183 changed files with 885887 additions and 228114 deletions
@@ -0,0 +1 @@
[[ foo ]
@@ -0,0 +1 @@
[ default
@@ -0,0 +1 @@
[ default #]
@@ -0,0 +1,3 @@
[arn:aws:sts::1234:assumed-role/My-Role/session-name]
region = "foo-region"
arn = arn:aws:sts::1234:assumed-role/My-Role/session-name
@@ -0,0 +1,6 @@
{
"arn:aws:sts::1234:assumed-role/My-Role/session-name": {
"region": "foo-region",
"arn": "arn:aws:sts::1234:assumed-role/My-Role/session-name"
}
}
@@ -0,0 +1,8 @@
[ foo ]
bar = "one","two", "three"
baz = 123
qux =
moo = 123,456
cow = 1
milk = 123,456
zed = "zee"
@@ -0,0 +1,6 @@
{
"foo": {
"baz": 123,
"zed": "zee"
}
}
@@ -0,0 +1,6 @@
[ default ]
binary=0b1001
octal=0o107
ten=12
hex=0xAFB1
hex2=0xafb1
@@ -0,0 +1,9 @@
{
"default": {
"binary": 9,
"octal": 71,
"ten": 12,
"hex": 44977,
"hex2": 44977
}
}
@@ -0,0 +1,4 @@
# comment here
[ default ]
region = "foo-region" # another comment
output = json # comment again
@@ -0,0 +1,6 @@
{
"default": {
"region": "foo-region",
"output": "json"
}
}
@@ -0,0 +1 @@
[ default ]
@@ -0,0 +1,4 @@
{
"default": {
}
}
@@ -0,0 +1,3 @@
[ default ]
foo = "\"bar\""
baz = "qux\n"
@@ -0,0 +1,6 @@
{
"default": {
"foo": "\"bar\"",
"baz": "qux\n"
}
}
@@ -0,0 +1,4 @@
[ default ]
exponent = 1e4
exponent_2 = 1E-4
exponent_should_be_string = 0x1ob
@@ -0,0 +1,7 @@
{
"default": {
"exponent": 10000,
"exponent_2": 0.0001,
"exponent_should_be_string": "0x1ob"
}
}
@@ -0,0 +1,3 @@
foo=bar
[default]
foo=bar
@@ -0,0 +1,5 @@
{
"default": {
"foo": "bar"
}
}
@@ -0,0 +1,2 @@
[default]
large_number = 1234567890123456789012345678901234567890
@@ -0,0 +1,5 @@
{
"default": {
"large_number": "1234567890123456789012345678901234567890"
}
}
@@ -0,0 +1,7 @@
[foo-profile]
aws_access_key_id = accesskey
aws_secret_access_key = secret
aws_session_token = token
aws_security_token = sectoken
x_principal_arn = arn:aws:sts::myarn
x_security_token_expires = time
@@ -0,0 +1,10 @@
{
"foo-profile": {
"aws_access_key_id": "accesskey",
"aws_secret_access_key": "secret",
"aws_session_token": "token",
"aws_security_token": "sectoken",
"x_principal_arn": "arn:aws:sts::myarn",
"x_security_token_expires": "time"
}
}
@@ -0,0 +1,2 @@
[default]
123 = 456.456
@@ -0,0 +1,5 @@
{
"default": {
"123": 456.456
}
}
@@ -0,0 +1,2 @@
[ profile foo ]
bar = baz
@@ -0,0 +1,5 @@
{
"profile foo": {
"bar": "baz"
}
}
@@ -0,0 +1,8 @@
[ default ]
region = "foo-region"
output = json
[ foo ]
bar = baz
[bar]
baz=qux
@@ -0,0 +1,12 @@
{
"default": {
"region": "foo-region",
"output": "json"
},
"foo": {
"bar": "baz"
},
"bar": {
"baz": "qux"
}
}
@@ -0,0 +1,5 @@
[ default ]
region = "foo-region"
output = json
foo = bar = baz
bar = baz qux
@@ -0,0 +1,8 @@
{
"default": {
"output": "json",
"region": "foo-region",
"foo": "bar = baz",
"bar": "baz qux"
}
}
@@ -0,0 +1,2 @@
[ hyphen-profile-name ]
aws region = "foo-region"
@@ -0,0 +1,5 @@
{
"hyphen-profile-name": {
"aws region": "foo-region"
}
}
@@ -0,0 +1,3 @@
[ ʃʉʍΡιξ ]
ϰϪϧ = Ϯϴϖ
ϝϧ = "ϟΞ΅"
@@ -0,0 +1,6 @@
{
"ʃʉʍΡιξ": {
"ϰϪϧ": "Ϯϴϖ",
"ϝϧ": "ϟΞ΅"
}
}