@aws-sdk/client-rolesanywhere 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/RolesAnywhere.js +113 -106
- package/dist-es/RolesAnywhereClient.js +28 -22
- package/dist-es/commands/CreateProfileCommand.js +28 -21
- package/dist-es/commands/CreateTrustAnchorCommand.js +28 -21
- package/dist-es/commands/DeleteCrlCommand.js +28 -21
- package/dist-es/commands/DeleteProfileCommand.js +28 -21
- package/dist-es/commands/DeleteTrustAnchorCommand.js +28 -21
- package/dist-es/commands/DisableCrlCommand.js +28 -21
- package/dist-es/commands/DisableProfileCommand.js +28 -21
- package/dist-es/commands/DisableTrustAnchorCommand.js +28 -21
- package/dist-es/commands/EnableCrlCommand.js +28 -21
- package/dist-es/commands/EnableProfileCommand.js +28 -21
- package/dist-es/commands/EnableTrustAnchorCommand.js +28 -21
- package/dist-es/commands/GetCrlCommand.js +28 -21
- package/dist-es/commands/GetProfileCommand.js +28 -21
- package/dist-es/commands/GetSubjectCommand.js +28 -21
- package/dist-es/commands/GetTrustAnchorCommand.js +28 -21
- package/dist-es/commands/ImportCrlCommand.js +28 -21
- package/dist-es/commands/ListCrlsCommand.js +28 -21
- package/dist-es/commands/ListProfilesCommand.js +28 -21
- package/dist-es/commands/ListSubjectsCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/ListTrustAnchorsCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateCrlCommand.js +28 -21
- package/dist-es/commands/UpdateProfileCommand.js +28 -21
- package/dist-es/commands/UpdateTrustAnchorCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/RolesAnywhereServiceException.js +10 -5
- package/dist-es/models/models_0.js +83 -163
- package/dist-es/pagination/ListCrlsPaginator.js +67 -24
- package/dist-es/pagination/ListProfilesPaginator.js +67 -24
- package/dist-es/pagination/ListSubjectsPaginator.js +67 -24
- package/dist-es/pagination/ListTrustAnchorsPaginator.js +67 -24
- package/dist-es/protocols/Aws_restJson1.js +2315 -1558
- 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 { TagResourceRequestFilterSensitiveLog, TagResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var TagResourceCommand = (function (_super) {
|
|
7
|
+
__extends(TagResourceCommand, _super);
|
|
8
|
+
function TagResourceCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
TagResourceCommand.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 = "RolesAnywhereClient";
|
|
18
|
+
var commandName = "TagResourceCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: TagResourceRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: TagResourceResponseFilterSensitiveLog,
|
|
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
|
+
TagResourceCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1TagResourceCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
TagResourceCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1TagResourceCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return TagResourceCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { TagResourceCommand };
|
|
@@ -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 = "RolesAnywhereClient";
|
|
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 { CrlDetailResponseFilterSensitiveLog, UpdateCrlRequestFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1UpdateCrlCommand, serializeAws_restJson1UpdateCrlCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var UpdateCrlCommand = (function (_super) {
|
|
7
|
+
__extends(UpdateCrlCommand, _super);
|
|
8
|
+
function UpdateCrlCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
UpdateCrlCommand.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 = "RolesAnywhereClient";
|
|
18
|
+
var commandName = "UpdateCrlCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: UpdateCrlRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: CrlDetailResponseFilterSensitiveLog,
|
|
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
|
+
UpdateCrlCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1UpdateCrlCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
UpdateCrlCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1UpdateCrlCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return UpdateCrlCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UpdateCrlCommand };
|
|
@@ -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 { ProfileDetailResponseFilterSensitiveLog, UpdateProfileRequestFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1UpdateProfileCommand, serializeAws_restJson1UpdateProfileCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var UpdateProfileCommand = (function (_super) {
|
|
7
|
+
__extends(UpdateProfileCommand, _super);
|
|
8
|
+
function UpdateProfileCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
UpdateProfileCommand.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 = "RolesAnywhereClient";
|
|
18
|
+
var commandName = "UpdateProfileCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: UpdateProfileRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: ProfileDetailResponseFilterSensitiveLog,
|
|
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
|
+
UpdateProfileCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1UpdateProfileCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
UpdateProfileCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1UpdateProfileCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return UpdateProfileCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UpdateProfileCommand };
|
|
@@ -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 { TrustAnchorDetailResponseFilterSensitiveLog, UpdateTrustAnchorRequestFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1UpdateTrustAnchorCommand, serializeAws_restJson1UpdateTrustAnchorCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var UpdateTrustAnchorCommand = (function (_super) {
|
|
7
|
+
__extends(UpdateTrustAnchorCommand, _super);
|
|
8
|
+
function UpdateTrustAnchorCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
UpdateTrustAnchorCommand.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 = "RolesAnywhereClient";
|
|
18
|
+
var commandName = "UpdateTrustAnchorCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: UpdateTrustAnchorRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: TrustAnchorDetailResponseFilterSensitiveLog,
|
|
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
|
+
UpdateTrustAnchorCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1UpdateTrustAnchorCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
UpdateTrustAnchorCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1UpdateTrustAnchorCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return UpdateTrustAnchorCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UpdateTrustAnchorCommand };
|
package/dist-es/endpoints.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { __assign, __awaiter, __generator } from "tslib";
|
|
1
2
|
import { getRegionInfo } from "@aws-sdk/config-resolver";
|
|
2
|
-
|
|
3
|
-
|
|
3
|
+
var regionHash = {};
|
|
4
|
+
var partitionHash = {
|
|
4
5
|
aws: {
|
|
5
6
|
regions: [
|
|
6
7
|
"af-south-1",
|
|
@@ -120,9 +121,8 @@ const partitionHash = {
|
|
|
120
121
|
],
|
|
121
122
|
},
|
|
122
123
|
};
|
|
123
|
-
export
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
});
|
|
124
|
+
export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
|
|
125
|
+
return __generator(this, function (_a) {
|
|
126
|
+
return [2, getRegionInfo(region, __assign(__assign({}, options), { signingService: "rolesanywhere", regionHash: regionHash, partitionHash: partitionHash }))];
|
|
127
|
+
});
|
|
128
|
+
}); };
|
|
@@ -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 RolesAnywhereServiceException = (function (_super) {
|
|
4
|
+
__extends(RolesAnywhereServiceException, _super);
|
|
5
|
+
function RolesAnywhereServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, RolesAnywhereServiceException.prototype);
|
|
8
|
+
return _this;
|
|
6
9
|
}
|
|
7
|
-
|
|
10
|
+
return RolesAnywhereServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { RolesAnywhereServiceException };
|
|
@@ -1,32 +1,33 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { RolesAnywhereServiceException as __BaseException } from "./RolesAnywhereServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
this.$fault = "client";
|
|
12
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
4
|
+
var AccessDeniedException = (function (_super) {
|
|
5
|
+
__extends(AccessDeniedException, _super);
|
|
6
|
+
function AccessDeniedException(opts) {
|
|
7
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
8
|
+
_this.name = "AccessDeniedException";
|
|
9
|
+
_this.$fault = "client";
|
|
10
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
11
|
+
return _this;
|
|
13
12
|
}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
13
|
+
return AccessDeniedException;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { AccessDeniedException };
|
|
16
|
+
var ValidationException = (function (_super) {
|
|
17
|
+
__extends(ValidationException, _super);
|
|
18
|
+
function ValidationException(opts) {
|
|
19
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
20
|
+
_this.name = "ValidationException";
|
|
21
|
+
_this.$fault = "client";
|
|
22
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
23
|
+
return _this;
|
|
25
24
|
}
|
|
26
|
-
|
|
25
|
+
return ValidationException;
|
|
26
|
+
}(__BaseException));
|
|
27
|
+
export { ValidationException };
|
|
27
28
|
export var SourceData;
|
|
28
29
|
(function (SourceData) {
|
|
29
|
-
SourceData.visit = (value, visitor)
|
|
30
|
+
SourceData.visit = function (value, visitor) {
|
|
30
31
|
if (value.x509CertificateData !== undefined)
|
|
31
32
|
return visitor.x509CertificateData(value.x509CertificateData);
|
|
32
33
|
if (value.acmPcaArn !== undefined)
|
|
@@ -40,151 +41,70 @@ export var TrustAnchorType;
|
|
|
40
41
|
TrustAnchorType["CERTIFICATE_BUNDLE"] = "CERTIFICATE_BUNDLE";
|
|
41
42
|
TrustAnchorType["SELF_SIGNED_REPOSITORY"] = "SELF_SIGNED_REPOSITORY";
|
|
42
43
|
})(TrustAnchorType || (TrustAnchorType = {}));
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
this.$fault = "client";
|
|
52
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
44
|
+
var ResourceNotFoundException = (function (_super) {
|
|
45
|
+
__extends(ResourceNotFoundException, _super);
|
|
46
|
+
function ResourceNotFoundException(opts) {
|
|
47
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
48
|
+
_this.name = "ResourceNotFoundException";
|
|
49
|
+
_this.$fault = "client";
|
|
50
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
51
|
+
return _this;
|
|
53
52
|
}
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
53
|
+
return ResourceNotFoundException;
|
|
54
|
+
}(__BaseException));
|
|
55
|
+
export { ResourceNotFoundException };
|
|
56
|
+
var TooManyTagsException = (function (_super) {
|
|
57
|
+
__extends(TooManyTagsException, _super);
|
|
58
|
+
function TooManyTagsException(opts) {
|
|
59
|
+
var _this = _super.call(this, __assign({ name: "TooManyTagsException", $fault: "client" }, opts)) || this;
|
|
60
|
+
_this.name = "TooManyTagsException";
|
|
61
|
+
_this.$fault = "client";
|
|
62
|
+
Object.setPrototypeOf(_this, TooManyTagsException.prototype);
|
|
63
|
+
return _this;
|
|
65
64
|
}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
});
|
|
72
|
-
export
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
});
|
|
76
|
-
export const ProfileDetailFilterSensitiveLog = (obj) => ({
|
|
77
|
-
...obj,
|
|
78
|
-
});
|
|
79
|
-
export const ProfileDetailResponseFilterSensitiveLog = (obj) => ({
|
|
80
|
-
...obj,
|
|
81
|
-
});
|
|
82
|
-
export const SourceDataFilterSensitiveLog = (obj) => {
|
|
65
|
+
return TooManyTagsException;
|
|
66
|
+
}(__BaseException));
|
|
67
|
+
export { TooManyTagsException };
|
|
68
|
+
export var TagFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.key && { key: SENSITIVE_STRING })), (obj.value && { value: SENSITIVE_STRING }))); };
|
|
69
|
+
export var CreateProfileRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.tags && { tags: obj.tags.map(function (item) { return TagFilterSensitiveLog(item); }) }))); };
|
|
70
|
+
export var ProfileDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
71
|
+
export var ProfileDetailResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
72
|
+
export var SourceDataFilterSensitiveLog = function (obj) {
|
|
73
|
+
var _a;
|
|
83
74
|
if (obj.x509CertificateData !== undefined)
|
|
84
75
|
return { x509CertificateData: obj.x509CertificateData };
|
|
85
76
|
if (obj.acmPcaArn !== undefined)
|
|
86
77
|
return { acmPcaArn: obj.acmPcaArn };
|
|
87
78
|
if (obj.$unknown !== undefined)
|
|
88
|
-
return { [obj.$unknown[0]]
|
|
79
|
+
return _a = {}, _a[obj.$unknown[0]] = "UNKNOWN", _a;
|
|
89
80
|
};
|
|
90
|
-
export
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
});
|
|
94
|
-
export
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
});
|
|
99
|
-
export
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
});
|
|
103
|
-
export
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
});
|
|
107
|
-
export
|
|
108
|
-
|
|
109
|
-
});
|
|
110
|
-
export
|
|
111
|
-
|
|
112
|
-
});
|
|
113
|
-
export
|
|
114
|
-
|
|
115
|
-
});
|
|
116
|
-
export
|
|
117
|
-
|
|
118
|
-
});
|
|
119
|
-
export
|
|
120
|
-
...obj,
|
|
121
|
-
...(obj.tags && { tags: obj.tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
122
|
-
});
|
|
123
|
-
export const ListCrlsResponseFilterSensitiveLog = (obj) => ({
|
|
124
|
-
...obj,
|
|
125
|
-
});
|
|
126
|
-
export const ListRequestFilterSensitiveLog = (obj) => ({
|
|
127
|
-
...obj,
|
|
128
|
-
});
|
|
129
|
-
export const UpdateCrlRequestFilterSensitiveLog = (obj) => ({
|
|
130
|
-
...obj,
|
|
131
|
-
});
|
|
132
|
-
export const ScalarProfileRequestFilterSensitiveLog = (obj) => ({
|
|
133
|
-
...obj,
|
|
134
|
-
});
|
|
135
|
-
export const ScalarTrustAnchorRequestFilterSensitiveLog = (obj) => ({
|
|
136
|
-
...obj,
|
|
137
|
-
});
|
|
138
|
-
export const ScalarSubjectRequestFilterSensitiveLog = (obj) => ({
|
|
139
|
-
...obj,
|
|
140
|
-
});
|
|
141
|
-
export const InstancePropertyFilterSensitiveLog = (obj) => ({
|
|
142
|
-
...obj,
|
|
143
|
-
});
|
|
144
|
-
export const SubjectDetailFilterSensitiveLog = (obj) => ({
|
|
145
|
-
...obj,
|
|
146
|
-
});
|
|
147
|
-
export const SubjectDetailResponseFilterSensitiveLog = (obj) => ({
|
|
148
|
-
...obj,
|
|
149
|
-
});
|
|
150
|
-
export const ListProfilesResponseFilterSensitiveLog = (obj) => ({
|
|
151
|
-
...obj,
|
|
152
|
-
});
|
|
153
|
-
export const SubjectSummaryFilterSensitiveLog = (obj) => ({
|
|
154
|
-
...obj,
|
|
155
|
-
});
|
|
156
|
-
export const ListSubjectsResponseFilterSensitiveLog = (obj) => ({
|
|
157
|
-
...obj,
|
|
158
|
-
});
|
|
159
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
160
|
-
...obj,
|
|
161
|
-
});
|
|
162
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
163
|
-
...obj,
|
|
164
|
-
...(obj.tags && { tags: obj.tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
165
|
-
});
|
|
166
|
-
export const ListTrustAnchorsResponseFilterSensitiveLog = (obj) => ({
|
|
167
|
-
...obj,
|
|
168
|
-
...(obj.trustAnchors && { trustAnchors: obj.trustAnchors.map((item) => TrustAnchorDetailFilterSensitiveLog(item)) }),
|
|
169
|
-
});
|
|
170
|
-
export const UpdateProfileRequestFilterSensitiveLog = (obj) => ({
|
|
171
|
-
...obj,
|
|
172
|
-
});
|
|
173
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
174
|
-
...obj,
|
|
175
|
-
...(obj.tags && { tags: obj.tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
176
|
-
});
|
|
177
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
178
|
-
...obj,
|
|
179
|
-
});
|
|
180
|
-
export const UpdateTrustAnchorRequestFilterSensitiveLog = (obj) => ({
|
|
181
|
-
...obj,
|
|
182
|
-
...(obj.source && { source: SourceFilterSensitiveLog(obj.source) }),
|
|
183
|
-
});
|
|
184
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
185
|
-
...obj,
|
|
186
|
-
...(obj.tagKeys && { tagKeys: SENSITIVE_STRING }),
|
|
187
|
-
});
|
|
188
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
189
|
-
...obj,
|
|
190
|
-
});
|
|
81
|
+
export var SourceFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.sourceData && { sourceData: SourceDataFilterSensitiveLog(obj.sourceData) }))); };
|
|
82
|
+
export var CreateTrustAnchorRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.source && { source: SourceFilterSensitiveLog(obj.source) })), (obj.tags && { tags: obj.tags.map(function (item) { return TagFilterSensitiveLog(item); }) }))); };
|
|
83
|
+
export var TrustAnchorDetailFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.source && { source: SourceFilterSensitiveLog(obj.source) }))); };
|
|
84
|
+
export var TrustAnchorDetailResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.trustAnchor && { trustAnchor: TrustAnchorDetailFilterSensitiveLog(obj.trustAnchor) }))); };
|
|
85
|
+
export var CredentialSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
86
|
+
export var CrlDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
87
|
+
export var CrlDetailResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
88
|
+
export var ScalarCrlRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
89
|
+
export var ImportCrlRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.tags && { tags: obj.tags.map(function (item) { return TagFilterSensitiveLog(item); }) }))); };
|
|
90
|
+
export var ListCrlsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
91
|
+
export var ListRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
92
|
+
export var UpdateCrlRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
93
|
+
export var ScalarProfileRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
94
|
+
export var ScalarTrustAnchorRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
95
|
+
export var ScalarSubjectRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
96
|
+
export var InstancePropertyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
97
|
+
export var SubjectDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
98
|
+
export var SubjectDetailResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
99
|
+
export var ListProfilesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
100
|
+
export var SubjectSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
101
|
+
export var ListSubjectsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
102
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
103
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.tags && { tags: obj.tags.map(function (item) { return TagFilterSensitiveLog(item); }) }))); };
|
|
104
|
+
export var ListTrustAnchorsResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.trustAnchors && { trustAnchors: obj.trustAnchors.map(function (item) { return TrustAnchorDetailFilterSensitiveLog(item); }) }))); };
|
|
105
|
+
export var UpdateProfileRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
106
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.tags && { tags: obj.tags.map(function (item) { return TagFilterSensitiveLog(item); }) }))); };
|
|
107
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
108
|
+
export var UpdateTrustAnchorRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.source && { source: SourceFilterSensitiveLog(obj.source) }))); };
|
|
109
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.tagKeys && { tagKeys: SENSITIVE_STRING }))); };
|
|
110
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|