@aws-sdk/client-directory-service 3.299.0 → 3.301.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/AcceptSharedDirectoryCommand.d.ts +3 -0
- package/dist-types/commands/AddIpRoutesCommand.d.ts +10 -0
- package/dist-types/commands/AddRegionCommand.d.ts +10 -0
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +9 -0
- package/dist-types/commands/CancelSchemaExtensionCommand.d.ts +4 -0
- package/dist-types/commands/ConnectDirectoryCommand.d.ts +23 -0
- package/dist-types/commands/CreateAliasCommand.d.ts +4 -0
- package/dist-types/commands/CreateComputerCommand.d.ts +12 -0
- package/dist-types/commands/CreateConditionalForwarderCommand.d.ts +7 -0
- package/dist-types/commands/CreateDirectoryCommand.d.ts +19 -0
- package/dist-types/commands/CreateLogSubscriptionCommand.d.ts +4 -0
- package/dist-types/commands/CreateMicrosoftADCommand.d.ts +19 -0
- package/dist-types/commands/CreateSnapshotCommand.d.ts +4 -0
- package/dist-types/commands/CreateTrustCommand.d.ts +11 -0
- package/dist-types/commands/DeleteConditionalForwarderCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDirectoryCommand.d.ts +3 -0
- package/dist-types/commands/DeleteLogSubscriptionCommand.d.ts +3 -0
- package/dist-types/commands/DeleteSnapshotCommand.d.ts +3 -0
- package/dist-types/commands/DeleteTrustCommand.d.ts +4 -0
- package/dist-types/commands/DeregisterCertificateCommand.d.ts +4 -0
- package/dist-types/commands/DeregisterEventTopicCommand.d.ts +4 -0
- package/dist-types/commands/DescribeCertificateCommand.d.ts +4 -0
- package/dist-types/commands/DescribeClientAuthenticationSettingsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeConditionalForwardersCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDirectoriesCommand.d.ts +7 -0
- package/dist-types/commands/DescribeDomainControllersCommand.d.ts +8 -0
- package/dist-types/commands/DescribeEventTopicsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeLDAPSSettingsCommand.d.ts +6 -0
- package/dist-types/commands/DescribeRegionsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeSettingsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeSharedDirectoriesCommand.d.ts +8 -0
- package/dist-types/commands/DescribeSnapshotsCommand.d.ts +8 -0
- package/dist-types/commands/DescribeTrustsCommand.d.ts +8 -0
- package/dist-types/commands/DescribeUpdateDirectoryCommand.d.ts +6 -0
- package/dist-types/commands/DisableClientAuthenticationCommand.d.ts +4 -0
- package/dist-types/commands/DisableLDAPSCommand.d.ts +4 -0
- package/dist-types/commands/DisableRadiusCommand.d.ts +3 -0
- package/dist-types/commands/DisableSsoCommand.d.ts +5 -0
- package/dist-types/commands/EnableClientAuthenticationCommand.d.ts +4 -0
- package/dist-types/commands/EnableLDAPSCommand.d.ts +4 -0
- package/dist-types/commands/EnableRadiusCommand.d.ts +15 -0
- package/dist-types/commands/EnableSsoCommand.d.ts +5 -0
- package/dist-types/commands/GetDirectoryLimitsCommand.d.ts +1 -0
- package/dist-types/commands/GetSnapshotLimitsCommand.d.ts +3 -0
- package/dist-types/commands/ListCertificatesCommand.d.ts +5 -0
- package/dist-types/commands/ListIpRoutesCommand.d.ts +5 -0
- package/dist-types/commands/ListLogSubscriptionsCommand.d.ts +5 -0
- package/dist-types/commands/ListSchemaExtensionsCommand.d.ts +5 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +5 -0
- package/dist-types/commands/RegisterCertificateCommand.d.ts +8 -0
- package/dist-types/commands/RegisterEventTopicCommand.d.ts +4 -0
- package/dist-types/commands/RejectSharedDirectoryCommand.d.ts +3 -0
- package/dist-types/commands/RemoveIpRoutesCommand.d.ts +6 -0
- package/dist-types/commands/RemoveRegionCommand.d.ts +3 -0
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +6 -0
- package/dist-types/commands/ResetUserPasswordCommand.d.ts +5 -0
- package/dist-types/commands/RestoreFromSnapshotCommand.d.ts +3 -0
- package/dist-types/commands/ShareDirectoryCommand.d.ts +9 -0
- package/dist-types/commands/StartSchemaExtensionCommand.d.ts +6 -0
- package/dist-types/commands/UnshareDirectoryCommand.d.ts +7 -0
- package/dist-types/commands/UpdateConditionalForwarderCommand.d.ts +7 -0
- package/dist-types/commands/UpdateDirectorySetupCommand.d.ts +8 -0
- package/dist-types/commands/UpdateNumberOfDomainControllersCommand.d.ts +4 -0
- package/dist-types/commands/UpdateRadiusCommand.d.ts +15 -0
- package/dist-types/commands/UpdateSettingsCommand.d.ts +9 -0
- package/dist-types/commands/UpdateTrustCommand.d.ts +4 -0
- package/dist-types/commands/VerifyTrustCommand.d.ts +3 -0
- package/package.json +8 -8
|
@@ -26,6 +26,9 @@ export interface AcceptSharedDirectoryCommandOutput extends AcceptSharedDirector
|
|
|
26
26
|
* import { DirectoryServiceClient, AcceptSharedDirectoryCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, AcceptSharedDirectoryCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // AcceptSharedDirectoryRequest
|
|
30
|
+
* SharedDirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new AcceptSharedDirectoryCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -33,6 +33,16 @@ export interface AddIpRoutesCommandOutput extends AddIpRoutesResult, __MetadataB
|
|
|
33
33
|
* import { DirectoryServiceClient, AddIpRoutesCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
34
34
|
* // const { DirectoryServiceClient, AddIpRoutesCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
35
35
|
* const client = new DirectoryServiceClient(config);
|
|
36
|
+
* const input = { // AddIpRoutesRequest
|
|
37
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
38
|
+
* IpRoutes: [ // IpRoutes // required
|
|
39
|
+
* { // IpRoute
|
|
40
|
+
* CidrIp: "STRING_VALUE",
|
|
41
|
+
* Description: "STRING_VALUE",
|
|
42
|
+
* },
|
|
43
|
+
* ],
|
|
44
|
+
* UpdateSecurityGroupForDirectoryControllers: true || false,
|
|
45
|
+
* };
|
|
36
46
|
* const command = new AddIpRoutesCommand(input);
|
|
37
47
|
* const response = await client.send(command);
|
|
38
48
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface AddRegionCommandOutput extends AddRegionResult, __MetadataBeare
|
|
|
26
26
|
* import { DirectoryServiceClient, AddRegionCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, AddRegionCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // AddRegionRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* RegionName: "STRING_VALUE", // required
|
|
32
|
+
* VPCSettings: { // DirectoryVpcSettings
|
|
33
|
+
* VpcId: "STRING_VALUE", // required
|
|
34
|
+
* SubnetIds: [ // SubnetIds // required
|
|
35
|
+
* "STRING_VALUE",
|
|
36
|
+
* ],
|
|
37
|
+
* },
|
|
38
|
+
* };
|
|
29
39
|
* const command = new AddRegionCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -28,6 +28,15 @@ export interface AddTagsToResourceCommandOutput extends AddTagsToResourceResult,
|
|
|
28
28
|
* import { DirectoryServiceClient, AddTagsToResourceCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
29
29
|
* // const { DirectoryServiceClient, AddTagsToResourceCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
30
30
|
* const client = new DirectoryServiceClient(config);
|
|
31
|
+
* const input = { // AddTagsToResourceRequest
|
|
32
|
+
* ResourceId: "STRING_VALUE", // required
|
|
33
|
+
* Tags: [ // Tags // required
|
|
34
|
+
* { // Tag
|
|
35
|
+
* Key: "STRING_VALUE", // required
|
|
36
|
+
* Value: "STRING_VALUE", // required
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* };
|
|
31
40
|
* const command = new AddTagsToResourceCommand(input);
|
|
32
41
|
* const response = await client.send(command);
|
|
33
42
|
* ```
|
|
@@ -30,6 +30,10 @@ export interface CancelSchemaExtensionCommandOutput extends CancelSchemaExtensio
|
|
|
30
30
|
* import { DirectoryServiceClient, CancelSchemaExtensionCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
31
31
|
* // const { DirectoryServiceClient, CancelSchemaExtensionCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
32
32
|
* const client = new DirectoryServiceClient(config);
|
|
33
|
+
* const input = { // CancelSchemaExtensionRequest
|
|
34
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
35
|
+
* SchemaExtensionId: "STRING_VALUE", // required
|
|
36
|
+
* };
|
|
33
37
|
* const command = new CancelSchemaExtensionCommand(input);
|
|
34
38
|
* const response = await client.send(command);
|
|
35
39
|
* ```
|
|
@@ -30,6 +30,29 @@ export interface ConnectDirectoryCommandOutput extends ConnectDirectoryResult, _
|
|
|
30
30
|
* import { DirectoryServiceClient, ConnectDirectoryCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
31
31
|
* // const { DirectoryServiceClient, ConnectDirectoryCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
32
32
|
* const client = new DirectoryServiceClient(config);
|
|
33
|
+
* const input = { // ConnectDirectoryRequest
|
|
34
|
+
* Name: "STRING_VALUE", // required
|
|
35
|
+
* ShortName: "STRING_VALUE",
|
|
36
|
+
* Password: "STRING_VALUE", // required
|
|
37
|
+
* Description: "STRING_VALUE",
|
|
38
|
+
* Size: "Small" || "Large", // required
|
|
39
|
+
* ConnectSettings: { // DirectoryConnectSettings
|
|
40
|
+
* VpcId: "STRING_VALUE", // required
|
|
41
|
+
* SubnetIds: [ // SubnetIds // required
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* CustomerDnsIps: [ // DnsIpAddrs // required
|
|
45
|
+
* "STRING_VALUE",
|
|
46
|
+
* ],
|
|
47
|
+
* CustomerUserName: "STRING_VALUE", // required
|
|
48
|
+
* },
|
|
49
|
+
* Tags: [ // Tags
|
|
50
|
+
* { // Tag
|
|
51
|
+
* Key: "STRING_VALUE", // required
|
|
52
|
+
* Value: "STRING_VALUE", // required
|
|
53
|
+
* },
|
|
54
|
+
* ],
|
|
55
|
+
* };
|
|
33
56
|
* const command = new ConnectDirectoryCommand(input);
|
|
34
57
|
* const response = await client.send(command);
|
|
35
58
|
* ```
|
|
@@ -31,6 +31,10 @@ export interface CreateAliasCommandOutput extends CreateAliasResult, __MetadataB
|
|
|
31
31
|
* import { DirectoryServiceClient, CreateAliasCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
32
32
|
* // const { DirectoryServiceClient, CreateAliasCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
33
33
|
* const client = new DirectoryServiceClient(config);
|
|
34
|
+
* const input = { // CreateAliasRequest
|
|
35
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
36
|
+
* Alias: "STRING_VALUE", // required
|
|
37
|
+
* };
|
|
34
38
|
* const command = new CreateAliasCommand(input);
|
|
35
39
|
* const response = await client.send(command);
|
|
36
40
|
* ```
|
|
@@ -26,6 +26,18 @@ export interface CreateComputerCommandOutput extends CreateComputerResult, __Met
|
|
|
26
26
|
* import { DirectoryServiceClient, CreateComputerCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, CreateComputerCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // CreateComputerRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* ComputerName: "STRING_VALUE", // required
|
|
32
|
+
* Password: "STRING_VALUE", // required
|
|
33
|
+
* OrganizationalUnitDistinguishedName: "STRING_VALUE",
|
|
34
|
+
* ComputerAttributes: [ // Attributes
|
|
35
|
+
* { // Attribute
|
|
36
|
+
* Name: "STRING_VALUE",
|
|
37
|
+
* Value: "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* };
|
|
29
41
|
* const command = new CreateComputerCommand(input);
|
|
30
42
|
* const response = await client.send(command);
|
|
31
43
|
* ```
|
|
@@ -28,6 +28,13 @@ export interface CreateConditionalForwarderCommandOutput extends CreateCondition
|
|
|
28
28
|
* import { DirectoryServiceClient, CreateConditionalForwarderCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
29
29
|
* // const { DirectoryServiceClient, CreateConditionalForwarderCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
30
30
|
* const client = new DirectoryServiceClient(config);
|
|
31
|
+
* const input = { // CreateConditionalForwarderRequest
|
|
32
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
33
|
+
* RemoteDomainName: "STRING_VALUE", // required
|
|
34
|
+
* DnsIpAddrs: [ // DnsIpAddrs // required
|
|
35
|
+
* "STRING_VALUE",
|
|
36
|
+
* ],
|
|
37
|
+
* };
|
|
31
38
|
* const command = new CreateConditionalForwarderCommand(input);
|
|
32
39
|
* const response = await client.send(command);
|
|
33
40
|
* ```
|
|
@@ -31,6 +31,25 @@ export interface CreateDirectoryCommandOutput extends CreateDirectoryResult, __M
|
|
|
31
31
|
* import { DirectoryServiceClient, CreateDirectoryCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
32
32
|
* // const { DirectoryServiceClient, CreateDirectoryCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
33
33
|
* const client = new DirectoryServiceClient(config);
|
|
34
|
+
* const input = { // CreateDirectoryRequest
|
|
35
|
+
* Name: "STRING_VALUE", // required
|
|
36
|
+
* ShortName: "STRING_VALUE",
|
|
37
|
+
* Password: "STRING_VALUE", // required
|
|
38
|
+
* Description: "STRING_VALUE",
|
|
39
|
+
* Size: "Small" || "Large", // required
|
|
40
|
+
* VpcSettings: { // DirectoryVpcSettings
|
|
41
|
+
* VpcId: "STRING_VALUE", // required
|
|
42
|
+
* SubnetIds: [ // SubnetIds // required
|
|
43
|
+
* "STRING_VALUE",
|
|
44
|
+
* ],
|
|
45
|
+
* },
|
|
46
|
+
* Tags: [ // Tags
|
|
47
|
+
* { // Tag
|
|
48
|
+
* Key: "STRING_VALUE", // required
|
|
49
|
+
* Value: "STRING_VALUE", // required
|
|
50
|
+
* },
|
|
51
|
+
* ],
|
|
52
|
+
* };
|
|
34
53
|
* const command = new CreateDirectoryCommand(input);
|
|
35
54
|
* const response = await client.send(command);
|
|
36
55
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface CreateLogSubscriptionCommandOutput extends CreateLogSubscriptio
|
|
|
27
27
|
* import { DirectoryServiceClient, CreateLogSubscriptionCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
28
28
|
* // const { DirectoryServiceClient, CreateLogSubscriptionCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
29
29
|
* const client = new DirectoryServiceClient(config);
|
|
30
|
+
* const input = { // CreateLogSubscriptionRequest
|
|
31
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
32
|
+
* LogGroupName: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new CreateLogSubscriptionCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -29,6 +29,25 @@ export interface CreateMicrosoftADCommandOutput extends CreateMicrosoftADResult,
|
|
|
29
29
|
* import { DirectoryServiceClient, CreateMicrosoftADCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
30
30
|
* // const { DirectoryServiceClient, CreateMicrosoftADCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
31
31
|
* const client = new DirectoryServiceClient(config);
|
|
32
|
+
* const input = { // CreateMicrosoftADRequest
|
|
33
|
+
* Name: "STRING_VALUE", // required
|
|
34
|
+
* ShortName: "STRING_VALUE",
|
|
35
|
+
* Password: "STRING_VALUE", // required
|
|
36
|
+
* Description: "STRING_VALUE",
|
|
37
|
+
* VpcSettings: { // DirectoryVpcSettings
|
|
38
|
+
* VpcId: "STRING_VALUE", // required
|
|
39
|
+
* SubnetIds: [ // SubnetIds // required
|
|
40
|
+
* "STRING_VALUE",
|
|
41
|
+
* ],
|
|
42
|
+
* },
|
|
43
|
+
* Edition: "Enterprise" || "Standard",
|
|
44
|
+
* Tags: [ // Tags
|
|
45
|
+
* { // Tag
|
|
46
|
+
* Key: "STRING_VALUE", // required
|
|
47
|
+
* Value: "STRING_VALUE", // required
|
|
48
|
+
* },
|
|
49
|
+
* ],
|
|
50
|
+
* };
|
|
32
51
|
* const command = new CreateMicrosoftADCommand(input);
|
|
33
52
|
* const response = await client.send(command);
|
|
34
53
|
* ```
|
|
@@ -29,6 +29,10 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotResult, __Met
|
|
|
29
29
|
* import { DirectoryServiceClient, CreateSnapshotCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
30
30
|
* // const { DirectoryServiceClient, CreateSnapshotCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
31
31
|
* const client = new DirectoryServiceClient(config);
|
|
32
|
+
* const input = { // CreateSnapshotRequest
|
|
33
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
34
|
+
* Name: "STRING_VALUE",
|
|
35
|
+
* };
|
|
32
36
|
* const command = new CreateSnapshotCommand(input);
|
|
33
37
|
* const response = await client.send(command);
|
|
34
38
|
* ```
|
|
@@ -32,6 +32,17 @@ export interface CreateTrustCommandOutput extends CreateTrustResult, __MetadataB
|
|
|
32
32
|
* import { DirectoryServiceClient, CreateTrustCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
33
33
|
* // const { DirectoryServiceClient, CreateTrustCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
34
34
|
* const client = new DirectoryServiceClient(config);
|
|
35
|
+
* const input = { // CreateTrustRequest
|
|
36
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
37
|
+
* RemoteDomainName: "STRING_VALUE", // required
|
|
38
|
+
* TrustPassword: "STRING_VALUE", // required
|
|
39
|
+
* TrustDirection: "One-Way: Outgoing" || "One-Way: Incoming" || "Two-Way", // required
|
|
40
|
+
* TrustType: "Forest" || "External",
|
|
41
|
+
* ConditionalForwarderIpAddrs: [ // DnsIpAddrs
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* SelectiveAuth: "Enabled" || "Disabled",
|
|
45
|
+
* };
|
|
35
46
|
* const command = new CreateTrustCommand(input);
|
|
36
47
|
* const response = await client.send(command);
|
|
37
48
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface DeleteConditionalForwarderCommandOutput extends DeleteCondition
|
|
|
27
27
|
* import { DirectoryServiceClient, DeleteConditionalForwarderCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
28
28
|
* // const { DirectoryServiceClient, DeleteConditionalForwarderCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
29
29
|
* const client = new DirectoryServiceClient(config);
|
|
30
|
+
* const input = { // DeleteConditionalForwarderRequest
|
|
31
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
32
|
+
* RemoteDomainName: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new DeleteConditionalForwarderCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -30,6 +30,9 @@ export interface DeleteDirectoryCommandOutput extends DeleteDirectoryResult, __M
|
|
|
30
30
|
* import { DirectoryServiceClient, DeleteDirectoryCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
31
31
|
* // const { DirectoryServiceClient, DeleteDirectoryCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
32
32
|
* const client = new DirectoryServiceClient(config);
|
|
33
|
+
* const input = { // DeleteDirectoryRequest
|
|
34
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
35
|
+
* };
|
|
33
36
|
* const command = new DeleteDirectoryCommand(input);
|
|
34
37
|
* const response = await client.send(command);
|
|
35
38
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteLogSubscriptionCommandOutput extends DeleteLogSubscriptio
|
|
|
26
26
|
* import { DirectoryServiceClient, DeleteLogSubscriptionCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, DeleteLogSubscriptionCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // DeleteLogSubscriptionRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteLogSubscriptionCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteSnapshotCommandOutput extends DeleteSnapshotResult, __Met
|
|
|
26
26
|
* import { DirectoryServiceClient, DeleteSnapshotCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, DeleteSnapshotCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // DeleteSnapshotRequest
|
|
30
|
+
* SnapshotId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteSnapshotCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface DeleteTrustCommandOutput extends DeleteTrustResult, __MetadataB
|
|
|
27
27
|
* import { DirectoryServiceClient, DeleteTrustCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
28
28
|
* // const { DirectoryServiceClient, DeleteTrustCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
29
29
|
* const client = new DirectoryServiceClient(config);
|
|
30
|
+
* const input = { // DeleteTrustRequest
|
|
31
|
+
* TrustId: "STRING_VALUE", // required
|
|
32
|
+
* DeleteAssociatedConditionalForwarder: true || false,
|
|
33
|
+
* };
|
|
30
34
|
* const command = new DeleteTrustCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DeregisterCertificateCommandOutput extends DeregisterCertificat
|
|
|
26
26
|
* import { DirectoryServiceClient, DeregisterCertificateCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, DeregisterCertificateCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // DeregisterCertificateRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* CertificateId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DeregisterCertificateCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DeregisterEventTopicCommandOutput extends DeregisterEventTopicR
|
|
|
26
26
|
* import { DirectoryServiceClient, DeregisterEventTopicCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, DeregisterEventTopicCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // DeregisterEventTopicRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* TopicName: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DeregisterEventTopicCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DescribeCertificateCommandOutput extends DescribeCertificateRes
|
|
|
26
26
|
* import { DirectoryServiceClient, DescribeCertificateCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, DescribeCertificateCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // DescribeCertificateRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* CertificateId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DescribeCertificateCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -27,6 +27,12 @@ export interface DescribeClientAuthenticationSettingsCommandOutput extends Descr
|
|
|
27
27
|
* import { DirectoryServiceClient, DescribeClientAuthenticationSettingsCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
28
28
|
* // const { DirectoryServiceClient, DescribeClientAuthenticationSettingsCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
29
29
|
* const client = new DirectoryServiceClient(config);
|
|
30
|
+
* const input = { // DescribeClientAuthenticationSettingsRequest
|
|
31
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
32
|
+
* Type: "SmartCard" || "SmartCardOrPassword",
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* Limit: Number("int"),
|
|
35
|
+
* };
|
|
30
36
|
* const command = new DescribeClientAuthenticationSettingsCommand(input);
|
|
31
37
|
* const response = await client.send(command);
|
|
32
38
|
* ```
|
|
@@ -28,6 +28,12 @@ export interface DescribeConditionalForwardersCommandOutput extends DescribeCond
|
|
|
28
28
|
* import { DirectoryServiceClient, DescribeConditionalForwardersCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
29
29
|
* // const { DirectoryServiceClient, DescribeConditionalForwardersCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
30
30
|
* const client = new DirectoryServiceClient(config);
|
|
31
|
+
* const input = { // DescribeConditionalForwardersRequest
|
|
32
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
33
|
+
* RemoteDomainNames: [ // RemoteDomainNames
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* };
|
|
31
37
|
* const command = new DescribeConditionalForwardersCommand(input);
|
|
32
38
|
* const response = await client.send(command);
|
|
33
39
|
* ```
|
|
@@ -36,6 +36,13 @@ export interface DescribeDirectoriesCommandOutput extends DescribeDirectoriesRes
|
|
|
36
36
|
* import { DirectoryServiceClient, DescribeDirectoriesCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
37
37
|
* // const { DirectoryServiceClient, DescribeDirectoriesCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
38
38
|
* const client = new DirectoryServiceClient(config);
|
|
39
|
+
* const input = { // DescribeDirectoriesRequest
|
|
40
|
+
* DirectoryIds: [ // DirectoryIds
|
|
41
|
+
* "STRING_VALUE",
|
|
42
|
+
* ],
|
|
43
|
+
* NextToken: "STRING_VALUE",
|
|
44
|
+
* Limit: Number("int"),
|
|
45
|
+
* };
|
|
39
46
|
* const command = new DescribeDirectoriesCommand(input);
|
|
40
47
|
* const response = await client.send(command);
|
|
41
48
|
* ```
|
|
@@ -26,6 +26,14 @@ export interface DescribeDomainControllersCommandOutput extends DescribeDomainCo
|
|
|
26
26
|
* import { DirectoryServiceClient, DescribeDomainControllersCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, DescribeDomainControllersCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // DescribeDomainControllersRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* DomainControllerIds: [ // DomainControllerIds
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* NextToken: "STRING_VALUE",
|
|
35
|
+
* Limit: Number("int"),
|
|
36
|
+
* };
|
|
29
37
|
* const command = new DescribeDomainControllersCommand(input);
|
|
30
38
|
* const response = await client.send(command);
|
|
31
39
|
* ```
|
|
@@ -29,6 +29,12 @@ export interface DescribeEventTopicsCommandOutput extends DescribeEventTopicsRes
|
|
|
29
29
|
* import { DirectoryServiceClient, DescribeEventTopicsCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
30
30
|
* // const { DirectoryServiceClient, DescribeEventTopicsCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
31
31
|
* const client = new DirectoryServiceClient(config);
|
|
32
|
+
* const input = { // DescribeEventTopicsRequest
|
|
33
|
+
* DirectoryId: "STRING_VALUE",
|
|
34
|
+
* TopicNames: [ // TopicNames
|
|
35
|
+
* "STRING_VALUE",
|
|
36
|
+
* ],
|
|
37
|
+
* };
|
|
32
38
|
* const command = new DescribeEventTopicsCommand(input);
|
|
33
39
|
* const response = await client.send(command);
|
|
34
40
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface DescribeLDAPSSettingsCommandOutput extends DescribeLDAPSSetting
|
|
|
26
26
|
* import { DirectoryServiceClient, DescribeLDAPSSettingsCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, DescribeLDAPSSettingsCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // DescribeLDAPSSettingsRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* Type: "Client",
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* Limit: Number("int"),
|
|
34
|
+
* };
|
|
29
35
|
* const command = new DescribeLDAPSSettingsCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -27,6 +27,11 @@ export interface DescribeRegionsCommandOutput extends DescribeRegionsResult, __M
|
|
|
27
27
|
* import { DirectoryServiceClient, DescribeRegionsCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
28
28
|
* // const { DirectoryServiceClient, DescribeRegionsCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
29
29
|
* const client = new DirectoryServiceClient(config);
|
|
30
|
+
* const input = { // DescribeRegionsRequest
|
|
31
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
32
|
+
* RegionName: "STRING_VALUE",
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* };
|
|
30
35
|
* const command = new DescribeRegionsCommand(input);
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface DescribeSettingsCommandOutput extends DescribeSettingsResult, _
|
|
|
26
26
|
* import { DirectoryServiceClient, DescribeSettingsCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, DescribeSettingsCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // DescribeSettingsRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* Status: "Requested" || "Updating" || "Updated" || "Failed" || "Default",
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new DescribeSettingsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,14 @@ export interface DescribeSharedDirectoriesCommandOutput extends DescribeSharedDi
|
|
|
26
26
|
* import { DirectoryServiceClient, DescribeSharedDirectoriesCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, DescribeSharedDirectoriesCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // DescribeSharedDirectoriesRequest
|
|
30
|
+
* OwnerDirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* SharedDirectoryIds: [ // DirectoryIds
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* NextToken: "STRING_VALUE",
|
|
35
|
+
* Limit: Number("int"),
|
|
36
|
+
* };
|
|
29
37
|
* const command = new DescribeSharedDirectoriesCommand(input);
|
|
30
38
|
* const response = await client.send(command);
|
|
31
39
|
* ```
|
|
@@ -32,6 +32,14 @@ export interface DescribeSnapshotsCommandOutput extends DescribeSnapshotsResult,
|
|
|
32
32
|
* import { DirectoryServiceClient, DescribeSnapshotsCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
33
33
|
* // const { DirectoryServiceClient, DescribeSnapshotsCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
34
34
|
* const client = new DirectoryServiceClient(config);
|
|
35
|
+
* const input = { // DescribeSnapshotsRequest
|
|
36
|
+
* DirectoryId: "STRING_VALUE",
|
|
37
|
+
* SnapshotIds: [ // SnapshotIds
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* NextToken: "STRING_VALUE",
|
|
41
|
+
* Limit: Number("int"),
|
|
42
|
+
* };
|
|
35
43
|
* const command = new DescribeSnapshotsCommand(input);
|
|
36
44
|
* const response = await client.send(command);
|
|
37
45
|
* ```
|
|
@@ -28,6 +28,14 @@ export interface DescribeTrustsCommandOutput extends DescribeTrustsResult, __Met
|
|
|
28
28
|
* import { DirectoryServiceClient, DescribeTrustsCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
29
29
|
* // const { DirectoryServiceClient, DescribeTrustsCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
30
30
|
* const client = new DirectoryServiceClient(config);
|
|
31
|
+
* const input = { // DescribeTrustsRequest
|
|
32
|
+
* DirectoryId: "STRING_VALUE",
|
|
33
|
+
* TrustIds: [ // TrustIds
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* NextToken: "STRING_VALUE",
|
|
37
|
+
* Limit: Number("int"),
|
|
38
|
+
* };
|
|
31
39
|
* const command = new DescribeTrustsCommand(input);
|
|
32
40
|
* const response = await client.send(command);
|
|
33
41
|
* ```
|
|
@@ -28,6 +28,12 @@ export interface DescribeUpdateDirectoryCommandOutput extends DescribeUpdateDire
|
|
|
28
28
|
* import { DirectoryServiceClient, DescribeUpdateDirectoryCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
29
29
|
* // const { DirectoryServiceClient, DescribeUpdateDirectoryCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
30
30
|
* const client = new DirectoryServiceClient(config);
|
|
31
|
+
* const input = { // DescribeUpdateDirectoryRequest
|
|
32
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
33
|
+
* UpdateType: "OS", // required
|
|
34
|
+
* RegionName: "STRING_VALUE",
|
|
35
|
+
* NextToken: "STRING_VALUE",
|
|
36
|
+
* };
|
|
31
37
|
* const command = new DescribeUpdateDirectoryCommand(input);
|
|
32
38
|
* const response = await client.send(command);
|
|
33
39
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DisableClientAuthenticationCommandOutput extends DisableClientA
|
|
|
26
26
|
* import { DirectoryServiceClient, DisableClientAuthenticationCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, DisableClientAuthenticationCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // DisableClientAuthenticationRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* Type: "SmartCard" || "SmartCardOrPassword", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DisableClientAuthenticationCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DisableLDAPSCommandOutput extends DisableLDAPSResult, __Metadat
|
|
|
26
26
|
* import { DirectoryServiceClient, DisableLDAPSCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, DisableLDAPSCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // DisableLDAPSRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* Type: "Client", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DisableLDAPSCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface DisableRadiusCommandOutput extends DisableRadiusResult, __Metad
|
|
|
27
27
|
* import { DirectoryServiceClient, DisableRadiusCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
28
28
|
* // const { DirectoryServiceClient, DisableRadiusCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
29
29
|
* const client = new DirectoryServiceClient(config);
|
|
30
|
+
* const input = { // DisableRadiusRequest
|
|
31
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new DisableRadiusCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface DisableSsoCommandOutput extends DisableSsoResult, __MetadataBea
|
|
|
26
26
|
* import { DirectoryServiceClient, DisableSsoCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, DisableSsoCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // DisableSsoRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* UserName: "STRING_VALUE",
|
|
32
|
+
* Password: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new DisableSsoCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface EnableClientAuthenticationCommandOutput extends EnableClientAut
|
|
|
26
26
|
* import { DirectoryServiceClient, EnableClientAuthenticationCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, EnableClientAuthenticationCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // EnableClientAuthenticationRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* Type: "SmartCard" || "SmartCardOrPassword", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new EnableClientAuthenticationCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface EnableLDAPSCommandOutput extends EnableLDAPSResult, __MetadataB
|
|
|
26
26
|
* import { DirectoryServiceClient, EnableLDAPSCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, EnableLDAPSCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // EnableLDAPSRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* Type: "Client", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new EnableLDAPSCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -27,6 +27,21 @@ export interface EnableRadiusCommandOutput extends EnableRadiusResult, __Metadat
|
|
|
27
27
|
* import { DirectoryServiceClient, EnableRadiusCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
28
28
|
* // const { DirectoryServiceClient, EnableRadiusCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
29
29
|
* const client = new DirectoryServiceClient(config);
|
|
30
|
+
* const input = { // EnableRadiusRequest
|
|
31
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
32
|
+
* RadiusSettings: { // RadiusSettings
|
|
33
|
+
* RadiusServers: [ // Servers
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* RadiusPort: Number("int"),
|
|
37
|
+
* RadiusTimeout: Number("int"),
|
|
38
|
+
* RadiusRetries: Number("int"),
|
|
39
|
+
* SharedSecret: "STRING_VALUE",
|
|
40
|
+
* AuthenticationProtocol: "PAP" || "CHAP" || "MS-CHAPv1" || "MS-CHAPv2",
|
|
41
|
+
* DisplayLabel: "STRING_VALUE",
|
|
42
|
+
* UseSameUsername: true || false,
|
|
43
|
+
* },
|
|
44
|
+
* };
|
|
30
45
|
* const command = new EnableRadiusCommand(input);
|
|
31
46
|
* const response = await client.send(command);
|
|
32
47
|
* ```
|
|
@@ -28,6 +28,11 @@ export interface EnableSsoCommandOutput extends EnableSsoResult, __MetadataBeare
|
|
|
28
28
|
* import { DirectoryServiceClient, EnableSsoCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
29
29
|
* // const { DirectoryServiceClient, EnableSsoCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
30
30
|
* const client = new DirectoryServiceClient(config);
|
|
31
|
+
* const input = { // EnableSsoRequest
|
|
32
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
33
|
+
* UserName: "STRING_VALUE",
|
|
34
|
+
* Password: "STRING_VALUE",
|
|
35
|
+
* };
|
|
31
36
|
* const command = new EnableSsoCommand(input);
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
@@ -26,6 +26,7 @@ export interface GetDirectoryLimitsCommandOutput extends GetDirectoryLimitsResul
|
|
|
26
26
|
* import { DirectoryServiceClient, GetDirectoryLimitsCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, GetDirectoryLimitsCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = {};
|
|
29
30
|
* const command = new GetDirectoryLimitsCommand(input);
|
|
30
31
|
* const response = await client.send(command);
|
|
31
32
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetSnapshotLimitsCommandOutput extends GetSnapshotLimitsResult,
|
|
|
26
26
|
* import { DirectoryServiceClient, GetSnapshotLimitsCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, GetSnapshotLimitsCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // GetSnapshotLimitsRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetSnapshotLimitsCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListCertificatesCommandOutput extends ListCertificatesResult, _
|
|
|
26
26
|
* import { DirectoryServiceClient, ListCertificatesCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, ListCertificatesCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // ListCertificatesRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* Limit: Number("int"),
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListCertificatesCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListIpRoutesCommandOutput extends ListIpRoutesResult, __Metadat
|
|
|
26
26
|
* import { DirectoryServiceClient, ListIpRoutesCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, ListIpRoutesCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // ListIpRoutesRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* Limit: Number("int"),
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListIpRoutesCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListLogSubscriptionsCommandOutput extends ListLogSubscriptionsR
|
|
|
26
26
|
* import { DirectoryServiceClient, ListLogSubscriptionsCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, ListLogSubscriptionsCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // ListLogSubscriptionsRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE",
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* Limit: Number("int"),
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListLogSubscriptionsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListSchemaExtensionsCommandOutput extends ListSchemaExtensionsR
|
|
|
26
26
|
* import { DirectoryServiceClient, ListSchemaExtensionsCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, ListSchemaExtensionsCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // ListSchemaExtensionsRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* Limit: Number("int"),
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListSchemaExtensionsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { DirectoryServiceClient, ListTagsForResourceCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, ListTagsForResourceCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
|
+
* ResourceId: "STRING_VALUE", // required
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* Limit: Number("int"),
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,14 @@ export interface RegisterCertificateCommandOutput extends RegisterCertificateRes
|
|
|
26
26
|
* import { DirectoryServiceClient, RegisterCertificateCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, RegisterCertificateCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // RegisterCertificateRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* CertificateData: "STRING_VALUE", // required
|
|
32
|
+
* Type: "ClientCertAuth" || "ClientLDAPS",
|
|
33
|
+
* ClientCertAuthSettings: { // ClientCertAuthSettings
|
|
34
|
+
* OCSPUrl: "STRING_VALUE",
|
|
35
|
+
* },
|
|
36
|
+
* };
|
|
29
37
|
* const command = new RegisterCertificateCommand(input);
|
|
30
38
|
* const response = await client.send(command);
|
|
31
39
|
* ```
|
|
@@ -30,6 +30,10 @@ export interface RegisterEventTopicCommandOutput extends RegisterEventTopicResul
|
|
|
30
30
|
* import { DirectoryServiceClient, RegisterEventTopicCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
31
31
|
* // const { DirectoryServiceClient, RegisterEventTopicCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
32
32
|
* const client = new DirectoryServiceClient(config);
|
|
33
|
+
* const input = { // RegisterEventTopicRequest
|
|
34
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
35
|
+
* TopicName: "STRING_VALUE", // required
|
|
36
|
+
* };
|
|
33
37
|
* const command = new RegisterEventTopicCommand(input);
|
|
34
38
|
* const response = await client.send(command);
|
|
35
39
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface RejectSharedDirectoryCommandOutput extends RejectSharedDirector
|
|
|
26
26
|
* import { DirectoryServiceClient, RejectSharedDirectoryCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, RejectSharedDirectoryCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // RejectSharedDirectoryRequest
|
|
30
|
+
* SharedDirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new RejectSharedDirectoryCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface RemoveIpRoutesCommandOutput extends RemoveIpRoutesResult, __Met
|
|
|
26
26
|
* import { DirectoryServiceClient, RemoveIpRoutesCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, RemoveIpRoutesCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // RemoveIpRoutesRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* CidrIps: [ // CidrIps // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new RemoveIpRoutesCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -28,6 +28,9 @@ export interface RemoveRegionCommandOutput extends RemoveRegionResult, __Metadat
|
|
|
28
28
|
* import { DirectoryServiceClient, RemoveRegionCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
29
29
|
* // const { DirectoryServiceClient, RemoveRegionCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
30
30
|
* const client = new DirectoryServiceClient(config);
|
|
31
|
+
* const input = { // RemoveRegionRequest
|
|
32
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
31
34
|
* const command = new RemoveRegionCommand(input);
|
|
32
35
|
* const response = await client.send(command);
|
|
33
36
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface RemoveTagsFromResourceCommandOutput extends RemoveTagsFromResou
|
|
|
26
26
|
* import { DirectoryServiceClient, RemoveTagsFromResourceCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, RemoveTagsFromResourceCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // RemoveTagsFromResourceRequest
|
|
30
|
+
* ResourceId: "STRING_VALUE", // required
|
|
31
|
+
* TagKeys: [ // TagKeys // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new RemoveTagsFromResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -43,6 +43,11 @@ export interface ResetUserPasswordCommandOutput extends ResetUserPasswordResult,
|
|
|
43
43
|
* import { DirectoryServiceClient, ResetUserPasswordCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
44
44
|
* // const { DirectoryServiceClient, ResetUserPasswordCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
45
45
|
* const client = new DirectoryServiceClient(config);
|
|
46
|
+
* const input = { // ResetUserPasswordRequest
|
|
47
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
48
|
+
* UserName: "STRING_VALUE", // required
|
|
49
|
+
* NewPassword: "STRING_VALUE", // required
|
|
50
|
+
* };
|
|
46
51
|
* const command = new ResetUserPasswordCommand(input);
|
|
47
52
|
* const response = await client.send(command);
|
|
48
53
|
* ```
|
|
@@ -31,6 +31,9 @@ export interface RestoreFromSnapshotCommandOutput extends RestoreFromSnapshotRes
|
|
|
31
31
|
* import { DirectoryServiceClient, RestoreFromSnapshotCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
32
32
|
* // const { DirectoryServiceClient, RestoreFromSnapshotCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
33
33
|
* const client = new DirectoryServiceClient(config);
|
|
34
|
+
* const input = { // RestoreFromSnapshotRequest
|
|
35
|
+
* SnapshotId: "STRING_VALUE", // required
|
|
36
|
+
* };
|
|
34
37
|
* const command = new RestoreFromSnapshotCommand(input);
|
|
35
38
|
* const response = await client.send(command);
|
|
36
39
|
* ```
|
|
@@ -38,6 +38,15 @@ export interface ShareDirectoryCommandOutput extends ShareDirectoryResult, __Met
|
|
|
38
38
|
* import { DirectoryServiceClient, ShareDirectoryCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
39
39
|
* // const { DirectoryServiceClient, ShareDirectoryCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
40
40
|
* const client = new DirectoryServiceClient(config);
|
|
41
|
+
* const input = { // ShareDirectoryRequest
|
|
42
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
43
|
+
* ShareNotes: "STRING_VALUE",
|
|
44
|
+
* ShareTarget: { // ShareTarget
|
|
45
|
+
* Id: "STRING_VALUE", // required
|
|
46
|
+
* Type: "ACCOUNT", // required
|
|
47
|
+
* },
|
|
48
|
+
* ShareMethod: "ORGANIZATIONS" || "HANDSHAKE", // required
|
|
49
|
+
* };
|
|
41
50
|
* const command = new ShareDirectoryCommand(input);
|
|
42
51
|
* const response = await client.send(command);
|
|
43
52
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface StartSchemaExtensionCommandOutput extends StartSchemaExtensionR
|
|
|
26
26
|
* import { DirectoryServiceClient, StartSchemaExtensionCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, StartSchemaExtensionCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // StartSchemaExtensionRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* CreateSnapshotBeforeSchemaExtension: true || false, // required
|
|
32
|
+
* LdifContent: "STRING_VALUE", // required
|
|
33
|
+
* Description: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
29
35
|
* const command = new StartSchemaExtensionCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,13 @@ export interface UnshareDirectoryCommandOutput extends UnshareDirectoryResult, _
|
|
|
26
26
|
* import { DirectoryServiceClient, UnshareDirectoryCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, UnshareDirectoryCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // UnshareDirectoryRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* UnshareTarget: { // UnshareTarget
|
|
32
|
+
* Id: "STRING_VALUE", // required
|
|
33
|
+
* Type: "ACCOUNT", // required
|
|
34
|
+
* },
|
|
35
|
+
* };
|
|
29
36
|
* const command = new UnshareDirectoryCommand(input);
|
|
30
37
|
* const response = await client.send(command);
|
|
31
38
|
* ```
|
|
@@ -27,6 +27,13 @@ export interface UpdateConditionalForwarderCommandOutput extends UpdateCondition
|
|
|
27
27
|
* import { DirectoryServiceClient, UpdateConditionalForwarderCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
28
28
|
* // const { DirectoryServiceClient, UpdateConditionalForwarderCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
29
29
|
* const client = new DirectoryServiceClient(config);
|
|
30
|
+
* const input = { // UpdateConditionalForwarderRequest
|
|
31
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
32
|
+
* RemoteDomainName: "STRING_VALUE", // required
|
|
33
|
+
* DnsIpAddrs: [ // DnsIpAddrs // required
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* };
|
|
30
37
|
* const command = new UpdateConditionalForwarderCommand(input);
|
|
31
38
|
* const response = await client.send(command);
|
|
32
39
|
* ```
|
|
@@ -28,6 +28,14 @@ export interface UpdateDirectorySetupCommandOutput extends UpdateDirectorySetupR
|
|
|
28
28
|
* import { DirectoryServiceClient, UpdateDirectorySetupCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
29
29
|
* // const { DirectoryServiceClient, UpdateDirectorySetupCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
30
30
|
* const client = new DirectoryServiceClient(config);
|
|
31
|
+
* const input = { // UpdateDirectorySetupRequest
|
|
32
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
33
|
+
* UpdateType: "OS", // required
|
|
34
|
+
* OSUpdateSettings: { // OSUpdateSettings
|
|
35
|
+
* OSVersion: "SERVER_2012" || "SERVER_2019",
|
|
36
|
+
* },
|
|
37
|
+
* CreateSnapshotBeforeUpdate: true || false,
|
|
38
|
+
* };
|
|
31
39
|
* const command = new UpdateDirectorySetupCommand(input);
|
|
32
40
|
* const response = await client.send(command);
|
|
33
41
|
* ```
|
|
@@ -30,6 +30,10 @@ export interface UpdateNumberOfDomainControllersCommandOutput extends UpdateNumb
|
|
|
30
30
|
* import { DirectoryServiceClient, UpdateNumberOfDomainControllersCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
31
31
|
* // const { DirectoryServiceClient, UpdateNumberOfDomainControllersCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
32
32
|
* const client = new DirectoryServiceClient(config);
|
|
33
|
+
* const input = { // UpdateNumberOfDomainControllersRequest
|
|
34
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
35
|
+
* DesiredNumber: Number("int"), // required
|
|
36
|
+
* };
|
|
33
37
|
* const command = new UpdateNumberOfDomainControllersCommand(input);
|
|
34
38
|
* const response = await client.send(command);
|
|
35
39
|
* ```
|
|
@@ -27,6 +27,21 @@ export interface UpdateRadiusCommandOutput extends UpdateRadiusResult, __Metadat
|
|
|
27
27
|
* import { DirectoryServiceClient, UpdateRadiusCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
28
28
|
* // const { DirectoryServiceClient, UpdateRadiusCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
29
29
|
* const client = new DirectoryServiceClient(config);
|
|
30
|
+
* const input = { // UpdateRadiusRequest
|
|
31
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
32
|
+
* RadiusSettings: { // RadiusSettings
|
|
33
|
+
* RadiusServers: [ // Servers
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* RadiusPort: Number("int"),
|
|
37
|
+
* RadiusTimeout: Number("int"),
|
|
38
|
+
* RadiusRetries: Number("int"),
|
|
39
|
+
* SharedSecret: "STRING_VALUE",
|
|
40
|
+
* AuthenticationProtocol: "PAP" || "CHAP" || "MS-CHAPv1" || "MS-CHAPv2",
|
|
41
|
+
* DisplayLabel: "STRING_VALUE",
|
|
42
|
+
* UseSameUsername: true || false,
|
|
43
|
+
* },
|
|
44
|
+
* };
|
|
30
45
|
* const command = new UpdateRadiusCommand(input);
|
|
31
46
|
* const response = await client.send(command);
|
|
32
47
|
* ```
|
|
@@ -26,6 +26,15 @@ export interface UpdateSettingsCommandOutput extends UpdateSettingsResult, __Met
|
|
|
26
26
|
* import { DirectoryServiceClient, UpdateSettingsCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
27
27
|
* // const { DirectoryServiceClient, UpdateSettingsCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
28
28
|
* const client = new DirectoryServiceClient(config);
|
|
29
|
+
* const input = { // UpdateSettingsRequest
|
|
30
|
+
* DirectoryId: "STRING_VALUE", // required
|
|
31
|
+
* Settings: [ // Settings // required
|
|
32
|
+
* { // Setting
|
|
33
|
+
* Name: "STRING_VALUE", // required
|
|
34
|
+
* Value: "STRING_VALUE", // required
|
|
35
|
+
* },
|
|
36
|
+
* ],
|
|
37
|
+
* };
|
|
29
38
|
* const command = new UpdateSettingsCommand(input);
|
|
30
39
|
* const response = await client.send(command);
|
|
31
40
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface UpdateTrustCommandOutput extends UpdateTrustResult, __MetadataB
|
|
|
27
27
|
* import { DirectoryServiceClient, UpdateTrustCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
28
28
|
* // const { DirectoryServiceClient, UpdateTrustCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
29
29
|
* const client = new DirectoryServiceClient(config);
|
|
30
|
+
* const input = { // UpdateTrustRequest
|
|
31
|
+
* TrustId: "STRING_VALUE", // required
|
|
32
|
+
* SelectiveAuth: "Enabled" || "Disabled",
|
|
33
|
+
* };
|
|
30
34
|
* const command = new UpdateTrustCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -29,6 +29,9 @@ export interface VerifyTrustCommandOutput extends VerifyTrustResult, __MetadataB
|
|
|
29
29
|
* import { DirectoryServiceClient, VerifyTrustCommand } from "@aws-sdk/client-directory-service"; // ES Modules import
|
|
30
30
|
* // const { DirectoryServiceClient, VerifyTrustCommand } = require("@aws-sdk/client-directory-service"); // CommonJS import
|
|
31
31
|
* const client = new DirectoryServiceClient(config);
|
|
32
|
+
* const input = { // VerifyTrustRequest
|
|
33
|
+
* TrustId: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
32
35
|
* const command = new VerifyTrustCommand(input);
|
|
33
36
|
* const response = await client.send(command);
|
|
34
37
|
* ```
|
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.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|