@aws-sdk/client-directory-service 3.798.0 → 3.802.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/runtimeConfig.js +1 -0
- package/dist-es/runtimeConfig.js +2 -1
- package/dist-types/commands/AddIpRoutesCommand.d.ts +19 -0
- package/dist-types/commands/AddRegionCommand.d.ts +2 -2
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +19 -0
- package/dist-types/commands/CancelSchemaExtensionCommand.d.ts +14 -0
- package/dist-types/commands/ConnectDirectoryCommand.d.ts +31 -2
- package/dist-types/commands/CreateAliasCommand.d.ts +17 -0
- package/dist-types/commands/CreateComputerCommand.d.ts +37 -0
- package/dist-types/commands/CreateConditionalForwarderCommand.d.ts +17 -0
- package/dist-types/commands/CreateDirectoryCommand.d.ts +28 -4
- package/dist-types/commands/CreateMicrosoftADCommand.d.ts +25 -0
- package/dist-types/commands/CreateSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/CreateTrustCommand.d.ts +22 -0
- package/dist-types/commands/DeleteConditionalForwarderCommand.d.ts +14 -0
- package/dist-types/commands/DeleteDirectoryCommand.d.ts +16 -2
- package/dist-types/commands/DeleteSnapshotCommand.d.ts +15 -0
- package/dist-types/commands/DeleteTrustCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterCertificateCommand.d.ts +2 -2
- package/dist-types/commands/DeregisterEventTopicCommand.d.ts +14 -0
- package/dist-types/commands/DescribeCertificateCommand.d.ts +2 -1
- package/dist-types/commands/DescribeClientAuthenticationSettingsCommand.d.ts +4 -2
- package/dist-types/commands/DescribeConditionalForwardersCommand.d.ts +18 -0
- package/dist-types/commands/DescribeDirectoriesCommand.d.ts +46 -0
- package/dist-types/commands/DescribeDirectoryDataAccessCommand.d.ts +2 -1
- package/dist-types/commands/DescribeEventTopicsCommand.d.ts +25 -0
- package/dist-types/commands/DescribeSnapshotsCommand.d.ts +27 -0
- package/dist-types/commands/DescribeTrustsCommand.d.ts +32 -0
- package/dist-types/commands/DescribeUpdateDirectoryCommand.d.ts +1 -3
- package/dist-types/commands/DisableDirectoryDataAccessCommand.d.ts +4 -4
- package/dist-types/commands/DisableRadiusCommand.d.ts +13 -0
- package/dist-types/commands/DisableSsoCommand.d.ts +15 -0
- package/dist-types/commands/EnableClientAuthenticationCommand.d.ts +2 -2
- package/dist-types/commands/EnableDirectoryDataAccessCommand.d.ts +3 -4
- package/dist-types/commands/EnableLDAPSCommand.d.ts +2 -2
- package/dist-types/commands/EnableRadiusCommand.d.ts +25 -0
- package/dist-types/commands/EnableSsoCommand.d.ts +15 -0
- package/dist-types/commands/GetDirectoryLimitsCommand.d.ts +23 -0
- package/dist-types/commands/GetSnapshotLimitsCommand.d.ts +19 -0
- package/dist-types/commands/ListCertificatesCommand.d.ts +2 -1
- package/dist-types/commands/ListIpRoutesCommand.d.ts +24 -0
- package/dist-types/commands/ListSchemaExtensionsCommand.d.ts +26 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +21 -0
- package/dist-types/commands/RegisterEventTopicCommand.d.ts +14 -0
- package/dist-types/commands/RemoveIpRoutesCommand.d.ts +16 -0
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +16 -0
- package/dist-types/commands/ResetUserPasswordCommand.d.ts +8 -7
- package/dist-types/commands/RestoreFromSnapshotCommand.d.ts +13 -0
- package/dist-types/commands/ShareDirectoryCommand.d.ts +7 -7
- package/dist-types/commands/StartSchemaExtensionCommand.d.ts +28 -0
- package/dist-types/commands/UpdateConditionalForwarderCommand.d.ts +17 -0
- package/dist-types/commands/UpdateDirectorySetupCommand.d.ts +2 -6
- package/dist-types/commands/UpdateRadiusCommand.d.ts +25 -0
- package/dist-types/commands/VerifyTrustCommand.d.ts +15 -0
- package/dist-types/models/models_0.d.ts +123 -135
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -4
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-directory-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Directory Service Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.802.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-directory-service",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.799.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.799.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.775.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.775.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.775.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.799.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.775.0",
|
|
30
30
|
"@aws-sdk/types": "3.775.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.787.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.775.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.799.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.0",
|
|
35
35
|
"@smithy/core": "^3.3.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.2",
|