aws-sdk-core 2.11.344 → 2.11.345

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: acd3638e3b402aa61213cfad72d13fe0130ab564
4
- data.tar.gz: 93f0cb8ddcfaf15a10c762b55d45c9b7682c7277
3
+ metadata.gz: 03a3b06dd4b011b8b6601d2e870f71451b7d878c
4
+ data.tar.gz: a0fde421aa8144b2b03cbcda8b1ad54210eeec7a
5
5
  SHA512:
6
- metadata.gz: 4b250f33719bc79686cf6e42fd69e014cd4487ec84dde0f2623f18a0eb1a1aad920ce2151ec9a3c172ee3bc85ce3e6dc0a92543f691ff87d3244593bbff8911e
7
- data.tar.gz: dbddcbd820b325d79dc687087c1d2c922f302a6ac8fc8fc7b7827fd2cb84fb0e778b8ceb859fbc856b5a43c30974cdf9f738c67cba77ebff249623defa695525
6
+ metadata.gz: 8ae61c537a4812609b8611acc8ae3a181b6a68d2885df2007d0a6a79b7eef54fc3d330d5cba898e5843926a22ad4589c97aae0e340b7b89432d4e1faa83c7749
7
+ data.tar.gz: 37ec37839626d9175b137ede5af7fbb470dda28a3b7646b1c00952ed9ee50909e4c8c39ad236f0bc87f6850e199b4b567a9d5b217480fe154dad86ccefb891e0
@@ -11,6 +11,45 @@
11
11
  "signatureVersion" : "v4"
12
12
  },
13
13
  "operations" : {
14
+ "DeleteConnection" : {
15
+ "name" : "DeleteConnection",
16
+ "http" : {
17
+ "method" : "DELETE",
18
+ "requestUri" : "/@connections/{connectionId}",
19
+ "responseCode" : 204
20
+ },
21
+ "input" : {
22
+ "shape" : "DeleteConnectionRequest"
23
+ },
24
+ "errors" : [ {
25
+ "shape" : "GoneException"
26
+ }, {
27
+ "shape" : "LimitExceededException"
28
+ }, {
29
+ "shape" : "ForbiddenException"
30
+ } ]
31
+ },
32
+ "GetConnection" : {
33
+ "name" : "GetConnection",
34
+ "http" : {
35
+ "method" : "GET",
36
+ "requestUri" : "/@connections/{connectionId}",
37
+ "responseCode" : 200
38
+ },
39
+ "input" : {
40
+ "shape" : "GetConnectionRequest"
41
+ },
42
+ "output" : {
43
+ "shape" : "GetConnectionResponse"
44
+ },
45
+ "errors" : [ {
46
+ "shape" : "GoneException"
47
+ }, {
48
+ "shape" : "LimitExceededException"
49
+ }, {
50
+ "shape" : "ForbiddenException"
51
+ } ]
52
+ },
14
53
  "PostToConnection" : {
15
54
  "name" : "PostToConnection",
16
55
  "http" : {
@@ -37,6 +76,17 @@
37
76
  "type" : "blob",
38
77
  "max" : 131072
39
78
  },
79
+ "DeleteConnectionRequest" : {
80
+ "type" : "structure",
81
+ "members" : {
82
+ "ConnectionId" : {
83
+ "shape" : "__string",
84
+ "location" : "uri",
85
+ "locationName" : "connectionId"
86
+ }
87
+ },
88
+ "required" : [ "ConnectionId" ]
89
+ },
40
90
  "ForbiddenException" : {
41
91
  "type" : "structure",
42
92
  "members" : { },
@@ -45,6 +95,34 @@
45
95
  "httpStatusCode" : 403
46
96
  }
47
97
  },
98
+ "GetConnectionRequest" : {
99
+ "type" : "structure",
100
+ "members" : {
101
+ "ConnectionId" : {
102
+ "shape" : "__string",
103
+ "location" : "uri",
104
+ "locationName" : "connectionId"
105
+ }
106
+ },
107
+ "required" : [ "ConnectionId" ]
108
+ },
109
+ "GetConnectionResponse" : {
110
+ "type" : "structure",
111
+ "members" : {
112
+ "ConnectedAt" : {
113
+ "shape" : "__timestampIso8601",
114
+ "locationName" : "connectedAt"
115
+ },
116
+ "Identity" : {
117
+ "shape" : "Identity",
118
+ "locationName" : "identity"
119
+ },
120
+ "LastActiveAt" : {
121
+ "shape" : "__timestampIso8601",
122
+ "locationName" : "lastActiveAt"
123
+ }
124
+ }
125
+ },
48
126
  "GoneException" : {
49
127
  "type" : "structure",
50
128
  "members" : { },
@@ -53,13 +131,19 @@
53
131
  "httpStatusCode" : 410
54
132
  }
55
133
  },
