@aws-sdk/client-sagemaker 3.511.0 → 3.514.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/auth/httpAuthExtensionConfiguration.js +1 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/index.js +217 -159
- package/dist-cjs/runtimeConfig.shared.js +10 -0
- package/dist-es/SageMakerClient.js +17 -4
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/runtimeConfig.shared.js +10 -0
- package/dist-es/runtimeExtensions.js +3 -0
- package/dist-types/SageMakerClient.d.ts +13 -11
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/extensionConfiguration.d.ts +2 -1
- package/dist-types/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/runtimeConfig.d.ts +4 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -4
- package/dist-types/runtimeConfig.shared.d.ts +2 -0
- package/dist-types/ts3.4/SageMakerClient.d.ts +11 -9
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -8
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
- package/package.json +7 -7
package/dist-cjs/index.js
CHANGED
|
@@ -733,13 +733,14 @@ module.exports = __toCommonJS(src_exports);
|
|
|
733
733
|
var import_middleware_host_header = require("@aws-sdk/middleware-host-header");
|
|
734
734
|
var import_middleware_logger = require("@aws-sdk/middleware-logger");
|
|
735
735
|
var import_middleware_recursion_detection = require("@aws-sdk/middleware-recursion-detection");
|
|
736
|
-
var import_middleware_signing = require("@aws-sdk/middleware-signing");
|
|
737
736
|
var import_middleware_user_agent = require("@aws-sdk/middleware-user-agent");
|
|
738
737
|
var import_config_resolver = require("@smithy/config-resolver");
|
|
738
|
+
var import_core = require("@smithy/core");
|
|
739
739
|
var import_middleware_content_length = require("@smithy/middleware-content-length");
|
|
740
740
|
var import_middleware_endpoint = require("@smithy/middleware-endpoint");
|
|
741
741
|
var import_middleware_retry = require("@smithy/middleware-retry");
|
|
742
742
|
|
|
743
|
+
var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
|
|
743
744
|
|
|
744
745
|
// src/endpoint/EndpointParameters.ts
|
|
745
746
|
var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
|
|
@@ -764,19 +765,62 @@ var import_runtimeConfig = require("././runtimeConfig");
|
|
|
764
765
|
var import_region_config_resolver = require("@aws-sdk/region-config-resolver");
|
|
765
766
|
var import_protocol_http = require("@smithy/protocol-http");
|
|
766
767
|
var import_smithy_client = require("@smithy/smithy-client");
|
|
768
|
+
|
|
769
|
+
// src/auth/httpAuthExtensionConfiguration.ts
|
|
770
|
+
var getHttpAuthExtensionConfiguration = /* @__PURE__ */ __name((runtimeConfig) => {
|
|
771
|
+
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
772
|
+
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
773
|
+
let _credentials = runtimeConfig.credentials;
|
|
774
|
+
return {
|
|
775
|
+
setHttpAuthScheme(httpAuthScheme) {
|
|
776
|
+
const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);
|
|
777
|
+
if (index === -1) {
|
|
778
|
+
_httpAuthSchemes.push(httpAuthScheme);
|
|
779
|
+
} else {
|
|
780
|
+
_httpAuthSchemes.splice(index, 1, httpAuthScheme);
|
|
781
|
+
}
|
|
782
|
+
},
|
|
783
|
+
httpAuthSchemes() {
|
|
784
|
+
return _httpAuthSchemes;
|
|
785
|
+
},
|
|
786
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
|
|
787
|
+
_httpAuthSchemeProvider = httpAuthSchemeProvider;
|
|
788
|
+
},
|
|
789
|
+
httpAuthSchemeProvider() {
|
|
790
|
+
return _httpAuthSchemeProvider;
|
|
791
|
+
},
|
|
792
|
+
setCredentials(credentials) {
|
|
793
|
+
_credentials = credentials;
|
|
794
|
+
},
|
|
795
|
+
credentials() {
|
|
796
|
+
return _credentials;
|
|
797
|
+
}
|
|
798
|
+
};
|
|
799
|
+
}, "getHttpAuthExtensionConfiguration");
|
|
800
|
+
var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
|
|
801
|
+
return {
|
|
802
|
+
httpAuthSchemes: config.httpAuthSchemes(),
|
|
803
|
+
httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
|
|
804
|
+
credentials: config.credentials()
|
|
805
|
+
};
|
|
806
|
+
}, "resolveHttpAuthRuntimeConfig");
|
|
807
|
+
|
|
808
|
+
// src/runtimeExtensions.ts
|
|
767
809
|
var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
|
|
768
810
|
var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
|
|
769
811
|
const extensionConfiguration = {
|
|
770
812
|
...asPartial((0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig)),
|
|
771
813
|
...asPartial((0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig)),
|
|
772
|
-
...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig))
|
|
814
|
+
...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig)),
|
|
815
|
+
...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig))
|
|
773
816
|
};
|
|
774
817
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
775
818
|
return {
|
|
776
819
|
...runtimeConfig,
|
|
777
820
|
...(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
|
|
778
821
|
...(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
779
|
-
...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration)
|
|
822
|
+
...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
|
|
823
|
+
...resolveHttpAuthRuntimeConfig(extensionConfiguration)
|
|
780
824
|
};
|
|
781
825
|
}, "resolveRuntimeExtensions");
|
|
782
826
|
|
|
@@ -789,8 +833,8 @@ var _SageMakerClient = class _SageMakerClient extends import_smithy_client.Clien
|
|
|
789
833
|
const _config_3 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_2);
|
|
790
834
|
const _config_4 = (0, import_middleware_retry.resolveRetryConfig)(_config_3);
|
|
791
835
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
792
|
-
const _config_6 = (0,
|
|
793
|
-
const _config_7 = (0,
|
|
836
|
+
const _config_6 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_5);
|
|
837
|
+
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
794
838
|
const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
795
839
|
super(_config_8);
|
|
796
840
|
this.config = _config_8;
|
|
@@ -799,8 +843,14 @@ var _SageMakerClient = class _SageMakerClient extends import_smithy_client.Clien
|
|
|
799
843
|
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
800
844
|
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
801
845
|
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
802
|
-
this.middlewareStack.use((0, import_middleware_signing.getAwsAuthPlugin)(this.config));
|
|
803
846
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
847
|
+
this.middlewareStack.use(
|
|
848
|
+
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
849
|
+
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
|
|
850
|
+
identityProviderConfigProvider: this.getIdentityProviderConfigProvider()
|
|
851
|
+
})
|
|
852
|
+
);
|
|
853
|
+
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
804
854
|
}
|
|
805
855
|
/**
|
|
806
856
|
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
@@ -810,6 +860,14 @@ var _SageMakerClient = class _SageMakerClient extends import_smithy_client.Clien
|
|
|
810
860
|
destroy() {
|
|
811
861
|
super.destroy();
|
|
812
862
|
}
|
|
863
|
+
getDefaultHttpAuthSchemeParametersProvider() {
|
|
864
|
+
return import_httpAuthSchemeProvider.defaultSageMakerHttpAuthSchemeParametersProvider;
|
|
865
|
+
}
|
|
866
|
+
getIdentityProviderConfigProvider() {
|
|
867
|
+
return async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
868
|
+
"aws.auth#sigv4": config.credentials
|
|
869
|
+
});
|
|
870
|
+
}
|
|
813
871
|
};
|
|
814
872
|
__name(_SageMakerClient, "SageMakerClient");
|
|
815
873
|
var SageMakerClient = _SageMakerClient;
|
|
@@ -824,7 +882,7 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
824
882
|
var import_types = require("@smithy/types");
|
|
825
883
|
|
|
826
884
|
// src/protocols/Aws_json1_1.ts
|
|
827
|
-
var
|
|
885
|
+
var import_core2 = require("@aws-sdk/core");
|
|
828
886
|
|
|
829
887
|
|
|
830
888
|
var import_uuid = require("uuid");
|
|
@@ -10095,7 +10153,7 @@ var de_AutoMLProblemTypeResolvedAttributes = /* @__PURE__ */ __name((output, con
|
|
|
10095
10153
|
var de_AutoMLResolvedAttributes = /* @__PURE__ */ __name((output, context) => {
|
|
10096
10154
|
return (0, import_smithy_client.take)(output, {
|
|
10097
10155
|
AutoMLJobObjective: (_) => de_AutoMLJobObjective(_, context),
|
|
10098
|
-
AutoMLProblemTypeResolvedAttributes: (_) => de_AutoMLProblemTypeResolvedAttributes((0,
|
|
10156
|
+
AutoMLProblemTypeResolvedAttributes: (_) => de_AutoMLProblemTypeResolvedAttributes((0, import_core2.awsExpectUnion)(_), context),
|
|
10099
10157
|
CompletionCriteria: (_) => de_AutoMLJobCompletionCriteria(_, context)
|
|
10100
10158
|
});
|
|
10101
10159
|
}, "de_AutoMLResolvedAttributes");
|
|
@@ -11004,13 +11062,13 @@ var de_CustomFileSystemConfig = /* @__PURE__ */ __name((output, context) => {
|
|
|
11004
11062
|
}, "de_CustomFileSystemConfig");
|
|
11005
11063
|
var de_CustomFileSystemConfigs = /* @__PURE__ */ __name((output, context) => {
|
|
11006
11064
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
11007
|
-
return de_CustomFileSystemConfig((0,
|
|
11065
|
+
return de_CustomFileSystemConfig((0, import_core2.awsExpectUnion)(entry), context);
|
|
11008
11066
|
});
|
|
11009
11067
|
return retVal;
|
|
11010
11068
|
}, "de_CustomFileSystemConfigs");
|
|
11011
11069
|
var de_CustomFileSystems = /* @__PURE__ */ __name((output, context) => {
|
|
11012
11070
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
11013
|
-
return de_CustomFileSystem((0,
|
|
11071
|
+
return de_CustomFileSystem((0, import_core2.awsExpectUnion)(entry), context);
|
|
11014
11072
|
});
|
|
11015
11073
|
return retVal;
|
|
11016
11074
|
}, "de_CustomFileSystems");
|
|
@@ -11417,7 +11475,7 @@ var de_DescribeAutoMLJobV2Response = /* @__PURE__ */ __name((output, context) =>
|
|
|
11417
11475
|
AutoMLJobObjective: (_) => de_AutoMLJobObjective(_, context),
|
|
11418
11476
|
AutoMLJobSecondaryStatus: import_smithy_client.expectString,
|
|
11419
11477
|
AutoMLJobStatus: import_smithy_client.expectString,
|
|
11420
|
-
AutoMLProblemTypeConfig: (_) => de_AutoMLProblemTypeConfig((0,
|
|
11478
|
+
AutoMLProblemTypeConfig: (_) => de_AutoMLProblemTypeConfig((0, import_core2.awsExpectUnion)(_), context),
|
|
11421
11479
|
AutoMLProblemTypeConfigName: import_smithy_client.expectString,
|
|
11422
11480
|
BestCandidate: (_) => de_AutoMLCandidate(_, context),
|
|
11423
11481
|
CreationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
@@ -12830,7 +12888,7 @@ var de_FailStepMetadata = /* @__PURE__ */ __name((output, context) => {
|
|
|
12830
12888
|
}, "de_FailStepMetadata");
|
|
12831
12889
|
var de_FeatureDefinition = /* @__PURE__ */ __name((output, context) => {
|
|
12832
12890
|
return (0, import_smithy_client.take)(output, {
|
|
12833
|
-
CollectionConfig: (_) => de_CollectionConfig((0,
|
|
12891
|
+
CollectionConfig: (_) => de_CollectionConfig((0, import_core2.awsExpectUnion)(_), context),
|
|
12834
12892
|
CollectionType: import_smithy_client.expectString,
|
|
12835
12893
|
FeatureName: import_smithy_client.expectString,
|
|
12836
12894
|
FeatureType: import_smithy_client.expectString
|
|
@@ -16285,7 +16343,7 @@ var de_SageMakerImageVersionAliases = /* @__PURE__ */ __name((output, context) =
|
|
|
16285
16343
|
}, "de_SageMakerImageVersionAliases");
|
|
16286
16344
|
var de_ScalingPolicies = /* @__PURE__ */ __name((output, context) => {
|
|
16287
16345
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
16288
|
-
return de_ScalingPolicy((0,
|
|
16346
|
+
return de_ScalingPolicy((0, import_core2.awsExpectUnion)(entry), context);
|
|
16289
16347
|
});
|
|
16290
16348
|
return retVal;
|
|
16291
16349
|
}, "de_ScalingPolicies");
|
|
@@ -16635,7 +16693,7 @@ var de_TargetPlatform = /* @__PURE__ */ __name((output, context) => {
|
|
|
16635
16693
|
}, "de_TargetPlatform");
|
|
16636
16694
|
var de_TargetTrackingScalingPolicyConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
16637
16695
|
return (0, import_smithy_client.take)(output, {
|
|
16638
|
-
MetricSpecification: (_) => de_MetricSpecification((0,
|
|
16696
|
+
MetricSpecification: (_) => de_MetricSpecification((0, import_core2.awsExpectUnion)(_), context),
|
|
16639
16697
|
TargetValue: import_smithy_client.limitedParseDouble
|
|
16640
16698
|
});
|
|
16641
16699
|
}, "de_TargetTrackingScalingPolicyConfiguration");
|
|
@@ -17062,7 +17120,7 @@ var de_TrialComponentParameters = /* @__PURE__ */ __name((output, context) => {
|
|
|
17062
17120
|
if (value === null) {
|
|
17063
17121
|
return acc;
|
|
17064
17122
|
}
|
|
17065
|
-
acc[key] = de_TrialComponentParameterValue((0,
|
|
17123
|
+
acc[key] = de_TrialComponentParameterValue((0, import_core2.awsExpectUnion)(value), context);
|
|
17066
17124
|
return acc;
|
|
17067
17125
|
},
|
|
17068
17126
|
{}
|
|
@@ -23795,292 +23853,292 @@ var SageMaker = _SageMaker;
|
|
|
23795
23853
|
(0, import_smithy_client.createAggregatedClient)(commands, SageMaker);
|
|
23796
23854
|
|
|
23797
23855
|
// src/pagination/ListActionsPaginator.ts
|
|
23798
|
-
|
|
23799
|
-
var paginateListActions = (0,
|
|
23856
|
+
|
|
23857
|
+
var paginateListActions = (0, import_core.createPaginator)(SageMakerClient, ListActionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23800
23858
|
|
|
23801
23859
|
// src/pagination/ListAlgorithmsPaginator.ts
|
|
23802
|
-
|
|
23803
|
-
var paginateListAlgorithms = (0,
|
|
23860
|
+
|
|
23861
|
+
var paginateListAlgorithms = (0, import_core.createPaginator)(SageMakerClient, ListAlgorithmsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23804
23862
|
|
|
23805
23863
|
// src/pagination/ListAliasesPaginator.ts
|
|
23806
|
-
|
|
23807
|
-
var paginateListAliases = (0,
|
|
23864
|
+
|
|
23865
|
+
var paginateListAliases = (0, import_core.createPaginator)(SageMakerClient, ListAliasesCommand, "NextToken", "NextToken", "MaxResults");
|
|
23808
23866
|
|
|
23809
23867
|
// src/pagination/ListAppImageConfigsPaginator.ts
|
|
23810
|
-
|
|
23811
|
-
var paginateListAppImageConfigs = (0,
|
|
23868
|
+
|
|
23869
|
+
var paginateListAppImageConfigs = (0, import_core.createPaginator)(SageMakerClient, ListAppImageConfigsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23812
23870
|
|
|
23813
23871
|
// src/pagination/ListAppsPaginator.ts
|
|
23814
|
-
|
|
23815
|
-
var paginateListApps = (0,
|
|
23872
|
+
|
|
23873
|
+
var paginateListApps = (0, import_core.createPaginator)(SageMakerClient, ListAppsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23816
23874
|
|
|
23817
23875
|
// src/pagination/ListArtifactsPaginator.ts
|
|
23818
|
-
|
|
23819
|
-
var paginateListArtifacts = (0,
|
|
23876
|
+
|
|
23877
|
+
var paginateListArtifacts = (0, import_core.createPaginator)(SageMakerClient, ListArtifactsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23820
23878
|
|
|
23821
23879
|
// src/pagination/ListAssociationsPaginator.ts
|
|
23822
|
-
|
|
23823
|
-
var paginateListAssociations = (0,
|
|
23880
|
+
|
|
23881
|
+
var paginateListAssociations = (0, import_core.createPaginator)(SageMakerClient, ListAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23824
23882
|
|
|
23825
23883
|
// src/pagination/ListAutoMLJobsPaginator.ts
|
|
23826
|
-
|
|
23827
|
-
var paginateListAutoMLJobs = (0,
|
|
23884
|
+
|
|
23885
|
+
var paginateListAutoMLJobs = (0, import_core.createPaginator)(SageMakerClient, ListAutoMLJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23828
23886
|
|
|
23829
23887
|
// src/pagination/ListCandidatesForAutoMLJobPaginator.ts
|
|
23830
|
-
|
|
23831
|
-
var paginateListCandidatesForAutoMLJob = (0,
|
|
23888
|
+
|
|
23889
|
+
var paginateListCandidatesForAutoMLJob = (0, import_core.createPaginator)(SageMakerClient, ListCandidatesForAutoMLJobCommand, "NextToken", "NextToken", "MaxResults");
|
|
23832
23890
|
|
|
23833
23891
|
// src/pagination/ListCodeRepositoriesPaginator.ts
|
|
23834
|
-
|
|
23835
|
-
var paginateListCodeRepositories = (0,
|
|
23892
|
+
|
|
23893
|
+
var paginateListCodeRepositories = (0, import_core.createPaginator)(SageMakerClient, ListCodeRepositoriesCommand, "NextToken", "NextToken", "MaxResults");
|
|
23836
23894
|
|
|
23837
23895
|
// src/pagination/ListCompilationJobsPaginator.ts
|
|
23838
|
-
|
|
23839
|
-
var paginateListCompilationJobs = (0,
|
|
23896
|
+
|
|
23897
|
+
var paginateListCompilationJobs = (0, import_core.createPaginator)(SageMakerClient, ListCompilationJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23840
23898
|
|
|
23841
23899
|
// src/pagination/ListContextsPaginator.ts
|
|
23842
|
-
|
|
23843
|
-
var paginateListContexts = (0,
|
|
23900
|
+
|
|
23901
|
+
var paginateListContexts = (0, import_core.createPaginator)(SageMakerClient, ListContextsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23844
23902
|
|
|
23845
23903
|
// src/pagination/ListDataQualityJobDefinitionsPaginator.ts
|
|
23846
|
-
|
|
23847
|
-
var paginateListDataQualityJobDefinitions = (0,
|
|
23904
|
+
|
|
23905
|
+
var paginateListDataQualityJobDefinitions = (0, import_core.createPaginator)(SageMakerClient, ListDataQualityJobDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23848
23906
|
|
|
23849
23907
|
// src/pagination/ListDeviceFleetsPaginator.ts
|
|
23850
|
-
|
|
23851
|
-
var paginateListDeviceFleets = (0,
|
|
23908
|
+
|
|
23909
|
+
var paginateListDeviceFleets = (0, import_core.createPaginator)(SageMakerClient, ListDeviceFleetsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23852
23910
|
|
|
23853
23911
|
// src/pagination/ListDevicesPaginator.ts
|
|
23854
|
-
|
|
23855
|
-
var paginateListDevices = (0,
|
|
23912
|
+
|
|
23913
|
+
var paginateListDevices = (0, import_core.createPaginator)(SageMakerClient, ListDevicesCommand, "NextToken", "NextToken", "MaxResults");
|
|
23856
23914
|
|
|
23857
23915
|
// src/pagination/ListDomainsPaginator.ts
|
|
23858
|
-
|
|
23859
|
-
var paginateListDomains = (0,
|
|
23916
|
+
|
|
23917
|
+
var paginateListDomains = (0, import_core.createPaginator)(SageMakerClient, ListDomainsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23860
23918
|
|
|
23861
23919
|
// src/pagination/ListEdgeDeploymentPlansPaginator.ts
|
|
23862
|
-
|
|
23863
|
-
var paginateListEdgeDeploymentPlans = (0,
|
|
23920
|
+
|
|
23921
|
+
var paginateListEdgeDeploymentPlans = (0, import_core.createPaginator)(SageMakerClient, ListEdgeDeploymentPlansCommand, "NextToken", "NextToken", "MaxResults");
|
|
23864
23922
|
|
|
23865
23923
|
// src/pagination/ListEdgePackagingJobsPaginator.ts
|
|
23866
|
-
|
|
23867
|
-
var paginateListEdgePackagingJobs = (0,
|
|
23924
|
+
|
|
23925
|
+
var paginateListEdgePackagingJobs = (0, import_core.createPaginator)(SageMakerClient, ListEdgePackagingJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23868
23926
|
|
|
23869
23927
|
// src/pagination/ListEndpointConfigsPaginator.ts
|
|
23870
|
-
|
|
23871
|
-
var paginateListEndpointConfigs = (0,
|
|
23928
|
+
|
|
23929
|
+
var paginateListEndpointConfigs = (0, import_core.createPaginator)(SageMakerClient, ListEndpointConfigsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23872
23930
|
|
|
23873
23931
|
// src/pagination/ListEndpointsPaginator.ts
|
|
23874
|
-
|
|
23875
|
-
var paginateListEndpoints = (0,
|
|
23932
|
+
|
|
23933
|
+
var paginateListEndpoints = (0, import_core.createPaginator)(SageMakerClient, ListEndpointsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23876
23934
|
|
|
23877
23935
|
// src/pagination/ListExperimentsPaginator.ts
|
|
23878
|
-
|
|
23879
|
-
var paginateListExperiments = (0,
|
|
23936
|
+
|
|
23937
|
+
var paginateListExperiments = (0, import_core.createPaginator)(SageMakerClient, ListExperimentsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23880
23938
|
|
|
23881
23939
|
// src/pagination/ListFeatureGroupsPaginator.ts
|
|
23882
|
-
|
|
23883
|
-
var paginateListFeatureGroups = (0,
|
|
23940
|
+
|
|
23941
|
+
var paginateListFeatureGroups = (0, import_core.createPaginator)(SageMakerClient, ListFeatureGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23884
23942
|
|
|
23885
23943
|
// src/pagination/ListFlowDefinitionsPaginator.ts
|
|
23886
|
-
|
|
23887
|
-
var paginateListFlowDefinitions = (0,
|
|
23944
|
+
|
|
23945
|
+
var paginateListFlowDefinitions = (0, import_core.createPaginator)(SageMakerClient, ListFlowDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23888
23946
|
|
|
23889
23947
|
// src/pagination/ListHumanTaskUisPaginator.ts
|
|
23890
|
-
|
|
23891
|
-
var paginateListHumanTaskUis = (0,
|
|
23948
|
+
|
|
23949
|
+
var paginateListHumanTaskUis = (0, import_core.createPaginator)(SageMakerClient, ListHumanTaskUisCommand, "NextToken", "NextToken", "MaxResults");
|
|
23892
23950
|
|
|
23893
23951
|
// src/pagination/ListHyperParameterTuningJobsPaginator.ts
|
|
23894
|
-
|
|
23895
|
-
var paginateListHyperParameterTuningJobs = (0,
|
|
23952
|
+
|
|
23953
|
+
var paginateListHyperParameterTuningJobs = (0, import_core.createPaginator)(SageMakerClient, ListHyperParameterTuningJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23896
23954
|
|
|
23897
23955
|
// src/pagination/ListImageVersionsPaginator.ts
|
|
23898
|
-
|
|
23899
|
-
var paginateListImageVersions = (0,
|
|
23956
|
+
|
|
23957
|
+
var paginateListImageVersions = (0, import_core.createPaginator)(SageMakerClient, ListImageVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23900
23958
|
|
|
23901
23959
|
// src/pagination/ListImagesPaginator.ts
|
|
23902
|
-
|
|
23903
|
-
var paginateListImages = (0,
|
|
23960
|
+
|
|
23961
|
+
var paginateListImages = (0, import_core.createPaginator)(SageMakerClient, ListImagesCommand, "NextToken", "NextToken", "MaxResults");
|
|
23904
23962
|
|
|
23905
23963
|
// src/pagination/ListInferenceComponentsPaginator.ts
|
|
23906
|
-
|
|
23907
|
-
var paginateListInferenceComponents = (0,
|
|
23964
|
+
|
|
23965
|
+
var paginateListInferenceComponents = (0, import_core.createPaginator)(SageMakerClient, ListInferenceComponentsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23908
23966
|
|
|
23909
23967
|
// src/pagination/ListInferenceExperimentsPaginator.ts
|
|
23910
|
-
|
|
23911
|
-
var paginateListInferenceExperiments = (0,
|
|
23968
|
+
|
|
23969
|
+
var paginateListInferenceExperiments = (0, import_core.createPaginator)(SageMakerClient, ListInferenceExperimentsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23912
23970
|
|
|
23913
23971
|
// src/pagination/ListInferenceRecommendationsJobStepsPaginator.ts
|
|
23914
|
-
|
|
23915
|
-
var paginateListInferenceRecommendationsJobSteps = (0,
|
|
23972
|
+
|
|
23973
|
+
var paginateListInferenceRecommendationsJobSteps = (0, import_core.createPaginator)(SageMakerClient, ListInferenceRecommendationsJobStepsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23916
23974
|
|
|
23917
23975
|
// src/pagination/ListInferenceRecommendationsJobsPaginator.ts
|
|
23918
|
-
|
|
23919
|
-
var paginateListInferenceRecommendationsJobs = (0,
|
|
23976
|
+
|
|
23977
|
+
var paginateListInferenceRecommendationsJobs = (0, import_core.createPaginator)(SageMakerClient, ListInferenceRecommendationsJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23920
23978
|
|
|
23921
23979
|
// src/pagination/ListLabelingJobsForWorkteamPaginator.ts
|
|
23922
|
-
|
|
23923
|
-
var paginateListLabelingJobsForWorkteam = (0,
|
|
23980
|
+
|
|
23981
|
+
var paginateListLabelingJobsForWorkteam = (0, import_core.createPaginator)(SageMakerClient, ListLabelingJobsForWorkteamCommand, "NextToken", "NextToken", "MaxResults");
|
|
23924
23982
|
|
|
23925
23983
|
// src/pagination/ListLabelingJobsPaginator.ts
|
|
23926
|
-
|
|
23927
|
-
var paginateListLabelingJobs = (0,
|
|
23984
|
+
|
|
23985
|
+
var paginateListLabelingJobs = (0, import_core.createPaginator)(SageMakerClient, ListLabelingJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23928
23986
|
|
|
23929
23987
|
// src/pagination/ListLineageGroupsPaginator.ts
|
|
23930
|
-
|
|
23931
|
-
var paginateListLineageGroups = (0,
|
|
23988
|
+
|
|
23989
|
+
var paginateListLineageGroups = (0, import_core.createPaginator)(SageMakerClient, ListLineageGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23932
23990
|
|
|
23933
23991
|
// src/pagination/ListModelBiasJobDefinitionsPaginator.ts
|
|
23934
|
-
|
|
23935
|
-
var paginateListModelBiasJobDefinitions = (0,
|
|
23992
|
+
|
|
23993
|
+
var paginateListModelBiasJobDefinitions = (0, import_core.createPaginator)(SageMakerClient, ListModelBiasJobDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23936
23994
|
|
|
23937
23995
|
// src/pagination/ListModelCardExportJobsPaginator.ts
|
|
23938
|
-
|
|
23939
|
-
var paginateListModelCardExportJobs = (0,
|
|
23996
|
+
|
|
23997
|
+
var paginateListModelCardExportJobs = (0, import_core.createPaginator)(SageMakerClient, ListModelCardExportJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23940
23998
|
|
|
23941
23999
|
// src/pagination/ListModelCardVersionsPaginator.ts
|
|
23942
|
-
|
|
23943
|
-
var paginateListModelCardVersions = (0,
|
|
24000
|
+
|
|
24001
|
+
var paginateListModelCardVersions = (0, import_core.createPaginator)(SageMakerClient, ListModelCardVersionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23944
24002
|
|
|
23945
24003
|
// src/pagination/ListModelCardsPaginator.ts
|
|
23946
|
-
|
|
23947
|
-
var paginateListModelCards = (0,
|
|
24004
|
+
|
|
24005
|
+
var paginateListModelCards = (0, import_core.createPaginator)(SageMakerClient, ListModelCardsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23948
24006
|
|
|
23949
24007
|
// src/pagination/ListModelExplainabilityJobDefinitionsPaginator.ts
|
|
23950
|
-
|
|
23951
|
-
var paginateListModelExplainabilityJobDefinitions = (0,
|
|
24008
|
+
|
|
24009
|
+
var paginateListModelExplainabilityJobDefinitions = (0, import_core.createPaginator)(SageMakerClient, ListModelExplainabilityJobDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23952
24010
|
|
|
23953
24011
|
// src/pagination/ListModelMetadataPaginator.ts
|
|
23954
|
-
|
|
23955
|
-
var paginateListModelMetadata = (0,
|
|
24012
|
+
|
|
24013
|
+
var paginateListModelMetadata = (0, import_core.createPaginator)(SageMakerClient, ListModelMetadataCommand, "NextToken", "NextToken", "MaxResults");
|
|
23956
24014
|
|
|
23957
24015
|
// src/pagination/ListModelPackageGroupsPaginator.ts
|
|
23958
|
-
|
|
23959
|
-
var paginateListModelPackageGroups = (0,
|
|
24016
|
+
|
|
24017
|
+
var paginateListModelPackageGroups = (0, import_core.createPaginator)(SageMakerClient, ListModelPackageGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23960
24018
|
|
|
23961
24019
|
// src/pagination/ListModelPackagesPaginator.ts
|
|
23962
|
-
|
|
23963
|
-
var paginateListModelPackages = (0,
|
|
24020
|
+
|
|
24021
|
+
var paginateListModelPackages = (0, import_core.createPaginator)(SageMakerClient, ListModelPackagesCommand, "NextToken", "NextToken", "MaxResults");
|
|
23964
24022
|
|
|
23965
24023
|
// src/pagination/ListModelQualityJobDefinitionsPaginator.ts
|
|
23966
|
-
|
|
23967
|
-
var paginateListModelQualityJobDefinitions = (0,
|
|
24024
|
+
|
|
24025
|
+
var paginateListModelQualityJobDefinitions = (0, import_core.createPaginator)(SageMakerClient, ListModelQualityJobDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23968
24026
|
|
|
23969
24027
|
// src/pagination/ListModelsPaginator.ts
|
|
23970
|
-
|
|
23971
|
-
var paginateListModels = (0,
|
|
24028
|
+
|
|
24029
|
+
var paginateListModels = (0, import_core.createPaginator)(SageMakerClient, ListModelsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23972
24030
|
|
|
23973
24031
|
// src/pagination/ListMonitoringAlertHistoryPaginator.ts
|
|
23974
|
-
|
|
23975
|
-
var paginateListMonitoringAlertHistory = (0,
|
|
24032
|
+
|
|
24033
|
+
var paginateListMonitoringAlertHistory = (0, import_core.createPaginator)(SageMakerClient, ListMonitoringAlertHistoryCommand, "NextToken", "NextToken", "MaxResults");
|
|
23976
24034
|
|
|
23977
24035
|
// src/pagination/ListMonitoringAlertsPaginator.ts
|
|
23978
|
-
|
|
23979
|
-
var paginateListMonitoringAlerts = (0,
|
|
24036
|
+
|
|
24037
|
+
var paginateListMonitoringAlerts = (0, import_core.createPaginator)(SageMakerClient, ListMonitoringAlertsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23980
24038
|
|
|
23981
24039
|
// src/pagination/ListMonitoringExecutionsPaginator.ts
|
|
23982
|
-
|
|
23983
|
-
var paginateListMonitoringExecutions = (0,
|
|
24040
|
+
|
|
24041
|
+
var paginateListMonitoringExecutions = (0, import_core.createPaginator)(SageMakerClient, ListMonitoringExecutionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23984
24042
|
|
|
23985
24043
|
// src/pagination/ListMonitoringSchedulesPaginator.ts
|
|
23986
|
-
|
|
23987
|
-
var paginateListMonitoringSchedules = (0,
|
|
24044
|
+
|
|
24045
|
+
var paginateListMonitoringSchedules = (0, import_core.createPaginator)(SageMakerClient, ListMonitoringSchedulesCommand, "NextToken", "NextToken", "MaxResults");
|
|
23988
24046
|
|
|
23989
24047
|
// src/pagination/ListNotebookInstanceLifecycleConfigsPaginator.ts
|
|
23990
|
-
|
|
23991
|
-
var paginateListNotebookInstanceLifecycleConfigs = (0,
|
|
24048
|
+
|
|
24049
|
+
var paginateListNotebookInstanceLifecycleConfigs = (0, import_core.createPaginator)(SageMakerClient, ListNotebookInstanceLifecycleConfigsCommand, "NextToken", "NextToken", "MaxResults");
|
|
23992
24050
|
|
|
23993
24051
|
// src/pagination/ListNotebookInstancesPaginator.ts
|
|
23994
|
-
|
|
23995
|
-
var paginateListNotebookInstances = (0,
|
|
24052
|
+
|
|
24053
|
+
var paginateListNotebookInstances = (0, import_core.createPaginator)(SageMakerClient, ListNotebookInstancesCommand, "NextToken", "NextToken", "MaxResults");
|
|
23996
24054
|
|
|
23997
24055
|
// src/pagination/ListPipelineExecutionStepsPaginator.ts
|
|
23998
|
-
|
|
23999
|
-
var paginateListPipelineExecutionSteps = (0,
|
|
24056
|
+
|
|
24057
|
+
var paginateListPipelineExecutionSteps = (0, import_core.createPaginator)(SageMakerClient, ListPipelineExecutionStepsCommand, "NextToken", "NextToken", "MaxResults");
|
|
24000
24058
|
|
|
24001
24059
|
// src/pagination/ListPipelineExecutionsPaginator.ts
|
|
24002
|
-
|
|
24003
|
-
var paginateListPipelineExecutions = (0,
|
|
24060
|
+
|
|
24061
|
+
var paginateListPipelineExecutions = (0, import_core.createPaginator)(SageMakerClient, ListPipelineExecutionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
24004
24062
|
|
|
24005
24063
|
// src/pagination/ListPipelineParametersForExecutionPaginator.ts
|
|
24006
|
-
|
|
24007
|
-
var paginateListPipelineParametersForExecution = (0,
|
|
24064
|
+
|
|
24065
|
+
var paginateListPipelineParametersForExecution = (0, import_core.createPaginator)(SageMakerClient, ListPipelineParametersForExecutionCommand, "NextToken", "NextToken", "MaxResults");
|
|
24008
24066
|
|
|
24009
24067
|
// src/pagination/ListPipelinesPaginator.ts
|
|
24010
|
-
|
|
24011
|
-
var paginateListPipelines = (0,
|
|
24068
|
+
|
|
24069
|
+
var paginateListPipelines = (0, import_core.createPaginator)(SageMakerClient, ListPipelinesCommand, "NextToken", "NextToken", "MaxResults");
|
|
24012
24070
|
|
|
24013
24071
|
// src/pagination/ListProcessingJobsPaginator.ts
|
|
24014
|
-
|
|
24015
|
-
var paginateListProcessingJobs = (0,
|
|
24072
|
+
|
|
24073
|
+
var paginateListProcessingJobs = (0, import_core.createPaginator)(SageMakerClient, ListProcessingJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
24016
24074
|
|
|
24017
24075
|
// src/pagination/ListProjectsPaginator.ts
|
|
24018
|
-
|
|
24019
|
-
var paginateListProjects = (0,
|
|
24076
|
+
|
|
24077
|
+
var paginateListProjects = (0, import_core.createPaginator)(SageMakerClient, ListProjectsCommand, "NextToken", "NextToken", "MaxResults");
|
|
24020
24078
|
|
|
24021
24079
|
// src/pagination/ListResourceCatalogsPaginator.ts
|
|
24022
|
-
|
|
24023
|
-
var paginateListResourceCatalogs = (0,
|
|
24080
|
+
|
|
24081
|
+
var paginateListResourceCatalogs = (0, import_core.createPaginator)(SageMakerClient, ListResourceCatalogsCommand, "NextToken", "NextToken", "MaxResults");
|
|
24024
24082
|
|
|
24025
24083
|
// src/pagination/ListSpacesPaginator.ts
|
|
24026
|
-
|
|
24027
|
-
var paginateListSpaces = (0,
|
|
24084
|
+
|
|
24085
|
+
var paginateListSpaces = (0, import_core.createPaginator)(SageMakerClient, ListSpacesCommand, "NextToken", "NextToken", "MaxResults");
|
|
24028
24086
|
|
|
24029
24087
|
// src/pagination/ListStageDevicesPaginator.ts
|
|
24030
|
-
|
|
24031
|
-
var paginateListStageDevices = (0,
|
|
24088
|
+
|
|
24089
|
+
var paginateListStageDevices = (0, import_core.createPaginator)(SageMakerClient, ListStageDevicesCommand, "NextToken", "NextToken", "MaxResults");
|
|
24032
24090
|
|
|
24033
24091
|
// src/pagination/ListStudioLifecycleConfigsPaginator.ts
|
|
24034
|
-
|
|
24035
|
-
var paginateListStudioLifecycleConfigs = (0,
|
|
24092
|
+
|
|
24093
|
+
var paginateListStudioLifecycleConfigs = (0, import_core.createPaginator)(SageMakerClient, ListStudioLifecycleConfigsCommand, "NextToken", "NextToken", "MaxResults");
|
|
24036
24094
|
|
|
24037
24095
|
// src/pagination/ListSubscribedWorkteamsPaginator.ts
|
|
24038
|
-
|
|
24039
|
-
var paginateListSubscribedWorkteams = (0,
|
|
24096
|
+
|
|
24097
|
+
var paginateListSubscribedWorkteams = (0, import_core.createPaginator)(SageMakerClient, ListSubscribedWorkteamsCommand, "NextToken", "NextToken", "MaxResults");
|
|
24040
24098
|
|
|
24041
24099
|
// src/pagination/ListTagsPaginator.ts
|
|
24042
|
-
|
|
24043
|
-
var paginateListTags = (0,
|
|
24100
|
+
|
|
24101
|
+
var paginateListTags = (0, import_core.createPaginator)(SageMakerClient, ListTagsCommand, "NextToken", "NextToken", "MaxResults");
|
|
24044
24102
|
|
|
24045
24103
|
// src/pagination/ListTrainingJobsForHyperParameterTuningJobPaginator.ts
|
|
24046
|
-
|
|
24047
|
-
var paginateListTrainingJobsForHyperParameterTuningJob = (0,
|
|
24104
|
+
|
|
24105
|
+
var paginateListTrainingJobsForHyperParameterTuningJob = (0, import_core.createPaginator)(SageMakerClient, ListTrainingJobsForHyperParameterTuningJobCommand, "NextToken", "NextToken", "MaxResults");
|
|
24048
24106
|
|
|
24049
24107
|
// src/pagination/ListTrainingJobsPaginator.ts
|
|
24050
|
-
|
|
24051
|
-
var paginateListTrainingJobs = (0,
|
|
24108
|
+
|
|
24109
|
+
var paginateListTrainingJobs = (0, import_core.createPaginator)(SageMakerClient, ListTrainingJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
24052
24110
|
|
|
24053
24111
|
// src/pagination/ListTransformJobsPaginator.ts
|
|
24054
|
-
|
|
24055
|
-
var paginateListTransformJobs = (0,
|
|
24112
|
+
|
|
24113
|
+
var paginateListTransformJobs = (0, import_core.createPaginator)(SageMakerClient, ListTransformJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
24056
24114
|
|
|
24057
24115
|
// src/pagination/ListTrialComponentsPaginator.ts
|
|
24058
|
-
|
|
24059
|
-
var paginateListTrialComponents = (0,
|
|
24116
|
+
|
|
24117
|
+
var paginateListTrialComponents = (0, import_core.createPaginator)(SageMakerClient, ListTrialComponentsCommand, "NextToken", "NextToken", "MaxResults");
|
|
24060
24118
|
|
|
24061
24119
|
// src/pagination/ListTrialsPaginator.ts
|
|
24062
|
-
|
|
24063
|
-
var paginateListTrials = (0,
|
|
24120
|
+
|
|
24121
|
+
var paginateListTrials = (0, import_core.createPaginator)(SageMakerClient, ListTrialsCommand, "NextToken", "NextToken", "MaxResults");
|
|
24064
24122
|
|
|
24065
24123
|
// src/pagination/ListUserProfilesPaginator.ts
|
|
24066
|
-
|
|
24067
|
-
var paginateListUserProfiles = (0,
|
|
24124
|
+
|
|
24125
|
+
var paginateListUserProfiles = (0, import_core.createPaginator)(SageMakerClient, ListUserProfilesCommand, "NextToken", "NextToken", "MaxResults");
|
|
24068
24126
|
|
|
24069
24127
|
// src/pagination/ListWorkforcesPaginator.ts
|
|
24070
|
-
|
|
24071
|
-
var paginateListWorkforces = (0,
|
|
24128
|
+
|
|
24129
|
+
var paginateListWorkforces = (0, import_core.createPaginator)(SageMakerClient, ListWorkforcesCommand, "NextToken", "NextToken", "MaxResults");
|
|
24072
24130
|
|
|
24073
24131
|
// src/pagination/ListWorkteamsPaginator.ts
|
|
24074
|
-
|
|
24075
|
-
var paginateListWorkteams = (0,
|
|
24132
|
+
|
|
24133
|
+
var paginateListWorkteams = (0, import_core.createPaginator)(SageMakerClient, ListWorkteamsCommand, "NextToken", "NextToken", "MaxResults");
|
|
24076
24134
|
|
|
24077
24135
|
// src/pagination/QueryLineagePaginator.ts
|
|
24078
|
-
|
|
24079
|
-
var paginateQueryLineage = (0,
|
|
24136
|
+
|
|
24137
|
+
var paginateQueryLineage = (0, import_core.createPaginator)(SageMakerClient, QueryLineageCommand, "NextToken", "NextToken", "MaxResults");
|
|
24080
24138
|
|
|
24081
24139
|
// src/pagination/SearchPaginator.ts
|
|
24082
|
-
|
|
24083
|
-
var paginateSearch = (0,
|
|
24140
|
+
|
|
24141
|
+
var paginateSearch = (0, import_core.createPaginator)(SageMakerClient, SearchCommand, "NextToken", "NextToken", "MaxResults");
|
|
24084
24142
|
|
|
24085
24143
|
// src/waiters/waitForEndpointDeleted.ts
|
|
24086
24144
|
var import_util_waiter = require("@smithy/util-waiter");
|