@aws-sdk/client-workdocs 3.169.0 → 3.170.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/WorkDocs.d.ts +748 -210
- package/dist-types/ts3.4/WorkDocsClient.d.ts +375 -114
- package/dist-types/ts3.4/commands/AbortDocumentVersionUploadCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ActivateUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/AddResourcePermissionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateCommentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateCustomMetadataCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateFolderCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateLabelsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateNotificationSubscriptionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeactivateUserCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteCommentCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteCustomMetadataCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteDocumentCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteFolderCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteFolderContentsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteLabelsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteNotificationSubscriptionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeActivitiesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeCommentsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeDocumentVersionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeFolderContentsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeGroupsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeNotificationSubscriptionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeResourcePermissionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeRootFoldersCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeUsersCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetCurrentUserCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetDocumentCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetDocumentPathCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetDocumentVersionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetFolderCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetFolderPathCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetResourcesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/InitiateDocumentVersionUploadCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/RemoveAllResourcePermissionsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RemoveResourcePermissionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateDocumentCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateDocumentVersionCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/UpdateFolderCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +41 -41
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/WorkDocsServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1576 -1426
- package/dist-types/ts3.4/pagination/DescribeDocumentVersionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeFolderContentsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeUsersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +497 -125
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { RemoveAllResourcePermissionsRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
WorkDocsClientResolvedConfig,
|
|
13
|
+
} from "../WorkDocsClient";
|
|
14
|
+
export interface RemoveAllResourcePermissionsCommandInput
|
|
15
|
+
extends RemoveAllResourcePermissionsRequest {}
|
|
16
|
+
export interface RemoveAllResourcePermissionsCommandOutput
|
|
17
|
+
extends __MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class RemoveAllResourcePermissionsCommand extends $Command<
|
|
20
|
+
RemoveAllResourcePermissionsCommandInput,
|
|
21
|
+
RemoveAllResourcePermissionsCommandOutput,
|
|
22
|
+
WorkDocsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: RemoveAllResourcePermissionsCommandInput;
|
|
25
|
+
constructor(input: RemoveAllResourcePermissionsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: WorkDocsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
RemoveAllResourcePermissionsCommandInput,
|
|
33
|
+
RemoveAllResourcePermissionsCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { RemoveResourcePermissionRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
WorkDocsClientResolvedConfig,
|
|
13
|
+
} from "../WorkDocsClient";
|
|
14
|
+
export interface RemoveResourcePermissionCommandInput
|
|
15
|
+
extends RemoveResourcePermissionRequest {}
|
|
16
|
+
export interface RemoveResourcePermissionCommandOutput
|
|
17
|
+
extends __MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class RemoveResourcePermissionCommand extends $Command<
|
|
20
|
+
RemoveResourcePermissionCommandInput,
|
|
21
|
+
RemoveResourcePermissionCommandOutput,
|
|
22
|
+
WorkDocsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: RemoveResourcePermissionCommandInput;
|
|
25
|
+
constructor(input: RemoveResourcePermissionCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: WorkDocsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
RemoveResourcePermissionCommandInput,
|
|
33
|
+
RemoveResourcePermissionCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { UpdateDocumentRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
WorkDocsClientResolvedConfig,
|
|
13
|
+
} from "../WorkDocsClient";
|
|
14
|
+
export interface UpdateDocumentCommandInput extends UpdateDocumentRequest {}
|
|
15
|
+
export interface UpdateDocumentCommandOutput extends __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class UpdateDocumentCommand extends $Command<
|
|
18
|
+
UpdateDocumentCommandInput,
|
|
19
|
+
UpdateDocumentCommandOutput,
|
|
20
|
+
WorkDocsClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: UpdateDocumentCommandInput;
|
|
23
|
+
constructor(input: UpdateDocumentCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: WorkDocsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<UpdateDocumentCommandInput, UpdateDocumentCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { UpdateDocumentVersionRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
WorkDocsClientResolvedConfig,
|
|
13
|
+
} from "../WorkDocsClient";
|
|
14
|
+
export interface UpdateDocumentVersionCommandInput
|
|
15
|
+
extends UpdateDocumentVersionRequest {}
|
|
16
|
+
export interface UpdateDocumentVersionCommandOutput extends __MetadataBearer {}
|
|
17
|
+
|
|
18
|
+
export declare class UpdateDocumentVersionCommand extends $Command<
|
|
19
|
+
UpdateDocumentVersionCommandInput,
|
|
20
|
+
UpdateDocumentVersionCommandOutput,
|
|
21
|
+
WorkDocsClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: UpdateDocumentVersionCommandInput;
|
|
24
|
+
constructor(input: UpdateDocumentVersionCommandInput);
|
|
25
|
+
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: WorkDocsClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<
|
|
31
|
+
UpdateDocumentVersionCommandInput,
|
|
32
|
+
UpdateDocumentVersionCommandOutput
|
|
33
|
+
>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { UpdateFolderRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
WorkDocsClientResolvedConfig,
|
|
13
|
+
} from "../WorkDocsClient";
|
|
14
|
+
export interface UpdateFolderCommandInput extends UpdateFolderRequest {}
|
|
15
|
+
export interface UpdateFolderCommandOutput extends __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class UpdateFolderCommand extends $Command<
|
|
18
|
+
UpdateFolderCommandInput,
|
|
19
|
+
UpdateFolderCommandOutput,
|
|
20
|
+
WorkDocsClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: UpdateFolderCommandInput;
|
|
23
|
+
constructor(input: UpdateFolderCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: WorkDocsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<UpdateFolderCommandInput, UpdateFolderCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { UpdateUserRequest, UpdateUserResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
WorkDocsClientResolvedConfig,
|
|
13
|
+
} from "../WorkDocsClient";
|
|
14
|
+
export interface UpdateUserCommandInput extends UpdateUserRequest {}
|
|
15
|
+
export interface UpdateUserCommandOutput
|
|
16
|
+
extends UpdateUserResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class UpdateUserCommand extends $Command<
|
|
20
|
+
UpdateUserCommandInput,
|
|
21
|
+
UpdateUserCommandOutput,
|
|
22
|
+
WorkDocsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UpdateUserCommandInput;
|
|
25
|
+
constructor(input: UpdateUserCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: WorkDocsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UpdateUserCommandInput, UpdateUserCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
export * from "./AbortDocumentVersionUploadCommand";
|
|
2
|
-
export * from "./ActivateUserCommand";
|
|
3
|
-
export * from "./AddResourcePermissionsCommand";
|
|
4
|
-
export * from "./CreateCommentCommand";
|
|
5
|
-
export * from "./CreateCustomMetadataCommand";
|
|
6
|
-
export * from "./CreateFolderCommand";
|
|
7
|
-
export * from "./CreateLabelsCommand";
|
|
8
|
-
export * from "./CreateNotificationSubscriptionCommand";
|
|
9
|
-
export * from "./CreateUserCommand";
|
|
10
|
-
export * from "./DeactivateUserCommand";
|
|
11
|
-
export * from "./DeleteCommentCommand";
|
|
12
|
-
export * from "./DeleteCustomMetadataCommand";
|
|
13
|
-
export * from "./DeleteDocumentCommand";
|
|
14
|
-
export * from "./DeleteFolderCommand";
|
|
15
|
-
export * from "./DeleteFolderContentsCommand";
|
|
16
|
-
export * from "./DeleteLabelsCommand";
|
|
17
|
-
export * from "./DeleteNotificationSubscriptionCommand";
|
|
18
|
-
export * from "./DeleteUserCommand";
|
|
19
|
-
export * from "./DescribeActivitiesCommand";
|
|
20
|
-
export * from "./DescribeCommentsCommand";
|
|
21
|
-
export * from "./DescribeDocumentVersionsCommand";
|
|
22
|
-
export * from "./DescribeFolderContentsCommand";
|
|
23
|
-
export * from "./DescribeGroupsCommand";
|
|
24
|
-
export * from "./DescribeNotificationSubscriptionsCommand";
|
|
25
|
-
export * from "./DescribeResourcePermissionsCommand";
|
|
26
|
-
export * from "./DescribeRootFoldersCommand";
|
|
27
|
-
export * from "./DescribeUsersCommand";
|
|
28
|
-
export * from "./GetCurrentUserCommand";
|
|
29
|
-
export * from "./GetDocumentCommand";
|
|
30
|
-
export * from "./GetDocumentPathCommand";
|
|
31
|
-
export * from "./GetDocumentVersionCommand";
|
|
32
|
-
export * from "./GetFolderCommand";
|
|
33
|
-
export * from "./GetFolderPathCommand";
|
|
34
|
-
export * from "./GetResourcesCommand";
|
|
35
|
-
export * from "./InitiateDocumentVersionUploadCommand";
|
|
36
|
-
export * from "./RemoveAllResourcePermissionsCommand";
|
|
37
|
-
export * from "./RemoveResourcePermissionCommand";
|
|
38
|
-
export * from "./UpdateDocumentCommand";
|
|
39
|
-
export * from "./UpdateDocumentVersionCommand";
|
|
40
|
-
export * from "./UpdateFolderCommand";
|
|
41
|
-
export * from "./UpdateUserCommand";
|
|
1
|
+
export * from "./AbortDocumentVersionUploadCommand";
|
|
2
|
+
export * from "./ActivateUserCommand";
|
|
3
|
+
export * from "./AddResourcePermissionsCommand";
|
|
4
|
+
export * from "./CreateCommentCommand";
|
|
5
|
+
export * from "./CreateCustomMetadataCommand";
|
|
6
|
+
export * from "./CreateFolderCommand";
|
|
7
|
+
export * from "./CreateLabelsCommand";
|
|
8
|
+
export * from "./CreateNotificationSubscriptionCommand";
|
|
9
|
+
export * from "./CreateUserCommand";
|
|
10
|
+
export * from "./DeactivateUserCommand";
|
|
11
|
+
export * from "./DeleteCommentCommand";
|
|
12
|
+
export * from "./DeleteCustomMetadataCommand";
|
|
13
|
+
export * from "./DeleteDocumentCommand";
|
|
14
|
+
export * from "./DeleteFolderCommand";
|
|
15
|
+
export * from "./DeleteFolderContentsCommand";
|
|
16
|
+
export * from "./DeleteLabelsCommand";
|
|
17
|
+
export * from "./DeleteNotificationSubscriptionCommand";
|
|
18
|
+
export * from "./DeleteUserCommand";
|
|
19
|
+
export * from "./DescribeActivitiesCommand";
|
|
20
|
+
export * from "./DescribeCommentsCommand";
|
|
21
|
+
export * from "./DescribeDocumentVersionsCommand";
|
|
22
|
+
export * from "./DescribeFolderContentsCommand";
|
|
23
|
+
export * from "./DescribeGroupsCommand";
|
|
24
|
+
export * from "./DescribeNotificationSubscriptionsCommand";
|
|
25
|
+
export * from "./DescribeResourcePermissionsCommand";
|
|
26
|
+
export * from "./DescribeRootFoldersCommand";
|
|
27
|
+
export * from "./DescribeUsersCommand";
|
|
28
|
+
export * from "./GetCurrentUserCommand";
|
|
29
|
+
export * from "./GetDocumentCommand";
|
|
30
|
+
export * from "./GetDocumentPathCommand";
|
|
31
|
+
export * from "./GetDocumentVersionCommand";
|
|
32
|
+
export * from "./GetFolderCommand";
|
|
33
|
+
export * from "./GetFolderPathCommand";
|
|
34
|
+
export * from "./GetResourcesCommand";
|
|
35
|
+
export * from "./InitiateDocumentVersionUploadCommand";
|
|
36
|
+
export * from "./RemoveAllResourcePermissionsCommand";
|
|
37
|
+
export * from "./RemoveResourcePermissionCommand";
|
|
38
|
+
export * from "./UpdateDocumentCommand";
|
|
39
|
+
export * from "./UpdateDocumentVersionCommand";
|
|
40
|
+
export * from "./UpdateFolderCommand";
|
|
41
|
+
export * from "./UpdateUserCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./WorkDocs";
|
|
2
|
-
export * from "./WorkDocsClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { WorkDocsServiceException } from "./models/WorkDocsServiceException";
|
|
1
|
+
export * from "./WorkDocs";
|
|
2
|
+
export * from "./WorkDocsClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { WorkDocsServiceException } from "./models/WorkDocsServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class WorkDocsServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|