aws-sdk-core 2.11.174 → 2.11.175

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.
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "pagination": {
3
+ }
4
+ }
@@ -0,0 +1,317 @@
1
+ {
2
+ "version": "2.0",
3
+ "metadata": {
4
+ "apiVersion": "2018-08-01",
5
+ "endpointPrefix": "rds-data",
6
+ "jsonVersion": "1.1",
7
+ "protocol": "rest-json",
8
+ "serviceFullName": "AWS RDS DataService",
9
+ "serviceId": "RDS Data",
10
+ "signatureVersion": "v4",
11
+ "signingName": "rds-data",
12
+ "uid": "rds-data-2018-08-01"
13
+ },
14
+ "operations": {
15
+ "ExecuteSql": {
16
+ "name": "ExecuteSql",
17
+ "http": {
18
+ "method": "POST",
19
+ "requestUri": "/ExecuteSql",
20
+ "responseCode": 200
21
+ },
22
+ "input": {
23
+ "shape": "ExecuteSqlRequest"
24
+ },
25
+ "output": {
26
+ "shape": "ExecuteSqlResponse"
27
+ },
28
+ "errors": [
29
+ {
30
+ "shape": "BadRequestException"
31
+ },
32
+ {
33
+ "shape": "ForbiddenException"
34
+ },
35
+ {
36
+ "shape": "InternalServerErrorException"
37
+ },
38
+ {
39
+ "shape": "ServiceUnavailableError"
40
+ }
41
+ ]
42
+ }
43
+ },
44
+ "shapes": {
45
+ "Boolean": {
46
+ "type": "boolean",
47
+ "box": true
48
+ },
49
+ "SqlStatementResult": {
50
+ "type": "structure",
51
+ "members": {
52
+ "numberOfRecordsUpdated": {
53
+ "shape": "Long"
54
+ },
55
+ "resultFrame": {
56
+ "shape": "ResultFrame"
57
+ }
58
+ }
59
+ },
60
+ "ForbiddenException": {
61
+ "type": "structure",
62
+ "members": {
63
+ "message": {
64
+ "shape": "String"
65
+ }
66
+ },
67
+ "exception": true,
68
+ "error": {
69
+ "code": "ForbiddenException",
70
+ "httpStatusCode": 403,
71
+ "senderFault": true
72
+ }
73
+ },
74
+ "Value": {
75
+ "type": "structure",
76
+ "members": {
77
+ "arrayValues": {
78
+ "shape": "ArrayValues"
79
+ },
80
+ "bigIntValue": {
81
+ "shape": "Long"
82
+ },
83
+ "bitValue": {
84
+ "shape": "Boolean"
85
+ },
86
+ "blobValue": {
87
+ "shape": "Blob"
88
+ },
89
+ "doubleValue": {
90
+ "shape": "Double"
91
+ },
92
+ "intValue": {
93
+ "shape": "Integer"
94
+ },
95
+ "isNull": {
96
+ "shape": "Boolean"
97
+ },
98
+ "realValue": {
99
+ "shape": "Float"
100
+ },
101
+ "stringValue": {
102
+ "shape": "String"
103
+ },
104
+ "structValue": {
105
+ "shape": "StructValue"
106
+ }
107
+ }
108
+ },
109
+ "SqlStatementResults": {
110
+ "type": "list",
111
+ "member": {
112
+ "shape": "SqlStatementResult"
113
+ }
114
+ },
115
+ "ColumnMetadataList": {
116
+ "type": "list",
117
+ "member": {
118
+ "shape": "ColumnMetadata"
119
+ }
120
+ },
121
+ "ResultSetMetadata": {
122
+ "type": "structure",
123
+ "members": {
124
+ "columnCount": {
125
+ "shape": "Long"
126
+ },
127
+ "columnMetadata": {
128
+ "shape": "ColumnMetadataList"
129
+ }
130
+ }
131
+ },
132
+ "Records": {
133
+ "type": "list",
134
+ "member": {
135
+ "shape": "Record"
136
+ }
137
+ },
138
+ "ResultFrame": {
139
+ "type": "structure",
140
+ "members": {
141
+ "records": {
142
+ "shape": "Records"
143
+ },
144
+ "resultSetMetadata": {
145
+ "shape": "ResultSetMetadata"
146
+ }
147
+ }
148
+ },
149
+ "ExecuteSqlRequest": {
150
+ "type": "structure",
151
+ "required": [
152
+ "awsSecretStoreArn",
153
+ "dbClusterOrInstanceArn",
154
+ "sqlStatements"
155
+ ],
156
+ "members": {
157
+ "awsSecretStoreArn": {
158
+ "shape": "String"
159
+ },
160
+ "database": {
161
+ "shape": "String"
162
+ },
163
+ "dbClusterOrInstanceArn": {
164
+ "shape": "String"
165
+ },
166
+ "schema": {
167
+ "shape": "String"
168
+ },
169
+ "sqlStatements": {
170
+ "shape": "String"
171
+ }
172
+ }
173
+ },
174
+ "Long": {
175
+ "type": "long",
176
+ "box": true
177
+ },
178
+ "StructValue": {
179
+ "type": "structure",
180
+ "members": {
181
+ "attributes": {
182
+ "shape": "ArrayValues"
183
+ }
184
+ }
185
+ },
186
+ "BadRequestException": {
187
+ "type": "structure",
188
+ "members": {
189
+ "message": {
190
+ "shape": "String"
191
+ }
192
+ },
193
+ "exception": true,
194
+ "error": {
195
+ "code": "BadRequestException",
196
+ "httpStatusCode": 400,
197
+ "senderFault": true
198
+ }
199
+ },
200
+ "Blob": {
201
+ "type": "blob"
202
+ },
203
+ "Row": {
204
+ "type": "list",
205
+ "member": {
206
+ "shape": "Value"
207
+ }
208
+ },
209
+ "String": {
210
+ "type": "string"
211
+ },
212
+ "ArrayValues": {
213
+ "type": "list",
214
+ "member": {
215
+ "shape": "Value"
216
+ }
217
+ },
218
+ "Double": {
219
+ "type": "double",
220
+ "box": true
221
+ },
222
+ "ServiceUnavailableError": {
223
+ "type": "structure",
224
+ "members": { },
225
+ "exception": true,
226
+ "error": {
227
+ "code": "ServiceUnavailableError",
228
+ "httpStatusCode": 503,
229
+ "fault": true
230
+ }
231
+ },
232
+ "ColumnMetadata": {
233
+ "type": "structure",
234
+ "members": {
235
+ "arrayBaseColumnType": {
236
+ "shape": "Integer"
237
+ },
238
+ "isAutoIncrement": {
239
+ "shape": "Boolean"
240
+ },
241
+ "isCaseSensitive": {
242
+ "shape": "Boolean"
243
+ },
244
+ "isCurrency": {
245
+ "shape": "Boolean"
246
+ },
247
+ "isSigned": {
248
+ "shape": "Boolean"
249
+ },
250
+ "label": {
251
+ "shape": "String"
252
+ },
253
+ "name": {
254
+ "shape": "String"
255
+ },
256
+ "nullable": {
257
+ "shape": "Integer"
258
+ },
259
+ "precision": {
260
+ "shape": "Integer"
261
+ },
262
+ "scale": {
263
+ "shape": "Integer"
264
+ },
265
+ "schemaName": {
266
+ "shape": "String"
267
+ },
268
+ "tableName": {
269
+ "shape": "String"
270
+ },
271
+ "type": {
272
+ "shape": "Integer"
273
+ },
274
+ "typeName": {
275
+ "shape": "String"
276
+ }
277
+ }
278
+ },
279
+ "Integer": {
280
+ "type": "integer",
281
+ "box": true
282
+ },
283
+ "Float": {
284
+ "type": "float",
285
+ "box": true
286
+ },
287
+ "Record": {
288
+ "type": "structure",
289
+ "members": {
290
+ "values": {
291
+ "shape": "Row"
292
+ }
293
+ }
294
+ },
295
+ "InternalServerErrorException": {
296
+ "type": "structure",
297
+ "members": { },
298
+ "exception": true,
299
+ "error": {
300
+ "code": "InternalServerErrorException",
301
+ "httpStatusCode": 500,
302
+ "fault": true
303
+ }
304
+ },
305
+ "ExecuteSqlResponse": {
306
+ "type": "structure",
307
+ "required": [
308
+ "sqlStatementResults"
309
+ ],
310
+ "members": {
311
+ "sqlStatementResults": {
312
+ "shape": "SqlStatementResults"
313
+ }
314
+ }
315
+ }
316
+ }
317
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": { }
4
+ }
@@ -0,0 +1,3 @@
1
+ {
2
+ "pagination": { }
3
+ }
@@ -1547,10 +1547,12 @@
1547
1547
  {"shape":"DocumentVersionLimitExceeded"},
