@aws-sdk/client-artifact 3.1068.0 → 3.1070.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/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +67 -87
- package/dist-cjs/models/ArtifactServiceException.js +4 -8
- package/dist-cjs/models/errors.js +15 -25
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +85 -59
- package/package.json +8 -8
|
@@ -1,17 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.
|
|
4
|
-
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
|
-
const client_1 = require("@smithy/core/client");
|
|
6
|
-
const defaultArtifactHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
1
|
+
const { resolveAwsSdkSigV4Config } = require("@aws-sdk/core/httpAuthSchemes");
|
|
2
|
+
const { getSmithyContext, normalizeProvider } = require("@smithy/core/client");
|
|
3
|
+
exports.defaultArtifactHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
7
4
|
return {
|
|
8
|
-
operation:
|
|
9
|
-
region: await
|
|
5
|
+
operation: getSmithyContext(context).operation,
|
|
6
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
10
7
|
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
11
8
|
})(),
|
|
12
9
|
};
|
|
13
10
|
};
|
|
14
|
-
exports.defaultArtifactHttpAuthSchemeParametersProvider = defaultArtifactHttpAuthSchemeParametersProvider;
|
|
15
11
|
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
16
12
|
return {
|
|
17
13
|
schemeId: "aws.auth#sigv4",
|
|
@@ -27,7 +23,7 @@ function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
|
27
23
|
}),
|
|
28
24
|
};
|
|
29
25
|
}
|
|
30
|
-
|
|
26
|
+
exports.defaultArtifactHttpAuthSchemeProvider = (authParameters) => {
|
|
31
27
|
const options = [];
|
|
32
28
|
switch (authParameters.operation) {
|
|
33
29
|
default: {
|
|
@@ -36,11 +32,9 @@ const defaultArtifactHttpAuthSchemeProvider = (authParameters) => {
|
|
|
36
32
|
}
|
|
37
33
|
return options;
|
|
38
34
|
};
|
|
39
|
-
exports.
|
|
40
|
-
const
|
|
41
|
-
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
35
|
+
exports.resolveHttpAuthSchemeConfig = (config) => {
|
|
36
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
42
37
|
return Object.assign(config_0, {
|
|
43
|
-
authSchemePreference:
|
|
38
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
44
39
|
});
|
|
45
40
|
};
|
|
46
|
-
exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
|
package/dist-cjs/endpoint/bdd.js
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.bdd = void 0;
|
|
4
|
-
const endpoints_1 = require("@smithy/core/endpoints");
|
|
1
|
+
const { BinaryDecisionDiagram } = require("@smithy/core/endpoints");
|
|
5
2
|
const k = "ref";
|
|
6
3
|
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = { "authSchemes": [{ "name": "sigv4", "signingRegion": "{PartitionResult#implicitGlobalRegion}" }] }, j = [{ [k]: "Region" }];
|
|
7
4
|
const _data = {
|
|
@@ -46,4 +43,4 @@ const nodes = new Int32Array([
|
|
|
46
43
|
3, r + 1, 13,
|
|
47
44
|
4, r + 2, r + 3,
|
|
48
45
|
]);
|
|
49
|
-
exports.bdd =
|
|
46
|
+
exports.bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
@@ -1,18 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const endpoints_1 = require("@smithy/core/endpoints");
|
|
6
|
-
const bdd_1 = require("./bdd");
|
|
7
|
-
const cache = new endpoints_1.EndpointCache({
|
|
1
|
+
const { awsEndpointFunctions } = require("@aws-sdk/core/client");
|
|
2
|
+
const { customEndpointFunctions, decideEndpoint, EndpointCache } = require("@smithy/core/endpoints");
|
|
3
|
+
const { bdd } = require("./bdd");
|
|
4
|
+
const cache = new EndpointCache({
|
|
8
5
|
size: 50,
|
|
9
6
|
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
7
|
});
|
|
11
|
-
|
|
12
|
-
return cache.get(endpointParams, () =>
|
|
8
|
+
exports.defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
9
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
13
10
|
endpointParams: endpointParams,
|
|
14
11
|
logger: context.logger,
|
|
15
12
|
}));
|
|
16
13
|
};
|
|
17
|
-
|
|
18
|
-
endpoints_1.customEndpointFunctions.aws = client_1.awsEndpointFunctions;
|
|
14
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
var __exportStar = (m, e) => { Object.assign(e, m); };
|
|
2
|
+
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
|
+
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
+
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = Command;
|
|
6
|
+
exports.__Client = Client;
|
|
7
|
+
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
+
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
+
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
+
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
+
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
+
const { resolveHttpAuthSchemeConfig, defaultArtifactHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
13
|
+
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
14
|
+
const { GetAccountSettings$, GetReport$, GetReportMetadata$, GetTermForReport$, ListCustomerAgreements$, ListReports$, ListReportVersions$, PutAccountSettings$ } = require("./schemas/schemas_0");
|
|
15
|
+
__exportStar(require("./schemas/schemas_0"), exports);
|
|
16
|
+
__exportStar(require("./models/errors"), exports);
|
|
17
|
+
const { ArtifactServiceException } = require("./models/ArtifactServiceException");
|
|
18
|
+
exports.ArtifactServiceException = ArtifactServiceException;
|
|
16
19
|
|
|
17
20
|
const resolveClientEndpointParameters = (options) => {
|
|
18
21
|
return Object.assign(options, {
|
|
@@ -68,147 +71,147 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
68
71
|
};
|
|
69
72
|
|
|
70
73
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
71
|
-
const extensionConfiguration = Object.assign(
|
|
74
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
72
75
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
73
|
-
return Object.assign(runtimeConfig,
|
|
76
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
74
77
|
};
|
|
75
78
|
|
|
76
|
-
class ArtifactClient extends
|
|
79
|
+
class ArtifactClient extends Client {
|
|
77
80
|
config;
|
|
78
81
|
constructor(...[configuration]) {
|
|
79
|
-
const _config_0 =
|
|
82
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
80
83
|
super(_config_0);
|
|
81
84
|
this.initConfig = _config_0;
|
|
82
85
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
83
|
-
const _config_2 =
|
|
84
|
-
const _config_3 =
|
|
85
|
-
const _config_4 =
|
|
86
|
-
const _config_5 =
|
|
87
|
-
const _config_6 =
|
|
88
|
-
const _config_7 =
|
|
86
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
87
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
88
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
89
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
90
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
91
|
+
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
89
92
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
90
93
|
this.config = _config_8;
|
|
91
|
-
this.middlewareStack.use(
|
|
92
|
-
this.middlewareStack.use(
|
|
93
|
-
this.middlewareStack.use(
|
|
94
|
-
this.middlewareStack.use(
|
|
95
|
-
this.middlewareStack.use(
|
|
96
|
-
this.middlewareStack.use(
|
|
97
|
-
this.middlewareStack.use(
|
|
98
|
-
this.middlewareStack.use(
|
|
99
|
-
httpAuthSchemeParametersProvider:
|
|
100
|
-
identityProviderConfigProvider: async (config) => new
|
|
94
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
95
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
96
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
100
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
101
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
102
|
+
httpAuthSchemeParametersProvider: defaultArtifactHttpAuthSchemeParametersProvider,
|
|
103
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
101
104
|
"aws.auth#sigv4": config.credentials,
|
|
102
105
|
}),
|
|
103
106
|
}));
|
|
104
|
-
this.middlewareStack.use(
|
|
107
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
105
108
|
}
|
|
106
109
|
destroy() {
|
|
107
110
|
super.destroy();
|
|
108
111
|
}
|
|
109
112
|
}
|
|
110
113
|
|
|
111
|
-
class GetAccountSettingsCommand extends
|
|
114
|
+
class GetAccountSettingsCommand extends Command
|
|
112
115
|
.classBuilder()
|
|
113
116
|
.ep(commonParams)
|
|
114
117
|
.m(function (Command, cs, config, o) {
|
|
115
|
-
return [
|
|
118
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
116
119
|
})
|
|
117
120
|
.s("Artifact", "GetAccountSettings", {})
|
|
118
121
|
.n("ArtifactClient", "GetAccountSettingsCommand")
|
|
119
|
-
.sc(
|
|
122
|
+
.sc(GetAccountSettings$)
|
|
120
123
|
.build() {
|
|
121
124
|
}
|
|
122
125
|
|
|
123
|
-
class GetReportCommand extends
|
|
126
|
+
class GetReportCommand extends Command
|
|
124
127
|
.classBuilder()
|
|
125
128
|
.ep(commonParams)
|
|
126
129
|
.m(function (Command, cs, config, o) {
|
|
127
|
-
return [
|
|
130
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
128
131
|
})
|
|
129
132
|
.s("Artifact", "GetReport", {})
|
|
130
133
|
.n("ArtifactClient", "GetReportCommand")
|
|
131
|
-
.sc(
|
|
134
|
+
.sc(GetReport$)
|
|
132
135
|
.build() {
|
|
133
136
|
}
|
|
134
137
|
|
|
135
|
-
class GetReportMetadataCommand extends
|
|
138
|
+
class GetReportMetadataCommand extends Command
|
|
136
139
|
.classBuilder()
|
|
137
140
|
.ep(commonParams)
|
|
138
141
|
.m(function (Command, cs, config, o) {
|
|
139
|
-
return [
|
|
142
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
140
143
|
})
|
|
141
144
|
.s("Artifact", "GetReportMetadata", {})
|
|
142
145
|
.n("ArtifactClient", "GetReportMetadataCommand")
|
|
143
|
-
.sc(
|
|
146
|
+
.sc(GetReportMetadata$)
|
|
144
147
|
.build() {
|
|
145
148
|
}
|
|
146
149
|
|
|
147
|
-
class GetTermForReportCommand extends
|
|
150
|
+
class GetTermForReportCommand extends Command
|
|
148
151
|
.classBuilder()
|
|
149
152
|
.ep(commonParams)
|
|
150
153
|
.m(function (Command, cs, config, o) {
|
|
151
|
-
return [
|
|
154
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
152
155
|
})
|
|
153
156
|
.s("Artifact", "GetTermForReport", {})
|
|
154
157
|
.n("ArtifactClient", "GetTermForReportCommand")
|
|
155
|
-
.sc(
|
|
158
|
+
.sc(GetTermForReport$)
|
|
156
159
|
.build() {
|
|
157
160
|
}
|
|
158
161
|
|
|
159
|
-
class ListCustomerAgreementsCommand extends
|
|
162
|
+
class ListCustomerAgreementsCommand extends Command
|
|
160
163
|
.classBuilder()
|
|
161
164
|
.ep(commonParams)
|
|
162
165
|
.m(function (Command, cs, config, o) {
|
|
163
|
-
return [
|
|
166
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
164
167
|
})
|
|
165
168
|
.s("Artifact", "ListCustomerAgreements", {})
|
|
166
169
|
.n("ArtifactClient", "ListCustomerAgreementsCommand")
|
|
167
|
-
.sc(
|
|
170
|
+
.sc(ListCustomerAgreements$)
|
|
168
171
|
.build() {
|
|
169
172
|
}
|
|
170
173
|
|
|
171
|
-
class ListReportsCommand extends
|
|
174
|
+
class ListReportsCommand extends Command
|
|
172
175
|
.classBuilder()
|
|
173
176
|
.ep(commonParams)
|
|
174
177
|
.m(function (Command, cs, config, o) {
|
|
175
|
-
return [
|
|
178
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
176
179
|
})
|
|
177
180
|
.s("Artifact", "ListReports", {})
|
|
178
181
|
.n("ArtifactClient", "ListReportsCommand")
|
|
179
|
-
.sc(
|
|
182
|
+
.sc(ListReports$)
|
|
180
183
|
.build() {
|
|
181
184
|
}
|
|
182
185
|
|
|
183
|
-
class ListReportVersionsCommand extends
|
|
186
|
+
class ListReportVersionsCommand extends Command
|
|
184
187
|
.classBuilder()
|
|
185
188
|
.ep(commonParams)
|
|
186
189
|
.m(function (Command, cs, config, o) {
|
|
187
|
-
return [
|
|
190
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
188
191
|
})
|
|
189
192
|
.s("Artifact", "ListReportVersions", {})
|
|
190
193
|
.n("ArtifactClient", "ListReportVersionsCommand")
|
|
191
|
-
.sc(
|
|
194
|
+
.sc(ListReportVersions$)
|
|
192
195
|
.build() {
|
|
193
196
|
}
|
|
194
197
|
|
|
195
|
-
class PutAccountSettingsCommand extends
|
|
198
|
+
class PutAccountSettingsCommand extends Command
|
|
196
199
|
.classBuilder()
|
|
197
200
|
.ep(commonParams)
|
|
198
201
|
.m(function (Command, cs, config, o) {
|
|
199
|
-
return [
|
|
202
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
200
203
|
})
|
|
201
204
|
.s("Artifact", "PutAccountSettings", {})
|
|
202
205
|
.n("ArtifactClient", "PutAccountSettingsCommand")
|
|
203
|
-
.sc(
|
|
206
|
+
.sc(PutAccountSettings$)
|
|
204
207
|
.build() {
|
|
205
208
|
}
|
|
206
209
|
|
|
207
|
-
const paginateListCustomerAgreements =
|
|
210
|
+
const paginateListCustomerAgreements = createPaginator(ArtifactClient, ListCustomerAgreementsCommand, "nextToken", "nextToken", "maxResults");
|
|
208
211
|
|
|
209
|
-
const paginateListReports =
|
|
212
|
+
const paginateListReports = createPaginator(ArtifactClient, ListReportsCommand, "nextToken", "nextToken", "maxResults");
|
|
210
213
|
|
|
211
|
-
const paginateListReportVersions =
|
|
214
|
+
const paginateListReportVersions = createPaginator(ArtifactClient, ListReportVersionsCommand, "nextToken", "nextToken", "maxResults");
|
|
212
215
|
|
|
213
216
|
const commands = {
|
|
214
217
|
GetAccountSettingsCommand,
|
|
@@ -227,7 +230,7 @@ const paginators = {
|
|
|
227
230
|
};
|
|
228
231
|
class Artifact extends ArtifactClient {
|
|
229
232
|
}
|
|
230
|
-
|
|
233
|
+
createAggregatedClient(commands, Artifact, { paginators });
|
|
231
234
|
|
|
232
235
|
const AcceptanceType = {
|
|
233
236
|
EXPLICIT: "EXPLICIT",
|
|
@@ -265,9 +268,6 @@ const UploadState = {
|
|
|
265
268
|
PROCESSING: "PROCESSING",
|
|
266
269
|
};
|
|
267
270
|
|
|
268
|
-
exports.$Command = client.Command;
|
|
269
|
-
exports.__Client = client.Client;
|
|
270
|
-
exports.ArtifactServiceException = ArtifactServiceException.ArtifactServiceException;
|
|
271
271
|
exports.AcceptanceType = AcceptanceType;
|
|
272
272
|
exports.AgreementType = AgreementType;
|
|
273
273
|
exports.Artifact = Artifact;
|
|
@@ -288,23 +288,3 @@ exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
|
288
288
|
exports.paginateListCustomerAgreements = paginateListCustomerAgreements;
|
|
289
289
|
exports.paginateListReportVersions = paginateListReportVersions;
|
|
290
290
|
exports.paginateListReports = paginateListReports;
|
|
291
|
-
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
292
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
293
|
-
Object.defineProperty(exports, '__proto__', {
|
|
294
|
-
enumerable: true,
|
|
295
|
-
value: schemas_0['__proto__']
|
|
296
|
-
});
|
|
297
|
-
|
|
298
|
-
Object.keys(schemas_0).forEach(function (k) {
|
|
299
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
300
|
-
});
|
|
301
|
-
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
302
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
303
|
-
Object.defineProperty(exports, '__proto__', {
|
|
304
|
-
enumerable: true,
|
|
305
|
-
value: errors['__proto__']
|
|
306
|
-
});
|
|
307
|
-
|
|
308
|
-
Object.keys(errors).forEach(function (k) {
|
|
309
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
310
|
-
});
|
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.ArtifactServiceException =
|
|
4
|
-
const client_1 = require("@smithy/core/client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return client_1.ServiceException; } });
|
|
6
|
-
class ArtifactServiceException extends client_1.ServiceException {
|
|
1
|
+
const { ServiceException: __ServiceException } = require("@smithy/core/client");
|
|
2
|
+
exports.__ServiceException = __ServiceException;
|
|
3
|
+
exports.ArtifactServiceException = class ArtifactServiceException extends __ServiceException {
|
|
7
4
|
constructor(options) {
|
|
8
5
|
super(options);
|
|
9
6
|
Object.setPrototypeOf(this, ArtifactServiceException.prototype);
|
|
10
7
|
}
|
|
11
|
-
}
|
|
12
|
-
exports.ArtifactServiceException = ArtifactServiceException;
|
|
8
|
+
};
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.ValidationException = exports.ThrottlingException = exports.ServiceQuotaExceededException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.AccessDeniedException = void 0;
|
|
4
|
-
const ArtifactServiceException_1 = require("./ArtifactServiceException");
|
|
5
|
-
class AccessDeniedException extends ArtifactServiceException_1.ArtifactServiceException {
|
|
1
|
+
const { ArtifactServiceException: __BaseException } = require("./ArtifactServiceException");
|
|
2
|
+
exports.AccessDeniedException = class AccessDeniedException extends __BaseException {
|
|
6
3
|
name = "AccessDeniedException";
|
|
7
4
|
$fault = "client";
|
|
8
5
|
constructor(opts) {
|
|
@@ -13,9 +10,8 @@ class AccessDeniedException extends ArtifactServiceException_1.ArtifactServiceEx
|
|
|
13
10
|
});
|
|
14
11
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
15
12
|
}
|
|
16
|
-
}
|
|
17
|
-
exports.
|
|
18
|
-
class ConflictException extends ArtifactServiceException_1.ArtifactServiceException {
|
|
13
|
+
};
|
|
14
|
+
exports.ConflictException = class ConflictException extends __BaseException {
|
|
19
15
|
name = "ConflictException";
|
|
20
16
|
$fault = "client";
|
|
21
17
|
resourceId;
|
|
@@ -30,9 +26,8 @@ class ConflictException extends ArtifactServiceException_1.ArtifactServiceExcept
|
|
|
30
26
|
this.resourceId = opts.resourceId;
|
|
31
27
|
this.resourceType = opts.resourceType;
|
|
32
28
|
}
|
|
33
|
-
}
|
|
34
|
-
exports.
|
|
35
|
-
class InternalServerException extends ArtifactServiceException_1.ArtifactServiceException {
|
|
29
|
+
};
|
|
30
|
+
exports.InternalServerException = class InternalServerException extends __BaseException {
|
|
36
31
|
name = "InternalServerException";
|
|
37
32
|
$fault = "server";
|
|
38
33
|
$retryable = {};
|
|
@@ -46,9 +41,8 @@ class InternalServerException extends ArtifactServiceException_1.ArtifactService
|
|
|
46
41
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
47
42
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
48
43
|
}
|
|
49
|
-
}
|
|
50
|
-
exports.
|
|
51
|
-
class ResourceNotFoundException extends ArtifactServiceException_1.ArtifactServiceException {
|
|
44
|
+
};
|
|
45
|
+
exports.ResourceNotFoundException = class ResourceNotFoundException extends __BaseException {
|
|
52
46
|
name = "ResourceNotFoundException";
|
|
53
47
|
$fault = "client";
|
|
54
48
|
resourceId;
|
|
@@ -63,9 +57,8 @@ class ResourceNotFoundException extends ArtifactServiceException_1.ArtifactServi
|
|
|
63
57
|
this.resourceId = opts.resourceId;
|
|
64
58
|
this.resourceType = opts.resourceType;
|
|
65
59
|
}
|
|
66
|
-
}
|
|
67
|
-
exports.
|
|
68
|
-
class ServiceQuotaExceededException extends ArtifactServiceException_1.ArtifactServiceException {
|
|
60
|
+
};
|
|
61
|
+
exports.ServiceQuotaExceededException = class ServiceQuotaExceededException extends __BaseException {
|
|
69
62
|
name = "ServiceQuotaExceededException";
|
|
70
63
|
$fault = "client";
|
|
71
64
|
resourceId;
|
|
@@ -84,9 +77,8 @@ class ServiceQuotaExceededException extends ArtifactServiceException_1.ArtifactS
|
|
|
84
77
|
this.serviceCode = opts.serviceCode;
|
|
85
78
|
this.quotaCode = opts.quotaCode;
|
|
86
79
|
}
|
|
87
|
-
}
|
|
88
|
-
exports.
|
|
89
|
-
class ThrottlingException extends ArtifactServiceException_1.ArtifactServiceException {
|
|
80
|
+
};
|
|
81
|
+
exports.ThrottlingException = class ThrottlingException extends __BaseException {
|
|
90
82
|
name = "ThrottlingException";
|
|
91
83
|
$fault = "client";
|
|
92
84
|
$retryable = {
|
|
@@ -106,9 +98,8 @@ class ThrottlingException extends ArtifactServiceException_1.ArtifactServiceExce
|
|
|
106
98
|
this.quotaCode = opts.quotaCode;
|
|
107
99
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
108
100
|
}
|
|
109
|
-
}
|
|
110
|
-
exports.
|
|
111
|
-
class ValidationException extends ArtifactServiceException_1.ArtifactServiceException {
|
|
101
|
+
};
|
|
102
|
+
exports.ValidationException = class ValidationException extends __BaseException {
|
|
112
103
|
name = "ValidationException";
|
|
113
104
|
$fault = "client";
|
|
114
105
|
reason;
|
|
@@ -123,5 +114,4 @@ class ValidationException extends ArtifactServiceException_1.ArtifactServiceExce
|
|
|
123
114
|
this.reason = opts.reason;
|
|
124
115
|
this.fieldList = opts.fieldList;
|
|
125
116
|
}
|
|
126
|
-
}
|
|
127
|
-
exports.ValidationException = ValidationException;
|
|
117
|
+
};
|
|
@@ -1,36 +1,32 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const retry_1 = require("@smithy/core/retry");
|
|
11
|
-
const serde_1 = require("@smithy/core/serde");
|
|
12
|
-
const fetch_http_handler_1 = require("@smithy/fetch-http-handler");
|
|
13
|
-
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
1
|
+
const packageInfo = require("../package.json");
|
|
2
|
+
const { Sha256 } = require("@aws-crypto/sha256-browser");
|
|
3
|
+
const { createDefaultUserAgentProvider } = require("@aws-sdk/core/client");
|
|
4
|
+
const { invalidProvider, loadConfigsForDefaultMode } = require("@smithy/core/client");
|
|
5
|
+
const { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig } = require("@smithy/core/config");
|
|
6
|
+
const { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } = require("@smithy/core/retry");
|
|
7
|
+
const { calculateBodyLength } = require("@smithy/core/serde");
|
|
8
|
+
const { FetchHttpHandler: RequestHandler, streamCollector } = require("@smithy/fetch-http-handler");
|
|
9
|
+
const { getRuntimeConfig: getSharedRuntimeConfig } = require("./runtimeConfig.shared");
|
|
14
10
|
const getRuntimeConfig = (config) => {
|
|
15
|
-
const defaultsMode =
|
|
16
|
-
const defaultConfigProvider = () => defaultsMode().then(
|
|
17
|
-
const clientSharedValues = (
|
|
11
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
12
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
13
|
+
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
18
14
|
return {
|
|
19
15
|
...clientSharedValues,
|
|
20
16
|
...config,
|
|
21
17
|
runtime: "browser",
|
|
22
18
|
defaultsMode,
|
|
23
|
-
bodyLengthChecker: config?.bodyLengthChecker ??
|
|
19
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
24
20
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
|
|
25
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
26
|
-
maxAttempts: config?.maxAttempts ??
|
|
27
|
-
region: config?.region ??
|
|
28
|
-
requestHandler:
|
|
29
|
-
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode ||
|
|
30
|
-
sha256: config?.sha256 ??
|
|
31
|
-
streamCollector: config?.streamCollector ??
|
|
32
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(
|
|
33
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(
|
|
21
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
22
|
+
maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
|
|
23
|
+
region: config?.region ?? invalidProvider("Region is missing"),
|
|
24
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
25
|
+
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
|
|
26
|
+
sha256: config?.sha256 ?? Sha256,
|
|
27
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
28
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
|
|
29
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
|
|
34
30
|
};
|
|
35
31
|
};
|
|
36
32
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,23 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const retry_1 = require("@smithy/core/retry");
|
|
12
|
-
const serde_1 = require("@smithy/core/serde");
|
|
13
|
-
const node_http_handler_1 = require("@smithy/node-http-handler");
|
|
14
|
-
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
1
|
+
const packageInfo = require("../package.json");
|
|
2
|
+
const { createDefaultUserAgentProvider, emitWarningIfUnsupportedVersion: awsCheckVersion, NODE_APP_ID_CONFIG_OPTIONS } = require("@aws-sdk/core/client");
|
|
3
|
+
const { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
4
|
+
const { defaultProvider: credentialDefaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
5
|
+
const { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } = require("@smithy/core/client");
|
|
6
|
+
const { loadConfig: loadNodeConfig, NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveDefaultsModeConfig } = require("@smithy/core/config");
|
|
7
|
+
const { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } = require("@smithy/core/retry");
|
|
8
|
+
const { calculateBodyLength, Hash } = require("@smithy/core/serde");
|
|
9
|
+
const { NodeHttpHandler: RequestHandler, streamCollector } = require("@smithy/node-http-handler");
|
|
10
|
+
const { getRuntimeConfig: getSharedRuntimeConfig } = require("./runtimeConfig.shared");
|
|
15
11
|
const getRuntimeConfig = (config) => {
|
|
16
|
-
|
|
17
|
-
const defaultsMode =
|
|
18
|
-
const defaultConfigProvider = () => defaultsMode().then(
|
|
19
|
-
const clientSharedValues = (
|
|
20
|
-
(
|
|
12
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
13
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
14
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
15
|
+
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
16
|
+
awsCheckVersion(process.version);
|
|
21
17
|
const loaderConfig = {
|
|
22
18
|
profile: config?.profile,
|
|
23
19
|
logger: clientSharedValues.logger,
|
|
@@ -27,23 +23,23 @@ const getRuntimeConfig = (config) => {
|
|
|
27
23
|
...config,
|
|
28
24
|
runtime: "node",
|
|
29
25
|
defaultsMode,
|
|
30
|
-
authSchemePreference: config?.authSchemePreference ?? (
|
|
31
|
-
bodyLengthChecker: config?.bodyLengthChecker ??
|
|
32
|
-
credentialDefaultProvider: config?.credentialDefaultProvider ??
|
|
33
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
34
|
-
maxAttempts: config?.maxAttempts ?? (
|
|
35
|
-
region: config?.region ?? (
|
|
36
|
-
requestHandler:
|
|
26
|
+
authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
27
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
28
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider,
|
|
29
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
30
|
+
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
31
|
+
region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
32
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
37
33
|
retryMode: config?.retryMode ??
|
|
38
|
-
(
|
|
39
|
-
...
|
|
40
|
-
default: async () => (await defaultConfigProvider()).retryMode ||
|
|
34
|
+
loadNodeConfig({
|
|
35
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
36
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
41
37
|
}, config),
|
|
42
|
-
sha256: config?.sha256 ??
|
|
43
|
-
streamCollector: config?.streamCollector ??
|
|
44
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (
|
|
45
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (
|
|
46
|
-
userAgentAppId: config?.userAgentAppId ?? (
|
|
38
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
39
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
40
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
41
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
42
|
+
userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
47
43
|
};
|
|
48
44
|
};
|
|
49
45
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,15 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.getRuntimeConfig = void 0;
|
|
4
|
-
const sha256_js_1 = require("@aws-crypto/sha256-js");
|
|
5
|
-
const runtimeConfig_browser_1 = require("./runtimeConfig.browser");
|
|
1
|
+
const { Sha256 } = require("@aws-crypto/sha256-js");
|
|
2
|
+
const { getRuntimeConfig: getBrowserRuntimeConfig } = require("./runtimeConfig.browser");
|
|
6
3
|
const getRuntimeConfig = (config) => {
|
|
7
|
-
const browserDefaults = (
|
|
4
|
+
const browserDefaults = getBrowserRuntimeConfig(config);
|
|
8
5
|
return {
|
|
9
6
|
...browserDefaults,
|
|
10
7
|
...config,
|
|
11
8
|
runtime: "react-native",
|
|
12
|
-
sha256: config?.sha256 ??
|
|
9
|
+
sha256: config?.sha256 ?? Sha256,
|
|
13
10
|
};
|
|
14
11
|
};
|
|
15
12
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,42 +1,38 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
|
|
10
|
-
const endpointResolver_1 = require("./endpoint/endpointResolver");
|
|
11
|
-
const schemas_0_1 = require("./schemas/schemas_0");
|
|
12
|
-
const getRuntimeConfig = (config) => {
|
|
1
|
+
const { AwsSdkSigV4Signer } = require("@aws-sdk/core/httpAuthSchemes");
|
|
2
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
3
|
+
const { NoOpLogger } = require("@smithy/core/client");
|
|
4
|
+
const { parseUrl } = require("@smithy/core/protocols");
|
|
5
|
+
const { fromBase64, fromUtf8, toBase64, toUtf8 } = require("@smithy/core/serde");
|
|
6
|
+
const { defaultArtifactHttpAuthSchemeProvider } = require("./auth/httpAuthSchemeProvider");
|
|
7
|
+
const { defaultEndpointResolver } = require("./endpoint/endpointResolver");
|
|
8
|
+
const { errorTypeRegistries } = require("./schemas/schemas_0");
|
|
9
|
+
exports.getRuntimeConfig = (config) => {
|
|
13
10
|
return {
|
|
14
11
|
apiVersion: "2018-05-10",
|
|
15
|
-
base64Decoder: config?.base64Decoder ??
|
|
16
|
-
base64Encoder: config?.base64Encoder ??
|
|
12
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
13
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
17
14
|
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
18
|
-
endpointProvider: config?.endpointProvider ??
|
|
15
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
19
16
|
extensions: config?.extensions ?? [],
|
|
20
|
-
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ??
|
|
17
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultArtifactHttpAuthSchemeProvider,
|
|
21
18
|
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
22
19
|
{
|
|
23
20
|
schemeId: "aws.auth#sigv4",
|
|
24
21
|
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
25
|
-
signer: new
|
|
22
|
+
signer: new AwsSdkSigV4Signer(),
|
|
26
23
|
},
|
|
27
24
|
],
|
|
28
|
-
logger: config?.logger ?? new
|
|
29
|
-
protocol: config?.protocol ??
|
|
25
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
30
27
|
protocolSettings: config?.protocolSettings ?? {
|
|
31
28
|
defaultNamespace: "com.amazonaws.artifact",
|
|
32
|
-
errorTypeRegistries
|
|
29
|
+
errorTypeRegistries,
|
|
33
30
|
version: "2018-05-10",
|
|
34
31
|
serviceTarget: "Artifact",
|
|
35
32
|
},
|
|
36
33
|
serviceId: config?.serviceId ?? "Artifact",
|
|
37
|
-
urlParser: config?.urlParser ??
|
|
38
|
-
utf8Decoder: config?.utf8Decoder ??
|
|
39
|
-
utf8Encoder: config?.utf8Encoder ??
|
|
34
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
35
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
36
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
40
37
|
};
|
|
41
38
|
};
|
|
42
|
-
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PutAccountSettings$ = exports.ListReportVersions$ = exports.ListReports$ = exports.ListCustomerAgreements$ = exports.GetTermForReport$ = exports.GetReportMetadata$ = exports.GetReport$ = exports.GetAccountSettings$ = exports.ValidationExceptionField$ = exports.ReportSummary$ = exports.ReportDetail$ = exports.PutAccountSettingsResponse$ = exports.PutAccountSettingsRequest$ = exports.ListReportVersionsResponse$ = exports.ListReportVersionsRequest$ = exports.ListReportsResponse$ = exports.ListReportsRequest$ = exports.ListCustomerAgreementsResponse$ = exports.ListCustomerAgreementsRequest$ = exports.GetTermForReportResponse$ = exports.GetTermForReportRequest$ = exports.GetReportResponse$ = exports.GetReportRequest$ = exports.GetReportMetadataResponse$ = exports.GetReportMetadataRequest$ = exports.GetAccountSettingsResponse$ = exports.GetAccountSettingsRequest$ = exports.CustomerAgreementSummary$ = exports.AccountSettings$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.ThrottlingException$ = exports.ServiceQuotaExceededException$ = exports.ResourceNotFoundException$ = exports.InternalServerException$ = exports.ConflictException$ = exports.AccessDeniedException$ = exports.ArtifactServiceException$ = void 0;
|
|
4
1
|
const _ADE = "AccessDeniedException";
|
|
5
2
|
const _AS = "AccountSettings";
|
|
6
3
|
const _CAL = "CustomerAgreementList";
|
|
@@ -97,195 +94,224 @@ const _tTe = "termToken";
|
|
|
97
94
|
const _uS = "uploadState";
|
|
98
95
|
const _v = "version";
|
|
99
96
|
const n0 = "com.amazonaws.artifact";
|
|
100
|
-
const
|
|
101
|
-
const
|
|
102
|
-
const
|
|
103
|
-
const _s_registry =
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
97
|
+
const { TypeRegistry } = require("@smithy/core/schema");
|
|
98
|
+
const { ArtifactServiceException } = require("../models/ArtifactServiceException");
|
|
99
|
+
const { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException } = require("../models/errors");
|
|
100
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
101
|
+
const ArtifactServiceException$ = [-3, _s, "ArtifactServiceException", 0, [], []];
|
|
102
|
+
exports.ArtifactServiceException$ = ArtifactServiceException$;
|
|
103
|
+
_s_registry.registerError(ArtifactServiceException$, ArtifactServiceException);
|
|
104
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
105
|
+
const AccessDeniedException$ = [-3, n0, _ADE,
|
|
108
106
|
{ [_e]: _c, [_hE]: 403 },
|
|
109
107
|
[_m],
|
|
110
108
|
[0], 1
|
|
111
109
|
];
|
|
112
|
-
|
|
113
|
-
|
|
110
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
111
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
112
|
+
const ConflictException$ = [-3, n0, _CE,
|
|
114
113
|
{ [_e]: _c, [_hE]: 409 },
|
|
115
114
|
[_m, _rI, _rT],
|
|
116
115
|
[0, 0, 0], 3
|
|
117
116
|
];
|
|
118
|
-
|
|
119
|
-
|
|
117
|
+
exports.ConflictException$ = ConflictException$;
|
|
118
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
119
|
+
const InternalServerException$ = [-3, n0, _ISE,
|
|
120
120
|
{ [_e]: _se, [_hE]: 500 },
|
|
121
121
|
[_m, _rAS],
|
|
122
122
|
[0, [1, { [_hH]: _RA }]], 1
|
|
123
123
|
];
|
|
124
|
-
|
|
125
|
-
|
|
124
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
125
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
126
|
+
const ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
126
127
|
{ [_e]: _c, [_hE]: 404 },
|
|
127
128
|
[_m, _rI, _rT],
|
|
128
129
|
[0, 0, 0], 3
|
|
129
130
|
];
|
|
130
|
-
|
|
131
|
-
|
|
131
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
132
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
133
|
+
const ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
132
134
|
{ [_e]: _c, [_hE]: 402 },
|
|
133
135
|
[_m, _rI, _rT, _sC, _qC],
|
|
134
136
|
[0, 0, 0, 0, 0], 5
|
|
135
137
|
];
|
|
136
|
-
|
|
137
|
-
|
|
138
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
139
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
140
|
+
const ThrottlingException$ = [-3, n0, _TE,
|
|
138
141
|
{ [_e]: _c, [_hE]: 429 },
|
|
139
142
|
[_m, _sC, _qC, _rAS],
|
|
140
143
|
[0, 0, 0, [1, { [_hH]: _RA }]], 1
|
|
141
144
|
];
|
|
142
|
-
|
|
143
|
-
|
|
145
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
146
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
147
|
+
const ValidationException$ = [-3, n0, _VE,
|
|
144
148
|
{ [_e]: _c, [_hE]: 400 },
|
|
145
149
|
[_m, _r, _fL],
|
|
146
150
|
[0, 0, () => ValidationExceptionFieldList], 2
|
|
147
151
|
];
|
|
148
|
-
|
|
152
|
+
exports.ValidationException$ = ValidationException$;
|
|
153
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
149
154
|
exports.errorTypeRegistries = [
|
|
150
155
|
_s_registry,
|
|
151
156
|
n0_registry,
|
|
152
157
|
];
|
|
153
|
-
|
|
158
|
+
const AccountSettings$ = [3, n0, _AS,
|
|
154
159
|
0,
|
|
155
160
|
[_nSS],
|
|
156
161
|
[0]
|
|
157
162
|
];
|
|
158
|
-
exports.
|
|
163
|
+
exports.AccountSettings$ = AccountSettings$;
|
|
164
|
+
const CustomerAgreementSummary$ = [3, n0, _CAS,
|
|
159
165
|
0,
|
|
160
166
|
[_n, _a, _i, _aA, _aAI, _oA, _eS, _eE, _st, _d, _aT, _tT, _t],
|
|
161
167
|
[0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 64 | 0, 64 | 0, 0]
|
|
162
168
|
];
|
|
163
|
-
exports.
|
|
169
|
+
exports.CustomerAgreementSummary$ = CustomerAgreementSummary$;
|
|
170
|
+
const GetAccountSettingsRequest$ = [3, n0, _GASR,
|
|
164
171
|
0,
|
|
165
172
|
[],
|
|
166
173
|
[]
|
|
167
174
|
];
|
|
168
|
-
exports.
|
|
175
|
+
exports.GetAccountSettingsRequest$ = GetAccountSettingsRequest$;
|
|
176
|
+
const GetAccountSettingsResponse$ = [3, n0, _GASRe,
|
|
169
177
|
0,
|
|
170
178
|
[_aS],
|
|
171
|
-
[() =>
|
|
179
|
+
[() => AccountSettings$]
|
|
172
180
|
];
|
|
173
|
-
exports.
|
|
181
|
+
exports.GetAccountSettingsResponse$ = GetAccountSettingsResponse$;
|
|
182
|
+
const GetReportMetadataRequest$ = [3, n0, _GRMR,
|
|
174
183
|
0,
|
|
175
184
|
[_rIe, _rV],
|
|
176
185
|
[[0, { [_hQ]: _rIe }], [1, { [_hQ]: _rV }]], 1
|
|
177
186
|
];
|
|
178
|
-
exports.
|
|
187
|
+
exports.GetReportMetadataRequest$ = GetReportMetadataRequest$;
|
|
188
|
+
const GetReportMetadataResponse$ = [3, n0, _GRMRe,
|
|
179
189
|
0,
|
|
180
190
|
[_rD],
|
|
181
|
-
[() =>
|
|
191
|
+
[() => ReportDetail$]
|
|
182
192
|
];
|
|
183
|
-
exports.
|
|
193
|
+
exports.GetReportMetadataResponse$ = GetReportMetadataResponse$;
|
|
194
|
+
const GetReportRequest$ = [3, n0, _GRR,
|
|
184
195
|
0,
|
|
185
196
|
[_rIe, _tTe, _rV],
|
|
186
197
|
[[0, { [_hQ]: _rIe }], [0, { [_hQ]: _tTe }], [1, { [_hQ]: _rV }]], 2
|
|
187
198
|
];
|
|
188
|
-
exports.
|
|
199
|
+
exports.GetReportRequest$ = GetReportRequest$;
|
|
200
|
+
const GetReportResponse$ = [3, n0, _GRRe,
|
|
189
201
|
0,
|
|
190
202
|
[_dPU],
|
|
191
203
|
[0]
|
|
192
204
|
];
|
|
193
|
-
exports.
|
|
205
|
+
exports.GetReportResponse$ = GetReportResponse$;
|
|
206
|
+
const GetTermForReportRequest$ = [3, n0, _GTFRR,
|
|
194
207
|
0,
|
|
195
208
|
[_rIe, _rV],
|
|
196
209
|
[[0, { [_hQ]: _rIe }], [1, { [_hQ]: _rV }]], 1
|
|
197
210
|
];
|
|
198
|
-
exports.
|
|
211
|
+
exports.GetTermForReportRequest$ = GetTermForReportRequest$;
|
|
212
|
+
const GetTermForReportResponse$ = [3, n0, _GTFRRe,
|
|
199
213
|
0,
|
|
200
214
|
[_dPU, _tTe],
|
|
201
215
|
[0, 0]
|
|
202
216
|
];
|
|
203
|
-
exports.
|
|
217
|
+
exports.GetTermForReportResponse$ = GetTermForReportResponse$;
|
|
218
|
+
const ListCustomerAgreementsRequest$ = [3, n0, _LCAR,
|
|
204
219
|
0,
|
|
205
220
|
[_mR, _nT],
|
|
206
221
|
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
207
222
|
];
|
|
208
|
-
exports.
|
|
223
|
+
exports.ListCustomerAgreementsRequest$ = ListCustomerAgreementsRequest$;
|
|
224
|
+
const ListCustomerAgreementsResponse$ = [3, n0, _LCARi,
|
|
209
225
|
0,
|
|
210
226
|
[_cA, _nT],
|
|
211
227
|
[() => CustomerAgreementList, 0], 1
|
|
212
228
|
];
|
|
213
|
-
exports.
|
|
229
|
+
exports.ListCustomerAgreementsResponse$ = ListCustomerAgreementsResponse$;
|
|
230
|
+
const ListReportsRequest$ = [3, n0, _LRR,
|
|
214
231
|
0,
|
|
215
232
|
[_mR, _nT],
|
|
216
233
|
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
217
234
|
];
|
|
218
|
-
exports.
|
|
235
|
+
exports.ListReportsRequest$ = ListReportsRequest$;
|
|
236
|
+
const ListReportsResponse$ = [3, n0, _LRRi,
|
|
219
237
|
0,
|
|
220
238
|
[_re, _nT],
|
|
221
239
|
[() => ReportsList, 0]
|
|
222
240
|
];
|
|
223
|
-
exports.
|
|
241
|
+
exports.ListReportsResponse$ = ListReportsResponse$;
|
|
242
|
+
const ListReportVersionsRequest$ = [3, n0, _LRVR,
|
|
224
243
|
0,
|
|
225
244
|
[_rIe, _mR, _nT],
|
|
226
245
|
[[0, { [_hQ]: _rIe }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
|
|
227
246
|
];
|
|
228
|
-
exports.
|
|
247
|
+
exports.ListReportVersionsRequest$ = ListReportVersionsRequest$;
|
|
248
|
+
const ListReportVersionsResponse$ = [3, n0, _LRVRi,
|
|
229
249
|
0,
|
|
230
250
|
[_re, _nT],
|
|
231
251
|
[() => ReportsList, 0], 1
|
|
232
252
|
];
|
|
233
|
-
exports.
|
|
253
|
+
exports.ListReportVersionsResponse$ = ListReportVersionsResponse$;
|
|
254
|
+
const PutAccountSettingsRequest$ = [3, n0, _PASR,
|
|
234
255
|
0,
|
|
235
256
|
[_nSS],
|
|
236
257
|
[0]
|
|
237
258
|
];
|
|
238
|
-
exports.
|
|
259
|
+
exports.PutAccountSettingsRequest$ = PutAccountSettingsRequest$;
|
|
260
|
+
const PutAccountSettingsResponse$ = [3, n0, _PASRu,
|
|
239
261
|
0,
|
|
240
262
|
[_aS],
|
|
241
|
-
[() =>
|
|
263
|
+
[() => AccountSettings$]
|
|
242
264
|
];
|
|
243
|
-
exports.
|
|
265
|
+
exports.PutAccountSettingsResponse$ = PutAccountSettingsResponse$;
|
|
266
|
+
const ReportDetail$ = [3, n0, _RD,
|
|
244
267
|
0,
|
|
245
268
|
[_i, _n, _d, _pS, _pE, _cAr, _lMA, _dA, _st, _a, _ser, _ca, _cN, _pN, _tA, _v, _aTc, _sN, _uS, _sM],
|
|
246
269
|
[0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0]
|
|
247
270
|
];
|
|
248
|
-
exports.
|
|
271
|
+
exports.ReportDetail$ = ReportDetail$;
|
|
272
|
+
const ReportSummary$ = [3, n0, _RS,
|
|
249
273
|
0,
|
|
250
274
|
[_i, _n, _st, _a, _v, _uS, _d, _pS, _pE, _ser, _ca, _cN, _pN, _sM, _aTc],
|
|
251
275
|
[0, 0, 0, 0, 1, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0]
|
|
252
276
|
];
|
|
253
|
-
exports.
|
|
277
|
+
exports.ReportSummary$ = ReportSummary$;
|
|
278
|
+
const ValidationExceptionField$ = [3, n0, _VEF,
|
|
254
279
|
0,
|
|
255
280
|
[_n, _m],
|
|
256
281
|
[0, 0], 2
|
|
257
282
|
];
|
|
283
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
258
284
|
var AgreementTerms = 64 | 0;
|
|
259
285
|
var CustomerAgreementList = [1, n0, _CAL,
|
|
260
|
-
0, () =>
|
|
286
|
+
0, () => CustomerAgreementSummary$
|
|
261
287
|
];
|
|
262
288
|
var ReportsList = [1, n0, _RL,
|
|
263
|
-
0, () =>
|
|
289
|
+
0, () => ReportSummary$
|
|
264
290
|
];
|
|
265
291
|
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
266
|
-
0, () =>
|
|
292
|
+
0, () => ValidationExceptionField$
|
|
267
293
|
];
|
|
268
294
|
exports.GetAccountSettings$ = [9, n0, _GAS,
|
|
269
|
-
{ [_h]: ["GET", "/v1/account-settings/get", 200] }, () =>
|
|
295
|
+
{ [_h]: ["GET", "/v1/account-settings/get", 200] }, () => GetAccountSettingsRequest$, () => GetAccountSettingsResponse$
|
|
270
296
|
];
|
|
271
297
|
exports.GetReport$ = [9, n0, _GR,
|
|
272
|
-
{ [_h]: ["GET", "/v1/report/get", 200] }, () =>
|
|
298
|
+
{ [_h]: ["GET", "/v1/report/get", 200] }, () => GetReportRequest$, () => GetReportResponse$
|
|
273
299
|
];
|
|
274
300
|
exports.GetReportMetadata$ = [9, n0, _GRM,
|
|
275
|
-
{ [_h]: ["GET", "/v1/report/getMetadata", 200] }, () =>
|
|
301
|
+
{ [_h]: ["GET", "/v1/report/getMetadata", 200] }, () => GetReportMetadataRequest$, () => GetReportMetadataResponse$
|
|
276
302
|
];
|
|
277
303
|
exports.GetTermForReport$ = [9, n0, _GTFR,
|
|
278
|
-
{ [_h]: ["GET", "/v1/report/getTermForReport", 200] }, () =>
|
|
304
|
+
{ [_h]: ["GET", "/v1/report/getTermForReport", 200] }, () => GetTermForReportRequest$, () => GetTermForReportResponse$
|
|
279
305
|
];
|
|
280
306
|
exports.ListCustomerAgreements$ = [9, n0, _LCA,
|
|
281
|
-
{ [_h]: ["GET", "/v1/customer-agreement/list", 200] }, () =>
|
|
307
|
+
{ [_h]: ["GET", "/v1/customer-agreement/list", 200] }, () => ListCustomerAgreementsRequest$, () => ListCustomerAgreementsResponse$
|
|
282
308
|
];
|
|
283
309
|
exports.ListReports$ = [9, n0, _LR,
|
|
284
|
-
{ [_h]: ["GET", "/v1/report/list", 200] }, () =>
|
|
310
|
+
{ [_h]: ["GET", "/v1/report/list", 200] }, () => ListReportsRequest$, () => ListReportsResponse$
|
|
285
311
|
];
|
|
286
312
|
exports.ListReportVersions$ = [9, n0, _LRV,
|
|
287
|
-
{ [_h]: ["GET", "/v1/report/listVersions", 200] }, () =>
|
|
313
|
+
{ [_h]: ["GET", "/v1/report/listVersions", 200] }, () => ListReportVersionsRequest$, () => ListReportVersionsResponse$
|
|
288
314
|
];
|
|
289
315
|
exports.PutAccountSettings$ = [9, n0, _PAS,
|
|
290
|
-
{ [_h]: ["PUT", "/v1/account-settings/put", 200] }, () =>
|
|
316
|
+
{ [_h]: ["PUT", "/v1/account-settings/put", 200] }, () => PutAccountSettingsRequest$, () => PutAccountSettingsResponse$
|
|
291
317
|
];
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-artifact",
|
|
3
3
|
"description": "AWS SDK for JavaScript Artifact Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1070.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
8
|
-
"build:es": "tsc -p tsconfig.es.json",
|
|
8
|
+
"build:es": "premove dist-es && tsc -p tsconfig.es.json",
|
|
9
9
|
"build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
|
|
10
|
-
"build:types": "tsc -p tsconfig.types.json",
|
|
10
|
+
"build:types": "premove dist-types && tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "premove dist-cjs dist-es dist-types
|
|
12
|
+
"clean": "premove dist-cjs dist-es dist-types",
|
|
13
13
|
"extract:docs": "api-extractor run --local",
|
|
14
|
-
"generate:client": "node ../../scripts/generate-clients/single-service
|
|
14
|
+
"generate:client": "node ../../scripts/generate-clients/single-service",
|
|
15
15
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
16
16
|
},
|
|
17
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.974.21",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.56",
|
|
26
|
+
"@aws-sdk/types": "^3.973.13",
|
|
27
27
|
"@smithy/core": "^3.24.6",
|
|
28
28
|
"@smithy/fetch-http-handler": "^5.4.6",
|
|
29
29
|
"@smithy/node-http-handler": "^4.7.6",
|