@aws-sdk/client-directory-service-data 3.928.0 → 3.930.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +922 -1035
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/DirectoryServiceDataClient.js +2 -0
- package/dist-es/commands/AddGroupMemberCommand.js +3 -9
- package/dist-es/commands/CreateGroupCommand.js +3 -10
- package/dist-es/commands/CreateUserCommand.js +3 -10
- package/dist-es/commands/DeleteGroupCommand.js +3 -9
- package/dist-es/commands/DeleteUserCommand.js +3 -9
- package/dist-es/commands/DescribeGroupCommand.js +3 -10
- package/dist-es/commands/DescribeUserCommand.js +3 -10
- package/dist-es/commands/DisableUserCommand.js +3 -9
- package/dist-es/commands/ListGroupMembersCommand.js +3 -10
- package/dist-es/commands/ListGroupsCommand.js +3 -10
- package/dist-es/commands/ListGroupsForMemberCommand.js +3 -10
- package/dist-es/commands/ListUsersCommand.js +3 -10
- package/dist-es/commands/RemoveGroupMemberCommand.js +3 -9
- package/dist-es/commands/SearchGroupsCommand.js +3 -10
- package/dist-es/commands/SearchUsersCommand.js +3 -10
- package/dist-es/commands/UpdateGroupCommand.js +3 -10
- package/dist-es/commands/UpdateUserCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -151
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +869 -0
- package/dist-types/DirectoryServiceDataClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +4 -89
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +85 -0
- package/dist-types/ts3.4/DirectoryServiceDataClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -61
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +92 -0
- package/package.json +33 -34
- package/dist-es/protocols/Aws_restJson1.js +0 -726
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -155
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -209
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { AddGroupMemberCommandInput, AddGroupMemberCommandOutput } from "./commands/AddGroupMemberCommand";
|
|
11
11
|
import { CreateGroupCommandInput, CreateGroupCommandOutput } from "./commands/CreateGroupCommand";
|
|
@@ -158,6 +158,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
158
158
|
* Optional extensions
|
|
159
159
|
*/
|
|
160
160
|
extensions?: RuntimeExtension[];
|
|
161
|
+
/**
|
|
162
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
163
|
+
* may be overridden. A default will always be set by the client.
|
|
164
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
165
|
+
* the client.
|
|
166
|
+
* @alpha
|
|
167
|
+
*
|
|
168
|
+
*/
|
|
169
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
161
170
|
/**
|
|
162
171
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
163
172
|
*/
|
|
@@ -311,6 +311,10 @@ export declare namespace AttributeValue {
|
|
|
311
311
|
SS?: never;
|
|
312
312
|
$unknown: [string, any];
|
|
313
313
|
}
|
|
314
|
+
/**
|
|
315
|
+
* @deprecated unused in schema-serde mode.
|
|
316
|
+
*
|
|
317
|
+
*/
|
|
314
318
|
interface Visitor<T> {
|
|
315
319
|
S: (value: string) => T;
|
|
316
320
|
N: (value: number) => T;
|
|
@@ -318,7 +322,6 @@ export declare namespace AttributeValue {
|
|
|
318
322
|
SS: (value: string[]) => T;
|
|
319
323
|
_: (name: string, value: any) => T;
|
|
320
324
|
}
|
|
321
|
-
const visit: <T>(value: AttributeValue, visitor: Visitor<T>) => T;
|
|
322
325
|
}
|
|
323
326
|
/**
|
|
324
327
|
* @public
|
|
@@ -1549,91 +1552,3 @@ export interface UpdateUserRequest {
|
|
|
1549
1552
|
*/
|
|
1550
1553
|
export interface UpdateUserResult {
|
|
1551
1554
|
}
|
|
1552
|
-
/**
|
|
1553
|
-
* @internal
|
|
1554
|
-
*/
|
|
1555
|
-
export declare const AttributeValueFilterSensitiveLog: (obj: AttributeValue) => any;
|
|
1556
|
-
/**
|
|
1557
|
-
* @internal
|
|
1558
|
-
*/
|
|
1559
|
-
export declare const CreateGroupRequestFilterSensitiveLog: (obj: CreateGroupRequest) => any;
|
|
1560
|
-
/**
|
|
1561
|
-
* @internal
|
|
1562
|
-
*/
|
|
1563
|
-
export declare const CreateUserRequestFilterSensitiveLog: (obj: CreateUserRequest) => any;
|
|
1564
|
-
/**
|
|
1565
|
-
* @internal
|
|
1566
|
-
*/
|
|
1567
|
-
export declare const DescribeGroupResultFilterSensitiveLog: (obj: DescribeGroupResult) => any;
|
|
1568
|
-
/**
|
|
1569
|
-
* @internal
|
|
1570
|
-
*/
|
|
1571
|
-
export declare const DescribeUserResultFilterSensitiveLog: (obj: DescribeUserResult) => any;
|
|
1572
|
-
/**
|
|
1573
|
-
* @internal
|
|
1574
|
-
*/
|
|
1575
|
-
export declare const ListGroupMembersRequestFilterSensitiveLog: (obj: ListGroupMembersRequest) => any;
|
|
1576
|
-
/**
|
|
1577
|
-
* @internal
|
|
1578
|
-
*/
|
|
1579
|
-
export declare const ListGroupMembersResultFilterSensitiveLog: (obj: ListGroupMembersResult) => any;
|
|
1580
|
-
/**
|
|
1581
|
-
* @internal
|
|
1582
|
-
*/
|
|
1583
|
-
export declare const ListGroupsRequestFilterSensitiveLog: (obj: ListGroupsRequest) => any;
|
|
1584
|
-
/**
|
|
1585
|
-
* @internal
|
|
1586
|
-
*/
|
|
1587
|
-
export declare const ListGroupsResultFilterSensitiveLog: (obj: ListGroupsResult) => any;
|
|
1588
|
-
/**
|
|
1589
|
-
* @internal
|
|
1590
|
-
*/
|
|
1591
|
-
export declare const ListGroupsForMemberRequestFilterSensitiveLog: (obj: ListGroupsForMemberRequest) => any;
|
|
1592
|
-
/**
|
|
1593
|
-
* @internal
|
|
1594
|
-
*/
|
|
1595
|
-
export declare const ListGroupsForMemberResultFilterSensitiveLog: (obj: ListGroupsForMemberResult) => any;
|
|
1596
|
-
/**
|
|
1597
|
-
* @internal
|
|
1598
|
-
*/
|
|
1599
|
-
export declare const ListUsersRequestFilterSensitiveLog: (obj: ListUsersRequest) => any;
|
|
1600
|
-
/**
|
|
1601
|
-
* @internal
|
|
1602
|
-
*/
|
|
1603
|
-
export declare const UserSummaryFilterSensitiveLog: (obj: UserSummary) => any;
|
|
1604
|
-
/**
|
|
1605
|
-
* @internal
|
|
1606
|
-
*/
|
|
1607
|
-
export declare const ListUsersResultFilterSensitiveLog: (obj: ListUsersResult) => any;
|
|
1608
|
-
/**
|
|
1609
|
-
* @internal
|
|
1610
|
-
*/
|
|
1611
|
-
export declare const SearchGroupsRequestFilterSensitiveLog: (obj: SearchGroupsRequest) => any;
|
|
1612
|
-
/**
|
|
1613
|
-
* @internal
|
|
1614
|
-
*/
|
|
1615
|
-
export declare const GroupFilterSensitiveLog: (obj: Group) => any;
|
|
1616
|
-
/**
|
|
1617
|
-
* @internal
|
|
1618
|
-
*/
|
|
1619
|
-
export declare const SearchGroupsResultFilterSensitiveLog: (obj: SearchGroupsResult) => any;
|
|
1620
|
-
/**
|
|
1621
|
-
* @internal
|
|
1622
|
-
*/
|
|
1623
|
-
export declare const SearchUsersRequestFilterSensitiveLog: (obj: SearchUsersRequest) => any;
|
|
1624
|
-
/**
|
|
1625
|
-
* @internal
|
|
1626
|
-
*/
|
|
1627
|
-
export declare const UserFilterSensitiveLog: (obj: User) => any;
|
|
1628
|
-
/**
|
|
1629
|
-
* @internal
|
|
1630
|
-
*/
|
|
1631
|
-
export declare const SearchUsersResultFilterSensitiveLog: (obj: SearchUsersResult) => any;
|
|
1632
|
-
/**
|
|
1633
|
-
* @internal
|
|
1634
|
-
*/
|
|
1635
|
-
export declare const UpdateGroupRequestFilterSensitiveLog: (obj: UpdateGroupRequest) => any;
|
|
1636
|
-
/**
|
|
1637
|
-
* @internal
|
|
1638
|
-
*/
|
|
1639
|
-
export declare const UpdateUserRequestFilterSensitiveLog: (obj: UpdateUserRequest) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: DirectoryServiceDataClientConfig
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: DirectoryServiceDataClientConfig
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: DirectoryServiceDataClientConfig
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: DirectoryServiceDataClientConfig
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DirectoryServiceDataHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var BooleanAttributeValue: StaticSimpleSchema;
|
|
3
|
+
export declare var DistinguishedName: StaticSimpleSchema;
|
|
4
|
+
export declare var EmailAddress: StaticSimpleSchema;
|
|
5
|
+
export declare var GivenName: StaticSimpleSchema;
|
|
6
|
+
export declare var NextToken: StaticSimpleSchema;
|
|
7
|
+
export declare var NumberAttributeValue: StaticSimpleSchema;
|
|
8
|
+
export declare var SearchString: StaticSimpleSchema;
|
|
9
|
+
export declare var StringAttributeValue: StaticSimpleSchema;
|
|
10
|
+
export declare var Surname: StaticSimpleSchema;
|
|
11
|
+
export declare var UserPrincipalName: StaticSimpleSchema;
|
|
12
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
13
|
+
export declare var AddGroupMemberRequest: StaticStructureSchema;
|
|
14
|
+
export declare var AddGroupMemberResult: StaticStructureSchema;
|
|
15
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
16
|
+
export declare var CreateGroupRequest: StaticStructureSchema;
|
|
17
|
+
export declare var CreateGroupResult: StaticStructureSchema;
|
|
18
|
+
export declare var CreateUserRequest: StaticStructureSchema;
|
|
19
|
+
export declare var CreateUserResult: StaticStructureSchema;
|
|
20
|
+
export declare var DeleteGroupRequest: StaticStructureSchema;
|
|
21
|
+
export declare var DeleteGroupResult: StaticStructureSchema;
|
|
22
|
+
export declare var DeleteUserRequest: StaticStructureSchema;
|
|
23
|
+
export declare var DeleteUserResult: StaticStructureSchema;
|
|
24
|
+
export declare var DescribeGroupRequest: StaticStructureSchema;
|
|
25
|
+
export declare var DescribeGroupResult: StaticStructureSchema;
|
|
26
|
+
export declare var DescribeUserRequest: StaticStructureSchema;
|
|
27
|
+
export declare var DescribeUserResult: StaticStructureSchema;
|
|
28
|
+
export declare var DirectoryUnavailableException: StaticErrorSchema;
|
|
29
|
+
export declare var DisableUserRequest: StaticStructureSchema;
|
|
30
|
+
export declare var DisableUserResult: StaticStructureSchema;
|
|
31
|
+
export declare var Group: StaticStructureSchema;
|
|
32
|
+
export declare var GroupSummary: StaticStructureSchema;
|
|
33
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
34
|
+
export declare var ListGroupMembersRequest: StaticStructureSchema;
|
|
35
|
+
export declare var ListGroupMembersResult: StaticStructureSchema;
|
|
36
|
+
export declare var ListGroupsForMemberRequest: StaticStructureSchema;
|
|
37
|
+
export declare var ListGroupsForMemberResult: StaticStructureSchema;
|
|
38
|
+
export declare var ListGroupsRequest: StaticStructureSchema;
|
|
39
|
+
export declare var ListGroupsResult: StaticStructureSchema;
|
|
40
|
+
export declare var ListUsersRequest: StaticStructureSchema;
|
|
41
|
+
export declare var ListUsersResult: StaticStructureSchema;
|
|
42
|
+
export declare var Member: StaticStructureSchema;
|
|
43
|
+
export declare var RemoveGroupMemberRequest: StaticStructureSchema;
|
|
44
|
+
export declare var RemoveGroupMemberResult: StaticStructureSchema;
|
|
45
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
46
|
+
export declare var SearchGroupsRequest: StaticStructureSchema;
|
|
47
|
+
export declare var SearchGroupsResult: StaticStructureSchema;
|
|
48
|
+
export declare var SearchUsersRequest: StaticStructureSchema;
|
|
49
|
+
export declare var SearchUsersResult: StaticStructureSchema;
|
|
50
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
51
|
+
export declare var UpdateGroupRequest: StaticStructureSchema;
|
|
52
|
+
export declare var UpdateGroupResult: StaticStructureSchema;
|
|
53
|
+
export declare var UpdateUserRequest: StaticStructureSchema;
|
|
54
|
+
export declare var UpdateUserResult: StaticStructureSchema;
|
|
55
|
+
export declare var User: StaticStructureSchema;
|
|
56
|
+
export declare var UserSummary: StaticStructureSchema;
|
|
57
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
58
|
+
export declare var __Unit: "unit";
|
|
59
|
+
export declare var DirectoryServiceDataServiceException: StaticErrorSchema;
|
|
60
|
+
export declare var GroupList: StaticListSchema;
|
|
61
|
+
export declare var GroupSummaryList: StaticListSchema;
|
|
62
|
+
export declare var LdapDisplayNameList: number;
|
|
63
|
+
export declare var MemberList: StaticListSchema;
|
|
64
|
+
export declare var StringSetAttributeValue: StaticListSchema;
|
|
65
|
+
export declare var UserList: StaticListSchema;
|
|
66
|
+
export declare var UserSummaryList: StaticListSchema;
|
|
67
|
+
export declare var Attributes: StaticMapSchema;
|
|
68
|
+
export declare var AttributeValue: StaticStructureSchema;
|
|
69
|
+
export declare var AddGroupMember: StaticOperationSchema;
|
|
70
|
+
export declare var CreateGroup: StaticOperationSchema;
|
|
71
|
+
export declare var CreateUser: StaticOperationSchema;
|
|
72
|
+
export declare var DeleteGroup: StaticOperationSchema;
|
|
73
|
+
export declare var DeleteUser: StaticOperationSchema;
|
|
74
|
+
export declare var DescribeGroup: StaticOperationSchema;
|
|
75
|
+
export declare var DescribeUser: StaticOperationSchema;
|
|
76
|
+
export declare var DisableUser: StaticOperationSchema;
|
|
77
|
+
export declare var ListGroupMembers: StaticOperationSchema;
|
|
78
|
+
export declare var ListGroups: StaticOperationSchema;
|
|
79
|
+
export declare var ListGroupsForMember: StaticOperationSchema;
|
|
80
|
+
export declare var ListUsers: StaticOperationSchema;
|
|
81
|
+
export declare var RemoveGroupMember: StaticOperationSchema;
|
|
82
|
+
export declare var SearchGroups: StaticOperationSchema;
|
|
83
|
+
export declare var SearchUsers: StaticOperationSchema;
|
|
84
|
+
export declare var UpdateGroup: StaticOperationSchema;
|
|
85
|
+
export declare var UpdateUser: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -180,6 +183,7 @@ export interface ClientDefaults
|
|
|
180
183
|
retryMode?: string | __Provider<string>;
|
|
181
184
|
logger?: __Logger;
|
|
182
185
|
extensions?: RuntimeExtension[];
|
|
186
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
183
187
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
184
188
|
}
|
|
185
189
|
export type DirectoryServiceDataClientConfigType = Partial<
|
|
@@ -155,7 +155,6 @@ export declare namespace AttributeValue {
|
|
|
155
155
|
SS: (value: string[]) => T;
|
|
156
156
|
_: (name: string, value: any) => T;
|
|
157
157
|
}
|
|
158
|
-
const visit: <T>(value: AttributeValue, visitor: Visitor<T>) => T;
|
|
159
158
|
}
|
|
160
159
|
export declare const GroupScope: {
|
|
161
160
|
readonly BUILTIN_LOCAL: "BuiltinLocal";
|
|
@@ -409,63 +408,3 @@ export interface UpdateUserRequest {
|
|
|
409
408
|
ClientToken?: string | undefined;
|
|
410
409
|
}
|
|
411
410
|
export interface UpdateUserResult {}
|
|
412
|
-
export declare const AttributeValueFilterSensitiveLog: (
|
|
413
|
-
obj: AttributeValue
|
|
414
|
-
) => any;
|
|
415
|
-
export declare const CreateGroupRequestFilterSensitiveLog: (
|
|
416
|
-
obj: CreateGroupRequest
|
|
417
|
-
) => any;
|
|
418
|
-
export declare const CreateUserRequestFilterSensitiveLog: (
|
|
419
|
-
obj: CreateUserRequest
|
|
420
|
-
) => any;
|
|
421
|
-
export declare const DescribeGroupResultFilterSensitiveLog: (
|
|
422
|
-
obj: DescribeGroupResult
|
|
423
|
-
) => any;
|
|
424
|
-
export declare const DescribeUserResultFilterSensitiveLog: (
|
|
425
|
-
obj: DescribeUserResult
|
|
426
|
-
) => any;
|
|
427
|
-
export declare const ListGroupMembersRequestFilterSensitiveLog: (
|
|
428
|
-
obj: ListGroupMembersRequest
|
|
429
|
-
) => any;
|
|
430
|
-
export declare const ListGroupMembersResultFilterSensitiveLog: (
|
|
431
|
-
obj: ListGroupMembersResult
|
|
432
|
-
) => any;
|
|
433
|
-
export declare const ListGroupsRequestFilterSensitiveLog: (
|
|
434
|
-
obj: ListGroupsRequest
|
|
435
|
-
) => any;
|
|
436
|
-
export declare const ListGroupsResultFilterSensitiveLog: (
|
|
437
|
-
obj: ListGroupsResult
|
|
438
|
-
) => any;
|
|
439
|
-
export declare const ListGroupsForMemberRequestFilterSensitiveLog: (
|
|
440
|
-
obj: ListGroupsForMemberRequest
|
|
441
|
-
) => any;
|
|
442
|
-
export declare const ListGroupsForMemberResultFilterSensitiveLog: (
|
|
443
|
-
obj: ListGroupsForMemberResult
|
|
444
|
-
) => any;
|
|
445
|
-
export declare const ListUsersRequestFilterSensitiveLog: (
|
|
446
|
-
obj: ListUsersRequest
|
|
447
|
-
) => any;
|
|
448
|
-
export declare const UserSummaryFilterSensitiveLog: (obj: UserSummary) => any;
|
|
449
|
-
export declare const ListUsersResultFilterSensitiveLog: (
|
|
450
|
-
obj: ListUsersResult
|
|
451
|
-
) => any;
|
|
452
|
-
export declare const SearchGroupsRequestFilterSensitiveLog: (
|
|
453
|
-
obj: SearchGroupsRequest
|
|
454
|
-
) => any;
|
|
455
|
-
export declare const GroupFilterSensitiveLog: (obj: Group) => any;
|
|
456
|
-
export declare const SearchGroupsResultFilterSensitiveLog: (
|
|
457
|
-
obj: SearchGroupsResult
|
|
458
|
-
) => any;
|
|
459
|
-
export declare const SearchUsersRequestFilterSensitiveLog: (
|
|
460
|
-
obj: SearchUsersRequest
|
|
461
|
-
) => any;
|
|
462
|
-
export declare const UserFilterSensitiveLog: (obj: User) => any;
|
|
463
|
-
export declare const SearchUsersResultFilterSensitiveLog: (
|
|
464
|
-
obj: SearchUsersResult
|
|
465
|
-
) => any;
|
|
466
|
-
export declare const UpdateGroupRequestFilterSensitiveLog: (
|
|
467
|
-
obj: UpdateGroupRequest
|
|
468
|
-
) => any;
|
|
469
|
-
export declare const UpdateUserRequestFilterSensitiveLog: (
|
|
470
|
-
obj: UpdateUserRequest
|
|
471
|
-
) => any;
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
userAgentAppId?:
|
|
45
49
|
| string
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
retryStrategy?:
|
|
45
49
|
| import("@smithy/types").RetryStrategy
|
|
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
|
|
|
39
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
40
40
|
logger: import("@smithy/types").Logger;
|
|
41
41
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
+
import("@smithy/types").HttpRequest,
|
|
44
|
+
import("@smithy/types").HttpResponse
|
|
45
|
+
>;
|
|
42
46
|
defaultsMode:
|
|
43
47
|
| import("@smithy/smithy-client").DefaultsMode
|
|
44
48
|
| import("@smithy/types").Provider<
|
|
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
|
|
|
16
16
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DirectoryServiceDataHttpAuthSchemeProvider;
|
|
17
17
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
18
|
logger: import("@smithy/types").Logger;
|
|
19
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
20
|
+
import("@smithy/types").HttpRequest,
|
|
21
|
+
import("@smithy/types").HttpResponse
|
|
22
|
+
>;
|
|
19
23
|
serviceId: string;
|
|
20
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
25
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticMapSchema,
|
|
5
|
+
StaticOperationSchema,
|
|
6
|
+
StaticSimpleSchema,
|
|
7
|
+
StaticStructureSchema,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
export declare var BooleanAttributeValue: StaticSimpleSchema;
|
|
10
|
+
export declare var DistinguishedName: StaticSimpleSchema;
|
|
11
|
+
export declare var EmailAddress: StaticSimpleSchema;
|
|
12
|
+
export declare var GivenName: StaticSimpleSchema;
|
|
13
|
+
export declare var NextToken: StaticSimpleSchema;
|
|
14
|
+
export declare var NumberAttributeValue: StaticSimpleSchema;
|
|
15
|
+
export declare var SearchString: StaticSimpleSchema;
|
|
16
|
+
export declare var StringAttributeValue: StaticSimpleSchema;
|
|
17
|
+
export declare var Surname: StaticSimpleSchema;
|
|
18
|
+
export declare var UserPrincipalName: StaticSimpleSchema;
|
|
19
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
20
|
+
export declare var AddGroupMemberRequest: StaticStructureSchema;
|
|
21
|
+
export declare var AddGroupMemberResult: StaticStructureSchema;
|
|
22
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
23
|
+
export declare var CreateGroupRequest: StaticStructureSchema;
|
|
24
|
+
export declare var CreateGroupResult: StaticStructureSchema;
|
|
25
|
+
export declare var CreateUserRequest: StaticStructureSchema;
|
|
26
|
+
export declare var CreateUserResult: StaticStructureSchema;
|
|
27
|
+
export declare var DeleteGroupRequest: StaticStructureSchema;
|
|
28
|
+
export declare var DeleteGroupResult: StaticStructureSchema;
|
|
29
|
+
export declare var DeleteUserRequest: StaticStructureSchema;
|
|
30
|
+
export declare var DeleteUserResult: StaticStructureSchema;
|
|
31
|
+
export declare var DescribeGroupRequest: StaticStructureSchema;
|
|
32
|
+
export declare var DescribeGroupResult: StaticStructureSchema;
|
|
33
|
+
export declare var DescribeUserRequest: StaticStructureSchema;
|
|
34
|
+
export declare var DescribeUserResult: StaticStructureSchema;
|
|
35
|
+
export declare var DirectoryUnavailableException: StaticErrorSchema;
|
|
36
|
+
export declare var DisableUserRequest: StaticStructureSchema;
|
|
37
|
+
export declare var DisableUserResult: StaticStructureSchema;
|
|
38
|
+
export declare var Group: StaticStructureSchema;
|
|
39
|
+
export declare var GroupSummary: StaticStructureSchema;
|
|
40
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
41
|
+
export declare var ListGroupMembersRequest: StaticStructureSchema;
|
|
42
|
+
export declare var ListGroupMembersResult: StaticStructureSchema;
|
|
43
|
+
export declare var ListGroupsForMemberRequest: StaticStructureSchema;
|
|
44
|
+
export declare var ListGroupsForMemberResult: StaticStructureSchema;
|
|
45
|
+
export declare var ListGroupsRequest: StaticStructureSchema;
|
|
46
|
+
export declare var ListGroupsResult: StaticStructureSchema;
|
|
47
|
+
export declare var ListUsersRequest: StaticStructureSchema;
|
|
48
|
+
export declare var ListUsersResult: StaticStructureSchema;
|
|
49
|
+
export declare var Member: StaticStructureSchema;
|
|
50
|
+
export declare var RemoveGroupMemberRequest: StaticStructureSchema;
|
|
51
|
+
export declare var RemoveGroupMemberResult: StaticStructureSchema;
|
|
52
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
53
|
+
export declare var SearchGroupsRequest: StaticStructureSchema;
|
|
54
|
+
export declare var SearchGroupsResult: StaticStructureSchema;
|
|
55
|
+
export declare var SearchUsersRequest: StaticStructureSchema;
|
|
56
|
+
export declare var SearchUsersResult: StaticStructureSchema;
|
|
57
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
58
|
+
export declare var UpdateGroupRequest: StaticStructureSchema;
|
|
59
|
+
export declare var UpdateGroupResult: StaticStructureSchema;
|
|
60
|
+
export declare var UpdateUserRequest: StaticStructureSchema;
|
|
61
|
+
export declare var UpdateUserResult: StaticStructureSchema;
|
|
62
|
+
export declare var User: StaticStructureSchema;
|
|
63
|
+
export declare var UserSummary: StaticStructureSchema;
|
|
64
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
65
|
+
export declare var __Unit: "unit";
|
|
66
|
+
export declare var DirectoryServiceDataServiceException: StaticErrorSchema;
|
|
67
|
+
export declare var GroupList: StaticListSchema;
|
|
68
|
+
export declare var GroupSummaryList: StaticListSchema;
|
|
69
|
+
export declare var LdapDisplayNameList: number;
|
|
70
|
+
export declare var MemberList: StaticListSchema;
|
|
71
|
+
export declare var StringSetAttributeValue: StaticListSchema;
|
|
72
|
+
export declare var UserList: StaticListSchema;
|
|
73
|
+
export declare var UserSummaryList: StaticListSchema;
|
|
74
|
+
export declare var Attributes: StaticMapSchema;
|
|
75
|
+
export declare var AttributeValue: StaticStructureSchema;
|
|
76
|
+
export declare var AddGroupMember: StaticOperationSchema;
|
|
77
|
+
export declare var CreateGroup: StaticOperationSchema;
|
|
78
|
+
export declare var CreateUser: StaticOperationSchema;
|
|
79
|
+
export declare var DeleteGroup: StaticOperationSchema;
|
|
80
|
+
export declare var DeleteUser: StaticOperationSchema;
|
|
81
|
+
export declare var DescribeGroup: StaticOperationSchema;
|
|
82
|
+
export declare var DescribeUser: StaticOperationSchema;
|
|
83
|
+
export declare var DisableUser: StaticOperationSchema;
|
|
84
|
+
export declare var ListGroupMembers: StaticOperationSchema;
|
|
85
|
+
export declare var ListGroups: StaticOperationSchema;
|
|
86
|
+
export declare var ListGroupsForMember: StaticOperationSchema;
|
|
87
|
+
export declare var ListUsers: StaticOperationSchema;
|
|
88
|
+
export declare var RemoveGroupMember: StaticOperationSchema;
|
|
89
|
+
export declare var SearchGroups: StaticOperationSchema;
|
|
90
|
+
export declare var SearchUsers: StaticOperationSchema;
|
|
91
|
+
export declare var UpdateGroup: StaticOperationSchema;
|
|
92
|
+
export declare var UpdateUser: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-directory-service-data",
|
|
3
3
|
"description": "AWS SDK for JavaScript Directory Service Data Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.930.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-data",
|
|
@@ -20,43 +20,42 @@
|
|
|
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.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.4.
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
37
|
-
"@smithy/hash-node": "^4.2.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
43
|
-
"@smithy/middleware-stack": "^4.2.
|
|
44
|
-
"@smithy/node-config-provider": "^4.3.
|
|
45
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
-
"@smithy/protocol-http": "^5.3.
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.2.
|
|
23
|
+
"@aws-sdk/core": "3.930.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.930.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.930.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.930.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
|
+
"@aws-sdk/types": "3.930.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.930.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
+
"@smithy/core": "^3.18.2",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
|
+
"@smithy/hash-node": "^4.2.5",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.9",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.9",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.5",
|
|
43
|
+
"@smithy/middleware-stack": "^4.2.5",
|
|
44
|
+
"@smithy/node-config-provider": "^4.3.5",
|
|
45
|
+
"@smithy/node-http-handler": "^4.4.5",
|
|
46
|
+
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
+
"@smithy/smithy-client": "^4.9.5",
|
|
48
|
+
"@smithy/types": "^4.9.0",
|
|
49
|
+
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
55
|
-
"@smithy/util-endpoints": "^3.2.
|
|
56
|
-
"@smithy/util-middleware": "^4.2.
|
|
57
|
-
"@smithy/util-retry": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.8",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.11",
|
|
55
|
+
"@smithy/util-endpoints": "^3.2.5",
|
|
56
|
+
"@smithy/util-middleware": "^4.2.5",
|
|
57
|
+
"@smithy/util-retry": "^4.2.5",
|
|
58
58
|
"@smithy/util-utf8": "^4.2.0",
|
|
59
|
-
"@smithy/uuid": "^1.1.0",
|
|
60
59
|
"tslib": "^2.6.2"
|
|
61
60
|
},
|
|
62
61
|
"devDependencies": {
|