@aws-sdk/client-sagemaker-featurestore-runtime 3.421.0 → 3.422.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/BatchGetRecordCommand.d.ts +4 -1
- package/dist-types/commands/GetRecordCommand.d.ts +4 -1
- package/dist-types/commands/PutRecordCommand.d.ts +4 -1
- package/dist-types/models/models_0.d.ts +14 -3
- package/dist-types/ts3.4/SageMakerFeatureStoreRuntime.d.ts +64 -75
- package/dist-types/ts3.4/SageMakerFeatureStoreRuntimeClient.d.ts +197 -145
- package/dist-types/ts3.4/commands/BatchGetRecordCommand.d.ts +131 -38
- package/dist-types/ts3.4/commands/DeleteRecordCommand.d.ts +115 -33
- package/dist-types/ts3.4/commands/GetRecordCommand.d.ts +105 -35
- package/dist-types/ts3.4/commands/PutRecordCommand.d.ts +115 -33
- package/dist-types/ts3.4/commands/index.d.ts +4 -4
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +22 -33
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +5 -8
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -2
- package/dist-types/ts3.4/extensionConfiguration.d.ts +8 -7
- package/dist-types/ts3.4/index.d.ts +37 -6
- package/dist-types/ts3.4/models/SageMakerFeatureStoreRuntimeServiceException.d.ts +13 -8
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +410 -114
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +38 -53
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +46 -99
- package/dist-types/ts3.4/runtimeConfig.d.ts +46 -99
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +45 -90
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -21
- package/dist-types/ts3.4/runtimeExtensions.d.ts +17 -13
- package/package.json +1 -1
|
@@ -1,33 +1,22 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
options: T & ClientInputEndpointParameters
|
|
24
|
-
) => T &
|
|
25
|
-
ClientInputEndpointParameters & {
|
|
26
|
-
defaultSigningName: string;
|
|
27
|
-
};
|
|
28
|
-
export interface EndpointParameters extends __EndpointParameters {
|
|
29
|
-
Region?: string;
|
|
30
|
-
UseDualStack?: boolean;
|
|
31
|
-
UseFIPS?: boolean;
|
|
32
|
-
Endpoint?: string;
|
|
33
|
-
}
|
|
1
|
+
import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface ClientInputEndpointParameters {
|
|
6
|
+
region?: string | Provider<string>;
|
|
7
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
8
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
9
|
+
endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
|
|
10
|
+
}
|
|
11
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
12
|
+
defaultSigningName: string;
|
|
13
|
+
};
|
|
14
|
+
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
15
|
+
defaultSigningName: string;
|
|
16
|
+
};
|
|
17
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
18
|
+
Region?: string;
|
|
19
|
+
UseDualStack?: boolean;
|
|
20
|
+
UseFIPS?: boolean;
|
|
21
|
+
Endpoint?: string;
|
|
22
|
+
}
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
import { EndpointV2, Logger } from "@smithy/types";
|
|
2
|
-
import { EndpointParameters } from "./EndpointParameters";
|
|
3
|
-
export declare const defaultEndpointResolver: (
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
logger?: Logger;
|
|
7
|
-
}
|
|
8
|
-
) => EndpointV2;
|
|
1
|
+
import { EndpointV2, Logger } from "@smithy/types";
|
|
2
|
+
import { EndpointParameters } from "./EndpointParameters";
|
|
3
|
+
export declare const defaultEndpointResolver: (endpointParams: EndpointParameters, context?: {
|
|
4
|
+
logger?: Logger;
|
|
5
|
+
}) => EndpointV2;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RuleSetObject } from "@smithy/types";
|
|
2
|
-
export declare const ruleSet: RuleSetObject;
|
|
1
|
+
import { RuleSetObject } from "@smithy/types";
|
|
2
|
+
export declare const ruleSet: RuleSetObject;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
|
-
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
|
+
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
+
/**
|
|
5
|
+
* @internal
|
|
6
|
+
*/
|
|
7
|
+
export interface SageMakerFeatureStoreRuntimeExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration {
|
|
8
|
+
}
|
|
@@ -1,6 +1,37 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
/**
|
|
2
|
+
* <p>Contains all data plane API operations and data types for the Amazon SageMaker Feature
|
|
3
|
+
* Store. Use this API to put, delete, and retrieve (get) features from a feature
|
|
4
|
+
* store.</p>
|
|
5
|
+
* <p>Use the following operations to configure your <code>OnlineStore</code> and
|
|
6
|
+
* <code>OfflineStore</code> features, and to create and manage feature groups:</p>
|
|
7
|
+
* <ul>
|
|
8
|
+
* <li>
|
|
9
|
+
* <p>
|
|
10
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateFeatureGroup.html">CreateFeatureGroup</a>
|
|
11
|
+
* </p>
|
|
12
|
+
* </li>
|
|
13
|
+
* <li>
|
|
14
|
+
* <p>
|
|
15
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DeleteFeatureGroup.html">DeleteFeatureGroup</a>
|
|
16
|
+
* </p>
|
|
17
|
+
* </li>
|
|
18
|
+
* <li>
|
|
19
|
+
* <p>
|
|
20
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeFeatureGroup.html">DescribeFeatureGroup</a>
|
|
21
|
+
* </p>
|
|
22
|
+
* </li>
|
|
23
|
+
* <li>
|
|
24
|
+
* <p>
|
|
25
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ListFeatureGroups.html">ListFeatureGroups</a>
|
|
26
|
+
* </p>
|
|
27
|
+
* </li>
|
|
28
|
+
* </ul>
|
|
29
|
+
*
|
|
30
|
+
* @packageDocumentation
|
|
31
|
+
*/
|
|
32
|
+
export * from "./SageMakerFeatureStoreRuntimeClient";
|
|
33
|
+
export * from "./SageMakerFeatureStoreRuntime";
|
|
34
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
35
|
+
export * from "./commands";
|
|
36
|
+
export * from "./models";
|
|
37
|
+
export { SageMakerFeatureStoreRuntimeServiceException } from "./models/SageMakerFeatureStoreRuntimeServiceException";
|
|
@@ -1,8 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client";
|
|
2
|
+
export { __ServiceException, __ServiceExceptionOptions };
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*
|
|
6
|
+
* Base exception class for all service exceptions from SageMakerFeatureStoreRuntime service.
|
|
7
|
+
*/
|
|
8
|
+
export declare class SageMakerFeatureStoreRuntimeServiceException extends __ServiceException {
|
|
9
|
+
/**
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
12
|
+
constructor(options: __ServiceExceptionOptions);
|
|
13
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|