56
- "LimitExceededException" : {
134
+ "Identity" : {
57
135
  "type" : "structure",
58
- "members" : { },
59
- "exception" : true,
60
- "error" : {
61
- "httpStatusCode" : 429
62
- }
136
+ "members" : {
137
+ "SourceIp" : {
138
+ "shape" : "__string",
139
+ "locationName" : "sourceIp"
140
+ },
141
+ "UserAgent" : {
142
+ "shape" : "__string",
143
+ "locationName" : "userAgent"
144
+ }
145
+ },
146
+ "required" : [ "SourceIp", "UserAgent" ]
63
147
  },
64
148
  "PayloadTooLargeException" : {
65
149
  "type" : "structure",
@@ -89,8 +173,20 @@
89
173
  "required" : [ "ConnectionId", "Data" ],
90
174
  "payload" : "Data"
91
175
  },
176
+ "LimitExceededException" : {
177
+ "type" : "structure",
178
+ "members" : { },
179
+ "exception" : true,
180
+ "error" : {
181
+ "httpStatusCode" : 429
182
+ }
183
+ },
92
184
  "__string" : {
93
185
  "type" : "string"
186
+ },
187
+ "__timestampIso8601" : {
188
+ "type" : "timestamp",
189
+ "timestampFormat" : "iso8601"
94
190
  }
95
191
  }
96
- }
192
+ }
@@ -609,6 +609,21 @@
609
609
  {"shape":"InvalidParameterException"}
610
610
  ]
611
611
  },
612
+ "UpdateClusterSettings":{
613
+ "name":"UpdateClusterSettings",
614
+ "http":{
615
+ "method":"POST",
616
+ "requestUri":"/"
617
+ },
618
+ "input":{"shape":"UpdateClusterSettingsRequest"},
619
+ "output":{"shape":"UpdateClusterSettingsResponse"},
620
+ "errors":[
621
+ {"shape":"ServerException"},
622
+ {"shape":"ClientException"},
623
+ {"shape":"ClusterNotFoundException"},
624
+ {"shape":"InvalidParameterException"}
625
+ ]
626
+ },
612
627
  "UpdateContainerAgent":{
613
628
  "name":"UpdateContainerAgent",
614
629
  "http":{
@@ -915,7 +930,8 @@
915
930
  "cpu":{"shape":"String"},
916
931
  "memory":{"shape":"String"},
917
932
  "memoryReservation":{"shape":"String"},
918
- "gpuIds":{"shape":"GpuIds"}
933
+ "gpuIds":{"shape":"GpuIds"},
934
+ "firelensConfiguration":{"shape":"FirelensConfiguration"}
919
935
  }
920
936
  },
921
937
  "ContainerCondition":{
@@ -966,7 +982,8 @@
966
982
  "logConfiguration":{"shape":"LogConfiguration"},
967
983
  "healthCheck":{"shape":"HealthCheck"},
968
984
  "systemControls":{"shape":"SystemControls"},
969
- "resourceRequirements":{"shape":"ResourceRequirements"}
985
+ "resourceRequirements":{"shape":"ResourceRequirements"},
986
+ "firelensConfiguration":{"shape":"FirelensConfiguration"}
970
987
  }
971
988
  },
972
989
  "ContainerDefinitions":{
@@ -1459,6 +1476,26 @@
1459
1476
  "type":"list",
1460
1477
  "member":{"shape":"Failure"}
1461
1478
  },
1479
+ "FirelensConfiguration":{
1480
+ "type":"structure",
1481
+ "required":["type"],
1482
+ "members":{
1483
+ "type":{"shape":"FirelensConfigurationType"},
1484
+ "options":{"shape":"FirelensConfigurationOptionsMap"}
1485
+ }
1486
+ },
1487
+ "FirelensConfigurationOptionsMap":{
1488
+ "type":"map",
1489
+ "key":{"shape":"String"},
1490
+ "value":{"shape":"String"}
1491
+ },
1492
+ "FirelensConfigurationType":{
1493
+ "type":"string",
1494
+ "enum":[
1495
+ "fluentd",
1496
+ "fluentbit"
1497
+ ]
1498
+ },
1462
1499
  "GpuIds":{
1463
1500
  "type":"list",
1464
1501
  "member":{"shape":"String"}
@@ -1739,7 +1776,8 @@
1739
1776
  "gelf",
1740
1777
  "fluentd",
1741
1778
  "awslogs",
1742
- "splunk"
1779
+ "splunk",
1780
+ "awsfirelens"
1743
1781
  ]
