aws-sdk 2.1374.0 → 2.1376.0
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.
- package/CHANGELOG.md +13 -2
- package/README.md +1 -1
- package/apis/application-autoscaling-2016-02-06.examples.json +3 -0
- package/apis/elasticmapreduce-2009-03-31.min.json +85 -37
- package/apis/glue-2017-03-31.min.json +410 -314
- package/apis/rds-2014-10-31.min.json +9 -3
- package/apis/sagemaker-2017-07-24.min.json +674 -660
- package/apis/swf-2012-01-25.min.json +3 -0
- package/clients/applicationautoscaling.d.ts +35 -35
- package/clients/emr.d.ts +228 -136
- package/clients/glue.d.ts +168 -0
- package/clients/rds.d.ts +26 -10
- package/clients/sagemaker.d.ts +22 -3
- package/clients/swf.d.ts +26 -21
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +6 -6
- package/dist/aws-sdk.js +97 -43
- package/dist/aws-sdk.min.js +55 -55
- package/lib/core.js +1 -1
- package/package.json +1 -1
- package/scripts/lib/ts-generator.js +1 -5
    
        package/CHANGELOG.md
    CHANGED
    
    | @@ -1,9 +1,20 @@ | |
| 1 1 | 
             
            # Changelog for AWS SDK for JavaScript
         | 
| 2 | 
            -
            <!--LATEST=2. | 
| 2 | 
            +
            <!--LATEST=2.1376.0-->
         | 
| 3 3 | 
             
            <!--ENTRYINSERT-->
         | 
| 4 4 |  | 
| 5 | 
            +
            ## 2.1376.0
         | 
| 6 | 
            +
            * bugfix: typings-generator: generate exception shape types
         | 
| 7 | 
            +
            * feature: EMR: EMR Studio now supports programmatically executing a Notebooks on an EMR on EKS cluster.  In addition, notebooks can now be executed by specifying its location in S3.
         | 
| 8 | 
            +
            * feature: RDS: Amazon Relational Database Service (RDS) updates for the new Aurora I/O-Optimized storage type for Amazon Aurora DB clusters
         | 
| 9 | 
            +
            * feature: SWF: This release adds a new API parameter to exclude old history events from decision tasks.
         | 
| 10 | 
            +
             | 
| 11 | 
            +
            ## 2.1375.0
         | 
| 12 | 
            +
            * feature: ApplicationAutoScaling: With this release, Amazon SageMaker Serverless Inference customers can use Application Auto Scaling to auto scale the provisioned concurrency of their serverless endpoints.
         | 
| 13 | 
            +
            * feature: Glue: This release adds AmazonRedshift Source and Target nodes in addition to DynamicTransform OutputSchemas
         | 
| 14 | 
            +
            * feature: SageMaker: This release includes support for (1) Provisioned Concurrency for Amazon SageMaker Serverless Inference and (2) UpdateEndpointWeightsAndCapacities API for Serverless endpoints.
         | 
| 15 | 
            +
             | 
| 5 16 | 
             
            ## 2.1374.0
         | 
| 6 | 
            -
            * feature: Glue:  | 
| 17 | 
            +
            * feature: Glue: Support large worker types G.4x and G.8x for Glue Spark
         | 
| 7 18 | 
             
            * feature: GuardDuty: Add AccessDeniedException 403 Error message code to support 3 Tagging related APIs
         | 
| 8 19 | 
             
            * feature: IoTSiteWise: Provide support for 20,000 max results for GetAssetPropertyValueHistory/BatchGetAssetPropertyValueHistory and 15 minute aggregate resolution for GetAssetPropertyAggregates/BatchGetAssetPropertyAggregates
         | 
| 9 20 | 
             
            * feature: STS: Documentation updates for AWS Security Token Service.
         | 
    
        package/README.md
    CHANGED
    
    | @@ -72,7 +72,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true; | |
| 72 72 | 
             
            To use the SDK in the browser, simply add the following script tag to your
         | 
| 73 73 | 
             
            HTML pages:
         | 
| 74 74 |  | 
| 75 | 
            -
                <script src="https://sdk.amazonaws.com/js/aws-sdk-2. | 
| 75 | 
            +
                <script src="https://sdk.amazonaws.com/js/aws-sdk-2.1376.0.min.js"></script>
         | 
| 76 76 |  | 
| 77 77 | 
             
            You can also build a custom browser SDK with your specified set of AWS services.
         | 
