@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.
Files changed (54) hide show
  1. package/dist-types/commands/AddIpRoutesCommand.d.ts +19 -0
  2. package/dist-types/commands/AddRegionCommand.d.ts +2 -2
  3. package/dist-types/commands/AddTagsToResourceCommand.d.ts +19 -0
  4. package/dist-types/commands/CancelSchemaExtensionCommand.d.ts +14 -0
  5. package/dist-types/commands/ConnectDirectoryCommand.d.ts +31 -2
  6. package/dist-types/commands/CreateAliasCommand.d.ts +17 -0
  7. package/dist-types/commands/CreateComputerCommand.d.ts +37 -0
  8. package/dist-types/commands/CreateConditionalForwarderCommand.d.ts +17 -0
  9. package/dist-types/commands/CreateDirectoryCommand.d.ts +28 -4
  10. package/dist-types/commands/CreateMicrosoftADCommand.d.ts +25 -0
  11. package/dist-types/commands/CreateSnapshotCommand.d.ts +16 -0
  12. package/dist-types/commands/CreateTrustCommand.d.ts +22 -0
  13. package/dist-types/commands/DeleteConditionalForwarderCommand.d.ts +14 -0
  14. package/dist-types/commands/DeleteDirectoryCommand.d.ts +16 -2
  15. package/dist-types/commands/DeleteSnapshotCommand.d.ts +15 -0
  16. package/dist-types/commands/DeleteTrustCommand.d.ts +16 -0
  17. package/dist-types/commands/DeregisterCertificateCommand.d.ts +2 -2
  18. package/dist-types/commands/DeregisterEventTopicCommand.d.ts +14 -0
  19. package/dist-types/commands/DescribeCertificateCommand.d.ts +2 -1
  20. package/dist-types/commands/DescribeClientAuthenticationSettingsCommand.d.ts +4 -2
  21. package/dist-types/commands/DescribeConditionalForwardersCommand.d.ts +18 -0
  22. package/dist-types/commands/DescribeDirectoriesCommand.d.ts +46 -0
  23. package/dist-types/commands/DescribeDirectoryDataAccessCommand.d.ts +2 -1
  24. package/dist-types/commands/DescribeEventTopicsCommand.d.ts +25 -0
  25. package/dist-types/commands/DescribeSnapshotsCommand.d.ts +27 -0
  26. package/dist-types/commands/DescribeTrustsCommand.d.ts +32 -0
  27. package/dist-types/commands/DescribeUpdateDirectoryCommand.d.ts +1 -3
  28. package/dist-types/commands/DisableDirectoryDataAccessCommand.d.ts +4 -4
  29. package/dist-types/commands/DisableRadiusCommand.d.ts +13 -0
  30. package/dist-types/commands/DisableSsoCommand.d.ts +15 -0
  31. package/dist-types/commands/EnableClientAuthenticationCommand.d.ts +2 -2
  32. package/dist-types/commands/EnableDirectoryDataAccessCommand.d.ts +3 -4
  33. package/dist-types/commands/EnableLDAPSCommand.d.ts +2 -2
  34. package/dist-types/commands/EnableRadiusCommand.d.ts +25 -0
  35. package/dist-types/commands/EnableSsoCommand.d.ts +15 -0
  36. package/dist-types/commands/GetDirectoryLimitsCommand.d.ts +23 -0
  37. package/dist-types/commands/GetSnapshotLimitsCommand.d.ts +19 -0
  38. package/dist-types/commands/ListCertificatesCommand.d.ts +2 -1
  39. package/dist-types/commands/ListIpRoutesCommand.d.ts +24 -0
  40. package/dist-types/commands/ListSchemaExtensionsCommand.d.ts +26 -0
  41. package/dist-types/commands/ListTagsForResourceCommand.d.ts +21 -0
  42. package/dist-types/commands/RegisterEventTopicCommand.d.ts +14 -0
  43. package/dist-types/commands/RemoveIpRoutesCommand.d.ts +16 -0
  44. package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +16 -0
  45. package/dist-types/commands/ResetUserPasswordCommand.d.ts +8 -7
  46. package/dist-types/commands/RestoreFromSnapshotCommand.d.ts +13 -0
  47. package/dist-types/commands/ShareDirectoryCommand.d.ts +7 -7
  48. package/dist-types/commands/StartSchemaExtensionCommand.d.ts +28 -0
  49. package/dist-types/commands/UpdateConditionalForwarderCommand.d.ts +17 -0
  50. package/dist-types/commands/UpdateDirectorySetupCommand.d.ts +2 -6
  51. package/dist-types/commands/UpdateRadiusCommand.d.ts +25 -0
  52. package/dist-types/commands/VerifyTrustCommand.d.ts +15 -0
  53. package/dist-types/models/models_0.d.ts +123 -135
  54. 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 {