aws-sdk 2.1365.0 → 2.1367.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 +15 -1
- package/README.md +1 -1
- package/apis/ec2-2016-11-15.min.json +936 -921
- package/apis/emr-containers-2020-10-01.min.json +52 -0
- package/apis/guardduty-2017-11-28.min.json +100 -69
- package/apis/iotdeviceadvisor-2020-09-18.min.json +13 -4
- package/apis/kafka-2018-11-14.min.json +570 -89
- package/apis/kafka-2018-11-14.paginators.json +12 -0
- package/apis/marketplace-catalog-2018-09-17.paginators.json +4 -2
- package/apis/metadata.json +3 -0
- package/apis/osis-2022-01-01.examples.json +5 -0
- package/apis/osis-2022-01-01.min.json +555 -0
- package/apis/osis-2022-01-01.paginators.json +9 -0
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/ec2.d.ts +75 -52
- package/clients/emrcontainers.d.ts +61 -0
- package/clients/guardduty.d.ts +32 -2
- package/clients/iotdeviceadvisor.d.ts +16 -3
- package/clients/kafka.d.ts +634 -0
- package/clients/lambda.d.ts +1 -1
- package/clients/osis.d.ts +574 -0
- package/clients/osis.js +18 -0
- package/clients/qldb.d.ts +27 -27
- package/clients/sagemaker.d.ts +2 -2
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +51 -13
- package/dist/aws-sdk.js +949 -928
- package/dist/aws-sdk.min.js +72 -72
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/lib/services/sqs.js +3 -2
- package/package.json +1 -1
| @@ -344,6 +344,7 @@ export abstract class ConfigurationServicePlaceholders { | |
| 344 344 | 
             
              internetmonitor?: AWS.InternetMonitor.Types.ClientConfiguration;
         | 
| 345 345 | 
             
              ivsrealtime?: AWS.IVSRealTime.Types.ClientConfiguration;
         | 
| 346 346 | 
             
              vpclattice?: AWS.VPCLattice.Types.ClientConfiguration;
         | 
| 347 | 
            +
              osis?: AWS.OSIS.Types.ClientConfiguration;
         | 
| 347 348 | 
             
            }
         | 
| 348 349 | 
             
            export interface ConfigurationServiceApiVersions {
         | 
| 349 350 | 
             
              acm?: AWS.ACM.Types.apiVersion;
         | 
| @@ -690,4 +691,5 @@ export interface ConfigurationServiceApiVersions { | |
| 690 691 | 
             
              internetmonitor?: AWS.InternetMonitor.Types.apiVersion;
         | 
| 691 692 | 
             
              ivsrealtime?: AWS.IVSRealTime.Types.apiVersion;
         | 
| 692 693 | 
             
              vpclattice?: AWS.VPCLattice.Types.apiVersion;
         | 
| 694 | 
            +
              osis?: AWS.OSIS.Types.apiVersion;
         | 
| 693 695 | 
             
            }
         | 
    
        package/lib/core.js
    CHANGED
    
    
    
        package/lib/services/sqs.js
    CHANGED
    
    | @@ -5,7 +5,7 @@ AWS.util.update(AWS.SQS.prototype, { | |
| 5 5 | 
             
               * @api private
         | 
| 6 6 | 
             
               */
         | 
| 7 7 | 
             
              setupRequestListeners: function setupRequestListeners(request) {
         | 
| 8 | 
            -
                request.addListener('build', this.buildEndpoint);
         | 
| 8 | 
            +
                request.addListener('build', this.buildEndpoint.bind(this));
         | 
| 9 9 |  | 
| 10 10 | 
             
                if (request.service.config.computeChecksums) {
         | 
| 11 11 | 
             
                  if (request.operation === 'sendMessage') {
         | 
| @@ -118,7 +118,8 @@ AWS.util.update(AWS.SQS.prototype, { | |
| 118 118 | 
             
               * @api private
         | 
| 119 119 | 
             
               */
         | 
| 120 120 | 
             
              buildEndpoint: function buildEndpoint(request) {
         | 
| 121 | 
            -
                var  | 
| 121 | 
            +
                var params = request.httpRequest.params || this.config.params;
         | 
| 122 | 
            +
                var url = params.QueueUrl;
         | 
| 122 123 | 
             
                if (url) {
         | 
| 123 124 | 
             
                  request.httpRequest.endpoint = new AWS.Endpoint(url);
         | 
| 124 125 |  |