@aws-sdk/client-accessanalyzer 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.
- package/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/AccessAnalyzerServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +109 -3
- package/dist-cjs/protocols/Aws_restJson1.js +338 -1210
- package/dist-es/index.js +1 -0
- package/dist-es/models/AccessAnalyzerServiceException.js +12 -0
- package/dist-es/models/models_0.js +100 -1
- package/dist-es/protocols/Aws_restJson1.js +691 -1331
- package/dist-types/AccessAnalyzerClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/AccessAnalyzerServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +52 -30
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/AccessAnalyzerClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/AccessAnalyzerServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +38 -30
- 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 +1 -1
- package/package.json +27 -27
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var AccessAnalyzerServiceException = (function (_super) {
|
|
4
|
+
__extends(AccessAnalyzerServiceException, _super);
|
|
5
|
+
function AccessAnalyzerServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, AccessAnalyzerServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return AccessAnalyzerServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { AccessAnalyzerServiceException };
|
|
@@ -1,4 +1,31 @@
|
|
|
1
|
-
import { __assign, __read } from "tslib";
|
|
1
|
+
import { __assign, __extends, __read } from "tslib";
|
|
2
|
+
import { AccessAnalyzerServiceException as __BaseException } from "./AccessAnalyzerServiceException";
|
|
3
|
+
var AccessDeniedException = (function (_super) {
|
|
4
|
+
__extends(AccessDeniedException, _super);
|
|
5
|
+
function AccessDeniedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessDeniedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
10
|
+
return _this;
|
|
11
|
+
}
|
|
12
|
+
return AccessDeniedException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { AccessDeniedException };
|
|
15
|
+
var ConflictException = (function (_super) {
|
|
16
|
+
__extends(ConflictException, _super);
|
|
17
|
+
function ConflictException(opts) {
|
|
18
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
19
|
+
_this.name = "ConflictException";
|
|
20
|
+
_this.$fault = "client";
|
|
21
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
22
|
+
_this.resourceId = opts.resourceId;
|
|
23
|
+
_this.resourceType = opts.resourceType;
|
|
24
|
+
return _this;
|
|
25
|
+
}
|
|
26
|
+
return ConflictException;
|
|
27
|
+
}(__BaseException));
|
|
28
|
+
export { ConflictException };
|
|
2
29
|
export var Criterion;
|
|
3
30
|
(function (Criterion) {
|
|
4
31
|
Criterion.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -7,6 +34,64 @@ export var CreateArchiveRuleRequest;
|
|
|
7
34
|
(function (CreateArchiveRuleRequest) {
|
|
8
35
|
CreateArchiveRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
9
36
|
})(CreateArchiveRuleRequest || (CreateArchiveRuleRequest = {}));
|
|
37
|
+
var InternalServerException = (function (_super) {
|
|
38
|
+
__extends(InternalServerException, _super);
|
|
39
|
+
function InternalServerException(opts) {
|
|
40
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
41
|
+
_this.name = "InternalServerException";
|
|
42
|
+
_this.$fault = "server";
|
|
43
|
+
_this.$retryable = {};
|
|
44
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
45
|
+
_this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
46
|
+
return _this;
|
|
47
|
+
}
|
|
48
|
+
return InternalServerException;
|
|
49
|
+
}(__BaseException));
|
|
50
|
+
export { InternalServerException };
|
|
51
|
+
var ResourceNotFoundException = (function (_super) {
|
|
52
|
+
__extends(ResourceNotFoundException, _super);
|
|
53
|
+
function ResourceNotFoundException(opts) {
|
|
54
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
55
|
+
_this.name = "ResourceNotFoundException";
|
|
56
|
+
_this.$fault = "client";
|
|
57
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
58
|
+
_this.resourceId = opts.resourceId;
|
|
59
|
+
_this.resourceType = opts.resourceType;
|
|
60
|
+
return _this;
|
|
61
|
+
}
|
|
62
|
+
return ResourceNotFoundException;
|
|
63
|
+
}(__BaseException));
|
|
64
|
+
export { ResourceNotFoundException };
|
|
65
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
66
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
67
|
+
function ServiceQuotaExceededException(opts) {
|
|
68
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
69
|
+
_this.name = "ServiceQuotaExceededException";
|
|
70
|
+
_this.$fault = "client";
|
|
71
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
72
|
+
_this.resourceId = opts.resourceId;
|
|
73
|
+
_this.resourceType = opts.resourceType;
|
|
74
|
+
return _this;
|
|
75
|
+
}
|
|
76
|
+
return ServiceQuotaExceededException;
|
|
77
|
+
}(__BaseException));
|
|
78
|
+
export { ServiceQuotaExceededException };
|
|
79
|
+
var ThrottlingException = (function (_super) {
|
|
80
|
+
__extends(ThrottlingException, _super);
|
|
81
|
+
function ThrottlingException(opts) {
|
|
82
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
83
|
+
_this.name = "ThrottlingException";
|
|
84
|
+
_this.$fault = "client";
|
|
85
|
+
_this.$retryable = {
|
|
86
|
+
throttling: true,
|
|
87
|
+
};
|
|
88
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
89
|
+
_this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
90
|
+
return _this;
|
|
91
|
+
}
|
|
92
|
+
return ThrottlingException;
|
|
93
|
+
}(__BaseException));
|
|
94
|
+
export { ThrottlingException };
|
|
10
95
|
export var ValidationExceptionField;
|
|
11
96
|
(function (ValidationExceptionField) {
|
|
12
97
|
ValidationExceptionField.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -18,6 +103,20 @@ export var ValidationExceptionReason;
|
|
|
18
103
|
ValidationExceptionReason["OTHER"] = "other";
|
|
19
104
|
ValidationExceptionReason["UNKNOWN_OPERATION"] = "unknownOperation";
|
|
20
105
|
})(ValidationExceptionReason || (ValidationExceptionReason = {}));
|
|
106
|
+
var ValidationException = (function (_super) {
|
|
107
|
+
__extends(ValidationException, _super);
|
|
108
|
+
function ValidationException(opts) {
|
|
109
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
110
|
+
_this.name = "ValidationException";
|
|
111
|
+
_this.$fault = "client";
|
|
112
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
113
|
+
_this.reason = opts.reason;
|
|
114
|
+
_this.fieldList = opts.fieldList;
|
|
115
|
+
return _this;
|
|
116
|
+
}
|
|
117
|
+
return ValidationException;
|
|
118
|
+
}(__BaseException));
|
|
119
|
+
export { ValidationException };
|
|
21
120
|
export var DeleteArchiveRuleRequest;
|
|
22
121
|
(function (DeleteArchiveRuleRequest) {
|
|
23
122
|
DeleteArchiveRuleRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|