| 78 78 | 
             
            This can allow you to reduce the SDK's size, specify different API versions of
         | 
| @@ -319,6 +319,9 @@ | |
| 319 319 | 
             
                      "ScalableDimension": "ecs:service:DesiredCount",
         | 
| 320 320 | 
             
                      "ServiceNamespace": "ecs"
         | 
| 321 321 | 
             
                    },
         | 
| 322 | 
            +
                    "output": {
         | 
| 323 | 
            +
                      "ScalableTargetARN": "arn:aws:application-autoscaling:us-east-1:123456789012:scalable-target/1234abcd56ab78cd901ef1234567890ab123"
         | 
| 324 | 
            +
                    },
         | 
| 322 325 | 
             
                    "comments": {
         | 
| 323 326 | 
             
                      "input": {
         | 
| 324 327 | 
             
                      },
         | 
| @@ -597,6 +597,20 @@ | |
| 597 597 | 
             
                          "NotebookInstanceSecurityGroupId": {},
         | 
| 598 598 | 
             
                          "Tags": {
         | 
| 599 599 | 
             
                            "shape": "S1y"
         | 
| 600 | 
            +
                          },
         | 
| 601 | 
            +
                          "NotebookS3Location": {
         | 
| 602 | 
            +
                            "shape": "S43"
         | 
| 603 | 
            +
                          },
         | 
| 604 | 
            +
                          "OutputNotebookS3Location": {
         | 
| 605 | 
            +
                            "type": "structure",
         | 
| 606 | 
            +
                            "members": {
         | 
| 607 | 
            +
                              "Bucket": {},
         | 
| 608 | 
            +
                              "Key": {}
         | 
| 609 | 
            +
                            }
         | 
| 610 | 
            +
                          },
         | 
| 611 | 
            +
                          "OutputNotebookFormat": {},
         | 
| 612 | 
            +
                          "EnvironmentVariables": {
         | 
| 613 | 
            +
                            "shape": "S47"
         | 
| 600 614 | 
             
                          }
         | 
| 601 615 | 
             
                        }
         | 
| 602 616 | 
             
                      }
         | 
| @@ -683,11 +697,11 @@ | |
| 683 697 | 
             
                          "Id": {},
         | 
| 684 698 | 
             
                          "Name": {},
         | 
| 685 699 | 
             
                          "Config": {
         | 
| 686 | 
            -
                            "shape": " | 
| 700 | 
            +
                            "shape": "S4k"
         | 
| 687 701 | 
             
                          },
         | 
| 688 702 | 
             
                          "ActionOnFailure": {},
         | 
| 689 703 | 
             
                          "Status": {
         | 
| 690 | 
            -
                            "shape": " | 
| 704 | 
            +
                            "shape": "S4l"
         | 
| 691 705 | 
             
                          },
         | 
| 692 706 | 
             
                          "ExecutionRoleArn": {}
         | 
| 693 707 | 
             
                        }
         | 
| @@ -753,7 +767,7 @@ | |
| 753 767 | 
             
                    "type": "structure",
         | 
| 754 768 | 
             
                    "members": {
         | 
| 755 769 | 
             
                      "AutoTerminationPolicy": {
         | 
| 756 | 
            -
                        "shape": " | 
| 770 | 
            +
                        "shape": "S4w"
         | 
| 757 771 | 
             
                      }
         | 
| 758 772 | 
             
                    }
         | 
| 759 773 | 
             
                  }
         | 
| @@ -771,7 +785,7 @@ | |
| 771 785 | 
             
                    ],
         | 
| 772 786 | 
             
                    "members": {
         | 
| 773 787 | 
             
                      "BlockPublicAccessConfiguration": {
         | 
| 774 | 
            -
                        "shape": " | 
| 788 | 
            +
                        "shape": "S50"
         | 
| 775 789 | 
             
                      },
         | 
| 776 790 | 
             
                      "BlockPublicAccessConfigurationMetadata": {
         | 
| 777 791 | 
             
                        "type": "structure",
         | 
| @@ -838,7 +852,7 @@ | |
| 838 852 | 
             
                    "type": "structure",
         | 
| 839 853 | 
             
                    "members": {
         | 
| 840 854 | 
             
                      "ManagedScalingPolicy": {
         | 
| 841 | 
            -
                        "shape": " | 
| 855 | 
            +
                        "shape": "S5b"
         | 
| 842 856 | 
             
                      }
         | 
| 843 857 | 
             
                    }
         | 
| 844 858 | 
             
                  }
         | 
| @@ -1030,7 +1044,7 @@ | |
| 1030 1044 | 
             
                                    "shape": "Si"
         | 
| 1031 1045 | 
             
                                  },
         | 
