aws-sdk 2.801.0 → 2.805.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 +25 -1
- package/README.md +1 -1
- package/apis/amplifybackend-2020-08-11.min.json +0 -8
- package/apis/batch-2016-08-10.min.json +81 -21
- package/apis/compute-optimizer-2019-11-01.min.json +110 -0
- package/apis/{profile-2020-08-15.examples.json → customer-profiles-2020-08-15.examples.json} +0 -0
- package/apis/{profile-2020-08-15.min.json → customer-profiles-2020-08-15.min.json} +3 -3
- package/apis/{profile-2020-08-15.paginators.json → customer-profiles-2020-08-15.paginators.json} +0 -0
- package/apis/dms-2016-01-01.min.json +9 -1
- package/apis/ec2-2016-11-15.min.json +4 -0
- package/apis/lambda-2015-03-31.examples.json +6 -6
- package/apis/license-manager-2018-08-01.min.json +957 -51
- package/apis/medialive-2017-10-14.min.json +240 -158
- package/apis/metadata.json +4 -3
- package/apis/rds-2014-10-31.min.json +200 -132
- package/apis/servicecatalog-appregistry-2020-06-24.min.json +80 -0
- package/apis/ssm-2014-11-06.min.json +348 -203
- package/clients/all.d.ts +1 -1
- package/clients/all.js +2 -2
- package/clients/amplifybackend.d.ts +74 -74
- package/clients/batch.d.ts +200 -133
- package/clients/computeoptimizer.d.ts +179 -22
- package/clients/{profile.d.ts → customerprofiles.d.ts} +63 -63
- package/clients/customerprofiles.js +18 -0
- package/clients/directoryservice.d.ts +24 -21
- package/clients/dms.d.ts +16 -0
- package/clients/ec2.d.ts +6 -2
- package/clients/kafka.d.ts +4 -4
- package/clients/lambda.d.ts +10 -10
- package/clients/licensemanager.d.ts +1350 -72
- package/clients/medialive.d.ts +80 -1
- package/clients/rds.d.ts +128 -43
- package/clients/servicecatalogappregistry.d.ts +61 -0
- package/clients/ssm.d.ts +197 -10
- package/clients/workspaces.d.ts +10 -10
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +31 -27
- package/dist/aws-sdk.js +565 -343
- package/dist/aws-sdk.min.js +60 -60
- package/lib/config_service_placeholders.d.ts +2 -2
- package/lib/core.js +1 -1
- package/lib/services/s3.js +6 -2
- package/package.json +1 -1
- package/clients/profile.js +0 -18
|
@@ -244,8 +244,8 @@ export abstract class ConfigurationServicePlaceholders {
|
|
|
244
244
|
devopsguru?: AWS.DevOpsGuru.Types.ClientConfiguration;
|
|
245
245
|
ecrpublic?: AWS.ECRPUBLIC.Types.ClientConfiguration;
|
|
246
246
|
lookoutvision?: AWS.LookoutVision.Types.ClientConfiguration;
|
|
247
|
-
profile?: AWS.Profile.Types.ClientConfiguration;
|
|
248
247
|
sagemakerfeaturestoreruntime?: AWS.SageMakerFeatureStoreRuntime.Types.ClientConfiguration;
|
|
248
|
+
customerprofiles?: AWS.CustomerProfiles.Types.ClientConfiguration;
|
|
249
249
|
}
|
|
250
250
|
export interface ConfigurationServiceApiVersions {
|
|
251
251
|
acm?: AWS.ACM.Types.apiVersion;
|
|
@@ -492,6 +492,6 @@ export interface ConfigurationServiceApiVersions {
|
|
|
492
492
|
devopsguru?: AWS.DevOpsGuru.Types.apiVersion;
|
|
493
493
|
ecrpublic?: AWS.ECRPUBLIC.Types.apiVersion;
|
|
494
494
|
lookoutvision?: AWS.LookoutVision.Types.apiVersion;
|
|
495
|
-
profile?: AWS.Profile.Types.apiVersion;
|
|
496
495
|
sagemakerfeaturestoreruntime?: AWS.SageMakerFeatureStoreRuntime.Types.apiVersion;
|
|
496
|
+
customerprofiles?: AWS.CustomerProfiles.Types.apiVersion;
|
|
497
497
|
}
|
package/lib/core.js
CHANGED
package/lib/services/s3.js
CHANGED
|
@@ -1079,9 +1079,13 @@ AWS.util.update(AWS.S3.prototype, {
|
|
|
1079
1079
|
config.getCredentials(function (err) {
|
|
1080
1080
|
if (err) {
|
|
1081
1081
|
callback(err);
|
|
1082
|
+
} else {
|
|
1083
|
+
try {
|
|
1084
|
+
callback(null, finalizePost());
|
|
1085
|
+
} catch (err) {
|
|
1086
|
+
callback(err);
|
|
1087
|
+
}
|
|
1082
1088
|
}
|
|
1083
|
-
|
|
1084
|
-
callback(null, finalizePost());
|
|
1085
1089
|
});
|
|
1086
1090
|
} else {
|
|
1087
1091
|
return finalizePost();
|
package/package.json
CHANGED
package/clients/profile.js
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
require('../lib/node_loader');
|
|
2
|
-
var AWS = require('../lib/core');
|
|
3
|
-
var Service = AWS.Service;
|
|
4
|
-
var apiLoader = AWS.apiLoader;
|
|
5
|
-
|
|
6
|
-
apiLoader.services['profile'] = {};
|
|
7
|
-
AWS.Profile = Service.defineService('profile', ['2020-08-15']);
|
|
8
|
-
Object.defineProperty(apiLoader.services['profile'], '2020-08-15', {
|
|
9
|
-
get: function get() {
|
|
10
|
-
var model = require('../apis/profile-2020-08-15.min.json');
|
|
11
|
-
model.paginators = require('../apis/profile-2020-08-15.paginators.json').pagination;
|
|
12
|
-
return model;
|
|
13
|
-
},
|
|
14
|
-
enumerable: true,
|
|
15
|
-
configurable: true
|
|
16
|
-
});
|
|
17
|
-
|
|
18
|
-
module.exports = AWS.Profile;
|