@aws-sdk/client-rolesanywhere 3.489.0 → 3.495.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/dist-cjs/RolesAnywhere.js +1 -67
- package/dist-cjs/RolesAnywhereClient.js +1 -43
- package/dist-cjs/commands/CreateProfileCommand.js +1 -29
- package/dist-cjs/commands/CreateTrustAnchorCommand.js +1 -29
- package/dist-cjs/commands/DeleteCrlCommand.js +1 -28
- package/dist-cjs/commands/DeleteProfileCommand.js +1 -28
- package/dist-cjs/commands/DeleteTrustAnchorCommand.js +1 -28
- package/dist-cjs/commands/DisableCrlCommand.js +1 -28
- package/dist-cjs/commands/DisableProfileCommand.js +1 -28
- package/dist-cjs/commands/DisableTrustAnchorCommand.js +1 -28
- package/dist-cjs/commands/EnableCrlCommand.js +1 -28
- package/dist-cjs/commands/EnableProfileCommand.js +1 -28
- package/dist-cjs/commands/EnableTrustAnchorCommand.js +1 -28
- package/dist-cjs/commands/GetCrlCommand.js +1 -28
- package/dist-cjs/commands/GetProfileCommand.js +1 -28
- package/dist-cjs/commands/GetSubjectCommand.js +1 -28
- package/dist-cjs/commands/GetTrustAnchorCommand.js +1 -28
- package/dist-cjs/commands/ImportCrlCommand.js +1 -29
- package/dist-cjs/commands/ListCrlsCommand.js +1 -28
- package/dist-cjs/commands/ListProfilesCommand.js +1 -28
- package/dist-cjs/commands/ListSubjectsCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -29
- package/dist-cjs/commands/ListTrustAnchorsCommand.js +1 -28
- package/dist-cjs/commands/PutNotificationSettingsCommand.js +1 -28
- package/dist-cjs/commands/ResetNotificationSettingsCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -29
- package/dist-cjs/commands/UntagResourceCommand.js +1 -29
- package/dist-cjs/commands/UpdateCrlCommand.js +1 -28
- package/dist-cjs/commands/UpdateProfileCommand.js +1 -28
- package/dist-cjs/commands/UpdateTrustAnchorCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -31
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +2499 -11
- package/dist-cjs/models/RolesAnywhereServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -116
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListCrlsPaginator.js +1 -7
- package/dist-cjs/pagination/ListProfilesPaginator.js +1 -7
- package/dist-cjs/pagination/ListSubjectsPaginator.js +1 -7
- package/dist-cjs/pagination/ListTrustAnchorsPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -8
- package/dist-cjs/protocols/Aws_restJson1.js +1 -1666
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.RolesAnywhereServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
-
class RolesAnywhereServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, RolesAnywhereServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.RolesAnywhereServiceException = RolesAnywhereServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED
|
@@ -1,116 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UntagResourceRequestFilterSensitiveLog = exports.TagResourceRequestFilterSensitiveLog = exports.ListTagsForResourceResponseFilterSensitiveLog = exports.ImportCrlRequestFilterSensitiveLog = exports.CreateTrustAnchorRequestFilterSensitiveLog = exports.CreateProfileRequestFilterSensitiveLog = exports.TagFilterSensitiveLog = exports.TooManyTagsException = exports.ResourceNotFoundException = exports.TrustAnchorType = exports.SourceData = exports.NotificationEvent = exports.NotificationChannel = exports.ValidationException = exports.AccessDeniedException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
const RolesAnywhereServiceException_1 = require("./RolesAnywhereServiceException");
|
|
6
|
-
class AccessDeniedException extends RolesAnywhereServiceException_1.RolesAnywhereServiceException {
|
|
7
|
-
constructor(opts) {
|
|
8
|
-
super({
|
|
9
|
-
name: "AccessDeniedException",
|
|
10
|
-
$fault: "client",
|
|
11
|
-
...opts,
|
|
12
|
-
});
|
|
13
|
-
this.name = "AccessDeniedException";
|
|
14
|
-
this.$fault = "client";
|
|
15
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
19
|
-
class ValidationException extends RolesAnywhereServiceException_1.RolesAnywhereServiceException {
|
|
20
|
-
constructor(opts) {
|
|
21
|
-
super({
|
|
22
|
-
name: "ValidationException",
|
|
23
|
-
$fault: "client",
|
|
24
|
-
...opts,
|
|
25
|
-
});
|
|
26
|
-
this.name = "ValidationException";
|
|
27
|
-
this.$fault = "client";
|
|
28
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
exports.ValidationException = ValidationException;
|
|
32
|
-
exports.NotificationChannel = {
|
|
33
|
-
ALL: "ALL",
|
|
34
|
-
};
|
|
35
|
-
exports.NotificationEvent = {
|
|
36
|
-
CA_CERTIFICATE_EXPIRY: "CA_CERTIFICATE_EXPIRY",
|
|
37
|
-
END_ENTITY_CERTIFICATE_EXPIRY: "END_ENTITY_CERTIFICATE_EXPIRY",
|
|
38
|
-
};
|
|
39
|
-
var SourceData;
|
|
40
|
-
(function (SourceData) {
|
|
41
|
-
SourceData.visit = (value, visitor) => {
|
|
42
|
-
if (value.x509CertificateData !== undefined)
|
|
43
|
-
return visitor.x509CertificateData(value.x509CertificateData);
|
|
44
|
-
if (value.acmPcaArn !== undefined)
|
|
45
|
-
return visitor.acmPcaArn(value.acmPcaArn);
|
|
46
|
-
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
47
|
-
};
|
|
48
|
-
})(SourceData = exports.SourceData || (exports.SourceData = {}));
|
|
49
|
-
exports.TrustAnchorType = {
|
|
50
|
-
AWS_ACM_PCA: "AWS_ACM_PCA",
|
|
51
|
-
CERTIFICATE_BUNDLE: "CERTIFICATE_BUNDLE",
|
|
52
|
-
SELF_SIGNED_REPOSITORY: "SELF_SIGNED_REPOSITORY",
|
|
53
|
-
};
|
|
54
|
-
class ResourceNotFoundException extends RolesAnywhereServiceException_1.RolesAnywhereServiceException {
|
|
55
|
-
constructor(opts) {
|
|
56
|
-
super({
|
|
57
|
-
name: "ResourceNotFoundException",
|
|
58
|
-
$fault: "client",
|
|
59
|
-
...opts,
|
|
60
|
-
});
|
|
61
|
-
this.name = "ResourceNotFoundException";
|
|
62
|
-
this.$fault = "client";
|
|
63
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
67
|
-
class TooManyTagsException extends RolesAnywhereServiceException_1.RolesAnywhereServiceException {
|
|
68
|
-
constructor(opts) {
|
|
69
|
-
super({
|
|
70
|
-
name: "TooManyTagsException",
|
|
71
|
-
$fault: "client",
|
|
72
|
-
...opts,
|
|
73
|
-
});
|
|
74
|
-
this.name = "TooManyTagsException";
|
|
75
|
-
this.$fault = "client";
|
|
76
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
80
|
-
const TagFilterSensitiveLog = (obj) => ({
|
|
81
|
-
...obj,
|
|
82
|
-
...(obj.key && { key: smithy_client_1.SENSITIVE_STRING }),
|
|
83
|
-
...(obj.value && { value: smithy_client_1.SENSITIVE_STRING }),
|
|
84
|
-
});
|
|
85
|
-
exports.TagFilterSensitiveLog = TagFilterSensitiveLog;
|
|
86
|
-
const CreateProfileRequestFilterSensitiveLog = (obj) => ({
|
|
87
|
-
...obj,
|
|
88
|
-
...(obj.tags && { tags: obj.tags.map((item) => (0, exports.TagFilterSensitiveLog)(item)) }),
|
|
89
|
-
});
|
|
90
|
-
exports.CreateProfileRequestFilterSensitiveLog = CreateProfileRequestFilterSensitiveLog;
|
|
91
|
-
const CreateTrustAnchorRequestFilterSensitiveLog = (obj) => ({
|
|
92
|
-
...obj,
|
|
93
|
-
...(obj.source && { source: obj.source }),
|
|
94
|
-
...(obj.tags && { tags: obj.tags.map((item) => (0, exports.TagFilterSensitiveLog)(item)) }),
|
|
95
|
-
});
|
|
96
|
-
exports.CreateTrustAnchorRequestFilterSensitiveLog = CreateTrustAnchorRequestFilterSensitiveLog;
|
|
97
|
-
const ImportCrlRequestFilterSensitiveLog = (obj) => ({
|
|
98
|
-
...obj,
|
|
99
|
-
...(obj.tags && { tags: obj.tags.map((item) => (0, exports.TagFilterSensitiveLog)(item)) }),
|
|
100
|
-
});
|
|
101
|
-
exports.ImportCrlRequestFilterSensitiveLog = ImportCrlRequestFilterSensitiveLog;
|
|
102
|
-
const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
103
|
-
...obj,
|
|
104
|
-
...(obj.tags && { tags: obj.tags.map((item) => (0, exports.TagFilterSensitiveLog)(item)) }),
|
|
105
|
-
});
|
|
106
|
-
exports.ListTagsForResourceResponseFilterSensitiveLog = ListTagsForResourceResponseFilterSensitiveLog;
|
|
107
|
-
const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
108
|
-
...obj,
|
|
109
|
-
...(obj.tags && { tags: obj.tags.map((item) => (0, exports.TagFilterSensitiveLog)(item)) }),
|
|
110
|
-
});
|
|
111
|
-
exports.TagResourceRequestFilterSensitiveLog = TagResourceRequestFilterSensitiveLog;
|
|
112
|
-
const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
113
|
-
...obj,
|
|
114
|
-
...(obj.tagKeys && { tagKeys: smithy_client_1.SENSITIVE_STRING }),
|
|
115
|
-
});
|
|
116
|
-
exports.UntagResourceRequestFilterSensitiveLog = UntagResourceRequestFilterSensitiveLog;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListCrls = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListCrlsCommand_1 = require("../commands/ListCrlsCommand");
|
|
6
|
-
const RolesAnywhereClient_1 = require("../RolesAnywhereClient");
|
|
7
|
-
exports.paginateListCrls = (0, core_1.createPaginator)(RolesAnywhereClient_1.RolesAnywhereClient, ListCrlsCommand_1.ListCrlsCommand, "nextToken", "nextToken", "");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListProfiles = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListProfilesCommand_1 = require("../commands/ListProfilesCommand");
|
|
6
|
-
const RolesAnywhereClient_1 = require("../RolesAnywhereClient");
|
|
7
|
-
exports.paginateListProfiles = (0, core_1.createPaginator)(RolesAnywhereClient_1.RolesAnywhereClient, ListProfilesCommand_1.ListProfilesCommand, "nextToken", "nextToken", "");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListSubjects = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListSubjectsCommand_1 = require("../commands/ListSubjectsCommand");
|
|
6
|
-
const RolesAnywhereClient_1 = require("../RolesAnywhereClient");
|
|
7
|
-
exports.paginateListSubjects = (0, core_1.createPaginator)(RolesAnywhereClient_1.RolesAnywhereClient, ListSubjectsCommand_1.ListSubjectsCommand, "nextToken", "nextToken", "");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListTrustAnchors = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListTrustAnchorsCommand_1 = require("../commands/ListTrustAnchorsCommand");
|
|
6
|
-
const RolesAnywhereClient_1 = require("../RolesAnywhereClient");
|
|
7
|
-
exports.paginateListTrustAnchors = (0, core_1.createPaginator)(RolesAnywhereClient_1.RolesAnywhereClient, ListTrustAnchorsCommand_1.ListTrustAnchorsCommand, "nextToken", "nextToken", "");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,8 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./ListCrlsPaginator"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./ListProfilesPaginator"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./ListSubjectsPaginator"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./ListTrustAnchorsPaginator"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|