@aws-sdk/client-omics 3.1018.0 → 3.1019.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/README.md +28 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
- package/dist-cjs/index.js +74 -0
- package/dist-cjs/runtimeConfig.js +4 -3
- package/dist-cjs/runtimeConfig.shared.js +2 -2
- package/dist-cjs/schemas/schemas_0.js +125 -16
- package/dist-es/Omics.js +10 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-es/commands/CreateConfigurationCommand.js +16 -0
- package/dist-es/commands/DeleteConfigurationCommand.js +16 -0
- package/dist-es/commands/GetConfigurationCommand.js +16 -0
- package/dist-es/commands/ListConfigurationsCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +12 -0
- package/dist-es/pagination/ListConfigurationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/runtimeConfig.js +2 -1
- package/dist-es/runtimeConfig.shared.js +1 -1
- package/dist-es/schemas/schemas_0.js +116 -8
- package/dist-types/Omics.d.ts +36 -0
- package/dist-types/OmicsClient.d.ts +6 -2
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/commands/CreateConfigurationCommand.d.ts +132 -0
- package/dist-types/commands/DeleteConfigurationCommand.d.ts +96 -0
- package/dist-types/commands/GetConfigurationCommand.d.ts +117 -0
- package/dist-types/commands/GetRunCommand.d.ts +15 -0
- package/dist-types/commands/ListConfigurationsCommand.d.ts +108 -0
- package/dist-types/commands/StartRunCommand.d.ts +8 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +28 -0
- package/dist-types/models/models_0.d.ts +317 -1
- package/dist-types/pagination/ListConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +17 -0
- package/dist-types/ts3.4/Omics.d.ts +76 -0
- package/dist-types/ts3.4/OmicsClient.d.ts +24 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteConfigurationCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/GetConfigurationCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListConfigurationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +16 -0
- package/dist-types/ts3.4/models/models_0.d.ts +77 -0
- package/dist-types/ts3.4/pagination/ListConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
- package/package.json +2 -2
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import { emitWarningIfUnsupportedVersion as awsCheckVersion
|
|
2
|
+
import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core/client";
|
|
3
|
+
import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core/httpAuthSchemes";
|
|
3
4
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
4
5
|
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
5
6
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
3
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
4
4
|
import { parseUrl } from "@smithy/url-parser";
|
|
@@ -35,7 +35,13 @@ const _CASRr = "CreateAnnotationStoreResponse";
|
|
|
35
35
|
const _CASV = "CreateAnnotationStoreVersion";
|
|
36
36
|
const _CASVR = "CreateAnnotationStoreVersionRequest";
|
|
37
37
|
const _CASVRr = "CreateAnnotationStoreVersionResponse";
|
|
38
|
+
const _CC = "CreateConfiguration";
|
|
39
|
+
const _CCR = "CreateConfigurationRequest";
|
|
40
|
+
const _CCRr = "CreateConfigurationResponse";
|
|
41
|
+
const _CD = "ConfigurationDetails";
|
|
38
42
|
const _CE = "ConflictException";
|
|
43
|
+
const _CL = "ConfigurationList";
|
|
44
|
+
const _CLI = "ConfigurationListItem";
|
|
39
45
|
const _CMRSU = "CompleteMultipartReadSetUpload";
|
|
40
46
|
const _CMRSUR = "CompleteMultipartReadSetUploadRequest";
|
|
41
47
|
const _CMRSURo = "CompleteMultipartReadSetUploadResponse";
|
|
@@ -85,6 +91,8 @@ const _DASVR = "DeleteAnnotationStoreVersionsRequest";
|
|
|
85
91
|
const _DASVRe = "DeleteAnnotationStoreVersionsResponse";
|
|
86
92
|
const _DB = "DeleteBatch";
|
|
87
93
|
const _DBR = "DeleteBatchRequest";
|
|
94
|
+
const _DC = "DeleteConfiguration";
|
|
95
|
+
const _DCR = "DeleteConfigurationRequest";
|
|
88
96
|
const _DR = "DefinitionRepository";
|
|
89
97
|
const _DRB = "DeleteRunBatch";
|
|
90
98
|
const _DRBR = "DeleteRunBatchRequest";
|
|
@@ -142,6 +150,9 @@ const _GASVRe = "GetAnnotationStoreVersionResponse";
|
|
|
142
150
|
const _GB = "GetBatch";
|
|
143
151
|
const _GBR = "GetBatchRequest";
|
|
144
152
|
const _GBRe = "GetBatchResponse";
|
|
153
|
+
const _GC = "GetConfiguration";
|
|
154
|
+
const _GCR = "GetConfigurationRequest";
|
|
155
|
+
const _GCRe = "GetConfigurationResponse";
|
|
145
156
|
const _GR = "GetReference";
|
|
146
157
|
const _GRC = "GetRunCache";
|
|
147
158
|
const _GRCR = "GetRunCacheRequest";
|
|
@@ -233,6 +244,9 @@ const _LASVRi = "ListAnnotationStoreVersionsResponse";
|
|
|
233
244
|
const _LB = "ListBatch";
|
|
234
245
|
const _LBR = "ListBatchRequest";
|
|
235
246
|
const _LBRi = "ListBatchResponse";
|
|
247
|
+
const _LC = "ListConfigurations";
|
|
248
|
+
const _LCR = "ListConfigurationsRequest";
|
|
249
|
+
const _LCRi = "ListConfigurationsResponse";
|
|
236
250
|
const _LMRSU = "ListMultipartReadSetUploads";
|
|
237
251
|
const _LMRSUR = "ListMultipartReadSetUploadsRequest";
|
|
238
252
|
const _LMRSURi = "ListMultipartReadSetUploadsResponse";
|
|
@@ -307,8 +321,10 @@ const _PSAPRu = "PutS3AccessPolicyResponse";
|
|
|
307
321
|
const _R = "Range";
|
|
308
322
|
const _RBL = "RunBatchList";
|
|
309
323
|
const _RBLI = "RunBatchListItem";
|
|
324
|
+
const _RC = "RunConfigurations";
|
|
310
325
|
const _RCL = "RunCacheList";
|
|
311
326
|
const _RCLI = "RunCacheListItem";
|
|
327
|
+
const _RCR = "RunConfigurationsResponse";
|
|
312
328
|
const _RF = "ReferenceFiles";
|
|
313
329
|
const _RFe = "ReferenceFilter";
|
|
314
330
|
const _RGL = "RunGroupList";
|
|
@@ -424,6 +440,8 @@ const _UW = "UpdateWorkflow";
|
|
|
424
440
|
const _UWR = "UpdateWorkflowRequest";
|
|
425
441
|
const _UWV = "UpdateWorkflowVersion";
|
|
426
442
|
const _UWVR = "UpdateWorkflowVersionRequest";
|
|
443
|
+
const _VC = "VpcConfig";
|
|
444
|
+
const _VCR = "VpcConfigResponse";
|
|
427
445
|
const _VDE = "VersionDeleteError";
|
|
428
446
|
const _VDEL = "VersionDeleteErrorList";
|
|
429
447
|
const _VE = "ValidationException";
|
|
@@ -469,6 +487,7 @@ const _cH = "cacheHit";
|
|
|
469
487
|
const _cI = "cacheId";
|
|
470
488
|
const _cJI = "creationJobId";
|
|
471
489
|
const _cL = "contentLength";
|
|
490
|
+
const _cN = "configurationName";
|
|
472
491
|
const _cRC = "completedRunCount";
|
|
473
492
|
const _cRCa = "cancelledRunCount";
|
|
474
493
|
const _cRM = "containerRegistryMap";
|
|
@@ -480,8 +499,9 @@ const _cTl = "clientToken";
|
|
|
480
499
|
const _cTo = "completionTime";
|
|
481
500
|
const _cTr = "creationType";
|
|
482
501
|
const _ch = "checksum";
|
|
483
|
-
const _co = "
|
|
502
|
+
const _co = "configuration";
|
|
484
503
|
const _cod = "code";
|
|
504
|
+
const _com = "comment";
|
|
485
505
|
const _cp = "cpus";
|
|
486
506
|
const _d = "description";
|
|
487
507
|
const _dI = "destinationImage";
|
|
@@ -567,6 +587,7 @@ const _md = "md5";
|
|
|
567
587
|
const _me = "memory";
|
|
568
588
|
const _met = "metadata";
|
|
569
589
|
const _n = "name";
|
|
590
|
+
const _nM = "networkingMode";
|
|
570
591
|
const _nT = "nextToken";
|
|
571
592
|
const _nV = "numVersions";
|
|
572
593
|
const _o = "optional";
|
|
@@ -597,6 +618,7 @@ const _rAe = "referenceArn";
|
|
|
597
618
|
const _rAes = "resourceArn";
|
|
598
619
|
const _rAeso = "resourceArns";
|
|
599
620
|
const _rAu = "runArn";
|
|
621
|
+
const _rC = "runConfigurations";
|
|
600
622
|
const _rD = "resourceDigests";
|
|
601
623
|
const _rGI = "runGroupId";
|
|
602
624
|
const _rI = "requestId";
|
|
@@ -644,12 +666,14 @@ const _sFR = "submissionFailureReason";
|
|
|
644
666
|
const _sFT = "sourceFileType";
|
|
645
667
|
const _sFo = "sourceFiles";
|
|
646
668
|
const _sFou = "sourceFile";
|
|
669
|
+
const _sGI = "securityGroupIds";
|
|
647
670
|
const _sI = "shareId";
|
|
648
671
|
const _sIa = "sampleId";
|
|
649
672
|
const _sIe = "sequenceInformation";
|
|
650
673
|
const _sIo = "sourceImage";
|
|
651
674
|
const _sIt = "storeId";
|
|
652
675
|
const _sIu = "subjectId";
|
|
676
|
+
const _sIub = "subnetIds";
|
|
653
677
|
const _sM = "statusMessage";
|
|
654
678
|
const _sN = "shareName";
|
|
655
679
|
const _sNt = "storeName";
|
|
@@ -704,6 +728,8 @@ const _uT = "updateTime";
|
|
|
704
728
|
const _up = "uploads";
|
|
705
729
|
const _v = "versions";
|
|
706
730
|
const _vA = "versionArn";
|
|
731
|
+
const _vC = "vpcConfig";
|
|
732
|
+
const _vI = "vpcId";
|
|
707
733
|
const _vIJ = "variantImportJobs";
|
|
708
734
|
const _vN = "versionName";
|
|
709
735
|
const _vO = "versionOptions";
|
|
@@ -919,6 +945,16 @@ export var CompleteReadSetUploadPartListItem$ = [3, n0, _CRSUPLI,
|
|
|
919
945
|
[_pN, _pS, _ch],
|
|
920
946
|
[1, 0, 0], 3
|
|
921
947
|
];
|
|
948
|
+
export var ConfigurationDetails$ = [3, n0, _CD,
|
|
949
|
+
0,
|
|
950
|
+
[_n, _ar, _u],
|
|
951
|
+
[0, 0, 0]
|
|
952
|
+
];
|
|
953
|
+
export var ConfigurationListItem$ = [3, n0, _CLI,
|
|
954
|
+
0,
|
|
955
|
+
[_ar, _n, _d, _sta, _cT],
|
|
956
|
+
[0, 0, 0, 0, 5]
|
|
957
|
+
];
|
|
922
958
|
export var ContainerRegistryMap$ = [3, n0, _CRM,
|
|
923
959
|
0,
|
|
924
960
|
[_rM, _iM],
|
|
@@ -944,6 +980,16 @@ export var CreateAnnotationStoreVersionResponse$ = [3, n0, _CASVRr,
|
|
|
944
980
|
[_i, _vN, _sIt, _n, _sta, _cT, _vO],
|
|
945
981
|
[0, 0, 0, 0, 0, 5, () => VersionOptions$], 6
|
|
946
982
|
];
|
|
983
|
+
export var CreateConfigurationRequest$ = [3, n0, _CCR,
|
|
984
|
+
0,
|
|
985
|
+
[_n, _rC, _d, _ta, _rI],
|
|
986
|
+
[0, () => RunConfigurations$, 0, 128 | 0, [0, 4]], 2
|
|
987
|
+
];
|
|
988
|
+
export var CreateConfigurationResponse$ = [3, n0, _CCRr,
|
|
989
|
+
0,
|
|
990
|
+
[_ar, _u, _n, _d, _rC, _sta, _cT, _ta],
|
|
991
|
+
[0, 0, 0, 0, () => RunConfigurationsResponse$, 0, 5, 128 | 0]
|
|
992
|
+
];
|
|
947
993
|
export var CreateMultipartReadSetUploadRequest$ = [3, n0, _CMRSURr,
|
|
948
994
|
0,
|
|
949
995
|
[_sSI, _sFT, _sIu, _sIa, _n, _cTl, _gF, _rAe, _d, _ta],
|
|
@@ -1074,6 +1120,11 @@ export var DeleteBatchRequest$ = [3, n0, _DBR,
|
|
|
1074
1120
|
[_bI],
|
|
1075
1121
|
[[0, 1]], 1
|
|
1076
1122
|
];
|
|
1123
|
+
export var DeleteConfigurationRequest$ = [3, n0, _DCR,
|
|
1124
|
+
0,
|
|
1125
|
+
[_n],
|
|
1126
|
+
[[0, 1]], 1
|
|
1127
|
+
];
|
|
1077
1128
|
export var DeleteReferenceRequest$ = [3, n0, _DRR,
|
|
1078
1129
|
0,
|
|
1079
1130
|
[_i, _rSIe],
|
|
@@ -1244,6 +1295,16 @@ export var GetBatchResponse$ = [3, n0, _GBRe,
|
|
|
1244
1295
|
[_i, _ar, _u, _n, _sta, _ta, _tR, _dRS, _sS, _rS, _cT, _sTu, _pTro, _fT, _fR],
|
|
1245
1296
|
[0, 0, 0, 0, 0, 128 | 0, 1, () => DefaultRunSetting$, () => SubmissionSummary$, () => RunSummary$, 5, 5, 5, 5, 0]
|
|
1246
1297
|
];
|
|
1298
|
+
export var GetConfigurationRequest$ = [3, n0, _GCR,
|
|
1299
|
+
0,
|
|
1300
|
+
[_n],
|
|
1301
|
+
[[0, 1]], 1
|
|
1302
|
+
];
|
|
1303
|
+
export var GetConfigurationResponse$ = [3, n0, _GCRe,
|
|
1304
|
+
0,
|
|
1305
|
+
[_ar, _u, _n, _d, _rC, _sta, _cT, _ta],
|
|
1306
|
+
[0, 0, 0, 0, () => RunConfigurationsResponse$, 0, 5, 128 | 0]
|
|
1307
|
+
];
|
|
1247
1308
|
export var GetReadSetActivationJobRequest$ = [3, n0, _GRSAJR,
|
|
1248
1309
|
0,
|
|
1249
1310
|
[_i, _sSI],
|
|
@@ -1361,8 +1422,8 @@ export var GetRunRequest$ = [3, n0, _GRRet,
|
|
|
1361
1422
|
];
|
|
1362
1423
|
export var GetRunResponse$ = [3, n0, _GRRetu,
|
|
1363
1424
|
0,
|
|
1364
|
-
[_ar, _i, _cI, _cBa, _eV, _sta, _wI, _wT, _rIu, _rA, _n, _rGI, _bI, _pr, _def, _di, _pa, _sCt, _oU, _lL, _rD, _sB, _cT, _sTt, _sTto, _sM, _ta, _ac, _rMet, _fR, _lLo, _u, _rOU, _sT, _wOI, _wVN, _wU],
|
|
1365
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 15, 1, 0, 0, 128 | 0, 0, 5, 5, 5, 0, 128 | 0, 0, 0, 0, () => RunLogLocation$, 0, 0, 0, 0, 0, 0]
|
|
1425
|
+
[_ar, _i, _cI, _cBa, _eV, _sta, _wI, _wT, _rIu, _rA, _n, _rGI, _bI, _pr, _def, _di, _pa, _sCt, _oU, _lL, _rD, _sB, _cT, _sTt, _sTto, _sM, _ta, _ac, _rMet, _fR, _lLo, _u, _rOU, _sT, _wOI, _wVN, _wU, _nM, _co, _vC],
|
|
1426
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 15, 1, 0, 0, 128 | 0, 0, 5, 5, 5, 0, 128 | 0, 0, 0, 0, () => RunLogLocation$, 0, 0, 0, 0, 0, 0, 0, () => ConfigurationDetails$, () => VpcConfigResponse$]
|
|
1366
1427
|
];
|
|
1367
1428
|
export var GetRunTaskRequest$ = [3, n0, _GRTR,
|
|
1368
1429
|
0,
|
|
@@ -1544,6 +1605,16 @@ export var ListBatchResponse$ = [3, n0, _LBRi,
|
|
|
1544
1605
|
[_it, _nT],
|
|
1545
1606
|
[() => BatchList, 0]
|
|
1546
1607
|
];
|
|
1608
|
+
export var ListConfigurationsRequest$ = [3, n0, _LCR,
|
|
1609
|
+
0,
|
|
1610
|
+
[_mRa, _sTta],
|
|
1611
|
+
[[1, { [_hQ]: _mRa }], [0, { [_hQ]: _sTta }]]
|
|
1612
|
+
];
|
|
1613
|
+
export var ListConfigurationsResponse$ = [3, n0, _LCRi,
|
|
1614
|
+
0,
|
|
1615
|
+
[_it, _nT],
|
|
1616
|
+
[() => ConfigurationList, 0]
|
|
1617
|
+
];
|
|
1547
1618
|
export var ListMultipartReadSetUploadsRequest$ = [3, n0, _LMRSUR,
|
|
1548
1619
|
0,
|
|
1549
1620
|
[_sSI, _mRa, _nT],
|
|
@@ -1781,7 +1852,7 @@ export var PutS3AccessPolicyResponse$ = [3, n0, _PSAPRu,
|
|
|
1781
1852
|
];
|
|
1782
1853
|
export var ReadOptions$ = [3, n0, _RO,
|
|
1783
1854
|
0,
|
|
1784
|
-
[_sep, _enc, _q, _qA, _es, _eQ,
|
|
1855
|
+
[_sep, _enc, _q, _qA, _es, _eQ, _com, _h, _lSi],
|
|
1785
1856
|
[0, 0, 0, 2, 0, 2, 0, 2, 0]
|
|
1786
1857
|
];
|
|
1787
1858
|
export var ReadSetBatchError$ = [3, n0, _RSBE,
|
|
@@ -1859,6 +1930,16 @@ export var RunCacheListItem$ = [3, n0, _RCLI,
|
|
|
1859
1930
|
[_ar, _cBa, _cSU, _cT, _i, _n, _sta],
|
|
1860
1931
|
[0, 0, 0, 5, 0, 0, 0]
|
|
1861
1932
|
];
|
|
1933
|
+
export var RunConfigurations$ = [3, n0, _RC,
|
|
1934
|
+
0,
|
|
1935
|
+
[_vC],
|
|
1936
|
+
[() => VpcConfig$]
|
|
1937
|
+
];
|
|
1938
|
+
export var RunConfigurationsResponse$ = [3, n0, _RCR,
|
|
1939
|
+
0,
|
|
1940
|
+
[_vC],
|
|
1941
|
+
[() => VpcConfigResponse$]
|
|
1942
|
+
];
|
|
1862
1943
|
export var RunGroupListItem$ = [3, n0, _RGLI,
|
|
1863
1944
|
0,
|
|
1864
1945
|
[_ar, _i, _n, _mC, _mR, _mD, _cT, _mG],
|
|
@@ -2001,13 +2082,13 @@ export var StartRunBatchResponse$ = [3, n0, _SRBRt,
|
|
|
2001
2082
|
];
|
|
2002
2083
|
export var StartRunRequest$ = [3, n0, _SRR,
|
|
2003
2084
|
0,
|
|
2004
|
-
[_rA, _oU, _wI, _wT, _rIu, _n, _cI, _cBa, _rGI, _pr, _pa, _sCt, _lL, _ta, _rI, _rMet, _sT, _wOI, _wVN],
|
|
2005
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 15, 1, 0, 128 | 0, [0, 4], 0, 0, 0, 0], 2
|
|
2085
|
+
[_rA, _oU, _wI, _wT, _rIu, _n, _cI, _cBa, _rGI, _pr, _pa, _sCt, _lL, _ta, _rI, _rMet, _sT, _wOI, _wVN, _nM, _cN],
|
|
2086
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 15, 1, 0, 128 | 0, [0, 4], 0, 0, 0, 0, 0, 0], 2
|
|
2006
2087
|
];
|
|
2007
2088
|
export var StartRunResponse$ = [3, n0, _SRRt,
|
|
2008
2089
|
0,
|
|
2009
|
-
[_ar, _i, _sta, _ta, _u, _rOU],
|
|
2010
|
-
[0, 0, 0, 128 | 0, 0, 0]
|
|
2090
|
+
[_ar, _i, _sta, _ta, _u, _rOU, _co, _nM],
|
|
2091
|
+
[0, 0, 0, 128 | 0, 0, 0, () => ConfigurationDetails$, 0]
|
|
2011
2092
|
];
|
|
2012
2093
|
export var StartVariantImportRequest$ = [3, n0, _SVIR,
|
|
2013
2094
|
0,
|
|
@@ -2164,6 +2245,16 @@ export var VersionDeleteError$ = [3, n0, _VDE,
|
|
|
2164
2245
|
[_vN, _m],
|
|
2165
2246
|
[0, 0], 2
|
|
2166
2247
|
];
|
|
2248
|
+
export var VpcConfig$ = [3, n0, _VC,
|
|
2249
|
+
0,
|
|
2250
|
+
[_sGI, _sIub],
|
|
2251
|
+
[64 | 0, 64 | 0]
|
|
2252
|
+
];
|
|
2253
|
+
export var VpcConfigResponse$ = [3, n0, _VCR,
|
|
2254
|
+
0,
|
|
2255
|
+
[_sGI, _sIub, _vI],
|
|
2256
|
+
[64 | 0, 64 | 0, 0]
|
|
2257
|
+
];
|
|
2167
2258
|
export var WorkflowListItem$ = [3, n0, _WLI,
|
|
2168
2259
|
0,
|
|
2169
2260
|
[_ar, _i, _n, _sta, _ty, _di, _cT, _met],
|
|
@@ -2208,6 +2299,9 @@ var BatchList = [1, n0, _BL,
|
|
|
2208
2299
|
var CompleteReadSetUploadPartList = [1, n0, _CRSUPL,
|
|
2209
2300
|
0, () => CompleteReadSetUploadPartListItem$
|
|
2210
2301
|
];
|
|
2302
|
+
var ConfigurationList = [1, n0, _CL,
|
|
2303
|
+
0, () => ConfigurationListItem$
|
|
2304
|
+
];
|
|
2211
2305
|
var ExcludeFilePatternList = 64 | 0;
|
|
2212
2306
|
var ExportReadSetDetailList = [1, n0, _ERSDL,
|
|
2213
2307
|
0, () => ExportReadSetDetail$
|
|
@@ -2276,6 +2370,7 @@ var RunList = [1, n0, _RLu,
|
|
|
2276
2370
|
var Schema = [1, n0, _S,
|
|
2277
2371
|
0, 128 | 0
|
|
2278
2372
|
];
|
|
2373
|
+
var SecurityGroupIds = 64 | 0;
|
|
2279
2374
|
var SequenceStoreDetailList = [1, n0, _SSDL,
|
|
2280
2375
|
0, () => SequenceStoreDetail$
|
|
2281
2376
|
];
|
|
@@ -2292,6 +2387,7 @@ var StartReferenceImportJobSourceList = [1, n0, _SRIJSL,
|
|
|
2292
2387
|
0, () => StartReferenceImportJobSourceItem$
|
|
2293
2388
|
];
|
|
2294
2389
|
var StatusList = 64 | 0;
|
|
2390
|
+
var SubnetIds = 64 | 0;
|
|
2295
2391
|
var TagKeyList = 64 | 0;
|
|
2296
2392
|
var TaskList = [1, n0, _TL,
|
|
2297
2393
|
0, () => TaskListItem$
|
|
@@ -2384,6 +2480,9 @@ export var CreateAnnotationStore$ = [9, n0, _CAS,
|
|
|
2384
2480
|
export var CreateAnnotationStoreVersion$ = [9, n0, _CASV,
|
|
2385
2481
|
{ [_end]: ["analytics-"], [_ht]: ["POST", "/annotationStore/{name}/version", 200] }, () => CreateAnnotationStoreVersionRequest$, () => CreateAnnotationStoreVersionResponse$
|
|
2386
2482
|
];
|
|
2483
|
+
export var CreateConfiguration$ = [9, n0, _CC,
|
|
2484
|
+
{ [_end]: ["workflows-"], [_ht]: ["POST", "/configuration", 201] }, () => CreateConfigurationRequest$, () => CreateConfigurationResponse$
|
|
2485
|
+
];
|
|
2387
2486
|
export var CreateMultipartReadSetUpload$ = [9, n0, _CMRSUr,
|
|
2388
2487
|
{ [_end]: ["control-storage-"], [_ht]: ["POST", "/sequencestore/{sequenceStoreId}/upload", 200] }, () => CreateMultipartReadSetUploadRequest$, () => CreateMultipartReadSetUploadResponse$
|
|
2389
2488
|
];
|
|
@@ -2420,6 +2519,9 @@ export var DeleteAnnotationStoreVersions$ = [9, n0, _DASV,
|
|
|
2420
2519
|
export var DeleteBatch$ = [9, n0, _DB,
|
|
2421
2520
|
{ [_end]: ["workflows-"], [_ht]: ["DELETE", "/runBatch/{batchId}", 202] }, () => DeleteBatchRequest$, () => __Unit
|
|
2422
2521
|
];
|
|
2522
|
+
export var DeleteConfiguration$ = [9, n0, _DC,
|
|
2523
|
+
{ [_end]: ["workflows-"], [_ht]: ["DELETE", "/configuration/{name}", 202] }, () => DeleteConfigurationRequest$, () => __Unit
|
|
2524
|
+
];
|
|
2423
2525
|
export var DeleteReference$ = [9, n0, _DRe,
|
|
2424
2526
|
{ [_end]: ["control-storage-"], [_ht]: ["DELETE", "/referencestore/{referenceStoreId}/reference/{id}", 200] }, () => DeleteReferenceRequest$, () => DeleteReferenceResponse$
|
|
2425
2527
|
];
|
|
@@ -2468,6 +2570,9 @@ export var GetAnnotationStoreVersion$ = [9, n0, _GASV,
|
|
|
2468
2570
|
export var GetBatch$ = [9, n0, _GB,
|
|
2469
2571
|
{ [_end]: ["workflows-"], [_ht]: ["GET", "/runBatch/{batchId}", 200] }, () => GetBatchRequest$, () => GetBatchResponse$
|
|
2470
2572
|
];
|
|
2573
|
+
export var GetConfiguration$ = [9, n0, _GC,
|
|
2574
|
+
{ [_end]: ["workflows-"], [_ht]: ["GET", "/configuration/{name}", 200] }, () => GetConfigurationRequest$, () => GetConfigurationResponse$
|
|
2575
|
+
];
|
|
2471
2576
|
export var GetReadSet$ = [9, n0, _GRS,
|
|
2472
2577
|
{ [_end]: ["storage-"], [_ht]: ["GET", "/sequencestore/{sequenceStoreId}/readset/{id}", 200] }, () => GetReadSetRequest$, () => GetReadSetResponse$
|
|
2473
2578
|
];
|
|
@@ -2540,6 +2645,9 @@ export var ListAnnotationStoreVersions$ = [9, n0, _LASV,
|
|
|
2540
2645
|
export var ListBatch$ = [9, n0, _LB,
|
|
2541
2646
|
{ [_end]: ["workflows-"], [_ht]: ["GET", "/runBatch", 200] }, () => ListBatchRequest$, () => ListBatchResponse$
|
|
2542
2647
|
];
|
|
2648
|
+
export var ListConfigurations$ = [9, n0, _LC,
|
|
2649
|
+
{ [_end]: ["workflows-"], [_ht]: ["GET", "/configuration", 200] }, () => ListConfigurationsRequest$, () => ListConfigurationsResponse$
|
|
2650
|
+
];
|
|
2543
2651
|
export var ListMultipartReadSetUploads$ = [9, n0, _LMRSU,
|
|
2544
2652
|
{ [_end]: ["control-storage-"], [_ht]: ["POST", "/sequencestore/{sequenceStoreId}/uploads", 200] }, () => ListMultipartReadSetUploadsRequest$, () => ListMultipartReadSetUploadsResponse$
|
|
2545
2653
|
];
|
package/dist-types/Omics.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { CancelVariantImportJobCommandInput, CancelVariantImportJobCommandOutput
|
|
|
10
10
|
import { CompleteMultipartReadSetUploadCommandInput, CompleteMultipartReadSetUploadCommandOutput } from "./commands/CompleteMultipartReadSetUploadCommand";
|
|
11
11
|
import { CreateAnnotationStoreCommandInput, CreateAnnotationStoreCommandOutput } from "./commands/CreateAnnotationStoreCommand";
|
|
12
12
|
import { CreateAnnotationStoreVersionCommandInput, CreateAnnotationStoreVersionCommandOutput } from "./commands/CreateAnnotationStoreVersionCommand";
|
|
13
|
+
import { CreateConfigurationCommandInput, CreateConfigurationCommandOutput } from "./commands/CreateConfigurationCommand";
|
|
13
14
|
import { CreateMultipartReadSetUploadCommandInput, CreateMultipartReadSetUploadCommandOutput } from "./commands/CreateMultipartReadSetUploadCommand";
|
|
14
15
|
import { CreateReferenceStoreCommandInput, CreateReferenceStoreCommandOutput } from "./commands/CreateReferenceStoreCommand";
|
|
15
16
|
import { CreateRunCacheCommandInput, CreateRunCacheCommandOutput } from "./commands/CreateRunCacheCommand";
|
|
@@ -22,6 +23,7 @@ import { CreateWorkflowVersionCommandInput, CreateWorkflowVersionCommandOutput }
|
|
|
22
23
|
import { DeleteAnnotationStoreCommandInput, DeleteAnnotationStoreCommandOutput } from "./commands/DeleteAnnotationStoreCommand";
|
|
23
24
|
import { DeleteAnnotationStoreVersionsCommandInput, DeleteAnnotationStoreVersionsCommandOutput } from "./commands/DeleteAnnotationStoreVersionsCommand";
|
|
24
25
|
import { DeleteBatchCommandInput, DeleteBatchCommandOutput } from "./commands/DeleteBatchCommand";
|
|
26
|
+
import { DeleteConfigurationCommandInput, DeleteConfigurationCommandOutput } from "./commands/DeleteConfigurationCommand";
|
|
25
27
|
import { DeleteReferenceCommandInput, DeleteReferenceCommandOutput } from "./commands/DeleteReferenceCommand";
|
|
26
28
|
import { DeleteReferenceStoreCommandInput, DeleteReferenceStoreCommandOutput } from "./commands/DeleteReferenceStoreCommand";
|
|
27
29
|
import { DeleteRunBatchCommandInput, DeleteRunBatchCommandOutput } from "./commands/DeleteRunBatchCommand";
|
|
@@ -38,6 +40,7 @@ import { GetAnnotationImportJobCommandInput, GetAnnotationImportJobCommandOutput
|
|
|
38
40
|
import { GetAnnotationStoreCommandInput, GetAnnotationStoreCommandOutput } from "./commands/GetAnnotationStoreCommand";
|
|
39
41
|
import { GetAnnotationStoreVersionCommandInput, GetAnnotationStoreVersionCommandOutput } from "./commands/GetAnnotationStoreVersionCommand";
|
|
40
42
|
import { GetBatchCommandInput, GetBatchCommandOutput } from "./commands/GetBatchCommand";
|
|
43
|
+
import { GetConfigurationCommandInput, GetConfigurationCommandOutput } from "./commands/GetConfigurationCommand";
|
|
41
44
|
import { GetReadSetActivationJobCommandInput, GetReadSetActivationJobCommandOutput } from "./commands/GetReadSetActivationJobCommand";
|
|
42
45
|
import { GetReadSetCommandInput, GetReadSetCommandOutput } from "./commands/GetReadSetCommand";
|
|
43
46
|
import { GetReadSetExportJobCommandInput, GetReadSetExportJobCommandOutput } from "./commands/GetReadSetExportJobCommand";
|
|
@@ -62,6 +65,7 @@ import { ListAnnotationImportJobsCommandInput, ListAnnotationImportJobsCommandOu
|
|
|
62
65
|
import { ListAnnotationStoresCommandInput, ListAnnotationStoresCommandOutput } from "./commands/ListAnnotationStoresCommand";
|
|
63
66
|
import { ListAnnotationStoreVersionsCommandInput, ListAnnotationStoreVersionsCommandOutput } from "./commands/ListAnnotationStoreVersionsCommand";
|
|
64
67
|
import { ListBatchCommandInput, ListBatchCommandOutput } from "./commands/ListBatchCommand";
|
|
68
|
+
import { ListConfigurationsCommandInput, ListConfigurationsCommandOutput } from "./commands/ListConfigurationsCommand";
|
|
65
69
|
import { ListMultipartReadSetUploadsCommandInput, ListMultipartReadSetUploadsCommandOutput } from "./commands/ListMultipartReadSetUploadsCommand";
|
|
66
70
|
import { ListReadSetActivationJobsCommandInput, ListReadSetActivationJobsCommandOutput } from "./commands/ListReadSetActivationJobsCommand";
|
|
67
71
|
import { ListReadSetExportJobsCommandInput, ListReadSetExportJobsCommandOutput } from "./commands/ListReadSetExportJobsCommand";
|
|
@@ -165,6 +169,12 @@ export interface Omics {
|
|
|
165
169
|
createAnnotationStoreVersion(args: CreateAnnotationStoreVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateAnnotationStoreVersionCommandOutput>;
|
|
166
170
|
createAnnotationStoreVersion(args: CreateAnnotationStoreVersionCommandInput, cb: (err: any, data?: CreateAnnotationStoreVersionCommandOutput) => void): void;
|
|
167
171
|
createAnnotationStoreVersion(args: CreateAnnotationStoreVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAnnotationStoreVersionCommandOutput) => void): void;
|
|
172
|
+
/**
|
|
173
|
+
* @see {@link CreateConfigurationCommand}
|
|
174
|
+
*/
|
|
175
|
+
createConfiguration(args: CreateConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfigurationCommandOutput>;
|
|
176
|
+
createConfiguration(args: CreateConfigurationCommandInput, cb: (err: any, data?: CreateConfigurationCommandOutput) => void): void;
|
|
177
|
+
createConfiguration(args: CreateConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConfigurationCommandOutput) => void): void;
|
|
168
178
|
/**
|
|
169
179
|
* @see {@link CreateMultipartReadSetUploadCommand}
|
|
170
180
|
*/
|
|
@@ -237,6 +247,12 @@ export interface Omics {
|
|
|
237
247
|
deleteBatch(args: DeleteBatchCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBatchCommandOutput>;
|
|
238
248
|
deleteBatch(args: DeleteBatchCommandInput, cb: (err: any, data?: DeleteBatchCommandOutput) => void): void;
|
|
239
249
|
deleteBatch(args: DeleteBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBatchCommandOutput) => void): void;
|
|
250
|
+
/**
|
|
251
|
+
* @see {@link DeleteConfigurationCommand}
|
|
252
|
+
*/
|
|
253
|
+
deleteConfiguration(args: DeleteConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConfigurationCommandOutput>;
|
|
254
|
+
deleteConfiguration(args: DeleteConfigurationCommandInput, cb: (err: any, data?: DeleteConfigurationCommandOutput) => void): void;
|
|
255
|
+
deleteConfiguration(args: DeleteConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConfigurationCommandOutput) => void): void;
|
|
240
256
|
/**
|
|
241
257
|
* @see {@link DeleteReferenceCommand}
|
|
242
258
|
*/
|
|
@@ -333,6 +349,12 @@ export interface Omics {
|
|
|
333
349
|
getBatch(args: GetBatchCommandInput, options?: __HttpHandlerOptions): Promise<GetBatchCommandOutput>;
|
|
334
350
|
getBatch(args: GetBatchCommandInput, cb: (err: any, data?: GetBatchCommandOutput) => void): void;
|
|
335
351
|
getBatch(args: GetBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBatchCommandOutput) => void): void;
|
|
352
|
+
/**
|
|
353
|
+
* @see {@link GetConfigurationCommand}
|
|
354
|
+
*/
|
|
355
|
+
getConfiguration(args: GetConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetConfigurationCommandOutput>;
|
|
356
|
+
getConfiguration(args: GetConfigurationCommandInput, cb: (err: any, data?: GetConfigurationCommandOutput) => void): void;
|
|
357
|
+
getConfiguration(args: GetConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConfigurationCommandOutput) => void): void;
|
|
336
358
|
/**
|
|
337
359
|
* @see {@link GetReadSetCommand}
|
|
338
360
|
*/
|
|
@@ -480,6 +502,13 @@ export interface Omics {
|
|
|
480
502
|
listBatch(args: ListBatchCommandInput, options?: __HttpHandlerOptions): Promise<ListBatchCommandOutput>;
|
|
481
503
|
listBatch(args: ListBatchCommandInput, cb: (err: any, data?: ListBatchCommandOutput) => void): void;
|
|
482
504
|
listBatch(args: ListBatchCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBatchCommandOutput) => void): void;
|
|
505
|
+
/**
|
|
506
|
+
* @see {@link ListConfigurationsCommand}
|
|
507
|
+
*/
|
|
508
|
+
listConfigurations(): Promise<ListConfigurationsCommandOutput>;
|
|
509
|
+
listConfigurations(args: ListConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListConfigurationsCommandOutput>;
|
|
510
|
+
listConfigurations(args: ListConfigurationsCommandInput, cb: (err: any, data?: ListConfigurationsCommandOutput) => void): void;
|
|
511
|
+
listConfigurations(args: ListConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConfigurationsCommandOutput) => void): void;
|
|
483
512
|
/**
|
|
484
513
|
* @see {@link ListMultipartReadSetUploadsCommand}
|
|
485
514
|
*/
|
|
@@ -762,6 +791,13 @@ export interface Omics {
|
|
|
762
791
|
* @returns AsyncIterable of {@link ListBatchCommandOutput}.
|
|
763
792
|
*/
|
|
764
793
|
paginateListBatch(args?: ListBatchCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListBatchCommandOutput>;
|
|
794
|
+
/**
|
|
795
|
+
* @see {@link ListConfigurationsCommand}
|
|
796
|
+
* @param args - command input.
|
|
797
|
+
* @param paginationConfig - optional pagination config.
|
|
798
|
+
* @returns AsyncIterable of {@link ListConfigurationsCommandOutput}.
|
|
799
|
+
*/
|
|
800
|
+
paginateListConfigurations(args?: ListConfigurationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListConfigurationsCommandOutput>;
|
|
765
801
|
/**
|
|
766
802
|
* @see {@link ListMultipartReadSetUploadsCommand}
|
|
767
803
|
* @param args - command input.
|
|
@@ -17,6 +17,7 @@ import { CancelVariantImportJobCommandInput, CancelVariantImportJobCommandOutput
|
|
|
17
17
|
import { CompleteMultipartReadSetUploadCommandInput, CompleteMultipartReadSetUploadCommandOutput } from "./commands/CompleteMultipartReadSetUploadCommand";
|
|
18
18
|
import { CreateAnnotationStoreCommandInput, CreateAnnotationStoreCommandOutput } from "./commands/CreateAnnotationStoreCommand";
|
|
19
19
|
import { CreateAnnotationStoreVersionCommandInput, CreateAnnotationStoreVersionCommandOutput } from "./commands/CreateAnnotationStoreVersionCommand";
|
|
20
|
+
import { CreateConfigurationCommandInput, CreateConfigurationCommandOutput } from "./commands/CreateConfigurationCommand";
|
|
20
21
|
import { CreateMultipartReadSetUploadCommandInput, CreateMultipartReadSetUploadCommandOutput } from "./commands/CreateMultipartReadSetUploadCommand";
|
|
21
22
|
import { CreateReferenceStoreCommandInput, CreateReferenceStoreCommandOutput } from "./commands/CreateReferenceStoreCommand";
|
|
22
23
|
import { CreateRunCacheCommandInput, CreateRunCacheCommandOutput } from "./commands/CreateRunCacheCommand";
|
|
@@ -29,6 +30,7 @@ import { CreateWorkflowVersionCommandInput, CreateWorkflowVersionCommandOutput }
|
|
|
29
30
|
import { DeleteAnnotationStoreCommandInput, DeleteAnnotationStoreCommandOutput } from "./commands/DeleteAnnotationStoreCommand";
|
|
30
31
|
import { DeleteAnnotationStoreVersionsCommandInput, DeleteAnnotationStoreVersionsCommandOutput } from "./commands/DeleteAnnotationStoreVersionsCommand";
|
|
31
32
|
import { DeleteBatchCommandInput, DeleteBatchCommandOutput } from "./commands/DeleteBatchCommand";
|
|
33
|
+
import { DeleteConfigurationCommandInput, DeleteConfigurationCommandOutput } from "./commands/DeleteConfigurationCommand";
|
|
32
34
|
import { DeleteReferenceCommandInput, DeleteReferenceCommandOutput } from "./commands/DeleteReferenceCommand";
|
|
33
35
|
import { DeleteReferenceStoreCommandInput, DeleteReferenceStoreCommandOutput } from "./commands/DeleteReferenceStoreCommand";
|
|
34
36
|
import { DeleteRunBatchCommandInput, DeleteRunBatchCommandOutput } from "./commands/DeleteRunBatchCommand";
|
|
@@ -45,6 +47,7 @@ import { GetAnnotationImportJobCommandInput, GetAnnotationImportJobCommandOutput
|
|
|
45
47
|
import { GetAnnotationStoreCommandInput, GetAnnotationStoreCommandOutput } from "./commands/GetAnnotationStoreCommand";
|
|
46
48
|
import { GetAnnotationStoreVersionCommandInput, GetAnnotationStoreVersionCommandOutput } from "./commands/GetAnnotationStoreVersionCommand";
|
|
47
49
|
import { GetBatchCommandInput, GetBatchCommandOutput } from "./commands/GetBatchCommand";
|
|
50
|
+
import { GetConfigurationCommandInput, GetConfigurationCommandOutput } from "./commands/GetConfigurationCommand";
|
|
48
51
|
import { GetReadSetActivationJobCommandInput, GetReadSetActivationJobCommandOutput } from "./commands/GetReadSetActivationJobCommand";
|
|
49
52
|
import { GetReadSetCommandInput, GetReadSetCommandOutput } from "./commands/GetReadSetCommand";
|
|
50
53
|
import { GetReadSetExportJobCommandInput, GetReadSetExportJobCommandOutput } from "./commands/GetReadSetExportJobCommand";
|
|
@@ -69,6 +72,7 @@ import { ListAnnotationImportJobsCommandInput, ListAnnotationImportJobsCommandOu
|
|
|
69
72
|
import { ListAnnotationStoresCommandInput, ListAnnotationStoresCommandOutput } from "./commands/ListAnnotationStoresCommand";
|
|
70
73
|
import { ListAnnotationStoreVersionsCommandInput, ListAnnotationStoreVersionsCommandOutput } from "./commands/ListAnnotationStoreVersionsCommand";
|
|
71
74
|
import { ListBatchCommandInput, ListBatchCommandOutput } from "./commands/ListBatchCommand";
|
|
75
|
+
import { ListConfigurationsCommandInput, ListConfigurationsCommandOutput } from "./commands/ListConfigurationsCommand";
|
|
72
76
|
import { ListMultipartReadSetUploadsCommandInput, ListMultipartReadSetUploadsCommandOutput } from "./commands/ListMultipartReadSetUploadsCommand";
|
|
73
77
|
import { ListReadSetActivationJobsCommandInput, ListReadSetActivationJobsCommandOutput } from "./commands/ListReadSetActivationJobsCommand";
|
|
74
78
|
import { ListReadSetExportJobsCommandInput, ListReadSetExportJobsCommandOutput } from "./commands/ListReadSetExportJobsCommand";
|
|
@@ -116,11 +120,11 @@ export { __Client };
|
|
|
116
120
|
/**
|
|
117
121
|
* @public
|
|
118
122
|
*/
|
|
119
|
-
export type ServiceInputTypes = AbortMultipartReadSetUploadCommandInput | AcceptShareCommandInput | BatchDeleteReadSetCommandInput | CancelAnnotationImportJobCommandInput | CancelRunBatchCommandInput | CancelRunCommandInput | CancelVariantImportJobCommandInput | CompleteMultipartReadSetUploadCommandInput | CreateAnnotationStoreCommandInput | CreateAnnotationStoreVersionCommandInput | CreateMultipartReadSetUploadCommandInput | CreateReferenceStoreCommandInput | CreateRunCacheCommandInput | CreateRunGroupCommandInput | CreateSequenceStoreCommandInput | CreateShareCommandInput | CreateVariantStoreCommandInput | CreateWorkflowCommandInput | CreateWorkflowVersionCommandInput | DeleteAnnotationStoreCommandInput | DeleteAnnotationStoreVersionsCommandInput | DeleteBatchCommandInput | DeleteReferenceCommandInput | DeleteReferenceStoreCommandInput | DeleteRunBatchCommandInput | DeleteRunCacheCommandInput | DeleteRunCommandInput | DeleteRunGroupCommandInput | DeleteS3AccessPolicyCommandInput | DeleteSequenceStoreCommandInput | DeleteShareCommandInput | DeleteVariantStoreCommandInput | DeleteWorkflowCommandInput | DeleteWorkflowVersionCommandInput | GetAnnotationImportJobCommandInput | GetAnnotationStoreCommandInput | GetAnnotationStoreVersionCommandInput | GetBatchCommandInput | GetReadSetActivationJobCommandInput | GetReadSetCommandInput | GetReadSetExportJobCommandInput | GetReadSetImportJobCommandInput | GetReadSetMetadataCommandInput | GetReferenceCommandInput | GetReferenceImportJobCommandInput | GetReferenceMetadataCommandInput | GetReferenceStoreCommandInput | GetRunCacheCommandInput | GetRunCommandInput | GetRunGroupCommandInput | GetRunTaskCommandInput | GetS3AccessPolicyCommandInput | GetSequenceStoreCommandInput | GetShareCommandInput | GetVariantImportJobCommandInput | GetVariantStoreCommandInput | GetWorkflowCommandInput | GetWorkflowVersionCommandInput | ListAnnotationImportJobsCommandInput | ListAnnotationStoreVersionsCommandInput | ListAnnotationStoresCommandInput | ListBatchCommandInput | ListMultipartReadSetUploadsCommandInput | ListReadSetActivationJobsCommandInput | ListReadSetExportJobsCommandInput | ListReadSetImportJobsCommandInput | ListReadSetUploadPartsCommandInput | ListReadSetsCommandInput | ListReferenceImportJobsCommandInput | ListReferenceStoresCommandInput | ListReferencesCommandInput | ListRunCachesCommandInput | ListRunGroupsCommandInput | ListRunTasksCommandInput | ListRunsCommandInput | ListRunsInBatchCommandInput | ListSequenceStoresCommandInput | ListSharesCommandInput | ListTagsForResourceCommandInput | ListVariantImportJobsCommandInput | ListVariantStoresCommandInput | ListWorkflowVersionsCommandInput | ListWorkflowsCommandInput | PutS3AccessPolicyCommandInput | StartAnnotationImportJobCommandInput | StartReadSetActivationJobCommandInput | StartReadSetExportJobCommandInput | StartReadSetImportJobCommandInput | StartReferenceImportJobCommandInput | StartRunBatchCommandInput | StartRunCommandInput | StartVariantImportJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAnnotationStoreCommandInput | UpdateAnnotationStoreVersionCommandInput | UpdateRunCacheCommandInput | UpdateRunGroupCommandInput | UpdateSequenceStoreCommandInput | UpdateVariantStoreCommandInput | UpdateWorkflowCommandInput | UpdateWorkflowVersionCommandInput | UploadReadSetPartCommandInput;
|
|
123
|
+
export type ServiceInputTypes = AbortMultipartReadSetUploadCommandInput | AcceptShareCommandInput | BatchDeleteReadSetCommandInput | CancelAnnotationImportJobCommandInput | CancelRunBatchCommandInput | CancelRunCommandInput | CancelVariantImportJobCommandInput | CompleteMultipartReadSetUploadCommandInput | CreateAnnotationStoreCommandInput | CreateAnnotationStoreVersionCommandInput | CreateConfigurationCommandInput | CreateMultipartReadSetUploadCommandInput | CreateReferenceStoreCommandInput | CreateRunCacheCommandInput | CreateRunGroupCommandInput | CreateSequenceStoreCommandInput | CreateShareCommandInput | CreateVariantStoreCommandInput | CreateWorkflowCommandInput | CreateWorkflowVersionCommandInput | DeleteAnnotationStoreCommandInput | DeleteAnnotationStoreVersionsCommandInput | DeleteBatchCommandInput | DeleteConfigurationCommandInput | DeleteReferenceCommandInput | DeleteReferenceStoreCommandInput | DeleteRunBatchCommandInput | DeleteRunCacheCommandInput | DeleteRunCommandInput | DeleteRunGroupCommandInput | DeleteS3AccessPolicyCommandInput | DeleteSequenceStoreCommandInput | DeleteShareCommandInput | DeleteVariantStoreCommandInput | DeleteWorkflowCommandInput | DeleteWorkflowVersionCommandInput | GetAnnotationImportJobCommandInput | GetAnnotationStoreCommandInput | GetAnnotationStoreVersionCommandInput | GetBatchCommandInput | GetConfigurationCommandInput | GetReadSetActivationJobCommandInput | GetReadSetCommandInput | GetReadSetExportJobCommandInput | GetReadSetImportJobCommandInput | GetReadSetMetadataCommandInput | GetReferenceCommandInput | GetReferenceImportJobCommandInput | GetReferenceMetadataCommandInput | GetReferenceStoreCommandInput | GetRunCacheCommandInput | GetRunCommandInput | GetRunGroupCommandInput | GetRunTaskCommandInput | GetS3AccessPolicyCommandInput | GetSequenceStoreCommandInput | GetShareCommandInput | GetVariantImportJobCommandInput | GetVariantStoreCommandInput | GetWorkflowCommandInput | GetWorkflowVersionCommandInput | ListAnnotationImportJobsCommandInput | ListAnnotationStoreVersionsCommandInput | ListAnnotationStoresCommandInput | ListBatchCommandInput | ListConfigurationsCommandInput | ListMultipartReadSetUploadsCommandInput | ListReadSetActivationJobsCommandInput | ListReadSetExportJobsCommandInput | ListReadSetImportJobsCommandInput | ListReadSetUploadPartsCommandInput | ListReadSetsCommandInput | ListReferenceImportJobsCommandInput | ListReferenceStoresCommandInput | ListReferencesCommandInput | ListRunCachesCommandInput | ListRunGroupsCommandInput | ListRunTasksCommandInput | ListRunsCommandInput | ListRunsInBatchCommandInput | ListSequenceStoresCommandInput | ListSharesCommandInput | ListTagsForResourceCommandInput | ListVariantImportJobsCommandInput | ListVariantStoresCommandInput | ListWorkflowVersionsCommandInput | ListWorkflowsCommandInput | PutS3AccessPolicyCommandInput | StartAnnotationImportJobCommandInput | StartReadSetActivationJobCommandInput | StartReadSetExportJobCommandInput | StartReadSetImportJobCommandInput | StartReferenceImportJobCommandInput | StartRunBatchCommandInput | StartRunCommandInput | StartVariantImportJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAnnotationStoreCommandInput | UpdateAnnotationStoreVersionCommandInput | UpdateRunCacheCommandInput | UpdateRunGroupCommandInput | UpdateSequenceStoreCommandInput | UpdateVariantStoreCommandInput | UpdateWorkflowCommandInput | UpdateWorkflowVersionCommandInput | UploadReadSetPartCommandInput;
|
|
120
124
|
/**
|
|
121
125
|
* @public
|
|
122
126
|
*/
|
|
123
|
-
export type ServiceOutputTypes = AbortMultipartReadSetUploadCommandOutput | AcceptShareCommandOutput | BatchDeleteReadSetCommandOutput | CancelAnnotationImportJobCommandOutput | CancelRunBatchCommandOutput | CancelRunCommandOutput | CancelVariantImportJobCommandOutput | CompleteMultipartReadSetUploadCommandOutput | CreateAnnotationStoreCommandOutput | CreateAnnotationStoreVersionCommandOutput | CreateMultipartReadSetUploadCommandOutput | CreateReferenceStoreCommandOutput | CreateRunCacheCommandOutput | CreateRunGroupCommandOutput | CreateSequenceStoreCommandOutput | CreateShareCommandOutput | CreateVariantStoreCommandOutput | CreateWorkflowCommandOutput | CreateWorkflowVersionCommandOutput | DeleteAnnotationStoreCommandOutput | DeleteAnnotationStoreVersionsCommandOutput | DeleteBatchCommandOutput | DeleteReferenceCommandOutput | DeleteReferenceStoreCommandOutput | DeleteRunBatchCommandOutput | DeleteRunCacheCommandOutput | DeleteRunCommandOutput | DeleteRunGroupCommandOutput | DeleteS3AccessPolicyCommandOutput | DeleteSequenceStoreCommandOutput | DeleteShareCommandOutput | DeleteVariantStoreCommandOutput | DeleteWorkflowCommandOutput | DeleteWorkflowVersionCommandOutput | GetAnnotationImportJobCommandOutput | GetAnnotationStoreCommandOutput | GetAnnotationStoreVersionCommandOutput | GetBatchCommandOutput | GetReadSetActivationJobCommandOutput | GetReadSetCommandOutput | GetReadSetExportJobCommandOutput | GetReadSetImportJobCommandOutput | GetReadSetMetadataCommandOutput | GetReferenceCommandOutput | GetReferenceImportJobCommandOutput | GetReferenceMetadataCommandOutput | GetReferenceStoreCommandOutput | GetRunCacheCommandOutput | GetRunCommandOutput | GetRunGroupCommandOutput | GetRunTaskCommandOutput | GetS3AccessPolicyCommandOutput | GetSequenceStoreCommandOutput | GetShareCommandOutput | GetVariantImportJobCommandOutput | GetVariantStoreCommandOutput | GetWorkflowCommandOutput | GetWorkflowVersionCommandOutput | ListAnnotationImportJobsCommandOutput | ListAnnotationStoreVersionsCommandOutput | ListAnnotationStoresCommandOutput | ListBatchCommandOutput | ListMultipartReadSetUploadsCommandOutput | ListReadSetActivationJobsCommandOutput | ListReadSetExportJobsCommandOutput | ListReadSetImportJobsCommandOutput | ListReadSetUploadPartsCommandOutput | ListReadSetsCommandOutput | ListReferenceImportJobsCommandOutput | ListReferenceStoresCommandOutput | ListReferencesCommandOutput | ListRunCachesCommandOutput | ListRunGroupsCommandOutput | ListRunTasksCommandOutput | ListRunsCommandOutput | ListRunsInBatchCommandOutput | ListSequenceStoresCommandOutput | ListSharesCommandOutput | ListTagsForResourceCommandOutput | ListVariantImportJobsCommandOutput | ListVariantStoresCommandOutput | ListWorkflowVersionsCommandOutput | ListWorkflowsCommandOutput | PutS3AccessPolicyCommandOutput | StartAnnotationImportJobCommandOutput | StartReadSetActivationJobCommandOutput | StartReadSetExportJobCommandOutput | StartReadSetImportJobCommandOutput | StartReferenceImportJobCommandOutput | StartRunBatchCommandOutput | StartRunCommandOutput | StartVariantImportJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAnnotationStoreCommandOutput | UpdateAnnotationStoreVersionCommandOutput | UpdateRunCacheCommandOutput | UpdateRunGroupCommandOutput | UpdateSequenceStoreCommandOutput | UpdateVariantStoreCommandOutput | UpdateWorkflowCommandOutput | UpdateWorkflowVersionCommandOutput | UploadReadSetPartCommandOutput;
|
|
127
|
+
export type ServiceOutputTypes = AbortMultipartReadSetUploadCommandOutput | AcceptShareCommandOutput | BatchDeleteReadSetCommandOutput | CancelAnnotationImportJobCommandOutput | CancelRunBatchCommandOutput | CancelRunCommandOutput | CancelVariantImportJobCommandOutput | CompleteMultipartReadSetUploadCommandOutput | CreateAnnotationStoreCommandOutput | CreateAnnotationStoreVersionCommandOutput | CreateConfigurationCommandOutput | CreateMultipartReadSetUploadCommandOutput | CreateReferenceStoreCommandOutput | CreateRunCacheCommandOutput | CreateRunGroupCommandOutput | CreateSequenceStoreCommandOutput | CreateShareCommandOutput | CreateVariantStoreCommandOutput | CreateWorkflowCommandOutput | CreateWorkflowVersionCommandOutput | DeleteAnnotationStoreCommandOutput | DeleteAnnotationStoreVersionsCommandOutput | DeleteBatchCommandOutput | DeleteConfigurationCommandOutput | DeleteReferenceCommandOutput | DeleteReferenceStoreCommandOutput | DeleteRunBatchCommandOutput | DeleteRunCacheCommandOutput | DeleteRunCommandOutput | DeleteRunGroupCommandOutput | DeleteS3AccessPolicyCommandOutput | DeleteSequenceStoreCommandOutput | DeleteShareCommandOutput | DeleteVariantStoreCommandOutput | DeleteWorkflowCommandOutput | DeleteWorkflowVersionCommandOutput | GetAnnotationImportJobCommandOutput | GetAnnotationStoreCommandOutput | GetAnnotationStoreVersionCommandOutput | GetBatchCommandOutput | GetConfigurationCommandOutput | GetReadSetActivationJobCommandOutput | GetReadSetCommandOutput | GetReadSetExportJobCommandOutput | GetReadSetImportJobCommandOutput | GetReadSetMetadataCommandOutput | GetReferenceCommandOutput | GetReferenceImportJobCommandOutput | GetReferenceMetadataCommandOutput | GetReferenceStoreCommandOutput | GetRunCacheCommandOutput | GetRunCommandOutput | GetRunGroupCommandOutput | GetRunTaskCommandOutput | GetS3AccessPolicyCommandOutput | GetSequenceStoreCommandOutput | GetShareCommandOutput | GetVariantImportJobCommandOutput | GetVariantStoreCommandOutput | GetWorkflowCommandOutput | GetWorkflowVersionCommandOutput | ListAnnotationImportJobsCommandOutput | ListAnnotationStoreVersionsCommandOutput | ListAnnotationStoresCommandOutput | ListBatchCommandOutput | ListConfigurationsCommandOutput | ListMultipartReadSetUploadsCommandOutput | ListReadSetActivationJobsCommandOutput | ListReadSetExportJobsCommandOutput | ListReadSetImportJobsCommandOutput | ListReadSetUploadPartsCommandOutput | ListReadSetsCommandOutput | ListReferenceImportJobsCommandOutput | ListReferenceStoresCommandOutput | ListReferencesCommandOutput | ListRunCachesCommandOutput | ListRunGroupsCommandOutput | ListRunTasksCommandOutput | ListRunsCommandOutput | ListRunsInBatchCommandOutput | ListSequenceStoresCommandOutput | ListSharesCommandOutput | ListTagsForResourceCommandOutput | ListVariantImportJobsCommandOutput | ListVariantStoresCommandOutput | ListWorkflowVersionsCommandOutput | ListWorkflowsCommandOutput | PutS3AccessPolicyCommandOutput | StartAnnotationImportJobCommandOutput | StartReadSetActivationJobCommandOutput | StartReadSetExportJobCommandOutput | StartReadSetImportJobCommandOutput | StartReferenceImportJobCommandOutput | StartRunBatchCommandOutput | StartRunCommandOutput | StartVariantImportJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAnnotationStoreCommandOutput | UpdateAnnotationStoreVersionCommandOutput | UpdateRunCacheCommandOutput | UpdateRunGroupCommandOutput | UpdateSequenceStoreCommandOutput | UpdateVariantStoreCommandOutput | UpdateWorkflowCommandOutput | UpdateWorkflowVersionCommandOutput | UploadReadSetPartCommandOutput;
|
|
124
128
|
/**
|
|
125
129
|
* @public
|
|
126
130
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import type { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider } from "@smithy/types";
|
|
3
3
|
import { type OmicsClientResolvedConfig } from "../OmicsClient";
|
|
4
4
|
/**
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { CreateConfigurationRequest, CreateConfigurationResponse } from "../models/models_0";
|
|
4
|
+
import type { OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OmicsClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateConfigurationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateConfigurationCommandInput extends CreateConfigurationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateConfigurationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateConfigurationCommandOutput extends CreateConfigurationResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateConfigurationCommand_base: {
|
|
25
|
+
new (input: CreateConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateConfigurationCommandInput, CreateConfigurationCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CreateConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateConfigurationCommandInput, CreateConfigurationCommandOutput, OmicsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Create a new configuration.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { OmicsClient, CreateConfigurationCommand } from "@aws-sdk/client-omics"; // ES Modules import
|
|
35
|
+
* // const { OmicsClient, CreateConfigurationCommand } = require("@aws-sdk/client-omics"); // CommonJS import
|
|
36
|
+
* // import type { OmicsClientConfig } from "@aws-sdk/client-omics";
|
|
37
|
+
* const config = {}; // type is OmicsClientConfig
|
|
38
|
+
* const client = new OmicsClient(config);
|
|
39
|
+
* const input = { // CreateConfigurationRequest
|
|
40
|
+
* name: "STRING_VALUE", // required
|
|
41
|
+
* description: "STRING_VALUE",
|
|
42
|
+
* runConfigurations: { // RunConfigurations
|
|
43
|
+
* vpcConfig: { // VpcConfig
|
|
44
|
+
* securityGroupIds: [ // SecurityGroupIds
|
|
45
|
+
* "STRING_VALUE",
|
|
46
|
+
* ],
|
|
47
|
+
* subnetIds: [ // SubnetIds
|
|
48
|
+
* "STRING_VALUE",
|
|
49
|
+
* ],
|
|
50
|
+
* },
|
|
51
|
+
* },
|
|
52
|
+
* tags: { // TagMap
|
|
53
|
+
* "<keys>": "STRING_VALUE",
|
|
54
|
+
* },
|
|
55
|
+
* requestId: "STRING_VALUE", // required
|
|
56
|
+
* };
|
|
57
|
+
* const command = new CreateConfigurationCommand(input);
|
|
58
|
+
* const response = await client.send(command);
|
|
59
|
+
* // { // CreateConfigurationResponse
|
|
60
|
+
* // arn: "STRING_VALUE",
|
|
61
|
+
* // uuid: "STRING_VALUE",
|
|
62
|
+
* // name: "STRING_VALUE",
|
|
63
|
+
* // description: "STRING_VALUE",
|
|
64
|
+
* // runConfigurations: { // RunConfigurationsResponse
|
|
65
|
+
* // vpcConfig: { // VpcConfigResponse
|
|
66
|
+
* // securityGroupIds: [ // SecurityGroupIds
|
|
67
|
+
* // "STRING_VALUE",
|
|
68
|
+
* // ],
|
|
69
|
+
* // subnetIds: [ // SubnetIds
|
|
70
|
+
* // "STRING_VALUE",
|
|
71
|
+
* // ],
|
|
72
|
+
* // vpcId: "STRING_VALUE",
|
|
73
|
+
* // },
|
|
74
|
+
* // },
|
|
75
|
+
* // status: "STRING_VALUE",
|
|
76
|
+
* // creationTime: new Date("TIMESTAMP"),
|
|
77
|
+
* // tags: { // TagMap
|
|
78
|
+
* // "<keys>": "STRING_VALUE",
|
|
79
|
+
* // },
|
|
80
|
+
* // };
|
|
81
|
+
*
|
|
82
|
+
* ```
|
|
83
|
+
*
|
|
84
|
+
* @param CreateConfigurationCommandInput - {@link CreateConfigurationCommandInput}
|
|
85
|
+
* @returns {@link CreateConfigurationCommandOutput}
|
|
86
|
+
* @see {@link CreateConfigurationCommandInput} for command's `input` shape.
|
|
87
|
+
* @see {@link CreateConfigurationCommandOutput} for command's `response` shape.
|
|
88
|
+
* @see {@link OmicsClientResolvedConfig | config} for OmicsClient's `config` shape.
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
91
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link ConflictException} (client fault)
|
|
94
|
+
* <p>The request cannot be applied to the target resource in its current state.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link InternalServerException} (server fault)
|
|
97
|
+
* <p>An unexpected error occurred. Try the request again.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link RequestTimeoutException} (client fault)
|
|
100
|
+
* <p>The request timed out.</p>
|
|
101
|
+
*
|
|
102
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
103
|
+
* <p>The target resource was not found in the current Region.</p>
|
|
104
|
+
*
|
|
105
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
106
|
+
* <p>The request exceeds a service quota.</p>
|
|
107
|
+
*
|
|
108
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
109
|
+
* <p>The request was denied due to request throttling.</p>
|
|
110
|
+
*
|
|
111
|
+
* @throws {@link ValidationException} (client fault)
|
|
112
|
+
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
113
|
+
*
|
|
114
|
+
* @throws {@link OmicsServiceException}
|
|
115
|
+
* <p>Base exception class for all service exceptions from Omics service.</p>
|
|
116
|
+
*
|
|
117
|
+
*
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
export declare class CreateConfigurationCommand extends CreateConfigurationCommand_base {
|
|
121
|
+
/** @internal type navigation helper, not in runtime. */
|
|
122
|
+
protected static __types: {
|
|
123
|
+
api: {
|
|
124
|
+
input: CreateConfigurationRequest;
|
|
125
|
+
output: CreateConfigurationResponse;
|
|
126
|
+
};
|
|
127
|
+
sdk: {
|
|
128
|
+
input: CreateConfigurationCommandInput;
|
|
129
|
+
output: CreateConfigurationCommandOutput;
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
}
|