cdk-docker-image-deployment 0.0.6 → 0.0.9
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/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +4 -4
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +20 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.examples.json +5 -0
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.min.json +337 -335
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.paginators.json +1 -1
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.waiters2.json +5 -0
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +4 -0
- package/node_modules/aws-sdk/apis/emr-containers-2020-10-01.min.json +34 -19
- package/node_modules/aws-sdk/apis/inspector2-2020-06-08.min.json +10 -2
- package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +2 -1
- package/node_modules/aws-sdk/apis/lookoutmetrics-2017-07-25.min.json +39 -11
- package/node_modules/aws-sdk/apis/medialive-2017-10-14.min.json +249 -213
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +705 -695
- package/node_modules/aws-sdk/apis/sns-2010-03-31.min.json +42 -10
- package/node_modules/aws-sdk/apis/ssm-2014-11-06.min.json +3 -0
- package/node_modules/aws-sdk/clients/dataexchange.d.ts +13 -13
- package/node_modules/aws-sdk/clients/dataexchange.js +1 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +48 -40
- package/node_modules/aws-sdk/clients/eks.d.ts +7 -7
- package/node_modules/aws-sdk/clients/emrcontainers.d.ts +16 -1
- package/node_modules/aws-sdk/clients/fsx.d.ts +2 -2
- package/node_modules/aws-sdk/clients/inspector2.d.ts +16 -2
- package/node_modules/aws-sdk/clients/iotsitewise.d.ts +12 -8
- package/node_modules/aws-sdk/clients/lookoutmetrics.d.ts +35 -0
- package/node_modules/aws-sdk/clients/medialive.d.ts +38 -0
- package/node_modules/aws-sdk/clients/route53.d.ts +2 -2
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +23 -3
- package/node_modules/aws-sdk/clients/sns.d.ts +42 -0
- package/node_modules/aws-sdk/clients/ssm.d.ts +10 -6
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +755 -748
- package/node_modules/aws-sdk/dist/aws-sdk.js +52 -13
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +69 -69
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/credentials/sso_credentials.d.ts +2 -0
- package/node_modules/aws-sdk/lib/credentials/sso_credentials.js +5 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +6 -6
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import {Credentials} from '../credentials';
|
|
2
2
|
import SSO = require('../../clients/sso');
|
|
3
|
+
import { HTTPOptions } from '../config-base';
|
|
3
4
|
export class SsoCredentials extends Credentials {
|
|
4
5
|
/**
|
|
5
6
|
* Creates a new SsoCredentials object.
|
|
@@ -8,6 +9,7 @@ export class SsoCredentials extends Credentials {
|
|
|
8
9
|
}
|
|
9
10
|
|
|
10
11
|
interface SsoCredentialsOptions {
|
|
12
|
+
httpOptions?: HTTPOptions,
|
|
11
13
|
profile?: string;
|
|
12
14
|
filename?: string;
|
|
13
15
|
ssoClient?: SSO;
|
|
@@ -60,6 +60,7 @@ AWS.SsoCredentials = AWS.util.inherit(AWS.Credentials, {
|
|
|
60
60
|
this.filename = options.filename;
|
|
61
61
|
this.profile = options.profile || process.env.AWS_PROFILE || AWS.util.defaultProfile;
|
|
62
62
|
this.service = options.ssoClient;
|
|
63
|
+
this.httpOptions = options.httpOptions || null;
|
|
63
64
|
this.get(options.callback || AWS.util.fn.noop);
|
|
64
65
|
},
|
|
65
66
|
|
|
@@ -130,7 +131,10 @@ AWS.SsoCredentials = AWS.util.inherit(AWS.Credentials, {
|
|
|
130
131
|
}
|
|
131
132
|
|
|
132
133
|
if (!self.service || self.service.config.region !== profile.sso_region) {
|
|
133
|
-
self.service = new AWS.SSO({
|
|
134
|
+
self.service = new AWS.SSO({
|
|
135
|
+
region: profile.sso_region,
|
|
136
|
+
httpOptions: this.httpOptions,
|
|
137
|
+
});
|
|
134
138
|
}
|
|
135
139
|
var request = {
|
|
136
140
|
accessToken: cacheContent.accessToken,
|
package/package.json
CHANGED
|
@@ -48,20 +48,20 @@
|
|
|
48
48
|
"esbuild": "^0.15.7",
|
|
49
49
|
"eslint": "^8",
|
|
50
50
|
"eslint-import-resolver-node": "^0.3.6",
|
|
51
|
-
"eslint-import-resolver-typescript": "^3.5.
|
|
51
|
+
"eslint-import-resolver-typescript": "^3.5.1",
|
|
52
52
|
"eslint-plugin-import": "^2.26.0",
|
|
53
53
|
"jest": "^27",
|
|
54
54
|
"jest-junit": "^13",
|
|
55
55
|
"jsii": "^1.67.0",
|
|
56
56
|
"jsii-diff": "^1.67.0",
|
|
57
|
-
"jsii-docgen": "^7.0.
|
|
57
|
+
"jsii-docgen": "^7.0.78",
|
|
58
58
|
"jsii-pacmak": "^1.67.0",
|
|
59
59
|
"json-schema": "^0.4.0",
|
|
60
60
|
"npm-check-updates": "^15",
|
|
61
|
-
"projen": "^0.61.
|
|
61
|
+
"projen": "^0.61.46",
|
|
62
62
|
"standard-version": "^9",
|
|
63
63
|
"ts-jest": "^27",
|
|
64
|
-
"typescript": "^4.8.
|
|
64
|
+
"typescript": "^4.8.3"
|
|
65
65
|
},
|
|
66
66
|
"peerDependencies": {
|
|
67
67
|
"aws-cdk-lib": "^2.24.0",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
71
|
"@types/aws-lambda": "^8.10.103",
|
|
72
|
-
"aws-sdk": "^2.
|
|
72
|
+
"aws-sdk": "^2.1212.0"
|
|
73
73
|
},
|
|
74
74
|
"bundledDependencies": [
|
|
75
75
|
"@types/aws-lambda",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"main": "lib/index.js",
|
|
82
82
|
"license": "Apache-2.0",
|
|
83
83
|
"homepage": "https://github.com/cdklabs/cdk-docker-image-deployment#readme",
|
|
84
|
-
"version": "0.0.
|
|
84
|
+
"version": "0.0.9",
|
|
85
85
|
"jest": {
|
|
86
86
|
"testMatch": [
|
|
87
87
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|