@aws-sdk/client-directory-service 3.876.0 → 3.879.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.
@@ -263,6 +263,16 @@ export declare class AuthenticationFailedException extends __BaseException {
263
263
  opts: __ExceptionOptionType<AuthenticationFailedException, __BaseException>
264
264
  );
265
265
  }
266
+ export declare const CaEnrollmentPolicyStatus: {
267
+ readonly DISABLED: "Disabled";
268
+ readonly DISABLING: "Disabling";
269
+ readonly FAILED: "Failed";
270
+ readonly IMPAIRED: "Impaired";
271
+ readonly IN_PROGRESS: "InProgress";
272
+ readonly SUCCESS: "Success";
273
+ };
274
+ export type CaEnrollmentPolicyStatus =
275
+ (typeof CaEnrollmentPolicyStatus)[keyof typeof CaEnrollmentPolicyStatus];
266
276
  export interface CancelSchemaExtensionRequest {
267
277
  DirectoryId: string | undefined;
268
278
  SchemaExtensionId: string | undefined;
@@ -600,6 +610,16 @@ export interface DescribeADAssessmentResult {
600
610
  Assessment?: Assessment | undefined;
601
611
  AssessmentReports?: AssessmentReport[] | undefined;
602
612
  }
613
+ export interface DescribeCAEnrollmentPolicyRequest {
614
+ DirectoryId: string | undefined;
615
+ }
616
+ export interface DescribeCAEnrollmentPolicyResult {
617
+ DirectoryId?: string | undefined;
618
+ PcaConnectorArn?: string | undefined;
619
+ CaEnrollmentPolicyStatus?: CaEnrollmentPolicyStatus | undefined;
620
+ LastUpdatedDateTime?: Date | undefined;
621
+ CaEnrollmentPolicyStatusReason?: string | undefined;
622
+ }
603
623
  export interface DescribeCertificateRequest {
604
624
  DirectoryId: string | undefined;
605
625
  CertificateId: string | undefined;
@@ -1079,6 +1099,22 @@ export declare class DirectoryNotSharedException extends __BaseException {
1079
1099
  opts: __ExceptionOptionType<DirectoryNotSharedException, __BaseException>
1080
1100
  );
1081
1101
  }
1102
+ export declare class DisableAlreadyInProgressException extends __BaseException {
1103
+ readonly name: "DisableAlreadyInProgressException";
1104
+ readonly $fault: "client";
1105
+ Message?: string | undefined;
1106
+ RequestId?: string | undefined;
1107
+ constructor(
1108
+ opts: __ExceptionOptionType<
1109
+ DisableAlreadyInProgressException,
1110
+ __BaseException
1111
+ >
1112
+ );
1113
+ }
1114
+ export interface DisableCAEnrollmentPolicyRequest {
1115
+ DirectoryId: string | undefined;
1116
+ }
1117
+ export interface DisableCAEnrollmentPolicyResult {}
1082
1118
  export interface DisableClientAuthenticationRequest {
1083
1119
  DirectoryId: string | undefined;
1084
1120
  Type: ClientAuthenticationType | undefined;
@@ -1124,6 +1160,23 @@ export interface DisableSsoRequest {
1124
1160
  Password?: string | undefined;
1125
1161
  }
1126
1162
  export interface DisableSsoResult {}
1163
+ export declare class EnableAlreadyInProgressException extends __BaseException {
1164
+ readonly name: "EnableAlreadyInProgressException";
1165
+ readonly $fault: "client";
1166
+ Message?: string | undefined;
1167
+ RequestId?: string | undefined;
1168
+ constructor(
1169
+ opts: __ExceptionOptionType<
1170
+ EnableAlreadyInProgressException,
1171
+ __BaseException
1172
+ >
1173
+ );
1174
+ }
1175
+ export interface EnableCAEnrollmentPolicyRequest {
1176
+ DirectoryId: string | undefined;
1177
+ PcaConnectorArn: string | undefined;
1178
+ }
1179
+ export interface EnableCAEnrollmentPolicyResult {}
1127
1180
  export interface EnableClientAuthenticationRequest {
1128
1181
  DirectoryId: string | undefined;
1129
1182
  Type: ClientAuthenticationType | undefined;
@@ -99,6 +99,10 @@ import {
99
99
  DescribeADAssessmentCommandInput,
100
100
  DescribeADAssessmentCommandOutput,
101
101
  } from "../commands/DescribeADAssessmentCommand";
102
+ import {
103
+ DescribeCAEnrollmentPolicyCommandInput,
104
+ DescribeCAEnrollmentPolicyCommandOutput,
105
+ } from "../commands/DescribeCAEnrollmentPolicyCommand";
102
106
  import {
103
107
  DescribeCertificateCommandInput,
104
108
  DescribeCertificateCommandOutput,
@@ -159,6 +163,10 @@ import {
159
163
  DescribeUpdateDirectoryCommandInput,
160
164
  DescribeUpdateDirectoryCommandOutput,
161
165
  } from "../commands/DescribeUpdateDirectoryCommand";
166
+ import {
167
+ DisableCAEnrollmentPolicyCommandInput,
168
+ DisableCAEnrollmentPolicyCommandOutput,
169
+ } from "../commands/DisableCAEnrollmentPolicyCommand";
162
170
  import {
163
171
  DisableClientAuthenticationCommandInput,
164
172
  DisableClientAuthenticationCommandOutput,
@@ -179,6 +187,10 @@ import {
179
187
  DisableSsoCommandInput,
180
188
  DisableSsoCommandOutput,
181
189
  } from "../commands/DisableSsoCommand";
190
+ import {
191
+ EnableCAEnrollmentPolicyCommandInput,
192
+ EnableCAEnrollmentPolicyCommandOutput,
193
+ } from "../commands/EnableCAEnrollmentPolicyCommand";
182
194
  import {
183
195
  EnableClientAuthenticationCommandInput,
184
196
  EnableClientAuthenticationCommandOutput,
@@ -407,6 +419,10 @@ export declare const se_DescribeADAssessmentCommand: (
407
419
  input: DescribeADAssessmentCommandInput,
408
420
  context: __SerdeContext
409
421
  ) => Promise<__HttpRequest>;
422
+ export declare const se_DescribeCAEnrollmentPolicyCommand: (
423
+ input: DescribeCAEnrollmentPolicyCommandInput,
424
+ context: __SerdeContext
425
+ ) => Promise<__HttpRequest>;
410
426
  export declare const se_DescribeCertificateCommand: (
411
427
  input: DescribeCertificateCommandInput,
412
428
  context: __SerdeContext
@@ -467,6 +483,10 @@ export declare const se_DescribeUpdateDirectoryCommand: (
467
483
  input: DescribeUpdateDirectoryCommandInput,
468
484
  context: __SerdeContext
469
485
  ) => Promise<__HttpRequest>;
486
+ export declare const se_DisableCAEnrollmentPolicyCommand: (
487
+ input: DisableCAEnrollmentPolicyCommandInput,
488
+ context: __SerdeContext
489
+ ) => Promise<__HttpRequest>;
470
490
  export declare const se_DisableClientAuthenticationCommand: (
471
491
  input: DisableClientAuthenticationCommandInput,
472
492
  context: __SerdeContext
@@ -487,6 +507,10 @@ export declare const se_DisableSsoCommand: (
487
507
  input: DisableSsoCommandInput,
488
508
  context: __SerdeContext
489
509
  ) => Promise<__HttpRequest>;
510
+ export declare const se_EnableCAEnrollmentPolicyCommand: (
511
+ input: EnableCAEnrollmentPolicyCommandInput,
512
+ context: __SerdeContext
513
+ ) => Promise<__HttpRequest>;
490
514
  export declare const se_EnableClientAuthenticationCommand: (
491
515
  input: EnableClientAuthenticationCommandInput,
492
516
  context: __SerdeContext
@@ -715,6 +739,10 @@ export declare const de_DescribeADAssessmentCommand: (
715
739
  output: __HttpResponse,
716
740
  context: __SerdeContext
717
741
  ) => Promise<DescribeADAssessmentCommandOutput>;
742
+ export declare const de_DescribeCAEnrollmentPolicyCommand: (
743
+ output: __HttpResponse,
744
+ context: __SerdeContext
745
+ ) => Promise<DescribeCAEnrollmentPolicyCommandOutput>;
718
746
  export declare const de_DescribeCertificateCommand: (
719
747
  output: __HttpResponse,
720
748
  context: __SerdeContext
@@ -775,6 +803,10 @@ export declare const de_DescribeUpdateDirectoryCommand: (
775
803
  output: __HttpResponse,
776
804
  context: __SerdeContext
777
805
  ) => Promise<DescribeUpdateDirectoryCommandOutput>;
806
+ export declare const de_DisableCAEnrollmentPolicyCommand: (
807
+ output: __HttpResponse,
808
+ context: __SerdeContext
809
+ ) => Promise<DisableCAEnrollmentPolicyCommandOutput>;
778
810
  export declare const de_DisableClientAuthenticationCommand: (
779
811
  output: __HttpResponse,
780
812
  context: __SerdeContext
@@ -795,6 +827,10 @@ export declare const de_DisableSsoCommand: (
795
827
  output: __HttpResponse,
796
828
  context: __SerdeContext
797
829
  ) => Promise<DisableSsoCommandOutput>;
830
+ export declare const de_EnableCAEnrollmentPolicyCommand: (
831
+ output: __HttpResponse,
832
+ context: __SerdeContext
833
+ ) => Promise<EnableCAEnrollmentPolicyCommandOutput>;
798
834
  export declare const de_EnableClientAuthenticationCommand: (
799
835
  output: __HttpResponse,
800
836
  context: __SerdeContext
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.876.0",
4
+ "version": "3.879.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-directory-service",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.876.0",
24
- "@aws-sdk/credential-provider-node": "3.876.0",
23
+ "@aws-sdk/core": "3.879.0",
24
+ "@aws-sdk/credential-provider-node": "3.879.0",
25
25
  "@aws-sdk/middleware-host-header": "3.873.0",
26
26
  "@aws-sdk/middleware-logger": "3.876.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.873.0",
28
- "@aws-sdk/middleware-user-agent": "3.876.0",
28
+ "@aws-sdk/middleware-user-agent": "3.879.0",
29
29
  "@aws-sdk/region-config-resolver": "3.873.0",
30
30
  "@aws-sdk/types": "3.862.0",
31
- "@aws-sdk/util-endpoints": "3.873.0",
31
+ "@aws-sdk/util-endpoints": "3.879.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.873.0",
33
- "@aws-sdk/util-user-agent-node": "3.876.0",
33
+ "@aws-sdk/util-user-agent-node": "3.879.0",
34
34
  "@smithy/config-resolver": "^4.1.5",
35
- "@smithy/core": "^3.8.0",
35
+ "@smithy/core": "^3.9.0",
36
36
  "@smithy/fetch-http-handler": "^5.1.1",
37
37
  "@smithy/hash-node": "^4.0.5",
38
38
  "@smithy/invalid-dependency": "^4.0.5",
39
39
  "@smithy/middleware-content-length": "^4.0.5",
40
- "@smithy/middleware-endpoint": "^4.1.18",
41
- "@smithy/middleware-retry": "^4.1.19",
40
+ "@smithy/middleware-endpoint": "^4.1.19",
41
+ "@smithy/middleware-retry": "^4.1.20",
42
42
  "@smithy/middleware-serde": "^4.0.9",
43
43
  "@smithy/middleware-stack": "^4.0.5",
44
44
  "@smithy/node-config-provider": "^4.1.4",
45
45
  "@smithy/node-http-handler": "^4.1.1",
46
46
  "@smithy/protocol-http": "^5.1.3",
47
- "@smithy/smithy-client": "^4.4.10",
47
+ "@smithy/smithy-client": "^4.5.0",
48
48
  "@smithy/types": "^4.3.2",
49
49
  "@smithy/url-parser": "^4.0.5",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.26",
54
- "@smithy/util-defaults-mode-node": "^4.0.26",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.27",
54
+ "@smithy/util-defaults-mode-node": "^4.0.27",
55
55
  "@smithy/util-endpoints": "^3.0.7",
56
56
  "@smithy/util-middleware": "^4.0.5",
57
57
  "@smithy/util-retry": "^4.0.7",