@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.
- package/LICENSE +201 -0
- package/README.md +271 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +362 -0
- package/dist-cjs/models/ElementalInferenceServiceException.js +12 -0
- package/dist-cjs/models/errors.js +98 -0
- package/dist-cjs/runtimeConfig.browser.js +38 -0
- package/dist-cjs/runtimeConfig.js +53 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +43 -0
- package/dist-cjs/schemas/schemas_0.js +309 -0
- package/dist-es/ElementalInference.js +35 -0
- package/dist-es/ElementalInferenceClient.js +50 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/dist-es/commands/AssociateFeedCommand.js +16 -0
- package/dist-es/commands/CreateFeedCommand.js +16 -0
- package/dist-es/commands/DeleteFeedCommand.js +16 -0
- package/dist-es/commands/DisassociateFeedCommand.js +16 -0
- package/dist-es/commands/GetFeedCommand.js +16 -0
- package/dist-es/commands/ListFeedsCommand.js +16 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/dist-es/commands/TagResourceCommand.js +16 -0
- package/dist-es/commands/UntagResourceCommand.js +16 -0
- package/dist-es/commands/UpdateFeedCommand.js +16 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/endpoint/EndpointParameters.js +13 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +10 -0
- package/dist-es/models/ElementalInferenceServiceException.js +8 -0
- package/dist-es/models/enums.js +13 -0
- package/dist-es/models/errors.js +88 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListFeedsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/runtimeConfig.browser.js +33 -0
- package/dist-es/runtimeConfig.js +48 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +39 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +306 -0
- package/dist-es/waiters/index.js +1 -0
- package/dist-es/waiters/waitForFeedDeleted.js +49 -0
- package/dist-types/ElementalInference.d.ts +95 -0
- package/dist-types/ElementalInferenceClient.d.ts +197 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/AssociateFeedCommand.d.ts +111 -0
- package/dist-types/commands/CreateFeedCommand.d.ts +134 -0
- package/dist-types/commands/DeleteFeedCommand.d.ts +94 -0
- package/dist-types/commands/DisassociateFeedCommand.d.ts +95 -0
- package/dist-types/commands/GetFeedCommand.d.ts +112 -0
- package/dist-types/commands/ListFeedsCommand.d.ts +101 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +91 -0
- package/dist-types/commands/TagResourceCommand.d.ts +93 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +93 -0
- package/dist-types/commands/UpdateFeedCommand.d.ts +136 -0
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +50 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +18 -0
- package/dist-types/models/ElementalInferenceServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +29 -0
- package/dist-types/models/errors.d.ts +89 -0
- package/dist-types/models/models_0.d.ts +563 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListFeedsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +55 -0
- package/dist-types/runtimeConfig.d.ts +55 -0
- package/dist-types/runtimeConfig.native.d.ts +54 -0
- package/dist-types/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +52 -0
- package/dist-types/ts3.4/ElementalInference.d.ts +200 -0
- package/dist-types/ts3.4/ElementalInferenceClient.d.ts +182 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/AssociateFeedCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateFeedCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteFeedCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DisassociateFeedCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetFeedCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListFeedsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/UpdateFeedCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +13 -0
- package/dist-types/ts3.4/models/ElementalInferenceServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +15 -0
- package/dist-types/ts3.4/models/errors.d.ts +52 -0
- package/dist-types/ts3.4/models/models_0.d.ts +153 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListFeedsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +102 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +106 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +32 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +52 -0
- package/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/dist-types/ts3.4/waiters/waitForFeedDeleted.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +1 -0
- package/dist-types/waiters/waitForFeedDeleted.d.ts +14 -0
- package/package.json +101 -0
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
import { FeedStatus, OutputStatus } from "./enums";
|
|
2
|
+
export interface ClippingConfig {
|
|
3
|
+
callbackMetadata?: string | undefined;
|
|
4
|
+
}
|
|
5
|
+
export interface CroppingConfig {}
|
|
6
|
+
export type OutputConfig =
|
|
7
|
+
| OutputConfig.ClippingMember
|
|
8
|
+
| OutputConfig.CroppingMember
|
|
9
|
+
| OutputConfig.$UnknownMember;
|
|
10
|
+
export declare namespace OutputConfig {
|
|
11
|
+
interface CroppingMember {
|
|
12
|
+
cropping: CroppingConfig;
|
|
13
|
+
clipping?: never;
|
|
14
|
+
$unknown?: never;
|
|
15
|
+
}
|
|
16
|
+
interface ClippingMember {
|
|
17
|
+
cropping?: never;
|
|
18
|
+
clipping: ClippingConfig;
|
|
19
|
+
$unknown?: never;
|
|
20
|
+
}
|
|
21
|
+
interface $UnknownMember {
|
|
22
|
+
cropping?: never;
|
|
23
|
+
clipping?: never;
|
|
24
|
+
$unknown: [string, any];
|
|
25
|
+
}
|
|
26
|
+
interface Visitor<T> {
|
|
27
|
+
cropping: (value: CroppingConfig) => T;
|
|
28
|
+
clipping: (value: ClippingConfig) => T;
|
|
29
|
+
_: (name: string, value: any) => T;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
export interface CreateOutput {
|
|
33
|
+
name: string | undefined;
|
|
34
|
+
outputConfig: OutputConfig | undefined;
|
|
35
|
+
status: OutputStatus | undefined;
|
|
36
|
+
description?: string | undefined;
|
|
37
|
+
}
|
|
38
|
+
export interface AssociateFeedRequest {
|
|
39
|
+
id: string | undefined;
|
|
40
|
+
associatedResourceName?: string | undefined;
|
|
41
|
+
outputs: CreateOutput[] | undefined;
|
|
42
|
+
dryRun?: boolean | undefined;
|
|
43
|
+
}
|
|
44
|
+
export interface AssociateFeedResponse {
|
|
45
|
+
arn: string | undefined;
|
|
46
|
+
id: string | undefined;
|
|
47
|
+
}
|
|
48
|
+
export interface CreateFeedRequest {
|
|
49
|
+
name: string | undefined;
|
|
50
|
+
outputs: CreateOutput[] | undefined;
|
|
51
|
+
tags?: Record<string, string> | undefined;
|
|
52
|
+
}
|
|
53
|
+
export interface FeedAssociation {
|
|
54
|
+
associatedResourceName: string | undefined;
|
|
55
|
+
}
|
|
56
|
+
export interface GetOutput {
|
|
57
|
+
name: string | undefined;
|
|
58
|
+
outputConfig: OutputConfig | undefined;
|
|
59
|
+
status: OutputStatus | undefined;
|
|
60
|
+
description?: string | undefined;
|
|
61
|
+
fromAssociation?: boolean | undefined;
|
|
62
|
+
}
|
|
63
|
+
export interface CreateFeedResponse {
|
|
64
|
+
arn: string | undefined;
|
|
65
|
+
name: string | undefined;
|
|
66
|
+
id: string | undefined;
|
|
67
|
+
dataEndpoints: string[] | undefined;
|
|
68
|
+
outputs: GetOutput[] | undefined;
|
|
69
|
+
status: FeedStatus | undefined;
|
|
70
|
+
association?: FeedAssociation | undefined;
|
|
71
|
+
tags?: Record<string, string> | undefined;
|
|
72
|
+
}
|
|
73
|
+
export interface DeleteFeedRequest {
|
|
74
|
+
id: string | undefined;
|
|
75
|
+
}
|
|
76
|
+
export interface DeleteFeedResponse {
|
|
77
|
+
arn: string | undefined;
|
|
78
|
+
id: string | undefined;
|
|
79
|
+
status: FeedStatus | undefined;
|
|
80
|
+
}
|
|
81
|
+
export interface DisassociateFeedRequest {
|
|
82
|
+
id: string | undefined;
|
|
83
|
+
associatedResourceName?: string | undefined;
|
|
84
|
+
dryRun?: boolean | undefined;
|
|
85
|
+
}
|
|
86
|
+
export interface DisassociateFeedResponse {
|
|
87
|
+
arn: string | undefined;
|
|
88
|
+
id: string | undefined;
|
|
89
|
+
}
|
|
90
|
+
export interface GetFeedRequest {
|
|
91
|
+
id: string | undefined;
|
|
92
|
+
}
|
|
93
|
+
export interface GetFeedResponse {
|
|
94
|
+
arn: string | undefined;
|
|
95
|
+
name: string | undefined;
|
|
96
|
+
id: string | undefined;
|
|
97
|
+
dataEndpoints: string[] | undefined;
|
|
98
|
+
outputs: GetOutput[] | undefined;
|
|
99
|
+
status: FeedStatus | undefined;
|
|
100
|
+
association?: FeedAssociation | undefined;
|
|
101
|
+
tags?: Record<string, string> | undefined;
|
|
102
|
+
}
|
|
103
|
+
export interface ListFeedsRequest {
|
|
104
|
+
maxResults?: number | undefined;
|
|
105
|
+
nextToken?: string | undefined;
|
|
106
|
+
}
|
|
107
|
+
export interface FeedSummary {
|
|
108
|
+
arn: string | undefined;
|
|
109
|
+
id: string | undefined;
|
|
110
|
+
name: string | undefined;
|
|
111
|
+
association?: FeedAssociation | undefined;
|
|
112
|
+
status: FeedStatus | undefined;
|
|
113
|
+
}
|
|
114
|
+
export interface ListFeedsResponse {
|
|
115
|
+
feeds: FeedSummary[] | undefined;
|
|
116
|
+
nextToken?: string | undefined;
|
|
117
|
+
}
|
|
118
|
+
export interface UpdateOutput {
|
|
119
|
+
name: string | undefined;
|
|
120
|
+
outputConfig: OutputConfig | undefined;
|
|
121
|
+
status: OutputStatus | undefined;
|
|
122
|
+
description?: string | undefined;
|
|
123
|
+
fromAssociation?: boolean | undefined;
|
|
124
|
+
}
|
|
125
|
+
export interface UpdateFeedRequest {
|
|
126
|
+
name: string | undefined;
|
|
127
|
+
id: string | undefined;
|
|
128
|
+
outputs: UpdateOutput[] | undefined;
|
|
129
|
+
}
|
|
130
|
+
export interface UpdateFeedResponse {
|
|
131
|
+
arn: string | undefined;
|
|
132
|
+
name: string | undefined;
|
|
133
|
+
id: string | undefined;
|
|
134
|
+
dataEndpoints: string[] | undefined;
|
|
135
|
+
outputs: GetOutput[] | undefined;
|
|
136
|
+
status: FeedStatus | undefined;
|
|
137
|
+
association?: FeedAssociation | undefined;
|
|
138
|
+
tags?: Record<string, string> | undefined;
|
|
139
|
+
}
|
|
140
|
+
export interface ListTagsForResourceRequest {
|
|
141
|
+
resourceArn: string | undefined;
|
|
142
|
+
}
|
|
143
|
+
export interface ListTagsForResourceResponse {
|
|
144
|
+
tags?: Record<string, string> | undefined;
|
|
145
|
+
}
|
|
146
|
+
export interface TagResourceRequest {
|
|
147
|
+
resourceArn: string | undefined;
|
|
148
|
+
tags: Record<string, string> | undefined;
|
|
149
|
+
}
|
|
150
|
+
export interface UntagResourceRequest {
|
|
151
|
+
resourceArn: string | undefined;
|
|
152
|
+
tagKeys: string[] | undefined;
|
|
153
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListFeedsCommandInput,
|
|
4
|
+
ListFeedsCommandOutput,
|
|
5
|
+
} from "../commands/ListFeedsCommand";
|
|
6
|
+
import { ElementalInferencePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListFeeds: (
|
|
8
|
+
config: ElementalInferencePaginationConfiguration,
|
|
9
|
+
input: ListFeedsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListFeedsCommandOutput>;
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { ElementalInferenceClientConfig } from "./ElementalInferenceClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: ElementalInferenceClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
8
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
_: unknown
|
|
15
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
16
|
+
defaultUserAgentProvider: (
|
|
17
|
+
config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
18
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
21
|
+
requestHandler:
|
|
22
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
23
|
+
| RequestHandler;
|
|
24
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
26
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
27
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
28
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
29
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
30
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
31
|
+
cacheMiddleware?: boolean | undefined;
|
|
32
|
+
protocol:
|
|
33
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
34
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
35
|
+
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
36
|
+
protocolSettings: {
|
|
37
|
+
defaultNamespace?: string;
|
|
38
|
+
[setting: string]: unknown;
|
|
39
|
+
};
|
|
40
|
+
apiVersion: string;
|
|
41
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
42
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
43
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
44
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
45
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
46
|
+
disableHostPrefix: boolean;
|
|
47
|
+
serviceId: string;
|
|
48
|
+
profile?: string;
|
|
49
|
+
logger: import("@smithy/types").Logger;
|
|
50
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
51
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
52
|
+
userAgentAppId?:
|
|
53
|
+
| string
|
|
54
|
+
| undefined
|
|
55
|
+
| import("@smithy/types").Provider<string | undefined>;
|
|
56
|
+
retryStrategy?:
|
|
57
|
+
| import("@smithy/types").RetryStrategy
|
|
58
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
59
|
+
endpoint?:
|
|
60
|
+
| ((
|
|
61
|
+
| string
|
|
62
|
+
| import("@smithy/types").Endpoint
|
|
63
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
64
|
+
| import("@smithy/types").EndpointV2
|
|
65
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
66
|
+
) &
|
|
67
|
+
(
|
|
68
|
+
| string
|
|
69
|
+
| import("@smithy/types").Provider<string>
|
|
70
|
+
| import("@smithy/types").Endpoint
|
|
71
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
72
|
+
| import("@smithy/types").EndpointV2
|
|
73
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
74
|
+
))
|
|
75
|
+
| undefined;
|
|
76
|
+
endpointProvider: (
|
|
77
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
78
|
+
context?: {
|
|
79
|
+
logger?: import("@smithy/types").Logger;
|
|
80
|
+
}
|
|
81
|
+
) => import("@smithy/types").EndpointV2;
|
|
82
|
+
tls?: boolean;
|
|
83
|
+
serviceConfiguredEndpoint?: never;
|
|
84
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
85
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
86
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ElementalInferenceHttpAuthSchemeProvider;
|
|
87
|
+
credentials?:
|
|
88
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
89
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
90
|
+
signer?:
|
|
91
|
+
| import("@smithy/types").RequestSigner
|
|
92
|
+
| ((
|
|
93
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
94
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
95
|
+
signingEscapePath?: boolean;
|
|
96
|
+
systemClockOffset?: number;
|
|
97
|
+
signingRegion?: string;
|
|
98
|
+
signerConstructor?: new (
|
|
99
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
100
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
101
|
+
) => import("@smithy/types").RequestSigner;
|
|
102
|
+
};
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { ElementalInferenceClientConfig } from "./ElementalInferenceClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: ElementalInferenceClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
8
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
11
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
|
+
credentialDefaultProvider:
|
|
13
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
14
|
+
| ((
|
|
15
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
16
|
+
) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
17
|
+
defaultUserAgentProvider: (
|
|
18
|
+
config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
19
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
20
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
21
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
22
|
+
requestHandler:
|
|
23
|
+
| RequestHandler
|
|
24
|
+
| import("@smithy/protocol-http").HttpHandler<any>;
|
|
25
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
27
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
28
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
29
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
30
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
31
|
+
cacheMiddleware?: boolean | undefined;
|
|
32
|
+
protocol:
|
|
33
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
34
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
35
|
+
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
36
|
+
protocolSettings: {
|
|
37
|
+
defaultNamespace?: string;
|
|
38
|
+
[setting: string]: unknown;
|
|
39
|
+
};
|
|
40
|
+
apiVersion: string;
|
|
41
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
42
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
43
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
44
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
45
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
46
|
+
disableHostPrefix: boolean;
|
|
47
|
+
serviceId: string;
|
|
48
|
+
profile?: string;
|
|
49
|
+
logger: import("@smithy/types").Logger;
|
|
50
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
51
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
52
|
+
retryStrategy?:
|
|
53
|
+
| import("@smithy/types").RetryStrategy
|
|
54
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
55
|
+
endpoint?:
|
|
56
|
+
| ((
|
|
57
|
+
| string
|
|
58
|
+
| import("@smithy/types").Endpoint
|
|
59
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
60
|
+
| import("@smithy/types").EndpointV2
|
|
61
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
62
|
+
) &
|
|
63
|
+
(
|
|
64
|
+
| string
|
|
65
|
+
| import("@smithy/types").Provider<string>
|
|
66
|
+
| import("@smithy/types").Endpoint
|
|
67
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
68
|
+
| import("@smithy/types").EndpointV2
|
|
69
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
70
|
+
))
|
|
71
|
+
| undefined;
|
|
72
|
+
endpointProvider: (
|
|
73
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
74
|
+
context?: {
|
|
75
|
+
logger?: import("@smithy/types").Logger;
|
|
76
|
+
}
|
|
77
|
+
) => import("@smithy/types").EndpointV2;
|
|
78
|
+
tls?: boolean;
|
|
79
|
+
serviceConfiguredEndpoint?: never;
|
|
80
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
81
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ElementalInferenceHttpAuthSchemeProvider;
|
|
82
|
+
credentials?:
|
|
83
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
84
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
85
|
+
signer?:
|
|
86
|
+
| import("@smithy/types").RequestSigner
|
|
87
|
+
| ((
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
89
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
90
|
+
signingEscapePath?: boolean;
|
|
91
|
+
systemClockOffset?: number;
|
|
92
|
+
signingRegion?: string;
|
|
93
|
+
signerConstructor?: new (
|
|
94
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
96
|
+
) => import("@smithy/types").RequestSigner;
|
|
97
|
+
};
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import { ElementalInferenceClientConfig } from "./ElementalInferenceClient";
|
|
2
|
+
export declare const getRuntimeConfig: (
|
|
3
|
+
config: ElementalInferenceClientConfig
|
|
4
|
+
) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
7
|
+
requestHandler:
|
|
8
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
9
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
10
|
+
| Record<string, unknown>
|
|
11
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
12
|
+
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
13
|
+
cacheMiddleware?: boolean;
|
|
14
|
+
protocol:
|
|
15
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
16
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
17
|
+
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
18
|
+
protocolSettings: {
|
|
19
|
+
defaultNamespace?: string;
|
|
20
|
+
[setting: string]: unknown;
|
|
21
|
+
};
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
24
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
25
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
26
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
27
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
28
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
29
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
30
|
+
disableHostPrefix: boolean;
|
|
31
|
+
serviceId: string;
|
|
32
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
34
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
35
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
36
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
37
|
+
profile?: string;
|
|
38
|
+
defaultUserAgentProvider: (
|
|
39
|
+
config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
40
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
41
|
+
credentialDefaultProvider:
|
|
42
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
43
|
+
| ((
|
|
44
|
+
_: unknown
|
|
45
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
46
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
47
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
48
|
+
logger: import("@smithy/types").Logger;
|
|
49
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
50
|
+
defaultsMode:
|
|
51
|
+
| import("@smithy/smithy-client").DefaultsMode
|
|
52
|
+
| import("@smithy/types").Provider<
|
|
53
|
+
import("@smithy/smithy-client").DefaultsMode
|
|
54
|
+
>;
|
|
55
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
+
userAgentAppId?:
|
|
57
|
+
| string
|
|
58
|
+
| undefined
|
|
59
|
+
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
+
retryStrategy?:
|
|
61
|
+
| import("@smithy/types").RetryStrategy
|
|
62
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
63
|
+
endpoint?:
|
|
64
|
+
| ((
|
|
65
|
+
| string
|
|
66
|
+
| import("@smithy/types").Endpoint
|
|
67
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
68
|
+
| import("@smithy/types").EndpointV2
|
|
69
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
70
|
+
) &
|
|
71
|
+
(
|
|
72
|
+
| string
|
|
73
|
+
| import("@smithy/types").Provider<string>
|
|
74
|
+
| import("@smithy/types").Endpoint
|
|
75
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
76
|
+
| import("@smithy/types").EndpointV2
|
|
77
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
78
|
+
))
|
|
79
|
+
| undefined;
|
|
80
|
+
endpointProvider: (
|
|
81
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
|
+
context?: {
|
|
83
|
+
logger?: import("@smithy/types").Logger;
|
|
84
|
+
}
|
|
85
|
+
) => import("@smithy/types").EndpointV2;
|
|
86
|
+
tls?: boolean;
|
|
87
|
+
serviceConfiguredEndpoint?: never;
|
|
88
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
89
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
90
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ElementalInferenceHttpAuthSchemeProvider;
|
|
91
|
+
credentials?:
|
|
92
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
93
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
94
|
+
signer?:
|
|
95
|
+
| import("@smithy/types").RequestSigner
|
|
96
|
+
| ((
|
|
97
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
98
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
|
+
signingEscapePath?: boolean;
|
|
100
|
+
systemClockOffset?: number;
|
|
101
|
+
signingRegion?: string;
|
|
102
|
+
signerConstructor?: new (
|
|
103
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
105
|
+
) => import("@smithy/types").RequestSigner;
|
|
106
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
2
|
+
import { ElementalInferenceClientConfig } from "./ElementalInferenceClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: ElementalInferenceClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
apiVersion: string;
|
|
7
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
9
|
+
disableHostPrefix: boolean;
|
|
10
|
+
endpointProvider: (
|
|
11
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
12
|
+
context?: {
|
|
13
|
+
logger?: import("@smithy/types").Logger;
|
|
14
|
+
}
|
|
15
|
+
) => import("@smithy/types").EndpointV2;
|
|
16
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
17
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ElementalInferenceHttpAuthSchemeProvider;
|
|
18
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
19
|
+
logger: import("@smithy/types").Logger;
|
|
20
|
+
protocol:
|
|
21
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
22
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
23
|
+
| typeof AwsRestJsonProtocol;
|
|
24
|
+
protocolSettings: {
|
|
25
|
+
[setting: string]: unknown;
|
|
26
|
+
defaultNamespace?: string;
|
|
27
|
+
};
|
|
28
|
+
serviceId: string;
|
|
29
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
30
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
31
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
32
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ElementalInferenceExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configure(
|
|
4
|
+
extensionConfiguration: ElementalInferenceExtensionConfiguration
|
|
5
|
+
): void;
|
|
6
|
+
}
|
|
7
|
+
export interface RuntimeExtensionsConfig {
|
|
8
|
+
extensions: RuntimeExtension[];
|
|
9
|
+
}
|
|
10
|
+
export declare const resolveRuntimeExtensions: (
|
|
11
|
+
runtimeConfig: any,
|
|
12
|
+
extensions: RuntimeExtension[]
|
|
13
|
+
) => any;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
+
import {
|
|
3
|
+
StaticErrorSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticStructureSchema,
|
|
6
|
+
StaticUnionSchema,
|
|
7
|
+
} from "@smithy/types";
|
|
8
|
+
export declare var ElementalInferenceServiceException$: StaticErrorSchema;
|
|
9
|
+
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
10
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
11
|
+
export declare var InternalServerErrorException$: StaticErrorSchema;
|
|
12
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
13
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
14
|
+
export declare var TooManyRequestException$: StaticErrorSchema;
|
|
15
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
16
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
17
|
+
export declare var AssociateFeedRequest$: StaticStructureSchema;
|
|
18
|
+
export declare var AssociateFeedResponse$: StaticStructureSchema;
|
|
19
|
+
export declare var ClippingConfig$: StaticStructureSchema;
|
|
20
|
+
export declare var CreateFeedRequest$: StaticStructureSchema;
|
|
21
|
+
export declare var CreateFeedResponse$: StaticStructureSchema;
|
|
22
|
+
export declare var CreateOutput$: StaticStructureSchema;
|
|
23
|
+
export declare var CroppingConfig$: StaticStructureSchema;
|
|
24
|
+
export declare var DeleteFeedRequest$: StaticStructureSchema;
|
|
25
|
+
export declare var DeleteFeedResponse$: StaticStructureSchema;
|
|
26
|
+
export declare var DisassociateFeedRequest$: StaticStructureSchema;
|
|
27
|
+
export declare var DisassociateFeedResponse$: StaticStructureSchema;
|
|
28
|
+
export declare var FeedAssociation$: StaticStructureSchema;
|
|
29
|
+
export declare var FeedSummary$: StaticStructureSchema;
|
|
30
|
+
export declare var GetFeedRequest$: StaticStructureSchema;
|
|
31
|
+
export declare var GetFeedResponse$: StaticStructureSchema;
|
|
32
|
+
export declare var GetOutput$: StaticStructureSchema;
|
|
33
|
+
export declare var ListFeedsRequest$: StaticStructureSchema;
|
|
34
|
+
export declare var ListFeedsResponse$: StaticStructureSchema;
|
|
35
|
+
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
36
|
+
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
37
|
+
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
38
|
+
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
39
|
+
export declare var UpdateFeedRequest$: StaticStructureSchema;
|
|
40
|
+
export declare var UpdateFeedResponse$: StaticStructureSchema;
|
|
41
|
+
export declare var UpdateOutput$: StaticStructureSchema;
|
|
42
|
+
export declare var OutputConfig$: StaticUnionSchema;
|
|
43
|
+
export declare var AssociateFeed$: StaticOperationSchema;
|
|
44
|
+
export declare var CreateFeed$: StaticOperationSchema;
|
|
45
|
+
export declare var DeleteFeed$: StaticOperationSchema;
|
|
46
|
+
export declare var DisassociateFeed$: StaticOperationSchema;
|
|
47
|
+
export declare var GetFeed$: StaticOperationSchema;
|
|
48
|
+
export declare var ListFeeds$: StaticOperationSchema;
|
|
49
|
+
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
50
|
+
export declare var TagResource$: StaticOperationSchema;
|
|
51
|
+
export declare var UntagResource$: StaticOperationSchema;
|
|
52
|
+
export declare var UpdateFeed$: StaticOperationSchema;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./waitForFeedDeleted";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetFeedCommandInput } from "../commands/GetFeedCommand";
|
|
3
|
+
import { ElementalInferenceClient } from "../ElementalInferenceClient";
|
|
4
|
+
export declare const waitForFeedDeleted: (
|
|
5
|
+
params: WaiterConfiguration<ElementalInferenceClient>,
|
|
6
|
+
input: GetFeedCommandInput
|
|
7
|
+
) => Promise<WaiterResult>;
|
|
8
|
+
export declare const waitUntilFeedDeleted: (
|
|
9
|
+
params: WaiterConfiguration<ElementalInferenceClient>,
|
|
10
|
+
input: GetFeedCommandInput
|
|
11
|
+
) => Promise<WaiterResult>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./waitForFeedDeleted";
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { GetFeedCommandInput } from "../commands/GetFeedCommand";
|
|
3
|
+
import { ElementalInferenceClient } from "../ElementalInferenceClient";
|
|
4
|
+
/**
|
|
5
|
+
* Wait until a Feed is deleted
|
|
6
|
+
* @deprecated Use waitUntilFeedDeleted instead. waitForFeedDeleted does not throw error in non-success cases.
|
|
7
|
+
*/
|
|
8
|
+
export declare const waitForFeedDeleted: (params: WaiterConfiguration<ElementalInferenceClient>, input: GetFeedCommandInput) => Promise<WaiterResult>;
|
|
9
|
+
/**
|
|
10
|
+
* Wait until a Feed is deleted
|
|
11
|
+
* @param params - Waiter configuration options.
|
|
12
|
+
* @param input - The input to GetFeedCommand for polling.
|
|
13
|
+
*/
|
|
14
|
+
export declare const waitUntilFeedDeleted: (params: WaiterConfiguration<ElementalInferenceClient>, input: GetFeedCommandInput) => Promise<WaiterResult>;
|