@aws-sdk/client-rolesanywhere 3.952.0 → 3.954.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/index.js +293 -210
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateProfileCommand.js +2 -2
- package/dist-es/commands/CreateTrustAnchorCommand.js +2 -2
- package/dist-es/commands/DeleteAttributeMappingCommand.js +2 -2
- package/dist-es/commands/DeleteCrlCommand.js +2 -2
- package/dist-es/commands/DeleteProfileCommand.js +2 -2
- package/dist-es/commands/DeleteTrustAnchorCommand.js +2 -2
- package/dist-es/commands/DisableCrlCommand.js +2 -2
- package/dist-es/commands/DisableProfileCommand.js +2 -2
- package/dist-es/commands/DisableTrustAnchorCommand.js +2 -2
- package/dist-es/commands/EnableCrlCommand.js +2 -2
- package/dist-es/commands/EnableProfileCommand.js +2 -2
- package/dist-es/commands/EnableTrustAnchorCommand.js +2 -2
- package/dist-es/commands/GetCrlCommand.js +2 -2
- package/dist-es/commands/GetProfileCommand.js +2 -2
- package/dist-es/commands/GetSubjectCommand.js +2 -2
- package/dist-es/commands/GetTrustAnchorCommand.js +2 -2
- package/dist-es/commands/ImportCrlCommand.js +2 -2
- package/dist-es/commands/ListCrlsCommand.js +2 -2
- package/dist-es/commands/ListProfilesCommand.js +2 -2
- package/dist-es/commands/ListSubjectsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListTrustAnchorsCommand.js +2 -2
- package/dist-es/commands/PutAttributeMappingCommand.js +2 -2
- package/dist-es/commands/PutNotificationSettingsCommand.js +2 -2
- package/dist-es/commands/ResetNotificationSettingsCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateCrlCommand.js +2 -2
- package/dist-es/commands/UpdateProfileCommand.js +2 -2
- package/dist-es/commands/UpdateTrustAnchorCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +176 -176
- package/dist-types/RolesAnywhereClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +84 -103
- package/dist-types/ts3.4/RolesAnywhereClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +83 -104
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.rolesanywhere",
|
|
32
|
+
version: "2018-05-10",
|
|
33
|
+
serviceTarget: "RolesAnywhere",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "RolesAnywhere",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateProfile } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateProfile$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateProfileCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateProfileCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "CreateProfile", {})
|
|
13
13
|
.n("RolesAnywhereClient", "CreateProfileCommand")
|
|
14
|
-
.sc(CreateProfile)
|
|
14
|
+
.sc(CreateProfile$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateTrustAnchor } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateTrustAnchor$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateTrustAnchorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateTrustAnchorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "CreateTrustAnchor", {})
|
|
13
13
|
.n("RolesAnywhereClient", "CreateTrustAnchorCommand")
|
|
14
|
-
.sc(CreateTrustAnchor)
|
|
14
|
+
.sc(CreateTrustAnchor$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteAttributeMapping } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteAttributeMapping$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteAttributeMappingCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteAttributeMappingCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "DeleteAttributeMapping", {})
|
|
13
13
|
.n("RolesAnywhereClient", "DeleteAttributeMappingCommand")
|
|
14
|
-
.sc(DeleteAttributeMapping)
|
|
14
|
+
.sc(DeleteAttributeMapping$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteCrl } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteCrl$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteCrlCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteCrlCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "DeleteCrl", {})
|
|
13
13
|
.n("RolesAnywhereClient", "DeleteCrlCommand")
|
|
14
|
-
.sc(DeleteCrl)
|
|
14
|
+
.sc(DeleteCrl$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteProfile } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteProfile$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteProfileCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteProfileCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "DeleteProfile", {})
|
|
13
13
|
.n("RolesAnywhereClient", "DeleteProfileCommand")
|
|
14
|
-
.sc(DeleteProfile)
|
|
14
|
+
.sc(DeleteProfile$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteTrustAnchor } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteTrustAnchor$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteTrustAnchorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteTrustAnchorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "DeleteTrustAnchor", {})
|
|
13
13
|
.n("RolesAnywhereClient", "DeleteTrustAnchorCommand")
|
|
14
|
-
.sc(DeleteTrustAnchor)
|
|
14
|
+
.sc(DeleteTrustAnchor$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisableCrl } from "../schemas/schemas_0";
|
|
4
|
+
import { DisableCrl$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisableCrlCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisableCrlCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "DisableCrl", {})
|
|
13
13
|
.n("RolesAnywhereClient", "DisableCrlCommand")
|
|
14
|
-
.sc(DisableCrl)
|
|
14
|
+
.sc(DisableCrl$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisableProfile } from "../schemas/schemas_0";
|
|
4
|
+
import { DisableProfile$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisableProfileCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisableProfileCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "DisableProfile", {})
|
|
13
13
|
.n("RolesAnywhereClient", "DisableProfileCommand")
|
|
14
|
-
.sc(DisableProfile)
|
|
14
|
+
.sc(DisableProfile$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DisableTrustAnchor } from "../schemas/schemas_0";
|
|
4
|
+
import { DisableTrustAnchor$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DisableTrustAnchorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DisableTrustAnchorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "DisableTrustAnchor", {})
|
|
13
13
|
.n("RolesAnywhereClient", "DisableTrustAnchorCommand")
|
|
14
|
-
.sc(DisableTrustAnchor)
|
|
14
|
+
.sc(DisableTrustAnchor$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { EnableCrl } from "../schemas/schemas_0";
|
|
4
|
+
import { EnableCrl$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class EnableCrlCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class EnableCrlCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "EnableCrl", {})
|
|
13
13
|
.n("RolesAnywhereClient", "EnableCrlCommand")
|
|
14
|
-
.sc(EnableCrl)
|
|
14
|
+
.sc(EnableCrl$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { EnableProfile } from "../schemas/schemas_0";
|
|
4
|
+
import { EnableProfile$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class EnableProfileCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class EnableProfileCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "EnableProfile", {})
|
|
13
13
|
.n("RolesAnywhereClient", "EnableProfileCommand")
|
|
14
|
-
.sc(EnableProfile)
|
|
14
|
+
.sc(EnableProfile$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { EnableTrustAnchor } from "../schemas/schemas_0";
|
|
4
|
+
import { EnableTrustAnchor$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class EnableTrustAnchorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class EnableTrustAnchorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "EnableTrustAnchor", {})
|
|
13
13
|
.n("RolesAnywhereClient", "EnableTrustAnchorCommand")
|
|
14
|
-
.sc(EnableTrustAnchor)
|
|
14
|
+
.sc(EnableTrustAnchor$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetCrl } from "../schemas/schemas_0";
|
|
4
|
+
import { GetCrl$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetCrlCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetCrlCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "GetCrl", {})
|
|
13
13
|
.n("RolesAnywhereClient", "GetCrlCommand")
|
|
14
|
-
.sc(GetCrl)
|
|
14
|
+
.sc(GetCrl$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetProfile } from "../schemas/schemas_0";
|
|
4
|
+
import { GetProfile$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetProfileCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetProfileCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "GetProfile", {})
|
|
13
13
|
.n("RolesAnywhereClient", "GetProfileCommand")
|
|
14
|
-
.sc(GetProfile)
|
|
14
|
+
.sc(GetProfile$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetSubject } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSubject$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSubjectCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSubjectCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "GetSubject", {})
|
|
13
13
|
.n("RolesAnywhereClient", "GetSubjectCommand")
|
|
14
|
-
.sc(GetSubject)
|
|
14
|
+
.sc(GetSubject$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTrustAnchor } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTrustAnchor$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTrustAnchorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTrustAnchorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "GetTrustAnchor", {})
|
|
13
13
|
.n("RolesAnywhereClient", "GetTrustAnchorCommand")
|
|
14
|
-
.sc(GetTrustAnchor)
|
|
14
|
+
.sc(GetTrustAnchor$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ImportCrl } from "../schemas/schemas_0";
|
|
4
|
+
import { ImportCrl$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ImportCrlCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ImportCrlCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "ImportCrl", {})
|
|
13
13
|
.n("RolesAnywhereClient", "ImportCrlCommand")
|
|
14
|
-
.sc(ImportCrl)
|
|
14
|
+
.sc(ImportCrl$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListCrls } from "../schemas/schemas_0";
|
|
4
|
+
import { ListCrls$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListCrlsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListCrlsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "ListCrls", {})
|
|
13
13
|
.n("RolesAnywhereClient", "ListCrlsCommand")
|
|
14
|
-
.sc(ListCrls)
|
|
14
|
+
.sc(ListCrls$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListProfiles } from "../schemas/schemas_0";
|
|
4
|
+
import { ListProfiles$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListProfilesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListProfilesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "ListProfiles", {})
|
|
13
13
|
.n("RolesAnywhereClient", "ListProfilesCommand")
|
|
14
|
-
.sc(ListProfiles)
|
|
14
|
+
.sc(ListProfiles$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListSubjects } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSubjects$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSubjectsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSubjectsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "ListSubjects", {})
|
|
13
13
|
.n("RolesAnywhereClient", "ListSubjectsCommand")
|
|
14
|
-
.sc(ListSubjects)
|
|
14
|
+
.sc(ListSubjects$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "ListTagsForResource", {})
|
|
13
13
|
.n("RolesAnywhereClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTrustAnchors } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTrustAnchors$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTrustAnchorsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTrustAnchorsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "ListTrustAnchors", {})
|
|
13
13
|
.n("RolesAnywhereClient", "ListTrustAnchorsCommand")
|
|
14
|
-
.sc(ListTrustAnchors)
|
|
14
|
+
.sc(ListTrustAnchors$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutAttributeMapping } from "../schemas/schemas_0";
|
|
4
|
+
import { PutAttributeMapping$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutAttributeMappingCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutAttributeMappingCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "PutAttributeMapping", {})
|
|
13
13
|
.n("RolesAnywhereClient", "PutAttributeMappingCommand")
|
|
14
|
-
.sc(PutAttributeMapping)
|
|
14
|
+
.sc(PutAttributeMapping$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutNotificationSettings } from "../schemas/schemas_0";
|
|
4
|
+
import { PutNotificationSettings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutNotificationSettingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutNotificationSettingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "PutNotificationSettings", {})
|
|
13
13
|
.n("RolesAnywhereClient", "PutNotificationSettingsCommand")
|
|
14
|
-
.sc(PutNotificationSettings)
|
|
14
|
+
.sc(PutNotificationSettings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ResetNotificationSettings } from "../schemas/schemas_0";
|
|
4
|
+
import { ResetNotificationSettings$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ResetNotificationSettingsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ResetNotificationSettingsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "ResetNotificationSettings", {})
|
|
13
13
|
.n("RolesAnywhereClient", "ResetNotificationSettingsCommand")
|
|
14
|
-
.sc(ResetNotificationSettings)
|
|
14
|
+
.sc(ResetNotificationSettings$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "TagResource", {})
|
|
13
13
|
.n("RolesAnywhereClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "UntagResource", {})
|
|
13
13
|
.n("RolesAnywhereClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateCrl } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateCrl$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateCrlCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateCrlCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "UpdateCrl", {})
|
|
13
13
|
.n("RolesAnywhereClient", "UpdateCrlCommand")
|
|
14
|
-
.sc(UpdateCrl)
|
|
14
|
+
.sc(UpdateCrl$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateProfile } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateProfile$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateProfileCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateProfileCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "UpdateProfile", {})
|
|
13
13
|
.n("RolesAnywhereClient", "UpdateProfileCommand")
|
|
14
|
-
.sc(UpdateProfile)
|
|
14
|
+
.sc(UpdateProfile$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateTrustAnchor } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateTrustAnchor$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateTrustAnchorCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateTrustAnchorCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("RolesAnywhere", "UpdateTrustAnchor", {})
|
|
13
13
|
.n("RolesAnywhereClient", "UpdateTrustAnchorCommand")
|
|
14
|
-
.sc(UpdateTrustAnchor)
|
|
14
|
+
.sc(UpdateTrustAnchor$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.rolesanywhere",
|
|
29
|
+
version: "2018-05-10",
|
|
30
|
+
serviceTarget: "RolesAnywhere",
|
|
31
|
+
},
|
|
27
32
|
serviceId: config?.serviceId ?? "RolesAnywhere",
|
|
28
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|