| 1032 1046 | 
             
                                  "EbsBlockDevices": {
         | 
| 1033 | 
            -
                                    "shape": " | 
| 1047 | 
            +
                                    "shape": "S62"
         | 
| 1034 1048 | 
             
                                  },
         | 
| 1035 1049 | 
             
                                  "EbsOptimized": {
         | 
| 1036 1050 | 
             
                                    "type": "boolean"
         | 
| @@ -1123,16 +1137,16 @@ | |
| 1123 1137 | 
             
                              "type": "long"
         | 
| 1124 1138 | 
             
                            },
         | 
| 1125 1139 | 
             
                            "EbsBlockDevices": {
         | 
| 1126 | 
            -
                              "shape": " | 
| 1140 | 
            +
                              "shape": "S62"
         | 
| 1127 1141 | 
             
                            },
         | 
| 1128 1142 | 
             
                            "EbsOptimized": {
         | 
| 1129 1143 | 
             
                              "type": "boolean"
         | 
| 1130 1144 | 
             
                            },
         | 
| 1131 1145 | 
             
                            "ShrinkPolicy": {
         | 
| 1132 | 
            -
                              "shape": " | 
| 1146 | 
            +
                              "shape": "S6e"
         | 
| 1133 1147 | 
             
                            },
         | 
| 1134 1148 | 
             
                            "AutoScalingPolicy": {
         | 
| 1135 | 
            -
                              "shape": " | 
| 1149 | 
            +
                              "shape": "S6i"
         | 
| 1136 1150 | 
             
                            },
         | 
| 1137 1151 | 
             
                            "CustomAmiId": {}
         | 
| 1138 1152 | 
             
                          }
         | 
| @@ -1238,7 +1252,8 @@ | |
| 1238 1252 | 
             
                      "To": {
         | 
| 1239 1253 | 
             
                        "type": "timestamp"
         | 
| 1240 1254 | 
             
                      },
         | 
| 1241 | 
            -
                      "Marker": {}
         | 
| 1255 | 
            +
                      "Marker": {},
         | 
| 1256 | 
            +
                      "ExecutionEngineId": {}
         | 
| 1242 1257 | 
             
                    }
         | 
| 1243 1258 | 
             
                  },
         | 
| 1244 1259 | 
             
                  "output": {
         | 
| @@ -1258,7 +1273,11 @@ | |
| 1258 1273 | 
             
                            },
         | 
| 1259 1274 | 
             
                            "EndTime": {
         | 
| 1260 1275 | 
             
                              "type": "timestamp"
         | 
| 1261 | 
            -
                            }
         | 
| 1276 | 
            +
                            },
         | 
| 1277 | 
            +
                            "NotebookS3Location": {
         | 
| 1278 | 
            +
                              "shape": "S43"
         | 
| 1279 | 
            +
                            },
         | 
| 1280 | 
            +
                            "ExecutionEngineId": {}
         | 
| 1262 1281 | 
             
                          }
         | 
| 1263 1282 | 
             
                        }
         | 
| 1264 1283 | 
             
                      },
         | 
| @@ -1348,11 +1367,11 @@ | |
| 1348 1367 | 
             
                            "Id": {},
         | 
| 1349 1368 | 
             
                            "Name": {},
         | 
| 1350 1369 | 
             
                            "Config": {
         | 
| 1351 | 
            -
                              "shape": " | 
| 1370 | 
            +
                              "shape": "S4k"
         | 
| 1352 1371 | 
             
                            },
         | 
| 1353 1372 | 
             
                            "ActionOnFailure": {},
         | 
| 1354 1373 | 
             
                            "Status": {
         | 
| 1355 | 
            -
                              "shape": " | 
| 1374 | 
            +
                              "shape": "S4l"
         | 
| 1356 1375 | 
             
                            }
         | 
| 1357 1376 | 
             
                          }
         | 
| 1358 1377 | 
             
                        }
         | 
| @@ -1498,7 +1517,7 @@ | |
| 1498 1517 | 
             
                              "member": {}
         | 
| 1499 1518 | 
             
                            },
         | 
| 1500 1519 | 
             
                            "ShrinkPolicy": {
         | 
| 1501 | 
            -
                              "shape": " | 
| 1520 | 
            +
                              "shape": "S6e"
         | 
| 1502 1521 | 
             
                            },
         | 
