@aws-sdk/client-sagemakerjobruntime 3.1059.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 +210 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
- package/dist-cjs/endpoint/bdd.js +32 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/index.js +201 -0
- package/dist-cjs/models/SagemakerJobRuntimeServiceException.js +12 -0
- package/dist-cjs/models/errors.js +111 -0
- package/dist-cjs/runtimeConfig.browser.js +36 -0
- package/dist-cjs/runtimeConfig.js +49 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +43 -0
- package/dist-cjs/schemas/schemas_0.js +155 -0
- package/dist-es/SagemakerJobRuntime.js +15 -0
- package/dist-es/SagemakerJobRuntimeClient.js +47 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/dist-es/commands/CompleteRolloutCommand.js +16 -0
- package/dist-es/commands/SampleCommand.js +16 -0
- package/dist-es/commands/SampleWithResponseStreamCommand.js +16 -0
- package/dist-es/commands/UpdateRewardCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/endpoint/EndpointParameters.js +11 -0
- package/dist-es/endpoint/bdd.js +29 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +8 -0
- package/dist-es/models/SagemakerJobRuntimeServiceException.js +8 -0
- package/dist-es/models/enums.js +4 -0
- package/dist-es/models/errors.js +101 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/runtimeConfig.browser.js +31 -0
- package/dist-es/runtimeConfig.js +44 -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 +152 -0
- package/dist-types/SagemakerJobRuntime.d.ts +39 -0
- package/dist-types/SagemakerJobRuntimeClient.d.ts +196 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/CompleteRolloutCommand.d.ts +115 -0
- package/dist-types/commands/SampleCommand.d.ts +127 -0
- package/dist-types/commands/SampleWithResponseStreamCommand.d.ts +131 -0
- package/dist-types/commands/UpdateRewardCommand.d.ts +121 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +44 -0
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +17 -0
- package/dist-types/models/SagemakerJobRuntimeServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +18 -0
- package/dist-types/models/errors.d.ts +95 -0
- package/dist-types/models/models_0.d.ts +141 -0
- package/dist-types/runtimeConfig.browser.d.ts +56 -0
- package/dist-types/runtimeConfig.d.ts +56 -0
- package/dist-types/runtimeConfig.native.d.ts +55 -0
- package/dist-types/runtimeConfig.shared.d.ts +28 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +28 -0
- package/dist-types/ts3.4/SagemakerJobRuntime.d.ts +75 -0
- package/dist-types/ts3.4/SagemakerJobRuntimeClient.d.ts +139 -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/CompleteRolloutCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/SampleCommand.d.ts +61 -0
- package/dist-types/ts3.4/commands/SampleWithResponseStreamCommand.d.ts +68 -0
- package/dist-types/ts3.4/commands/UpdateRewardCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
- package/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +11 -0
- package/dist-types/ts3.4/models/SagemakerJobRuntimeServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/dist-types/ts3.4/models/errors.d.ts +58 -0
- package/dist-types/ts3.4/models/models_0.d.ts +34 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +103 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +98 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +107 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +33 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +27 -0
- package/package.json +71 -0
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { SagemakerJobRuntimeClientConfig } from "./SagemakerJobRuntimeClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: SagemakerJobRuntimeClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
8
|
+
import("@smithy/core/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/core/client").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/core/protocols").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/protocols").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
|
+
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
52
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
53
|
+
retryStrategy?:
|
|
54
|
+
| import("@smithy/types").RetryStrategy
|
|
55
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
56
|
+
endpoint?:
|
|
57
|
+
| ((
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Endpoint
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
61
|
+
| import("@smithy/types").EndpointV2
|
|
62
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
63
|
+
) &
|
|
64
|
+
(
|
|
65
|
+
| string
|
|
66
|
+
| import("@smithy/types").Provider<string>
|
|
67
|
+
| import("@smithy/types").Endpoint
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
69
|
+
| import("@smithy/types").EndpointV2
|
|
70
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
71
|
+
))
|
|
72
|
+
| undefined;
|
|
73
|
+
endpointProvider: (
|
|
74
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
75
|
+
context?: {
|
|
76
|
+
logger?: import("@smithy/types").Logger;
|
|
77
|
+
}
|
|
78
|
+
) => import("@smithy/types").EndpointV2;
|
|
79
|
+
tls?: boolean;
|
|
80
|
+
serviceConfiguredEndpoint?: never;
|
|
81
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
82
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SagemakerJobRuntimeHttpAuthSchemeProvider;
|
|
83
|
+
credentials?:
|
|
84
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
85
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
86
|
+
signer?:
|
|
87
|
+
| import("@smithy/types").RequestSigner
|
|
88
|
+
| ((
|
|
89
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
90
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
91
|
+
signingEscapePath?: boolean;
|
|
92
|
+
systemClockOffset?: number;
|
|
93
|
+
signingRegion?: string;
|
|
94
|
+
signerConstructor?: new (
|
|
95
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
96
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
97
|
+
) => import("@smithy/types").RequestSigner;
|
|
98
|
+
};
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import { SagemakerJobRuntimeClientConfig } from "./SagemakerJobRuntimeClient";
|
|
2
|
+
export declare const getRuntimeConfig: (
|
|
3
|
+
config: SagemakerJobRuntimeClientConfig
|
|
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/core/protocols").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/protocols").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/core/client").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/core/client").DefaultsMode
|
|
52
|
+
| import("@smithy/types").Provider<
|
|
53
|
+
import("@smithy/core/client").DefaultsMode
|
|
54
|
+
>;
|
|
55
|
+
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
56
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
57
|
+
userAgentAppId?:
|
|
58
|
+
| string
|
|
59
|
+
| undefined
|
|
60
|
+
| import("@smithy/types").Provider<string | undefined>;
|
|
61
|
+
retryStrategy?:
|
|
62
|
+
| import("@smithy/types").RetryStrategy
|
|
63
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
64
|
+
endpoint?:
|
|
65
|
+
| ((
|
|
66
|
+
| string
|
|
67
|
+
| import("@smithy/types").Endpoint
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
69
|
+
| import("@smithy/types").EndpointV2
|
|
70
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
71
|
+
) &
|
|
72
|
+
(
|
|
73
|
+
| string
|
|
74
|
+
| import("@smithy/types").Provider<string>
|
|
75
|
+
| import("@smithy/types").Endpoint
|
|
76
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
77
|
+
| import("@smithy/types").EndpointV2
|
|
78
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
79
|
+
))
|
|
80
|
+
| undefined;
|
|
81
|
+
endpointProvider: (
|
|
82
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
83
|
+
context?: {
|
|
84
|
+
logger?: import("@smithy/types").Logger;
|
|
85
|
+
}
|
|
86
|
+
) => import("@smithy/types").EndpointV2;
|
|
87
|
+
tls?: boolean;
|
|
88
|
+
serviceConfiguredEndpoint?: never;
|
|
89
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
90
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
91
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SagemakerJobRuntimeHttpAuthSchemeProvider;
|
|
92
|
+
credentials?:
|
|
93
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
94
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
95
|
+
signer?:
|
|
96
|
+
| import("@smithy/types").RequestSigner
|
|
97
|
+
| ((
|
|
98
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
99
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
100
|
+
signingEscapePath?: boolean;
|
|
101
|
+
systemClockOffset?: number;
|
|
102
|
+
signingRegion?: string;
|
|
103
|
+
signerConstructor?: new (
|
|
104
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
105
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
106
|
+
) => import("@smithy/types").RequestSigner;
|
|
107
|
+
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
2
|
+
import { SagemakerJobRuntimeClientConfig } from "./SagemakerJobRuntimeClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: SagemakerJobRuntimeClientConfig
|
|
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").SagemakerJobRuntimeHttpAuthSchemeProvider;
|
|
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
|
+
sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
|
|
29
|
+
serviceId: string;
|
|
30
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
31
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
32
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
33
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { SagemakerJobRuntimeExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configure(
|
|
4
|
+
extensionConfiguration: SagemakerJobRuntimeExtensionConfiguration
|
|
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,27 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
+
import {
|
|
3
|
+
StaticErrorSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticStructureSchema,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export declare var SagemakerJobRuntimeServiceException$: StaticErrorSchema;
|
|
8
|
+
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
9
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
10
|
+
export declare var InternalServiceError$: StaticErrorSchema;
|
|
11
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
12
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
13
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
14
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
15
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
16
|
+
export declare var CompleteRolloutRequest$: StaticStructureSchema;
|
|
17
|
+
export declare var CompleteRolloutResponse$: StaticStructureSchema;
|
|
18
|
+
export declare var SampleRequest$: StaticStructureSchema;
|
|
19
|
+
export declare var SampleResponse$: StaticStructureSchema;
|
|
20
|
+
export declare var SampleWithResponseStreamRequest$: StaticStructureSchema;
|
|
21
|
+
export declare var SampleWithResponseStreamResponse$: StaticStructureSchema;
|
|
22
|
+
export declare var UpdateRewardRequest$: StaticStructureSchema;
|
|
23
|
+
export declare var UpdateRewardResponse$: StaticStructureSchema;
|
|
24
|
+
export declare var CompleteRollout$: StaticOperationSchema;
|
|
25
|
+
export declare var Sample$: StaticOperationSchema;
|
|
26
|
+
export declare var SampleWithResponseStream$: StaticOperationSchema;
|
|
27
|
+
export declare var UpdateReward$: StaticOperationSchema;
|
package/package.json
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aws-sdk/client-sagemakerjobruntime",
|
|
3
|
+
"description": "AWS SDK for JavaScript Sagemakerjobruntime Client for Node.js, Browser and React Native",
|
|
4
|
+
"version": "3.1059.0",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
|
+
"build:cjs": "node ../../scripts/compilation/inline client-sagemakerjobruntime",
|
|
8
|
+
"build:es": "tsc -p tsconfig.es.json",
|
|
9
|
+
"build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
|
|
10
|
+
"build:types": "tsc -p tsconfig.types.json",
|
|
11
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
+
"clean": "premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo",
|
|
13
|
+
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs",
|
|
14
|
+
"extract:docs": "api-extractor run --local",
|
|
15
|
+
"generate:client": "node ../../scripts/generate-clients/single-service --solo sagemakerjobruntime"
|
|
16
|
+
},
|
|
17
|
+
"main": "./dist-cjs/index.js",
|
|
18
|
+
"types": "./dist-types/index.d.ts",
|
|
19
|
+
"module": "./dist-es/index.js",
|
|
20
|
+
"sideEffects": false,
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
|
+
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
+
"@aws-sdk/core": "^3.974.16",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.49",
|
|
26
|
+
"@aws-sdk/types": "^3.973.10",
|
|
27
|
+
"@smithy/core": "^3.24.6",
|
|
28
|
+
"@smithy/fetch-http-handler": "^5.4.6",
|
|
29
|
+
"@smithy/node-http-handler": "^4.7.6",
|
|
30
|
+
"@smithy/types": "^4.14.3",
|
|
31
|
+
"tslib": "^2.6.2"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@tsconfig/node20": "20.1.8",
|
|
35
|
+
"@types/node": "^20.14.8",
|
|
36
|
+
"concurrently": "7.0.0",
|
|
37
|
+
"downlevel-dts": "0.10.1",
|
|
38
|
+
"premove": "4.0.0",
|
|
39
|
+
"typescript": "~5.8.3"
|
|
40
|
+
},
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=20.0.0"
|
|
43
|
+
},
|
|
44
|
+
"typesVersions": {
|
|
45
|
+
"<4.5": {
|
|
46
|
+
"dist-types/*": [
|
|
47
|
+
"dist-types/ts3.4/*"
|
|
48
|
+
]
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
"files": [
|
|
52
|
+
"dist-*/**"
|
|
53
|
+
],
|
|
54
|
+
"author": {
|
|
55
|
+
"name": "AWS SDK for JavaScript Team",
|
|
56
|
+
"url": "https://aws.amazon.com/javascript/"
|
|
57
|
+
},
|
|
58
|
+
"license": "Apache-2.0",
|
|
59
|
+
"browser": {
|
|
60
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
61
|
+
},
|
|
62
|
+
"react-native": {
|
|
63
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
64
|
+
},
|
|
65
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-sagemakerjobruntime",
|
|
66
|
+
"repository": {
|
|
67
|
+
"type": "git",
|
|
68
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
69
|
+
"directory": "clients/client-sagemakerjobruntime"
|
|
70
|
+
}
|
|
71
|
+
}
|