@aws-sdk/client-qapps 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.
Files changed (55) hide show
  1. package/dist-cjs/index.js +458 -318
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/AssociateLibraryItemReviewCommand.js +2 -2
  4. package/dist-es/commands/AssociateQAppWithUserCommand.js +2 -2
  5. package/dist-es/commands/BatchCreateCategoryCommand.js +2 -2
  6. package/dist-es/commands/BatchDeleteCategoryCommand.js +2 -2
  7. package/dist-es/commands/BatchUpdateCategoryCommand.js +2 -2
  8. package/dist-es/commands/CreateLibraryItemCommand.js +2 -2
  9. package/dist-es/commands/CreatePresignedUrlCommand.js +2 -2
  10. package/dist-es/commands/CreateQAppCommand.js +2 -2
  11. package/dist-es/commands/DeleteLibraryItemCommand.js +2 -2
  12. package/dist-es/commands/DeleteQAppCommand.js +2 -2
  13. package/dist-es/commands/DescribeQAppPermissionsCommand.js +2 -2
  14. package/dist-es/commands/DisassociateLibraryItemReviewCommand.js +2 -2
  15. package/dist-es/commands/DisassociateQAppFromUserCommand.js +2 -2
  16. package/dist-es/commands/ExportQAppSessionDataCommand.js +2 -2
  17. package/dist-es/commands/GetLibraryItemCommand.js +2 -2
  18. package/dist-es/commands/GetQAppCommand.js +2 -2
  19. package/dist-es/commands/GetQAppSessionCommand.js +2 -2
  20. package/dist-es/commands/GetQAppSessionMetadataCommand.js +2 -2
  21. package/dist-es/commands/ImportDocumentCommand.js +2 -2
  22. package/dist-es/commands/ListCategoriesCommand.js +2 -2
  23. package/dist-es/commands/ListLibraryItemsCommand.js +2 -2
  24. package/dist-es/commands/ListQAppSessionDataCommand.js +2 -2
  25. package/dist-es/commands/ListQAppsCommand.js +2 -2
  26. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  27. package/dist-es/commands/PredictQAppCommand.js +2 -2
  28. package/dist-es/commands/StartQAppSessionCommand.js +2 -2
  29. package/dist-es/commands/StopQAppSessionCommand.js +2 -2
  30. package/dist-es/commands/TagResourceCommand.js +2 -2
  31. package/dist-es/commands/UntagResourceCommand.js +2 -2
  32. package/dist-es/commands/UpdateLibraryItemCommand.js +2 -2
  33. package/dist-es/commands/UpdateLibraryItemMetadataCommand.js +2 -2
  34. package/dist-es/commands/UpdateQAppCommand.js +2 -2
  35. package/dist-es/commands/UpdateQAppPermissionsCommand.js +2 -2
  36. package/dist-es/commands/UpdateQAppSessionCommand.js +2 -2
  37. package/dist-es/commands/UpdateQAppSessionMetadataCommand.js +2 -2
  38. package/dist-es/index.js +1 -0
  39. package/dist-es/runtimeConfig.shared.js +6 -1
  40. package/dist-es/schemas/schemas_0.js +267 -267
  41. package/dist-types/QAppsClient.d.ts +1 -10
  42. package/dist-types/index.d.ts +1 -0
  43. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  44. package/dist-types/runtimeConfig.d.ts +6 -2
  45. package/dist-types/runtimeConfig.native.d.ts +6 -2
  46. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  47. package/dist-types/schemas/schemas_0.d.ts +141 -168
  48. package/dist-types/ts3.4/QAppsClient.d.ts +0 -4
  49. package/dist-types/ts3.4/index.d.ts +1 -0
  50. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  51. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  52. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  53. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  54. package/dist-types/ts3.4/schemas/schemas_0.d.ts +140 -169
  55. package/package.json +34 -34
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.qapps" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.qapps",
32
+ version: "2023-11-27",
33
+ serviceTarget: "QAppsService",
34
+ },
30
35
  serviceId: config?.serviceId ?? "QApps",
31
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
37
  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 { AssociateLibraryItemReview } from "../schemas/schemas_0";