| 1503 1522 | 
             
                            "ReconfigurationType": {},
         | 
| 1504 1523 | 
             
                            "Configurations": {
         | 
| @@ -1532,7 +1551,7 @@ | |
| 1532 1551 | 
             
                      "ClusterId": {},
         | 
| 1533 1552 | 
             
                      "InstanceGroupId": {},
         | 
| 1534 1553 | 
             
                      "AutoScalingPolicy": {
         | 
| 1535 | 
            -
                        "shape": " | 
| 1554 | 
            +
                        "shape": "S6i"
         | 
| 1536 1555 | 
             
                      },
         | 
| 1537 1556 | 
             
                      "ClusterArn": {}
         | 
| 1538 1557 | 
             
                    }
         | 
| @@ -1547,7 +1566,7 @@ | |
| 1547 1566 | 
             
                    "members": {
         | 
| 1548 1567 | 
             
                      "ClusterId": {},
         | 
| 1549 1568 | 
             
                      "AutoTerminationPolicy": {
         | 
| 1550 | 
            -
                        "shape": " | 
| 1569 | 
            +
                        "shape": "S4w"
         | 
| 1551 1570 | 
             
                      }
         | 
| 1552 1571 | 
             
                    }
         | 
| 1553 1572 | 
             
                  },
         | 
| @@ -1564,7 +1583,7 @@ | |
| 1564 1583 | 
             
                    ],
         | 
| 1565 1584 | 
             
                    "members": {
         | 
| 1566 1585 | 
             
                      "BlockPublicAccessConfiguration": {
         | 
| 1567 | 
            -
                        "shape": " | 
| 1586 | 
            +
                        "shape": "S50"
         | 
| 1568 1587 | 
             
                      }
         | 
| 1569 1588 | 
             
                    }
         | 
| 1570 1589 | 
             
                  },
         | 
| @@ -1583,7 +1602,7 @@ | |
| 1583 1602 | 
             
                    "members": {
         | 
| 1584 1603 | 
             
                      "ClusterId": {},
         | 
| 1585 1604 | 
             
                      "ManagedScalingPolicy": {
         | 
| 1586 | 
            -
                        "shape": " | 
| 1605 | 
            +
                        "shape": "S5b"
         | 
| 1587 1606 | 
             
                      }
         | 
| 1588 1607 | 
             
                    }
         | 
| 1589 1608 | 
             
                  },
         | 
| @@ -1708,10 +1727,10 @@ | |
| 1708 1727 | 
             
                          "EmrManagedSlaveSecurityGroup": {},
         | 
| 1709 1728 | 
             
                          "ServiceAccessSecurityGroup": {},
         | 
| 1710 1729 | 
             
                          "AdditionalMasterSecurityGroups": {
         | 
| 1711 | 
            -
                            "shape": " | 
| 1730 | 
            +
                            "shape": "S8g"
         | 
| 1712 1731 | 
             
                          },
         | 
| 1713 1732 | 
             
                          "AdditionalSlaveSecurityGroups": {
         | 
| 1714 | 
            -
                            "shape": " | 
| 1733 | 
            +
                            "shape": "S8g"
         | 
| 1715 1734 | 
             
                          }
         | 
| 1716 1735 | 
             
                        }
         | 
| 1717 1736 | 
             
                      },
         | 
| @@ -1768,13 +1787,13 @@ | |
| 1768 1787 | 
             
                        "type": "integer"
         | 
| 1769 1788 | 
             
                      },
         | 
| 1770 1789 | 
             
                      "ManagedScalingPolicy": {
         | 
| 1771 | 
            -
                        "shape": " | 
| 1790 | 
            +
                        "shape": "S5b"
         | 
| 1772 1791 | 
             
                      },
         | 
| 1773 1792 | 
             
                      "PlacementGroupConfigs": {
         | 
| 1774 1793 | 
             
                        "shape": "S38"
         | 
| 1775 1794 | 
             
                      },
         | 
| 1776 1795 | 
             
                      "AutoTerminationPolicy": {
         | 
| 1777 | 
            -
                        "shape": " | 
| 1796 | 
            +
                        "shape": "S4w"
         | 
| 1778 1797 | 
             
                      },
         | 
| 1779 1798 | 
             
                      "OSReleaseLabel": {}
         | 
| 1780 1799 | 
             
                    }
         | 
