@aws-sdk/client-workdocs 3.169.0 → 3.171.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 +16 -0
- package/dist-types/ts3.4/WorkDocs.d.ts +707 -210
- package/dist-types/ts3.4/WorkDocsClient.d.ts +350 -114
- package/dist-types/ts3.4/commands/AbortDocumentVersionUploadCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/ActivateUserCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/AddResourcePermissionsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateCommentCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateCustomMetadataCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateFolderCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateLabelsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateNotificationSubscriptionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeactivateUserCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DeleteCommentCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DeleteCustomMetadataCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteDocumentCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DeleteFolderCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DeleteFolderContentsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteLabelsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteNotificationSubscriptionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DescribeActivitiesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeCommentsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeDocumentVersionsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeFolderContentsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeGroupsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeNotificationSubscriptionsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeResourcePermissionsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeRootFoldersCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeUsersCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetCurrentUserCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetDocumentCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetDocumentPathCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetDocumentVersionCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetFolderCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetFolderPathCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetResourcesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/InitiateDocumentVersionUploadCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/RemoveAllResourcePermissionsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/RemoveResourcePermissionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateDocumentCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/UpdateDocumentVersionCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateFolderCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +32 -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 +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1161 -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 +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -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 { DeleteLabelsRequest, DeleteLabelsResponse } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
WorkDocsClientResolvedConfig,
|
|
13
|
+
} from "../WorkDocsClient";
|
|
14
|
+
export interface DeleteLabelsCommandInput extends DeleteLabelsRequest {}
|
|
15
|
+
export interface DeleteLabelsCommandOutput
|
|
16
|
+
extends DeleteLabelsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class DeleteLabelsCommand extends $Command<
|
|
19
|
+
DeleteLabelsCommandInput,
|
|
20
|
+
DeleteLabelsCommandOutput,
|
|
21
|
+
WorkDocsClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteLabelsCommandInput;
|
|
24
|
+
constructor(input: DeleteLabelsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: WorkDocsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeleteLabelsCommandInput, DeleteLabelsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
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 { DeleteNotificationSubscriptionRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
WorkDocsClientResolvedConfig,
|
|
13
|
+
} from "../WorkDocsClient";
|
|
14
|
+
export interface DeleteNotificationSubscriptionCommandInput
|
|
15
|
+
extends DeleteNotificationSubscriptionRequest {}
|
|
16
|
+
export interface DeleteNotificationSubscriptionCommandOutput
|
|
17
|
+
extends __MetadataBearer {}
|
|
18
|
+
export declare class DeleteNotificationSubscriptionCommand extends $Command<
|
|
19
|
+
DeleteNotificationSubscriptionCommandInput,
|
|
20
|
+
DeleteNotificationSubscriptionCommandOutput,
|
|
21
|
+
WorkDocsClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteNotificationSubscriptionCommandInput;
|
|
24
|
+
constructor(input: DeleteNotificationSubscriptionCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: WorkDocsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<
|
|
30
|
+
DeleteNotificationSubscriptionCommandInput,
|
|
31
|
+
DeleteNotificationSubscriptionCommandOutput
|
|
32
|
+
>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,30 @@
|
|
|
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 { DeleteUserRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
WorkDocsClientResolvedConfig,
|
|
13
|
+
} from "../WorkDocsClient";
|
|
14
|
+
export interface DeleteUserCommandInput extends DeleteUserRequest {}
|
|
15
|
+
export interface DeleteUserCommandOutput extends __MetadataBearer {}
|
|
16
|
+
export declare class DeleteUserCommand extends $Command<
|
|
17
|
+
DeleteUserCommandInput,
|
|
18
|
+
DeleteUserCommandOutput,
|
|
19
|
+
WorkDocsClientResolvedConfig
|
|
20
|
+
> {
|
|
21
|
+
readonly input: DeleteUserCommandInput;
|
|
22
|
+
constructor(input: DeleteUserCommandInput);
|
|
23
|
+
resolveMiddleware(
|
|
24
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
25
|
+
configuration: WorkDocsClientResolvedConfig,
|
|
26
|
+
options?: __HttpHandlerOptions
|
|
27
|
+
): Handler<DeleteUserCommandInput, DeleteUserCommandOutput>;
|
|
28
|
+
private serialize;
|
|
29
|
+
private deserialize;
|
|
30
|
+
}
|
|
@@ -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 {
|
|
9
|
+
DescribeActivitiesRequest,
|
|
10
|
+
DescribeActivitiesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
WorkDocsClientResolvedConfig,
|
|
16
|
+
} from "../WorkDocsClient";
|
|
17
|
+
export interface DescribeActivitiesCommandInput
|
|
18
|
+
extends DescribeActivitiesRequest {}
|
|
19
|
+
export interface DescribeActivitiesCommandOutput
|
|
20
|
+
extends DescribeActivitiesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeActivitiesCommand extends $Command<
|
|
23
|
+
DescribeActivitiesCommandInput,
|
|
24
|
+
DescribeActivitiesCommandOutput,
|
|
25
|
+
WorkDocsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeActivitiesCommandInput;
|
|
28
|
+
constructor(input: DescribeActivitiesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: WorkDocsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DescribeActivitiesCommandInput, DescribeActivitiesCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
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 {
|
|
9
|
+
DescribeCommentsRequest,
|
|
10
|
+
DescribeCommentsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
WorkDocsClientResolvedConfig,
|
|
16
|
+
} from "../WorkDocsClient";
|
|
17
|
+
export interface DescribeCommentsCommandInput extends DescribeCommentsRequest {}
|
|
18
|
+
export interface DescribeCommentsCommandOutput
|
|
19
|
+
extends DescribeCommentsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DescribeCommentsCommand extends $Command<
|
|
22
|
+
DescribeCommentsCommandInput,
|
|
23
|
+
DescribeCommentsCommandOutput,
|
|
24
|
+
WorkDocsClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DescribeCommentsCommandInput;
|
|
27
|
+
constructor(input: DescribeCommentsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: WorkDocsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DescribeCommentsCommandInput, DescribeCommentsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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 {
|
|
9
|
+
DescribeDocumentVersionsRequest,
|
|
10
|
+
DescribeDocumentVersionsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
WorkDocsClientResolvedConfig,
|
|
16
|
+
} from "../WorkDocsClient";
|
|
17
|
+
export interface DescribeDocumentVersionsCommandInput
|
|
18
|
+
extends DescribeDocumentVersionsRequest {}
|
|
19
|
+
export interface DescribeDocumentVersionsCommandOutput
|
|
20
|
+
extends DescribeDocumentVersionsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeDocumentVersionsCommand extends $Command<
|
|
23
|
+
DescribeDocumentVersionsCommandInput,
|
|
24
|
+
DescribeDocumentVersionsCommandOutput,
|
|
25
|
+
WorkDocsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeDocumentVersionsCommandInput;
|
|
28
|
+
constructor(input: DescribeDocumentVersionsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: WorkDocsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeDocumentVersionsCommandInput,
|
|
35
|
+
DescribeDocumentVersionsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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 {
|
|
9
|
+
DescribeFolderContentsRequest,
|
|
10
|
+
DescribeFolderContentsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
WorkDocsClientResolvedConfig,
|
|
16
|
+
} from "../WorkDocsClient";
|
|
17
|
+
export interface DescribeFolderContentsCommandInput
|
|
18
|
+
extends DescribeFolderContentsRequest {}
|
|
19
|
+
export interface DescribeFolderContentsCommandOutput
|
|
20
|
+
extends DescribeFolderContentsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeFolderContentsCommand extends $Command<
|
|
23
|
+
DescribeFolderContentsCommandInput,
|
|
24
|
+
DescribeFolderContentsCommandOutput,
|
|
25
|
+
WorkDocsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeFolderContentsCommandInput;
|
|
28
|
+
constructor(input: DescribeFolderContentsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: WorkDocsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeFolderContentsCommandInput,
|
|
35
|
+
DescribeFolderContentsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
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 {
|
|
9
|
+
DescribeGroupsRequest,
|
|
10
|
+
DescribeGroupsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
WorkDocsClientResolvedConfig,
|
|
16
|
+
} from "../WorkDocsClient";
|
|
17
|
+
export interface DescribeGroupsCommandInput extends DescribeGroupsRequest {}
|
|
18
|
+
export interface DescribeGroupsCommandOutput
|
|
19
|
+
extends DescribeGroupsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DescribeGroupsCommand extends $Command<
|
|
22
|
+
DescribeGroupsCommandInput,
|
|
23
|
+
DescribeGroupsCommandOutput,
|
|
24
|
+
WorkDocsClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DescribeGroupsCommandInput;
|
|
27
|
+
constructor(input: DescribeGroupsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: WorkDocsClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DescribeGroupsCommandInput, DescribeGroupsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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 {
|
|
9
|
+
DescribeNotificationSubscriptionsRequest,
|
|
10
|
+
DescribeNotificationSubscriptionsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
WorkDocsClientResolvedConfig,
|
|
16
|
+
} from "../WorkDocsClient";
|
|
17
|
+
export interface DescribeNotificationSubscriptionsCommandInput
|
|
18
|
+
extends DescribeNotificationSubscriptionsRequest {}
|
|
19
|
+
export interface DescribeNotificationSubscriptionsCommandOutput
|
|
20
|
+
extends DescribeNotificationSubscriptionsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeNotificationSubscriptionsCommand extends $Command<
|
|
23
|
+
DescribeNotificationSubscriptionsCommandInput,
|
|
24
|
+
DescribeNotificationSubscriptionsCommandOutput,
|
|
25
|
+
WorkDocsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeNotificationSubscriptionsCommandInput;
|
|
28
|
+
constructor(input: DescribeNotificationSubscriptionsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: WorkDocsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeNotificationSubscriptionsCommandInput,
|
|
35
|
+
DescribeNotificationSubscriptionsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
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 {
|
|
9
|
+
DescribeResourcePermissionsRequest,
|
|
10
|
+
DescribeResourcePermissionsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
WorkDocsClientResolvedConfig,
|
|
16
|
+
} from "../WorkDocsClient";
|
|
17
|
+
export interface DescribeResourcePermissionsCommandInput
|
|
18
|
+
extends DescribeResourcePermissionsRequest {}
|
|
19
|
+
export interface DescribeResourcePermissionsCommandOutput
|
|
20
|
+
extends DescribeResourcePermissionsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeResourcePermissionsCommand extends $Command<
|
|
23
|
+
DescribeResourcePermissionsCommandInput,
|
|
24
|
+
DescribeResourcePermissionsCommandOutput,
|
|
25
|
+
WorkDocsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeResourcePermissionsCommandInput;
|
|
28
|
+
constructor(input: DescribeResourcePermissionsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: WorkDocsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeResourcePermissionsCommandInput,
|
|
35
|
+
DescribeResourcePermissionsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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 {
|
|
9
|
+
DescribeRootFoldersRequest,
|
|
10
|
+
DescribeRootFoldersResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
WorkDocsClientResolvedConfig,
|
|
16
|
+
} from "../WorkDocsClient";
|
|
17
|
+
export interface DescribeRootFoldersCommandInput
|
|
18
|
+
extends DescribeRootFoldersRequest {}
|
|
19
|
+
export interface DescribeRootFoldersCommandOutput
|
|
20
|
+
extends DescribeRootFoldersResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeRootFoldersCommand extends $Command<
|
|
23
|
+
DescribeRootFoldersCommandInput,
|
|
24
|
+
DescribeRootFoldersCommandOutput,
|
|
25
|
+
WorkDocsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeRootFoldersCommandInput;
|
|
28
|
+
constructor(input: DescribeRootFoldersCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: WorkDocsClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DescribeRootFoldersCommandInput, DescribeRootFoldersCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|