@aws-sdk/client-amplify 3.53.0 → 3.55.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 +27 -0
- package/dist-cjs/AmplifyClient.js +13 -13
- package/dist-cjs/commands/CreateAppCommand.js +3 -3
- package/dist-cjs/commands/CreateBackendEnvironmentCommand.js +3 -3
- package/dist-cjs/commands/CreateBranchCommand.js +3 -3
- package/dist-cjs/commands/CreateDeploymentCommand.js +3 -3
- package/dist-cjs/commands/CreateDomainAssociationCommand.js +3 -3
- package/dist-cjs/commands/CreateWebhookCommand.js +3 -3
- package/dist-cjs/commands/DeleteAppCommand.js +3 -3
- package/dist-cjs/commands/DeleteBackendEnvironmentCommand.js +3 -3
- package/dist-cjs/commands/DeleteBranchCommand.js +3 -3
- package/dist-cjs/commands/DeleteDomainAssociationCommand.js +3 -3
- package/dist-cjs/commands/DeleteJobCommand.js +3 -3
- package/dist-cjs/commands/DeleteWebhookCommand.js +3 -3
- package/dist-cjs/commands/GenerateAccessLogsCommand.js +3 -3
- package/dist-cjs/commands/GetAppCommand.js +3 -3
- package/dist-cjs/commands/GetArtifactUrlCommand.js +3 -3
- package/dist-cjs/commands/GetBackendEnvironmentCommand.js +3 -3
- package/dist-cjs/commands/GetBranchCommand.js +3 -3
- package/dist-cjs/commands/GetDomainAssociationCommand.js +3 -3
- package/dist-cjs/commands/GetJobCommand.js +3 -3
- package/dist-cjs/commands/GetWebhookCommand.js +3 -3
- package/dist-cjs/commands/ListAppsCommand.js +3 -3
- package/dist-cjs/commands/ListArtifactsCommand.js +3 -3
- package/dist-cjs/commands/ListBackendEnvironmentsCommand.js +3 -3
- package/dist-cjs/commands/ListBranchesCommand.js +3 -3
- package/dist-cjs/commands/ListDomainAssociationsCommand.js +3 -3
- package/dist-cjs/commands/ListJobsCommand.js +3 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-cjs/commands/ListWebhooksCommand.js +3 -3
- package/dist-cjs/commands/StartDeploymentCommand.js +3 -3
- package/dist-cjs/commands/StartJobCommand.js +3 -3
- package/dist-cjs/commands/StopJobCommand.js +3 -3
- package/dist-cjs/commands/TagResourceCommand.js +3 -3
- package/dist-cjs/commands/UntagResourceCommand.js +3 -3
- package/dist-cjs/commands/UpdateAppCommand.js +3 -3
- package/dist-cjs/commands/UpdateBranchCommand.js +3 -3
- package/dist-cjs/commands/UpdateDomainAssociationCommand.js +3 -3
- package/dist-cjs/commands/UpdateWebhookCommand.js +3 -3
- package/dist-cjs/endpoints.js +1 -1
- package/dist-cjs/models/models_0.js +17 -2
- package/dist-cjs/protocols/Aws_restJson1.js +265 -264
- package/dist-cjs/runtimeConfig.browser.js +4 -4
- package/dist-cjs/runtimeConfig.js +9 -9
- package/dist-cjs/runtimeConfig.native.js +1 -1
- package/dist-es/Amplify.js +37 -37
- package/dist-es/models/models_0.js +14 -7
- package/dist-es/protocols/Aws_restJson1.js +38 -37
- package/dist-types/AmplifyClient.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +51 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +3 -3
- package/dist-types/ts3.4/AmplifyClient.d.ts +2 -2
- package/dist-types/ts3.4/models/models_0.d.ts +10 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -3
- package/package.json +34 -34
|
@@ -17,9 +17,9 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
17
17
|
const util_defaults_mode_browser_1 = require("@aws-sdk/util-defaults-mode-browser");
|
|
18
18
|
const getRuntimeConfig = (config) => {
|
|
19
19
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
20
|
-
const defaultsMode = util_defaults_mode_browser_1.resolveDefaultsModeConfig(config);
|
|
20
|
+
const defaultsMode = (0, util_defaults_mode_browser_1.resolveDefaultsModeConfig)(config);
|
|
21
21
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
22
|
-
const clientSharedValues = runtimeConfig_shared_1.getRuntimeConfig(config);
|
|
22
|
+
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
23
23
|
return {
|
|
24
24
|
...clientSharedValues,
|
|
25
25
|
...config,
|
|
@@ -29,9 +29,9 @@ const getRuntimeConfig = (config) => {
|
|
|
29
29
|
base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : util_base64_browser_1.toBase64,
|
|
30
30
|
bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : util_body_length_browser_1.calculateBodyLength,
|
|
31
31
|
credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : ((_) => () => Promise.reject(new Error("Credential is missing"))),
|
|
32
|
-
defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : util_user_agent_browser_1.defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
32
|
+
defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : (0, util_user_agent_browser_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
33
33
|
maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : middleware_retry_1.DEFAULT_MAX_ATTEMPTS,
|
|
34
|
-
region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : invalid_dependency_1.invalidProvider("Region is missing"),
|
|
34
|
+
region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : (0, invalid_dependency_1.invalidProvider)("Region is missing"),
|
|
35
35
|
requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new fetch_http_handler_1.FetchHttpHandler(defaultConfigProvider),
|
|
36
36
|
retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : (async () => (await defaultConfigProvider()).retryMode || middleware_retry_1.DEFAULT_RETRY_MODE),
|
|
37
37
|
sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : sha256_browser_1.Sha256,
|
|
@@ -19,9 +19,9 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
19
19
|
const util_defaults_mode_node_1 = require("@aws-sdk/util-defaults-mode-node");
|
|
20
20
|
const getRuntimeConfig = (config) => {
|
|
21
21
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
22
|
-
const defaultsMode = util_defaults_mode_node_1.resolveDefaultsModeConfig(config);
|
|
22
|
+
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
23
23
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
24
|
-
const clientSharedValues = runtimeConfig_shared_1.getRuntimeConfig(config);
|
|
24
|
+
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
25
25
|
return {
|
|
26
26
|
...clientSharedValues,
|
|
27
27
|
...config,
|
|
@@ -30,19 +30,19 @@ const getRuntimeConfig = (config) => {
|
|
|
30
30
|
base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : util_base64_node_1.fromBase64,
|
|
31
31
|
base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : util_base64_node_1.toBase64,
|
|
32
32
|
bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : util_body_length_node_1.calculateBodyLength,
|
|
33
|
-
credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : client_sts_1.decorateDefaultCredentialProvider(credential_provider_node_1.defaultProvider),
|
|
34
|
-
defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : util_user_agent_node_1.defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
35
|
-
maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : node_config_provider_1.loadConfig(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
|
|
36
|
-
region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : node_config_provider_1.loadConfig(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS),
|
|
33
|
+
credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : (0, client_sts_1.decorateDefaultCredentialProvider)(credential_provider_node_1.defaultProvider),
|
|
34
|
+
defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : (0, util_user_agent_node_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
35
|
+
maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
|
|
36
|
+
region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS),
|
|
37
37
|
requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new node_http_handler_1.NodeHttpHandler(defaultConfigProvider),
|
|
38
|
-
retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : node_config_provider_1.loadConfig({
|
|
38
|
+
retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : (0, node_config_provider_1.loadConfig)({
|
|
39
39
|
...middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
40
40
|
default: async () => (await defaultConfigProvider()).retryMode || middleware_retry_1.DEFAULT_RETRY_MODE,
|
|
41
41
|
}),
|
|
42
42
|
sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : hash_node_1.Hash.bind(null, "sha256"),
|
|
43
43
|
streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : node_http_handler_1.streamCollector,
|
|
44
|
-
useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : node_config_provider_1.loadConfig(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
|
|
45
|
-
useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : node_config_provider_1.loadConfig(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
|
|
44
|
+
useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
|
|
45
|
+
useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
|
|
46
46
|
utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : util_utf8_node_1.fromUtf8,
|
|
47
47
|
utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : util_utf8_node_1.toUtf8,
|
|
48
48
|
};
|
|
@@ -5,7 +5,7 @@ const sha256_js_1 = require("@aws-crypto/sha256-js");
|
|
|
5
5
|
const runtimeConfig_browser_1 = require("./runtimeConfig.browser");
|
|
6
6
|
const getRuntimeConfig = (config) => {
|
|
7
7
|
var _a;
|
|
8
|
-
const browserDefaults = runtimeConfig_browser_1.getRuntimeConfig(config);
|
|
8
|
+
const browserDefaults = (0, runtimeConfig_browser_1.getRuntimeConfig)(config);
|
|
9
9
|
return {
|
|
10
10
|
...browserDefaults,
|
|
11
11
|
...config,
|
package/dist-es/Amplify.js
CHANGED
|
@@ -49,7 +49,7 @@ var Amplify = (function (_super) {
|
|
|
49
49
|
}
|
|
50
50
|
else if (typeof cb === "function") {
|
|
51
51
|
if (typeof optionsOrCb !== "object")
|
|
52
|
-
throw new Error("Expect http options but get "
|
|
52
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
53
53
|
this.send(command, optionsOrCb || {}, cb);
|
|
54
54
|
}
|
|
55
55
|
else {
|
|
@@ -63,7 +63,7 @@ var Amplify = (function (_super) {
|
|
|
63
63
|
}
|
|
64
64
|
else if (typeof cb === "function") {
|
|
65
65
|
if (typeof optionsOrCb !== "object")
|
|
66
|
-
throw new Error("Expect http options but get "
|
|
66
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
67
67
|
this.send(command, optionsOrCb || {}, cb);
|
|
68
68
|
}
|
|
69
69
|
else {
|
|
@@ -77,7 +77,7 @@ var Amplify = (function (_super) {
|
|
|
77
77
|
}
|
|
78
78
|
else if (typeof cb === "function") {
|
|
79
79
|
if (typeof optionsOrCb !== "object")
|
|
80
|
-
throw new Error("Expect http options but get "
|
|
80
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
81
81
|
this.send(command, optionsOrCb || {}, cb);
|
|
82
82
|
}
|
|
83
83
|
else {
|
|
@@ -91,7 +91,7 @@ var Amplify = (function (_super) {
|
|
|
91
91
|
}
|
|
92
92
|
else if (typeof cb === "function") {
|
|
93
93
|
if (typeof optionsOrCb !== "object")
|
|
94
|
-
throw new Error("Expect http options but get "
|
|
94
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
95
95
|
this.send(command, optionsOrCb || {}, cb);
|
|
96
96
|
}
|
|
97
97
|
else {
|
|
@@ -105,7 +105,7 @@ var Amplify = (function (_super) {
|
|
|
105
105
|
}
|
|
106
106
|
else if (typeof cb === "function") {
|
|
107
107
|
if (typeof optionsOrCb !== "object")
|
|
108
|
-
throw new Error("Expect http options but get "
|
|
108
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
109
109
|
this.send(command, optionsOrCb || {}, cb);
|
|
110
110
|
}
|
|
111
111
|
else {
|
|
@@ -119,7 +119,7 @@ var Amplify = (function (_super) {
|
|
|
119
119
|
}
|
|
120
120
|
else if (typeof cb === "function") {
|
|
121
121
|
if (typeof optionsOrCb !== "object")
|
|
122
|
-
throw new Error("Expect http options but get "
|
|
122
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
123
123
|
this.send(command, optionsOrCb || {}, cb);
|
|
124
124
|
}
|
|
125
125
|
else {
|
|
@@ -133,7 +133,7 @@ var Amplify = (function (_super) {
|
|
|
133
133
|
}
|
|
134
134
|
else if (typeof cb === "function") {
|
|
135
135
|
if (typeof optionsOrCb !== "object")
|
|
136
|
-
throw new Error("Expect http options but get "
|
|
136
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
137
137
|
this.send(command, optionsOrCb || {}, cb);
|
|
138
138
|
}
|
|
139
139
|
else {
|
|
@@ -147,7 +147,7 @@ var Amplify = (function (_super) {
|
|
|
147
147
|
}
|
|
148
148
|
else if (typeof cb === "function") {
|
|
149
149
|
if (typeof optionsOrCb !== "object")
|
|
150
|
-
throw new Error("Expect http options but get "
|
|
150
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
151
151
|
this.send(command, optionsOrCb || {}, cb);
|
|
152
152
|
}
|
|
153
153
|
else {
|
|
@@ -161,7 +161,7 @@ var Amplify = (function (_super) {
|
|
|
161
161
|
}
|
|
162
162
|
else if (typeof cb === "function") {
|
|
163
163
|
if (typeof optionsOrCb !== "object")
|
|
164
|
-
throw new Error("Expect http options but get "
|
|
164
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
165
165
|
this.send(command, optionsOrCb || {}, cb);
|
|
166
166
|
}
|
|
167
167
|
else {
|
|
@@ -175,7 +175,7 @@ var Amplify = (function (_super) {
|
|
|
175
175
|
}
|
|
176
176
|
else if (typeof cb === "function") {
|
|
177
177
|
if (typeof optionsOrCb !== "object")
|
|
178
|
-
throw new Error("Expect http options but get "
|
|
178
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
179
179
|
this.send(command, optionsOrCb || {}, cb);
|
|
180
180
|
}
|
|
181
181
|
else {
|
|
@@ -189,7 +189,7 @@ var Amplify = (function (_super) {
|
|
|
189
189
|
}
|
|
190
190
|
else if (typeof cb === "function") {
|
|
191
191
|
if (typeof optionsOrCb !== "object")
|
|
192
|
-
throw new Error("Expect http options but get "
|
|
192
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
193
193
|
this.send(command, optionsOrCb || {}, cb);
|
|
194
194
|
}
|
|
195
195
|
else {
|
|
@@ -203,7 +203,7 @@ var Amplify = (function (_super) {
|
|
|
203
203
|
}
|
|
204
204
|
else if (typeof cb === "function") {
|
|
205
205
|
if (typeof optionsOrCb !== "object")
|
|
206
|
-
throw new Error("Expect http options but get "
|
|
206
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
207
207
|
this.send(command, optionsOrCb || {}, cb);
|
|
208
208
|
}
|
|
209
209
|
else {
|
|
@@ -217,7 +217,7 @@ var Amplify = (function (_super) {
|
|
|
217
217
|
}
|
|
218
218
|
else if (typeof cb === "function") {
|
|
219
219
|
if (typeof optionsOrCb !== "object")
|
|
220
|
-
throw new Error("Expect http options but get "
|
|
220
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
221
221
|
this.send(command, optionsOrCb || {}, cb);
|
|
222
222
|
}
|
|
223
223
|
else {
|
|
@@ -231,7 +231,7 @@ var Amplify = (function (_super) {
|
|
|
231
231
|
}
|
|
232
232
|
else if (typeof cb === "function") {
|
|
233
233
|
if (typeof optionsOrCb !== "object")
|
|
234
|
-
throw new Error("Expect http options but get "
|
|
234
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
235
235
|
this.send(command, optionsOrCb || {}, cb);
|
|
236
236
|
}
|
|
237
237
|
else {
|
|
@@ -245,7 +245,7 @@ var Amplify = (function (_super) {
|
|
|
245
245
|
}
|
|
246
246
|
else if (typeof cb === "function") {
|
|
247
247
|
if (typeof optionsOrCb !== "object")
|
|
248
|
-
throw new Error("Expect http options but get "
|
|
248
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
249
249
|
this.send(command, optionsOrCb || {}, cb);
|
|
250
250
|
}
|
|
251
251
|
else {
|
|
@@ -259,7 +259,7 @@ var Amplify = (function (_super) {
|
|
|
259
259
|
}
|
|
260
260
|
else if (typeof cb === "function") {
|
|
261
261
|
if (typeof optionsOrCb !== "object")
|
|
262
|
-
throw new Error("Expect http options but get "
|
|
262
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
263
263
|
this.send(command, optionsOrCb || {}, cb);
|
|
264
264
|
}
|
|
265
265
|
else {
|
|
@@ -273,7 +273,7 @@ var Amplify = (function (_super) {
|
|
|
273
273
|
}
|
|
274
274
|
else if (typeof cb === "function") {
|
|
275
275
|
if (typeof optionsOrCb !== "object")
|
|
276
|
-
throw new Error("Expect http options but get "
|
|
276
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
277
277
|
this.send(command, optionsOrCb || {}, cb);
|
|
278
278
|
}
|
|
279
279
|
else {
|
|
@@ -287,7 +287,7 @@ var Amplify = (function (_super) {
|
|
|
287
287
|
}
|
|
288
288
|
else if (typeof cb === "function") {
|
|
289
289
|
if (typeof optionsOrCb !== "object")
|
|
290
|
-
throw new Error("Expect http options but get "
|
|
290
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
291
291
|
this.send(command, optionsOrCb || {}, cb);
|
|
292
292
|
}
|
|
293
293
|
else {
|
|
@@ -301,7 +301,7 @@ var Amplify = (function (_super) {
|
|
|
301
301
|
}
|
|
302
302
|
else if (typeof cb === "function") {
|
|
303
303
|
if (typeof optionsOrCb !== "object")
|
|
304
|
-
throw new Error("Expect http options but get "
|
|
304
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
305
305
|
this.send(command, optionsOrCb || {}, cb);
|
|
306
306
|
}
|
|
307
307
|
else {
|
|
@@ -315,7 +315,7 @@ var Amplify = (function (_super) {
|
|
|
315
315
|
}
|
|
316
316
|
else if (typeof cb === "function") {
|
|
317
317
|
if (typeof optionsOrCb !== "object")
|
|
318
|
-
throw new Error("Expect http options but get "
|
|
318
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
319
319
|
this.send(command, optionsOrCb || {}, cb);
|
|
320
320
|
}
|
|
321
321
|
else {
|
|
@@ -329,7 +329,7 @@ var Amplify = (function (_super) {
|
|
|
329
329
|
}
|
|
330
330
|
else if (typeof cb === "function") {
|
|
331
331
|
if (typeof optionsOrCb !== "object")
|
|
332
|
-
throw new Error("Expect http options but get "
|
|
332
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
333
333
|
this.send(command, optionsOrCb || {}, cb);
|
|
334
334
|
}
|
|
335
335
|
else {
|
|
@@ -343,7 +343,7 @@ var Amplify = (function (_super) {
|
|
|
343
343
|
}
|
|
344
344
|
else if (typeof cb === "function") {
|
|
345
345
|
if (typeof optionsOrCb !== "object")
|
|
346
|
-
throw new Error("Expect http options but get "
|
|
346
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
347
347
|
this.send(command, optionsOrCb || {}, cb);
|
|
348
348
|
}
|
|
349
349
|
else {
|
|
@@ -357,7 +357,7 @@ var Amplify = (function (_super) {
|
|
|
357
357
|
}
|
|
358
358
|
else if (typeof cb === "function") {
|
|
359
359
|
if (typeof optionsOrCb !== "object")
|
|
360
|
-
throw new Error("Expect http options but get "
|
|
360
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
361
361
|
this.send(command, optionsOrCb || {}, cb);
|
|
362
362
|
}
|
|
363
363
|
else {
|
|
@@ -371,7 +371,7 @@ var Amplify = (function (_super) {
|
|
|
371
371
|
}
|
|
372
372
|
else if (typeof cb === "function") {
|
|
373
373
|
if (typeof optionsOrCb !== "object")
|
|
374
|
-
throw new Error("Expect http options but get "
|
|
374
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
375
375
|
this.send(command, optionsOrCb || {}, cb);
|
|
376
376
|
}
|
|
377
377
|
else {
|
|
@@ -385,7 +385,7 @@ var Amplify = (function (_super) {
|
|
|
385
385
|
}
|
|
386
386
|
else if (typeof cb === "function") {
|
|
387
387
|
if (typeof optionsOrCb !== "object")
|
|
388
|
-
throw new Error("Expect http options but get "
|
|
388
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
389
389
|
this.send(command, optionsOrCb || {}, cb);
|
|
390
390
|
}
|
|
391
391
|
else {
|
|
@@ -399,7 +399,7 @@ var Amplify = (function (_super) {
|
|
|
399
399
|
}
|
|
400
400
|
else if (typeof cb === "function") {
|
|
401
401
|
if (typeof optionsOrCb !== "object")
|
|
402
|
-
throw new Error("Expect http options but get "
|
|
402
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
403
403
|
this.send(command, optionsOrCb || {}, cb);
|
|
404
404
|
}
|
|
405
405
|
else {
|
|
@@ -413,7 +413,7 @@ var Amplify = (function (_super) {
|
|
|
413
413
|
}
|
|
414
414
|
else if (typeof cb === "function") {
|
|
415
415
|
if (typeof optionsOrCb !== "object")
|
|
416
|
-
throw new Error("Expect http options but get "
|
|
416
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
417
417
|
this.send(command, optionsOrCb || {}, cb);
|
|
418
418
|
}
|
|
419
419
|
else {
|
|
@@ -427,7 +427,7 @@ var Amplify = (function (_super) {
|
|
|
427
427
|
}
|
|
428
428
|
else if (typeof cb === "function") {
|
|
429
429
|
if (typeof optionsOrCb !== "object")
|
|
430
|
-
throw new Error("Expect http options but get "
|
|
430
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
431
431
|
this.send(command, optionsOrCb || {}, cb);
|
|
432
432
|
}
|
|
433
433
|
else {
|
|
@@ -441,7 +441,7 @@ var Amplify = (function (_super) {
|
|
|
441
441
|
}
|
|
442
442
|
else if (typeof cb === "function") {
|
|
443
443
|
if (typeof optionsOrCb !== "object")
|
|
444
|
-
throw new Error("Expect http options but get "
|
|
444
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
445
445
|
this.send(command, optionsOrCb || {}, cb);
|
|
446
446
|
}
|
|
447
447
|
else {
|
|
@@ -455,7 +455,7 @@ var Amplify = (function (_super) {
|
|
|
455
455
|
}
|
|
456
456
|
else if (typeof cb === "function") {
|
|
457
457
|
if (typeof optionsOrCb !== "object")
|
|
458
|
-
throw new Error("Expect http options but get "
|
|
458
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
459
459
|
this.send(command, optionsOrCb || {}, cb);
|
|
460
460
|
}
|
|
461
461
|
else {
|
|
@@ -469,7 +469,7 @@ var Amplify = (function (_super) {
|
|
|
469
469
|
}
|
|
470
470
|
else if (typeof cb === "function") {
|
|
471
471
|
if (typeof optionsOrCb !== "object")
|
|
472
|
-
throw new Error("Expect http options but get "
|
|
472
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
473
473
|
this.send(command, optionsOrCb || {}, cb);
|
|
474
474
|
}
|
|
475
475
|
else {
|
|
@@ -483,7 +483,7 @@ var Amplify = (function (_super) {
|
|
|
483
483
|
}
|
|
484
484
|
else if (typeof cb === "function") {
|
|
485
485
|
if (typeof optionsOrCb !== "object")
|
|
486
|
-
throw new Error("Expect http options but get "
|
|
486
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
487
487
|
this.send(command, optionsOrCb || {}, cb);
|
|
488
488
|
}
|
|
489
489
|
else {
|
|
@@ -497,7 +497,7 @@ var Amplify = (function (_super) {
|
|
|
497
497
|
}
|
|
498
498
|
else if (typeof cb === "function") {
|
|
499
499
|
if (typeof optionsOrCb !== "object")
|
|
500
|
-
throw new Error("Expect http options but get "
|
|
500
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
501
501
|
this.send(command, optionsOrCb || {}, cb);
|
|
502
502
|
}
|
|
503
503
|
else {
|
|
@@ -511,7 +511,7 @@ var Amplify = (function (_super) {
|
|
|
511
511
|
}
|
|
512
512
|
else if (typeof cb === "function") {
|
|
513
513
|
if (typeof optionsOrCb !== "object")
|
|
514
|
-
throw new Error("Expect http options but get "
|
|
514
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
515
515
|
this.send(command, optionsOrCb || {}, cb);
|
|
516
516
|
}
|
|
517
517
|
else {
|
|
@@ -525,7 +525,7 @@ var Amplify = (function (_super) {
|
|
|
525
525
|
}
|
|
526
526
|
else if (typeof cb === "function") {
|
|
527
527
|
if (typeof optionsOrCb !== "object")
|
|
528
|
-
throw new Error("Expect http options but get "
|
|
528
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
529
529
|
this.send(command, optionsOrCb || {}, cb);
|
|
530
530
|
}
|
|
531
531
|
else {
|
|
@@ -539,7 +539,7 @@ var Amplify = (function (_super) {
|
|
|
539
539
|
}
|
|
540
540
|
else if (typeof cb === "function") {
|
|
541
541
|
if (typeof optionsOrCb !== "object")
|
|
542
|
-
throw new Error("Expect http options but get "
|
|
542
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
543
543
|
this.send(command, optionsOrCb || {}, cb);
|
|
544
544
|
}
|
|
545
545
|
else {
|
|
@@ -553,7 +553,7 @@ var Amplify = (function (_super) {
|
|
|
553
553
|
}
|
|
554
554
|
else if (typeof cb === "function") {
|
|
555
555
|
if (typeof optionsOrCb !== "object")
|
|
556
|
-
throw new Error("Expect http options but get "
|
|
556
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
557
557
|
this.send(command, optionsOrCb || {}, cb);
|
|
558
558
|
}
|
|
559
559
|
else {
|
|
@@ -23,7 +23,7 @@ export var Stage;
|
|
|
23
23
|
})(Stage || (Stage = {}));
|
|
24
24
|
export var AutoBranchCreationConfig;
|
|
25
25
|
(function (AutoBranchCreationConfig) {
|
|
26
|
-
AutoBranchCreationConfig.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING }))); };
|
|
26
|
+
AutoBranchCreationConfig.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING })), (obj.buildSpec && { buildSpec: SENSITIVE_STRING }))); };
|
|
27
27
|
})(AutoBranchCreationConfig || (AutoBranchCreationConfig = {}));
|
|
28
28
|
export var CustomRule;
|
|
29
29
|
(function (CustomRule) {
|
|
@@ -32,10 +32,11 @@ export var CustomRule;
|
|
|
32
32
|
export var Platform;
|
|
33
33
|
(function (Platform) {
|
|
34
34
|
Platform["WEB"] = "WEB";
|
|
35
|
+
Platform["WEB_DYNAMIC"] = "WEB_DYNAMIC";
|
|
35
36
|
})(Platform || (Platform = {}));
|
|
36
37
|
export var CreateAppRequest;
|
|
37
38
|
(function (CreateAppRequest) {
|
|
38
|
-
CreateAppRequest.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign({}, obj), (obj.oauthToken && { oauthToken: SENSITIVE_STRING })), (obj.accessToken && { accessToken: SENSITIVE_STRING })), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING })), (obj.autoBranchCreationConfig && {
|
|
39
|
+
CreateAppRequest.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign(__assign({}, obj), (obj.oauthToken && { oauthToken: SENSITIVE_STRING })), (obj.accessToken && { accessToken: SENSITIVE_STRING })), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING })), (obj.buildSpec && { buildSpec: SENSITIVE_STRING })), (obj.autoBranchCreationConfig && {
|
|
39
40
|
autoBranchCreationConfig: AutoBranchCreationConfig.filterSensitiveLog(obj.autoBranchCreationConfig),
|
|
40
41
|
}))); };
|
|
41
42
|
})(CreateAppRequest || (CreateAppRequest = {}));
|
|
@@ -43,9 +44,15 @@ export var ProductionBranch;
|
|
|
43
44
|
(function (ProductionBranch) {
|
|
44
45
|
ProductionBranch.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
45
46
|
})(ProductionBranch || (ProductionBranch = {}));
|
|
47
|
+
export var RepositoryCloneMethod;
|
|
48
|
+
(function (RepositoryCloneMethod) {
|
|
49
|
+
RepositoryCloneMethod["SIGV4"] = "SIGV4";
|
|
50
|
+
RepositoryCloneMethod["SSH"] = "SSH";
|
|
51
|
+
RepositoryCloneMethod["TOKEN"] = "TOKEN";
|
|
52
|
+
})(RepositoryCloneMethod || (RepositoryCloneMethod = {}));
|
|
46
53
|
export var App;
|
|
47
54
|
(function (App) {
|
|
48
|
-
App.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING })), (obj.autoBranchCreationConfig && {
|
|
55
|
+
App.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING })), (obj.buildSpec && { buildSpec: SENSITIVE_STRING })), (obj.autoBranchCreationConfig && {
|
|
49
56
|
autoBranchCreationConfig: AutoBranchCreationConfig.filterSensitiveLog(obj.autoBranchCreationConfig),
|
|
50
57
|
}))); };
|
|
51
58
|
})(App || (App = {}));
|
|
@@ -127,11 +134,11 @@ var NotFoundException = (function (_super) {
|
|
|
127
134
|
export { NotFoundException };
|
|
128
135
|
export var CreateBranchRequest;
|
|
129
136
|
(function (CreateBranchRequest) {
|
|
130
|
-
CreateBranchRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING }))); };
|
|
137
|
+
CreateBranchRequest.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING })), (obj.buildSpec && { buildSpec: SENSITIVE_STRING }))); };
|
|
131
138
|
})(CreateBranchRequest || (CreateBranchRequest = {}));
|
|
132
139
|
export var Branch;
|
|
133
140
|
(function (Branch) {
|
|
134
|
-
Branch.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING }))); };
|
|
141
|
+
Branch.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING })), (obj.buildSpec && { buildSpec: SENSITIVE_STRING }))); };
|
|
135
142
|
})(Branch || (Branch = {}));
|
|
136
143
|
export var CreateBranchResult;
|
|
137
144
|
(function (CreateBranchResult) {
|
|
@@ -452,7 +459,7 @@ export var UntagResourceResponse;
|
|
|
452
459
|
})(UntagResourceResponse || (UntagResourceResponse = {}));
|
|
453
460
|
export var UpdateAppRequest;
|
|
454
461
|
(function (UpdateAppRequest) {
|
|
455
|
-
UpdateAppRequest.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign({}, obj), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING })), (obj.autoBranchCreationConfig && {
|
|
462
|
+
UpdateAppRequest.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign(__assign({}, obj), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING })), (obj.buildSpec && { buildSpec: SENSITIVE_STRING })), (obj.autoBranchCreationConfig && {
|
|
456
463
|
autoBranchCreationConfig: AutoBranchCreationConfig.filterSensitiveLog(obj.autoBranchCreationConfig),
|
|
457
464
|
})), (obj.oauthToken && { oauthToken: SENSITIVE_STRING })), (obj.accessToken && { accessToken: SENSITIVE_STRING }))); };
|
|
458
465
|
})(UpdateAppRequest || (UpdateAppRequest = {}));
|
|
@@ -462,7 +469,7 @@ export var UpdateAppResult;
|
|
|
462
469
|
})(UpdateAppResult || (UpdateAppResult = {}));
|
|
463
470
|
export var UpdateBranchRequest;
|
|
464
471
|
(function (UpdateBranchRequest) {
|
|
465
|
-
UpdateBranchRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING }))); };
|
|
472
|
+
UpdateBranchRequest.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.basicAuthCredentials && { basicAuthCredentials: SENSITIVE_STRING })), (obj.buildSpec && { buildSpec: SENSITIVE_STRING }))); };
|
|
466
473
|
})(UpdateBranchRequest || (UpdateBranchRequest = {}));
|
|
467
474
|
export var UpdateBranchResult;
|
|
468
475
|
(function (UpdateBranchResult) {
|