| @@ -1825,8 +1844,6 @@ | |
| 1825 1844 | 
             
                  "input": {
         | 
| 1826 1845 | 
             
                    "type": "structure",
         | 
| 1827 1846 | 
             
                    "required": [
         | 
| 1828 | 
            -
                      "EditorId",
         | 
| 1829 | 
            -
                      "RelativePath",
         | 
| 1830 1847 | 
             
                      "ExecutionEngine",
         | 
| 1831 1848 | 
             
                      "ServiceRole"
         | 
| 1832 1849 | 
             
                    ],
         | 
| @@ -1842,6 +1859,24 @@ | |
| 1842 1859 | 
             
                      "NotebookInstanceSecurityGroupId": {},
         | 
| 1843 1860 | 
             
                      "Tags": {
         | 
| 1844 1861 | 
             
                        "shape": "S1y"
         | 
| 1862 | 
            +
                      },
         | 
| 1863 | 
            +
                      "NotebookS3Location": {
         | 
| 1864 | 
            +
                        "type": "structure",
         | 
| 1865 | 
            +
                        "members": {
         | 
| 1866 | 
            +
                          "Bucket": {},
         | 
| 1867 | 
            +
                          "Key": {}
         | 
| 1868 | 
            +
                        }
         | 
| 1869 | 
            +
                      },
         | 
| 1870 | 
            +
                      "OutputNotebookS3Location": {
         | 
| 1871 | 
            +
                        "type": "structure",
         | 
| 1872 | 
            +
                        "members": {
         | 
| 1873 | 
            +
                          "Bucket": {},
         | 
| 1874 | 
            +
                          "Key": {}
         | 
| 1875 | 
            +
                        }
         | 
| 1876 | 
            +
                      },
         | 
| 1877 | 
            +
                      "OutputNotebookFormat": {},
         | 
| 1878 | 
            +
                      "EnvironmentVariables": {
         | 
| 1879 | 
            +
                        "shape": "S47"
         | 
| 1845 1880 | 
             
                      }
         | 
| 1846 1881 | 
             
                    }
         | 
| 1847 1882 | 
             
                  },
         | 
| @@ -2432,10 +2467,23 @@ | |
| 2432 2467 | 
             
                  "members": {
         | 
| 2433 2468 | 
             
                    "Id": {},
         | 
| 2434 2469 | 
             
                    "Type": {},
         | 
| 2435 | 
            -
                    "MasterInstanceSecurityGroupId": {}
         | 
| 2470 | 
            +
                    "MasterInstanceSecurityGroupId": {},
         | 
| 2471 | 
            +
                    "ExecutionRoleArn": {}
         | 
| 2436 2472 | 
             
                  }
         | 
| 2437 2473 | 
             
                },
         | 
| 2438 | 
            -
                " | 
| 2474 | 
            +
                "S43": {
         | 
| 2475 | 
            +
                  "type": "structure",
         | 
| 2476 | 
            +
                  "members": {
         | 
| 2477 | 
            +
                    "Bucket": {},
         | 
| 2478 | 
            +
                    "Key": {}
         | 
| 2479 | 
            +
                  }
         | 
| 2480 | 
            +
                },
         | 
| 2481 | 
            +
                "S47": {
         | 
| 2482 | 
            +
                  "type": "map",
         | 
| 2483 | 
            +
                  "key": {},
         | 
| 2484 | 
            +
                  "value": {}
         | 
| 2485 | 
            +
                },
         | 
| 2486 | 
            +
                "S4k": {
         | 
| 2439 2487 | 
             
                  "type": "structure",
         | 
| 2440 2488 | 
             
                  "members": {
         | 
| 2441 2489 | 
             
                    "Jar": {},
         | 
| @@ -2448,7 +2496,7 @@ | |
| 2448 2496 | 
             
                    }
         | 
| 2449 2497 | 
             
                  }
         | 
| 2450 2498 | 
             
                },
         | 
| 2451 | 
            -
                " | 
| 2499 | 
            +
                "S4l": {
         | 
| 2452 2500 | 
             
                  "type": "structure",
         | 
| 2453 2501 | 
             
                  "members": {
         | 
| 2454 2502 | 
             
                    "State": {},
         | 
| @@ -2483,7 +2531,7 @@ | |
| 2483 2531 | 
             
                    }
         | 
| 2484 2532 | 
             
                  }
         | 
| 2485 2533 | 
             
                },
         | 
| 2486 | 
            -
                " | 
