|
46 | 46 | {"shape":"ExpiredNextTokenException"}
|
47 | 47 | ]
|
48 | 48 | },
|
| 49 | + "GetPriceListFileUrl":{ |
| 50 | + "name":"GetPriceListFileUrl", |
| 51 | + "http":{ |
| 52 | + "method":"POST", |
| 53 | + "requestUri":"/" |
| 54 | + }, |
| 55 | + "input":{"shape":"GetPriceListFileUrlRequest"}, |
| 56 | + "output":{"shape":"GetPriceListFileUrlResponse"}, |
| 57 | + "errors":[ |
| 58 | + {"shape":"InternalErrorException"}, |
| 59 | + {"shape":"InvalidParameterException"}, |
| 60 | + {"shape":"NotFoundException"}, |
| 61 | + {"shape":"AccessDeniedException"} |
| 62 | + ] |
| 63 | + }, |
49 | 64 | "GetProducts":{
|
50 | 65 | "name":"GetProducts",
|
51 | 66 | "http":{
|
|
61 | 76 | {"shape":"InvalidNextTokenException"},
|
62 | 77 | {"shape":"ExpiredNextTokenException"}
|
63 | 78 | ]
|
| 79 | + }, |
| 80 | + "ListPriceLists":{ |
| 81 | + "name":"ListPriceLists", |
| 82 | + "http":{ |
| 83 | + "method":"POST", |
| 84 | + "requestUri":"/" |
| 85 | + }, |
| 86 | + "input":{"shape":"ListPriceListsRequest"}, |
| 87 | + "output":{"shape":"ListPriceListsResponse"}, |
| 88 | + "errors":[ |
| 89 | + {"shape":"InternalErrorException"}, |
| 90 | + {"shape":"InvalidParameterException"}, |
| 91 | + {"shape":"NotFoundException"}, |
| 92 | + {"shape":"InvalidNextTokenException"}, |
| 93 | + {"shape":"ExpiredNextTokenException"}, |
| 94 | + {"shape":"AccessDeniedException"} |
| 95 | + ] |
64 | 96 | }
|
65 | 97 | },
|
66 | 98 | "shapes":{
|
| 99 | + "AccessDeniedException":{ |
| 100 | + "type":"structure", |
| 101 | + "members":{ |
| 102 | + "Message":{"shape":"errorMessage"} |
| 103 | + }, |
| 104 | + "exception":true |
| 105 | + }, |
67 | 106 | "AttributeNameList":{
|
68 | 107 | "type":"list",
|
69 | 108 | "member":{"shape":"String"}
|
|
83 | 122 | "max":100,
|
84 | 123 | "min":1
|
85 | 124 | },
|
| 125 | + "CurrencyCode":{ |
| 126 | + "type":"string", |
| 127 | + "pattern":"^[A-Z]{3}$" |
| 128 | + }, |
86 | 129 | "DescribeServicesRequest":{
|
87 | 130 | "type":"structure",
|
88 | 131 | "members":{
|
|
103 | 146 | "NextToken":{"shape":"String"}
|
104 | 147 | }
|
105 | 148 | },
|
| 149 | + "EffectiveDate":{"type":"timestamp"}, |
106 | 150 | "ExpiredNextTokenException":{
|
107 | 151 | "type":"structure",
|
108 | 152 | "members":{
|
109 | 153 | "Message":{"shape":"errorMessage"}
|
110 | 154 | },
|
111 | 155 | "exception":true
|
112 | 156 | },
|
| 157 | + "FileFormat":{ |
| 158 | + "type":"string", |
| 159 | + "max":255, |
| 160 | + "min":1 |
| 161 | + }, |
| 162 | + "FileFormats":{ |
| 163 | + "type":"list", |
| 164 | + "member":{"shape":"FileFormat"} |
| 165 | + }, |
113 | 166 | "Filter":{
|
114 | 167 | "type":"structure",
|
115 | 168 | "required":[
|
|
154 | 207 | "NextToken":{"shape":"String"}
|
155 | 208 | }
|
156 | 209 | },
|
| 210 | + "GetPriceListFileUrlRequest":{ |
| 211 | + "type":"structure", |
| 212 | + "required":[ |
| 213 | + "PriceListArn", |
| 214 | + "FileFormat" |
| 215 | + ], |
| 216 | + "members":{ |
| 217 | + "PriceListArn":{"shape":"PriceListArn"}, |
| 218 | + "FileFormat":{"shape":"FileFormat"} |
| 219 | + } |
| 220 | + }, |
| 221 | + "GetPriceListFileUrlResponse":{ |
| 222 | + "type":"structure", |
| 223 | + "members":{ |
| 224 | + "Url":{"shape":"String"} |
| 225 | + } |
| 226 | + }, |
157 | 227 | "GetProductsRequest":{
|
158 | 228 | "type":"structure",
|
159 | 229 | "required":["ServiceCode"],
|
|
197 | 267 | },
|
198 | 268 | "exception":true
|
199 | 269 | },
|
| 270 | + "ListPriceListsRequest":{ |
| 271 | + "type":"structure", |
| 272 | + "required":[ |
| 273 | + "ServiceCode", |
| 274 | + "EffectiveDate", |
| 275 | + "CurrencyCode" |
| 276 | + ], |
| 277 | + "members":{ |
| 278 | + "ServiceCode":{"shape":"ServiceCode"}, |
| 279 | + "EffectiveDate":{"shape":"EffectiveDate"}, |
| 280 | + "RegionCode":{"shape":"RegionCode"}, |
| 281 | + "CurrencyCode":{"shape":"CurrencyCode"}, |
| 282 | + "NextToken":{"shape":"String"}, |
| 283 | + "MaxResults":{"shape":"MaxResults"} |
| 284 | + } |
| 285 | + }, |
| 286 | + "ListPriceListsResponse":{ |
| 287 | + "type":"structure", |
| 288 | + "members":{ |
| 289 | + "PriceLists":{"shape":"PriceLists"}, |
| 290 | + "NextToken":{"shape":"String"} |
| 291 | + } |
| 292 | + }, |
| 293 | + "MaxResults":{ |
| 294 | + "type":"integer", |
| 295 | + "max":100, |
| 296 | + "min":1 |
| 297 | + }, |
200 | 298 | "NotFoundException":{
|
201 | 299 | "type":"structure",
|
202 | 300 | "members":{
|
203 | 301 | "Message":{"shape":"errorMessage"}
|
204 | 302 | },
|
205 | 303 | "exception":true
|
206 | 304 | },
|
| 305 | + "PriceList":{ |
| 306 | + "type":"structure", |
| 307 | + "members":{ |
| 308 | + "PriceListArn":{"shape":"PriceListArn"}, |
| 309 | + "RegionCode":{"shape":"RegionCode"}, |
| 310 | + "CurrencyCode":{"shape":"CurrencyCode"}, |
| 311 | + "FileFormats":{"shape":"FileFormats"} |
| 312 | + } |
| 313 | + }, |
| 314 | + "PriceListArn":{ |
| 315 | + "type":"string", |
| 316 | + "max":2048, |
| 317 | + "min":18, |
| 318 | + "pattern":"^arn:.+:pricing::.*:price-list/.{1,255}/.{1,32}/[A-Z]{3}/[0-9]{14}/[^/]*$" |
| 319 | + }, |
207 | 320 | "PriceListJsonItem":{"type":"string"},
|
208 | 321 | "PriceListJsonItems":{
|
209 | 322 | "type":"list",
|
|
212 | 325 | "jsonvalue":true
|
213 | 326 | }
|
214 | 327 | },
|
| 328 | + "PriceLists":{ |
| 329 | + "type":"list", |
| 330 | + "member":{"shape":"PriceList"} |
| 331 | + }, |
| 332 | + "RegionCode":{ |
| 333 | + "type":"string", |
| 334 | + "max":255, |
| 335 | + "min":1 |
| 336 | + }, |
215 | 337 | "Service":{
|
216 | 338 | "type":"structure",
|
217 | 339 | "required":["ServiceCode"],
|
|
220 | 342 | "AttributeNames":{"shape":"AttributeNameList"}
|
221 | 343 | }
|
222 | 344 | },
|
| 345 | + "ServiceCode":{ |
| 346 | + "type":"string", |
| 347 | + "max":32, |
| 348 | + "min":1 |
| 349 | + }, |
223 | 350 | "ServiceList":{
|
224 | 351 | "type":"list",
|
225 | 352 | "member":{"shape":"Service"}
|
|
0 commit comments