@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/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, import_middleware_signing.resolveAwsAuthConfig)(_config_5);
793
- const _config_7 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_6);
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 import_core = require("@aws-sdk/core");
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, import_core.awsExpectUnion)(_), context),
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, import_core.awsExpectUnion)(entry), context);
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, import_core.awsExpectUnion)(entry), context);
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, import_core.awsExpectUnion)(_), context),
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, import_core.awsExpectUnion)(_), context),
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, import_core.awsExpectUnion)(entry), context);
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, import_core.awsExpectUnion)(_), context),
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, import_core.awsExpectUnion)(value), context);
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
- var import_core2 = require("@smithy/core");
23799
- var paginateListActions = (0, import_core2.createPaginator)(SageMakerClient, ListActionsCommand, "NextToken", "NextToken", "MaxResults");
23856
+
23857
+ var paginateListActions = (0, import_core.createPaginator)(SageMakerClient, ListActionsCommand, "NextToken", "NextToken", "MaxResults");
23800
23858
 
23801
23859
  // src/pagination/ListAlgorithmsPaginator.ts
23802
- var import_core3 = require("@smithy/core");
23803
- var paginateListAlgorithms = (0, import_core3.createPaginator)(SageMakerClient, ListAlgorithmsCommand, "NextToken", "NextToken", "MaxResults");
23860
+
23861
+ var paginateListAlgorithms = (0, import_core.createPaginator)(SageMakerClient, ListAlgorithmsCommand, "NextToken", "NextToken", "MaxResults");
23804
23862
 
23805
23863
  // src/pagination/ListAliasesPaginator.ts
23806
- var import_core4 = require("@smithy/core");
23807
- var paginateListAliases = (0, import_core4.createPaginator)(SageMakerClient, ListAliasesCommand, "NextToken", "NextToken", "MaxResults");
23864
+
23865
+ var paginateListAliases = (0, import_core.createPaginator)(SageMakerClient, ListAliasesCommand, "NextToken", "NextToken", "MaxResults");
23808
23866
 
23809
23867
  // src/pagination/ListAppImageConfigsPaginator.ts
23810
- var import_core5 = require("@smithy/core");
23811
- var paginateListAppImageConfigs = (0, import_core5.createPaginator)(SageMakerClient, ListAppImageConfigsCommand, "NextToken", "NextToken", "MaxResults");
23868
+
23869
+ var paginateListAppImageConfigs = (0, import_core.createPaginator)(SageMakerClient, ListAppImageConfigsCommand, "NextToken", "NextToken", "MaxResults");
23812
23870
 
23813
23871
  // src/pagination/ListAppsPaginator.ts
23814
- var import_core6 = require("@smithy/core");
23815
- var paginateListApps = (0, import_core6.createPaginator)(SageMakerClient, ListAppsCommand, "NextToken", "NextToken", "MaxResults");
23872
+
23873
+ var paginateListApps = (0, import_core.createPaginator)(SageMakerClient, ListAppsCommand, "NextToken", "NextToken", "MaxResults");
23816
23874
 
23817
23875
  // src/pagination/ListArtifactsPaginator.ts
23818
- var import_core7 = require("@smithy/core");
23819
- var paginateListArtifacts = (0, import_core7.createPaginator)(SageMakerClient, ListArtifactsCommand, "NextToken", "NextToken", "MaxResults");
23876
+
23877
+ var paginateListArtifacts = (0, import_core.createPaginator)(SageMakerClient, ListArtifactsCommand, "NextToken", "NextToken", "MaxResults");
23820
23878
 
23821
23879
  // src/pagination/ListAssociationsPaginator.ts
23822
- var import_core8 = require("@smithy/core");
23823
- var paginateListAssociations = (0, import_core8.createPaginator)(SageMakerClient, ListAssociationsCommand, "NextToken", "NextToken", "MaxResults");
23880
+
23881
+ var paginateListAssociations = (0, import_core.createPaginator)(SageMakerClient, ListAssociationsCommand, "NextToken", "NextToken", "MaxResults");
23824
23882
 
23825
23883
  // src/pagination/ListAutoMLJobsPaginator.ts
23826
- var import_core9 = require("@smithy/core");
23827
- var paginateListAutoMLJobs = (0, import_core9.createPaginator)(SageMakerClient, ListAutoMLJobsCommand, "NextToken", "NextToken", "MaxResults");
23884
+
23885
+ var paginateListAutoMLJobs = (0, import_core.createPaginator)(SageMakerClient, ListAutoMLJobsCommand, "NextToken", "NextToken", "MaxResults");
23828
23886
 
23829
23887
  // src/pagination/ListCandidatesForAutoMLJobPaginator.ts