4
+ import { AssociateLibraryItemReview$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AssociateLibraryItemReviewCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AssociateLibraryItemReviewCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "AssociateLibraryItemReview", {})
13
13
  .n("QAppsClient", "AssociateLibraryItemReviewCommand")
14
- .sc(AssociateLibraryItemReview)
14
+ .sc(AssociateLibraryItemReview$)
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 { AssociateQAppWithUser } from "../schemas/schemas_0";
4
+ import { AssociateQAppWithUser$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class AssociateQAppWithUserCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class AssociateQAppWithUserCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "AssociateQAppWithUser", {})
13
13
  .n("QAppsClient", "AssociateQAppWithUserCommand")
14
- .sc(AssociateQAppWithUser)
14
+ .sc(AssociateQAppWithUser$)
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 { BatchCreateCategory } from "../schemas/schemas_0";
4
+ import { BatchCreateCategory$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class BatchCreateCategoryCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class BatchCreateCategoryCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "BatchCreateCategory", {})
13
13
  .n("QAppsClient", "BatchCreateCategoryCommand")
14
- .sc(BatchCreateCategory)
14
+ .sc(BatchCreateCategory$)
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 { BatchDeleteCategory } from "../schemas/schemas_0";
4
+ import { BatchDeleteCategory$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class BatchDeleteCategoryCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class BatchDeleteCategoryCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "BatchDeleteCategory", {})
13
13
  .n("QAppsClient", "BatchDeleteCategoryCommand")
14
- .sc(BatchDeleteCategory)
14
+ .sc(BatchDeleteCategory$)
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 { BatchUpdateCategory } from "../schemas/schemas_0";
4
+ import { BatchUpdateCategory$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class BatchUpdateCategoryCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class BatchUpdateCategoryCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "BatchUpdateCategory", {})
13
13
  .n("QAppsClient", "BatchUpdateCategoryCommand")
14
- .sc(BatchUpdateCategory)
14
+ .sc(BatchUpdateCategory$)
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 { CreateLibraryItem } from "../schemas/schemas_0";
4
+ import { CreateLibraryItem$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateLibraryItemCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateLibraryItemCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "CreateLibraryItem", {})
13
13
  .n("QAppsClient", "CreateLibraryItemCommand")
14
- .sc(CreateLibraryItem)
14
+ .sc(CreateLibraryItem$)
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 { CreatePresignedUrl } from "../schemas/schemas_0";
4
+ import { CreatePresignedUrl$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreatePresignedUrlCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreatePresignedUrlCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "CreatePresignedUrl", {})
13
13
  .n("QAppsClient", "CreatePresignedUrlCommand")
14
- .sc(CreatePresignedUrl)
14
+ .sc(CreatePresignedUrl$)
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 { CreateQApp } from "../schemas/schemas_0";
4
+ import { CreateQApp$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateQAppCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateQAppCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "CreateQApp", {})
13
13
  .n("QAppsClient", "CreateQAppCommand")
14
- .sc(CreateQApp)
14
+ .sc(CreateQApp$)
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 { DeleteLibraryItem } from "../schemas/schemas_0";
4
+ import { DeleteLibraryItem$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteLibraryItemCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteLibraryItemCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "DeleteLibraryItem", {})
13
13
  .n("QAppsClient", "DeleteLibraryItemCommand")
14
- .sc(DeleteLibraryItem)
14
+ .sc(DeleteLibraryItem$)
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 { DeleteQApp } from "../schemas/schemas_0";
4
+ import { DeleteQApp$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteQAppCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteQAppCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "DeleteQApp", {})
13
13
  .n("QAppsClient", "DeleteQAppCommand")
14
- .sc(DeleteQApp)
14
+ .sc(DeleteQApp$)
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 { DescribeQAppPermissions } from "../schemas/schemas_0";
4
+ import { DescribeQAppPermissions$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeQAppPermissionsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeQAppPermissionsCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "DescribeQAppPermissions", {})
13
13
  .n("QAppsClient", "DescribeQAppPermissionsCommand")
