package awsm-codegen
- Overview
- No Docs
You can search for identifiers within the package.
in-package search v0.2.0
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
AWS botocore code generator
Install
dune-project
Dependency
Authors
Maintainers
Sources
0.1.0.tar.gz
md5=db5777910e155df33255f50c50daa046
sha512=18775715f99f5ba56c6dee40d7b4c4ab7f5d583327d2cc5c50d0cdae4c76c7b510e0ff974577cc0a9d82f497b979daf8af14f9e5741e9fbc5c83aa5928039c6b
doc/src/awsm-codegen/botodata.ml.html
Source file botodata.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455(** Boto specification for Amazon services Boto library includes a {{:https://github.com/boto/botocore/tree/develop/botocore/data} description} of Amazon services in JSON format. This module provides types to represent the contents of the specification, which includes three main parts: - service metadata (constants) - operations (along with their signature) - input and output types for operations The exact way a specification should be interpreted to provide an implementation depends on the {! protocol} specified in the {! metadata} of the service. Input/output types for operations are specified as a composition of {! shape}s, where a shape is basically a standard programming type with some optional additional constraints (for instance, integer with bounds). *) open! Core open! Import module Int64 = struct type t = int64 [@@deriving sexp] end type checksumFormat = [ `md5 | `sha256 ] [@@deriving sexp] type timestampFormat = [ `unixTimestamp | `rfc822 | `iso8601 ] [@@deriving sexp] type protocol = [ `query | `json | `rest_json | `rest_xml | `ec2 ] [@@deriving sexp] type location = [ `header | `headers | `querystring | `uri | `statusCode ] [@@deriving sexp] type metadata = { apiVersion : string ; checksumFormat : checksumFormat option ; endpointPrefix : string ; globalEndpoint : Uri_sexp.t option ; serviceAbbreviation : string option ; serviceFullName : string ; serviceId : string option ; signatureVersion : string ; timestampFormat : timestampFormat option ; protocol : protocol ; jsonVersion : string option ; targetPrefix : Uri_sexp.t option ; signingName : string option ; xmlNamespace : Uri_sexp.t option ; uid : string option } [@@deriving sexp] let empty_metadata_for_tests = { apiVersion = "" ; checksumFormat = None ; endpointPrefix = "" ; globalEndpoint = None ; serviceAbbreviation = None ; serviceFullName = "" ; serviceId = None ; signatureVersion = "" ; timestampFormat = None ; protocol = `rest_json ; jsonVersion = None ; targetPrefix = None ; signingName = None ; xmlNamespace = None ; uid = None } ;; type http_method = [ `GET | `POST | `PUT | `DELETE | `HEAD | `PATCH ] [@@deriving sexp] let http_method_of_string = function | "DELETE" -> Ok `DELETE | "GET" -> Ok `GET | "HEAD" -> Ok `HEAD | "PATCH" -> Ok `PATCH | "POST" -> Ok `POST | "PUT" -> Ok `PUT | s -> Error (sprintf "Unknown HTTP method %s" s) ;; type requestUri_token = [ `Slash | `String of string | `Variable of string * bool | `Ampersand | `Qmark | `Equal ] [@@deriving sexp] type requestUri = requestUri_token list [@@deriving sexp] type http = { method_ : http_method ; requestUri : requestUri ; responseCode : int option } [@@deriving sexp] type xmlNamespace = { uri : Uri_sexp.t ; prefix : string option } [@@deriving sexp] type httpChecksum = { requestValidationModeMember : string option ; requestAlgorithmMember : string option ; requestChecksumRequired : bool option ; responseAlgorithms : string list option } [@@deriving sexp] type operation_input = { shape : string ; documentation : string option ; deprecated : bool option ; xmlNamespace : xmlNamespace option ; locationName : string option } [@@deriving sexp] type operation_output = { shape : string ; documentation : string option ; deprecated : bool option ; locationName : string option ; resultWrapper : string option ; wrapper : bool option ; xmlOrder : string list option } [@@deriving sexp] type error = { code : string option ; httpStatusCode : int ; senderFault : bool option } [@@deriving sexp] type operation_error = { shape : string ; documentation : string option ; exception_ : bool option ; fault : bool option ; error : error option ; xmlOrder : string list option } [@@deriving sexp] type operation_endpoint = { hostPrefix : string } [@@deriving sexp] type operation_endpointdiscovery = { required : bool option } [@@deriving sexp] type operation = { name : string ; http : http ; input : operation_input option ; output : operation_output option ; errors : operation_error list option ; documentation : string option ; documentationUrl : Uri_sexp.t option ; alias : string option ; deprecated : bool option ; deprecatedMessage : string option ; authtype : string option ; idempotent : bool option ; httpChecksum : httpChecksum option ; endpoint : operation_endpoint option ; endpointdiscovery : operation_endpointdiscovery option } [@@deriving sexp] type shape_member = { shape : string ; deprecated : bool option ; deprecatedMessage : string option ; location : location option ; locationName : string option ; documentation : string option ; xmlNamespace : xmlNamespace option ; streaming : bool option ; xmlAttribute : bool option ; queryName : string option ; box : bool option ; flattened : bool option ; idempotencyToken : bool option ; eventpayload : bool option ; hostLabel : bool option ; jsonvalue : bool option } [@@deriving sexp] type retryable = { throttling : bool } [@@deriving sexp] type structure_shape = { required : string list option ; members : (string * shape_member) list ; error : error option ; exception_ : bool option ; fault : bool option ; documentation : string option ; document : bool option ; payload : string option ; xmlNamespace : xmlNamespace option ; wrapper : bool option ; deprecated : bool option ; deprecatedMessage : string option ; sensitive : bool option ; xmlOrder : string list option ; locationName : string option ; event : bool option ; eventstream : bool option ; retryable : retryable option ; union : bool option ; box : bool option } [@@deriving sexp] let empty_structure_shape = { required = None ; members = [] ; error = None ; exception_ = None ; fault = None ; documentation = None ; document = None ; payload = None ; xmlNamespace = None ; wrapper = None ; deprecated = None ; deprecatedMessage = None ; sensitive = None ; xmlOrder = None ; locationName = None ; event = None ; eventstream = None ; retryable = None ; union = None ; box = None } ;; type map_shape = { key : string ; value : string ; min : int option ; max : int option ; flattened : bool option ; locationName : string option ; documentation : string option ; sensitive : bool option } [@@deriving sexp] type string_shape = { pattern : string option ; min : int option ; max : int option ; sensitive : bool option ; documentation : string option ; deprecated : bool option ; deprecatedMessage : string option } [@@deriving sexp] type list_shape = { member : shape_member ; min : int option ; max : int option ; documentation : string option ; flattened : bool option ; sensitive : bool option ; deprecated : bool option ; deprecatedMessage : string option } [@@deriving sexp] type boolean_shape = { box : bool option ; documentation : string option } [@@deriving sexp] type integer_shape = { box : bool option ; min : int option ; max : int option ; documentation : string option ; deprecated : bool option ; deprecatedMessage : string option } [@@deriving sexp] type long_shape = { box : bool option ; min : Int64.t option ; max : Int64.t option ; documentation : string option } [@@deriving sexp] type float_shape = { box : bool option ; min : float option ; max : float option ; documentation : string option } [@@deriving sexp] type double_shape = { box : bool option ; min : float option ; max : float option ; documentation : string option } [@@deriving sexp] type enum_shape = { cases : string list ; documentation : string option ; min : int option ; max : int option ; pattern : string option ; deprecated : bool option ; deprecatedMessage : string option ; sensitive : bool option } [@@deriving sexp] type blob_shape = { streaming : bool option ; sensitive : bool option ; min : int option ; max : int option ; documentation : string option } [@@deriving sexp] type timestamp_shape = { timestampFormat : timestampFormat option ; documentation : string option } [@@deriving sexp] type shape = | Boolean_shape of boolean_shape | Long_shape of long_shape | Double_shape of double_shape | Float_shape of float_shape (* TODO why does this shape have no extra typing ? *) | Blob_shape of blob_shape | Integer_shape of integer_shape | String_shape of string_shape | List_shape of list_shape | Enum_shape of enum_shape | Structure_shape of structure_shape | Timestamp_shape of timestamp_shape | Map_shape of map_shape [@@deriving sexp] let request_id_shape = String_shape { pattern = Some "A-Za-z[0-9]" ; min = None ; max = None ; sensitive = None ; documentation = None ; deprecated = None ; deprecatedMessage = None } ;; let response_metadata_shape = let members = [ ( "RequestId" , { shape = "RequestId" ; deprecated = None ; deprecatedMessage = None ; location = None ; locationName = None ; documentation = None ; xmlNamespace = None ; streaming = None ; xmlAttribute = None ; queryName = None ; box = None ; flattened = None ; idempotencyToken = None ; eventpayload = None ; hostLabel = None ; jsonvalue = None } ) ] in Structure_shape { empty_structure_shape with members } ;; type service = { metadata : metadata ; documentation : string option ; version : string option ; operations : operation list ; shapes : (string * shape) list } [@@deriving sexp] type value = [ `Boolean of bool | `Long of Int64.t | `Double of float | `Float of float | `Blob of string | `Integer of int | `String of string | `List of value list | `Enum of string | `Structure of (string * value) list | `Timestamp of string | `Map of (value * value) list ] [@@deriving sexp]
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>