1548
1548
  {"shape":"InternalServerError"},
1549
1549
  {"shape":"DuplicateDocumentContent"},
1550
+ {"shape":"DuplicateDocumentVersionName"},
1550
1551
  {"shape":"InvalidDocumentContent"},
1551
1552
  {"shape":"InvalidDocumentVersion"},
1552
1553
  {"shape":"InvalidDocumentSchemaVersion"},
1553
- {"shape":"InvalidDocument"}
1554
+ {"shape":"InvalidDocument"},
1555
+ {"shape":"InvalidDocumentOperation"}
1554
1556
  ]
1555
1557
  },
1556
1558
  "UpdateDocumentDefaultVersion":{
@@ -2042,6 +2044,71 @@
2042
2044
  "member":{"shape":"AssociationVersionInfo"},
2043
2045
  "min":1
2044
2046
  },
2047
+ "AttachmentContent":{
2048
+ "type":"structure",
2049
+ "members":{
2050
+ "Name":{"shape":"AttachmentName"},
2051
+ "Size":{"shape":"ContentLength"},
2052
+ "Hash":{"shape":"AttachmentHash"},
2053
+ "HashType":{"shape":"AttachmentHashType"},
2054
+ "Url":{"shape":"AttachmentUrl"}
2055
+ }
2056
+ },
2057
+ "AttachmentContentList":{
2058
+ "type":"list",
2059
+ "member":{"shape":"AttachmentContent"}
2060
+ },
2061
+ "AttachmentHash":{
2062
+ "type":"string",
2063
+ "max":256
2064
+ },
2065
+ "AttachmentHashType":{
2066
+ "type":"string",
2067
+ "enum":["Sha256"]
2068
+ },
2069
+ "AttachmentInformation":{
2070
+ "type":"structure",
2071
+ "members":{
2072
+ "Name":{"shape":"AttachmentName"}
2073
+ }
2074
+ },
2075
+ "AttachmentInformationList":{
2076
+ "type":"list",
2077
+ "member":{"shape":"AttachmentInformation"}
2078
+ },
2079
+ "AttachmentName":{
2080
+ "type":"string",
2081
+ "pattern":"^[a-zA-Z0-9_\\-.]{3,128}$"
2082
+ },
2083
+ "AttachmentUrl":{"type":"string"},
2084
+ "AttachmentsSource":{
2085
+ "type":"structure",
2086
+ "members":{
2087
+ "Key":{"shape":"AttachmentsSourceKey"},
2088
+ "Values":{"shape":"AttachmentsSourceValues"}
2089
+ }
2090
+ },
2091
+ "AttachmentsSourceKey":{
2092
+ "type":"string",
2093
+ "enum":["SourceUrl"]
2094
+ },
2095
+ "AttachmentsSourceList":{
2096
+ "type":"list",
2097
+ "member":{"shape":"AttachmentsSource"},
2098
+ "max":1,
2099
+ "min":0
2100
+ },
2101
+ "AttachmentsSourceValue":{
2102
+ "type":"string",
2103
+ "max":1024,
2104
+ "min":1
2105
+ },
2106
+ "AttachmentsSourceValues":{
2107
+ "type":"list",
2108
+ "member":{"shape":"AttachmentsSourceValue"},
2109
+ "max":1,
2110
+ "min":1
2111
+ },
2045
2112
  "AttributeName":{
2046
2113
  "type":"string",
2047
2114
  "max":64,
@@ -2667,6 +2734,7 @@
2667
2734
  "NotConnected"
2668
2735
  ]