1744
1782
  },
1745
1783
  "Long":{"type":"long"},
@@ -2677,6 +2715,23 @@
2677
2715
  "members":{
2678
2716
  }
2679
2717
  },
2718
+ "UpdateClusterSettingsRequest":{
2719
+ "type":"structure",
2720
+ "required":[
2721
+ "cluster",
2722
+ "settings"
2723
+ ],
2724
+ "members":{
2725
+ "cluster":{"shape":"String"},
2726
+ "settings":{"shape":"ClusterSettings"}
2727
+ }
2728
+ },
2729
+ "UpdateClusterSettingsResponse":{
2730
+ "type":"structure",
2731
+ "members":{
2732
+ "cluster":{"shape":"Cluster"}
2733
+ }
2734
+ },
2680
2735
  "UpdateContainerAgentRequest":{
2681
2736
  "type":"structure",
2682
2737
  "required":["containerInstance"],
@@ -1313,6 +1313,10 @@
1313
1313
  "shape" : "__string",
1314
1314
  "locationName" : "pendingEngineVersion"
1315
1315
  },
1316
+ "PendingSecurityGroups" : {
1317
+ "shape" : "__listOf__string",
1318
+ "locationName" : "pendingSecurityGroups"
1319
+ },
1316
1320
  "PubliclyAccessible" : {
1317
1321
  "shape" : "__boolean",
1318
1322
  "locationName" : "publiclyAccessible"
@@ -1413,6 +1417,10 @@
1413
1417
  "shape" : "__string",
1414
1418
  "locationName" : "pendingEngineVersion"
1415
1419
  },
1420
+ "PendingSecurityGroups" : {
1421
+ "shape" : "__listOf__string",
1422
+ "locationName" : "pendingSecurityGroups"
1423
+ },
1416
1424
  "PubliclyAccessible" : {
1417
1425
  "shape" : "__boolean",
1418
1426
  "locationName" : "publiclyAccessible"
@@ -2074,6 +2082,10 @@
2074
2082
  "Logs" : {
2075
2083
  "shape" : "Logs",
2076
2084
  "locationName" : "logs"
2085
+ },
2086
+ "SecurityGroups" : {
2087
+ "shape" : "__listOf__string",
2088
+ "locationName" : "securityGroups"
2077
2089
  }
2078
2090
  }
2079
2091
  },
@@ -2099,6 +2111,10 @@
2099
2111
  "Logs" : {
2100
2112
  "shape" : "Logs",
2101
2113
  "locationName" : "logs"
2114
+ },
2115
+ "SecurityGroups" : {
2116
+ "shape" : "__listOf__string",
2117
+ "locationName" : "securityGroups"
2102
2118
  }
2103
2119
  }
2104
2120
  },
@@ -2125,6 +2141,10 @@
2125
2141
  "Logs" : {
2126
2142
  "shape" : "Logs",
2127
2143
  "locationName" : "logs"
2144
+ },
2145
+ "SecurityGroups" : {
2146
+ "shape" : "__listOf__string",
2147
+ "locationName" : "securityGroups"
2128
2148
  }
2129
2149
  },
2130
2150
  "required" : [ "BrokerId" ]
@@ -2151,6 +2171,10 @@
2151
2171
  "Logs" : {
2152
2172
  "shape" : "Logs",
2153
2173
  "locationName" : "logs"
2174
+ },
2175
+ "SecurityGroups" : {
2176
+ "shape" : "__listOf__string",
2177
+ "locationName" : "securityGroups"
2154
2178
  }
2155
2179
  }
2156
2180
  },
@@ -2487,4 +2511,4 @@
2487
2511
  }
2488
2512
  }
2489
2513
  }
2490
- }
2514
+ }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.344'
2
+ VERSION = '2.11.345'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.344
4
+ version: 2.11.345
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-29 00:00:00.000000000 Z
11
+ date: 2019-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath