@aws-sdk/client-workdocs 3.952.0 → 3.954.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 +614 -436
- package/dist-cjs/runtimeConfig.shared.js +7 -1
- package/dist-es/commands/AbortDocumentVersionUploadCommand.js +2 -2
- package/dist-es/commands/ActivateUserCommand.js +2 -2
- package/dist-es/commands/AddResourcePermissionsCommand.js +2 -2
- package/dist-es/commands/CreateCommentCommand.js +2 -2
- package/dist-es/commands/CreateCustomMetadataCommand.js +2 -2
- package/dist-es/commands/CreateFolderCommand.js +2 -2
- package/dist-es/commands/CreateLabelsCommand.js +2 -2
- package/dist-es/commands/CreateNotificationSubscriptionCommand.js +2 -2
- package/dist-es/commands/CreateUserCommand.js +2 -2
- package/dist-es/commands/DeactivateUserCommand.js +2 -2
- package/dist-es/commands/DeleteCommentCommand.js +2 -2
- package/dist-es/commands/DeleteCustomMetadataCommand.js +2 -2
- package/dist-es/commands/DeleteDocumentCommand.js +2 -2
- package/dist-es/commands/DeleteDocumentVersionCommand.js +2 -2
- package/dist-es/commands/DeleteFolderCommand.js +2 -2
- package/dist-es/commands/DeleteFolderContentsCommand.js +2 -2
- package/dist-es/commands/DeleteLabelsCommand.js +2 -2
- package/dist-es/commands/DeleteNotificationSubscriptionCommand.js +2 -2
- package/dist-es/commands/DeleteUserCommand.js +2 -2
- package/dist-es/commands/DescribeActivitiesCommand.js +2 -2
- package/dist-es/commands/DescribeCommentsCommand.js +2 -2
- package/dist-es/commands/DescribeDocumentVersionsCommand.js +2 -2
- package/dist-es/commands/DescribeFolderContentsCommand.js +2 -2
- package/dist-es/commands/DescribeGroupsCommand.js +2 -2
- package/dist-es/commands/DescribeNotificationSubscriptionsCommand.js +2 -2
- package/dist-es/commands/DescribeResourcePermissionsCommand.js +2 -2
- package/dist-es/commands/DescribeRootFoldersCommand.js +2 -2
- package/dist-es/commands/DescribeUsersCommand.js +2 -2
- package/dist-es/commands/GetCurrentUserCommand.js +2 -2
- package/dist-es/commands/GetDocumentCommand.js +2 -2
- package/dist-es/commands/GetDocumentPathCommand.js +2 -2
- package/dist-es/commands/GetDocumentVersionCommand.js +2 -2
- package/dist-es/commands/GetFolderCommand.js +2 -2
- package/dist-es/commands/GetFolderPathCommand.js +2 -2
- package/dist-es/commands/GetResourcesCommand.js +2 -2
- package/dist-es/commands/InitiateDocumentVersionUploadCommand.js +2 -2
- package/dist-es/commands/RemoveAllResourcePermissionsCommand.js +2 -2
- package/dist-es/commands/RemoveResourcePermissionCommand.js +2 -2
- package/dist-es/commands/RestoreDocumentVersionsCommand.js +2 -2
- package/dist-es/commands/SearchResourcesCommand.js +2 -2
- package/dist-es/commands/UpdateDocumentCommand.js +2 -2
- package/dist-es/commands/UpdateDocumentVersionCommand.js +2 -2
- package/dist-es/commands/UpdateFolderCommand.js +2 -2
- package/dist-es/commands/UpdateUserCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -1
- package/dist-es/schemas/schemas_0.js +351 -344
- package/dist-types/WorkDocsClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +172 -217
- package/dist-types/ts3.4/WorkDocsClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +171 -219
- package/package.json +34 -34
|
@@ -26,7 +26,13 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.workdocs",
|
|
32
|
+
xmlNamespace: "https://aws.amazon.com/api/v1/",
|
|
33
|
+
version: "2016-05-01",
|
|
34
|
+
serviceTarget: "AWSGorillaBoyService",
|
|
35
|
+
},
|
|
30
36
|
serviceId: config?.serviceId ?? "WorkDocs",
|
|
31
37
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
38
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AbortDocumentVersionUpload } from "../schemas/schemas_0";
|
|
4
|
+
import { AbortDocumentVersionUpload$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AbortDocumentVersionUploadCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AbortDocumentVersionUploadCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "AbortDocumentVersionUpload", {})
|
|
13
13
|
.n("WorkDocsClient", "AbortDocumentVersionUploadCommand")
|
|
14
|
-
.sc(AbortDocumentVersionUpload)
|
|
14
|
+
.sc(AbortDocumentVersionUpload$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ActivateUser } from "../schemas/schemas_0";
|
|
4
|
+
import { ActivateUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ActivateUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ActivateUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "ActivateUser", {})
|
|
13
13
|
.n("WorkDocsClient", "ActivateUserCommand")
|
|
14
|
-
.sc(ActivateUser)
|
|
14
|
+
.sc(ActivateUser$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { AddResourcePermissions } from "../schemas/schemas_0";
|
|
4
|
+
import { AddResourcePermissions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class AddResourcePermissionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class AddResourcePermissionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "AddResourcePermissions", {})
|
|
13
13
|
.n("WorkDocsClient", "AddResourcePermissionsCommand")
|
|
14
|
-
.sc(AddResourcePermissions)
|
|
14
|
+
.sc(AddResourcePermissions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateComment } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateComment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateCommentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateCommentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "CreateComment", {})
|
|
13
13
|
.n("WorkDocsClient", "CreateCommentCommand")
|
|
14
|
-
.sc(CreateComment)
|
|
14
|
+
.sc(CreateComment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateCustomMetadata } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateCustomMetadata$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateCustomMetadataCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateCustomMetadataCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "CreateCustomMetadata", {})
|
|
13
13
|
.n("WorkDocsClient", "CreateCustomMetadataCommand")
|
|
14
|
-
.sc(CreateCustomMetadata)
|
|
14
|
+
.sc(CreateCustomMetadata$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateFolder } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateFolder$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateFolderCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateFolderCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "CreateFolder", {})
|
|
13
13
|
.n("WorkDocsClient", "CreateFolderCommand")
|
|
14
|
-
.sc(CreateFolder)
|
|
14
|
+
.sc(CreateFolder$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateLabels } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLabels$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLabelsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLabelsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "CreateLabels", {})
|
|
13
13
|
.n("WorkDocsClient", "CreateLabelsCommand")
|
|
14
|
-
.sc(CreateLabels)
|
|
14
|
+
.sc(CreateLabels$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateNotificationSubscription } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateNotificationSubscription$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateNotificationSubscriptionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateNotificationSubscriptionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "CreateNotificationSubscription", {})
|
|
13
13
|
.n("WorkDocsClient", "CreateNotificationSubscriptionCommand")
|
|
14
|
-
.sc(CreateNotificationSubscription)
|
|
14
|
+
.sc(CreateNotificationSubscription$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateUser } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "CreateUser", {})
|
|
13
13
|
.n("WorkDocsClient", "CreateUserCommand")
|
|
14
|
-
.sc(CreateUser)
|
|
14
|
+
.sc(CreateUser$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeactivateUser } from "../schemas/schemas_0";
|
|
4
|
+
import { DeactivateUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeactivateUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeactivateUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "DeactivateUser", {})
|
|
13
13
|
.n("WorkDocsClient", "DeactivateUserCommand")
|
|
14
|
-
.sc(DeactivateUser)
|
|
14
|
+
.sc(DeactivateUser$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteComment } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteComment$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteCommentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteCommentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "DeleteComment", {})
|
|
13
13
|
.n("WorkDocsClient", "DeleteCommentCommand")
|
|
14
|
-
.sc(DeleteComment)
|
|
14
|
+
.sc(DeleteComment$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteCustomMetadata } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteCustomMetadata$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteCustomMetadataCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteCustomMetadataCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "DeleteCustomMetadata", {})
|
|
13
13
|
.n("WorkDocsClient", "DeleteCustomMetadataCommand")
|
|
14
|
-
.sc(DeleteCustomMetadata)
|
|
14
|
+
.sc(DeleteCustomMetadata$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteDocument } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteDocument$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteDocumentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteDocumentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "DeleteDocument", {})
|
|
13
13
|
.n("WorkDocsClient", "DeleteDocumentCommand")
|
|
14
|
-
.sc(DeleteDocument)
|
|
14
|
+
.sc(DeleteDocument$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteDocumentVersion } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteDocumentVersion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteDocumentVersionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteDocumentVersionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "DeleteDocumentVersion", {})
|
|
13
13
|
.n("WorkDocsClient", "DeleteDocumentVersionCommand")
|
|
14
|
-
.sc(DeleteDocumentVersion)
|
|
14
|
+
.sc(DeleteDocumentVersion$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteFolder } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteFolder$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteFolderCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteFolderCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "DeleteFolder", {})
|
|
13
13
|
.n("WorkDocsClient", "DeleteFolderCommand")
|
|
14
|
-
.sc(DeleteFolder)
|
|
14
|
+
.sc(DeleteFolder$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteFolderContents } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteFolderContents$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteFolderContentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteFolderContentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "DeleteFolderContents", {})
|
|
13
13
|
.n("WorkDocsClient", "DeleteFolderContentsCommand")
|
|
14
|
-
.sc(DeleteFolderContents)
|
|
14
|
+
.sc(DeleteFolderContents$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteLabels } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteLabels$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteLabelsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteLabelsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "DeleteLabels", {})
|
|
13
13
|
.n("WorkDocsClient", "DeleteLabelsCommand")
|
|
14
|
-
.sc(DeleteLabels)
|
|
14
|
+
.sc(DeleteLabels$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteNotificationSubscription } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteNotificationSubscription$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteNotificationSubscriptionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteNotificationSubscriptionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "DeleteNotificationSubscription", {})
|
|
13
13
|
.n("WorkDocsClient", "DeleteNotificationSubscriptionCommand")
|
|
14
|
-
.sc(DeleteNotificationSubscription)
|
|
14
|
+
.sc(DeleteNotificationSubscription$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteUser } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "DeleteUser", {})
|
|
13
13
|
.n("WorkDocsClient", "DeleteUserCommand")
|
|
14
|
-
.sc(DeleteUser)
|
|
14
|
+
.sc(DeleteUser$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeActivities } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeActivities$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeActivitiesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeActivitiesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "DescribeActivities", {})
|
|
13
13
|
.n("WorkDocsClient", "DescribeActivitiesCommand")
|
|
14
|
-
.sc(DescribeActivities)
|
|
14
|
+
.sc(DescribeActivities$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeComments } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeComments$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeCommentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeCommentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "DescribeComments", {})
|
|
13
13
|
.n("WorkDocsClient", "DescribeCommentsCommand")
|
|
14
|
-
.sc(DescribeComments)
|
|
14
|
+
.sc(DescribeComments$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeDocumentVersions } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeDocumentVersions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeDocumentVersionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeDocumentVersionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "DescribeDocumentVersions", {})
|
|
13
13
|
.n("WorkDocsClient", "DescribeDocumentVersionsCommand")
|
|
14
|
-
.sc(DescribeDocumentVersions)
|
|
14
|
+
.sc(DescribeDocumentVersions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeFolderContents } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeFolderContents$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeFolderContentsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeFolderContentsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "DescribeFolderContents", {})
|
|
13
13
|
.n("WorkDocsClient", "DescribeFolderContentsCommand")
|
|
14
|
-
.sc(DescribeFolderContents)
|
|
14
|
+
.sc(DescribeFolderContents$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "DescribeGroups", {})
|
|
13
13
|
.n("WorkDocsClient", "DescribeGroupsCommand")
|
|
14
|
-
.sc(DescribeGroups)
|
|
14
|
+
.sc(DescribeGroups$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeNotificationSubscriptions } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeNotificationSubscriptions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeNotificationSubscriptionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeNotificationSubscriptionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "DescribeNotificationSubscriptions", {})
|
|
13
13
|
.n("WorkDocsClient", "DescribeNotificationSubscriptionsCommand")
|
|
14
|
-
.sc(DescribeNotificationSubscriptions)
|
|
14
|
+
.sc(DescribeNotificationSubscriptions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeResourcePermissions } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeResourcePermissions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeResourcePermissionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeResourcePermissionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "DescribeResourcePermissions", {})
|
|
13
13
|
.n("WorkDocsClient", "DescribeResourcePermissionsCommand")
|
|
14
|
-
.sc(DescribeResourcePermissions)
|
|
14
|
+
.sc(DescribeResourcePermissions$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeRootFolders } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeRootFolders$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeRootFoldersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeRootFoldersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "DescribeRootFolders", {})
|
|
13
13
|
.n("WorkDocsClient", "DescribeRootFoldersCommand")
|
|
14
|
-
.sc(DescribeRootFolders)
|
|
14
|
+
.sc(DescribeRootFolders$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeUsers } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeUsers$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeUsersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeUsersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "DescribeUsers", {})
|
|
13
13
|
.n("WorkDocsClient", "DescribeUsersCommand")
|
|
14
|
-
.sc(DescribeUsers)
|
|
14
|
+
.sc(DescribeUsers$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetCurrentUser } from "../schemas/schemas_0";
|
|
4
|
+
import { GetCurrentUser$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetCurrentUserCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetCurrentUserCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "GetCurrentUser", {})
|
|
13
13
|
.n("WorkDocsClient", "GetCurrentUserCommand")
|
|
14
|
-
.sc(GetCurrentUser)
|
|
14
|
+
.sc(GetCurrentUser$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDocument } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDocument$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDocumentCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDocumentCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "GetDocument", {})
|
|
13
13
|
.n("WorkDocsClient", "GetDocumentCommand")
|
|
14
|
-
.sc(GetDocument)
|
|
14
|
+
.sc(GetDocument$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDocumentPath } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDocumentPath$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDocumentPathCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDocumentPathCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "GetDocumentPath", {})
|
|
13
13
|
.n("WorkDocsClient", "GetDocumentPathCommand")
|
|
14
|
-
.sc(GetDocumentPath)
|
|
14
|
+
.sc(GetDocumentPath$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDocumentVersion } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDocumentVersion$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDocumentVersionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDocumentVersionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "GetDocumentVersion", {})
|
|
13
13
|
.n("WorkDocsClient", "GetDocumentVersionCommand")
|
|
14
|
-
.sc(GetDocumentVersion)
|
|
14
|
+
.sc(GetDocumentVersion$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetFolder } from "../schemas/schemas_0";
|
|
4
|
+
import { GetFolder$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetFolderCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetFolderCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "GetFolder", {})
|
|
13
13
|
.n("WorkDocsClient", "GetFolderCommand")
|
|
14
|
-
.sc(GetFolder)
|
|
14
|
+
.sc(GetFolder$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetFolderPath } from "../schemas/schemas_0";
|
|
4
|
+
import { GetFolderPath$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetFolderPathCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetFolderPathCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "GetFolderPath", {})
|
|
13
13
|
.n("WorkDocsClient", "GetFolderPathCommand")
|
|
14
|
-
.sc(GetFolderPath)
|
|
14
|
+
.sc(GetFolderPath$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetResources } from "../schemas/schemas_0";
|
|
4
|
+
import { GetResources$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetResourcesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetResourcesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AWSGorillaBoyService", "GetResources", {})
|
|
13
13
|
.n("WorkDocsClient", "GetResourcesCommand")
|
|
14
|
-
.sc(GetResources)
|
|
14
|
+
.sc(GetResources$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|