14
- .sc(DescribeQAppPermissions)
14
+ .sc(DescribeQAppPermissions$)
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 { DisassociateLibraryItemReview } from "../schemas/schemas_0";
4
+ import { DisassociateLibraryItemReview$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DisassociateLibraryItemReviewCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DisassociateLibraryItemReviewCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "DisassociateLibraryItemReview", {})
13
13
  .n("QAppsClient", "DisassociateLibraryItemReviewCommand")
14
- .sc(DisassociateLibraryItemReview)
14
+ .sc(DisassociateLibraryItemReview$)
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 { DisassociateQAppFromUser } from "../schemas/schemas_0";
4
+ import { DisassociateQAppFromUser$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DisassociateQAppFromUserCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DisassociateQAppFromUserCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "DisassociateQAppFromUser", {})
13
13
  .n("QAppsClient", "DisassociateQAppFromUserCommand")
14
- .sc(DisassociateQAppFromUser)
14
+ .sc(DisassociateQAppFromUser$)
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 { ExportQAppSessionData } from "../schemas/schemas_0";
4
+ import { ExportQAppSessionData$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ExportQAppSessionDataCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ExportQAppSessionDataCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "ExportQAppSessionData", {})
13
13
  .n("QAppsClient", "ExportQAppSessionDataCommand")
14
- .sc(ExportQAppSessionData)
14
+ .sc(ExportQAppSessionData$)
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 { GetLibraryItem } from "../schemas/schemas_0";
4
+ import { GetLibraryItem$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetLibraryItemCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetLibraryItemCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "GetLibraryItem", {})
13
13
  .n("QAppsClient", "GetLibraryItemCommand")
14
- .sc(GetLibraryItem)
14
+ .sc(GetLibraryItem$)
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 { GetQApp } from "../schemas/schemas_0";
4
+ import { GetQApp$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetQAppCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetQAppCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "GetQApp", {})
13
13
  .n("QAppsClient", "GetQAppCommand")
14
- .sc(GetQApp)
14
+ .sc(GetQApp$)
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 { GetQAppSession } from "../schemas/schemas_0";
4
+ import { GetQAppSession$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetQAppSessionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetQAppSessionCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "GetQAppSession", {})
13
13
  .n("QAppsClient", "GetQAppSessionCommand")
14
- .sc(GetQAppSession)
14
+ .sc(GetQAppSession$)
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 { GetQAppSessionMetadata } from "../schemas/schemas_0";
4
+ import { GetQAppSessionMetadata$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class GetQAppSessionMetadataCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class GetQAppSessionMetadataCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "GetQAppSessionMetadata", {})
13
13
  .n("QAppsClient", "GetQAppSessionMetadataCommand")
14
- .sc(GetQAppSessionMetadata)
14
+ .sc(GetQAppSessionMetadata$)
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 { ImportDocument } from "../schemas/schemas_0";
4
+ import { ImportDocument$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ImportDocumentCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ImportDocumentCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "ImportDocument", {})
13
13
  .n("QAppsClient", "ImportDocumentCommand")
14
- .sc(ImportDocument)
14
+ .sc(ImportDocument$)
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 { ListCategories } from "../schemas/schemas_0";
4
+ import { ListCategories$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListCategoriesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListCategoriesCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "ListCategories", {})
13
13
  .n("QAppsClient", "ListCategoriesCommand")
14
- .sc(ListCategories)
14
+ .sc(ListCategories$)
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 { ListLibraryItems } from "../schemas/schemas_0";
4
+ import { ListLibraryItems$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListLibraryItemsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListLibraryItemsCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "ListLibraryItems", {})
13
13
  .n("QAppsClient", "ListLibraryItemsCommand")
14
- .sc(ListLibraryItems)
14
+ .sc(ListLibraryItems$)
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 { ListQAppSessionData } from "../schemas/schemas_0";
4
+ import { ListQAppSessionData$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListQAppSessionDataCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListQAppSessionDataCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "ListQAppSessionData", {})
13
13
  .n("QAppsClient", "ListQAppSessionDataCommand")
