@aws-sdk/client-directory-service 3.873.0 → 3.877.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/README.md +24 -0
- package/dist-cjs/index.js +218 -0
- package/dist-es/DirectoryService.js +6 -0
- package/dist-es/commands/DescribeCAEnrollmentPolicyCommand.js +22 -0
- package/dist-es/commands/DisableCAEnrollmentPolicyCommand.js +22 -0
- package/dist-es/commands/EnableCAEnrollmentPolicyCommand.js +22 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +40 -0
- package/dist-es/protocols/Aws_json1_1.js +91 -1
- package/dist-types/DirectoryService.d.ts +21 -0
- package/dist-types/DirectoryServiceClient.d.ts +5 -2
- package/dist-types/commands/DescribeCAEnrollmentPolicyCommand.d.ts +90 -0
- package/dist-types/commands/DisableCAEnrollmentPolicyCommand.d.ts +100 -0
- package/dist-types/commands/EnableCAEnrollmentPolicyCommand.d.ts +105 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +180 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
- package/dist-types/ts3.4/DirectoryService.d.ts +51 -0
- package/dist-types/ts3.4/DirectoryServiceClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/DescribeCAEnrollmentPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisableCAEnrollmentPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/EnableCAEnrollmentPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +53 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +36 -0
- package/package.json +6 -6
|
@@ -928,6 +928,22 @@ export declare class AuthenticationFailedException extends __BaseException {
|
|
|
928
928
|
*/
|
|
929
929
|
constructor(opts: __ExceptionOptionType<AuthenticationFailedException, __BaseException>);
|
|
930
930
|
}
|
|
931
|
+
/**
|
|
932
|
+
* @public
|
|
933
|
+
* @enum
|
|
934
|
+
*/
|
|
935
|
+
export declare const CaEnrollmentPolicyStatus: {
|
|
936
|
+
readonly DISABLED: "Disabled";
|
|
937
|
+
readonly DISABLING: "Disabling";
|
|
938
|
+
readonly FAILED: "Failed";
|
|
939
|
+
readonly IMPAIRED: "Impaired";
|
|
940
|
+
readonly IN_PROGRESS: "InProgress";
|
|
941
|
+
readonly SUCCESS: "Success";
|
|
942
|
+
};
|
|
943
|
+
/**
|
|
944
|
+
* @public
|
|
945
|
+
*/
|
|
946
|
+
export type CaEnrollmentPolicyStatus = (typeof CaEnrollmentPolicyStatus)[keyof typeof CaEnrollmentPolicyStatus];
|
|
931
947
|
/**
|
|
932
948
|
* @public
|
|
933
949
|
*/
|
|
@@ -2106,6 +2122,81 @@ export interface DescribeADAssessmentResult {
|
|
|
2106
2122
|
*/
|
|
2107
2123
|
AssessmentReports?: AssessmentReport[] | undefined;
|
|
2108
2124
|
}
|
|
2125
|
+
/**
|
|
2126
|
+
* <p>Contains the inputs for the <a>DescribeCAEnrollmentPolicy</a> operation.</p>
|
|
2127
|
+
* @public
|
|
2128
|
+
*/
|
|
2129
|
+
export interface DescribeCAEnrollmentPolicyRequest {
|
|
2130
|
+
/**
|
|
2131
|
+
* <p>The identifier of the directory for which to retrieve the CA enrollment policy
|
|
2132
|
+
* information.</p>
|
|
2133
|
+
* @public
|
|
2134
|
+
*/
|
|
2135
|
+
DirectoryId: string | undefined;
|
|
2136
|
+
}
|
|
2137
|
+
/**
|
|
2138
|
+
* <p>Contains the results of the <a>DescribeCAEnrollmentPolicy</a> operation.</p>
|
|
2139
|
+
* @public
|
|
2140
|
+
*/
|
|
2141
|
+
export interface DescribeCAEnrollmentPolicyResult {
|
|
2142
|
+
/**
|
|
2143
|
+
* <p>The identifier of the directory associated with this CA enrollment policy.</p>
|
|
2144
|
+
* @public
|
|
2145
|
+
*/
|
|
2146
|
+
DirectoryId?: string | undefined;
|
|
2147
|
+
/**
|
|
2148
|
+
* <p>The Amazon Resource Name (ARN) of the Amazon Web Services Private Certificate Authority (PCA) connector
|
|
2149
|
+
* that is configured for automatic certificate enrollment in this directory.</p>
|
|
2150
|
+
* @public
|
|
2151
|
+
*/
|
|
2152
|
+
PcaConnectorArn?: string | undefined;
|
|
2153
|
+
/**
|
|
2154
|
+
* <p>The current status of the CA enrollment policy. This indicates if automatic certificate
|
|
2155
|
+
* enrollment is currently active, inactive, or in a transitional state.</p>
|
|
2156
|
+
* <p>Valid values:</p>
|
|
2157
|
+
* <ul>
|
|
2158
|
+
* <li>
|
|
2159
|
+
* <p>
|
|
2160
|
+
* <code>IN_PROGRESS</code> - The policy is being activated T</p>
|
|
2161
|
+
* </li>
|
|
2162
|
+
* <li>
|
|
2163
|
+
* <p>
|
|
2164
|
+
* <code>SUCCESS</code> - The policy is active and automatic certificate enrollment is
|
|
2165
|
+
* operational</p>
|
|
2166
|
+
* </li>
|
|
2167
|
+
* <li>
|
|
2168
|
+
* <p>
|
|
2169
|
+
* <code>FAILED</code> - The policy activation or deactivation failed</p>
|
|
2170
|
+
* </li>
|
|
2171
|
+
* <li>
|
|
2172
|
+
* <p>
|
|
2173
|
+
* <code>DISABLING</code> - The policy is being deactivated</p>
|
|
2174
|
+
* </li>
|
|
2175
|
+
* <li>
|
|
2176
|
+
* <p>
|
|
2177
|
+
* <code>DISABLED</code> - The policy is inactive and automatic certificate enrollment is
|
|
2178
|
+
* not available</p>
|
|
2179
|
+
* </li>
|
|
2180
|
+
* <li>
|
|
2181
|
+
* <p>
|
|
2182
|
+
* <code>IMPAIRED</code> - Network connectivity is impaired.</p>
|
|
2183
|
+
* </li>
|
|
2184
|
+
* </ul>
|
|
2185
|
+
* @public
|
|
2186
|
+
*/
|
|
2187
|
+
CaEnrollmentPolicyStatus?: CaEnrollmentPolicyStatus | undefined;
|
|
2188
|
+
/**
|
|
2189
|
+
* <p>The date and time when the CA enrollment policy was last modified or updated.</p>
|
|
2190
|
+
* @public
|
|
2191
|
+
*/
|
|
2192
|
+
LastUpdatedDateTime?: Date | undefined;
|
|
2193
|
+
/**
|
|
2194
|
+
* <p>Additional information explaining the current status of the CA enrollment policy,
|
|
2195
|
+
* particularly useful when the policy is in an error or transitional state.</p>
|
|
2196
|
+
* @public
|
|
2197
|
+
*/
|
|
2198
|
+
CaEnrollmentPolicyStatusReason?: string | undefined;
|
|
2199
|
+
}
|
|
2109
2200
|
/**
|
|
2110
2201
|
* @public
|
|
2111
2202
|
*/
|
|
@@ -3903,6 +3994,45 @@ export declare class DirectoryNotSharedException extends __BaseException {
|
|
|
3903
3994
|
*/
|
|
3904
3995
|
constructor(opts: __ExceptionOptionType<DirectoryNotSharedException, __BaseException>);
|
|
3905
3996
|
}
|
|
3997
|
+
/**
|
|
3998
|
+
* <p>A disable operation for CA enrollment policy is already in progress for this directory.</p>
|
|
3999
|
+
* @public
|
|
4000
|
+
*/
|
|
4001
|
+
export declare class DisableAlreadyInProgressException extends __BaseException {
|
|
4002
|
+
readonly name: "DisableAlreadyInProgressException";
|
|
4003
|
+
readonly $fault: "client";
|
|
4004
|
+
/**
|
|
4005
|
+
* <p>The descriptive message for the exception.</p>
|
|
4006
|
+
* @public
|
|
4007
|
+
*/
|
|
4008
|
+
Message?: string | undefined;
|
|
4009
|
+
/**
|
|
4010
|
+
* <p>The Amazon Web Services request identifier.</p>
|
|
4011
|
+
* @public
|
|
4012
|
+
*/
|
|
4013
|
+
RequestId?: string | undefined;
|
|
4014
|
+
/**
|
|
4015
|
+
* @internal
|
|
4016
|
+
*/
|
|
4017
|
+
constructor(opts: __ExceptionOptionType<DisableAlreadyInProgressException, __BaseException>);
|
|
4018
|
+
}
|
|
4019
|
+
/**
|
|
4020
|
+
* <p>Contains the inputs for the <a>DisableCAEnrollmentPolicy</a> operation.</p>
|
|
4021
|
+
* @public
|
|
4022
|
+
*/
|
|
4023
|
+
export interface DisableCAEnrollmentPolicyRequest {
|
|
4024
|
+
/**
|
|
4025
|
+
* <p>The identifier of the directory for which to disable the CA enrollment policy.</p>
|
|
4026
|
+
* @public
|
|
4027
|
+
*/
|
|
4028
|
+
DirectoryId: string | undefined;
|
|
4029
|
+
}
|
|
4030
|
+
/**
|
|
4031
|
+
* <p>Contains the results of the <a>DisableCAEnrollmentPolicy</a> operation.</p>
|
|
4032
|
+
* @public
|
|
4033
|
+
*/
|
|
4034
|
+
export interface DisableCAEnrollmentPolicyResult {
|
|
4035
|
+
}
|
|
3906
4036
|
/**
|
|
3907
4037
|
* @public
|
|
3908
4038
|
*/
|
|
@@ -4058,6 +4188,56 @@ export interface DisableSsoRequest {
|
|
|
4058
4188
|
*/
|
|
4059
4189
|
export interface DisableSsoResult {
|
|
4060
4190
|
}
|
|
4191
|
+
/**
|
|
4192
|
+
* <p>An enable operation for CA enrollment policy is already in progress for this directory.</p>
|
|
4193
|
+
* @public
|
|
4194
|
+
*/
|
|
4195
|
+
export declare class EnableAlreadyInProgressException extends __BaseException {
|
|
4196
|
+
readonly name: "EnableAlreadyInProgressException";
|
|
4197
|
+
readonly $fault: "client";
|
|
4198
|
+
/**
|
|
4199
|
+
* <p>The descriptive message for the exception.</p>
|
|
4200
|
+
* @public
|
|
4201
|
+
*/
|
|
4202
|
+
Message?: string | undefined;
|
|
4203
|
+
/**
|
|
4204
|
+
* <p>The Amazon Web Services request identifier.</p>
|
|
4205
|
+
* @public
|
|
4206
|
+
*/
|
|
4207
|
+
RequestId?: string | undefined;
|
|
4208
|
+
/**
|
|
4209
|
+
* @internal
|
|
4210
|
+
*/
|
|
4211
|
+
constructor(opts: __ExceptionOptionType<EnableAlreadyInProgressException, __BaseException>);
|
|
4212
|
+
}
|
|
4213
|
+
/**
|
|
4214
|
+
* <p>Contains the inputs for the <a>EnableCAEnrollmentPolicy</a> operation.</p>
|
|
4215
|
+
* @public
|
|
4216
|
+
*/
|
|
4217
|
+
export interface EnableCAEnrollmentPolicyRequest {
|
|
4218
|
+
/**
|
|
4219
|
+
* <p>The identifier of the directory for which to enable the CA enrollment policy.</p>
|
|
4220
|
+
* @public
|
|
4221
|
+
*/
|
|
4222
|
+
DirectoryId: string | undefined;
|
|
4223
|
+
/**
|
|
4224
|
+
* <p>The Amazon Resource Name (ARN) of the Private Certificate Authority (PCA) connector to use
|
|
4225
|
+
* for automatic certificate enrollment. This connector must be properly configured and
|
|
4226
|
+
* accessible from the directory.</p>
|
|
4227
|
+
* <p>The ARN format is:
|
|
4228
|
+
* <code>arn:aws:pca-connector-ad:<i>region</i>:<i>account-id</i>:connector/<i>connector-id</i>
|
|
4229
|
+
* </code>
|
|
4230
|
+
* </p>
|
|
4231
|
+
* @public
|
|
4232
|
+
*/
|
|
4233
|
+
PcaConnectorArn: string | undefined;
|
|
4234
|
+
}
|
|
4235
|
+
/**
|
|
4236
|
+
* <p>Contains the results of the <a>EnableCAEnrollmentPolicy</a> operation.</p>
|
|
4237
|
+
* @public
|
|
4238
|
+
*/
|
|
4239
|
+
export interface EnableCAEnrollmentPolicyResult {
|
|
4240
|
+
}
|
|
4061
4241
|
/**
|
|
4062
4242
|
* @public
|
|
4063
4243
|
*/
|
|
@@ -24,6 +24,7 @@ import { DeleteTrustCommandInput, DeleteTrustCommandOutput } from "../commands/D
|
|
|
24
24
|
import { DeregisterCertificateCommandInput, DeregisterCertificateCommandOutput } from "../commands/DeregisterCertificateCommand";
|
|
25
25
|
import { DeregisterEventTopicCommandInput, DeregisterEventTopicCommandOutput } from "../commands/DeregisterEventTopicCommand";
|
|
26
26
|
import { DescribeADAssessmentCommandInput, DescribeADAssessmentCommandOutput } from "../commands/DescribeADAssessmentCommand";
|
|
27
|
+
import { DescribeCAEnrollmentPolicyCommandInput, DescribeCAEnrollmentPolicyCommandOutput } from "../commands/DescribeCAEnrollmentPolicyCommand";
|
|
27
28
|
import { DescribeCertificateCommandInput, DescribeCertificateCommandOutput } from "../commands/DescribeCertificateCommand";
|
|
28
29
|
import { DescribeClientAuthenticationSettingsCommandInput, DescribeClientAuthenticationSettingsCommandOutput } from "../commands/DescribeClientAuthenticationSettingsCommand";
|
|
29
30
|
import { DescribeConditionalForwardersCommandInput, DescribeConditionalForwardersCommandOutput } from "../commands/DescribeConditionalForwardersCommand";
|
|
@@ -39,11 +40,13 @@ import { DescribeSharedDirectoriesCommandInput, DescribeSharedDirectoriesCommand
|
|
|
39
40
|
import { DescribeSnapshotsCommandInput, DescribeSnapshotsCommandOutput } from "../commands/DescribeSnapshotsCommand";
|
|
40
41
|
import { DescribeTrustsCommandInput, DescribeTrustsCommandOutput } from "../commands/DescribeTrustsCommand";
|
|
41
42
|
import { DescribeUpdateDirectoryCommandInput, DescribeUpdateDirectoryCommandOutput } from "../commands/DescribeUpdateDirectoryCommand";
|
|
43
|
+
import { DisableCAEnrollmentPolicyCommandInput, DisableCAEnrollmentPolicyCommandOutput } from "../commands/DisableCAEnrollmentPolicyCommand";
|
|
42
44
|
import { DisableClientAuthenticationCommandInput, DisableClientAuthenticationCommandOutput } from "../commands/DisableClientAuthenticationCommand";
|
|
43
45
|
import { DisableDirectoryDataAccessCommandInput, DisableDirectoryDataAccessCommandOutput } from "../commands/DisableDirectoryDataAccessCommand";
|
|
44
46
|
import { DisableLDAPSCommandInput, DisableLDAPSCommandOutput } from "../commands/DisableLDAPSCommand";
|
|
45
47
|
import { DisableRadiusCommandInput, DisableRadiusCommandOutput } from "../commands/DisableRadiusCommand";
|
|
46
48
|
import { DisableSsoCommandInput, DisableSsoCommandOutput } from "../commands/DisableSsoCommand";
|
|
49
|
+
import { EnableCAEnrollmentPolicyCommandInput, EnableCAEnrollmentPolicyCommandOutput } from "../commands/EnableCAEnrollmentPolicyCommand";
|
|
47
50
|
import { EnableClientAuthenticationCommandInput, EnableClientAuthenticationCommandOutput } from "../commands/EnableClientAuthenticationCommand";
|
|
48
51
|
import { EnableDirectoryDataAccessCommandInput, EnableDirectoryDataAccessCommandOutput } from "../commands/EnableDirectoryDataAccessCommand";
|
|
49
52
|
import { EnableLDAPSCommandInput, EnableLDAPSCommandOutput } from "../commands/EnableLDAPSCommand";
|
|
@@ -173,6 +176,10 @@ export declare const se_DeregisterEventTopicCommand: (input: DeregisterEventTopi
|
|
|
173
176
|
* serializeAws_json1_1DescribeADAssessmentCommand
|
|
174
177
|
*/
|
|
175
178
|
export declare const se_DescribeADAssessmentCommand: (input: DescribeADAssessmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
179
|
+
/**
|
|
180
|
+
* serializeAws_json1_1DescribeCAEnrollmentPolicyCommand
|
|
181
|
+
*/
|
|
182
|
+
export declare const se_DescribeCAEnrollmentPolicyCommand: (input: DescribeCAEnrollmentPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
176
183
|
/**
|
|
177
184
|
* serializeAws_json1_1DescribeCertificateCommand
|
|
178
185
|
*/
|
|
@@ -233,6 +240,10 @@ export declare const se_DescribeTrustsCommand: (input: DescribeTrustsCommandInpu
|
|
|
233
240
|
* serializeAws_json1_1DescribeUpdateDirectoryCommand
|
|
234
241
|
*/
|
|
235
242
|
export declare const se_DescribeUpdateDirectoryCommand: (input: DescribeUpdateDirectoryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
243
|
+
/**
|
|
244
|
+
* serializeAws_json1_1DisableCAEnrollmentPolicyCommand
|
|
245
|
+
*/
|
|
246
|
+
export declare const se_DisableCAEnrollmentPolicyCommand: (input: DisableCAEnrollmentPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
236
247
|
/**
|
|
237
248
|
* serializeAws_json1_1DisableClientAuthenticationCommand
|
|
238
249
|
*/
|
|
@@ -253,6 +264,10 @@ export declare const se_DisableRadiusCommand: (input: DisableRadiusCommandInput,
|
|
|
253
264
|
* serializeAws_json1_1DisableSsoCommand
|
|
254
265
|
*/
|
|
255
266
|
export declare const se_DisableSsoCommand: (input: DisableSsoCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
267
|
+
/**
|
|
268
|
+
* serializeAws_json1_1EnableCAEnrollmentPolicyCommand
|
|
269
|
+
*/
|
|
270
|
+
export declare const se_EnableCAEnrollmentPolicyCommand: (input: EnableCAEnrollmentPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
256
271
|
/**
|
|
257
272
|
* serializeAws_json1_1EnableClientAuthenticationCommand
|
|
258
273
|
*/
|
|
@@ -481,6 +496,10 @@ export declare const de_DeregisterEventTopicCommand: (output: __HttpResponse, co
|
|
|
481
496
|
* deserializeAws_json1_1DescribeADAssessmentCommand
|
|
482
497
|
*/
|
|
483
498
|
export declare const de_DescribeADAssessmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeADAssessmentCommandOutput>;
|
|
499
|
+
/**
|
|
500
|
+
* deserializeAws_json1_1DescribeCAEnrollmentPolicyCommand
|
|
501
|
+
*/
|
|
502
|
+
export declare const de_DescribeCAEnrollmentPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCAEnrollmentPolicyCommandOutput>;
|
|
484
503
|
/**
|
|
485
504
|
* deserializeAws_json1_1DescribeCertificateCommand
|
|
486
505
|
*/
|
|
@@ -541,6 +560,10 @@ export declare const de_DescribeTrustsCommand: (output: __HttpResponse, context:
|
|
|
541
560
|
* deserializeAws_json1_1DescribeUpdateDirectoryCommand
|
|
542
561
|
*/
|
|
543
562
|
export declare const de_DescribeUpdateDirectoryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeUpdateDirectoryCommandOutput>;
|
|
563
|
+
/**
|
|
564
|
+
* deserializeAws_json1_1DisableCAEnrollmentPolicyCommand
|
|
565
|
+
*/
|
|
566
|
+
export declare const de_DisableCAEnrollmentPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableCAEnrollmentPolicyCommandOutput>;
|
|
544
567
|
/**
|
|
545
568
|
* deserializeAws_json1_1DisableClientAuthenticationCommand
|
|
546
569
|
*/
|
|
@@ -561,6 +584,10 @@ export declare const de_DisableRadiusCommand: (output: __HttpResponse, context:
|
|
|
561
584
|
* deserializeAws_json1_1DisableSsoCommand
|
|
562
585
|
*/
|
|
563
586
|
export declare const de_DisableSsoCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableSsoCommandOutput>;
|
|
587
|
+
/**
|
|
588
|
+
* deserializeAws_json1_1EnableCAEnrollmentPolicyCommand
|
|
589
|
+
*/
|
|
590
|
+
export declare const de_EnableCAEnrollmentPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableCAEnrollmentPolicyCommandOutput>;
|
|
564
591
|
/**
|
|
565
592
|
* deserializeAws_json1_1EnableClientAuthenticationCommand
|
|
566
593
|
*/
|
|
@@ -95,6 +95,10 @@ import {
|
|
|
95
95
|
DescribeADAssessmentCommandInput,
|
|
96
96
|
DescribeADAssessmentCommandOutput,
|
|
97
97
|
} from "./commands/DescribeADAssessmentCommand";
|
|
98
|
+
import {
|
|
99
|
+
DescribeCAEnrollmentPolicyCommandInput,
|
|
100
|
+
DescribeCAEnrollmentPolicyCommandOutput,
|
|
101
|
+
} from "./commands/DescribeCAEnrollmentPolicyCommand";
|
|
98
102
|
import {
|
|
99
103
|
DescribeCertificateCommandInput,
|
|
100
104
|
DescribeCertificateCommandOutput,
|
|
@@ -155,6 +159,10 @@ import {
|
|
|
155
159
|
DescribeUpdateDirectoryCommandInput,
|
|
156
160
|
DescribeUpdateDirectoryCommandOutput,
|
|
157
161
|
} from "./commands/DescribeUpdateDirectoryCommand";
|
|
162
|
+
import {
|
|
163
|
+
DisableCAEnrollmentPolicyCommandInput,
|
|
164
|
+
DisableCAEnrollmentPolicyCommandOutput,
|
|
165
|
+
} from "./commands/DisableCAEnrollmentPolicyCommand";
|
|
158
166
|
import {
|
|
159
167
|
DisableClientAuthenticationCommandInput,
|
|
160
168
|
DisableClientAuthenticationCommandOutput,
|
|
@@ -175,6 +183,10 @@ import {
|
|
|
175
183
|
DisableSsoCommandInput,
|
|
176
184
|
DisableSsoCommandOutput,
|
|
177
185
|
} from "./commands/DisableSsoCommand";
|
|
186
|
+
import {
|
|
187
|
+
EnableCAEnrollmentPolicyCommandInput,
|
|
188
|
+
EnableCAEnrollmentPolicyCommandOutput,
|
|
189
|
+
} from "./commands/EnableCAEnrollmentPolicyCommand";
|
|
178
190
|
import {
|
|
179
191
|
EnableClientAuthenticationCommandInput,
|
|
180
192
|
EnableClientAuthenticationCommandOutput,
|
|
@@ -621,6 +633,19 @@ export interface DirectoryService {
|
|
|
621
633
|
options: __HttpHandlerOptions,
|
|
622
634
|
cb: (err: any, data?: DescribeADAssessmentCommandOutput) => void
|
|
623
635
|
): void;
|
|
636
|
+
describeCAEnrollmentPolicy(
|
|
637
|
+
args: DescribeCAEnrollmentPolicyCommandInput,
|
|
638
|
+
options?: __HttpHandlerOptions
|
|
639
|
+
): Promise<DescribeCAEnrollmentPolicyCommandOutput>;
|
|
640
|
+
describeCAEnrollmentPolicy(
|
|
641
|
+
args: DescribeCAEnrollmentPolicyCommandInput,
|
|
642
|
+
cb: (err: any, data?: DescribeCAEnrollmentPolicyCommandOutput) => void
|
|
643
|
+
): void;
|
|
644
|
+
describeCAEnrollmentPolicy(
|
|
645
|
+
args: DescribeCAEnrollmentPolicyCommandInput,
|
|
646
|
+
options: __HttpHandlerOptions,
|
|
647
|
+
cb: (err: any, data?: DescribeCAEnrollmentPolicyCommandOutput) => void
|
|
648
|
+
): void;
|
|
624
649
|
describeCertificate(
|
|
625
650
|
args: DescribeCertificateCommandInput,
|
|
626
651
|
options?: __HttpHandlerOptions
|
|
@@ -826,6 +851,19 @@ export interface DirectoryService {
|
|
|
826
851
|
options: __HttpHandlerOptions,
|
|
827
852
|
cb: (err: any, data?: DescribeUpdateDirectoryCommandOutput) => void
|
|
828
853
|
): void;
|
|
854
|
+
disableCAEnrollmentPolicy(
|
|
855
|
+
args: DisableCAEnrollmentPolicyCommandInput,
|
|
856
|
+
options?: __HttpHandlerOptions
|
|
857
|
+
): Promise<DisableCAEnrollmentPolicyCommandOutput>;
|
|
858
|
+
disableCAEnrollmentPolicy(
|
|
859
|
+
args: DisableCAEnrollmentPolicyCommandInput,
|
|
860
|
+
cb: (err: any, data?: DisableCAEnrollmentPolicyCommandOutput) => void
|
|
861
|
+
): void;
|
|
862
|
+
disableCAEnrollmentPolicy(
|
|
863
|
+
args: DisableCAEnrollmentPolicyCommandInput,
|
|
864
|
+
options: __HttpHandlerOptions,
|
|
865
|
+
cb: (err: any, data?: DisableCAEnrollmentPolicyCommandOutput) => void
|
|
866
|
+
): void;
|
|
829
867
|
disableClientAuthentication(
|
|
830
868
|
args: DisableClientAuthenticationCommandInput,
|
|
831
869
|
options?: __HttpHandlerOptions
|
|
@@ -891,6 +929,19 @@ export interface DirectoryService {
|
|
|
891
929
|
options: __HttpHandlerOptions,
|
|
892
930
|
cb: (err: any, data?: DisableSsoCommandOutput) => void
|
|
893
931
|
): void;
|
|
932
|
+
enableCAEnrollmentPolicy(
|
|
933
|
+
args: EnableCAEnrollmentPolicyCommandInput,
|
|
934
|
+
options?: __HttpHandlerOptions
|
|
935
|
+
): Promise<EnableCAEnrollmentPolicyCommandOutput>;
|
|
936
|
+
enableCAEnrollmentPolicy(
|
|
937
|
+
args: EnableCAEnrollmentPolicyCommandInput,
|
|
938
|
+
cb: (err: any, data?: EnableCAEnrollmentPolicyCommandOutput) => void
|
|
939
|
+
): void;
|
|
940
|
+
enableCAEnrollmentPolicy(
|
|
941
|
+
args: EnableCAEnrollmentPolicyCommandInput,
|
|
942
|
+
options: __HttpHandlerOptions,
|
|
943
|
+
cb: (err: any, data?: EnableCAEnrollmentPolicyCommandOutput) => void
|
|
944
|
+
): void;
|
|
894
945
|
enableClientAuthentication(
|
|
895
946
|
args: EnableClientAuthenticationCommandInput,
|
|
896
947
|
options?: __HttpHandlerOptions
|
|
@@ -141,6 +141,10 @@ import {
|
|
|
141
141
|
DescribeADAssessmentCommandInput,
|
|
142
142
|
DescribeADAssessmentCommandOutput,
|
|
143
143
|
} from "./commands/DescribeADAssessmentCommand";
|
|
144
|
+
import {
|
|
145
|
+
DescribeCAEnrollmentPolicyCommandInput,
|
|
146
|
+
DescribeCAEnrollmentPolicyCommandOutput,
|
|
147
|
+
} from "./commands/DescribeCAEnrollmentPolicyCommand";
|
|
144
148
|
import {
|
|
145
149
|
DescribeCertificateCommandInput,
|
|
146
150
|
DescribeCertificateCommandOutput,
|
|
@@ -201,6 +205,10 @@ import {
|
|
|
201
205
|
DescribeUpdateDirectoryCommandInput,
|
|
202
206
|
DescribeUpdateDirectoryCommandOutput,
|
|
203
207
|
} from "./commands/DescribeUpdateDirectoryCommand";
|
|
208
|
+
import {
|
|
209
|
+
DisableCAEnrollmentPolicyCommandInput,
|
|
210
|
+
DisableCAEnrollmentPolicyCommandOutput,
|
|
211
|
+
} from "./commands/DisableCAEnrollmentPolicyCommand";
|
|
204
212
|
import {
|
|
205
213
|
DisableClientAuthenticationCommandInput,
|
|
206
214
|
DisableClientAuthenticationCommandOutput,
|
|
@@ -221,6 +229,10 @@ import {
|
|
|
221
229
|
DisableSsoCommandInput,
|
|
222
230
|
DisableSsoCommandOutput,
|
|
223
231
|
} from "./commands/DisableSsoCommand";
|
|
232
|
+
import {
|
|
233
|
+
EnableCAEnrollmentPolicyCommandInput,
|
|
234
|
+
EnableCAEnrollmentPolicyCommandOutput,
|
|
235
|
+
} from "./commands/EnableCAEnrollmentPolicyCommand";
|
|
224
236
|
import {
|
|
225
237
|
EnableClientAuthenticationCommandInput,
|
|
226
238
|
EnableClientAuthenticationCommandOutput,
|
|
@@ -385,6 +397,7 @@ export type ServiceInputTypes =
|
|
|
385
397
|
| DeregisterCertificateCommandInput
|
|
386
398
|
| DeregisterEventTopicCommandInput
|
|
387
399
|
| DescribeADAssessmentCommandInput
|
|
400
|
+
| DescribeCAEnrollmentPolicyCommandInput
|
|
388
401
|
| DescribeCertificateCommandInput
|
|
389
402
|
| DescribeClientAuthenticationSettingsCommandInput
|
|
390
403
|
| DescribeConditionalForwardersCommandInput
|
|
@@ -400,11 +413,13 @@ export type ServiceInputTypes =
|
|
|
400
413
|
| DescribeSnapshotsCommandInput
|
|
401
414
|
| DescribeTrustsCommandInput
|
|
402
415
|
| DescribeUpdateDirectoryCommandInput
|
|
416
|
+
| DisableCAEnrollmentPolicyCommandInput
|
|
403
417
|
| DisableClientAuthenticationCommandInput
|
|
404
418
|
| DisableDirectoryDataAccessCommandInput
|
|
405
419
|
| DisableLDAPSCommandInput
|
|
406
420
|
| DisableRadiusCommandInput
|
|
407
421
|
| DisableSsoCommandInput
|
|
422
|
+
| EnableCAEnrollmentPolicyCommandInput
|
|
408
423
|
| EnableClientAuthenticationCommandInput
|
|
409
424
|
| EnableDirectoryDataAccessCommandInput
|
|
410
425
|
| EnableLDAPSCommandInput
|
|
@@ -463,6 +478,7 @@ export type ServiceOutputTypes =
|
|
|
463
478
|
| DeregisterCertificateCommandOutput
|
|
464
479
|
| DeregisterEventTopicCommandOutput
|
|
465
480
|
| DescribeADAssessmentCommandOutput
|
|
481
|
+
| DescribeCAEnrollmentPolicyCommandOutput
|
|
466
482
|
| DescribeCertificateCommandOutput
|
|
467
483
|
| DescribeClientAuthenticationSettingsCommandOutput
|
|
468
484
|
| DescribeConditionalForwardersCommandOutput
|
|
@@ -478,11 +494,13 @@ export type ServiceOutputTypes =
|
|
|
478
494
|
| DescribeSnapshotsCommandOutput
|
|
479
495
|
| DescribeTrustsCommandOutput
|
|
480
496
|
| DescribeUpdateDirectoryCommandOutput
|
|
497
|
+
| DisableCAEnrollmentPolicyCommandOutput
|
|
481
498
|
| DisableClientAuthenticationCommandOutput
|
|
482
499
|
| DisableDirectoryDataAccessCommandOutput
|
|
483
500
|
| DisableLDAPSCommandOutput
|
|
484
501
|
| DisableRadiusCommandOutput
|
|
485
502
|
| DisableSsoCommandOutput
|
|
503
|
+
| EnableCAEnrollmentPolicyCommandOutput
|
|
486
504
|
| EnableClientAuthenticationCommandOutput
|
|
487
505
|
| EnableDirectoryDataAccessCommandOutput
|
|
488
506
|
| EnableLDAPSCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DirectoryServiceClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DirectoryServiceClient";
|
|
8
|
+
import {
|
|
9
|
+
DescribeCAEnrollmentPolicyRequest,
|
|
10
|
+
DescribeCAEnrollmentPolicyResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeCAEnrollmentPolicyCommandInput
|
|
15
|
+
extends DescribeCAEnrollmentPolicyRequest {}
|
|
16
|
+
export interface DescribeCAEnrollmentPolicyCommandOutput
|
|
17
|
+
extends DescribeCAEnrollmentPolicyResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeCAEnrollmentPolicyCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeCAEnrollmentPolicyCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeCAEnrollmentPolicyCommandInput,
|
|
24
|
+
DescribeCAEnrollmentPolicyCommandOutput,
|
|
25
|
+
DirectoryServiceClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DescribeCAEnrollmentPolicyCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeCAEnrollmentPolicyCommandInput,
|
|
33
|
+
DescribeCAEnrollmentPolicyCommandOutput,
|
|
34
|
+
DirectoryServiceClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeCAEnrollmentPolicyCommand extends DescribeCAEnrollmentPolicyCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeCAEnrollmentPolicyRequest;
|
|
44
|
+
output: DescribeCAEnrollmentPolicyResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeCAEnrollmentPolicyCommandInput;
|
|
48
|
+
output: DescribeCAEnrollmentPolicyCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DirectoryServiceClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DirectoryServiceClient";
|
|
8
|
+
import {
|
|
9
|
+
DisableCAEnrollmentPolicyRequest,
|
|
10
|
+
DisableCAEnrollmentPolicyResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DisableCAEnrollmentPolicyCommandInput
|
|
15
|
+
extends DisableCAEnrollmentPolicyRequest {}
|
|
16
|
+
export interface DisableCAEnrollmentPolicyCommandOutput
|
|
17
|
+
extends DisableCAEnrollmentPolicyResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DisableCAEnrollmentPolicyCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DisableCAEnrollmentPolicyCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DisableCAEnrollmentPolicyCommandInput,
|
|
24
|
+
DisableCAEnrollmentPolicyCommandOutput,
|
|
25
|
+
DirectoryServiceClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DisableCAEnrollmentPolicyCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DisableCAEnrollmentPolicyCommandInput,
|
|
33
|
+
DisableCAEnrollmentPolicyCommandOutput,
|
|
34
|
+
DirectoryServiceClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DisableCAEnrollmentPolicyCommand extends DisableCAEnrollmentPolicyCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DisableCAEnrollmentPolicyRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DisableCAEnrollmentPolicyCommandInput;
|
|
48
|
+
output: DisableCAEnrollmentPolicyCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DirectoryServiceClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DirectoryServiceClient";
|
|
8
|
+
import {
|
|
9
|
+
EnableCAEnrollmentPolicyRequest,
|
|
10
|
+
EnableCAEnrollmentPolicyResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface EnableCAEnrollmentPolicyCommandInput
|
|
15
|
+
extends EnableCAEnrollmentPolicyRequest {}
|
|
16
|
+
export interface EnableCAEnrollmentPolicyCommandOutput
|
|
17
|
+
extends EnableCAEnrollmentPolicyResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const EnableCAEnrollmentPolicyCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: EnableCAEnrollmentPolicyCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
EnableCAEnrollmentPolicyCommandInput,
|
|
24
|
+
EnableCAEnrollmentPolicyCommandOutput,
|
|
25
|
+
DirectoryServiceClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: EnableCAEnrollmentPolicyCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
EnableCAEnrollmentPolicyCommandInput,
|
|
33
|
+
EnableCAEnrollmentPolicyCommandOutput,
|
|
34
|
+
DirectoryServiceClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class EnableCAEnrollmentPolicyCommand extends EnableCAEnrollmentPolicyCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: EnableCAEnrollmentPolicyRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: EnableCAEnrollmentPolicyCommandInput;
|
|
48
|
+
output: EnableCAEnrollmentPolicyCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -22,6 +22,7 @@ export * from "./DeleteTrustCommand";
|
|
|
22
22
|
export * from "./DeregisterCertificateCommand";
|
|
23
23
|
export * from "./DeregisterEventTopicCommand";
|
|
24
24
|
export * from "./DescribeADAssessmentCommand";
|
|
25
|
+
export * from "./DescribeCAEnrollmentPolicyCommand";
|
|
25
26
|
export * from "./DescribeCertificateCommand";
|
|
26
27
|
export * from "./DescribeClientAuthenticationSettingsCommand";
|
|
27
28
|
export * from "./DescribeConditionalForwardersCommand";
|
|
@@ -37,11 +38,13 @@ export * from "./DescribeSharedDirectoriesCommand";
|
|
|
37
38
|
export * from "./DescribeSnapshotsCommand";
|
|
38
39
|
export * from "./DescribeTrustsCommand";
|
|
39
40
|
export * from "./DescribeUpdateDirectoryCommand";
|
|
41
|
+
export * from "./DisableCAEnrollmentPolicyCommand";
|
|
40
42
|
export * from "./DisableClientAuthenticationCommand";
|
|
41
43
|
export * from "./DisableDirectoryDataAccessCommand";
|
|
42
44
|
export * from "./DisableLDAPSCommand";
|
|
43
45
|
export * from "./DisableRadiusCommand";
|
|
44
46
|
export * from "./DisableSsoCommand";
|
|
47
|
+
export * from "./EnableCAEnrollmentPolicyCommand";
|
|
45
48
|
export * from "./EnableClientAuthenticationCommand";
|
|
46
49
|
export * from "./EnableDirectoryDataAccessCommand";
|
|
47
50
|
export * from "./EnableLDAPSCommand";
|