2669
2736
  },
2737
+ "ContentLength":{"type":"long"},
2670
2738
  "CreateActivationRequest":{
2671
2739
  "type":"structure",
2672
2740
  "required":["IamRole"],
@@ -2755,7 +2823,9 @@
2755
2823
  ],
2756
2824
  "members":{
2757
2825
  "Content":{"shape":"DocumentContent"},
2826
+ "Attachments":{"shape":"AttachmentsSourceList"},
2758
2827
  "Name":{"shape":"DocumentName"},
2828
+ "VersionName":{"shape":"DocumentVersionName"},
2759
2829
  "DocumentType":{"shape":"DocumentType"},
2760
2830
  "DocumentFormat":{"shape":"DocumentFormat"},
2761
2831
  "TargetType":{"shape":"TargetType"}
@@ -3231,7 +3301,8 @@
3231
3301
  "required":["Name"],
3232
3302
  "members":{
3233
3303
  "Name":{"shape":"DocumentARN"},
3234
- "DocumentVersion":{"shape":"DocumentVersion"}
3304
+ "DocumentVersion":{"shape":"DocumentVersion"},
3305
+ "VersionName":{"shape":"DocumentVersionName"}
3235
3306
  }
3236
3307
  },
3237
3308
  "DescribeDocumentResult":{
@@ -3676,7 +3747,8 @@
3676
3747
  "type":"structure",
3677
3748
  "members":{
3678
3749
  "Name":{"shape":"DocumentName"},
3679
- "DefaultVersion":{"shape":"DocumentVersion"}
3750
+ "DefaultVersion":{"shape":"DocumentVersion"},
3751
+ "DefaultVersionName":{"shape":"DocumentVersionName"}
3680
3752
  }
3681
3753
  },
