@aws-sdk/client-detective 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/DetectiveServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +86 -1
- package/dist-cjs/protocols/Aws_restJson1.js +193 -637
- package/dist-es/index.js +1 -0
- package/dist-es/models/DetectiveServiceException.js +12 -0
- package/dist-es/models/models_0.js +80 -1
- package/dist-es/protocols/Aws_restJson1.js +407 -724
- package/dist-types/DetectiveClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/DetectiveServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +44 -19
- 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/DetectiveClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/DetectiveServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +32 -19
- 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 DetectiveServiceException = (function (_super) {
|
|
4
|
+
__extends(DetectiveServiceException, _super);
|
|
5
|
+
function DetectiveServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, DetectiveServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return DetectiveServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { DetectiveServiceException };
|
|
@@ -1,8 +1,61 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { DetectiveServiceException as __BaseException } from "./DetectiveServiceException";
|
|
2
3
|
export var AcceptInvitationRequest;
|
|
3
4
|
(function (AcceptInvitationRequest) {
|
|
4
5
|
AcceptInvitationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
5
6
|
})(AcceptInvitationRequest || (AcceptInvitationRequest = {}));
|
|
7
|
+
var ConflictException = (function (_super) {
|
|
8
|
+
__extends(ConflictException, _super);
|
|
9
|
+
function ConflictException(opts) {
|
|
10
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
11
|
+
_this.name = "ConflictException";
|
|
12
|
+
_this.$fault = "client";
|
|
13
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
14
|
+
_this.Message = opts.Message;
|
|
15
|
+
return _this;
|
|
16
|
+
}
|
|
17
|
+
return ConflictException;
|
|
18
|
+
}(__BaseException));
|
|
19
|
+
export { ConflictException };
|
|
20
|
+
var InternalServerException = (function (_super) {
|
|
21
|
+
__extends(InternalServerException, _super);
|
|
22
|
+
function InternalServerException(opts) {
|
|
23
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
24
|
+
_this.name = "InternalServerException";
|
|
25
|
+
_this.$fault = "server";
|
|
26
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
27
|
+
_this.Message = opts.Message;
|
|
28
|
+
return _this;
|
|
29
|
+
}
|
|
30
|
+
return InternalServerException;
|
|
31
|
+
}(__BaseException));
|
|
32
|
+
export { InternalServerException };
|
|
33
|
+
var ResourceNotFoundException = (function (_super) {
|
|
34
|
+
__extends(ResourceNotFoundException, _super);
|
|
35
|
+
function ResourceNotFoundException(opts) {
|
|
36
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
37
|
+
_this.name = "ResourceNotFoundException";
|
|
38
|
+
_this.$fault = "client";
|
|
39
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
40
|
+
_this.Message = opts.Message;
|
|
41
|
+
return _this;
|
|
42
|
+
}
|
|
43
|
+
return ResourceNotFoundException;
|
|
44
|
+
}(__BaseException));
|
|
45
|
+
export { ResourceNotFoundException };
|
|
46
|
+
var ValidationException = (function (_super) {
|
|
47
|
+
__extends(ValidationException, _super);
|
|
48
|
+
function ValidationException(opts) {
|
|
49
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
50
|
+
_this.name = "ValidationException";
|
|
51
|
+
_this.$fault = "client";
|
|
52
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
53
|
+
_this.Message = opts.Message;
|
|
54
|
+
return _this;
|
|
55
|
+
}
|
|
56
|
+
return ValidationException;
|
|
57
|
+
}(__BaseException));
|
|
58
|
+
export { ValidationException };
|
|
6
59
|
export var Account;
|
|
7
60
|
(function (Account) {
|
|
8
61
|
Account.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -19,6 +72,19 @@ export var CreateGraphResponse;
|
|
|
19
72
|
(function (CreateGraphResponse) {
|
|
20
73
|
CreateGraphResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
21
74
|
})(CreateGraphResponse || (CreateGraphResponse = {}));
|
|
75
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
76
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
77
|
+
function ServiceQuotaExceededException(opts) {
|
|
78
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
79
|
+
_this.name = "ServiceQuotaExceededException";
|
|
80
|
+
_this.$fault = "client";
|
|
81
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
82
|
+
_this.Message = opts.Message;
|
|
83
|
+
return _this;
|
|
84
|
+
}
|
|
85
|
+
return ServiceQuotaExceededException;
|
|
86
|
+
}(__BaseException));
|
|
87
|
+
export { ServiceQuotaExceededException };
|
|
22
88
|
export var CreateMembersRequest;
|
|
23
89
|
(function (CreateMembersRequest) {
|
|
24
90
|
CreateMembersRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -73,6 +139,19 @@ export var DescribeOrganizationConfigurationResponse;
|
|
|
73
139
|
(function (DescribeOrganizationConfigurationResponse) {
|
|
74
140
|
DescribeOrganizationConfigurationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
75
141
|
})(DescribeOrganizationConfigurationResponse || (DescribeOrganizationConfigurationResponse = {}));
|
|
142
|
+
var TooManyRequestsException = (function (_super) {
|
|
143
|
+
__extends(TooManyRequestsException, _super);
|
|
144
|
+
function TooManyRequestsException(opts) {
|
|
145
|
+
var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
|
|
146
|
+
_this.name = "TooManyRequestsException";
|
|
147
|
+
_this.$fault = "client";
|
|
148
|
+
Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
|
|
149
|
+
_this.Message = opts.Message;
|
|
150
|
+
return _this;
|
|
151
|
+
}
|
|
152
|
+
return TooManyRequestsException;
|
|
153
|
+
}(__BaseException));
|
|
154
|
+
export { TooManyRequestsException };
|
|
76
155
|
export var DisassociateMembershipRequest;
|
|
77
156
|
(function (DisassociateMembershipRequest) {
|
|
78
157
|
DisassociateMembershipRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|