@aws-sdk/client-elementalinference 3.997.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 (119) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +271 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +362 -0
  7. package/dist-cjs/models/ElementalInferenceServiceException.js +12 -0
  8. package/dist-cjs/models/errors.js +98 -0
  9. package/dist-cjs/runtimeConfig.browser.js +38 -0
  10. package/dist-cjs/runtimeConfig.js +53 -0
  11. package/dist-cjs/runtimeConfig.native.js +15 -0
  12. package/dist-cjs/runtimeConfig.shared.js +43 -0
  13. package/dist-cjs/schemas/schemas_0.js +309 -0
  14. package/dist-es/ElementalInference.js +35 -0
  15. package/dist-es/ElementalInferenceClient.js +50 -0
  16. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  17. package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
  18. package/dist-es/commands/AssociateFeedCommand.js +16 -0
  19. package/dist-es/commands/CreateFeedCommand.js +16 -0
  20. package/dist-es/commands/DeleteFeedCommand.js +16 -0
  21. package/dist-es/commands/DisassociateFeedCommand.js +16 -0
  22. package/dist-es/commands/GetFeedCommand.js +16 -0
  23. package/dist-es/commands/ListFeedsCommand.js +16 -0
  24. package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
  25. package/dist-es/commands/TagResourceCommand.js +16 -0
  26. package/dist-es/commands/UntagResourceCommand.js +16 -0
  27. package/dist-es/commands/UpdateFeedCommand.js +16 -0
  28. package/dist-es/commands/index.js +10 -0
  29. package/dist-es/endpoint/EndpointParameters.js +13 -0
  30. package/dist-es/endpoint/endpointResolver.js +14 -0
  31. package/dist-es/endpoint/ruleset.js +4 -0
  32. package/dist-es/extensionConfiguration.js +1 -0
  33. package/dist-es/index.js +10 -0
  34. package/dist-es/models/ElementalInferenceServiceException.js +8 -0
  35. package/dist-es/models/enums.js +13 -0
  36. package/dist-es/models/errors.js +88 -0
  37. package/dist-es/models/models_0.js +1 -0
  38. package/dist-es/pagination/Interfaces.js +1 -0
  39. package/dist-es/pagination/ListFeedsPaginator.js +4 -0
  40. package/dist-es/pagination/index.js +2 -0
  41. package/dist-es/runtimeConfig.browser.js +33 -0
  42. package/dist-es/runtimeConfig.js +48 -0
  43. package/dist-es/runtimeConfig.native.js +11 -0
  44. package/dist-es/runtimeConfig.shared.js +39 -0
  45. package/dist-es/runtimeExtensions.js +9 -0
  46. package/dist-es/schemas/schemas_0.js +306 -0
  47. package/dist-es/waiters/index.js +1 -0
  48. package/dist-es/waiters/waitForFeedDeleted.js +49 -0
  49. package/dist-types/ElementalInference.d.ts +95 -0
  50. package/dist-types/ElementalInferenceClient.d.ts +197 -0
  51. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  52. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  53. package/dist-types/commands/AssociateFeedCommand.d.ts +111 -0
  54. package/dist-types/commands/CreateFeedCommand.d.ts +134 -0
  55. package/dist-types/commands/DeleteFeedCommand.d.ts +94 -0
  56. package/dist-types/commands/DisassociateFeedCommand.d.ts +95 -0
  57. package/dist-types/commands/GetFeedCommand.d.ts +112 -0
  58. package/dist-types/commands/ListFeedsCommand.d.ts +101 -0
  59. package/dist-types/commands/ListTagsForResourceCommand.d.ts +91 -0
  60. package/dist-types/commands/TagResourceCommand.d.ts +93 -0
  61. package/dist-types/commands/UntagResourceCommand.d.ts +93 -0
  62. package/dist-types/commands/UpdateFeedCommand.d.ts +136 -0
  63. package/dist-types/commands/index.d.ts +10 -0
  64. package/dist-types/endpoint/EndpointParameters.d.ts +50 -0
  65. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  66. package/dist-types/endpoint/ruleset.d.ts +2 -0
  67. package/dist-types/extensionConfiguration.d.ts +9 -0
  68. package/dist-types/index.d.ts +18 -0
  69. package/dist-types/models/ElementalInferenceServiceException.d.ts +14 -0
  70. package/dist-types/models/enums.d.ts +29 -0
  71. package/dist-types/models/errors.d.ts +89 -0
  72. package/dist-types/models/models_0.d.ts +563 -0
  73. package/dist-types/pagination/Interfaces.d.ts +8 -0
  74. package/dist-types/pagination/ListFeedsPaginator.d.ts +7 -0
  75. package/dist-types/pagination/index.d.ts +2 -0
  76. package/dist-types/runtimeConfig.browser.d.ts +55 -0
  77. package/dist-types/runtimeConfig.d.ts +55 -0
  78. package/dist-types/runtimeConfig.native.d.ts +54 -0
  79. package/dist-types/runtimeConfig.shared.d.ts +27 -0
  80. package/dist-types/runtimeExtensions.d.ts +17 -0
  81. package/dist-types/schemas/schemas_0.d.ts +52 -0
  82. package/dist-types/ts3.4/ElementalInference.d.ts +200 -0
  83. package/dist-types/ts3.4/ElementalInferenceClient.d.ts +182 -0
  84. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  85. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  86. package/dist-types/ts3.4/commands/AssociateFeedCommand.d.ts +50 -0
  87. package/dist-types/ts3.4/commands/CreateFeedCommand.d.ts +47 -0
  88. package/dist-types/ts3.4/commands/DeleteFeedCommand.d.ts +47 -0
  89. package/dist-types/ts3.4/commands/DisassociateFeedCommand.d.ts +50 -0
  90. package/dist-types/ts3.4/commands/GetFeedCommand.d.ts +43 -0
  91. package/dist-types/ts3.4/commands/ListFeedsCommand.d.ts +47 -0
  92. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  93. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +45 -0
  94. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +45 -0
  95. package/dist-types/ts3.4/commands/UpdateFeedCommand.d.ts +47 -0
  96. package/dist-types/ts3.4/commands/index.d.ts +10 -0
  97. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  98. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  99. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  100. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  101. package/dist-types/ts3.4/index.d.ts +13 -0
  102. package/dist-types/ts3.4/models/ElementalInferenceServiceException.d.ts +9 -0
  103. package/dist-types/ts3.4/models/enums.d.ts +15 -0
  104. package/dist-types/ts3.4/models/errors.d.ts +52 -0
  105. package/dist-types/ts3.4/models/models_0.d.ts +153 -0
  106. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  107. package/dist-types/ts3.4/pagination/ListFeedsPaginator.d.ts +11 -0
  108. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  109. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +102 -0
  110. package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
  111. package/dist-types/ts3.4/runtimeConfig.native.d.ts +106 -0
  112. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +32 -0
  113. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  114. package/dist-types/ts3.4/schemas/schemas_0.d.ts +52 -0
  115. package/dist-types/ts3.4/waiters/index.d.ts +1 -0
  116. package/dist-types/ts3.4/waiters/waitForFeedDeleted.d.ts +11 -0
  117. package/dist-types/waiters/index.d.ts +1 -0
  118. package/dist-types/waiters/waitForFeedDeleted.d.ts +14 -0
  119. package/package.json +101 -0
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ElementalInferenceClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ElementalInferenceClient";
8
+ import {
9
+ AssociateFeedRequest,
10
+ AssociateFeedResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface AssociateFeedCommandInput extends AssociateFeedRequest {}
15
+ export interface AssociateFeedCommandOutput
16
+ extends AssociateFeedResponse,
17
+ __MetadataBearer {}
18
+ declare const AssociateFeedCommand_base: {
19
+ new (
20
+ input: AssociateFeedCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ AssociateFeedCommandInput,
23
+ AssociateFeedCommandOutput,
24
+ ElementalInferenceClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: AssociateFeedCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ AssociateFeedCommandInput,
32
+ AssociateFeedCommandOutput,
33
+ ElementalInferenceClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class AssociateFeedCommand extends AssociateFeedCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: AssociateFeedRequest;
43
+ output: AssociateFeedResponse;
44
+ };
45
+ sdk: {
46
+ input: AssociateFeedCommandInput;
47
+ output: AssociateFeedCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ElementalInferenceClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ElementalInferenceClient";
8
+ import { CreateFeedRequest, CreateFeedResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface CreateFeedCommandInput extends CreateFeedRequest {}
12
+ export interface CreateFeedCommandOutput
13
+ extends CreateFeedResponse,
14
+ __MetadataBearer {}
15
+ declare const CreateFeedCommand_base: {
16
+ new (
17
+ input: CreateFeedCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ CreateFeedCommandInput,
20
+ CreateFeedCommandOutput,
21
+ ElementalInferenceClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: CreateFeedCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ CreateFeedCommandInput,
29
+ CreateFeedCommandOutput,
30
+ ElementalInferenceClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class CreateFeedCommand extends CreateFeedCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: CreateFeedRequest;
40
+ output: CreateFeedResponse;
41
+ };
42
+ sdk: {
43
+ input: CreateFeedCommandInput;
44
+ output: CreateFeedCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ElementalInferenceClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ElementalInferenceClient";
8
+ import { DeleteFeedRequest, DeleteFeedResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteFeedCommandInput extends DeleteFeedRequest {}
12
+ export interface DeleteFeedCommandOutput
13
+ extends DeleteFeedResponse,
14
+ __MetadataBearer {}
15
+ declare const DeleteFeedCommand_base: {
16
+ new (
17
+ input: DeleteFeedCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ DeleteFeedCommandInput,
20
+ DeleteFeedCommandOutput,
21
+ ElementalInferenceClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: DeleteFeedCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ DeleteFeedCommandInput,
29
+ DeleteFeedCommandOutput,
30
+ ElementalInferenceClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class DeleteFeedCommand extends DeleteFeedCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: DeleteFeedRequest;
40
+ output: DeleteFeedResponse;
41
+ };
42
+ sdk: {
43
+ input: DeleteFeedCommandInput;
44
+ output: DeleteFeedCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ElementalInferenceClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ElementalInferenceClient";
8
+ import {
9
+ DisassociateFeedRequest,
10
+ DisassociateFeedResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DisassociateFeedCommandInput extends DisassociateFeedRequest {}
15
+ export interface DisassociateFeedCommandOutput
16
+ extends DisassociateFeedResponse,
17
+ __MetadataBearer {}
18
+ declare const DisassociateFeedCommand_base: {
19
+ new (
20
+ input: DisassociateFeedCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DisassociateFeedCommandInput,
23
+ DisassociateFeedCommandOutput,
24
+ ElementalInferenceClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: DisassociateFeedCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DisassociateFeedCommandInput,
32
+ DisassociateFeedCommandOutput,
33
+ ElementalInferenceClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DisassociateFeedCommand extends DisassociateFeedCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: DisassociateFeedRequest;
43
+ output: DisassociateFeedResponse;
44
+ };
45
+ sdk: {
46
+ input: DisassociateFeedCommandInput;
47
+ output: DisassociateFeedCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,43 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ElementalInferenceClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ElementalInferenceClient";
8
+ import { GetFeedRequest, GetFeedResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetFeedCommandInput extends GetFeedRequest {}
12
+ export interface GetFeedCommandOutput
13
+ extends GetFeedResponse,
14
+ __MetadataBearer {}
15
+ declare const GetFeedCommand_base: {
16
+ new (input: GetFeedCommandInput): import("@smithy/smithy-client").CommandImpl<
17
+ GetFeedCommandInput,
18
+ GetFeedCommandOutput,
19
+ ElementalInferenceClientResolvedConfig,
20
+ ServiceInputTypes,
21
+ ServiceOutputTypes
22
+ >;
23
+ new (input: GetFeedCommandInput): import("@smithy/smithy-client").CommandImpl<
24
+ GetFeedCommandInput,
25
+ GetFeedCommandOutput,
26
+ ElementalInferenceClientResolvedConfig,
27
+ ServiceInputTypes,
28
+ ServiceOutputTypes
29
+ >;
30
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
31
+ };
32
+ export declare class GetFeedCommand extends GetFeedCommand_base {
33
+ protected static __types: {
34
+ api: {
35
+ input: GetFeedRequest;
36
+ output: GetFeedResponse;
37
+ };
38
+ sdk: {
39
+ input: GetFeedCommandInput;
40
+ output: GetFeedCommandOutput;
41
+ };
42
+ };
43
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ElementalInferenceClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ElementalInferenceClient";
8
+ import { ListFeedsRequest, ListFeedsResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListFeedsCommandInput extends ListFeedsRequest {}
12
+ export interface ListFeedsCommandOutput
13
+ extends ListFeedsResponse,
14
+ __MetadataBearer {}
15
+ declare const ListFeedsCommand_base: {
16
+ new (
17
+ input: ListFeedsCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListFeedsCommandInput,
20
+ ListFeedsCommandOutput,
21
+ ElementalInferenceClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ ...[input]: [] | [ListFeedsCommandInput]
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListFeedsCommandInput,
29
+ ListFeedsCommandOutput,
30
+ ElementalInferenceClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListFeedsCommand extends ListFeedsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListFeedsRequest;
40
+ output: ListFeedsResponse;
41
+ };
42
+ sdk: {
43
+ input: ListFeedsCommandInput;
44
+ output: ListFeedsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ElementalInferenceClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ElementalInferenceClient";
8
+ import {
9
+ ListTagsForResourceRequest,
10
+ ListTagsForResourceResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListTagsForResourceCommandInput
15
+ extends ListTagsForResourceRequest {}
16
+ export interface ListTagsForResourceCommandOutput
17
+ extends ListTagsForResourceResponse,
18
+ __MetadataBearer {}
19
+ declare const ListTagsForResourceCommand_base: {
20
+ new (
21
+ input: ListTagsForResourceCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ ElementalInferenceClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListTagsForResourceCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListTagsForResourceCommandInput,
33
+ ListTagsForResourceCommandOutput,
34
+ ElementalInferenceClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListTagsForResourceRequest;
44
+ output: ListTagsForResourceResponse;
45
+ };
46
+ sdk: {
47
+ input: ListTagsForResourceCommandInput;
48
+ output: ListTagsForResourceCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,45 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ElementalInferenceClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ElementalInferenceClient";
8
+ import { TagResourceRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface TagResourceCommandInput extends TagResourceRequest {}
12
+ export interface TagResourceCommandOutput extends __MetadataBearer {}
13
+ declare const TagResourceCommand_base: {
14
+ new (
15
+ input: TagResourceCommandInput
16
+ ): import("@smithy/smithy-client").CommandImpl<
17
+ TagResourceCommandInput,
18
+ TagResourceCommandOutput,
19
+ ElementalInferenceClientResolvedConfig,
20
+ ServiceInputTypes,
21
+ ServiceOutputTypes
22
+ >;
23
+ new (
24
+ input: TagResourceCommandInput
25
+ ): import("@smithy/smithy-client").CommandImpl<
26
+ TagResourceCommandInput,
27
+ TagResourceCommandOutput,
28
+ ElementalInferenceClientResolvedConfig,
29
+ ServiceInputTypes,
30
+ ServiceOutputTypes
31
+ >;
32
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
+ };
34
+ export declare class TagResourceCommand extends TagResourceCommand_base {
35
+ protected static __types: {
36
+ api: {
37
+ input: TagResourceRequest;
38
+ output: {};
39
+ };
40
+ sdk: {
41
+ input: TagResourceCommandInput;
42
+ output: TagResourceCommandOutput;
43
+ };
44
+ };
45
+ }
@@ -0,0 +1,45 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ElementalInferenceClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ElementalInferenceClient";
8
+ import { UntagResourceRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
12
+ export interface UntagResourceCommandOutput extends __MetadataBearer {}
13
+ declare const UntagResourceCommand_base: {
14
+ new (
15
+ input: UntagResourceCommandInput
16
+ ): import("@smithy/smithy-client").CommandImpl<
17
+ UntagResourceCommandInput,
18
+ UntagResourceCommandOutput,
19
+ ElementalInferenceClientResolvedConfig,
20
+ ServiceInputTypes,
21
+ ServiceOutputTypes
22
+ >;
23
+ new (
24
+ input: UntagResourceCommandInput
25
+ ): import("@smithy/smithy-client").CommandImpl<
26
+ UntagResourceCommandInput,
27
+ UntagResourceCommandOutput,
28
+ ElementalInferenceClientResolvedConfig,
29
+ ServiceInputTypes,
30
+ ServiceOutputTypes
31
+ >;
32
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
+ };
34
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
35
+ protected static __types: {
36
+ api: {
37
+ input: UntagResourceRequest;
38
+ output: {};
39
+ };
40
+ sdk: {
41
+ input: UntagResourceCommandInput;
42
+ output: UntagResourceCommandOutput;
43
+ };
44
+ };
45
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ElementalInferenceClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../ElementalInferenceClient";
8
+ import { UpdateFeedRequest, UpdateFeedResponse } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface UpdateFeedCommandInput extends UpdateFeedRequest {}
12
+ export interface UpdateFeedCommandOutput
13
+ extends UpdateFeedResponse,
14
+ __MetadataBearer {}
15
+ declare const UpdateFeedCommand_base: {
16
+ new (
17
+ input: UpdateFeedCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ UpdateFeedCommandInput,
20
+ UpdateFeedCommandOutput,
21
+ ElementalInferenceClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: UpdateFeedCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ UpdateFeedCommandInput,
29
+ UpdateFeedCommandOutput,
30
+ ElementalInferenceClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class UpdateFeedCommand extends UpdateFeedCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: UpdateFeedRequest;
40
+ output: UpdateFeedResponse;
41
+ };
42
+ sdk: {
43
+ input: UpdateFeedCommandInput;
44
+ output: UpdateFeedCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,10 @@
1
+ export * from "./AssociateFeedCommand";
2
+ export * from "./CreateFeedCommand";
3
+ export * from "./DeleteFeedCommand";
4
+ export * from "./DisassociateFeedCommand";
5
+ export * from "./GetFeedCommand";
6
+ export * from "./ListFeedsCommand";
7
+ export * from "./ListTagsForResourceCommand";
8
+ export * from "./TagResourceCommand";
9
+ export * from "./UntagResourceCommand";
10
+ export * from "./UpdateFeedCommand";
@@ -0,0 +1,51 @@
1
+ import {
2
+ Endpoint,
3
+ EndpointParameters as __EndpointParameters,
4
+ EndpointV2,
5
+ Provider,
6
+ } from "@smithy/types";
7
+ export interface ClientInputEndpointParameters {
8
+ region?: string | undefined | Provider<string | undefined>;
9
+ useDualstackEndpoint?: boolean | undefined | Provider<boolean | undefined>;
10
+ useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
11
+ endpoint?:
12
+ | string
13
+ | Provider<string>
14
+ | Endpoint
15
+ | Provider<Endpoint>
16
+ | EndpointV2
17
+ | Provider<EndpointV2>;
18
+ }
19
+ export type ClientResolvedEndpointParameters = Pick<
20
+ ClientInputEndpointParameters,
21
+ Exclude<keyof ClientInputEndpointParameters, "endpoint">
22
+ > & {
23
+ defaultSigningName: string;
24
+ };
25
+ export declare const resolveClientEndpointParameters: <T>(
26
+ options: T & ClientInputEndpointParameters
27
+ ) => T & ClientResolvedEndpointParameters;
28
+ export declare const commonParams: {
29
+ readonly UseFIPS: {
30
+ readonly type: "builtInParams";
31
+ readonly name: "useFipsEndpoint";
32
+ };
33
+ readonly Endpoint: {
34
+ readonly type: "builtInParams";
35
+ readonly name: "endpoint";
36
+ };
37
+ readonly Region: {
38
+ readonly type: "builtInParams";
39
+ readonly name: "region";
40
+ };
41
+ readonly UseDualStack: {
42
+ readonly type: "builtInParams";
43
+ readonly name: "useDualstackEndpoint";
44
+ };
45
+ };
46
+ export interface EndpointParameters extends __EndpointParameters {
47
+ Region?: string | undefined;
48
+ UseDualStack?: boolean | undefined;
49
+ UseFIPS?: boolean | undefined;
50
+ Endpoint?: string | undefined;
51
+ }
@@ -0,0 +1,8 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (
4
+ endpointParams: EndpointParameters,
5
+ context?: {
6
+ logger?: Logger;
7
+ }
8
+ ) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,9 @@
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
+ export interface ElementalInferenceExtensionConfiguration
6
+ extends HttpHandlerExtensionConfiguration,
7
+ DefaultExtensionConfiguration,
8
+ AwsRegionExtensionConfiguration,
9
+ HttpAuthExtensionConfiguration {}
@@ -0,0 +1,13 @@
1
+ export * from "./ElementalInferenceClient";
2
+ export * from "./ElementalInference";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
+ export { RuntimeExtension } from "./runtimeExtensions";
5
+ export { ElementalInferenceExtensionConfiguration } from "./extensionConfiguration";
6
+ export * from "./commands";
7
+ export * from "./schemas/schemas_0";
8
+ export * from "./pagination";
9
+ export * from "./waiters";
10
+ export * from "./models/enums";
11
+ export * from "./models/errors";
12
+ export * from "./models/models_0";
13
+ export { ElementalInferenceServiceException } from "./models/ElementalInferenceServiceException";
@@ -0,0 +1,9 @@
1
+ import {
2
+ ServiceExceptionOptions as __ServiceExceptionOptions,
3
+ ServiceException as __ServiceException,
4
+ } from "@smithy/smithy-client";
5
+ export { __ServiceExceptionOptions };
6
+ export { __ServiceException };
7
+ export declare class ElementalInferenceServiceException extends __ServiceException {
8
+ constructor(options: __ServiceExceptionOptions);
9
+ }
@@ -0,0 +1,15 @@
1
+ export declare const OutputStatus: {
2
+ readonly DISABLED: "DISABLED";
3
+ readonly ENABLED: "ENABLED";
4
+ };
5
+ export type OutputStatus = (typeof OutputStatus)[keyof typeof OutputStatus];
6
+ export declare const FeedStatus: {
7
+ readonly ACTIVE: "ACTIVE";
8
+ readonly ARCHIVED: "ARCHIVED";
9
+ readonly AVAILABLE: "AVAILABLE";
10
+ readonly CREATING: "CREATING";
11
+ readonly DELETED: "DELETED";
12
+ readonly DELETING: "DELETING";
13
+ readonly UPDATING: "UPDATING";
14
+ };
15
+ export type FeedStatus = (typeof FeedStatus)[keyof typeof FeedStatus];
@@ -0,0 +1,52 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ElementalInferenceServiceException as __BaseException } from "./ElementalInferenceServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
+ );
9
+ }
10
+ export declare class ConflictException extends __BaseException {
11
+ readonly name: "ConflictException";
12
+ readonly $fault: "client";
13
+ $retryable: {};
14
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
15
+ }
16
+ export declare class InternalServerErrorException extends __BaseException {
17
+ readonly name: "InternalServerErrorException";
18
+ readonly $fault: "server";
19
+ $retryable: {};
20
+ constructor(
21
+ opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
22
+ );
23
+ }
24
+ export declare class ResourceNotFoundException extends __BaseException {
25
+ readonly name: "ResourceNotFoundException";
26
+ readonly $fault: "client";
27
+ constructor(
28
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
29
+ );
30
+ }
31
+ export declare class ServiceQuotaExceededException extends __BaseException {
32
+ readonly name: "ServiceQuotaExceededException";
33
+ readonly $fault: "client";
34
+ constructor(
35
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
36
+ );
37
+ }
38
+ export declare class TooManyRequestException extends __BaseException {
39
+ readonly name: "TooManyRequestException";
40
+ readonly $fault: "client";
41
+ $retryable: {};
42
+ constructor(
43
+ opts: __ExceptionOptionType<TooManyRequestException, __BaseException>
44
+ );
45
+ }
46
+ export declare class ValidationException extends __BaseException {
47
+ readonly name: "ValidationException";
48
+ readonly $fault: "client";
49
+ constructor(
50
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
51
+ );
52
+ }