3682
3754
  "DocumentDescription":{
@@ -3686,9 +3758,11 @@
3686
3758
  "Hash":{"shape":"DocumentHash"},
3687
3759
  "HashType":{"shape":"DocumentHashType"},
3688
3760
  "Name":{"shape":"DocumentARN"},
3761
+ "VersionName":{"shape":"DocumentVersionName"},
3689
3762
  "Owner":{"shape":"DocumentOwner"},
3690
3763
  "CreatedDate":{"shape":"DateTime"},
3691
3764
  "Status":{"shape":"DocumentStatus"},
3765
+ "StatusInformation":{"shape":"DocumentStatusInformation"},
3692
3766
  "DocumentVersion":{"shape":"DocumentVersion"},
3693
3767
  "Description":{"shape":"DescriptionInDocument"},
3694
3768
  "Parameters":{"shape":"DocumentParameterList"},
@@ -3699,7 +3773,8 @@
3699
3773
  "DefaultVersion":{"shape":"DocumentVersion"},
3700
3774
  "DocumentFormat":{"shape":"DocumentFormat"},
3701
3775
  "TargetType":{"shape":"TargetType"},
3702
- "Tags":{"shape":"TagList"}
3776
+ "Tags":{"shape":"TagList"},
3777
+ "AttachmentsInformation":{"shape":"AttachmentInformationList"}
3703
3778
  }
3704
3779
  },
3705
3780
  "DocumentFilter":{
@@ -3754,6 +3829,7 @@
3754
3829
  "members":{
3755
3830
  "Name":{"shape":"DocumentARN"},
3756
3831
  "Owner":{"shape":"DocumentOwner"},
3832
+ "VersionName":{"shape":"DocumentVersionName"},
3757
3833
  "PlatformTypes":{"shape":"PlatformTypeList"},
3758
3834
  "DocumentVersion":{"shape":"DocumentVersion"},
3759
3835
  "DocumentType":{"shape":"DocumentType"},
@@ -3851,16 +3927,19 @@
3851
3927
  "Creating",
3852
3928
  "Active",
3853
3929
  "Updating",
3854
- "Deleting"
3930
+ "Deleting",
3931
+ "Failed"
3855
3932
  ]
3856
3933
  },
