@aws-sdk/client-directory-service 3.112.0 → 3.114.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/CHANGELOG.md +11 -0
- package/dist-cjs/DirectoryService.js +30 -0
- package/dist-cjs/commands/DescribeSettingsCommand.js +36 -0
- package/dist-cjs/commands/UpdateSettingsCommand.js +36 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +78 -3
- package/dist-cjs/protocols/Aws_json1_1.js +247 -3
- package/dist-es/DirectoryService.js +30 -0
- package/dist-es/commands/DescribeSettingsCommand.js +39 -0
- package/dist-es/commands/UpdateSettingsCommand.js +39 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +61 -0
- package/dist-es/protocols/Aws_json1_1.js +277 -2
- package/dist-types/DirectoryService.d.ts +14 -0
- package/dist-types/DirectoryServiceClient.d.ts +4 -2
- package/dist-types/commands/DescribeSettingsCommand.d.ts +35 -0
- package/dist-types/commands/UpdateSettingsCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +195 -1
- package/dist-types/protocols/Aws_json1_1.d.ts +6 -0
- package/dist-types/ts3.4/DirectoryService.d.ts +10 -0
- package/dist-types/ts3.4/DirectoryServiceClient.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateSettingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +111 -1
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +6 -0
- package/package.json +1 -1
|
@@ -826,7 +826,8 @@ export declare enum ClientAuthenticationStatus {
|
|
|
826
826
|
ENABLED = "Enabled"
|
|
827
827
|
}
|
|
828
828
|
export declare enum ClientAuthenticationType {
|
|
829
|
-
SMART_CARD = "SmartCard"
|
|
829
|
+
SMART_CARD = "SmartCard",
|
|
830
|
+
SMART_CARD_OR_PASSWORD = "SmartCardOrPassword"
|
|
830
831
|
}
|
|
831
832
|
/**
|
|
832
833
|
* <p>Contains information about a client authentication method for a directory.</p>
|
|
@@ -2531,6 +2532,111 @@ export declare namespace DescribeRegionsResult {
|
|
|
2531
2532
|
*/
|
|
2532
2533
|
const filterSensitiveLog: (obj: DescribeRegionsResult) => any;
|
|
2533
2534
|
}
|
|
2535
|
+
export declare enum DirectoryConfigurationStatus {
|
|
2536
|
+
DEFAULT = "Default",
|
|
2537
|
+
FAILED = "Failed",
|
|
2538
|
+
REQUESTED = "Requested",
|
|
2539
|
+
UPDATED = "Updated",
|
|
2540
|
+
UPDATING = "Updating"
|
|
2541
|
+
}
|
|
2542
|
+
export interface DescribeSettingsRequest {
|
|
2543
|
+
/**
|
|
2544
|
+
* <p>The identifier of the directory for which to retrieve information.</p>
|
|
2545
|
+
*/
|
|
2546
|
+
DirectoryId: string | undefined;
|
|
2547
|
+
/**
|
|
2548
|
+
* <p>The status of the directory settings for which to retrieve information.</p>
|
|
2549
|
+
*/
|
|
2550
|
+
Status?: DirectoryConfigurationStatus | string;
|
|
2551
|
+
/**
|
|
2552
|
+
* <p>The <code>DescribeSettingsResult.NextToken</code> value from a previous call to <a>DescribeSettings</a>. Pass null if this is the first call.</p>
|
|
2553
|
+
*/
|
|
2554
|
+
NextToken?: string;
|
|
2555
|
+
}
|
|
2556
|
+
export declare namespace DescribeSettingsRequest {
|
|
2557
|
+
/**
|
|
2558
|
+
* @internal
|
|
2559
|
+
*/
|
|
2560
|
+
const filterSensitiveLog: (obj: DescribeSettingsRequest) => any;
|
|
2561
|
+
}
|
|
2562
|
+
/**
|
|
2563
|
+
* <p>Contains information about the specified configurable setting for a directory.</p>
|
|
2564
|
+
*/
|
|
2565
|
+
export interface SettingEntry {
|
|
2566
|
+
/**
|
|
2567
|
+
* <p>The type of directory setting. For example, <code>Protocol</code> or <code>Cipher</code>.</p>
|
|
2568
|
+
*/
|
|
2569
|
+
Type?: string;
|
|
2570
|
+
/**
|
|
2571
|
+
* <p>The name of the directory setting. For example:</p>
|
|
2572
|
+
* <p>
|
|
2573
|
+
* <code>TLS_1_0</code>
|
|
2574
|
+
* </p>
|
|
2575
|
+
*/
|
|
2576
|
+
Name?: string;
|
|
2577
|
+
/**
|
|
2578
|
+
* <p>The valid range of values for the directory setting.</p>
|
|
2579
|
+
*/
|
|
2580
|
+
AllowedValues?: string;
|
|
2581
|
+
/**
|
|
2582
|
+
* <p>The value of the directory setting that is applied to the directory.</p>
|
|
2583
|
+
*/
|
|
2584
|
+
AppliedValue?: string;
|
|
2585
|
+
/**
|
|
2586
|
+
* <p>The value that was last requested for the directory setting.</p>
|
|
2587
|
+
*/
|
|
2588
|
+
RequestedValue?: string;
|
|
2589
|
+
/**
|
|
2590
|
+
* <p>The overall status of the request to update the directory setting request. If the directory setting is deployed in more than one region, and the request fails in any region, the overall status is <code>Failed</code>.</p>
|
|
2591
|
+
*/
|
|
2592
|
+
RequestStatus?: DirectoryConfigurationStatus | string;
|
|
2593
|
+
/**
|
|
2594
|
+
* <p>Details about the status of the request to update the directory setting. If the directory setting is deployed in more than one region, status is returned for the request in each region where the setting is deployed.</p>
|
|
2595
|
+
*/
|
|
2596
|
+
RequestDetailedStatus?: Record<string, DirectoryConfigurationStatus | string>;
|
|
2597
|
+
/**
|
|
2598
|
+
* <p>The last status message for the directory status request.</p>
|
|
2599
|
+
*/
|
|
2600
|
+
RequestStatusMessage?: string;
|
|
2601
|
+
/**
|
|
2602
|
+
* <p>The date and time when the directory setting was last updated.</p>
|
|
2603
|
+
*/
|
|
2604
|
+
LastUpdatedDateTime?: Date;
|
|
2605
|
+
/**
|
|
2606
|
+
* <p>The date and time when the request to update a directory setting was last submitted.</p>
|
|
2607
|
+
*/
|
|
2608
|
+
LastRequestedDateTime?: Date;
|
|
2609
|
+
}
|
|
2610
|
+
export declare namespace SettingEntry {
|
|
2611
|
+
/**
|
|
2612
|
+
* @internal
|
|
2613
|
+
*/
|
|
2614
|
+
const filterSensitiveLog: (obj: SettingEntry) => any;
|
|
2615
|
+
}
|
|
2616
|
+
export interface DescribeSettingsResult {
|
|
2617
|
+
/**
|
|
2618
|
+
* <p>The identifier of the directory.</p>
|
|
2619
|
+
*/
|
|
2620
|
+
DirectoryId?: string;
|
|
2621
|
+
/**
|
|
2622
|
+
* <p>The list of <a>SettingEntry</a> objects that were retrieved.</p>
|
|
2623
|
+
* <p>It is possible that this list contains less than the number of items specified in the
|
|
2624
|
+
* <code>Limit</code> member of the request. This occurs if there are less than the requested
|
|
2625
|
+
* number of items left to retrieve, or if the limitations of the operation have been
|
|
2626
|
+
* exceeded.</p>
|
|
2627
|
+
*/
|
|
2628
|
+
SettingEntries?: SettingEntry[];
|
|
2629
|
+
/**
|
|
2630
|
+
* <p>If not null, token that indicates that more results are available. Pass this value for the <code>NextToken</code> parameter in a subsequent call to <code>DescribeSettings</code> to retrieve the next set of items. </p>
|
|
2631
|
+
*/
|
|
2632
|
+
NextToken?: string;
|
|
2633
|
+
}
|
|
2634
|
+
export declare namespace DescribeSettingsResult {
|
|
2635
|
+
/**
|
|
2636
|
+
* @internal
|
|
2637
|
+
*/
|
|
2638
|
+
const filterSensitiveLog: (obj: DescribeSettingsResult) => any;
|
|
2639
|
+
}
|
|
2534
2640
|
export interface DescribeSharedDirectoriesRequest {
|
|
2535
2641
|
/**
|
|
2536
2642
|
* <p>Returns the identifier of the directory in the directory owner account. </p>
|
|
@@ -4164,6 +4270,94 @@ export declare namespace UpdateRadiusResult {
|
|
|
4164
4270
|
*/
|
|
4165
4271
|
const filterSensitiveLog: (obj: UpdateRadiusResult) => any;
|
|
4166
4272
|
}
|
|
4273
|
+
/**
|
|
4274
|
+
* <p>The specified directory setting is not compatible with other settings.</p>
|
|
4275
|
+
*/
|
|
4276
|
+
export declare class IncompatibleSettingsException extends __BaseException {
|
|
4277
|
+
readonly name: "IncompatibleSettingsException";
|
|
4278
|
+
readonly $fault: "client";
|
|
4279
|
+
/**
|
|
4280
|
+
* <p>The descriptive message for the exception.</p>
|
|
4281
|
+
*/
|
|
4282
|
+
Message?: string;
|
|
4283
|
+
/**
|
|
4284
|
+
* <p>The Amazon Web Services request identifier.</p>
|
|
4285
|
+
*/
|
|
4286
|
+
RequestId?: string;
|
|
4287
|
+
/**
|
|
4288
|
+
* @internal
|
|
4289
|
+
*/
|
|
4290
|
+
constructor(opts: __ExceptionOptionType<IncompatibleSettingsException, __BaseException>);
|
|
4291
|
+
}
|
|
4292
|
+
/**
|
|
4293
|
+
* <p>The specified directory setting is not supported.</p>
|
|
4294
|
+
*/
|
|
4295
|
+
export declare class UnsupportedSettingsException extends __BaseException {
|
|
4296
|
+
readonly name: "UnsupportedSettingsException";
|
|
4297
|
+
readonly $fault: "client";
|
|
4298
|
+
/**
|
|
4299
|
+
* <p>The descriptive message for the exception.</p>
|
|
4300
|
+
*/
|
|
4301
|
+
Message?: string;
|
|
4302
|
+
/**
|
|
4303
|
+
* <p>The Amazon Web Services request identifier.</p>
|
|
4304
|
+
*/
|
|
4305
|
+
RequestId?: string;
|
|
4306
|
+
/**
|
|
4307
|
+
* @internal
|
|
4308
|
+
*/
|
|
4309
|
+
constructor(opts: __ExceptionOptionType<UnsupportedSettingsException, __BaseException>);
|
|
4310
|
+
}
|
|
4311
|
+
/**
|
|
4312
|
+
* <p>Contains information about the configurable settings for a directory.</p>
|
|
4313
|
+
*/
|
|
4314
|
+
export interface Setting {
|
|
4315
|
+
/**
|
|
4316
|
+
* <p>The name of the directory setting. For example:</p>
|
|
4317
|
+
* <p>
|
|
4318
|
+
* <code>TLS_1_0</code>
|
|
4319
|
+
* </p>
|
|
4320
|
+
*/
|
|
4321
|
+
Name: string | undefined;
|
|
4322
|
+
/**
|
|
4323
|
+
* <p>The value of the directory setting for which to retrieve information. For example, for <code>TLS_1_0</code>, the valid values are: <code>Enable</code> and <code>Disable</code>.</p>
|
|
4324
|
+
*/
|
|
4325
|
+
Value: string | undefined;
|
|
4326
|
+
}
|
|
4327
|
+
export declare namespace Setting {
|
|
4328
|
+
/**
|
|
4329
|
+
* @internal
|
|
4330
|
+
*/
|
|
4331
|
+
const filterSensitiveLog: (obj: Setting) => any;
|
|
4332
|
+
}
|
|
4333
|
+
export interface UpdateSettingsRequest {
|
|
4334
|
+
/**
|
|
4335
|
+
* <p>The identifier of the directory for which to update settings.</p>
|
|
4336
|
+
*/
|
|
4337
|
+
DirectoryId: string | undefined;
|
|
4338
|
+
/**
|
|
4339
|
+
* <p>The list of <a>Setting</a> objects.</p>
|
|
4340
|
+
*/
|
|
4341
|
+
Settings: Setting[] | undefined;
|
|
4342
|
+
}
|
|
4343
|
+
export declare namespace UpdateSettingsRequest {
|
|
4344
|
+
/**
|
|
4345
|
+
* @internal
|
|
4346
|
+
*/
|
|
4347
|
+
const filterSensitiveLog: (obj: UpdateSettingsRequest) => any;
|
|
4348
|
+
}
|
|
4349
|
+
export interface UpdateSettingsResult {
|
|
4350
|
+
/**
|
|
4351
|
+
* <p>The identifier of the directory.</p>
|
|
4352
|
+
*/
|
|
4353
|
+
DirectoryId?: string;
|
|
4354
|
+
}
|
|
4355
|
+
export declare namespace UpdateSettingsResult {
|
|
4356
|
+
/**
|
|
4357
|
+
* @internal
|
|
4358
|
+
*/
|
|
4359
|
+
const filterSensitiveLog: (obj: UpdateSettingsResult) => any;
|
|
4360
|
+
}
|
|
4167
4361
|
export interface UpdateTrustRequest {
|
|
4168
4362
|
/**
|
|
4169
4363
|
* <p>Identifier of the trust relationship.</p>
|
|
@@ -29,6 +29,7 @@ import { DescribeDomainControllersCommandInput, DescribeDomainControllersCommand
|
|
|
29
29
|
import { DescribeEventTopicsCommandInput, DescribeEventTopicsCommandOutput } from "../commands/DescribeEventTopicsCommand";
|
|
30
30
|
import { DescribeLDAPSSettingsCommandInput, DescribeLDAPSSettingsCommandOutput } from "../commands/DescribeLDAPSSettingsCommand";
|
|
31
31
|
import { DescribeRegionsCommandInput, DescribeRegionsCommandOutput } from "../commands/DescribeRegionsCommand";
|
|
32
|
+
import { DescribeSettingsCommandInput, DescribeSettingsCommandOutput } from "../commands/DescribeSettingsCommand";
|
|
32
33
|
import { DescribeSharedDirectoriesCommandInput, DescribeSharedDirectoriesCommandOutput } from "../commands/DescribeSharedDirectoriesCommand";
|
|
33
34
|
import { DescribeSnapshotsCommandInput, DescribeSnapshotsCommandOutput } from "../commands/DescribeSnapshotsCommand";
|
|
34
35
|
import { DescribeTrustsCommandInput, DescribeTrustsCommandOutput } from "../commands/DescribeTrustsCommand";
|
|
@@ -61,6 +62,7 @@ import { UnshareDirectoryCommandInput, UnshareDirectoryCommandOutput } from "../
|
|
|
61
62
|
import { UpdateConditionalForwarderCommandInput, UpdateConditionalForwarderCommandOutput } from "../commands/UpdateConditionalForwarderCommand";
|
|
62
63
|
import { UpdateNumberOfDomainControllersCommandInput, UpdateNumberOfDomainControllersCommandOutput } from "../commands/UpdateNumberOfDomainControllersCommand";
|
|
63
64
|
import { UpdateRadiusCommandInput, UpdateRadiusCommandOutput } from "../commands/UpdateRadiusCommand";
|
|
65
|
+
import { UpdateSettingsCommandInput, UpdateSettingsCommandOutput } from "../commands/UpdateSettingsCommand";
|
|
64
66
|
import { UpdateTrustCommandInput, UpdateTrustCommandOutput } from "../commands/UpdateTrustCommand";
|
|
65
67
|
import { VerifyTrustCommandInput, VerifyTrustCommandOutput } from "../commands/VerifyTrustCommand";
|
|
66
68
|
export declare const serializeAws_json1_1AcceptSharedDirectoryCommand: (input: AcceptSharedDirectoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -92,6 +94,7 @@ export declare const serializeAws_json1_1DescribeDomainControllersCommand: (inpu
|
|
|
92
94
|
export declare const serializeAws_json1_1DescribeEventTopicsCommand: (input: DescribeEventTopicsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
95
|
export declare const serializeAws_json1_1DescribeLDAPSSettingsCommand: (input: DescribeLDAPSSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
96
|
export declare const serializeAws_json1_1DescribeRegionsCommand: (input: DescribeRegionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
|
+
export declare const serializeAws_json1_1DescribeSettingsCommand: (input: DescribeSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
95
98
|
export declare const serializeAws_json1_1DescribeSharedDirectoriesCommand: (input: DescribeSharedDirectoriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
96
99
|
export declare const serializeAws_json1_1DescribeSnapshotsCommand: (input: DescribeSnapshotsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
100
|
export declare const serializeAws_json1_1DescribeTrustsCommand: (input: DescribeTrustsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -124,6 +127,7 @@ export declare const serializeAws_json1_1UnshareDirectoryCommand: (input: Unshar
|
|
|
124
127
|
export declare const serializeAws_json1_1UpdateConditionalForwarderCommand: (input: UpdateConditionalForwarderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
125
128
|
export declare const serializeAws_json1_1UpdateNumberOfDomainControllersCommand: (input: UpdateNumberOfDomainControllersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
126
129
|
export declare const serializeAws_json1_1UpdateRadiusCommand: (input: UpdateRadiusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_json1_1UpdateSettingsCommand: (input: UpdateSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
127
131
|
export declare const serializeAws_json1_1UpdateTrustCommand: (input: UpdateTrustCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
128
132
|
export declare const serializeAws_json1_1VerifyTrustCommand: (input: VerifyTrustCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
129
133
|
export declare const deserializeAws_json1_1AcceptSharedDirectoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AcceptSharedDirectoryCommandOutput>;
|
|
@@ -155,6 +159,7 @@ export declare const deserializeAws_json1_1DescribeDomainControllersCommand: (ou
|
|
|
155
159
|
export declare const deserializeAws_json1_1DescribeEventTopicsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEventTopicsCommandOutput>;
|
|
156
160
|
export declare const deserializeAws_json1_1DescribeLDAPSSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLDAPSSettingsCommandOutput>;
|
|
157
161
|
export declare const deserializeAws_json1_1DescribeRegionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeRegionsCommandOutput>;
|
|
162
|
+
export declare const deserializeAws_json1_1DescribeSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSettingsCommandOutput>;
|
|
158
163
|
export declare const deserializeAws_json1_1DescribeSharedDirectoriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSharedDirectoriesCommandOutput>;
|
|
159
164
|
export declare const deserializeAws_json1_1DescribeSnapshotsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSnapshotsCommandOutput>;
|
|
160
165
|
export declare const deserializeAws_json1_1DescribeTrustsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeTrustsCommandOutput>;
|
|
@@ -187,5 +192,6 @@ export declare const deserializeAws_json1_1UnshareDirectoryCommand: (output: __H
|
|
|
187
192
|
export declare const deserializeAws_json1_1UpdateConditionalForwarderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConditionalForwarderCommandOutput>;
|
|
188
193
|
export declare const deserializeAws_json1_1UpdateNumberOfDomainControllersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateNumberOfDomainControllersCommandOutput>;
|
|
189
194
|
export declare const deserializeAws_json1_1UpdateRadiusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRadiusCommandOutput>;
|
|
195
|
+
export declare const deserializeAws_json1_1UpdateSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSettingsCommandOutput>;
|
|
190
196
|
export declare const deserializeAws_json1_1UpdateTrustCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTrustCommandOutput>;
|
|
191
197
|
export declare const deserializeAws_json1_1VerifyTrustCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<VerifyTrustCommandOutput>;
|
|
@@ -28,6 +28,7 @@ import { DescribeDomainControllersCommandInput, DescribeDomainControllersCommand
|
|
|
28
28
|
import { DescribeEventTopicsCommandInput, DescribeEventTopicsCommandOutput } from "./commands/DescribeEventTopicsCommand";
|
|
29
29
|
import { DescribeLDAPSSettingsCommandInput, DescribeLDAPSSettingsCommandOutput } from "./commands/DescribeLDAPSSettingsCommand";
|
|
30
30
|
import { DescribeRegionsCommandInput, DescribeRegionsCommandOutput } from "./commands/DescribeRegionsCommand";
|
|
31
|
+
import { DescribeSettingsCommandInput, DescribeSettingsCommandOutput } from "./commands/DescribeSettingsCommand";
|
|
31
32
|
import { DescribeSharedDirectoriesCommandInput, DescribeSharedDirectoriesCommandOutput } from "./commands/DescribeSharedDirectoriesCommand";
|
|
32
33
|
import { DescribeSnapshotsCommandInput, DescribeSnapshotsCommandOutput } from "./commands/DescribeSnapshotsCommand";
|
|
33
34
|
import { DescribeTrustsCommandInput, DescribeTrustsCommandOutput } from "./commands/DescribeTrustsCommand";
|
|
@@ -60,6 +61,7 @@ import { UnshareDirectoryCommandInput, UnshareDirectoryCommandOutput } from "./c
|
|
|
60
61
|
import { UpdateConditionalForwarderCommandInput, UpdateConditionalForwarderCommandOutput } from "./commands/UpdateConditionalForwarderCommand";
|
|
61
62
|
import { UpdateNumberOfDomainControllersCommandInput, UpdateNumberOfDomainControllersCommandOutput } from "./commands/UpdateNumberOfDomainControllersCommand";
|
|
62
63
|
import { UpdateRadiusCommandInput, UpdateRadiusCommandOutput } from "./commands/UpdateRadiusCommand";
|
|
64
|
+
import { UpdateSettingsCommandInput, UpdateSettingsCommandOutput } from "./commands/UpdateSettingsCommand";
|
|
63
65
|
import { UpdateTrustCommandInput, UpdateTrustCommandOutput } from "./commands/UpdateTrustCommand";
|
|
64
66
|
import { VerifyTrustCommandInput, VerifyTrustCommandOutput } from "./commands/VerifyTrustCommand";
|
|
65
67
|
import { DirectoryServiceClient } from "./DirectoryServiceClient";
|
|
@@ -182,6 +184,10 @@ export declare class DirectoryService extends DirectoryServiceClient {
|
|
|
182
184
|
describeRegions(args: DescribeRegionsCommandInput, cb: (err: any, data?: DescribeRegionsCommandOutput) => void): void;
|
|
183
185
|
describeRegions(args: DescribeRegionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeRegionsCommandOutput) => void): void;
|
|
184
186
|
|
|
187
|
+
describeSettings(args: DescribeSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSettingsCommandOutput>;
|
|
188
|
+
describeSettings(args: DescribeSettingsCommandInput, cb: (err: any, data?: DescribeSettingsCommandOutput) => void): void;
|
|
189
|
+
describeSettings(args: DescribeSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSettingsCommandOutput) => void): void;
|
|
190
|
+
|
|
185
191
|
describeSharedDirectories(args: DescribeSharedDirectoriesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSharedDirectoriesCommandOutput>;
|
|
186
192
|
describeSharedDirectories(args: DescribeSharedDirectoriesCommandInput, cb: (err: any, data?: DescribeSharedDirectoriesCommandOutput) => void): void;
|
|
187
193
|
describeSharedDirectories(args: DescribeSharedDirectoriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSharedDirectoriesCommandOutput) => void): void;
|
|
@@ -310,6 +316,10 @@ export declare class DirectoryService extends DirectoryServiceClient {
|
|
|
310
316
|
updateRadius(args: UpdateRadiusCommandInput, cb: (err: any, data?: UpdateRadiusCommandOutput) => void): void;
|
|
311
317
|
updateRadius(args: UpdateRadiusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRadiusCommandOutput) => void): void;
|
|
312
318
|
|
|
319
|
+
updateSettings(args: UpdateSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSettingsCommandOutput>;
|
|
320
|
+
updateSettings(args: UpdateSettingsCommandInput, cb: (err: any, data?: UpdateSettingsCommandOutput) => void): void;
|
|
321
|
+
updateSettings(args: UpdateSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSettingsCommandOutput) => void): void;
|
|
322
|
+
|
|
313
323
|
updateTrust(args: UpdateTrustCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTrustCommandOutput>;
|
|
314
324
|
updateTrust(args: UpdateTrustCommandInput, cb: (err: any, data?: UpdateTrustCommandOutput) => void): void;
|
|
315
325
|
updateTrust(args: UpdateTrustCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTrustCommandOutput) => void): void;
|
|
@@ -35,6 +35,7 @@ import { DescribeDomainControllersCommandInput, DescribeDomainControllersCommand
|
|
|
35
35
|
import { DescribeEventTopicsCommandInput, DescribeEventTopicsCommandOutput } from "./commands/DescribeEventTopicsCommand";
|
|
36
36
|
import { DescribeLDAPSSettingsCommandInput, DescribeLDAPSSettingsCommandOutput } from "./commands/DescribeLDAPSSettingsCommand";
|
|
37
37
|
import { DescribeRegionsCommandInput, DescribeRegionsCommandOutput } from "./commands/DescribeRegionsCommand";
|
|
38
|
+
import { DescribeSettingsCommandInput, DescribeSettingsCommandOutput } from "./commands/DescribeSettingsCommand";
|
|
38
39
|
import { DescribeSharedDirectoriesCommandInput, DescribeSharedDirectoriesCommandOutput } from "./commands/DescribeSharedDirectoriesCommand";
|
|
39
40
|
import { DescribeSnapshotsCommandInput, DescribeSnapshotsCommandOutput } from "./commands/DescribeSnapshotsCommand";
|
|
40
41
|
import { DescribeTrustsCommandInput, DescribeTrustsCommandOutput } from "./commands/DescribeTrustsCommand";
|
|
@@ -67,10 +68,11 @@ import { UnshareDirectoryCommandInput, UnshareDirectoryCommandOutput } from "./c
|
|
|
67
68
|
import { UpdateConditionalForwarderCommandInput, UpdateConditionalForwarderCommandOutput } from "./commands/UpdateConditionalForwarderCommand";
|
|
68
69
|
import { UpdateNumberOfDomainControllersCommandInput, UpdateNumberOfDomainControllersCommandOutput } from "./commands/UpdateNumberOfDomainControllersCommand";
|
|
69
70
|
import { UpdateRadiusCommandInput, UpdateRadiusCommandOutput } from "./commands/UpdateRadiusCommand";
|
|
71
|
+
import { UpdateSettingsCommandInput, UpdateSettingsCommandOutput } from "./commands/UpdateSettingsCommand";
|
|
70
72
|
import { UpdateTrustCommandInput, UpdateTrustCommandOutput } from "./commands/UpdateTrustCommand";
|
|
71
73
|
import { VerifyTrustCommandInput, VerifyTrustCommandOutput } from "./commands/VerifyTrustCommand";
|
|
72
|
-
export declare type ServiceInputTypes = AcceptSharedDirectoryCommandInput | AddIpRoutesCommandInput | AddRegionCommandInput | AddTagsToResourceCommandInput | CancelSchemaExtensionCommandInput | ConnectDirectoryCommandInput | CreateAliasCommandInput | CreateComputerCommandInput | CreateConditionalForwarderCommandInput | CreateDirectoryCommandInput | CreateLogSubscriptionCommandInput | CreateMicrosoftADCommandInput | CreateSnapshotCommandInput | CreateTrustCommandInput | DeleteConditionalForwarderCommandInput | DeleteDirectoryCommandInput | DeleteLogSubscriptionCommandInput | DeleteSnapshotCommandInput | DeleteTrustCommandInput | DeregisterCertificateCommandInput | DeregisterEventTopicCommandInput | DescribeCertificateCommandInput | DescribeClientAuthenticationSettingsCommandInput | DescribeConditionalForwardersCommandInput | DescribeDirectoriesCommandInput | DescribeDomainControllersCommandInput | DescribeEventTopicsCommandInput | DescribeLDAPSSettingsCommandInput | DescribeRegionsCommandInput | DescribeSharedDirectoriesCommandInput | DescribeSnapshotsCommandInput | DescribeTrustsCommandInput | DisableClientAuthenticationCommandInput | DisableLDAPSCommandInput | DisableRadiusCommandInput | DisableSsoCommandInput | EnableClientAuthenticationCommandInput | EnableLDAPSCommandInput | EnableRadiusCommandInput | EnableSsoCommandInput | GetDirectoryLimitsCommandInput | GetSnapshotLimitsCommandInput | ListCertificatesCommandInput | ListIpRoutesCommandInput | ListLogSubscriptionsCommandInput | ListSchemaExtensionsCommandInput | ListTagsForResourceCommandInput | RegisterCertificateCommandInput | RegisterEventTopicCommandInput | RejectSharedDirectoryCommandInput | RemoveIpRoutesCommandInput | RemoveRegionCommandInput | RemoveTagsFromResourceCommandInput | ResetUserPasswordCommandInput | RestoreFromSnapshotCommandInput | ShareDirectoryCommandInput | StartSchemaExtensionCommandInput | UnshareDirectoryCommandInput | UpdateConditionalForwarderCommandInput | UpdateNumberOfDomainControllersCommandInput | UpdateRadiusCommandInput | UpdateTrustCommandInput | VerifyTrustCommandInput;
|
|
73
|
-
export declare type ServiceOutputTypes = AcceptSharedDirectoryCommandOutput | AddIpRoutesCommandOutput | AddRegionCommandOutput | AddTagsToResourceCommandOutput | CancelSchemaExtensionCommandOutput | ConnectDirectoryCommandOutput | CreateAliasCommandOutput | CreateComputerCommandOutput | CreateConditionalForwarderCommandOutput | CreateDirectoryCommandOutput | CreateLogSubscriptionCommandOutput | CreateMicrosoftADCommandOutput | CreateSnapshotCommandOutput | CreateTrustCommandOutput | DeleteConditionalForwarderCommandOutput | DeleteDirectoryCommandOutput | DeleteLogSubscriptionCommandOutput | DeleteSnapshotCommandOutput | DeleteTrustCommandOutput | DeregisterCertificateCommandOutput | DeregisterEventTopicCommandOutput | DescribeCertificateCommandOutput | DescribeClientAuthenticationSettingsCommandOutput | DescribeConditionalForwardersCommandOutput | DescribeDirectoriesCommandOutput | DescribeDomainControllersCommandOutput | DescribeEventTopicsCommandOutput | DescribeLDAPSSettingsCommandOutput | DescribeRegionsCommandOutput | DescribeSharedDirectoriesCommandOutput | DescribeSnapshotsCommandOutput | DescribeTrustsCommandOutput | DisableClientAuthenticationCommandOutput | DisableLDAPSCommandOutput | DisableRadiusCommandOutput | DisableSsoCommandOutput | EnableClientAuthenticationCommandOutput | EnableLDAPSCommandOutput | EnableRadiusCommandOutput | EnableSsoCommandOutput | GetDirectoryLimitsCommandOutput | GetSnapshotLimitsCommandOutput | ListCertificatesCommandOutput | ListIpRoutesCommandOutput | ListLogSubscriptionsCommandOutput | ListSchemaExtensionsCommandOutput | ListTagsForResourceCommandOutput | RegisterCertificateCommandOutput | RegisterEventTopicCommandOutput | RejectSharedDirectoryCommandOutput | RemoveIpRoutesCommandOutput | RemoveRegionCommandOutput | RemoveTagsFromResourceCommandOutput | ResetUserPasswordCommandOutput | RestoreFromSnapshotCommandOutput | ShareDirectoryCommandOutput | StartSchemaExtensionCommandOutput | UnshareDirectoryCommandOutput | UpdateConditionalForwarderCommandOutput | UpdateNumberOfDomainControllersCommandOutput | UpdateRadiusCommandOutput | UpdateTrustCommandOutput | VerifyTrustCommandOutput;
|
|
74
|
+
export declare type ServiceInputTypes = AcceptSharedDirectoryCommandInput | AddIpRoutesCommandInput | AddRegionCommandInput | AddTagsToResourceCommandInput | CancelSchemaExtensionCommandInput | ConnectDirectoryCommandInput | CreateAliasCommandInput | CreateComputerCommandInput | CreateConditionalForwarderCommandInput | CreateDirectoryCommandInput | CreateLogSubscriptionCommandInput | CreateMicrosoftADCommandInput | CreateSnapshotCommandInput | CreateTrustCommandInput | DeleteConditionalForwarderCommandInput | DeleteDirectoryCommandInput | DeleteLogSubscriptionCommandInput | DeleteSnapshotCommandInput | DeleteTrustCommandInput | DeregisterCertificateCommandInput | DeregisterEventTopicCommandInput | DescribeCertificateCommandInput | DescribeClientAuthenticationSettingsCommandInput | DescribeConditionalForwardersCommandInput | DescribeDirectoriesCommandInput | DescribeDomainControllersCommandInput | DescribeEventTopicsCommandInput | DescribeLDAPSSettingsCommandInput | DescribeRegionsCommandInput | DescribeSettingsCommandInput | DescribeSharedDirectoriesCommandInput | DescribeSnapshotsCommandInput | DescribeTrustsCommandInput | DisableClientAuthenticationCommandInput | DisableLDAPSCommandInput | DisableRadiusCommandInput | DisableSsoCommandInput | EnableClientAuthenticationCommandInput | EnableLDAPSCommandInput | EnableRadiusCommandInput | EnableSsoCommandInput | GetDirectoryLimitsCommandInput | GetSnapshotLimitsCommandInput | ListCertificatesCommandInput | ListIpRoutesCommandInput | ListLogSubscriptionsCommandInput | ListSchemaExtensionsCommandInput | ListTagsForResourceCommandInput | RegisterCertificateCommandInput | RegisterEventTopicCommandInput | RejectSharedDirectoryCommandInput | RemoveIpRoutesCommandInput | RemoveRegionCommandInput | RemoveTagsFromResourceCommandInput | ResetUserPasswordCommandInput | RestoreFromSnapshotCommandInput | ShareDirectoryCommandInput | StartSchemaExtensionCommandInput | UnshareDirectoryCommandInput | UpdateConditionalForwarderCommandInput | UpdateNumberOfDomainControllersCommandInput | UpdateRadiusCommandInput | UpdateSettingsCommandInput | UpdateTrustCommandInput | VerifyTrustCommandInput;
|
|
75
|
+
export declare type ServiceOutputTypes = AcceptSharedDirectoryCommandOutput | AddIpRoutesCommandOutput | AddRegionCommandOutput | AddTagsToResourceCommandOutput | CancelSchemaExtensionCommandOutput | ConnectDirectoryCommandOutput | CreateAliasCommandOutput | CreateComputerCommandOutput | CreateConditionalForwarderCommandOutput | CreateDirectoryCommandOutput | CreateLogSubscriptionCommandOutput | CreateMicrosoftADCommandOutput | CreateSnapshotCommandOutput | CreateTrustCommandOutput | DeleteConditionalForwarderCommandOutput | DeleteDirectoryCommandOutput | DeleteLogSubscriptionCommandOutput | DeleteSnapshotCommandOutput | DeleteTrustCommandOutput | DeregisterCertificateCommandOutput | DeregisterEventTopicCommandOutput | DescribeCertificateCommandOutput | DescribeClientAuthenticationSettingsCommandOutput | DescribeConditionalForwardersCommandOutput | DescribeDirectoriesCommandOutput | DescribeDomainControllersCommandOutput | DescribeEventTopicsCommandOutput | DescribeLDAPSSettingsCommandOutput | DescribeRegionsCommandOutput | DescribeSettingsCommandOutput | DescribeSharedDirectoriesCommandOutput | DescribeSnapshotsCommandOutput | DescribeTrustsCommandOutput | DisableClientAuthenticationCommandOutput | DisableLDAPSCommandOutput | DisableRadiusCommandOutput | DisableSsoCommandOutput | EnableClientAuthenticationCommandOutput | EnableLDAPSCommandOutput | EnableRadiusCommandOutput | EnableSsoCommandOutput | GetDirectoryLimitsCommandOutput | GetSnapshotLimitsCommandOutput | ListCertificatesCommandOutput | ListIpRoutesCommandOutput | ListLogSubscriptionsCommandOutput | ListSchemaExtensionsCommandOutput | ListTagsForResourceCommandOutput | RegisterCertificateCommandOutput | RegisterEventTopicCommandOutput | RejectSharedDirectoryCommandOutput | RemoveIpRoutesCommandOutput | RemoveRegionCommandOutput | RemoveTagsFromResourceCommandOutput | ResetUserPasswordCommandOutput | RestoreFromSnapshotCommandOutput | ShareDirectoryCommandOutput | StartSchemaExtensionCommandOutput | UnshareDirectoryCommandOutput | UpdateConditionalForwarderCommandOutput | UpdateNumberOfDomainControllersCommandOutput | UpdateRadiusCommandOutput | UpdateSettingsCommandOutput | UpdateTrustCommandOutput | VerifyTrustCommandOutput;
|
|
74
76
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
75
77
|
|
|
76
78
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient";
|
|
4
|
+
import { DescribeSettingsRequest, DescribeSettingsResult } from "../models/models_0";
|
|
5
|
+
export interface DescribeSettingsCommandInput extends DescribeSettingsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeSettingsCommandOutput extends DescribeSettingsResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeSettingsCommand extends $Command<DescribeSettingsCommandInput, DescribeSettingsCommandOutput, DirectoryServiceClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeSettingsCommandInput;
|
|
12
|
+
constructor(input: DescribeSettingsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DirectoryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSettingsCommandInput, DescribeSettingsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DirectoryServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DirectoryServiceClient";
|
|
4
|
+
import { UpdateSettingsRequest, UpdateSettingsResult } from "../models/models_0";
|
|
5
|
+
export interface UpdateSettingsCommandInput extends UpdateSettingsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateSettingsCommandOutput extends UpdateSettingsResult, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateSettingsCommand extends $Command<UpdateSettingsCommandInput, UpdateSettingsCommandOutput, DirectoryServiceClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateSettingsCommandInput;
|
|
12
|
+
constructor(input: UpdateSettingsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DirectoryServiceClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSettingsCommandInput, UpdateSettingsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -27,6 +27,7 @@ export * from "./DescribeDomainControllersCommand";
|
|
|
27
27
|
export * from "./DescribeEventTopicsCommand";
|
|
28
28
|
export * from "./DescribeLDAPSSettingsCommand";
|
|
29
29
|
export * from "./DescribeRegionsCommand";
|
|
30
|
+
export * from "./DescribeSettingsCommand";
|
|
30
31
|
export * from "./DescribeSharedDirectoriesCommand";
|
|
31
32
|
export * from "./DescribeSnapshotsCommand";
|
|
32
33
|
export * from "./DescribeTrustsCommand";
|
|
@@ -59,5 +60,6 @@ export * from "./UnshareDirectoryCommand";
|
|
|
59
60
|
export * from "./UpdateConditionalForwarderCommand";
|
|
60
61
|
export * from "./UpdateNumberOfDomainControllersCommand";
|
|
61
62
|
export * from "./UpdateRadiusCommand";
|
|
63
|
+
export * from "./UpdateSettingsCommand";
|
|
62
64
|
export * from "./UpdateTrustCommand";
|
|
63
65
|
export * from "./VerifyTrustCommand";
|
|
@@ -443,7 +443,8 @@ export declare enum ClientAuthenticationStatus {
|
|
|
443
443
|
ENABLED = "Enabled"
|
|
444
444
|
}
|
|
445
445
|
export declare enum ClientAuthenticationType {
|
|
446
|
-
SMART_CARD = "SmartCard"
|
|
446
|
+
SMART_CARD = "SmartCard",
|
|
447
|
+
SMART_CARD_OR_PASSWORD = "SmartCardOrPassword"
|
|
447
448
|
}
|
|
448
449
|
|
|
449
450
|
export interface ClientAuthenticationSettingInfo {
|
|
@@ -1373,6 +1374,64 @@ export declare namespace DescribeRegionsResult {
|
|
|
1373
1374
|
|
|
1374
1375
|
const filterSensitiveLog: (obj: DescribeRegionsResult) => any;
|
|
1375
1376
|
}
|
|
1377
|
+
export declare enum DirectoryConfigurationStatus {
|
|
1378
|
+
DEFAULT = "Default",
|
|
1379
|
+
FAILED = "Failed",
|
|
1380
|
+
REQUESTED = "Requested",
|
|
1381
|
+
UPDATED = "Updated",
|
|
1382
|
+
UPDATING = "Updating"
|
|
1383
|
+
}
|
|
1384
|
+
export interface DescribeSettingsRequest {
|
|
1385
|
+
|
|
1386
|
+
DirectoryId: string | undefined;
|
|
1387
|
+
|
|
1388
|
+
Status?: DirectoryConfigurationStatus | string;
|
|
1389
|
+
|
|
1390
|
+
NextToken?: string;
|
|
1391
|
+
}
|
|
1392
|
+
export declare namespace DescribeSettingsRequest {
|
|
1393
|
+
|
|
1394
|
+
const filterSensitiveLog: (obj: DescribeSettingsRequest) => any;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
export interface SettingEntry {
|
|
1398
|
+
|
|
1399
|
+
Type?: string;
|
|
1400
|
+
|
|
1401
|
+
Name?: string;
|
|
1402
|
+
|
|
1403
|
+
AllowedValues?: string;
|
|
1404
|
+
|
|
1405
|
+
AppliedValue?: string;
|
|
1406
|
+
|
|
1407
|
+
RequestedValue?: string;
|
|
1408
|
+
|
|
1409
|
+
RequestStatus?: DirectoryConfigurationStatus | string;
|
|
1410
|
+
|
|
1411
|
+
RequestDetailedStatus?: Record<string, DirectoryConfigurationStatus | string>;
|
|
1412
|
+
|
|
1413
|
+
RequestStatusMessage?: string;
|
|
1414
|
+
|
|
1415
|
+
LastUpdatedDateTime?: Date;
|
|
1416
|
+
|
|
1417
|
+
LastRequestedDateTime?: Date;
|
|
1418
|
+
}
|
|
1419
|
+
export declare namespace SettingEntry {
|
|
1420
|
+
|
|
1421
|
+
const filterSensitiveLog: (obj: SettingEntry) => any;
|
|
1422
|
+
}
|
|
1423
|
+
export interface DescribeSettingsResult {
|
|
1424
|
+
|
|
1425
|
+
DirectoryId?: string;
|
|
1426
|
+
|
|
1427
|
+
SettingEntries?: SettingEntry[];
|
|
1428
|
+
|
|
1429
|
+
NextToken?: string;
|
|
1430
|
+
}
|
|
1431
|
+
export declare namespace DescribeSettingsResult {
|
|
1432
|
+
|
|
1433
|
+
const filterSensitiveLog: (obj: DescribeSettingsResult) => any;
|
|
1434
|
+
}
|
|
1376
1435
|
export interface DescribeSharedDirectoriesRequest {
|
|
1377
1436
|
|
|
1378
1437
|
OwnerDirectoryId: string | undefined;
|
|
@@ -2309,6 +2368,57 @@ export declare namespace UpdateRadiusResult {
|
|
|
2309
2368
|
|
|
2310
2369
|
const filterSensitiveLog: (obj: UpdateRadiusResult) => any;
|
|
2311
2370
|
}
|
|
2371
|
+
|
|
2372
|
+
export declare class IncompatibleSettingsException extends __BaseException {
|
|
2373
|
+
readonly name: "IncompatibleSettingsException";
|
|
2374
|
+
readonly $fault: "client";
|
|
2375
|
+
|
|
2376
|
+
Message?: string;
|
|
2377
|
+
|
|
2378
|
+
RequestId?: string;
|
|
2379
|
+
|
|
2380
|
+
constructor(opts: __ExceptionOptionType<IncompatibleSettingsException, __BaseException>);
|
|
2381
|
+
}
|
|
2382
|
+
|
|
2383
|
+
export declare class UnsupportedSettingsException extends __BaseException {
|
|
2384
|
+
readonly name: "UnsupportedSettingsException";
|
|
2385
|
+
readonly $fault: "client";
|
|
2386
|
+
|
|
2387
|
+
Message?: string;
|
|
2388
|
+
|
|
2389
|
+
RequestId?: string;
|
|
2390
|
+
|
|
2391
|
+
constructor(opts: __ExceptionOptionType<UnsupportedSettingsException, __BaseException>);
|
|
2392
|
+
}
|
|
2393
|
+
|
|
2394
|
+
export interface Setting {
|
|
2395
|
+
|
|
2396
|
+
Name: string | undefined;
|
|
2397
|
+
|
|
2398
|
+
Value: string | undefined;
|
|
2399
|
+
}
|
|
2400
|
+
export declare namespace Setting {
|
|
2401
|
+
|
|
2402
|
+
const filterSensitiveLog: (obj: Setting) => any;
|
|
2403
|
+
}
|
|
2404
|
+
export interface UpdateSettingsRequest {
|
|
2405
|
+
|
|
2406
|
+
DirectoryId: string | undefined;
|
|
2407
|
+
|
|
2408
|
+
Settings: Setting[] | undefined;
|
|
2409
|
+
}
|
|
2410
|
+
export declare namespace UpdateSettingsRequest {
|
|
2411
|
+
|
|
2412
|
+
const filterSensitiveLog: (obj: UpdateSettingsRequest) => any;
|
|
2413
|
+
}
|
|
2414
|
+
export interface UpdateSettingsResult {
|
|
2415
|
+
|
|
2416
|
+
DirectoryId?: string;
|
|
2417
|
+
}
|
|
2418
|
+
export declare namespace UpdateSettingsResult {
|
|
2419
|
+
|
|
2420
|
+
const filterSensitiveLog: (obj: UpdateSettingsResult) => any;
|
|
2421
|
+
}
|
|
2312
2422
|
export interface UpdateTrustRequest {
|
|
2313
2423
|
|
|
2314
2424
|
TrustId: string | undefined;
|
|
@@ -29,6 +29,7 @@ import { DescribeDomainControllersCommandInput, DescribeDomainControllersCommand
|
|
|
29
29
|
import { DescribeEventTopicsCommandInput, DescribeEventTopicsCommandOutput } from "../commands/DescribeEventTopicsCommand";
|
|
30
30
|
import { DescribeLDAPSSettingsCommandInput, DescribeLDAPSSettingsCommandOutput } from "../commands/DescribeLDAPSSettingsCommand";
|
|
31
31
|
import { DescribeRegionsCommandInput, DescribeRegionsCommandOutput } from "../commands/DescribeRegionsCommand";
|
|
32
|
+
import { DescribeSettingsCommandInput, DescribeSettingsCommandOutput } from "../commands/DescribeSettingsCommand";
|
|
32
33
|
import { DescribeSharedDirectoriesCommandInput, DescribeSharedDirectoriesCommandOutput } from "../commands/DescribeSharedDirectoriesCommand";
|
|
33
34
|
import { DescribeSnapshotsCommandInput, DescribeSnapshotsCommandOutput } from "../commands/DescribeSnapshotsCommand";
|
|
34
35
|
import { DescribeTrustsCommandInput, DescribeTrustsCommandOutput } from "../commands/DescribeTrustsCommand";
|
|
@@ -61,6 +62,7 @@ import { UnshareDirectoryCommandInput, UnshareDirectoryCommandOutput } from "../
|
|
|
61
62
|
import { UpdateConditionalForwarderCommandInput, UpdateConditionalForwarderCommandOutput } from "../commands/UpdateConditionalForwarderCommand";
|
|
62
63
|
import { UpdateNumberOfDomainControllersCommandInput, UpdateNumberOfDomainControllersCommandOutput } from "../commands/UpdateNumberOfDomainControllersCommand";
|
|
63
64
|
import { UpdateRadiusCommandInput, UpdateRadiusCommandOutput } from "../commands/UpdateRadiusCommand";
|
|
65
|
+
import { UpdateSettingsCommandInput, UpdateSettingsCommandOutput } from "../commands/UpdateSettingsCommand";
|
|
64
66
|
import { UpdateTrustCommandInput, UpdateTrustCommandOutput } from "../commands/UpdateTrustCommand";
|
|
65
67
|
import { VerifyTrustCommandInput, VerifyTrustCommandOutput } from "../commands/VerifyTrustCommand";
|
|
66
68
|
export declare const serializeAws_json1_1AcceptSharedDirectoryCommand: (input: AcceptSharedDirectoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -92,6 +94,7 @@ export declare const serializeAws_json1_1DescribeDomainControllersCommand: (inpu
|
|
|
92
94
|
export declare const serializeAws_json1_1DescribeEventTopicsCommand: (input: DescribeEventTopicsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
95
|
export declare const serializeAws_json1_1DescribeLDAPSSettingsCommand: (input: DescribeLDAPSSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
96
|
export declare const serializeAws_json1_1DescribeRegionsCommand: (input: DescribeRegionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
|
+
export declare const serializeAws_json1_1DescribeSettingsCommand: (input: DescribeSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
95
98
|
export declare const serializeAws_json1_1DescribeSharedDirectoriesCommand: (input: DescribeSharedDirectoriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
96
99
|
export declare const serializeAws_json1_1DescribeSnapshotsCommand: (input: DescribeSnapshotsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
97
100
|
export declare const serializeAws_json1_1DescribeTrustsCommand: (input: DescribeTrustsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -124,6 +127,7 @@ export declare const serializeAws_json1_1UnshareDirectoryCommand: (input: Unshar
|
|
|
124
127
|
export declare const serializeAws_json1_1UpdateConditionalForwarderCommand: (input: UpdateConditionalForwarderCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
125
128
|
export declare const serializeAws_json1_1UpdateNumberOfDomainControllersCommand: (input: UpdateNumberOfDomainControllersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
126
129
|
export declare const serializeAws_json1_1UpdateRadiusCommand: (input: UpdateRadiusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_json1_1UpdateSettingsCommand: (input: UpdateSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
127
131
|
export declare const serializeAws_json1_1UpdateTrustCommand: (input: UpdateTrustCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
128
132
|
export declare const serializeAws_json1_1VerifyTrustCommand: (input: VerifyTrustCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
129
133
|
export declare const deserializeAws_json1_1AcceptSharedDirectoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AcceptSharedDirectoryCommandOutput>;
|
|
@@ -155,6 +159,7 @@ export declare const deserializeAws_json1_1DescribeDomainControllersCommand: (ou
|
|
|
155
159
|
export declare const deserializeAws_json1_1DescribeEventTopicsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEventTopicsCommandOutput>;
|
|
156
160
|
export declare const deserializeAws_json1_1DescribeLDAPSSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLDAPSSettingsCommandOutput>;
|
|
157
161
|
export declare const deserializeAws_json1_1DescribeRegionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeRegionsCommandOutput>;
|
|
162
|
+
export declare const deserializeAws_json1_1DescribeSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSettingsCommandOutput>;
|
|
158
163
|
export declare const deserializeAws_json1_1DescribeSharedDirectoriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSharedDirectoriesCommandOutput>;
|
|
159
164
|
export declare const deserializeAws_json1_1DescribeSnapshotsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSnapshotsCommandOutput>;
|
|
160
165
|
export declare const deserializeAws_json1_1DescribeTrustsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeTrustsCommandOutput>;
|
|
@@ -187,5 +192,6 @@ export declare const deserializeAws_json1_1UnshareDirectoryCommand: (output: __H
|
|
|
187
192
|
export declare const deserializeAws_json1_1UpdateConditionalForwarderCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConditionalForwarderCommandOutput>;
|
|
188
193
|
export declare const deserializeAws_json1_1UpdateNumberOfDomainControllersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateNumberOfDomainControllersCommandOutput>;
|
|
189
194
|
export declare const deserializeAws_json1_1UpdateRadiusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateRadiusCommandOutput>;
|
|
195
|
+
export declare const deserializeAws_json1_1UpdateSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSettingsCommandOutput>;
|
|
190
196
|
export declare const deserializeAws_json1_1UpdateTrustCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateTrustCommandOutput>;
|
|
191
197
|
export declare const deserializeAws_json1_1VerifyTrustCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<VerifyTrustCommandOutput>;
|
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.114.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",
|