@aws-sdk/client-detective 3.183.0 → 3.185.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 +11 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/Detective.js +105 -98
- package/dist-es/DetectiveClient.js +28 -22
- package/dist-es/commands/AcceptInvitationCommand.js +29 -22
- package/dist-es/commands/BatchGetGraphMemberDatasourcesCommand.js +28 -21
- package/dist-es/commands/BatchGetMembershipDatasourcesCommand.js +28 -21
- package/dist-es/commands/CreateGraphCommand.js +28 -21
- package/dist-es/commands/CreateMembersCommand.js +28 -21
- package/dist-es/commands/DeleteGraphCommand.js +29 -22
- package/dist-es/commands/DeleteMembersCommand.js +28 -21
- package/dist-es/commands/DescribeOrganizationConfigurationCommand.js +28 -21
- package/dist-es/commands/DisableOrganizationAdminAccountCommand.js +30 -23
- package/dist-es/commands/DisassociateMembershipCommand.js +29 -22
- package/dist-es/commands/EnableOrganizationAdminAccountCommand.js +29 -22
- package/dist-es/commands/GetMembersCommand.js +28 -21
- package/dist-es/commands/ListDatasourcePackagesCommand.js +28 -21
- package/dist-es/commands/ListGraphsCommand.js +28 -21
- package/dist-es/commands/ListInvitationsCommand.js +28 -21
- package/dist-es/commands/ListMembersCommand.js +28 -21
- package/dist-es/commands/ListOrganizationAdminAccountsCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/RejectInvitationCommand.js +29 -22
- package/dist-es/commands/StartMonitoringMemberCommand.js +29 -22
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateDatasourcePackagesCommand.js +29 -22
- package/dist-es/commands/UpdateOrganizationConfigurationCommand.js +29 -22
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/DetectiveServiceException.js +10 -5
- package/dist-es/models/models_0.js +124 -219
- package/dist-es/pagination/ListDatasourcePackagesPaginator.js +68 -25
- package/dist-es/pagination/ListGraphsPaginator.js +68 -25
- package/dist-es/pagination/ListInvitationsPaginator.js +68 -25
- package/dist-es/pagination/ListMembersPaginator.js +68 -25
- package/dist-es/pagination/ListOrganizationAdminAccountsPaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +2284 -1605
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +5 -5
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { UntagResourceRequestFilterSensitiveLog, UntagResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var UntagResourceCommand = (function (_super) {
|
|
7
|
+
__extends(UntagResourceCommand, _super);
|
|
8
|
+
function UntagResourceCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
UntagResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "DetectiveClient";
|
|
18
|
+
var commandName = "UntagResourceCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: UntagResourceRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: UntagResourceResponseFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
UntagResourceCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1UntagResourceCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
UntagResourceCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1UntagResourceCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return UntagResourceCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UntagResourceCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { UpdateDatasourcePackagesRequestFilterSensitiveLog } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1UpdateDatasourcePackagesCommand, serializeAws_restJson1UpdateDatasourcePackagesCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var UpdateDatasourcePackagesCommand = (function (_super) {
|
|
7
|
+
__extends(UpdateDatasourcePackagesCommand, _super);
|
|
8
|
+
function UpdateDatasourcePackagesCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
UpdateDatasourcePackagesCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "DetectiveClient";
|
|
18
|
+
var commandName = "UpdateDatasourcePackagesCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: UpdateDatasourcePackagesRequestFilterSensitiveLog,
|
|
21
|
-
outputFilterSensitiveLog: (output)
|
|
24
|
+
outputFilterSensitiveLog: function (output) { return output; },
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
UpdateDatasourcePackagesCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1UpdateDatasourcePackagesCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
UpdateDatasourcePackagesCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1UpdateDatasourcePackagesCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return UpdateDatasourcePackagesCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UpdateDatasourcePackagesCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { UpdateOrganizationConfigurationRequestFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1UpdateOrganizationConfigurationCommand, serializeAws_restJson1UpdateOrganizationConfigurationCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var UpdateOrganizationConfigurationCommand = (function (_super) {
|
|
7
|
+
__extends(UpdateOrganizationConfigurationCommand, _super);
|
|
8
|
+
function UpdateOrganizationConfigurationCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
UpdateOrganizationConfigurationCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "DetectiveClient";
|
|
18
|
+
var commandName = "UpdateOrganizationConfigurationCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: UpdateOrganizationConfigurationRequestFilterSensitiveLog,
|
|
21
|
-
outputFilterSensitiveLog: (output)
|
|
24
|
+
outputFilterSensitiveLog: function (output) { return output; },
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
UpdateOrganizationConfigurationCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1UpdateOrganizationConfigurationCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
UpdateOrganizationConfigurationCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1UpdateOrganizationConfigurationCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return UpdateOrganizationConfigurationCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UpdateOrganizationConfigurationCommand };
|
package/dist-es/endpoints.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { __assign, __awaiter, __generator } from "tslib";
|
|
1
2
|
import { getRegionInfo } from "@aws-sdk/config-resolver";
|
|
2
|
-
|
|
3
|
+
var regionHash = {
|
|
3
4
|
"us-east-1": {
|
|
4
5
|
variants: [
|
|
5
6
|
{
|
|
@@ -49,7 +50,7 @@ const regionHash = {
|
|
|
49
50
|
],
|
|
50
51
|
},
|
|
51
52
|
};
|
|
52
|
-
|
|
53
|
+
var partitionHash = {
|
|
53
54
|
aws: {
|
|
54
55
|
regions: [
|
|
55
56
|
"af-south-1",
|
|
@@ -173,9 +174,8 @@ const partitionHash = {
|
|
|
173
174
|
],
|
|
174
175
|
},
|
|
175
176
|
};
|
|
176
|
-
export
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
});
|
|
177
|
+
export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
|
|
178
|
+
return __generator(this, function (_a) {
|
|
179
|
+
return [2, getRegionInfo(region, __assign(__assign({}, options), { signingService: "detective", regionHash: regionHash, partitionHash: partitionHash }))];
|
|
180
|
+
});
|
|
181
|
+
}); };
|
|
@@ -1,7 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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;
|
|
6
9
|
}
|
|
7
|
-
|
|
10
|
+
return DetectiveServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { DetectiveServiceException };
|
|
@@ -1,64 +1,65 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { DetectiveServiceException as __BaseException } from "./DetectiveServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
12
|
-
this.Message = opts.Message;
|
|
3
|
+
var ConflictException = (function (_super) {
|
|
4
|
+
__extends(ConflictException, _super);
|
|
5
|
+
function ConflictException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "ConflictException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
10
|
+
_this.Message = opts.Message;
|
|
11
|
+
return _this;
|
|
13
12
|
}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
13
|
+
return ConflictException;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { ConflictException };
|
|
16
|
+
var InternalServerException = (function (_super) {
|
|
17
|
+
__extends(InternalServerException, _super);
|
|
18
|
+
function InternalServerException(opts) {
|
|
19
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
20
|
+
_this.name = "InternalServerException";
|
|
21
|
+
_this.$fault = "server";
|
|
22
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
23
|
+
_this.Message = opts.Message;
|
|
24
|
+
return _this;
|
|
26
25
|
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
26
|
+
return InternalServerException;
|
|
27
|
+
}(__BaseException));
|
|
28
|
+
export { InternalServerException };
|
|
29
|
+
var ResourceNotFoundException = (function (_super) {
|
|
30
|
+
__extends(ResourceNotFoundException, _super);
|
|
31
|
+
function ResourceNotFoundException(opts) {
|
|
32
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
33
|
+
_this.name = "ResourceNotFoundException";
|
|
34
|
+
_this.$fault = "client";
|
|
35
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
36
|
+
_this.Message = opts.Message;
|
|
37
|
+
return _this;
|
|
39
38
|
}
|
|
40
|
-
|
|
39
|
+
return ResourceNotFoundException;
|
|
40
|
+
}(__BaseException));
|
|
41
|
+
export { ResourceNotFoundException };
|
|
41
42
|
export var ErrorCode;
|
|
42
43
|
(function (ErrorCode) {
|
|
43
44
|
ErrorCode["InternalError"] = "INTERNAL_ERROR";
|
|
44
45
|
ErrorCode["InvalidGraphArn"] = "INVALID_GRAPH_ARN";
|
|
45
46
|
ErrorCode["InvalidRequestBody"] = "INVALID_REQUEST_BODY";
|
|
46
47
|
})(ErrorCode || (ErrorCode = {}));
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
this.ErrorCode = opts.ErrorCode;
|
|
59
|
-
this.ErrorCodeReason = opts.ErrorCodeReason;
|
|
48
|
+
var ValidationException = (function (_super) {
|
|
49
|
+
__extends(ValidationException, _super);
|
|
50
|
+
function ValidationException(opts) {
|
|
51
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
52
|
+
_this.name = "ValidationException";
|
|
53
|
+
_this.$fault = "client";
|
|
54
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
55
|
+
_this.Message = opts.Message;
|
|
56
|
+
_this.ErrorCode = opts.ErrorCode;
|
|
57
|
+
_this.ErrorCodeReason = opts.ErrorCodeReason;
|
|
58
|
+
return _this;
|
|
60
59
|
}
|
|
61
|
-
|
|
60
|
+
return ValidationException;
|
|
61
|
+
}(__BaseException));
|
|
62
|
+
export { ValidationException };
|
|
62
63
|
export var DatasourcePackage;
|
|
63
64
|
(function (DatasourcePackage) {
|
|
64
65
|
DatasourcePackage["DETECTIVE_CORE"] = "DETECTIVE_CORE";
|
|
@@ -70,20 +71,20 @@ export var DatasourcePackageIngestState;
|
|
|
70
71
|
DatasourcePackageIngestState["STARTED"] = "STARTED";
|
|
71
72
|
DatasourcePackageIngestState["STOPPED"] = "STOPPED";
|
|
72
73
|
})(DatasourcePackageIngestState || (DatasourcePackageIngestState = {}));
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
this.Message = opts.Message;
|
|
84
|
-
this.Resources = opts.Resources;
|
|
74
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
75
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
76
|
+
function ServiceQuotaExceededException(opts) {
|
|
77
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
78
|
+
_this.name = "ServiceQuotaExceededException";
|
|
79
|
+
_this.$fault = "client";
|
|
80
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
81
|
+
_this.Message = opts.Message;
|
|
82
|
+
_this.Resources = opts.Resources;
|
|
83
|
+
return _this;
|
|
85
84
|
}
|
|
86
|
-
|
|
85
|
+
return ServiceQuotaExceededException;
|
|
86
|
+
}(__BaseException));
|
|
87
|
+
export { ServiceQuotaExceededException };
|
|
87
88
|
export var MemberDisabledReason;
|
|
88
89
|
(function (MemberDisabledReason) {
|
|
89
90
|
MemberDisabledReason["VOLUME_TOO_HIGH"] = "VOLUME_TOO_HIGH";
|
|
@@ -102,160 +103,64 @@ export var MemberStatus;
|
|
|
102
103
|
MemberStatus["VERIFICATION_FAILED"] = "VERIFICATION_FAILED";
|
|
103
104
|
MemberStatus["VERIFICATION_IN_PROGRESS"] = "VERIFICATION_IN_PROGRESS";
|
|
104
105
|
})(MemberStatus || (MemberStatus = {}));
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
115
|
-
this.Message = opts.Message;
|
|
106
|
+
var TooManyRequestsException = (function (_super) {
|
|
107
|
+
__extends(TooManyRequestsException, _super);
|
|
108
|
+
function TooManyRequestsException(opts) {
|
|
109
|
+
var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
|
|
110
|
+
_this.name = "TooManyRequestsException";
|
|
111
|
+
_this.$fault = "client";
|
|
112
|
+
Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
|
|
113
|
+
_this.Message = opts.Message;
|
|
114
|
+
return _this;
|
|
116
115
|
}
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
});
|
|
121
|
-
export
|
|
122
|
-
|
|
123
|
-
});
|
|
124
|
-
export
|
|
125
|
-
|
|
126
|
-
});
|
|
127
|
-
export
|
|
128
|
-
|
|
129
|
-
});
|
|
130
|
-
export
|
|
131
|
-
|
|
132
|
-
});
|
|
133
|
-
export
|
|
134
|
-
|
|
135
|
-
});
|
|
136
|
-
export
|
|
137
|
-
|
|
138
|
-
});
|
|
139
|
-
export
|
|
140
|
-
|
|
141
|
-
});
|
|
142
|
-
export
|
|
143
|
-
|
|
144
|
-
});
|
|
145
|
-
export
|
|
146
|
-
|
|
147
|
-
});
|
|
148
|
-
export
|
|
149
|
-
|
|
150
|
-
});
|
|
151
|
-
export
|
|
152
|
-
|
|
153
|
-
});
|
|
154
|
-
export
|
|
155
|
-
|
|
156
|
-
});
|
|
157
|
-
export
|
|
158
|
-
|
|
159
|
-
});
|
|
160
|
-
export
|
|
161
|
-
|
|
162
|
-
});
|
|
163
|
-
export
|
|
164
|
-
|
|
165
|
-
});
|
|
166
|
-
export
|
|
167
|
-
|
|
168
|
-
});
|
|
169
|
-
export const DeleteGraphRequestFilterSensitiveLog = (obj) => ({
|
|
170
|
-
...obj,
|
|
171
|
-
});
|
|
172
|
-
export const DeleteMembersRequestFilterSensitiveLog = (obj) => ({
|
|
173
|
-
...obj,
|
|
174
|
-
});
|
|
175
|
-
export const DeleteMembersResponseFilterSensitiveLog = (obj) => ({
|
|
176
|
-
...obj,
|
|
177
|
-
});
|
|
178
|
-
export const DescribeOrganizationConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
179
|
-
...obj,
|
|
180
|
-
});
|
|
181
|
-
export const DescribeOrganizationConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
182
|
-
...obj,
|
|
183
|
-
});
|
|
184
|
-
export const DisassociateMembershipRequestFilterSensitiveLog = (obj) => ({
|
|
185
|
-
...obj,
|
|
186
|
-
});
|
|
187
|
-
export const EnableOrganizationAdminAccountRequestFilterSensitiveLog = (obj) => ({
|
|
188
|
-
...obj,
|
|
189
|
-
});
|
|
190
|
-
export const GetMembersRequestFilterSensitiveLog = (obj) => ({
|
|
191
|
-
...obj,
|
|
192
|
-
});
|
|
193
|
-
export const GetMembersResponseFilterSensitiveLog = (obj) => ({
|
|
194
|
-
...obj,
|
|
195
|
-
});
|
|
196
|
-
export const ListDatasourcePackagesRequestFilterSensitiveLog = (obj) => ({
|
|
197
|
-
...obj,
|
|
198
|
-
});
|
|
199
|
-
export const DatasourcePackageIngestDetailFilterSensitiveLog = (obj) => ({
|
|
200
|
-
...obj,
|
|
201
|
-
});
|
|
202
|
-
export const ListDatasourcePackagesResponseFilterSensitiveLog = (obj) => ({
|
|
203
|
-
...obj,
|
|
204
|
-
});
|
|
205
|
-
export const ListGraphsRequestFilterSensitiveLog = (obj) => ({
|
|
206
|
-
...obj,
|
|
207
|
-
});
|
|
208
|
-
export const GraphFilterSensitiveLog = (obj) => ({
|
|
209
|
-
...obj,
|
|
210
|
-
});
|
|
211
|
-
export const ListGraphsResponseFilterSensitiveLog = (obj) => ({
|
|
212
|
-
...obj,
|
|
213
|
-
});
|
|
214
|
-
export const ListInvitationsRequestFilterSensitiveLog = (obj) => ({
|
|
215
|
-
...obj,
|
|
216
|
-
});
|
|
217
|
-
export const ListInvitationsResponseFilterSensitiveLog = (obj) => ({
|
|
218
|
-
...obj,
|
|
219
|
-
});
|
|
220
|
-
export const ListMembersRequestFilterSensitiveLog = (obj) => ({
|
|
221
|
-
...obj,
|
|
222
|
-
});
|
|
223
|
-
export const ListMembersResponseFilterSensitiveLog = (obj) => ({
|
|
224
|
-
...obj,
|
|
225
|
-
});
|
|
226
|
-
export const ListOrganizationAdminAccountsRequestFilterSensitiveLog = (obj) => ({
|
|
227
|
-
...obj,
|
|
228
|
-
});
|
|
229
|
-
export const ListOrganizationAdminAccountsResponseFilterSensitiveLog = (obj) => ({
|
|
230
|
-
...obj,
|
|
231
|
-
});
|
|
232
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
233
|
-
...obj,
|
|
234
|
-
});
|
|
235
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
236
|
-
...obj,
|
|
237
|
-
});
|
|
238
|
-
export const RejectInvitationRequestFilterSensitiveLog = (obj) => ({
|
|
239
|
-
...obj,
|
|
240
|
-
});
|
|
241
|
-
export const StartMonitoringMemberRequestFilterSensitiveLog = (obj) => ({
|
|
242
|
-
...obj,
|
|
243
|
-
});
|
|
244
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
245
|
-
...obj,
|
|
246
|
-
});
|
|
247
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
248
|
-
...obj,
|
|
249
|
-
});
|
|
250
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
251
|
-
...obj,
|
|
252
|
-
});
|
|
253
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
254
|
-
...obj,
|
|
255
|
-
});
|
|
256
|
-
export const UpdateDatasourcePackagesRequestFilterSensitiveLog = (obj) => ({
|
|
257
|
-
...obj,
|
|
258
|
-
});
|
|
259
|
-
export const UpdateOrganizationConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
260
|
-
...obj,
|
|
261
|
-
});
|
|
116
|
+
return TooManyRequestsException;
|
|
117
|
+
}(__BaseException));
|
|
118
|
+
export { TooManyRequestsException };
|
|
119
|
+
export var AcceptInvitationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
120
|
+
export var AccountFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
121
|
+
export var AdministratorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
122
|
+
export var BatchGetGraphMemberDatasourcesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
123
|
+
export var TimestampForCollectionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
124
|
+
export var MembershipDatasourcesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
125
|
+
export var UnprocessedAccountFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
126
|
+
export var BatchGetGraphMemberDatasourcesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
127
|
+
export var BatchGetMembershipDatasourcesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
128
|
+
export var UnprocessedGraphFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
129
|
+
export var BatchGetMembershipDatasourcesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
130
|
+
export var CreateGraphRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
131
|
+
export var CreateGraphResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
132
|
+
export var CreateMembersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
133
|
+
export var DatasourcePackageUsageInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
134
|
+
export var MemberDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
135
|
+
export var CreateMembersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
136
|
+
export var DeleteGraphRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
137
|
+
export var DeleteMembersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
138
|
+
export var DeleteMembersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
139
|
+
export var DescribeOrganizationConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
140
|
+
export var DescribeOrganizationConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
141
|
+
export var DisassociateMembershipRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
142
|
+
export var EnableOrganizationAdminAccountRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
143
|
+
export var GetMembersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
144
|
+
export var GetMembersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
145
|
+
export var ListDatasourcePackagesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
146
|
+
export var DatasourcePackageIngestDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
147
|
+
export var ListDatasourcePackagesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
148
|
+
export var ListGraphsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
149
|
+
export var GraphFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
150
|
+
export var ListGraphsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
151
|
+
export var ListInvitationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
152
|
+
export var ListInvitationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
153
|
+
export var ListMembersRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
154
|
+
export var ListMembersResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
155
|
+
export var ListOrganizationAdminAccountsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
156
|
+
export var ListOrganizationAdminAccountsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
157
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
158
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
159
|
+
export var RejectInvitationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
160
|
+
export var StartMonitoringMemberRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
161
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
162
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
163
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
164
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
165
|
+
export var UpdateDatasourcePackagesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
166
|
+
export var UpdateOrganizationConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|