@aws-sdk/client-omics 3.1017.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 +7 -7
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AutomaticJsonStringConversion as __AutomaticJsonStringConversion } from "@smithy/smithy-client";
|
|
2
2
|
import { DocumentType as __DocumentType, StreamingBlobTypes } from "@smithy/types";
|
|
3
|
-
import { Accelerators, AnnotationType, BatchStatus, CacheBehavior, CreationType, EncryptionType, ETagAlgorithm, ETagAlgorithmFamily, FileType, FormatToHeaderKey, JobStatus, ReadSetActivationJobItemStatus, ReadSetActivationJobStatus, ReadSetExportJobItemStatus, ReadSetExportJobStatus, ReadSetFile, ReadSetImportJobItemStatus, ReadSetImportJobStatus, ReadSetPartSource, ReadSetStatus, ReferenceCreationType, ReferenceFile, ReferenceImportJobItemStatus, ReferenceImportJobStatus, ReferenceStatus, ResourceOwner, RunCacheStatus, RunExport, RunLogLevel, RunRetentionMode, RunStatus, SchemaValueType, SequenceStoreStatus, ShareResourceType, ShareStatus, SourceReferenceType, StorageType, StoreFormat, StoreStatus, StoreType, SubmissionStatus, TaskStatus, VersionStatus, WorkflowEngine, WorkflowExport, WorkflowStatus, WorkflowType } from "./enums";
|
|
3
|
+
import { Accelerators, AnnotationType, BatchStatus, CacheBehavior, ConfigurationStatus, CreationType, EncryptionType, ETagAlgorithm, ETagAlgorithmFamily, FileType, FormatToHeaderKey, JobStatus, NetworkingMode, ReadSetActivationJobItemStatus, ReadSetActivationJobStatus, ReadSetExportJobItemStatus, ReadSetExportJobStatus, ReadSetFile, ReadSetImportJobItemStatus, ReadSetImportJobStatus, ReadSetPartSource, ReadSetStatus, ReferenceCreationType, ReferenceFile, ReferenceImportJobItemStatus, ReferenceImportJobStatus, ReferenceStatus, ResourceOwner, RunCacheStatus, RunExport, RunLogLevel, RunRetentionMode, RunStatus, SchemaValueType, SequenceStoreStatus, ShareResourceType, ShareStatus, SourceReferenceType, StorageType, StoreFormat, StoreStatus, StoreType, SubmissionStatus, TaskStatus, VersionStatus, WorkflowEngine, WorkflowExport, WorkflowStatus, WorkflowType } from "./enums";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1702,6 +1702,287 @@ export interface CompleteMultipartReadSetUploadResponse {
|
|
|
1702
1702
|
*/
|
|
1703
1703
|
readSetId: string | undefined;
|
|
1704
1704
|
}
|
|
1705
|
+
/**
|
|
1706
|
+
* <p>Minimal details for a configuration resource.</p>
|
|
1707
|
+
* @public
|
|
1708
|
+
*/
|
|
1709
|
+
export interface ConfigurationDetails {
|
|
1710
|
+
/**
|
|
1711
|
+
* <p>User-friendly name for the configuration.</p>
|
|
1712
|
+
* @public
|
|
1713
|
+
*/
|
|
1714
|
+
name?: string | undefined;
|
|
1715
|
+
/**
|
|
1716
|
+
* <p>Unique resource identifier for the configuration.</p>
|
|
1717
|
+
* @public
|
|
1718
|
+
*/
|
|
1719
|
+
arn?: string | undefined;
|
|
1720
|
+
/**
|
|
1721
|
+
* <p>Unique identifier for the configuration.</p>
|
|
1722
|
+
* @public
|
|
1723
|
+
*/
|
|
1724
|
+
uuid?: string | undefined;
|
|
1725
|
+
}
|
|
1726
|
+
/**
|
|
1727
|
+
* <p>Configuration list item with summary information.</p>
|
|
1728
|
+
* @public
|
|
1729
|
+
*/
|
|
1730
|
+
export interface ConfigurationListItem {
|
|
1731
|
+
/**
|
|
1732
|
+
* <p>Unique resource identifier for the configuration.</p>
|
|
1733
|
+
* @public
|
|
1734
|
+
*/
|
|
1735
|
+
arn?: string | undefined;
|
|
1736
|
+
/**
|
|
1737
|
+
* <p>User-friendly name for the configuration.</p>
|
|
1738
|
+
* @public
|
|
1739
|
+
*/
|
|
1740
|
+
name?: string | undefined;
|
|
1741
|
+
/**
|
|
1742
|
+
* <p>Description for the configuration.</p>
|
|
1743
|
+
* @public
|
|
1744
|
+
*/
|
|
1745
|
+
description?: string | undefined;
|
|
1746
|
+
/**
|
|
1747
|
+
* <p>Current configuration status.</p>
|
|
1748
|
+
* @public
|
|
1749
|
+
*/
|
|
1750
|
+
status?: ConfigurationStatus | undefined;
|
|
1751
|
+
/**
|
|
1752
|
+
* <p>Configuration creation timestamp.</p>
|
|
1753
|
+
* @public
|
|
1754
|
+
*/
|
|
1755
|
+
creationTime?: Date | undefined;
|
|
1756
|
+
}
|
|
1757
|
+
/**
|
|
1758
|
+
* <p>VPC configuration for workflow runs.</p>
|
|
1759
|
+
* @public
|
|
1760
|
+
*/
|
|
1761
|
+
export interface VpcConfig {
|
|
1762
|
+
/**
|
|
1763
|
+
* <p>List of security group IDs. Maximum of 5 security groups allowed.</p>
|
|
1764
|
+
* @public
|
|
1765
|
+
*/
|
|
1766
|
+
securityGroupIds?: string[] | undefined;
|
|
1767
|
+
/**
|
|
1768
|
+
* <p>List of subnet IDs. Maximum of 16 subnets allowed.</p>
|
|
1769
|
+
* @public
|
|
1770
|
+
*/
|
|
1771
|
+
subnetIds?: string[] | undefined;
|
|
1772
|
+
}
|
|
1773
|
+
/**
|
|
1774
|
+
* <p>Run-specific configuration settings.</p>
|
|
1775
|
+
* @public
|
|
1776
|
+
*/
|
|
1777
|
+
export interface RunConfigurations {
|
|
1778
|
+
/**
|
|
1779
|
+
* <p>VPC configuration for workflow runs.</p>
|
|
1780
|
+
* @public
|
|
1781
|
+
*/
|
|
1782
|
+
vpcConfig?: VpcConfig | undefined;
|
|
1783
|
+
}
|
|
1784
|
+
/**
|
|
1785
|
+
* @public
|
|
1786
|
+
*/
|
|
1787
|
+
export interface CreateConfigurationRequest {
|
|
1788
|
+
/**
|
|
1789
|
+
* <p>User-friendly name for the configuration.</p>
|
|
1790
|
+
* @public
|
|
1791
|
+
*/
|
|
1792
|
+
name: string | undefined;
|
|
1793
|
+
/**
|
|
1794
|
+
* <p>Optional description for the configuration.</p>
|
|
1795
|
+
* @public
|
|
1796
|
+
*/
|
|
1797
|
+
description?: string | undefined;
|
|
1798
|
+
/**
|
|
1799
|
+
* <p>Required run-specific configurations.</p>
|
|
1800
|
+
* @public
|
|
1801
|
+
*/
|
|
1802
|
+
runConfigurations: RunConfigurations | undefined;
|
|
1803
|
+
/**
|
|
1804
|
+
* <p>Optional tags for the configuration.</p>
|
|
1805
|
+
* @public
|
|
1806
|
+
*/
|
|
1807
|
+
tags?: Record<string, string> | undefined;
|
|
1808
|
+
/**
|
|
1809
|
+
* <p>Optional request idempotency token. If not specified, a universally unique identifier (UUID) will be automatically generated for the request.</p>
|
|
1810
|
+
* @public
|
|
1811
|
+
*/
|
|
1812
|
+
requestId?: string | undefined;
|
|
1813
|
+
}
|
|
1814
|
+
/**
|
|
1815
|
+
* <p>VPC configuration for workflow runs with computed VPC ID.</p>
|
|
1816
|
+
* @public
|
|
1817
|
+
*/
|
|
1818
|
+
export interface VpcConfigResponse {
|
|
1819
|
+
/**
|
|
1820
|
+
* <p>List of security group IDs.</p>
|
|
1821
|
+
* @public
|
|
1822
|
+
*/
|
|
1823
|
+
securityGroupIds?: string[] | undefined;
|
|
1824
|
+
/**
|
|
1825
|
+
* <p>List of subnet IDs.</p>
|
|
1826
|
+
* @public
|
|
1827
|
+
*/
|
|
1828
|
+
subnetIds?: string[] | undefined;
|
|
1829
|
+
/**
|
|
1830
|
+
* <p>VPC ID computed from the provided subnet IDs.</p>
|
|
1831
|
+
* @public
|
|
1832
|
+
*/
|
|
1833
|
+
vpcId?: string | undefined;
|
|
1834
|
+
}
|
|
1835
|
+
/**
|
|
1836
|
+
* <p>Run-specific configuration settings with computed values.</p>
|
|
1837
|
+
* @public
|
|
1838
|
+
*/
|
|
1839
|
+
export interface RunConfigurationsResponse {
|
|
1840
|
+
/**
|
|
1841
|
+
* <p>VPC configuration for workflow runs with computed VPC ID.</p>
|
|
1842
|
+
* @public
|
|
1843
|
+
*/
|
|
1844
|
+
vpcConfig?: VpcConfigResponse | undefined;
|
|
1845
|
+
}
|
|
1846
|
+
/**
|
|
1847
|
+
* @public
|
|
1848
|
+
*/
|
|
1849
|
+
export interface CreateConfigurationResponse {
|
|
1850
|
+
/**
|
|
1851
|
+
* <p>Unique resource identifier for the configuration.</p>
|
|
1852
|
+
* @public
|
|
1853
|
+
*/
|
|
1854
|
+
arn?: string | undefined;
|
|
1855
|
+
/**
|
|
1856
|
+
* <p>Unique identifier for the configuration.</p>
|
|
1857
|
+
* @public
|
|
1858
|
+
*/
|
|
1859
|
+
uuid?: string | undefined;
|
|
1860
|
+
/**
|
|
1861
|
+
* <p>User-friendly name for the configuration.</p>
|
|
1862
|
+
* @public
|
|
1863
|
+
*/
|
|
1864
|
+
name?: string | undefined;
|
|
1865
|
+
/**
|
|
1866
|
+
* <p>Description for the configuration.</p>
|
|
1867
|
+
* @public
|
|
1868
|
+
*/
|
|
1869
|
+
description?: string | undefined;
|
|
1870
|
+
/**
|
|
1871
|
+
* <p>Run-specific configurations.</p>
|
|
1872
|
+
* @public
|
|
1873
|
+
*/
|
|
1874
|
+
runConfigurations?: RunConfigurationsResponse | undefined;
|
|
1875
|
+
/**
|
|
1876
|
+
* <p>Current configuration status.</p>
|
|
1877
|
+
* @public
|
|
1878
|
+
*/
|
|
1879
|
+
status?: ConfigurationStatus | undefined;
|
|
1880
|
+
/**
|
|
1881
|
+
* <p>Configuration creation timestamp.</p>
|
|
1882
|
+
* @public
|
|
1883
|
+
*/
|
|
1884
|
+
creationTime?: Date | undefined;
|
|
1885
|
+
/**
|
|
1886
|
+
* <p>Tags for the configuration.</p>
|
|
1887
|
+
* @public
|
|
1888
|
+
*/
|
|
1889
|
+
tags?: Record<string, string> | undefined;
|
|
1890
|
+
}
|
|
1891
|
+
/**
|
|
1892
|
+
* @public
|
|
1893
|
+
*/
|
|
1894
|
+
export interface DeleteConfigurationRequest {
|
|
1895
|
+
/**
|
|
1896
|
+
* <p>Configuration name to delete.</p>
|
|
1897
|
+
* @public
|
|
1898
|
+
*/
|
|
1899
|
+
name: string | undefined;
|
|
1900
|
+
}
|
|
1901
|
+
/**
|
|
1902
|
+
* @public
|
|
1903
|
+
*/
|
|
1904
|
+
export interface GetConfigurationRequest {
|
|
1905
|
+
/**
|
|
1906
|
+
* <p>Configuration name to retrieve.</p>
|
|
1907
|
+
* @public
|
|
1908
|
+
*/
|
|
1909
|
+
name: string | undefined;
|
|
1910
|
+
}
|
|
1911
|
+
/**
|
|
1912
|
+
* @public
|
|
1913
|
+
*/
|
|
1914
|
+
export interface GetConfigurationResponse {
|
|
1915
|
+
/**
|
|
1916
|
+
* <p>Unique resource identifier for the configuration.</p>
|
|
1917
|
+
* @public
|
|
1918
|
+
*/
|
|
1919
|
+
arn?: string | undefined;
|
|
1920
|
+
/**
|
|
1921
|
+
* <p>Unique identifier for the configuration.</p>
|
|
1922
|
+
* @public
|
|
1923
|
+
*/
|
|
1924
|
+
uuid?: string | undefined;
|
|
1925
|
+
/**
|
|
1926
|
+
* <p>User-friendly name for the configuration.</p>
|
|
1927
|
+
* @public
|
|
1928
|
+
*/
|
|
1929
|
+
name?: string | undefined;
|
|
1930
|
+
/**
|
|
1931
|
+
* <p>Description for the configuration.</p>
|
|
1932
|
+
* @public
|
|
1933
|
+
*/
|
|
1934
|
+
description?: string | undefined;
|
|
1935
|
+
/**
|
|
1936
|
+
* <p>Run-specific configurations.</p>
|
|
1937
|
+
* @public
|
|
1938
|
+
*/
|
|
1939
|
+
runConfigurations?: RunConfigurationsResponse | undefined;
|
|
1940
|
+
/**
|
|
1941
|
+
* <p>Current configuration status.</p>
|
|
1942
|
+
* @public
|
|
1943
|
+
*/
|
|
1944
|
+
status?: ConfigurationStatus | undefined;
|
|
1945
|
+
/**
|
|
1946
|
+
* <p>Configuration creation timestamp.</p>
|
|
1947
|
+
* @public
|
|
1948
|
+
*/
|
|
1949
|
+
creationTime?: Date | undefined;
|
|
1950
|
+
/**
|
|
1951
|
+
* <p>Tags for the configuration.</p>
|
|
1952
|
+
* @public
|
|
1953
|
+
*/
|
|
1954
|
+
tags?: Record<string, string> | undefined;
|
|
1955
|
+
}
|
|
1956
|
+
/**
|
|
1957
|
+
* @public
|
|
1958
|
+
*/
|
|
1959
|
+
export interface ListConfigurationsRequest {
|
|
1960
|
+
/**
|
|
1961
|
+
* <p>Maximum number of results to return.</p>
|
|
1962
|
+
* @public
|
|
1963
|
+
*/
|
|
1964
|
+
maxResults?: number | undefined;
|
|
1965
|
+
/**
|
|
1966
|
+
* <p>Pagination token for retrieving next page of results.</p>
|
|
1967
|
+
* @public
|
|
1968
|
+
*/
|
|
1969
|
+
startingToken?: string | undefined;
|
|
1970
|
+
}
|
|
1971
|
+
/**
|
|
1972
|
+
* @public
|
|
1973
|
+
*/
|
|
1974
|
+
export interface ListConfigurationsResponse {
|
|
1975
|
+
/**
|
|
1976
|
+
* <p>List of configuration items.</p>
|
|
1977
|
+
* @public
|
|
1978
|
+
*/
|
|
1979
|
+
items?: ConfigurationListItem[] | undefined;
|
|
1980
|
+
/**
|
|
1981
|
+
* <p>Token for retrieving next page of results.</p>
|
|
1982
|
+
* @public
|
|
1983
|
+
*/
|
|
1984
|
+
nextToken?: string | undefined;
|
|
1985
|
+
}
|
|
1705
1986
|
/**
|
|
1706
1987
|
* <p>Specifies image mappings that workflow tasks can use. For example, you can replace all the task references of a public image to use an equivalent image in your private ECR repository. You can use image mappings with upstream registries that don't support pull through cache. You need to manually synchronize the upstream registry with your private repository. </p>
|
|
1707
1988
|
* @public
|
|
@@ -4258,6 +4539,21 @@ export interface GetRunResponse {
|
|
|
4258
4539
|
* @public
|
|
4259
4540
|
*/
|
|
4260
4541
|
workflowUuid?: string | undefined;
|
|
4542
|
+
/**
|
|
4543
|
+
* <p>Configuration for run networking behavior. If absent, this will default to RESTRICTED.</p>
|
|
4544
|
+
* @public
|
|
4545
|
+
*/
|
|
4546
|
+
networkingMode?: NetworkingMode | undefined;
|
|
4547
|
+
/**
|
|
4548
|
+
* <p>Configuration details for the workflow run.</p>
|
|
4549
|
+
* @public
|
|
4550
|
+
*/
|
|
4551
|
+
configuration?: ConfigurationDetails | undefined;
|
|
4552
|
+
/**
|
|
4553
|
+
* <p>VPC configuration for the workflow run.</p>
|
|
4554
|
+
* @public
|
|
4555
|
+
*/
|
|
4556
|
+
vpcConfig?: VpcConfigResponse | undefined;
|
|
4261
4557
|
}
|
|
4262
4558
|
/**
|
|
4263
4559
|
* @public
|
|
@@ -7463,6 +7759,16 @@ export interface StartRunRequest {
|
|
|
7463
7759
|
* @public
|
|
7464
7760
|
*/
|
|
7465
7761
|
workflowVersionName?: string | undefined;
|
|
7762
|
+
/**
|
|
7763
|
+
* <p>Optional configuration for run networking behavior. If not specified, this will default to RESTRICTED.</p>
|
|
7764
|
+
* @public
|
|
7765
|
+
*/
|
|
7766
|
+
networkingMode?: NetworkingMode | undefined;
|
|
7767
|
+
/**
|
|
7768
|
+
* <p>Optional configuration name to use for the workflow run.</p>
|
|
7769
|
+
* @public
|
|
7770
|
+
*/
|
|
7771
|
+
configurationName?: string | undefined;
|
|
7466
7772
|
}
|
|
7467
7773
|
/**
|
|
7468
7774
|
* @public
|
|
@@ -7498,6 +7804,16 @@ export interface StartRunResponse {
|
|
|
7498
7804
|
* @public
|
|
7499
7805
|
*/
|
|
7500
7806
|
runOutputUri?: string | undefined;
|
|
7807
|
+
/**
|
|
7808
|
+
* <p>Configuration details for the workflow run.</p>
|
|
7809
|
+
* @public
|
|
7810
|
+
*/
|
|
7811
|
+
configuration?: ConfigurationDetails | undefined;
|
|
7812
|
+
/**
|
|
7813
|
+
* <p>Networking mode for the workflow run.</p>
|
|
7814
|
+
* @public
|
|
7815
|
+
*/
|
|
7816
|
+
networkingMode?: string | undefined;
|
|
7501
7817
|
}
|
|
7502
7818
|
/**
|
|
7503
7819
|
* <p>A source for a read set activation job.</p>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListConfigurationsCommandInput, ListConfigurationsCommandOutput } from "../commands/ListConfigurationsCommand";
|
|
3
|
+
import { OmicsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListConfigurations: (config: OmicsPaginationConfiguration, input: ListConfigurationsCommandInput, ...rest: any[]) => Paginator<ListConfigurationsCommandOutput>;
|
|
@@ -3,6 +3,7 @@ export * from "./ListAnnotationImportJobsPaginator";
|
|
|
3
3
|
export * from "./ListAnnotationStoresPaginator";
|
|
4
4
|
export * from "./ListAnnotationStoreVersionsPaginator";
|
|
5
5
|
export * from "./ListBatchPaginator";
|
|
6
|
+
export * from "./ListConfigurationsPaginator";
|
|
6
7
|
export * from "./ListMultipartReadSetUploadsPaginator";
|
|
7
8
|
export * from "./ListReadSetActivationJobsPaginator";
|
|
8
9
|
export * from "./ListReadSetExportJobsPaginator";
|
|
@@ -18,7 +18,7 @@ export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
|
|
|
18
18
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
19
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
20
|
cacheMiddleware?: boolean | undefined;
|
|
21
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
21
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
22
22
|
protocolSettings: {
|
|
23
23
|
defaultNamespace?: string;
|
|
24
24
|
[setting: string]: unknown;
|
|
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
|
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
22
22
|
cacheMiddleware?: boolean | undefined;
|
|
23
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
23
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
24
24
|
protocolSettings: {
|
|
25
25
|
defaultNamespace?: string;
|
|
26
26
|
[setting: string]: unknown;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: OmicsClientConfig) => {
|
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
cacheMiddleware?: boolean;
|
|
10
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
11
11
|
protocolSettings: {
|
|
12
12
|
defaultNamespace?: string;
|
|
13
13
|
[setting: string]: unknown;
|
|
@@ -42,11 +42,15 @@ export declare var CancelVariantImportResponse$: StaticStructureSchema;
|
|
|
42
42
|
export declare var CompleteMultipartReadSetUploadRequest$: StaticStructureSchema;
|
|
43
43
|
export declare var CompleteMultipartReadSetUploadResponse$: StaticStructureSchema;
|
|
44
44
|
export declare var CompleteReadSetUploadPartListItem$: StaticStructureSchema;
|
|
45
|
+
export declare var ConfigurationDetails$: StaticStructureSchema;
|
|
46
|
+
export declare var ConfigurationListItem$: StaticStructureSchema;
|
|
45
47
|
export declare var ContainerRegistryMap$: StaticStructureSchema;
|
|
46
48
|
export declare var CreateAnnotationStoreRequest$: StaticStructureSchema;
|
|
47
49
|
export declare var CreateAnnotationStoreResponse$: StaticStructureSchema;
|
|
48
50
|
export declare var CreateAnnotationStoreVersionRequest$: StaticStructureSchema;
|
|
49
51
|
export declare var CreateAnnotationStoreVersionResponse$: StaticStructureSchema;
|
|
52
|
+
export declare var CreateConfigurationRequest$: StaticStructureSchema;
|
|
53
|
+
export declare var CreateConfigurationResponse$: StaticStructureSchema;
|
|
50
54
|
export declare var CreateMultipartReadSetUploadRequest$: StaticStructureSchema;
|
|
51
55
|
export declare var CreateMultipartReadSetUploadResponse$: StaticStructureSchema;
|
|
52
56
|
export declare var CreateReferenceStoreRequest$: StaticStructureSchema;
|
|
@@ -73,6 +77,7 @@ export declare var DeleteAnnotationStoreResponse$: StaticStructureSchema;
|
|
|
73
77
|
export declare var DeleteAnnotationStoreVersionsRequest$: StaticStructureSchema;
|
|
74
78
|
export declare var DeleteAnnotationStoreVersionsResponse$: StaticStructureSchema;
|
|
75
79
|
export declare var DeleteBatchRequest$: StaticStructureSchema;
|
|
80
|
+
export declare var DeleteConfigurationRequest$: StaticStructureSchema;
|
|
76
81
|
export declare var DeleteReferenceRequest$: StaticStructureSchema;
|
|
77
82
|
export declare var DeleteReferenceResponse$: StaticStructureSchema;
|
|
78
83
|
export declare var DeleteReferenceStoreRequest$: StaticStructureSchema;
|
|
@@ -107,6 +112,8 @@ export declare var GetAnnotationStoreVersionRequest$: StaticStructureSchema;
|
|
|
107
112
|
export declare var GetAnnotationStoreVersionResponse$: StaticStructureSchema;
|
|
108
113
|
export declare var GetBatchRequest$: StaticStructureSchema;
|
|
109
114
|
export declare var GetBatchResponse$: StaticStructureSchema;
|
|
115
|
+
export declare var GetConfigurationRequest$: StaticStructureSchema;
|
|
116
|
+
export declare var GetConfigurationResponse$: StaticStructureSchema;
|
|
110
117
|
export declare var GetReadSetActivationJobRequest$: StaticStructureSchema;
|
|
111
118
|
export declare var GetReadSetActivationJobResponse$: StaticStructureSchema;
|
|
112
119
|
export declare var GetReadSetExportJobRequest$: StaticStructureSchema;
|
|
@@ -167,6 +174,8 @@ export declare var ListAnnotationStoreVersionsRequest$: StaticStructureSchema;
|
|
|
167
174
|
export declare var ListAnnotationStoreVersionsResponse$: StaticStructureSchema;
|
|
168
175
|
export declare var ListBatchRequest$: StaticStructureSchema;
|
|
169
176
|
export declare var ListBatchResponse$: StaticStructureSchema;
|
|
177
|
+
export declare var ListConfigurationsRequest$: StaticStructureSchema;
|
|
178
|
+
export declare var ListConfigurationsResponse$: StaticStructureSchema;
|
|
170
179
|
export declare var ListMultipartReadSetUploadsRequest$: StaticStructureSchema;
|
|
171
180
|
export declare var ListMultipartReadSetUploadsResponse$: StaticStructureSchema;
|
|
172
181
|
export declare var ListReadSetActivationJobsRequest$: StaticStructureSchema;
|
|
@@ -230,6 +239,8 @@ export declare var ReferenceStoreFilter$: StaticStructureSchema;
|
|
|
230
239
|
export declare var RegistryMapping$: StaticStructureSchema;
|
|
231
240
|
export declare var RunBatchListItem$: StaticStructureSchema;
|
|
232
241
|
export declare var RunCacheListItem$: StaticStructureSchema;
|
|
242
|
+
export declare var RunConfigurations$: StaticStructureSchema;
|
|
243
|
+
export declare var RunConfigurationsResponse$: StaticStructureSchema;
|
|
233
244
|
export declare var RunGroupListItem$: StaticStructureSchema;
|
|
234
245
|
export declare var RunListItem$: StaticStructureSchema;
|
|
235
246
|
export declare var RunLogLocation$: StaticStructureSchema;
|
|
@@ -291,6 +302,8 @@ export declare var VariantImportJobItem$: StaticStructureSchema;
|
|
|
291
302
|
export declare var VariantStoreItem$: StaticStructureSchema;
|
|
292
303
|
export declare var VcfOptions$: StaticStructureSchema;
|
|
293
304
|
export declare var VersionDeleteError$: StaticStructureSchema;
|
|
305
|
+
export declare var VpcConfig$: StaticStructureSchema;
|
|
306
|
+
export declare var VpcConfigResponse$: StaticStructureSchema;
|
|
294
307
|
export declare var WorkflowListItem$: StaticStructureSchema;
|
|
295
308
|
export declare var WorkflowParameter$: StaticStructureSchema;
|
|
296
309
|
export declare var WorkflowVersionListItem$: StaticStructureSchema;
|
|
@@ -309,6 +322,7 @@ export declare var CancelVariantImportJob$: StaticOperationSchema;
|
|
|
309
322
|
export declare var CompleteMultipartReadSetUpload$: StaticOperationSchema;
|
|
310
323
|
export declare var CreateAnnotationStore$: StaticOperationSchema;
|
|
311
324
|
export declare var CreateAnnotationStoreVersion$: StaticOperationSchema;
|
|
325
|
+
export declare var CreateConfiguration$: StaticOperationSchema;
|
|
312
326
|
export declare var CreateMultipartReadSetUpload$: StaticOperationSchema;
|
|
313
327
|
export declare var CreateReferenceStore$: StaticOperationSchema;
|
|
314
328
|
export declare var CreateRunCache$: StaticOperationSchema;
|
|
@@ -321,6 +335,7 @@ export declare var CreateWorkflowVersion$: StaticOperationSchema;
|
|
|
321
335
|
export declare var DeleteAnnotationStore$: StaticOperationSchema;
|
|
322
336
|
export declare var DeleteAnnotationStoreVersions$: StaticOperationSchema;
|
|
323
337
|
export declare var DeleteBatch$: StaticOperationSchema;
|
|
338
|
+
export declare var DeleteConfiguration$: StaticOperationSchema;
|
|
324
339
|
export declare var DeleteReference$: StaticOperationSchema;
|
|
325
340
|
export declare var DeleteReferenceStore$: StaticOperationSchema;
|
|
326
341
|
export declare var DeleteRun$: StaticOperationSchema;
|
|
@@ -337,6 +352,7 @@ export declare var GetAnnotationImportJob$: StaticOperationSchema;
|
|
|
337
352
|
export declare var GetAnnotationStore$: StaticOperationSchema;
|
|
338
353
|
export declare var GetAnnotationStoreVersion$: StaticOperationSchema;
|
|
339
354
|
export declare var GetBatch$: StaticOperationSchema;
|
|
355
|
+
export declare var GetConfiguration$: StaticOperationSchema;
|
|
340
356
|
export declare var GetReadSet$: StaticOperationSchema;
|
|
341
357
|
export declare var GetReadSetActivationJob$: StaticOperationSchema;
|
|
342
358
|
export declare var GetReadSetExportJob$: StaticOperationSchema;
|
|
@@ -361,6 +377,7 @@ export declare var ListAnnotationImportJobs$: StaticOperationSchema;
|
|
|
361
377
|
export declare var ListAnnotationStores$: StaticOperationSchema;
|
|
362
378
|
export declare var ListAnnotationStoreVersions$: StaticOperationSchema;
|
|
363
379
|
export declare var ListBatch$: StaticOperationSchema;
|
|
380
|
+
export declare var ListConfigurations$: StaticOperationSchema;
|
|
364
381
|
export declare var ListMultipartReadSetUploads$: StaticOperationSchema;
|
|
365
382
|
export declare var ListReadSetActivationJobs$: StaticOperationSchema;
|
|
366
383
|
export declare var ListReadSetExportJobs$: StaticOperationSchema;
|
|
@@ -45,6 +45,10 @@ import {
|
|
|
45
45
|
CreateAnnotationStoreVersionCommandInput,
|
|
46
46
|
CreateAnnotationStoreVersionCommandOutput,
|
|
47
47
|
} from "./commands/CreateAnnotationStoreVersionCommand";
|
|
48
|
+
import {
|
|
49
|
+
CreateConfigurationCommandInput,
|
|
50
|
+
CreateConfigurationCommandOutput,
|
|
51
|
+
} from "./commands/CreateConfigurationCommand";
|
|
48
52
|
import {
|
|
49
53
|
CreateMultipartReadSetUploadCommandInput,
|
|
50
54
|
CreateMultipartReadSetUploadCommandOutput,
|
|
@@ -93,6 +97,10 @@ import {
|
|
|
93
97
|
DeleteBatchCommandInput,
|
|
94
98
|
DeleteBatchCommandOutput,
|
|
95
99
|
} from "./commands/DeleteBatchCommand";
|
|
100
|
+
import {
|
|
101
|
+
DeleteConfigurationCommandInput,
|
|
102
|
+
DeleteConfigurationCommandOutput,
|
|
103
|
+
} from "./commands/DeleteConfigurationCommand";
|
|
96
104
|
import {
|
|
97
105
|
DeleteReferenceCommandInput,
|
|
98
106
|
DeleteReferenceCommandOutput,
|
|
@@ -157,6 +165,10 @@ import {
|
|
|
157
165
|
GetBatchCommandInput,
|
|
158
166
|
GetBatchCommandOutput,
|
|
159
167
|
} from "./commands/GetBatchCommand";
|
|
168
|
+
import {
|
|
169
|
+
GetConfigurationCommandInput,
|
|
170
|
+
GetConfigurationCommandOutput,
|
|
171
|
+
} from "./commands/GetConfigurationCommand";
|
|
160
172
|
import {
|
|
161
173
|
GetReadSetActivationJobCommandInput,
|
|
162
174
|
GetReadSetActivationJobCommandOutput,
|
|
@@ -253,6 +265,10 @@ import {
|
|
|
253
265
|
ListBatchCommandInput,
|
|
254
266
|
ListBatchCommandOutput,
|
|
255
267
|
} from "./commands/ListBatchCommand";
|
|
268
|
+
import {
|
|
269
|
+
ListConfigurationsCommandInput,
|
|
270
|
+
ListConfigurationsCommandOutput,
|
|
271
|
+
} from "./commands/ListConfigurationsCommand";
|
|
256
272
|
import {
|
|
257
273
|
ListMultipartReadSetUploadsCommandInput,
|
|
258
274
|
ListMultipartReadSetUploadsCommandOutput,
|
|
@@ -549,6 +565,19 @@ export interface Omics {
|
|
|
549
565
|
options: __HttpHandlerOptions,
|
|
550
566
|
cb: (err: any, data?: CreateAnnotationStoreVersionCommandOutput) => void
|
|
551
567
|
): void;
|
|
568
|
+
createConfiguration(
|
|
569
|
+
args: CreateConfigurationCommandInput,
|
|
570
|
+
options?: __HttpHandlerOptions
|
|
571
|
+
): Promise<CreateConfigurationCommandOutput>;
|
|
572
|
+
createConfiguration(
|
|
573
|
+
args: CreateConfigurationCommandInput,
|
|
574
|
+
cb: (err: any, data?: CreateConfigurationCommandOutput) => void
|
|
575
|
+
): void;
|
|
576
|
+
createConfiguration(
|
|
577
|
+
args: CreateConfigurationCommandInput,
|
|
578
|
+
options: __HttpHandlerOptions,
|
|
579
|
+
cb: (err: any, data?: CreateConfigurationCommandOutput) => void
|
|
580
|
+
): void;
|
|
552
581
|
createMultipartReadSetUpload(
|
|
553
582
|
args: CreateMultipartReadSetUploadCommandInput,
|
|
554
583
|
options?: __HttpHandlerOptions
|
|
@@ -705,6 +734,19 @@ export interface Omics {
|
|
|
705
734
|
options: __HttpHandlerOptions,
|
|
706
735
|
cb: (err: any, data?: DeleteBatchCommandOutput) => void
|
|
707
736
|
): void;
|
|
737
|
+
deleteConfiguration(
|
|
738
|
+
args: DeleteConfigurationCommandInput,
|
|
739
|
+
options?: __HttpHandlerOptions
|
|
740
|
+
): Promise<DeleteConfigurationCommandOutput>;
|
|
741
|
+
deleteConfiguration(
|
|
742
|
+
args: DeleteConfigurationCommandInput,
|
|
743
|
+
cb: (err: any, data?: DeleteConfigurationCommandOutput) => void
|
|
744
|
+
): void;
|
|
745
|
+
deleteConfiguration(
|
|
746
|
+
args: DeleteConfigurationCommandInput,
|
|
747
|
+
options: __HttpHandlerOptions,
|
|
748
|
+
cb: (err: any, data?: DeleteConfigurationCommandOutput) => void
|
|
749
|
+
): void;
|
|
708
750
|
deleteReference(
|
|
709
751
|
args: DeleteReferenceCommandInput,
|
|
710
752
|
options?: __HttpHandlerOptions
|
|
@@ -913,6 +955,19 @@ export interface Omics {
|
|
|
913
955
|
options: __HttpHandlerOptions,
|
|
914
956
|
cb: (err: any, data?: GetBatchCommandOutput) => void
|
|
915
957
|
): void;
|
|
958
|
+
getConfiguration(
|
|
959
|
+
args: GetConfigurationCommandInput,
|
|
960
|
+
options?: __HttpHandlerOptions
|
|
961
|
+
): Promise<GetConfigurationCommandOutput>;
|
|
962
|
+
getConfiguration(
|
|
963
|
+
args: GetConfigurationCommandInput,
|
|
964
|
+
cb: (err: any, data?: GetConfigurationCommandOutput) => void
|
|
965
|
+
): void;
|
|
966
|
+
getConfiguration(
|
|
967
|
+
args: GetConfigurationCommandInput,
|
|
968
|
+
options: __HttpHandlerOptions,
|
|
969
|
+
cb: (err: any, data?: GetConfigurationCommandOutput) => void
|
|
970
|
+
): void;
|
|
916
971
|
getReadSet(
|
|
917
972
|
args: GetReadSetCommandInput,
|
|
918
973
|
options?: __HttpHandlerOptions
|
|
@@ -1228,6 +1283,20 @@ export interface Omics {
|
|
|
1228
1283
|
options: __HttpHandlerOptions,
|
|
1229
1284
|
cb: (err: any, data?: ListBatchCommandOutput) => void
|
|
1230
1285
|
): void;
|
|
1286
|
+
listConfigurations(): Promise<ListConfigurationsCommandOutput>;
|
|
1287
|
+
listConfigurations(
|
|
1288
|
+
args: ListConfigurationsCommandInput,
|
|
1289
|
+
options?: __HttpHandlerOptions
|
|
1290
|
+
): Promise<ListConfigurationsCommandOutput>;
|
|
1291
|
+
listConfigurations(
|
|
1292
|
+
args: ListConfigurationsCommandInput,
|
|
1293
|
+
cb: (err: any, data?: ListConfigurationsCommandOutput) => void
|
|
1294
|
+
): void;
|
|
1295
|
+
listConfigurations(
|
|
1296
|
+
args: ListConfigurationsCommandInput,
|
|
1297
|
+
options: __HttpHandlerOptions,
|
|
1298
|
+
cb: (err: any, data?: ListConfigurationsCommandOutput) => void
|
|
1299
|
+
): void;
|
|
1231
1300
|
listMultipartReadSetUploads(
|
|
1232
1301
|
args: ListMultipartReadSetUploadsCommandInput,
|
|
1233
1302
|
options?: __HttpHandlerOptions
|
|
@@ -1797,6 +1866,13 @@ export interface Omics {
|
|
|
1797
1866
|
Exclude<keyof PaginationConfiguration, "client">
|
|
1798
1867
|
>
|
|
1799
1868
|
): Paginator<ListBatchCommandOutput>;
|
|
1869
|
+
paginateListConfigurations(
|
|
1870
|
+
args?: ListConfigurationsCommandInput,
|
|
1871
|
+
paginationConfig?: Pick<
|
|
1872
|
+
PaginationConfiguration,
|
|
1873
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1874
|
+
>
|
|
1875
|
+
): Paginator<ListConfigurationsCommandOutput>;
|
|
1800
1876
|
paginateListMultipartReadSetUploads(
|
|
1801
1877
|
args: ListMultipartReadSetUploadsCommandInput,
|
|
1802
1878
|
paginationConfig?: Pick<
|