23830
- var import_core10 = require("@smithy/core");
23831
- var paginateListCandidatesForAutoMLJob = (0, import_core10.createPaginator)(SageMakerClient, ListCandidatesForAutoMLJobCommand, "NextToken", "NextToken", "MaxResults");
23888
+
23889
+ var paginateListCandidatesForAutoMLJob = (0, import_core.createPaginator)(SageMakerClient, ListCandidatesForAutoMLJobCommand, "NextToken", "NextToken", "MaxResults");
23832
23890
 
23833
23891
  // src/pagination/ListCodeRepositoriesPaginator.ts
23834
- var import_core11 = require("@smithy/core");
23835
- var paginateListCodeRepositories = (0, import_core11.createPaginator)(SageMakerClient, ListCodeRepositoriesCommand, "NextToken", "NextToken", "MaxResults");
23892
+
23893
+ var paginateListCodeRepositories = (0, import_core.createPaginator)(SageMakerClient, ListCodeRepositoriesCommand, "NextToken", "NextToken", "MaxResults");
23836
23894
 
23837
23895
  // src/pagination/ListCompilationJobsPaginator.ts
23838
- var import_core12 = require("@smithy/core");
23839
- var paginateListCompilationJobs = (0, import_core12.createPaginator)(SageMakerClient, ListCompilationJobsCommand, "NextToken", "NextToken", "MaxResults");
23896
+
23897
+ var paginateListCompilationJobs = (0, import_core.createPaginator)(SageMakerClient, ListCompilationJobsCommand, "NextToken", "NextToken", "MaxResults");
23840
23898
 
23841
23899
  // src/pagination/ListContextsPaginator.ts
23842
- var import_core13 = require("@smithy/core");
23843
- var paginateListContexts = (0, import_core13.createPaginator)(SageMakerClient, ListContextsCommand, "NextToken", "NextToken", "MaxResults");
23900
+
23901
+ var paginateListContexts = (0, import_core.createPaginator)(SageMakerClient, ListContextsCommand, "NextToken", "NextToken", "MaxResults");
23844
23902
 
23845
23903
  // src/pagination/ListDataQualityJobDefinitionsPaginator.ts
