@aws-sdk/client-apprunner 3.52.0 → 3.54.1

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.
@@ -1,6 +1,31 @@
1
1
  import { __assign, __awaiter, __generator } from "tslib";
2
2
  import { getRegionInfo } from "@aws-sdk/config-resolver";
3
- var regionHash = {};
3
+ var regionHash = {
4
+ "us-east-1": {
5
+ variants: [
6
+ {
7
+ hostname: "apprunner-fips.us-east-1.amazonaws.com",
8
+ tags: ["fips"],
9
+ },
10
+ ],
11
+ },
12
+ "us-east-2": {
13
+ variants: [
14
+ {
15
+ hostname: "apprunner-fips.us-east-2.amazonaws.com",
16
+ tags: ["fips"],
17
+ },
18
+ ],
19
+ },
20
+ "us-west-2": {
21
+ variants: [
22
+ {
23
+ hostname: "apprunner-fips.us-west-2.amazonaws.com",
24
+ tags: ["fips"],
25
+ },
26
+ ],
27
+ },
28
+ };
4
29
  var partitionHash = {
5
30
  aws: {
6
31
  regions: [
@@ -20,6 +45,9 @@ var partitionHash = {
20
45
  "eu-west-1",
21
46
  "eu-west-2",
22
47
  "eu-west-3",
48
+ "fips-us-east-1",
49
+ "fips-us-east-2",
50
+ "fips-us-west-2",
23
51
  "me-south-1",
24
52
  "sa-east-1",
25
53
  "us-east-1",
package/dist-es/index.js CHANGED
@@ -3,3 +3,4 @@ export * from "./AppRunnerClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { AppRunnerServiceException } from "./models/AppRunnerServiceException";
@@ -0,0 +1,12 @@
1
+ import { __extends } from "tslib";
2
+ import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
+ var AppRunnerServiceException = (function (_super) {
4
+ __extends(AppRunnerServiceException, _super);
5
+ function AppRunnerServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, AppRunnerServiceException.prototype);
8
+ return _this;
9
+ }
10
+ return AppRunnerServiceException;
11
+ }(__ServiceException));
12
+ export { AppRunnerServiceException };
@@ -1,5 +1,6 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
2
  import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
3
+ import { AppRunnerServiceException as __BaseException } from "./AppRunnerServiceException";
3
4
  export var AssociateCustomDomainRequest;
4
5
  (function (AssociateCustomDomainRequest) {
5
6
  AssociateCustomDomainRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -32,6 +33,45 @@ export var AssociateCustomDomainResponse;
32
33
  (function (AssociateCustomDomainResponse) {
33
34
  AssociateCustomDomainResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
34
35
  })(AssociateCustomDomainResponse || (AssociateCustomDomainResponse = {}));
36
+ var InternalServiceErrorException = (function (_super) {
37
+ __extends(InternalServiceErrorException, _super);
38
+ function InternalServiceErrorException(opts) {
39
+ var _this = _super.call(this, __assign({ name: "InternalServiceErrorException", $fault: "server" }, opts)) || this;
40
+ _this.name = "InternalServiceErrorException";
41
+ _this.$fault = "server";
42
+ Object.setPrototypeOf(_this, InternalServiceErrorException.prototype);
43
+ _this.Message = opts.Message;
44
+ return _this;
45
+ }
46
+ return InternalServiceErrorException;
47
+ }(__BaseException));
48
+ export { InternalServiceErrorException };
49
+ var InvalidRequestException = (function (_super) {
50
+ __extends(InvalidRequestException, _super);
51
+ function InvalidRequestException(opts) {
52
+ var _this = _super.call(this, __assign({ name: "InvalidRequestException", $fault: "client" }, opts)) || this;
53
+ _this.name = "InvalidRequestException";
54
+ _this.$fault = "client";
55
+ Object.setPrototypeOf(_this, InvalidRequestException.prototype);
56
+ _this.Message = opts.Message;
57
+ return _this;
58
+ }
59
+ return InvalidRequestException;
60
+ }(__BaseException));
61
+ export { InvalidRequestException };
62
+ var InvalidStateException = (function (_super) {
63
+ __extends(InvalidStateException, _super);
64
+ function InvalidStateException(opts) {
65
+ var _this = _super.call(this, __assign({ name: "InvalidStateException", $fault: "client" }, opts)) || this;
66
+ _this.name = "InvalidStateException";
67
+ _this.$fault = "client";
68
+ Object.setPrototypeOf(_this, InvalidStateException.prototype);
69
+ _this.Message = opts.Message;
70
+ return _this;
71
+ }
72
+ return InvalidStateException;
73
+ }(__BaseException));
74
+ export { InvalidStateException };
35
75
  export var Tag;
36
76
  (function (Tag) {
37
77
  Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -53,6 +93,19 @@ export var CreateAutoScalingConfigurationResponse;
53
93
  (function (CreateAutoScalingConfigurationResponse) {
54
94
  CreateAutoScalingConfigurationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
55
95
  })(CreateAutoScalingConfigurationResponse || (CreateAutoScalingConfigurationResponse = {}));
96
+ var ServiceQuotaExceededException = (function (_super) {
97
+ __extends(ServiceQuotaExceededException, _super);
98
+ function ServiceQuotaExceededException(opts) {
99
+ var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
100
+ _this.name = "ServiceQuotaExceededException";
101
+ _this.$fault = "client";
102
+ Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
103
+ _this.Message = opts.Message;
104
+ return _this;
105
+ }
106
+ return ServiceQuotaExceededException;
107
+ }(__BaseException));
108
+ export { ServiceQuotaExceededException };
56
109
  export var ProviderType;
57
110
  (function (ProviderType) {
58
111
  ProviderType["GITHUB"] = "GITHUB";
@@ -112,7 +165,10 @@ export var AuthenticationConfiguration;
112
165
  })(AuthenticationConfiguration || (AuthenticationConfiguration = {}));
113
166
  export var Runtime;
114
167
  (function (Runtime) {
168
+ Runtime["CORRETTO_11"] = "CORRETTO_11";
169
+ Runtime["CORRETTO_8"] = "CORRETTO_8";
115
170
  Runtime["NODEJS_12"] = "NODEJS_12";
171
+ Runtime["NODEJS_14"] = "NODEJS_14";
116
172
  Runtime["PYTHON_3"] = "PYTHON_3";
117
173
  })(Runtime || (Runtime = {}));
118
174
  export var CodeConfigurationValues;
@@ -215,6 +271,19 @@ export var DeleteAutoScalingConfigurationResponse;
215
271
  (function (DeleteAutoScalingConfigurationResponse) {
216
272
  DeleteAutoScalingConfigurationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
217
273
  })(DeleteAutoScalingConfigurationResponse || (DeleteAutoScalingConfigurationResponse = {}));
274
+ var ResourceNotFoundException = (function (_super) {
275
+ __extends(ResourceNotFoundException, _super);
276
+ function ResourceNotFoundException(opts) {
277
+ var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
278
+ _this.name = "ResourceNotFoundException";
279
+ _this.$fault = "client";
280
+ Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
281
+ _this.Message = opts.Message;
282
+ return _this;
283
+ }
284
+ return ResourceNotFoundException;
285
+ }(__BaseException));
286
+ export { ResourceNotFoundException };
218
287
  export var DeleteConnectionRequest;
219
288
  (function (DeleteConnectionRequest) {
220
289
  DeleteConnectionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };