aws-sdk 2.1376.0 → 2.1377.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 +11 -1
- package/README.md +1 -1
- package/apis/elasticache-2015-02-02.min.json +147 -143
- package/apis/ivs-realtime-2020-07-14.min.json +223 -0
- package/apis/ivs-realtime-2020-07-14.paginators.json +15 -0
- package/apis/omics-2022-11-28.min.json +1393 -897
- package/apis/omics-2022-11-28.paginators.json +12 -0
- package/apis/support-2013-04-15.min.json +97 -14
- package/clients/connect.d.ts +6 -6
- package/clients/elasticache.d.ts +25 -8
- package/clients/es.d.ts +1 -1
- package/clients/health.d.ts +19 -19
- package/clients/ivsrealtime.d.ts +292 -8
- package/clients/omics.d.ts +1451 -965
- package/clients/support.d.ts +134 -7
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +7 -7
- package/dist/aws-sdk.js +150 -146
- package/dist/aws-sdk.min.js +58 -58
- package/lib/core.js +1 -1
- package/package.json +1 -1
    
        package/CHANGELOG.md
    CHANGED
    
    | @@ -1,7 +1,17 @@ | |
| 1 1 | 
             
            # Changelog for AWS SDK for JavaScript
         | 
| 2 | 
            -
            <!--LATEST=2. | 
| 2 | 
            +
            <!--LATEST=2.1377.0-->
         | 
| 3 3 | 
             
            <!--ENTRYINSERT-->
         | 
| 4 4 |  | 
| 5 | 
            +
            ## 2.1377.0
         | 
| 6 | 
            +
            * feature: ES: This release fixes DescribePackages API error with null filter value parameter.
         | 
| 7 | 
            +
            * feature: ElastiCache: Added support to modify the cluster mode configuration for the existing ElastiCache ReplicationGroups. Customers can now modify the configuration from cluster mode disabled to cluster mode enabled.
         | 
| 8 | 
            +
            * feature: Health: Add support for regional endpoints
         | 
| 9 | 
            +
            * feature: IVSRealTime: Add methods for inspecting and debugging stages: ListStageSessions, GetStageSession, ListParticipants, GetParticipant, and ListParticipantEvents.
         | 
| 10 | 
            +
            * feature: Omics: This release provides support for Ready2Run and GPU workflows, an improved read set filter, the direct upload of read sets into Omics Storage, and annotation parsing for analytics stores.
         | 
| 11 | 
            +
            * feature: OpenSearch: This release fixes DescribePackages API error with null filter value parameter.
         | 
| 12 | 
            +
            * feature: Route53Resolver: Update FIPS endpoints for GovCloud (US) regions in SDK.
         | 
| 13 | 
            +
            * feature: Support: This release adds 2 new Support APIs, DescribeCreateCaseOptions and DescribeSupportedLanguages. You can use these new APIs to get available support languages.
         | 
| 14 | 
            +
             | 
| 5 15 | 
             
            ## 2.1376.0
         | 
| 6 16 | 
             
            * bugfix: typings-generator: generate exception shape types
         | 
| 7 17 | 
             
            * 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.
         | 
    
        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.1377.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
         |