14
- .sc(ListQAppSessionData)
14
+ .sc(ListQAppSessionData$)
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 { ListQApps } from "../schemas/schemas_0";
4
+ import { ListQApps$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListQAppsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListQAppsCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "ListQApps", {})
13
13
  .n("QAppsClient", "ListQAppsCommand")
14
- .sc(ListQApps)
14
+ .sc(ListQApps$)
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 { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "ListTagsForResource", {})
13
13
  .n("QAppsClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
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 { PredictQApp } from "../schemas/schemas_0";
4
+ import { PredictQApp$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class PredictQAppCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class PredictQAppCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "PredictQApp", {})
13
13
  .n("QAppsClient", "PredictQAppCommand")
14
- .sc(PredictQApp)
14
+ .sc(PredictQApp$)
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 { StartQAppSession } from "../schemas/schemas_0";
4
+ import { StartQAppSession$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartQAppSessionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartQAppSessionCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "StartQAppSession", {})
13
13
  .n("QAppsClient", "StartQAppSessionCommand")
14
- .sc(StartQAppSession)
14
+ .sc(StartQAppSession$)
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 { StopQAppSession } from "../schemas/schemas_0";
4
+ import { StopQAppSession$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StopQAppSessionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StopQAppSessionCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "StopQAppSession", {})
13
13
  .n("QAppsClient", "StopQAppSessionCommand")
14
- .sc(StopQAppSession)
14
+ .sc(StopQAppSession$)
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 { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "TagResource", {})
13
13
  .n("QAppsClient", "TagResourceCommand")
14
- .sc(TagResource)
14
+ .sc(TagResource$)
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 { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "UntagResource", {})
13
13
  .n("QAppsClient", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
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 { UpdateLibraryItem } from "../schemas/schemas_0";
4
+ import { UpdateLibraryItem$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateLibraryItemCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateLibraryItemCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "UpdateLibraryItem", {})
13
13
  .n("QAppsClient", "UpdateLibraryItemCommand")
14
- .sc(UpdateLibraryItem)
14
+ .sc(UpdateLibraryItem$)
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 { UpdateLibraryItemMetadata } from "../schemas/schemas_0";
4
+ import { UpdateLibraryItemMetadata$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateLibraryItemMetadataCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateLibraryItemMetadataCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "UpdateLibraryItemMetadata", {})
13
13
  .n("QAppsClient", "UpdateLibraryItemMetadataCommand")
14
- .sc(UpdateLibraryItemMetadata)
14
+ .sc(UpdateLibraryItemMetadata$)
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 { UpdateQApp } from "../schemas/schemas_0";
4
+ import { UpdateQApp$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateQAppCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateQAppCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "UpdateQApp", {})
13
13
  .n("QAppsClient", "UpdateQAppCommand")
14
- .sc(UpdateQApp)
14
+ .sc(UpdateQApp$)
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 { UpdateQAppPermissions } from "../schemas/schemas_0";
4
+ import { UpdateQAppPermissions$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateQAppPermissionsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateQAppPermissionsCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "UpdateQAppPermissions", {})
13
13
  .n("QAppsClient", "UpdateQAppPermissionsCommand")
14
- .sc(UpdateQAppPermissions)
14
+ .sc(UpdateQAppPermissions$)
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 { UpdateQAppSession } from "../schemas/schemas_0";
4
+ import { UpdateQAppSession$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateQAppSessionCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateQAppSessionCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "UpdateQAppSession", {})
13
13
  .n("QAppsClient", "UpdateQAppSessionCommand")
14
- .sc(UpdateQAppSession)
14
+ .sc(UpdateQAppSession$)
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 { UpdateQAppSessionMetadata } from "../schemas/schemas_0";
4
+ import { UpdateQAppSessionMetadata$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateQAppSessionMetadataCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateQAppSessionMetadataCommand extends $Command
11
11
  })
12
12
  .s("QAppsService", "UpdateQAppSessionMetadata", {})
13
13
  .n("QAppsClient", "UpdateQAppSessionMetadataCommand")
14
- .sc(UpdateQAppSessionMetadata)
14
+ .sc(UpdateQAppSessionMetadata$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./QAppsClient";
2
2
  export * from "./QApps";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";