23846
- var import_core14 = require("@smithy/core");
23847
- var paginateListDataQualityJobDefinitions = (0, import_core14.createPaginator)(SageMakerClient, ListDataQualityJobDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
23904
+
23905
+ var paginateListDataQualityJobDefinitions = (0, import_core.createPaginator)(SageMakerClient, ListDataQualityJobDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
23848
23906
 
23849
23907
  // src/pagination/ListDeviceFleetsPaginator.ts
23850
- var import_core15 = require("@smithy/core");
23851
- var paginateListDeviceFleets = (0, import_core15.createPaginator)(SageMakerClient, ListDeviceFleetsCommand, "NextToken", "NextToken", "MaxResults");
23908
+
23909
+ var paginateListDeviceFleets = (0, import_core.createPaginator)(SageMakerClient, ListDeviceFleetsCommand, "NextToken", "NextToken", "MaxResults");
23852
23910
 
23853
23911
  // src/pagination/ListDevicesPaginator.ts
23854
- var import_core16 = require("@smithy/core");
23855
- var paginateListDevices = (0, import_core16.createPaginator)(SageMakerClient, ListDevicesCommand, "NextToken", "NextToken", "MaxResults");
23912
+
23913
+ var paginateListDevices = (0, import_core.createPaginator)(SageMakerClient, ListDevicesCommand, "NextToken", "NextToken", "MaxResults");
23856
23914
 
23857
23915
  // src/pagination/ListDomainsPaginator.ts
23858
- var import_core17 = require("@smithy/core");
23859
- var paginateListDomains = (0, import_core17.createPaginator)(SageMakerClient, ListDomainsCommand, "NextToken", "NextToken", "MaxResults");
23916
+
23917
+ var paginateListDomains = (0, import_core.createPaginator)(SageMakerClient, ListDomainsCommand, "NextToken", "NextToken", "MaxResults");
23860
23918
 
23861
23919
  // src/pagination/ListEdgeDeploymentPlansPaginator.ts
23862
- var import_core18 = require("@smithy/core");
23863
- var paginateListEdgeDeploymentPlans = (0, import_core18.createPaginator)(SageMakerClient, ListEdgeDeploymentPlansCommand, "NextToken", "NextToken", "MaxResults");
23920
+
23921
+ var paginateListEdgeDeploymentPlans = (0, import_core.createPaginator)(SageMakerClient, ListEdgeDeploymentPlansCommand, "NextToken", "NextToken", "MaxResults");
23864
23922
 
23865
23923
  // src/pagination/ListEdgePackagingJobsPaginator.ts
23866
- var import_core19 = require("@smithy/core");
23867
- var paginateListEdgePackagingJobs = (0, import_core19.createPaginator)(SageMakerClient, ListEdgePackagingJobsCommand, "NextToken", "NextToken", "MaxResults");
23924
+
23925
+ var paginateListEdgePackagingJobs = (0, import_core.createPaginator)(SageMakerClient, ListEdgePackagingJobsCommand, "NextToken", "NextToken", "MaxResults");
23868
23926
 
23869
23927
  // src/pagination/ListEndpointConfigsPaginator.ts
23870
- var import_core20 = require("@smithy/core");
23871
- var paginateListEndpointConfigs = (0, import_core20.createPaginator)(SageMakerClient, ListEndpointConfigsCommand, "NextToken", "NextToken", "MaxResults");
23928
+
23929
+ var paginateListEndpointConfigs = (0, import_core.createPaginator)(SageMakerClient, ListEndpointConfigsCommand, "NextToken", "NextToken", "MaxResults");
23872
23930
 
23873
23931
  // src/pagination/ListEndpointsPaginator.ts
23874
- var import_core21 = require("@smithy/core");
23875
- var paginateListEndpoints = (0, import_core21.createPaginator)(SageMakerClient, ListEndpointsCommand, "NextToken", "NextToken", "MaxResults");
23932
+
23933
+ var paginateListEndpoints = (0, import_core.createPaginator)(SageMakerClient, ListEndpointsCommand, "NextToken", "NextToken", "MaxResults");
23876
23934
 
23877
23935
  // src/pagination/ListExperimentsPaginator.ts
23878
- var import_core22 = require("@smithy/core");
23879
- var paginateListExperiments = (0, import_core22.createPaginator)(SageMakerClient, ListExperimentsCommand, "NextToken", "NextToken", "MaxResults");
23936
+
23937
+ var paginateListExperiments = (0, import_core.createPaginator)(SageMakerClient, ListExperimentsCommand, "NextToken", "NextToken", "MaxResults");
23880
23938
 
23881
23939
  // src/pagination/ListFeatureGroupsPaginator.ts
23882
- var import_core23 = require("@smithy/core");
23883
- var paginateListFeatureGroups = (0, import_core23.createPaginator)(SageMakerClient, ListFeatureGroupsCommand, "NextToken", "NextToken", "MaxResults");
23940
+
23941
+ var paginateListFeatureGroups = (0, import_core.createPaginator)(SageMakerClient, ListFeatureGroupsCommand, "NextToken", "NextToken", "MaxResults");
23884
23942
 
23885
23943
  // src/pagination/ListFlowDefinitionsPaginator.ts
23886
- var import_core24 = require("@smithy/core");
23887
- var paginateListFlowDefinitions = (0, import_core24.createPaginator)(SageMakerClient, ListFlowDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
23944
+
23945
+ var paginateListFlowDefinitions = (0, import_core.createPaginator)(SageMakerClient, ListFlowDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
23888
23946
 
23889
23947
  // src/pagination/ListHumanTaskUisPaginator.ts
23890
- var import_core25 = require("@smithy/core");
23891
- var paginateListHumanTaskUis = (0, import_core25.createPaginator)(SageMakerClient, ListHumanTaskUisCommand, "NextToken", "NextToken", "MaxResults");
23948
+
23949
+ var paginateListHumanTaskUis = (0, import_core.createPaginator)(SageMakerClient, ListHumanTaskUisCommand, "NextToken", "NextToken", "MaxResults");
23892
23950
 
23893
23951
  // src/pagination/ListHyperParameterTuningJobsPaginator.ts
23894
- var import_core26 = require("@smithy/core");
23895
- var paginateListHyperParameterTuningJobs = (0, import_core26.createPaginator)(SageMakerClient, ListHyperParameterTuningJobsCommand, "NextToken", "NextToken", "MaxResults");
23952
+
23953
+ var paginateListHyperParameterTuningJobs = (0, import_core.createPaginator)(SageMakerClient, ListHyperParameterTuningJobsCommand, "NextToken", "NextToken", "MaxResults");
23896
23954
 
23897
23955
  // src/pagination/ListImageVersionsPaginator.ts
23898
- var import_core27 = require("@smithy/core");
23899
- var paginateListImageVersions = (0, import_core27.createPaginator)(SageMakerClient, ListImageVersionsCommand, "NextToken", "NextToken", "MaxResults");
23956
+
23957
+ var paginateListImageVersions = (0, import_core.createPaginator)(SageMakerClient, ListImageVersionsCommand, "NextToken", "NextToken", "MaxResults");
23900
23958
 
23901
23959
  // src/pagination/ListImagesPaginator.ts
23902
- var import_core28 = require("@smithy/core");
23903
- var paginateListImages = (0, import_core28.createPaginator)(SageMakerClient, ListImagesCommand, "NextToken", "NextToken", "MaxResults");
23960
+
23961
+ var paginateListImages = (0, import_core.createPaginator)(SageMakerClient, ListImagesCommand, "NextToken", "NextToken", "MaxResults");
23904
23962
 
23905
23963
  // src/pagination/ListInferenceComponentsPaginator.ts
23906
- var import_core29 = require("@smithy/core");
23907
- var paginateListInferenceComponents = (0, import_core29.createPaginator)(SageMakerClient, ListInferenceComponentsCommand, "NextToken", "NextToken", "MaxResults");
23964
+
23965
+ var paginateListInferenceComponents = (0, import_core.createPaginator)(SageMakerClient, ListInferenceComponentsCommand, "NextToken", "NextToken", "MaxResults");
23908
23966
 
23909
23967
  // src/pagination/ListInferenceExperimentsPaginator.ts
23910
- var import_core30 = require("@smithy/core");
23911
- var paginateListInferenceExperiments = (0, import_core30.createPaginator)(SageMakerClient, ListInferenceExperimentsCommand, "NextToken", "NextToken", "MaxResults");
23968
+
23969
+ var paginateListInferenceExperiments = (0, import_core.createPaginator)(SageMakerClient, ListInferenceExperimentsCommand, "NextToken", "NextToken", "MaxResults");
23912
23970
 
23913
23971
  // src/pagination/ListInferenceRecommendationsJobStepsPaginator.ts
23914
- var import_core31 = require("@smithy/core");
23915
- var paginateListInferenceRecommendationsJobSteps = (0, import_core31.createPaginator)(SageMakerClient, ListInferenceRecommendationsJobStepsCommand, "NextToken", "NextToken", "MaxResults");
23972
+
23973
+ var paginateListInferenceRecommendationsJobSteps = (0, import_core.createPaginator)(SageMakerClient, ListInferenceRecommendationsJobStepsCommand, "NextToken", "NextToken", "MaxResults");
23916
23974
 
23917
23975
  // src/pagination/ListInferenceRecommendationsJobsPaginator.ts
23918
- var import_core32 = require("@smithy/core");
23919
- var paginateListInferenceRecommendationsJobs = (0, import_core32.createPaginator)(SageMakerClient, ListInferenceRecommendationsJobsCommand, "NextToken", "NextToken", "MaxResults");
23976
+
23977
+ var paginateListInferenceRecommendationsJobs = (0, import_core.createPaginator)(SageMakerClient, ListInferenceRecommendationsJobsCommand, "NextToken", "NextToken", "MaxResults");
23920
23978
 
23921
23979
  // src/pagination/ListLabelingJobsForWorkteamPaginator.ts
23922
- var import_core33 = require("@smithy/core");
23923
- var paginateListLabelingJobsForWorkteam = (0, import_core33.createPaginator)(SageMakerClient, ListLabelingJobsForWorkteamCommand, "NextToken", "NextToken", "MaxResults");
23980
+
23981
+ var paginateListLabelingJobsForWorkteam = (0, import_core.createPaginator)(SageMakerClient, ListLabelingJobsForWorkteamCommand, "NextToken", "NextToken", "MaxResults");
23924
23982
 
23925
23983
  // src/pagination/ListLabelingJobsPaginator.ts
23926
- var import_core34 = require("@smithy/core");
23927
- var paginateListLabelingJobs = (0, import_core34.createPaginator)(SageMakerClient, ListLabelingJobsCommand, "NextToken", "NextToken", "MaxResults");
23984
+
23985
+ var paginateListLabelingJobs = (0, import_core.createPaginator)(SageMakerClient, ListLabelingJobsCommand, "NextToken", "NextToken", "MaxResults");
23928
23986
 
23929
23987
  // src/pagination/ListLineageGroupsPaginator.ts
23930
- var import_core35 = require("@smithy/core");
23931
- var paginateListLineageGroups = (0, import_core35.createPaginator)(SageMakerClient, ListLineageGroupsCommand, "NextToken", "NextToken", "MaxResults");
23988
+
23989
+ var paginateListLineageGroups = (0, import_core.createPaginator)(SageMakerClient, ListLineageGroupsCommand, "NextToken", "NextToken", "MaxResults");
23932
23990
 
23933
23991
  // src/pagination/ListModelBiasJobDefinitionsPaginator.ts
23934
- var import_core36 = require("@smithy/core");
23935
- var paginateListModelBiasJobDefinitions = (0, import_core36.createPaginator)(SageMakerClient, ListModelBiasJobDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
23992
+
23993
+ var paginateListModelBiasJobDefinitions = (0, import_core.createPaginator)(SageMakerClient, ListModelBiasJobDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
23936
23994
 
23937
23995
  // src/pagination/ListModelCardExportJobsPaginator.ts
23938
- var import_core37 = require("@smithy/core");
23939
- var paginateListModelCardExportJobs = (0, import_core37.createPaginator)(SageMakerClient, ListModelCardExportJobsCommand, "NextToken", "NextToken", "MaxResults");
23996
+
23997
+ var paginateListModelCardExportJobs = (0, import_core.createPaginator)(SageMakerClient, ListModelCardExportJobsCommand, "NextToken", "NextToken", "MaxResults");
23940
23998
 
23941
23999
  // src/pagination/ListModelCardVersionsPaginator.ts
23942
- var import_core38 = require("@smithy/core");
23943
- var paginateListModelCardVersions = (0, import_core38.createPaginator)(SageMakerClient, ListModelCardVersionsCommand, "NextToken", "NextToken", "MaxResults");
24000
+
24001
+ var paginateListModelCardVersions = (0, import_core.createPaginator)(SageMakerClient, ListModelCardVersionsCommand, "NextToken", "NextToken", "MaxResults");
23944
24002
 
23945
24003
  // src/pagination/ListModelCardsPaginator.ts
23946
- var import_core39 = require("@smithy/core");
23947
- var paginateListModelCards = (0, import_core39.createPaginator)(SageMakerClient, ListModelCardsCommand, "NextToken", "NextToken", "MaxResults");
24004
+
24005
+ var paginateListModelCards = (0, import_core.createPaginator)(SageMakerClient, ListModelCardsCommand, "NextToken", "NextToken", "MaxResults");
23948
24006
 
23949
24007
  // src/pagination/ListModelExplainabilityJobDefinitionsPaginator.ts
23950
- var import_core40 = require("@smithy/core");
23951
- var paginateListModelExplainabilityJobDefinitions = (0, import_core40.createPaginator)(SageMakerClient, ListModelExplainabilityJobDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
24008
+
24009
+ var paginateListModelExplainabilityJobDefinitions = (0, import_core.createPaginator)(SageMakerClient, ListModelExplainabilityJobDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
23952
24010
 
23953
24011
  // src/pagination/ListModelMetadataPaginator.ts
23954
- var import_core41 = require("@smithy/core");
23955
- var paginateListModelMetadata = (0, import_core41.createPaginator)(SageMakerClient, ListModelMetadataCommand, "NextToken", "NextToken", "MaxResults");
24012
+
24013
+ var paginateListModelMetadata = (0, import_core.createPaginator)(SageMakerClient, ListModelMetadataCommand, "NextToken", "NextToken", "MaxResults");
23956
24014
 
23957
24015
  // src/pagination/ListModelPackageGroupsPaginator.ts
23958
- var import_core42 = require("@smithy/core");
23959
- var paginateListModelPackageGroups = (0, import_core42.createPaginator)(SageMakerClient, ListModelPackageGroupsCommand, "NextToken", "NextToken", "MaxResults");
24016
+
24017
+ var paginateListModelPackageGroups = (0, import_core.createPaginator)(SageMakerClient, ListModelPackageGroupsCommand, "NextToken", "NextToken", "MaxResults");
23960
24018
 
23961
24019
  // src/pagination/ListModelPackagesPaginator.ts
23962
- var import_core43 = require("@smithy/core");
23963
- var paginateListModelPackages = (0, import_core43.createPaginator)(SageMakerClient, ListModelPackagesCommand, "NextToken", "NextToken", "MaxResults");
24020
+
24021
+ var paginateListModelPackages = (0, import_core.createPaginator)(SageMakerClient, ListModelPackagesCommand, "NextToken", "NextToken", "MaxResults");
23964
24022
 
23965
24023
  // src/pagination/ListModelQualityJobDefinitionsPaginator.ts
23966
- var import_core44 = require("@smithy/core");
23967
- var paginateListModelQualityJobDefinitions = (0, import_core44.createPaginator)(SageMakerClient, ListModelQualityJobDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
24024
+
24025
+ var paginateListModelQualityJobDefinitions = (0, import_core.createPaginator)(SageMakerClient, ListModelQualityJobDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
23968
24026
 
23969
24027
  // src/pagination/ListModelsPaginator.ts
23970
- var import_core45 = require("@smithy/core");
23971
- var paginateListModels = (0, import_core45.createPaginator)(SageMakerClient, ListModelsCommand, "NextToken", "NextToken", "MaxResults");
24028
+
24029
+ var paginateListModels = (0, import_core.createPaginator)(SageMakerClient, ListModelsCommand, "NextToken", "NextToken", "MaxResults");
23972
24030
 
23973
24031
  // src/pagination/ListMonitoringAlertHistoryPaginator.ts
23974
- var import_core46 = require("@smithy/core");
23975
- var paginateListMonitoringAlertHistory = (0, import_core46.createPaginator)(SageMakerClient, ListMonitoringAlertHistoryCommand, "NextToken", "NextToken", "MaxResults");
24032
+
24033
+ var paginateListMonitoringAlertHistory = (0, import_core.createPaginator)(SageMakerClient, ListMonitoringAlertHistoryCommand, "NextToken", "NextToken", "MaxResults");
23976
24034
 
23977
24035
  // src/pagination/ListMonitoringAlertsPaginator.ts
23978
- var import_core47 = require("@smithy/core");
23979
- var paginateListMonitoringAlerts = (0, import_core47.createPaginator)(SageMakerClient, ListMonitoringAlertsCommand, "NextToken", "NextToken", "MaxResults");
24036
+
24037
+ var paginateListMonitoringAlerts = (0, import_core.createPaginator)(SageMakerClient, ListMonitoringAlertsCommand, "NextToken", "NextToken", "MaxResults");
23980
24038
 
23981
24039
  // src/pagination/ListMonitoringExecutionsPaginator.ts
23982
- var import_core48 = require("@smithy/core");
23983
- var paginateListMonitoringExecutions = (0, import_core48.createPaginator)(SageMakerClient, ListMonitoringExecutionsCommand, "NextToken", "NextToken", "MaxResults");
24040
+
24041
+ var paginateListMonitoringExecutions = (0, import_core.createPaginator)(SageMakerClient, ListMonitoringExecutionsCommand, "NextToken", "NextToken", "MaxResults");
23984
24042
 
23985
24043
  // src/pagination/ListMonitoringSchedulesPaginator.ts
23986
- var import_core49 = require("@smithy/core");
23987
- var paginateListMonitoringSchedules = (0, import_core49.createPaginator)(SageMakerClient, ListMonitoringSchedulesCommand, "NextToken", "NextToken", "MaxResults");
24044
+
24045
+ var paginateListMonitoringSchedules = (0, import_core.createPaginator)(SageMakerClient, ListMonitoringSchedulesCommand, "NextToken", "NextToken", "MaxResults");
23988
24046
 
23989
24047
  // src/pagination/ListNotebookInstanceLifecycleConfigsPaginator.ts
23990
- var import_core50 = require("@smithy/core");
23991
- var paginateListNotebookInstanceLifecycleConfigs = (0, import_core50.createPaginator)(SageMakerClient, ListNotebookInstanceLifecycleConfigsCommand, "NextToken", "NextToken", "MaxResults");
24048
+
24049
+ var paginateListNotebookInstanceLifecycleConfigs = (0, import_core.createPaginator)(SageMakerClient, ListNotebookInstanceLifecycleConfigsCommand, "NextToken", "NextToken", "MaxResults");
23992
24050
 
23993
24051
  // src/pagination/ListNotebookInstancesPaginator.ts
23994
- var import_core51 = require("@smithy/core");
23995
- var paginateListNotebookInstances = (0, import_core51.createPaginator)(SageMakerClient, ListNotebookInstancesCommand, "NextToken", "NextToken", "MaxResults");
24052
+
24053
+ var paginateListNotebookInstances = (0, import_core.createPaginator)(SageMakerClient, ListNotebookInstancesCommand, "NextToken", "NextToken", "MaxResults");
23996
24054
 
23997
24055
  // src/pagination/ListPipelineExecutionStepsPaginator.ts
23998
- var import_core52 = require("@smithy/core");
23999
- var paginateListPipelineExecutionSteps = (0, import_core52.createPaginator)(SageMakerClient, ListPipelineExecutionStepsCommand, "NextToken", "NextToken", "MaxResults");
24056
+
24057
+ var paginateListPipelineExecutionSteps = (0, import_core.createPaginator)(SageMakerClient, ListPipelineExecutionStepsCommand, "NextToken", "NextToken", "MaxResults");
24000
24058
 
24001
24059
  // src/pagination/ListPipelineExecutionsPaginator.ts
24002
- var import_core53 = require("@smithy/core");
24003
- var paginateListPipelineExecutions = (0, import_core53.createPaginator)(SageMakerClient, ListPipelineExecutionsCommand, "NextToken", "NextToken", "MaxResults");
24060
+
24061
+ var paginateListPipelineExecutions = (0, import_core.createPaginator)(SageMakerClient, ListPipelineExecutionsCommand, "NextToken", "NextToken", "MaxResults");
24004
24062
 
24005
24063
  // src/pagination/ListPipelineParametersForExecutionPaginator.ts
24006
- var import_core54 = require("@smithy/core");
24007
- var paginateListPipelineParametersForExecution = (0, import_core54.createPaginator)(SageMakerClient, ListPipelineParametersForExecutionCommand, "NextToken", "NextToken", "MaxResults");
24064
+
24065
+ var paginateListPipelineParametersForExecution = (0, import_core.createPaginator)(SageMakerClient, ListPipelineParametersForExecutionCommand, "NextToken", "NextToken", "MaxResults");
24008
24066
 
24009
24067
  // src/pagination/ListPipelinesPaginator.ts
24010
- var import_core55 = require("@smithy/core");
24011
- var paginateListPipelines = (0, import_core55.createPaginator)(SageMakerClient, ListPipelinesCommand, "NextToken", "NextToken", "MaxResults");
24068
+
24069
+ var paginateListPipelines = (0, import_core.createPaginator)(SageMakerClient, ListPipelinesCommand, "NextToken", "NextToken", "MaxResults");
24012
24070
 
24013
24071
  // src/pagination/ListProcessingJobsPaginator.ts
24014
- var import_core56 = require("@smithy/core");
24015
- var paginateListProcessingJobs = (0, import_core56.createPaginator)(SageMakerClient, ListProcessingJobsCommand, "NextToken", "NextToken", "MaxResults");
24072
+
24073
+ var paginateListProcessingJobs = (0, import_core.createPaginator)(SageMakerClient, ListProcessingJobsCommand, "NextToken", "NextToken", "MaxResults");
24016
24074
 
24017
24075
  // src/pagination/ListProjectsPaginator.ts
24018
- var import_core57 = require("@smithy/core");
24019
- var paginateListProjects = (0, import_core57.createPaginator)(SageMakerClient, ListProjectsCommand, "NextToken", "NextToken", "MaxResults");
24076
+
24077
+ var paginateListProjects = (0, import_core.createPaginator)(SageMakerClient, ListProjectsCommand, "NextToken", "NextToken", "MaxResults");
24020
24078
 
24021
24079
  // src/pagination/ListResourceCatalogsPaginator.ts
24022
- var import_core58 = require("@smithy/core");
24023
- var paginateListResourceCatalogs = (0, import_core58.createPaginator)(SageMakerClient, ListResourceCatalogsCommand, "NextToken", "NextToken", "MaxResults");
24080
+
24081
+ var paginateListResourceCatalogs = (0, import_core.createPaginator)(SageMakerClient, ListResourceCatalogsCommand, "NextToken", "NextToken", "MaxResults");
24024
24082
 
24025
24083
  // src/pagination/ListSpacesPaginator.ts
24026
- var import_core59 = require("@smithy/core");
24027
- var paginateListSpaces = (0, import_core59.createPaginator)(SageMakerClient, ListSpacesCommand, "NextToken", "NextToken", "MaxResults");
24084
+
24085
+ var paginateListSpaces = (0, import_core.createPaginator)(SageMakerClient, ListSpacesCommand, "NextToken", "NextToken", "MaxResults");
24028
24086
 
24029
24087
  // src/pagination/ListStageDevicesPaginator.ts
24030
- var import_core60 = require("@smithy/core");
24031
- var paginateListStageDevices = (0, import_core60.createPaginator)(SageMakerClient, ListStageDevicesCommand, "NextToken", "NextToken", "MaxResults");
24088
+
24089
+ var paginateListStageDevices = (0, import_core.createPaginator)(SageMakerClient, ListStageDevicesCommand, "NextToken", "NextToken", "MaxResults");
24032
24090
 
24033
24091
  // src/pagination/ListStudioLifecycleConfigsPaginator.ts
24034
- var import_core61 = require("@smithy/core");
24035
- var paginateListStudioLifecycleConfigs = (0, import_core61.createPaginator)(SageMakerClient, ListStudioLifecycleConfigsCommand, "NextToken", "NextToken", "MaxResults");
24092
+
24093
+ var paginateListStudioLifecycleConfigs = (0, import_core.createPaginator)(SageMakerClient, ListStudioLifecycleConfigsCommand, "NextToken", "NextToken", "MaxResults");
24036
24094
 
24037
24095
  // src/pagination/ListSubscribedWorkteamsPaginator.ts
24038
- var import_core62 = require("@smithy/core");
24039
- var paginateListSubscribedWorkteams = (0, import_core62.createPaginator)(SageMakerClient, ListSubscribedWorkteamsCommand, "NextToken", "NextToken", "MaxResults");
24096
+
24097
+ var paginateListSubscribedWorkteams = (0, import_core.createPaginator)(SageMakerClient, ListSubscribedWorkteamsCommand, "NextToken", "NextToken", "MaxResults");
24040
24098
 
24041
24099
  // src/pagination/ListTagsPaginator.ts
24042
- var import_core63 = require("@smithy/core");
24043
- var paginateListTags = (0, import_core63.createPaginator)(SageMakerClient, ListTagsCommand, "NextToken", "NextToken", "MaxResults");
24100
+
24101
+ var paginateListTags = (0, import_core.createPaginator)(SageMakerClient, ListTagsCommand, "NextToken", "NextToken", "MaxResults");
24044
24102
 
24045
24103
  // src/pagination/ListTrainingJobsForHyperParameterTuningJobPaginator.ts
24046
- var import_core64 = require("@smithy/core");
24047
- var paginateListTrainingJobsForHyperParameterTuningJob = (0, import_core64.createPaginator)(SageMakerClient, ListTrainingJobsForHyperParameterTuningJobCommand, "NextToken", "NextToken", "MaxResults");
24104
+
24105
+ var paginateListTrainingJobsForHyperParameterTuningJob = (0, import_core.createPaginator)(SageMakerClient, ListTrainingJobsForHyperParameterTuningJobCommand, "NextToken", "NextToken", "MaxResults");
24048
24106
 
24049
24107
  // src/pagination/ListTrainingJobsPaginator.ts
24050
- var import_core65 = require("@smithy/core");
24051
- var paginateListTrainingJobs = (0, import_core65.createPaginator)(SageMakerClient, ListTrainingJobsCommand, "NextToken", "NextToken", "MaxResults");
24108
+
24109
+ var paginateListTrainingJobs = (0, import_core.createPaginator)(SageMakerClient, ListTrainingJobsCommand, "NextToken", "NextToken", "MaxResults");
24052
24110
 
24053
24111
  // src/pagination/ListTransformJobsPaginator.ts
24054
- var import_core66 = require("@smithy/core");
24055
- var paginateListTransformJobs = (0, import_core66.createPaginator)(SageMakerClient, ListTransformJobsCommand, "NextToken", "NextToken", "MaxResults");
24112
+
24113
+ var paginateListTransformJobs = (0, import_core.createPaginator)(SageMakerClient, ListTransformJobsCommand, "NextToken", "NextToken", "MaxResults");
24056
24114
 
24057
24115
  // src/pagination/ListTrialComponentsPaginator.ts
24058
- var import_core67 = require("@smithy/core");
24059
- var paginateListTrialComponents = (0, import_core67.createPaginator)(SageMakerClient, ListTrialComponentsCommand, "NextToken", "NextToken", "MaxResults");
24116
+
24117
+ var paginateListTrialComponents = (0, import_core.createPaginator)(SageMakerClient, ListTrialComponentsCommand, "NextToken", "NextToken", "MaxResults");
24060
24118
 
24061
24119
  // src/pagination/ListTrialsPaginator.ts
24062
- var import_core68 = require("@smithy/core");
24063
- var paginateListTrials = (0, import_core68.createPaginator)(SageMakerClient, ListTrialsCommand, "NextToken", "NextToken", "MaxResults");
24120
+
24121
+ var paginateListTrials = (0, import_core.createPaginator)(SageMakerClient, ListTrialsCommand, "NextToken", "NextToken", "MaxResults");
24064
24122
 
24065
24123
  // src/pagination/ListUserProfilesPaginator.ts
24066
- var import_core69 = require("@smithy/core");
24067
- var paginateListUserProfiles = (0, import_core69.createPaginator)(SageMakerClient, ListUserProfilesCommand, "NextToken", "NextToken", "MaxResults");
24124
+
24125
+ var paginateListUserProfiles = (0, import_core.createPaginator)(SageMakerClient, ListUserProfilesCommand, "NextToken", "NextToken", "MaxResults");
24068
24126
 
24069
24127
  // src/pagination/ListWorkforcesPaginator.ts
24070
- var import_core70 = require("@smithy/core");
24071
- var paginateListWorkforces = (0, import_core70.createPaginator)(SageMakerClient, ListWorkforcesCommand, "NextToken", "NextToken", "MaxResults");
24128
+
24129
+ var paginateListWorkforces = (0, import_core.createPaginator)(SageMakerClient, ListWorkforcesCommand, "NextToken", "NextToken", "MaxResults");
24072
24130
 
24073
24131
  // src/pagination/ListWorkteamsPaginator.ts
24074
- var import_core71 = require("@smithy/core");
24075
- var paginateListWorkteams = (0, import_core71.createPaginator)(SageMakerClient, ListWorkteamsCommand, "NextToken", "NextToken", "MaxResults");
24132
+
24133
+ var paginateListWorkteams = (0, import_core.createPaginator)(SageMakerClient, ListWorkteamsCommand, "NextToken", "NextToken", "MaxResults");
24076
24134
 
24077
24135
  // src/pagination/QueryLineagePaginator.ts
24078
- var import_core72 = require("@smithy/core");
24079
- var paginateQueryLineage = (0, import_core72.createPaginator)(SageMakerClient, QueryLineageCommand, "NextToken", "NextToken", "MaxResults");
24136
+
24137
+ var paginateQueryLineage = (0, import_core.createPaginator)(SageMakerClient, QueryLineageCommand, "NextToken", "NextToken", "MaxResults");
24080
24138
 
24081
24139
  // src/pagination/SearchPaginator.ts
24082
- var import_core73 = require("@smithy/core");
24083
- var paginateSearch = (0, import_core73.createPaginator)(SageMakerClient, SearchCommand, "NextToken", "NextToken", "MaxResults");
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");