| 2534 | 
            +
                "S4w": {
         | 
| 2487 2535 | 
             
                  "type": "structure",
         | 
| 2488 2536 | 
             
                  "members": {
         | 
| 2489 2537 | 
             
                    "IdleTimeout": {
         | 
| @@ -2491,7 +2539,7 @@ | |
| 2491 2539 | 
             
                    }
         | 
| 2492 2540 | 
             
                  }
         | 
| 2493 2541 | 
             
                },
         | 
| 2494 | 
            -
                " | 
| 2542 | 
            +
                "S50": {
         | 
| 2495 2543 | 
             
                  "type": "structure",
         | 
| 2496 2544 | 
             
                  "required": [
         | 
| 2497 2545 | 
             
                    "BlockPublicSecurityGroupRules"
         | 
| @@ -2519,7 +2567,7 @@ | |
| 2519 2567 | 
             
                    }
         | 
| 2520 2568 | 
             
                  }
         | 
| 2521 2569 | 
             
                },
         | 
| 2522 | 
            -
                " | 
| 2570 | 
            +
                "S5b": {
         | 
| 2523 2571 | 
             
                  "type": "structure",
         | 
| 2524 2572 | 
             
                  "members": {
         | 
| 2525 2573 | 
             
                    "ComputeLimits": {
         | 
| @@ -2547,7 +2595,7 @@ | |
| 2547 2595 | 
             
                    }
         | 
| 2548 2596 | 
             
                  }
         | 
| 2549 2597 | 
             
                },
         | 
| 2550 | 
            -
                " | 
| 2598 | 
            +
                "S62": {
         | 
| 2551 2599 | 
             
                  "type": "list",
         | 
| 2552 2600 | 
             
                  "member": {
         | 
| 2553 2601 | 
             
                    "type": "structure",
         | 
| @@ -2559,7 +2607,7 @@ | |
| 2559 2607 | 
             
                    }
         | 
| 2560 2608 | 
             
                  }
         | 
| 2561 2609 | 
             
                },
         | 
| 2562 | 
            -
                " | 
| 2610 | 
            +
                "S6e": {
         | 
| 2563 2611 | 
             
                  "type": "structure",
         | 
| 2564 2612 | 
             
                  "members": {
         | 
| 2565 2613 | 
             
                    "DecommissionTimeout": {
         | 
| @@ -2569,10 +2617,10 @@ | |
| 2569 2617 | 
             
                      "type": "structure",
         | 
| 2570 2618 | 
             
                      "members": {
         | 
| 2571 2619 | 
             
                        "InstancesToTerminate": {
         | 
| 2572 | 
            -
                          "shape": " | 
| 2620 | 
            +
                          "shape": "S6g"
         | 
| 2573 2621 | 
             
                        },
         | 
| 2574 2622 | 
             
                        "InstancesToProtect": {
         | 
| 2575 | 
            -
                          "shape": " | 
| 2623 | 
            +
                          "shape": "S6g"
         | 
| 2576 2624 | 
             
                        },
         | 
| 2577 2625 | 
             
                        "InstanceTerminationTimeout": {
         | 
| 2578 2626 | 
             
                          "type": "integer"
         | 
| @@ -2581,11 +2629,11 @@ | |
| 2581 2629 | 
             
                    }
         | 
| 2582 2630 | 
             
                  }
         | 
| 2583 2631 | 
             
                },
         | 
| 2584 | 
            -
                " | 
| 2632 | 
            +
                "S6g": {
         | 
| 2585 2633 | 
             
                  "type": "list",
         | 
| 2586 2634 | 
             
                  "member": {}
         | 
| 2587 2635 | 
             
                },
         | 
| 2588 | 
            -
                " | 
| 2636 | 
            +
                "S6i": {
         | 
| 2589 2637 | 
             
                  "type": "structure",
         | 
| 2590 2638 | 
             
                  "members": {
         | 
| 2591 2639 | 
             
                    "Status": {
         | 
| @@ -2609,7 +2657,7 @@ | |
| 2609 2657 | 
             
                    }
         | 
| 2610 2658 | 
             
                  }
         | 
| 2611 2659 | 
             
                },
         | 
| 2612 | 
            -
                " | 
| 2660 | 
            +
                "S8g": {
         | 
| 2613 2661 | 
             
                  "type": "list",
         | 
| 2614 2662 | 
             
                  "member": {}
         | 
| 2615 2663 | 
             
                }
         |