3934
+ "DocumentStatusInformation":{"type":"string"},
3857
3935
  "DocumentType":{
3858
3936
  "type":"string",
3859
3937
  "enum":[
3860
3938
  "Command",
3861
3939
  "Policy",
3862
3940
  "Automation",
3863
- "Session"
3941
+ "Session",
3942
+ "Package"
3864
3943
  ]
3865
3944
  },
3866
3945
  "DocumentVersion":{
@@ -3872,9 +3951,12 @@
3872
3951
  "members":{
3873
3952
  "Name":{"shape":"DocumentName"},
3874
3953
  "DocumentVersion":{"shape":"DocumentVersion"},
3954
+ "VersionName":{"shape":"DocumentVersionName"},
3875
3955
  "CreatedDate":{"shape":"DateTime"},
3876
3956
  "IsDefaultVersion":{"shape":"Boolean"},
3877
- "DocumentFormat":{"shape":"DocumentFormat"}
3957
+ "DocumentFormat":{"shape":"DocumentFormat"},
3958
+ "Status":{"shape":"DocumentStatus"},
3959
+ "StatusInformation":{"shape":"DocumentStatusInformation"}
3878
3960
  }
3879
3961
  },
3880
3962
  "DocumentVersionLimitExceeded":{
@@ -3889,6 +3971,10 @@
3889
3971
  "member":{"shape":"DocumentVersionInfo"},
3890
3972
  "min":1
3891
3973
  },
3974
+ "DocumentVersionName":{
3975
+ "type":"string",
3976
+ "pattern":"^[a-zA-Z0-9_\\-.]{1,128}$"
3977
+ },
3892
3978
  "DocumentVersionNumber":{
3893
3979
  "type":"string",
3894
3980
  "pattern":"(^[1-9][0-9]*$)"
@@ -3908,6 +3994,13 @@
3908
3994
  },
3909
3995
  "exception":true
3910
3996
  },
3997
+ "DuplicateDocumentVersionName":{
3998
+ "type":"structure",
3999
+ "members":{
4000
+ "Message":{"shape":"String"}
4001
+ },
4002
+ "exception":true
4003
+ },
3911
4004
  "DuplicateInstanceId":{
3912
4005
  "type":"structure",
3913
4006
  "members":{
@@ -4078,6 +4171,7 @@
4078
4171
  "required":["Name"],
4079
4172
  "members":{
4080
4173
  "Name":{"shape":"DocumentARN"},
4174
+ "VersionName":{"shape":"DocumentVersionName"},
4081
4175
  "DocumentVersion":{"shape":"DocumentVersion"},
4082
4176
  "DocumentFormat":{"shape":"DocumentFormat"}
4083
4177
  }
@@ -4086,10 +4180,14 @@
4086
4180
  "type":"structure",
4087
4181
  "members":{
4088
4182
  "Name":{"shape":"DocumentARN"},
4183
+ "VersionName":{"shape":"DocumentVersionName"},
4089
4184
  "DocumentVersion":{"shape":"DocumentVersion"},
4185
+ "Status":{"shape":"DocumentStatus"},
4186
+ "StatusInformation":{"shape":"DocumentStatusInformation"},
4090
4187
  "Content":{"shape":"DocumentContent"},
4091
4188
  "DocumentType":{"shape":"DocumentType"},
4092
- "DocumentFormat":{"shape":"DocumentFormat"}
4189
+ "DocumentFormat":{"shape":"DocumentFormat"},
4190
+ "AttachmentsContent":{"shape":"AttachmentContentList"}
4093
4191
  }
4094
4192
  },
4095
4193
  "GetInventoryRequest":{
@@ -7822,7 +7920,9 @@
7822
7920
  ],
7823
7921
  "members":{
7824
7922
  "Content":{"shape":"DocumentContent"},
7923
+ "Attachments":{"shape":"AttachmentsSourceList"},
7825
7924
  "Name":{"shape":"DocumentName"},
7925
+ "VersionName":{"shape":"DocumentVersionName"},
7826
7926
  "DocumentVersion":{"shape":"DocumentVersion"},
7827
7927
  "DocumentFormat":{"shape":"DocumentFormat"},
7828
7928
  "TargetType":{"shape":"TargetType"}