@aws-sdk/client-sagemaker 3.259.0 → 3.261.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/dist-cjs/commands/DeregisterDevicesCommand.js +2 -2
- package/dist-cjs/commands/DescribeActionCommand.js +3 -3
- package/dist-cjs/commands/ListArtifactsCommand.js +2 -1
- package/dist-cjs/commands/ListAssociationsCommand.js +1 -2
- package/dist-cjs/commands/UpdateExperimentCommand.js +3 -3
- package/dist-cjs/commands/UpdateFeatureGroupCommand.js +1 -2
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +19 -18
- package/dist-cjs/models/models_1.js +19 -19
- package/dist-cjs/models/models_2.js +17 -21
- package/dist-cjs/models/models_3.js +22 -18
- package/dist-cjs/models/models_4.js +13 -1
- package/dist-cjs/protocols/Aws_json1_1.js +36 -0
- package/dist-es/commands/DeregisterDevicesCommand.js +1 -1
- package/dist-es/commands/DescribeActionCommand.js +1 -1
- package/dist-es/commands/ListArtifactsCommand.js +2 -1
- package/dist-es/commands/ListAssociationsCommand.js +1 -2
- package/dist-es/commands/UpdateExperimentCommand.js +1 -1
- package/dist-es/commands/UpdateFeatureGroupCommand.js +1 -2
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +11 -9
- package/dist-es/models/models_1.js +9 -9
- package/dist-es/models/models_2.js +9 -14
- package/dist-es/models/models_3.js +14 -9
- package/dist-es/models/models_4.js +9 -0
- package/dist-es/protocols/Aws_json1_1.js +36 -0
- package/dist-types/commands/DeregisterDevicesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeActionCommand.d.ts +1 -1
- package/dist-types/commands/ListArtifactsCommand.d.ts +2 -1
- package/dist-types/commands/ListAssociationsCommand.d.ts +1 -2
- package/dist-types/commands/UpdateExperimentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFeatureGroupCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +43 -76
- package/dist-types/models/models_1.d.ts +78 -86
- package/dist-types/models/models_2.d.ts +86 -74
- package/dist-types/models/models_3.d.ts +73 -46
- package/dist-types/models/models_4.d.ts +46 -1
- package/dist-types/ts3.4/commands/DeregisterDevicesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeActionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListArtifactsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateExperimentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateFeatureGroupCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +21 -23
- package/dist-types/ts3.4/models/models_1.d.ts +24 -37
- package/dist-types/ts3.4/models/models_2.d.ts +34 -32
- package/dist-types/ts3.4/models/models_3.d.ts +32 -22
- package/dist-types/ts3.4/models/models_4.d.ts +22 -0
- package/package.json +6 -6
|
@@ -1,7 +1,40 @@
|
|
|
1
1
|
import { AdditionalInferenceSpecificationDefinition, BooleanOperator, ModelApprovalStatus, Tag, UserSettings } from "./models_0";
|
|
2
|
-
import { _InstanceType, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InstanceMetadataServiceConfiguration, JobType, MemberDefinition, ModelCardStatus, ModelVariantConfig, MonitoringScheduleConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PipelineDefinitionS3Location, Processor, ProfilerRuleConfiguration, ProvisioningParameter, RootAccess, ShadowModeConfig, SourceIpConfig, SpaceSettings, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, VendorGuidance, WorkforceVpcConfigRequest } from "./models_1";
|
|
2
|
+
import { _InstanceType, FeatureDefinition, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InstanceMetadataServiceConfiguration, JobType, MemberDefinition, ModelCardStatus, ModelVariantConfig, MonitoringScheduleConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PipelineDefinitionS3Location, Processor, ProfilerRuleConfiguration, ProvisioningParameter, RootAccess, ShadowModeConfig, SourceIpConfig, SpaceSettings, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, VendorGuidance, WorkforceVpcConfigRequest } from "./models_1";
|
|
3
3
|
import { FeatureParameter, Filter, ResourceType, Workforce, Workteam } from "./models_2";
|
|
4
4
|
import { NestedFilters, ProfilerConfigForUpdate, ResourceConfigForUpdate, SearchSortOrder } from "./models_3";
|
|
5
|
+
export interface UpdateExperimentRequest {
|
|
6
|
+
/**
|
|
7
|
+
* <p>The name of the experiment to update.</p>
|
|
8
|
+
*/
|
|
9
|
+
ExperimentName: string | undefined;
|
|
10
|
+
/**
|
|
11
|
+
* <p>The name of the experiment as displayed. The name doesn't need to be unique. If
|
|
12
|
+
* <code>DisplayName</code> isn't specified, <code>ExperimentName</code> is displayed.</p>
|
|
13
|
+
*/
|
|
14
|
+
DisplayName?: string;
|
|
15
|
+
/**
|
|
16
|
+
* <p>The description of the experiment.</p>
|
|
17
|
+
*/
|
|
18
|
+
Description?: string;
|
|
19
|
+
}
|
|
20
|
+
export interface UpdateExperimentResponse {
|
|
21
|
+
/**
|
|
22
|
+
* <p>The Amazon Resource Name (ARN) of the experiment.</p>
|
|
23
|
+
*/
|
|
24
|
+
ExperimentArn?: string;
|
|
25
|
+
}
|
|
26
|
+
export interface UpdateFeatureGroupRequest {
|
|
27
|
+
/**
|
|
28
|
+
* <p>The name of the feature group that you're updating.</p>
|
|
29
|
+
*/
|
|
30
|
+
FeatureGroupName: string | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* <p>Updates the feature group. Updating a feature group is an asynchronous operation. When
|
|
33
|
+
* you get an HTTP 200 response, you've made a valid request. It takes some time after you've
|
|
34
|
+
* made a valid request for Feature Store to update the feature group.</p>
|
|
35
|
+
*/
|
|
36
|
+
FeatureAdditions?: FeatureDefinition[];
|
|
37
|
+
}
|
|
5
38
|
export interface UpdateFeatureGroupResponse {
|
|
6
39
|
/**
|
|
7
40
|
* <p>The Amazon Resource Number (ARN) of the feature group that you're updating.</p>
|
|
@@ -875,6 +908,18 @@ export interface SearchRequest {
|
|
|
875
908
|
*/
|
|
876
909
|
MaxResults?: number;
|
|
877
910
|
}
|
|
911
|
+
/**
|
|
912
|
+
* @internal
|
|
913
|
+
*/
|
|
914
|
+
export declare const UpdateExperimentRequestFilterSensitiveLog: (obj: UpdateExperimentRequest) => any;
|
|
915
|
+
/**
|
|
916
|
+
* @internal
|
|
917
|
+
*/
|
|
918
|
+
export declare const UpdateExperimentResponseFilterSensitiveLog: (obj: UpdateExperimentResponse) => any;
|
|
919
|
+
/**
|
|
920
|
+
* @internal
|
|
921
|
+
*/
|
|
922
|
+
export declare const UpdateFeatureGroupRequestFilterSensitiveLog: (obj: UpdateFeatureGroupRequest) => any;
|
|
878
923
|
/**
|
|
879
924
|
* @internal
|
|
880
925
|
*/
|
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import { DeregisterDevicesRequest } from "../models/
|
|
9
|
+
import { DeregisterDevicesRequest } from "../models/models_2";
|
|
10
10
|
import {
|
|
11
11
|
SageMakerClientResolvedConfig,
|
|
12
12
|
ServiceInputTypes,
|
|
@@ -6,10 +6,8 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import {
|
|
10
|
-
|
|
11
|
-
ListArtifactsResponse,
|
|
12
|
-
} from "../models/models_2";
|
|
9
|
+
import { ListArtifactsRequest } from "../models/models_2";
|
|
10
|
+
import { ListArtifactsResponse } from "../models/models_3";
|
|
13
11
|
import {
|
|
14
12
|
SageMakerClientResolvedConfig,
|
|
15
13
|
ServiceInputTypes,
|
|
@@ -6,8 +6,10 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import {
|
|
10
|
-
|
|
9
|
+
import {
|
|
10
|
+
ListAssociationsRequest,
|
|
11
|
+
ListAssociationsResponse,
|
|
12
|
+
} from "../models/models_3";
|
|
11
13
|
import {
|
|
12
14
|
SageMakerClientResolvedConfig,
|
|
13
15
|
ServiceInputTypes,
|
|
@@ -6,8 +6,10 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import {
|
|
10
|
-
|
|
9
|
+
import {
|
|
10
|
+
UpdateFeatureGroupRequest,
|
|
11
|
+
UpdateFeatureGroupResponse,
|
|
12
|
+
} from "../models/models_4";
|
|
11
13
|
import {
|
|
12
14
|
SageMakerClientResolvedConfig,
|
|
13
15
|
ServiceInputTypes,
|
|
@@ -281,6 +281,20 @@ export interface MetricDefinition {
|
|
|
281
281
|
Name: string | undefined;
|
|
282
282
|
Regex: string | undefined;
|
|
283
283
|
}
|
|
284
|
+
export declare enum TrainingRepositoryAccessMode {
|
|
285
|
+
PLATFORM = "Platform",
|
|
286
|
+
VPC = "Vpc",
|
|
287
|
+
}
|
|
288
|
+
export interface TrainingRepositoryAuthConfig {
|
|
289
|
+
TrainingRepositoryCredentialsProviderArn: string | undefined;
|
|
290
|
+
}
|
|
291
|
+
export interface TrainingImageConfig {
|
|
292
|
+
TrainingRepositoryAccessMode:
|
|
293
|
+
| TrainingRepositoryAccessMode
|
|
294
|
+
| string
|
|
295
|
+
| undefined;
|
|
296
|
+
TrainingRepositoryAuthConfig?: TrainingRepositoryAuthConfig;
|
|
297
|
+
}
|
|
284
298
|
export declare enum TrainingInputMode {
|
|
285
299
|
FASTFILE = "FastFile",
|
|
286
300
|
FILE = "File",
|
|
@@ -294,6 +308,7 @@ export interface AlgorithmSpecification {
|
|
|
294
308
|
EnableSageMakerMetricsTimeSeries?: boolean;
|
|
295
309
|
ContainerEntrypoint?: string[];
|
|
296
310
|
ContainerArguments?: string[];
|
|
311
|
+
TrainingImageConfig?: TrainingImageConfig;
|
|
297
312
|
}
|
|
298
313
|
export declare enum AlgorithmStatus {
|
|
299
314
|
COMPLETED = "Completed",
|
|
@@ -2019,20 +2034,6 @@ export declare enum FeatureType {
|
|
|
2019
2034
|
INTEGRAL = "Integral",
|
|
2020
2035
|
STRING = "String",
|
|
2021
2036
|
}
|
|
2022
|
-
export interface FeatureDefinition {
|
|
2023
|
-
FeatureName?: string;
|
|
2024
|
-
FeatureType?: FeatureType | string;
|
|
2025
|
-
}
|
|
2026
|
-
export interface DataCatalogConfig {
|
|
2027
|
-
TableName: string | undefined;
|
|
2028
|
-
Catalog: string | undefined;
|
|
2029
|
-
Database: string | undefined;
|
|
2030
|
-
}
|
|
2031
|
-
export interface S3StorageConfig {
|
|
2032
|
-
S3Uri: string | undefined;
|
|
2033
|
-
KmsKeyId?: string;
|
|
2034
|
-
ResolvedOutputS3Uri?: string;
|
|
2035
|
-
}
|
|
2036
2037
|
export declare const ActionSourceFilterSensitiveLog: (obj: ActionSource) => any;
|
|
2037
2038
|
export declare const ActionSummaryFilterSensitiveLog: (
|
|
2038
2039
|
obj: ActionSummary
|
|
@@ -2060,6 +2061,12 @@ export declare const AlarmFilterSensitiveLog: (obj: Alarm) => any;
|
|
|
2060
2061
|
export declare const MetricDefinitionFilterSensitiveLog: (
|
|
2061
2062
|
obj: MetricDefinition
|
|
2062
2063
|
) => any;
|
|
2064
|
+
export declare const TrainingRepositoryAuthConfigFilterSensitiveLog: (
|
|
2065
|
+
obj: TrainingRepositoryAuthConfig
|
|
2066
|
+
) => any;
|
|
2067
|
+
export declare const TrainingImageConfigFilterSensitiveLog: (
|
|
2068
|
+
obj: TrainingImageConfig
|
|
2069
|
+
) => any;
|
|
2063
2070
|
export declare const AlgorithmSpecificationFilterSensitiveLog: (
|
|
2064
2071
|
obj: AlgorithmSpecification
|
|
2065
2072
|
) => any;
|
|
@@ -2606,12 +2613,3 @@ export declare const CreateExperimentRequestFilterSensitiveLog: (
|
|
|
2606
2613
|
export declare const CreateExperimentResponseFilterSensitiveLog: (
|
|
2607
2614
|
obj: CreateExperimentResponse
|
|
2608
2615
|
) => any;
|
|
2609
|
-
export declare const FeatureDefinitionFilterSensitiveLog: (
|
|
2610
|
-
obj: FeatureDefinition
|
|
2611
|
-
) => any;
|
|
2612
|
-
export declare const DataCatalogConfigFilterSensitiveLog: (
|
|
2613
|
-
obj: DataCatalogConfig
|
|
2614
|
-
) => any;
|
|
2615
|
-
export declare const S3StorageConfigFilterSensitiveLog: (
|
|
2616
|
-
obj: S3StorageConfig
|
|
2617
|
-
) => any;
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import { LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
|
|
2
2
|
import {
|
|
3
|
-
ActionSource,
|
|
4
|
-
ActionStatus,
|
|
5
3
|
AdditionalInferenceSpecificationDefinition,
|
|
6
4
|
AlgorithmSpecification,
|
|
7
5
|
AnnotationConsolidationConfig,
|
|
@@ -26,11 +24,10 @@ import {
|
|
|
26
24
|
ContainerDefinition,
|
|
27
25
|
ContentClassifier,
|
|
28
26
|
ContinuousParameterRange,
|
|
29
|
-
DataCatalogConfig,
|
|
30
27
|
DeviceSelectionConfig,
|
|
31
28
|
EdgeDeploymentConfig,
|
|
32
29
|
EndpointInput,
|
|
33
|
-
|
|
30
|
+
FeatureType,
|
|
34
31
|
HyperParameterScalingType,
|
|
35
32
|
HyperParameterTuningJobObjective,
|
|
36
33
|
InferenceSpecification,
|
|
@@ -53,7 +50,6 @@ import {
|
|
|
53
50
|
ProcessingS3UploadMode,
|
|
54
51
|
ProductionVariantInstanceType,
|
|
55
52
|
ResourceConfig,
|
|
56
|
-
S3StorageConfig,
|
|
57
53
|
StoppingCondition,
|
|
58
54
|
Tag,
|
|
59
55
|
TrainingInputMode,
|
|
@@ -62,10 +58,23 @@ import {
|
|
|
62
58
|
TransformJobDefinition,
|
|
63
59
|
TransformOutput,
|
|
64
60
|
TransformResources,
|
|
65
|
-
UserContext,
|
|
66
61
|
UserSettings,
|
|
67
62
|
VpcConfig,
|
|
68
63
|
} from "./models_0";
|
|
64
|
+
export interface FeatureDefinition {
|
|
65
|
+
FeatureName?: string;
|
|
66
|
+
FeatureType?: FeatureType | string;
|
|
67
|
+
}
|
|
68
|
+
export interface DataCatalogConfig {
|
|
69
|
+
TableName: string | undefined;
|
|
70
|
+
Catalog: string | undefined;
|
|
71
|
+
Database: string | undefined;
|
|
72
|
+
}
|
|
73
|
+
export interface S3StorageConfig {
|
|
74
|
+
S3Uri: string | undefined;
|
|
75
|
+
KmsKeyId?: string;
|
|
76
|
+
ResolvedOutputS3Uri?: string;
|
|
77
|
+
}
|
|
69
78
|
export declare enum TableFormat {
|
|
70
79
|
GLUE = "Glue",
|
|
71
80
|
ICEBERG = "Iceberg",
|
|
@@ -1628,28 +1637,15 @@ export interface DeploymentStageStatusSummary {
|
|
|
1628
1637
|
DeploymentConfig: EdgeDeploymentConfig | undefined;
|
|
1629
1638
|
DeploymentStatus: EdgeDeploymentStatus | undefined;
|
|
1630
1639
|
}
|
|
1631
|
-
export
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
ActionArn?: string;
|
|
1641
|
-
Source?: ActionSource;
|
|
1642
|
-
ActionType?: string;
|
|
1643
|
-
Description?: string;
|
|
1644
|
-
Status?: ActionStatus | string;
|
|
1645
|
-
Properties?: Record<string, string>;
|
|
1646
|
-
CreationTime?: Date;
|
|
1647
|
-
CreatedBy?: UserContext;
|
|
1648
|
-
LastModifiedTime?: Date;
|
|
1649
|
-
LastModifiedBy?: UserContext;
|
|
1650
|
-
MetadataProperties?: MetadataProperties;
|
|
1651
|
-
LineageGroupArn?: string;
|
|
1652
|
-
}
|
|
1640
|
+
export declare const FeatureDefinitionFilterSensitiveLog: (
|
|
1641
|
+
obj: FeatureDefinition
|
|
1642
|
+
) => any;
|
|
1643
|
+
export declare const DataCatalogConfigFilterSensitiveLog: (
|
|
1644
|
+
obj: DataCatalogConfig
|
|
1645
|
+
) => any;
|
|
1646
|
+
export declare const S3StorageConfigFilterSensitiveLog: (
|
|
1647
|
+
obj: S3StorageConfig
|
|
1648
|
+
) => any;
|
|
1653
1649
|
export declare const OfflineStoreConfigFilterSensitiveLog: (
|
|
1654
1650
|
obj: OfflineStoreConfig
|
|
1655
1651
|
) => any;
|
|
@@ -2424,12 +2420,3 @@ export declare const EdgeDeploymentStatusFilterSensitiveLog: (
|
|
|
2424
2420
|
export declare const DeploymentStageStatusSummaryFilterSensitiveLog: (
|
|
2425
2421
|
obj: DeploymentStageStatusSummary
|
|
2426
2422
|
) => any;
|
|
2427
|
-
export declare const DeregisterDevicesRequestFilterSensitiveLog: (
|
|
2428
|
-
obj: DeregisterDevicesRequest
|
|
2429
|
-
) => any;
|
|
2430
|
-
export declare const DescribeActionRequestFilterSensitiveLog: (
|
|
2431
|
-
obj: DescribeActionRequest
|
|
2432
|
-
) => any;
|
|
2433
|
-
export declare const DescribeActionResponseFilterSensitiveLog: (
|
|
2434
|
-
obj: DescribeActionResponse
|
|
2435
|
-
) => any;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
|
+
ActionSource,
|
|
3
|
+
ActionStatus,
|
|
2
4
|
ActionSummary,
|
|
3
5
|
AdditionalInferenceSpecificationDefinition,
|
|
4
6
|
AgentVersion,
|
|
@@ -18,7 +20,6 @@ import {
|
|
|
18
20
|
AppStatus,
|
|
19
21
|
AppType,
|
|
20
22
|
ArtifactSource,
|
|
21
|
-
ArtifactSummary,
|
|
22
23
|
AssociationEdgeType,
|
|
23
24
|
AsyncInferenceConfig,
|
|
24
25
|
AuthMode,
|
|
@@ -52,7 +53,6 @@ import {
|
|
|
52
53
|
EdgePresetDeploymentType,
|
|
53
54
|
ExecutionRoleIdentityConfig,
|
|
54
55
|
ExplainerConfig,
|
|
55
|
-
FeatureDefinition,
|
|
56
56
|
FeatureType,
|
|
57
57
|
GitConfig,
|
|
58
58
|
HyperParameterTuningJobObjectiveType,
|
|
@@ -102,6 +102,7 @@ import {
|
|
|
102
102
|
DriftCheckBaselines,
|
|
103
103
|
EndpointInfo,
|
|
104
104
|
ExperimentConfig,
|
|
105
|
+
FeatureDefinition,
|
|
105
106
|
FlowDefinitionOutputConfig,
|
|
106
107
|
HubContentType,
|
|
107
108
|
HubS3StorageConfig,
|
|
@@ -175,6 +176,28 @@ import {
|
|
|
175
176
|
TrialComponentStatus,
|
|
176
177
|
VendorGuidance,
|
|
177
178
|
} from "./models_1";
|
|
179
|
+
export interface DeregisterDevicesRequest {
|
|
180
|
+
DeviceFleetName: string | undefined;
|
|
181
|
+
DeviceNames: string[] | undefined;
|
|
182
|
+
}
|
|
183
|
+
export interface DescribeActionRequest {
|
|
184
|
+
ActionName: string | undefined;
|
|
185
|
+
}
|
|
186
|
+
export interface DescribeActionResponse {
|
|
187
|
+
ActionName?: string;
|
|
188
|
+
ActionArn?: string;
|
|
189
|
+
Source?: ActionSource;
|
|
190
|
+
ActionType?: string;
|
|
191
|
+
Description?: string;
|
|
192
|
+
Status?: ActionStatus | string;
|
|
193
|
+
Properties?: Record<string, string>;
|
|
194
|
+
CreationTime?: Date;
|
|
195
|
+
CreatedBy?: UserContext;
|
|
196
|
+
LastModifiedTime?: Date;
|
|
197
|
+
LastModifiedBy?: UserContext;
|
|
198
|
+
MetadataProperties?: MetadataProperties;
|
|
199
|
+
LineageGroupArn?: string;
|
|
200
|
+
}
|
|
178
201
|
export interface DescribeAlgorithmInput {
|
|
179
202
|
AlgorithmName: string | undefined;
|
|
180
203
|
}
|
|
@@ -2382,30 +2405,15 @@ export interface ListArtifactsRequest {
|
|
|
2382
2405
|
NextToken?: string;
|
|
2383
2406
|
MaxResults?: number;
|
|
2384
2407
|
}
|
|
2385
|
-
export
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
SOURCE_TYPE = "SourceType",
|
|
2395
|
-
}
|
|
2396
|
-
export interface ListAssociationsRequest {
|
|
2397
|
-
SourceArn?: string;
|
|
2398
|
-
DestinationArn?: string;
|
|
2399
|
-
SourceType?: string;
|
|
2400
|
-
DestinationType?: string;
|
|
2401
|
-
AssociationType?: AssociationEdgeType | string;
|
|
2402
|
-
CreatedAfter?: Date;
|
|
2403
|
-
CreatedBefore?: Date;
|
|
2404
|
-
SortBy?: SortAssociationsBy | string;
|
|
2405
|
-
SortOrder?: SortOrder | string;
|
|
2406
|
-
NextToken?: string;
|
|
2407
|
-
MaxResults?: number;
|
|
2408
|
-
}
|
|
2408
|
+
export declare const DeregisterDevicesRequestFilterSensitiveLog: (
|
|
2409
|
+
obj: DeregisterDevicesRequest
|
|
2410
|
+
) => any;
|
|
2411
|
+
export declare const DescribeActionRequestFilterSensitiveLog: (
|
|
2412
|
+
obj: DescribeActionRequest
|
|
2413
|
+
) => any;
|
|
2414
|
+
export declare const DescribeActionResponseFilterSensitiveLog: (
|
|
2415
|
+
obj: DescribeActionResponse
|
|
2416
|
+
) => any;
|
|
2409
2417
|
export declare const DescribeAlgorithmInputFilterSensitiveLog: (
|
|
2410
2418
|
obj: DescribeAlgorithmInput
|
|
2411
2419
|
) => any;
|
|
@@ -3085,9 +3093,3 @@ export declare const ListAppsResponseFilterSensitiveLog: (
|
|
|
3085
3093
|
export declare const ListArtifactsRequestFilterSensitiveLog: (
|
|
3086
3094
|
obj: ListArtifactsRequest
|
|
3087
3095
|
) => any;
|
|
3088
|
-
export declare const ListArtifactsResponseFilterSensitiveLog: (
|
|
3089
|
-
obj: ListArtifactsResponse
|
|
3090
|
-
) => any;
|
|
3091
|
-
export declare const ListAssociationsRequestFilterSensitiveLog: (
|
|
3092
|
-
obj: ListAssociationsRequest
|
|
3093
|
-
) => any;
|
|
@@ -4,6 +4,8 @@ import {
|
|
|
4
4
|
AlgorithmSpecification,
|
|
5
5
|
AppSecurityGroupManagement,
|
|
6
6
|
AppSpecification,
|
|
7
|
+
ArtifactSummary,
|
|
8
|
+
AssociationEdgeType,
|
|
7
9
|
AssociationSummary,
|
|
8
10
|
AutoMLCandidate,
|
|
9
11
|
AutoMLJobStatus,
|
|
@@ -30,7 +32,6 @@ import {
|
|
|
30
32
|
DefaultSpaceSettings,
|
|
31
33
|
DeploymentConfig,
|
|
32
34
|
EdgeOutputConfig,
|
|
33
|
-
FeatureDefinition,
|
|
34
35
|
InferenceSpecification,
|
|
35
36
|
KernelGatewayImageConfig,
|
|
36
37
|
MetadataProperties,
|
|
@@ -176,6 +177,30 @@ import {
|
|
|
176
177
|
Workforce,
|
|
177
178
|
Workteam,
|
|
178
179
|
} from "./models_2";
|
|
180
|
+
export interface ListArtifactsResponse {
|
|
181
|
+
ArtifactSummaries?: ArtifactSummary[];
|
|
182
|
+
NextToken?: string;
|
|
183
|
+
}
|
|
184
|
+
export declare enum SortAssociationsBy {
|
|
185
|
+
CREATION_TIME = "CreationTime",
|
|
186
|
+
DESTINATION_ARN = "DestinationArn",
|
|
187
|
+
DESTINATION_TYPE = "DestinationType",
|
|
188
|
+
SOURCE_ARN = "SourceArn",
|
|
189
|
+
SOURCE_TYPE = "SourceType",
|
|
190
|
+
}
|
|
191
|
+
export interface ListAssociationsRequest {
|
|
192
|
+
SourceArn?: string;
|
|
193
|
+
DestinationArn?: string;
|
|
194
|
+
SourceType?: string;
|
|
195
|
+
DestinationType?: string;
|
|
196
|
+
AssociationType?: AssociationEdgeType | string;
|
|
197
|
+
CreatedAfter?: Date;
|
|
198
|
+
CreatedBefore?: Date;
|
|
199
|
+
SortBy?: SortAssociationsBy | string;
|
|
200
|
+
SortOrder?: SortOrder | string;
|
|
201
|
+
NextToken?: string;
|
|
202
|
+
MaxResults?: number;
|
|
203
|
+
}
|
|
179
204
|
export interface ListAssociationsResponse {
|
|
180
205
|
AssociationSummaries?: AssociationSummary[];
|
|
181
206
|
NextToken?: string;
|
|
@@ -2124,18 +2149,12 @@ export interface UpdateEndpointWeightsAndCapacitiesInput {
|
|
|
2124
2149
|
export interface UpdateEndpointWeightsAndCapacitiesOutput {
|
|
2125
2150
|
EndpointArn: string | undefined;
|
|
2126
2151
|
}
|
|
2127
|
-
export
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
ExperimentArn?: string;
|
|
2134
|
-
}
|
|
2135
|
-
export interface UpdateFeatureGroupRequest {
|
|
2136
|
-
FeatureGroupName: string | undefined;
|
|
2137
|
-
FeatureAdditions?: FeatureDefinition[];
|
|
2138
|
-
}
|
|
2152
|
+
export declare const ListArtifactsResponseFilterSensitiveLog: (
|
|
2153
|
+
obj: ListArtifactsResponse
|
|
2154
|
+
) => any;
|
|
2155
|
+
export declare const ListAssociationsRequestFilterSensitiveLog: (
|
|
2156
|
+
obj: ListAssociationsRequest
|
|
2157
|
+
) => any;
|
|
2139
2158
|
export declare const ListAssociationsResponseFilterSensitiveLog: (
|
|
2140
2159
|
obj: ListAssociationsResponse
|
|
2141
2160
|
) => any;
|
|
@@ -2854,12 +2873,3 @@ export declare const UpdateEndpointWeightsAndCapacitiesInputFilterSensitiveLog:
|
|
|
2854
2873
|
export declare const UpdateEndpointWeightsAndCapacitiesOutputFilterSensitiveLog: (
|
|
2855
2874
|
obj: UpdateEndpointWeightsAndCapacitiesOutput
|
|
2856
2875
|
) => any;
|
|
2857
|
-
export declare const UpdateExperimentRequestFilterSensitiveLog: (
|
|
2858
|
-
obj: UpdateExperimentRequest
|
|
2859
|
-
) => any;
|
|
2860
|
-
export declare const UpdateExperimentResponseFilterSensitiveLog: (
|
|
2861
|
-
obj: UpdateExperimentResponse
|
|
2862
|
-
) => any;
|
|
2863
|
-
export declare const UpdateFeatureGroupRequestFilterSensitiveLog: (
|
|
2864
|
-
obj: UpdateFeatureGroupRequest
|
|
2865
|
-
) => any;
|
|
@@ -7,6 +7,7 @@ import {
|
|
|
7
7
|
} from "./models_0";
|
|
8
8
|
import {
|
|
9
9
|
_InstanceType,
|
|
10
|
+
FeatureDefinition,
|
|
10
11
|
InferenceExperimentDataStorageConfig,
|
|
11
12
|
InferenceExperimentSchedule,
|
|
12
13
|
InstanceMetadataServiceConfiguration,
|
|
@@ -47,6 +48,18 @@ import {
|
|
|
47
48
|
ResourceConfigForUpdate,
|
|
48
49
|
SearchSortOrder,
|
|
49
50
|
} from "./models_3";
|
|
51
|
+
export interface UpdateExperimentRequest {
|
|
52
|
+
ExperimentName: string | undefined;
|
|
53
|
+
DisplayName?: string;
|
|
54
|
+
Description?: string;
|
|
55
|
+
}
|
|
56
|
+
export interface UpdateExperimentResponse {
|
|
57
|
+
ExperimentArn?: string;
|
|
58
|
+
}
|
|
59
|
+
export interface UpdateFeatureGroupRequest {
|
|
60
|
+
FeatureGroupName: string | undefined;
|
|
61
|
+
FeatureAdditions?: FeatureDefinition[];
|
|
62
|
+
}
|
|
50
63
|
export interface UpdateFeatureGroupResponse {
|
|
51
64
|
FeatureGroupArn: string | undefined;
|
|
52
65
|
}
|
|
@@ -277,6 +290,15 @@ export interface SearchRequest {
|
|
|
277
290
|
NextToken?: string;
|
|
278
291
|
MaxResults?: number;
|
|
279
292
|
}
|
|
293
|
+
export declare const UpdateExperimentRequestFilterSensitiveLog: (
|
|
294
|
+
obj: UpdateExperimentRequest
|
|
295
|
+
) => any;
|
|
296
|
+
export declare const UpdateExperimentResponseFilterSensitiveLog: (
|
|
297
|
+
obj: UpdateExperimentResponse
|
|
298
|
+
) => any;
|
|
299
|
+
export declare const UpdateFeatureGroupRequestFilterSensitiveLog: (
|
|
300
|
+
obj: UpdateFeatureGroupRequest
|
|
301
|
+
) => any;
|
|
280
302
|
export declare const UpdateFeatureGroupResponseFilterSensitiveLog: (
|
|
281
303
|
obj: UpdateFeatureGroupResponse
|
|
282
304
|
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.261.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.261.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.259.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.261.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.257.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.257.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.257.0",
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
"@aws-sdk/node-config-provider": "3.259.0",
|
|
40
40
|
"@aws-sdk/node-http-handler": "3.257.0",
|
|
41
41
|
"@aws-sdk/protocol-http": "3.257.0",
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
+
"@aws-sdk/smithy-client": "3.261.0",
|
|
43
43
|
"@aws-sdk/types": "3.257.0",
|
|
44
44
|
"@aws-sdk/url-parser": "3.257.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.261.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.261.0",
|
|
50
50
|
"@aws-sdk/util-endpoints": "3.257.0",
|
|
51
51
|
"@aws-sdk/util-retry": "3.257.0",
|
|
52
52
|
"@aws-sdk/util-user-agent-browser": "3.257.0",
|