@aws-sdk/client-sagemaker 3.301.0 → 3.306.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/models/models_0.js +876 -960
- package/dist-cjs/models/models_1.js +228 -262
- package/dist-cjs/models/models_2.js +400 -457
- package/dist-cjs/models/models_3.js +232 -283
- package/dist-cjs/models/models_4.js +5 -6
- package/dist-cjs/protocols/Aws_json1_1.js +26 -0
- package/dist-es/models/models_0.js +874 -958
- package/dist-es/models/models_1.js +228 -262
- package/dist-es/models/models_2.js +400 -457
- package/dist-es/models/models_3.js +232 -283
- package/dist-es/models/models_4.js +5 -6
- package/dist-es/protocols/Aws_json1_1.js +26 -0
- package/dist-types/SageMaker.d.ts +3 -9
- package/dist-types/commands/CreateAutoMLJobCommand.d.ts +1 -3
- package/dist-types/commands/CreateAutoMLJobV2Command.d.ts +2 -6
- package/dist-types/commands/CreateEndpointConfigCommand.d.ts +5 -1
- package/dist-types/commands/DeleteTagsCommand.d.ts +2 -1
- package/dist-types/commands/UpdateAppImageConfigCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +1379 -966
- package/dist-types/models/models_1.d.ts +429 -245
- package/dist-types/models/models_2.d.ts +693 -464
- package/dist-types/models/models_3.d.ts +550 -248
- package/dist-types/models/models_4.d.ts +26 -9
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/UpdateAppImageConfigCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +1035 -875
- package/dist-types/ts3.4/models/models_1.d.ts +292 -230
- package/dist-types/ts3.4/models/models_2.d.ts +504 -415
- package/dist-types/ts3.4/models/models_3.d.ts +341 -238
- package/dist-types/ts3.4/models/models_4.d.ts +13 -6
- package/package.json +35 -35
|
@@ -1,7 +1,20 @@
|
|
|
1
|
-
import { AdditionalInferenceSpecificationDefinition, AppSecurityGroupManagement, BooleanOperator, DefaultSpaceSettings,
|
|
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";
|
|
1
|
+
import { AdditionalInferenceSpecificationDefinition, AppSecurityGroupManagement, BooleanOperator, DefaultSpaceSettings, EdgeOutputConfig, KernelGatewayImageConfig, ModelApprovalStatus, Tag, UserSettings } from "./models_0";
|
|
2
|
+
import { _InstanceType, DeploymentConfig, 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 { DesiredWeightAndCapacity, Device, DomainSettingsForUpdate, FeatureParameter, Filter, GitConfigForUpdate, ResourceType, Workforce, Workteam } from "./models_2";
|
|
4
4
|
import { NestedFilters, ProfilerConfigForUpdate, ResourceConfigForUpdate, SearchSortOrder } from "./models_3";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface UpdateAppImageConfigRequest {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The name of the AppImageConfig to update.</p>
|
|
11
|
+
*/
|
|
12
|
+
AppImageConfigName: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>The new KernelGateway app to run on the image.</p>
|
|
15
|
+
*/
|
|
16
|
+
KernelGatewayImageConfig?: KernelGatewayImageConfig;
|
|
17
|
+
}
|
|
5
18
|
/**
|
|
6
19
|
* @public
|
|
7
20
|
*/
|
|
@@ -182,12 +195,17 @@ export interface UpdateDomainResponse {
|
|
|
182
195
|
}
|
|
183
196
|
/**
|
|
184
197
|
* @public
|
|
198
|
+
* @enum
|
|
185
199
|
*/
|
|
186
|
-
export declare
|
|
187
|
-
DataCaptureConfig
|
|
188
|
-
DesiredInstanceCount
|
|
189
|
-
DesiredWeight
|
|
190
|
-
}
|
|
200
|
+
export declare const VariantPropertyType: {
|
|
201
|
+
readonly DataCaptureConfig: "DataCaptureConfig";
|
|
202
|
+
readonly DesiredInstanceCount: "DesiredInstanceCount";
|
|
203
|
+
readonly DesiredWeight: "DesiredWeight";
|
|
204
|
+
};
|
|
205
|
+
/**
|
|
206
|
+
* @public
|
|
207
|
+
*/
|
|
208
|
+
export type VariantPropertyType = (typeof VariantPropertyType)[keyof typeof VariantPropertyType];
|
|
191
209
|
/**
|
|
192
210
|
* @public
|
|
193
211
|
* <p>Specifies a production variant property type for an Endpoint.</p>
|
|
@@ -797,8 +815,7 @@ export interface UpdateNotebookInstanceInput {
|
|
|
797
815
|
/**
|
|
798
816
|
* <p>A list of the Elastic Inference (EI) instance types to associate with this notebook
|
|
799
817
|
* instance. Currently only one EI instance type can be associated with a notebook
|
|
800
|
-
* instance. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/ei.html">Using Elastic Inference in Amazon
|
|
801
|
-
* SageMaker</a>.</p>
|
|
818
|
+
* instance. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/ei.html">Using Elastic Inference in Amazon SageMaker</a>.</p>
|
|
802
819
|
*/
|
|
803
820
|
AcceleratorTypes?: (NotebookInstanceAcceleratorType | string)[];
|
|
804
821
|
/**
|
|
@@ -6,7 +6,8 @@ import {
|
|
|
6
6
|
MetadataBearer as __MetadataBearer,
|
|
7
7
|
MiddlewareStack,
|
|
8
8
|
} from "@aws-sdk/types";
|
|
9
|
-
import { DeleteTagsInput
|
|
9
|
+
import { DeleteTagsInput } from "../models/models_1";
|
|
10
|
+
import { DeleteTagsOutput } from "../models/models_2";
|
|
10
11
|
import {
|
|
11
12
|
SageMakerClientResolvedConfig,
|
|
12
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
|
+
UpdateAppImageConfigRequest,
|
|
11
|
+
UpdateAppImageConfigResponse,
|
|
12
|
+
} from "../models/models_4";
|
|
11
13
|
import {
|
|
12
14
|
SageMakerClientResolvedConfig,
|
|
13
15
|
ServiceInputTypes,
|