@aws-sdk/client-workmail 3.682.0 → 3.683.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 +65 -1
- package/dist-cjs/index.js +386 -4
- package/dist-es/WorkMail.js +16 -0
- package/dist-es/commands/CreateIdentityCenterApplicationCommand.js +22 -0
- package/dist-es/commands/CreateResourceCommand.js +2 -1
- package/dist-es/commands/DeleteIdentityCenterApplicationCommand.js +22 -0
- package/dist-es/commands/DeleteIdentityProviderConfigurationCommand.js +22 -0
- package/dist-es/commands/DeletePersonalAccessTokenCommand.js +22 -0
- package/dist-es/commands/DescribeIdentityProviderConfigurationCommand.js +22 -0
- package/dist-es/commands/DescribeResourceCommand.js +2 -1
- package/dist-es/commands/GetPersonalAccessTokenMetadataCommand.js +22 -0
- package/dist-es/commands/ListPersonalAccessTokensCommand.js +22 -0
- package/dist-es/commands/ListResourcesCommand.js +2 -1
- package/dist-es/commands/PutIdentityProviderConfigurationCommand.js +22 -0
- package/dist-es/commands/UpdateResourceCommand.js +2 -1
- package/dist-es/commands/index.js +8 -0
- package/dist-es/models/models_0.js +28 -0
- package/dist-es/pagination/ListPersonalAccessTokensPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +200 -0
- package/dist-types/WorkMail.d.ts +56 -0
- package/dist-types/WorkMailClient.d.ts +10 -2
- package/dist-types/commands/CreateIdentityCenterApplicationCommand.d.ts +78 -0
- package/dist-types/commands/CreateUserCommand.d.ts +1 -0
- package/dist-types/commands/DeleteIdentityCenterApplicationCommand.d.ts +78 -0
- package/dist-types/commands/DeleteIdentityProviderConfigurationCommand.d.ts +82 -0
- package/dist-types/commands/DeleteOrganizationCommand.d.ts +1 -0
- package/dist-types/commands/DeletePersonalAccessTokenCommand.d.ts +83 -0
- package/dist-types/commands/DescribeIdentityProviderConfigurationCommand.d.ts +95 -0
- package/dist-types/commands/DescribeUserCommand.d.ts +8 -0
- package/dist-types/commands/GetPersonalAccessTokenMetadataCommand.d.ts +96 -0
- package/dist-types/commands/ListAvailabilityConfigurationsCommand.d.ts +3 -0
- package/dist-types/commands/ListPersonalAccessTokensCommand.d.ts +108 -0
- package/dist-types/commands/ListUsersCommand.d.ts +3 -0
- package/dist-types/commands/PutIdentityProviderConfigurationCommand.d.ts +96 -0
- package/dist-types/commands/UpdateGroupCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUserCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +485 -1
- package/dist-types/pagination/ListPersonalAccessTokensPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +72 -0
- package/dist-types/ts3.4/WorkMail.d.ts +148 -0
- package/dist-types/ts3.4/WorkMailClient.d.ts +48 -0
- package/dist-types/ts3.4/commands/CreateIdentityCenterApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteIdentityCenterApplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteIdentityProviderConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeletePersonalAccessTokenCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeIdentityProviderConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetPersonalAccessTokenMetadataCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPersonalAccessTokensCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutIdentityProviderConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +111 -0
- package/dist-types/ts3.4/pagination/ListPersonalAccessTokensPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +96 -0
- package/package.json +1 -1
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CreateIdentityCenterApplicationRequest,
|
|
5
|
+
CreateIdentityCenterApplicationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
WorkMailClientResolvedConfig,
|
|
11
|
+
} from "../WorkMailClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateIdentityCenterApplicationCommandInput
|
|
15
|
+
extends CreateIdentityCenterApplicationRequest {}
|
|
16
|
+
export interface CreateIdentityCenterApplicationCommandOutput
|
|
17
|
+
extends CreateIdentityCenterApplicationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateIdentityCenterApplicationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateIdentityCenterApplicationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateIdentityCenterApplicationCommandInput,
|
|
24
|
+
CreateIdentityCenterApplicationCommandOutput,
|
|
25
|
+
WorkMailClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreateIdentityCenterApplicationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateIdentityCenterApplicationCommandInput,
|
|
33
|
+
CreateIdentityCenterApplicationCommandOutput,
|
|
34
|
+
WorkMailClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateIdentityCenterApplicationCommand extends CreateIdentityCenterApplicationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateIdentityCenterApplicationRequest;
|
|
44
|
+
output: CreateIdentityCenterApplicationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateIdentityCenterApplicationCommandInput;
|
|
48
|
+
output: CreateIdentityCenterApplicationCommandOutput;
|
|
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
|
+
DeleteIdentityCenterApplicationRequest,
|
|
5
|
+
DeleteIdentityCenterApplicationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
WorkMailClientResolvedConfig,
|
|
11
|
+
} from "../WorkMailClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteIdentityCenterApplicationCommandInput
|
|
15
|
+
extends DeleteIdentityCenterApplicationRequest {}
|
|
16
|
+
export interface DeleteIdentityCenterApplicationCommandOutput
|
|
17
|
+
extends DeleteIdentityCenterApplicationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteIdentityCenterApplicationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteIdentityCenterApplicationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteIdentityCenterApplicationCommandInput,
|
|
24
|
+
DeleteIdentityCenterApplicationCommandOutput,
|
|
25
|
+
WorkMailClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DeleteIdentityCenterApplicationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteIdentityCenterApplicationCommandInput,
|
|
33
|
+
DeleteIdentityCenterApplicationCommandOutput,
|
|
34
|
+
WorkMailClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteIdentityCenterApplicationCommand extends DeleteIdentityCenterApplicationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteIdentityCenterApplicationRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteIdentityCenterApplicationCommandInput;
|
|
48
|
+
output: DeleteIdentityCenterApplicationCommandOutput;
|
|
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
|
+
DeleteIdentityProviderConfigurationRequest,
|
|
5
|
+
DeleteIdentityProviderConfigurationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
WorkMailClientResolvedConfig,
|
|
11
|
+
} from "../WorkMailClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteIdentityProviderConfigurationCommandInput
|
|
15
|
+
extends DeleteIdentityProviderConfigurationRequest {}
|
|
16
|
+
export interface DeleteIdentityProviderConfigurationCommandOutput
|
|
17
|
+
extends DeleteIdentityProviderConfigurationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteIdentityProviderConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteIdentityProviderConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteIdentityProviderConfigurationCommandInput,
|
|
24
|
+
DeleteIdentityProviderConfigurationCommandOutput,
|
|
25
|
+
WorkMailClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DeleteIdentityProviderConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteIdentityProviderConfigurationCommandInput,
|
|
33
|
+
DeleteIdentityProviderConfigurationCommandOutput,
|
|
34
|
+
WorkMailClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteIdentityProviderConfigurationCommand extends DeleteIdentityProviderConfigurationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteIdentityProviderConfigurationRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteIdentityProviderConfigurationCommandInput;
|
|
48
|
+
output: DeleteIdentityProviderConfigurationCommandOutput;
|
|
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
|
+
DeletePersonalAccessTokenRequest,
|
|
5
|
+
DeletePersonalAccessTokenResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
WorkMailClientResolvedConfig,
|
|
11
|
+
} from "../WorkMailClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeletePersonalAccessTokenCommandInput
|
|
15
|
+
extends DeletePersonalAccessTokenRequest {}
|
|
16
|
+
export interface DeletePersonalAccessTokenCommandOutput
|
|
17
|
+
extends DeletePersonalAccessTokenResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeletePersonalAccessTokenCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeletePersonalAccessTokenCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeletePersonalAccessTokenCommandInput,
|
|
24
|
+
DeletePersonalAccessTokenCommandOutput,
|
|
25
|
+
WorkMailClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DeletePersonalAccessTokenCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeletePersonalAccessTokenCommandInput,
|
|
33
|
+
DeletePersonalAccessTokenCommandOutput,
|
|
34
|
+
WorkMailClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeletePersonalAccessTokenCommand extends DeletePersonalAccessTokenCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeletePersonalAccessTokenRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeletePersonalAccessTokenCommandInput;
|
|
48
|
+
output: DeletePersonalAccessTokenCommandOutput;
|
|
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
|
+
DescribeIdentityProviderConfigurationRequest,
|
|
5
|
+
DescribeIdentityProviderConfigurationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
WorkMailClientResolvedConfig,
|
|
11
|
+
} from "../WorkMailClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeIdentityProviderConfigurationCommandInput
|
|
15
|
+
extends DescribeIdentityProviderConfigurationRequest {}
|
|
16
|
+
export interface DescribeIdentityProviderConfigurationCommandOutput
|
|
17
|
+
extends DescribeIdentityProviderConfigurationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeIdentityProviderConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeIdentityProviderConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeIdentityProviderConfigurationCommandInput,
|
|
24
|
+
DescribeIdentityProviderConfigurationCommandOutput,
|
|
25
|
+
WorkMailClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DescribeIdentityProviderConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeIdentityProviderConfigurationCommandInput,
|
|
33
|
+
DescribeIdentityProviderConfigurationCommandOutput,
|
|
34
|
+
WorkMailClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeIdentityProviderConfigurationCommand extends DescribeIdentityProviderConfigurationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeIdentityProviderConfigurationRequest;
|
|
44
|
+
output: DescribeIdentityProviderConfigurationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeIdentityProviderConfigurationCommandInput;
|
|
48
|
+
output: DescribeIdentityProviderConfigurationCommandOutput;
|
|
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
|
+
GetPersonalAccessTokenMetadataRequest,
|
|
5
|
+
GetPersonalAccessTokenMetadataResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
WorkMailClientResolvedConfig,
|
|
11
|
+
} from "../WorkMailClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetPersonalAccessTokenMetadataCommandInput
|
|
15
|
+
extends GetPersonalAccessTokenMetadataRequest {}
|
|
16
|
+
export interface GetPersonalAccessTokenMetadataCommandOutput
|
|
17
|
+
extends GetPersonalAccessTokenMetadataResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetPersonalAccessTokenMetadataCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetPersonalAccessTokenMetadataCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetPersonalAccessTokenMetadataCommandInput,
|
|
24
|
+
GetPersonalAccessTokenMetadataCommandOutput,
|
|
25
|
+
WorkMailClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: GetPersonalAccessTokenMetadataCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetPersonalAccessTokenMetadataCommandInput,
|
|
33
|
+
GetPersonalAccessTokenMetadataCommandOutput,
|
|
34
|
+
WorkMailClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetPersonalAccessTokenMetadataCommand extends GetPersonalAccessTokenMetadataCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetPersonalAccessTokenMetadataRequest;
|
|
44
|
+
output: GetPersonalAccessTokenMetadataResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetPersonalAccessTokenMetadataCommandInput;
|
|
48
|
+
output: GetPersonalAccessTokenMetadataCommandOutput;
|
|
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
|
+
ListPersonalAccessTokensRequest,
|
|
5
|
+
ListPersonalAccessTokensResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
WorkMailClientResolvedConfig,
|
|
11
|
+
} from "../WorkMailClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListPersonalAccessTokensCommandInput
|
|
15
|
+
extends ListPersonalAccessTokensRequest {}
|
|
16
|
+
export interface ListPersonalAccessTokensCommandOutput
|
|
17
|
+
extends ListPersonalAccessTokensResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListPersonalAccessTokensCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListPersonalAccessTokensCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListPersonalAccessTokensCommandInput,
|
|
24
|
+
ListPersonalAccessTokensCommandOutput,
|
|
25
|
+
WorkMailClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListPersonalAccessTokensCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListPersonalAccessTokensCommandInput,
|
|
33
|
+
ListPersonalAccessTokensCommandOutput,
|
|
34
|
+
WorkMailClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListPersonalAccessTokensCommand extends ListPersonalAccessTokensCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListPersonalAccessTokensRequest;
|
|
44
|
+
output: ListPersonalAccessTokensResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListPersonalAccessTokensCommandInput;
|
|
48
|
+
output: ListPersonalAccessTokensCommandOutput;
|
|
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
|
+
PutIdentityProviderConfigurationRequest,
|
|
5
|
+
PutIdentityProviderConfigurationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
WorkMailClientResolvedConfig,
|
|
11
|
+
} from "../WorkMailClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface PutIdentityProviderConfigurationCommandInput
|
|
15
|
+
extends PutIdentityProviderConfigurationRequest {}
|
|
16
|
+
export interface PutIdentityProviderConfigurationCommandOutput
|
|
17
|
+
extends PutIdentityProviderConfigurationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const PutIdentityProviderConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: PutIdentityProviderConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
PutIdentityProviderConfigurationCommandInput,
|
|
24
|
+
PutIdentityProviderConfigurationCommandOutput,
|
|
25
|
+
WorkMailClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: PutIdentityProviderConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
PutIdentityProviderConfigurationCommandInput,
|
|
33
|
+
PutIdentityProviderConfigurationCommandOutput,
|
|
34
|
+
WorkMailClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class PutIdentityProviderConfigurationCommand extends PutIdentityProviderConfigurationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: PutIdentityProviderConfigurationRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: PutIdentityProviderConfigurationCommandInput;
|
|
48
|
+
output: PutIdentityProviderConfigurationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -5,6 +5,7 @@ export * from "./CancelMailboxExportJobCommand";
|
|
|
5
5
|
export * from "./CreateAliasCommand";
|
|
6
6
|
export * from "./CreateAvailabilityConfigurationCommand";
|
|
7
7
|
export * from "./CreateGroupCommand";
|
|
8
|
+
export * from "./CreateIdentityCenterApplicationCommand";
|
|
8
9
|
export * from "./CreateImpersonationRoleCommand";
|
|
9
10
|
export * from "./CreateMobileDeviceAccessRuleCommand";
|
|
10
11
|
export * from "./CreateOrganizationCommand";
|
|
@@ -15,11 +16,14 @@ export * from "./DeleteAliasCommand";
|
|
|
15
16
|
export * from "./DeleteAvailabilityConfigurationCommand";
|
|
16
17
|
export * from "./DeleteEmailMonitoringConfigurationCommand";
|
|
17
18
|
export * from "./DeleteGroupCommand";
|
|
19
|
+
export * from "./DeleteIdentityCenterApplicationCommand";
|
|
20
|
+
export * from "./DeleteIdentityProviderConfigurationCommand";
|
|
18
21
|
export * from "./DeleteImpersonationRoleCommand";
|
|
19
22
|
export * from "./DeleteMailboxPermissionsCommand";
|
|
20
23
|
export * from "./DeleteMobileDeviceAccessOverrideCommand";
|
|
21
24
|
export * from "./DeleteMobileDeviceAccessRuleCommand";
|
|
22
25
|
export * from "./DeleteOrganizationCommand";
|
|
26
|
+
export * from "./DeletePersonalAccessTokenCommand";
|
|
23
27
|
export * from "./DeleteResourceCommand";
|
|
24
28
|
export * from "./DeleteRetentionPolicyCommand";
|
|
25
29
|
export * from "./DeleteUserCommand";
|
|
@@ -28,6 +32,7 @@ export * from "./DeregisterMailDomainCommand";
|
|
|
28
32
|
export * from "./DescribeEmailMonitoringConfigurationCommand";
|
|
29
33
|
export * from "./DescribeEntityCommand";
|
|
30
34
|
export * from "./DescribeGroupCommand";
|
|
35
|
+
export * from "./DescribeIdentityProviderConfigurationCommand";
|
|
31
36
|
export * from "./DescribeInboundDmarcSettingsCommand";
|
|
32
37
|
export * from "./DescribeMailboxExportJobCommand";
|
|
33
38
|
export * from "./DescribeOrganizationCommand";
|
|
@@ -43,6 +48,7 @@ export * from "./GetMailDomainCommand";
|
|
|
43
48
|
export * from "./GetMailboxDetailsCommand";
|
|
44
49
|
export * from "./GetMobileDeviceAccessEffectCommand";
|
|
45
50
|
export * from "./GetMobileDeviceAccessOverrideCommand";
|
|
51
|
+
export * from "./GetPersonalAccessTokenMetadataCommand";
|
|
46
52
|
export * from "./ListAccessControlRulesCommand";
|
|
47
53
|
export * from "./ListAliasesCommand";
|
|
48
54
|
export * from "./ListAvailabilityConfigurationsCommand";
|
|
@@ -56,12 +62,14 @@ export * from "./ListMailboxPermissionsCommand";
|
|
|
56
62
|
export * from "./ListMobileDeviceAccessOverridesCommand";
|
|
57
63
|
export * from "./ListMobileDeviceAccessRulesCommand";
|
|
58
64
|
export * from "./ListOrganizationsCommand";
|
|
65
|
+
export * from "./ListPersonalAccessTokensCommand";
|
|
59
66
|
export * from "./ListResourceDelegatesCommand";
|
|
60
67
|
export * from "./ListResourcesCommand";
|
|
61
68
|
export * from "./ListTagsForResourceCommand";
|
|
62
69
|
export * from "./ListUsersCommand";
|
|
63
70
|
export * from "./PutAccessControlRuleCommand";
|
|
64
71
|
export * from "./PutEmailMonitoringConfigurationCommand";
|
|
72
|
+
export * from "./PutIdentityProviderConfigurationCommand";
|
|
65
73
|
export * from "./PutInboundDmarcSettingsCommand";
|
|
66
74
|
export * from "./PutMailboxPermissionsCommand";
|
|
67
75
|
export * from "./PutMobileDeviceAccessOverrideCommand";
|
|
@@ -228,6 +228,14 @@ export declare class ReservedNameException extends __BaseException {
|
|
|
228
228
|
opts: __ExceptionOptionType<ReservedNameException, __BaseException>
|
|
229
229
|
);
|
|
230
230
|
}
|
|
231
|
+
export interface CreateIdentityCenterApplicationRequest {
|
|
232
|
+
Name: string | undefined;
|
|
233
|
+
InstanceArn: string | undefined;
|
|
234
|
+
ClientToken?: string;
|
|
235
|
+
}
|
|
236
|
+
export interface CreateIdentityCenterApplicationResponse {
|
|
237
|
+
ApplicationArn?: string;
|
|
238
|
+
}
|
|
231
239
|
export interface ImpersonationRule {
|
|
232
240
|
ImpersonationRuleId: string | undefined;
|
|
233
241
|
Name?: string;
|
|
@@ -331,6 +339,7 @@ export interface CreateUserRequest {
|
|
|
331
339
|
FirstName?: string;
|
|
332
340
|
LastName?: string;
|
|
333
341
|
HiddenFromGlobalAddressList?: boolean;
|
|
342
|
+
IdentityProviderUserId?: string;
|
|
334
343
|
}
|
|
335
344
|
export interface CreateUserResponse {
|
|
336
345
|
UserId?: string;
|
|
@@ -377,6 +386,14 @@ export interface DeleteGroupRequest {
|
|
|
377
386
|
GroupId: string | undefined;
|
|
378
387
|
}
|
|
379
388
|
export interface DeleteGroupResponse {}
|
|
389
|
+
export interface DeleteIdentityCenterApplicationRequest {
|
|
390
|
+
ApplicationArn: string | undefined;
|
|
391
|
+
}
|
|
392
|
+
export interface DeleteIdentityCenterApplicationResponse {}
|
|
393
|
+
export interface DeleteIdentityProviderConfigurationRequest {
|
|
394
|
+
OrganizationId: string | undefined;
|
|
395
|
+
}
|
|
396
|
+
export interface DeleteIdentityProviderConfigurationResponse {}
|
|
380
397
|
export interface DeleteImpersonationRoleRequest {
|
|
381
398
|
OrganizationId: string | undefined;
|
|
382
399
|
ImpersonationRoleId: string | undefined;
|
|
@@ -404,11 +421,17 @@ export interface DeleteOrganizationRequest {
|
|
|
404
421
|
OrganizationId: string | undefined;
|
|
405
422
|
DeleteDirectory: boolean | undefined;
|
|
406
423
|
ForceDelete?: boolean;
|
|
424
|
+
DeleteIdentityCenterApplication?: boolean;
|
|
407
425
|
}
|
|
408
426
|
export interface DeleteOrganizationResponse {
|
|
409
427
|
OrganizationId?: string;
|
|
410
428
|
State?: string;
|
|
411
429
|
}
|
|
430
|
+
export interface DeletePersonalAccessTokenRequest {
|
|
431
|
+
OrganizationId: string | undefined;
|
|
432
|
+
PersonalAccessTokenId: string | undefined;
|
|
433
|
+
}
|
|
434
|
+
export interface DeletePersonalAccessTokenResponse {}
|
|
412
435
|
export interface DeleteResourceRequest {
|
|
413
436
|
OrganizationId: string | undefined;
|
|
414
437
|
ResourceId: string | undefined;
|
|
@@ -494,6 +517,34 @@ export interface DescribeGroupResponse {
|
|
|
494
517
|
DisabledDate?: Date;
|
|
495
518
|
HiddenFromGlobalAddressList?: boolean;
|
|
496
519
|
}
|
|
520
|
+
export interface DescribeIdentityProviderConfigurationRequest {
|
|
521
|
+
OrganizationId: string | undefined;
|
|
522
|
+
}
|
|
523
|
+
export declare const IdentityProviderAuthenticationMode: {
|
|
524
|
+
readonly IDENTITY_PROVIDER_AND_DIRECTORY: "IDENTITY_PROVIDER_AND_DIRECTORY";
|
|
525
|
+
readonly IDENTITY_PROVIDER_ONLY: "IDENTITY_PROVIDER_ONLY";
|
|
526
|
+
};
|
|
527
|
+
export type IdentityProviderAuthenticationMode =
|
|
528
|
+
(typeof IdentityProviderAuthenticationMode)[keyof typeof IdentityProviderAuthenticationMode];
|
|
529
|
+
export interface IdentityCenterConfiguration {
|
|
530
|
+
InstanceArn: string | undefined;
|
|
531
|
+
ApplicationArn: string | undefined;
|
|
532
|
+
}
|
|
533
|
+
export declare const PersonalAccessTokenConfigurationStatus: {
|
|
534
|
+
readonly ACTIVE: "ACTIVE";
|
|
535
|
+
readonly INACTIVE: "INACTIVE";
|
|
536
|
+
};
|
|
537
|
+
export type PersonalAccessTokenConfigurationStatus =
|
|
538
|
+
(typeof PersonalAccessTokenConfigurationStatus)[keyof typeof PersonalAccessTokenConfigurationStatus];
|
|
539
|
+
export interface PersonalAccessTokenConfiguration {
|
|
540
|
+
Status: PersonalAccessTokenConfigurationStatus | undefined;
|
|
541
|
+
LifetimeInDays?: number;
|
|
542
|
+
}
|
|
543
|
+
export interface DescribeIdentityProviderConfigurationResponse {
|
|
544
|
+
AuthenticationMode?: IdentityProviderAuthenticationMode;
|
|
545
|
+
IdentityCenterConfiguration?: IdentityCenterConfiguration;
|
|
546
|
+
PersonalAccessTokenConfiguration?: PersonalAccessTokenConfiguration;
|
|
547
|
+
}
|
|
497
548
|
export interface DescribeInboundDmarcSettingsRequest {
|
|
498
549
|
OrganizationId: string | undefined;
|
|
499
550
|
}
|
|
@@ -586,6 +637,8 @@ export interface DescribeUserResponse {
|
|
|
586
637
|
Department?: string;
|
|
587
638
|
Country?: string;
|
|
588
639
|
Office?: string;
|
|
640
|
+
IdentityProviderUserId?: string;
|
|
641
|
+
IdentityProviderIdentityStoreId?: string;
|
|
589
642
|
}
|
|
590
643
|
export interface DisassociateDelegateFromResourceRequest {
|
|
591
644
|
OrganizationId: string | undefined;
|
|
@@ -736,6 +789,19 @@ export interface GetMobileDeviceAccessOverrideResponse {
|
|
|
736
789
|
DateCreated?: Date;
|
|
737
790
|
DateModified?: Date;
|
|
738
791
|
}
|
|
792
|
+
export interface GetPersonalAccessTokenMetadataRequest {
|
|
793
|
+
OrganizationId: string | undefined;
|
|
794
|
+
PersonalAccessTokenId: string | undefined;
|
|
795
|
+
}
|
|
796
|
+
export interface GetPersonalAccessTokenMetadataResponse {
|
|
797
|
+
PersonalAccessTokenId?: string;
|
|
798
|
+
UserId?: string;
|
|
799
|
+
Name?: string;
|
|
800
|
+
DateCreated?: Date;
|
|
801
|
+
DateLastUsed?: Date;
|
|
802
|
+
ExpiresTime?: Date;
|
|
803
|
+
Scopes?: string[];
|
|
804
|
+
}
|
|
739
805
|
export interface Group {
|
|
740
806
|
Id?: string;
|
|
741
807
|
Email?: string;
|
|
@@ -955,6 +1021,25 @@ export interface ListOrganizationsResponse {
|
|
|
955
1021
|
OrganizationSummaries?: OrganizationSummary[];
|
|
956
1022
|
NextToken?: string;
|
|
957
1023
|
}
|
|
1024
|
+
export interface ListPersonalAccessTokensRequest {
|
|
1025
|
+
OrganizationId: string | undefined;
|
|
1026
|
+
UserId?: string;
|
|
1027
|
+
NextToken?: string;
|
|
1028
|
+
MaxResults?: number;
|
|
1029
|
+
}
|
|
1030
|
+
export interface PersonalAccessTokenSummary {
|
|
1031
|
+
PersonalAccessTokenId?: string;
|
|
1032
|
+
UserId?: string;
|
|
1033
|
+
Name?: string;
|
|
1034
|
+
DateCreated?: Date;
|
|
1035
|
+
DateLastUsed?: Date;
|
|
1036
|
+
ExpiresTime?: Date;
|
|
1037
|
+
Scopes?: string[];
|
|
1038
|
+
}
|
|
1039
|
+
export interface ListPersonalAccessTokensResponse {
|
|
1040
|
+
NextToken?: string;
|
|
1041
|
+
PersonalAccessTokenSummaries?: PersonalAccessTokenSummary[];
|
|
1042
|
+
}
|
|
958
1043
|
export interface ListResourceDelegatesRequest {
|
|
959
1044
|
OrganizationId: string | undefined;
|
|
960
1045
|
ResourceId: string | undefined;
|
|
@@ -1005,6 +1090,7 @@ export interface ListUsersFilters {
|
|
|
1005
1090
|
DisplayNamePrefix?: string;
|
|
1006
1091
|
PrimaryEmailPrefix?: string;
|
|
1007
1092
|
State?: EntityState;
|
|
1093
|
+
IdentityProviderUserIdPrefix?: string;
|
|
1008
1094
|
}
|
|
1009
1095
|
export interface ListUsersRequest {
|
|
1010
1096
|
OrganizationId: string | undefined;
|
|
@@ -1021,6 +1107,8 @@ export interface User {
|
|
|
1021
1107
|
UserRole?: UserRole;
|
|
1022
1108
|
EnabledDate?: Date;
|
|
1023
1109
|
DisabledDate?: Date;
|
|
1110
|
+
IdentityProviderUserId?: string;
|
|
1111
|
+
IdentityProviderIdentityStoreId?: string;
|
|
1024
1112
|
}
|
|
1025
1113
|
export interface ListUsersResponse {
|
|
1026
1114
|
Users?: User[];
|
|
@@ -1047,6 +1135,15 @@ export interface PutEmailMonitoringConfigurationRequest {
|
|
|
1047
1135
|
LogGroupArn: string | undefined;
|
|
1048
1136
|
}
|
|
1049
1137
|
export interface PutEmailMonitoringConfigurationResponse {}
|
|
1138
|
+
export interface PutIdentityProviderConfigurationRequest {
|
|
1139
|
+
OrganizationId: string | undefined;
|
|
1140
|
+
AuthenticationMode: IdentityProviderAuthenticationMode | undefined;
|
|
1141
|
+
IdentityCenterConfiguration: IdentityCenterConfiguration | undefined;
|
|
1142
|
+
PersonalAccessTokenConfiguration:
|
|
1143
|
+
| PersonalAccessTokenConfiguration
|
|
1144
|
+
| undefined;
|
|
1145
|
+
}
|
|
1146
|
+
export interface PutIdentityProviderConfigurationResponse {}
|
|
1050
1147
|
export interface PutInboundDmarcSettingsRequest {
|
|
1051
1148
|
OrganizationId: string | undefined;
|
|
1052
1149
|
Enforced: boolean | undefined;
|
|
@@ -1217,6 +1314,7 @@ export interface UpdateUserRequest {
|
|
|
1217
1314
|
Department?: string;
|
|
1218
1315
|
Country?: string;
|
|
1219
1316
|
Office?: string;
|
|
1317
|
+
IdentityProviderUserId?: string;
|
|
1220
1318
|
}
|
|
1221
1319
|
export interface UpdateUserResponse {}
|
|
1222
1320
|
export declare const EwsAvailabilityProviderFilterSensitiveLog: (
|
|
@@ -1225,12 +1323,22 @@ export declare const EwsAvailabilityProviderFilterSensitiveLog: (
|
|
|
1225
1323
|
export declare const CreateAvailabilityConfigurationRequestFilterSensitiveLog: (
|
|
1226
1324
|
obj: CreateAvailabilityConfigurationRequest
|
|
1227
1325
|
) => any;
|
|
1326
|
+
export declare const CreateResourceRequestFilterSensitiveLog: (
|
|
1327
|
+
obj: CreateResourceRequest
|
|
1328
|
+
) => any;
|
|
1228
1329
|
export declare const CreateUserRequestFilterSensitiveLog: (
|
|
1229
1330
|
obj: CreateUserRequest
|
|
1230
1331
|
) => any;
|
|
1332
|
+
export declare const DescribeResourceResponseFilterSensitiveLog: (
|
|
1333
|
+
obj: DescribeResourceResponse
|
|
1334
|
+
) => any;
|
|
1231
1335
|
export declare const DescribeUserResponseFilterSensitiveLog: (
|
|
1232
1336
|
obj: DescribeUserResponse
|
|
1233
1337
|
) => any;
|
|
1338
|
+
export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
|
|
1339
|
+
export declare const ListResourcesResponseFilterSensitiveLog: (
|
|
1340
|
+
obj: ListResourcesResponse
|
|
1341
|
+
) => any;
|
|
1234
1342
|
export declare const ListUsersFiltersFilterSensitiveLog: (
|
|
1235
1343
|
obj: ListUsersFilters
|
|
1236
1344
|
) => any;
|
|
@@ -1249,6 +1357,9 @@ export declare const TestAvailabilityConfigurationRequestFilterSensitiveLog: (
|
|
|
1249
1357
|
export declare const UpdateAvailabilityConfigurationRequestFilterSensitiveLog: (
|
|
1250
1358
|
obj: UpdateAvailabilityConfigurationRequest
|
|
1251
1359
|
) => any;
|
|
1360
|
+
export declare const UpdateResourceRequestFilterSensitiveLog: (
|
|
1361
|
+
obj: UpdateResourceRequest
|
|
1362
|
+
) => any;
|
|
1252
1363
|
export declare const UpdateUserRequestFilterSensitiveLog: (
|
|
1253
1364
|
obj: UpdateUserRequest
|
|
1254
1365
|
) => any;
|