@aws-sdk/client-directory-service 3.799.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-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/package.json +1 -1
|
@@ -78,6 +78,31 @@ declare const UpdateRadiusCommand_base: {
|
|
|
78
78
|
* <p>Base exception class for all service exceptions from DirectoryService service.</p>
|
|
79
79
|
*
|
|
80
80
|
*
|
|
81
|
+
* @example To update Radius
|
|
82
|
+
* ```javascript
|
|
83
|
+
* // The following example updates the Remote Authentication Dial In User Service (RADIUS) server settings for an AD Connector directory.
|
|
84
|
+
* const input = {
|
|
85
|
+
* DirectoryId: "d-92654abfed",
|
|
86
|
+
* RadiusSettings: {
|
|
87
|
+
* AuthenticationProtocol: "PAP",
|
|
88
|
+
* DisplayLabel: "MyRadius",
|
|
89
|
+
* RadiusPort: 1027,
|
|
90
|
+
* RadiusRetries: 1,
|
|
91
|
+
* RadiusServers: [
|
|
92
|
+
* "172.168.101.113"
|
|
93
|
+
* ],
|
|
94
|
+
* RadiusTimeout: 1,
|
|
95
|
+
* SharedSecret: "12345678",
|
|
96
|
+
* UseSameUsername: true
|
|
97
|
+
* }
|
|
98
|
+
* };
|
|
99
|
+
* const command = new UpdateRadiusCommand(input);
|
|
100
|
+
* const response = await client.send(command);
|
|
101
|
+
* /* response is
|
|
102
|
+
* { /* empty *\/ }
|
|
103
|
+
* *\/
|
|
104
|
+
* ```
|
|
105
|
+
*
|
|
81
106
|
* @public
|
|
82
107
|
*/
|
|
83
108
|
export declare class UpdateRadiusCommand extends UpdateRadiusCommand_base {
|
|
@@ -73,6 +73,21 @@ declare const VerifyTrustCommand_base: {
|
|
|
73
73
|
* <p>Base exception class for all service exceptions from DirectoryService service.</p>
|
|
74
74
|
*
|
|
75
75
|
*
|
|
76
|
+
* @example To verify a trust
|
|
77
|
+
* ```javascript
|
|
78
|
+
* // The following example verifies a trust relationship between your Microsoft AD in the AWS cloud and an external domain.
|
|
79
|
+
* const input = {
|
|
80
|
+
* TrustId: "t-9267353df0"
|
|
81
|
+
* };
|
|
82
|
+
* const command = new VerifyTrustCommand(input);
|
|
83
|
+
* const response = await client.send(command);
|
|
84
|
+
* /* response is
|
|
85
|
+
* {
|
|
86
|
+
* TrustId: "t-9267353df0"
|
|
87
|
+
* }
|
|
88
|
+
* *\/
|
|
89
|
+
* ```
|
|
90
|
+
*
|
|
76
91
|
* @public
|
|
77
92
|
*/
|
|
78
93
|
export declare class VerifyTrustCommand extends VerifyTrustCommand_base {
|