@aws-sdk/client-application-discovery-service 3.121.0 → 3.127.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/CHANGELOG.md +8 -0
- package/dist-cjs/protocols/Aws_json1_1.js +102 -164
- package/dist-es/protocols/Aws_json1_1.js +65 -127
- package/package.json +26 -26
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.127.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.126.0...v3.127.0) (2022-07-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-application-discovery-service
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.121.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.120.0...v3.121.0) (2022-06-30)
|
|
7
15
|
|
|
8
16
|
|
|
@@ -1631,18 +1631,15 @@ const serializeAws_json1_1ApplicationIdsList = (input, context) => {
|
|
|
1631
1631
|
};
|
|
1632
1632
|
const serializeAws_json1_1AssociateConfigurationItemsToApplicationRequest = (input, context) => {
|
|
1633
1633
|
return {
|
|
1634
|
-
...(input.applicationConfigurationId
|
|
1635
|
-
|
|
1636
|
-
...(input.configurationIds !== undefined &&
|
|
1637
|
-
input.configurationIds !== null && {
|
|
1634
|
+
...(input.applicationConfigurationId != null && { applicationConfigurationId: input.applicationConfigurationId }),
|
|
1635
|
+
...(input.configurationIds != null && {
|
|
1638
1636
|
configurationIds: serializeAws_json1_1ConfigurationIdList(input.configurationIds, context),
|
|
1639
1637
|
}),
|
|
1640
1638
|
};
|
|
1641
1639
|
};
|
|
1642
1640
|
const serializeAws_json1_1BatchDeleteImportDataRequest = (input, context) => {
|
|
1643
1641
|
return {
|
|
1644
|
-
...(input.importTaskIds
|
|
1645
|
-
input.importTaskIds !== null && {
|
|
1642
|
+
...(input.importTaskIds != null && {
|
|
1646
1643
|
importTaskIds: serializeAws_json1_1ToDeleteIdentifierList(input.importTaskIds, context),
|
|
1647
1644
|
}),
|
|
1648
1645
|
};
|
|
@@ -1669,78 +1666,68 @@ const serializeAws_json1_1ContinuousExportIds = (input, context) => {
|
|
|
1669
1666
|
};
|
|
1670
1667
|
const serializeAws_json1_1CreateApplicationRequest = (input, context) => {
|
|
1671
1668
|
return {
|
|
1672
|
-
...(input.description
|
|
1673
|
-
...(input.name
|
|
1669
|
+
...(input.description != null && { description: input.description }),
|
|
1670
|
+
...(input.name != null && { name: input.name }),
|
|
1674
1671
|
};
|
|
1675
1672
|
};
|
|
1676
1673
|
const serializeAws_json1_1CreateTagsRequest = (input, context) => {
|
|
1677
1674
|
return {
|
|
1678
|
-
...(input.configurationIds
|
|
1679
|
-
input.configurationIds !== null && {
|
|
1675
|
+
...(input.configurationIds != null && {
|
|
1680
1676
|
configurationIds: serializeAws_json1_1ConfigurationIdList(input.configurationIds, context),
|
|
1681
1677
|
}),
|
|
1682
|
-
...(input.tags
|
|
1678
|
+
...(input.tags != null && { tags: serializeAws_json1_1TagSet(input.tags, context) }),
|
|
1683
1679
|
};
|
|
1684
1680
|
};
|
|
1685
1681
|
const serializeAws_json1_1DeleteApplicationsRequest = (input, context) => {
|
|
1686
1682
|
return {
|
|
1687
|
-
...(input.configurationIds
|
|
1688
|
-
input.configurationIds !== null && {
|
|
1683
|
+
...(input.configurationIds != null && {
|
|
1689
1684
|
configurationIds: serializeAws_json1_1ApplicationIdsList(input.configurationIds, context),
|
|
1690
1685
|
}),
|
|
1691
1686
|
};
|
|
1692
1687
|
};
|
|
1693
1688
|
const serializeAws_json1_1DeleteTagsRequest = (input, context) => {
|
|
1694
1689
|
return {
|
|
1695
|
-
...(input.configurationIds
|
|
1696
|
-
input.configurationIds !== null && {
|
|
1690
|
+
...(input.configurationIds != null && {
|
|
1697
1691
|
configurationIds: serializeAws_json1_1ConfigurationIdList(input.configurationIds, context),
|
|
1698
1692
|
}),
|
|
1699
|
-
...(input.tags
|
|
1693
|
+
...(input.tags != null && { tags: serializeAws_json1_1TagSet(input.tags, context) }),
|
|
1700
1694
|
};
|
|
1701
1695
|
};
|
|
1702
1696
|
const serializeAws_json1_1DescribeAgentsRequest = (input, context) => {
|
|
1703
1697
|
return {
|
|
1704
|
-
...(input.agentIds
|
|
1705
|
-
|
|
1706
|
-
...(input.
|
|
1707
|
-
|
|
1708
|
-
...(input.maxResults !== undefined && input.maxResults !== null && { maxResults: input.maxResults }),
|
|
1709
|
-
...(input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }),
|
|
1698
|
+
...(input.agentIds != null && { agentIds: serializeAws_json1_1AgentIds(input.agentIds, context) }),
|
|
1699
|
+
...(input.filters != null && { filters: serializeAws_json1_1Filters(input.filters, context) }),
|
|
1700
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
1701
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
1710
1702
|
};
|
|
1711
1703
|
};
|
|
1712
1704
|
const serializeAws_json1_1DescribeConfigurationsRequest = (input, context) => {
|
|
1713
1705
|
return {
|
|
1714
|
-
...(input.configurationIds
|
|
1715
|
-
input.configurationIds !== null && {
|
|
1706
|
+
...(input.configurationIds != null && {
|
|
1716
1707
|
configurationIds: serializeAws_json1_1ConfigurationIdList(input.configurationIds, context),
|
|
1717
1708
|
}),
|
|
1718
1709
|
};
|
|
1719
1710
|
};
|
|
1720
1711
|
const serializeAws_json1_1DescribeContinuousExportsRequest = (input, context) => {
|
|
1721
1712
|
return {
|
|
1722
|
-
...(input.exportIds
|
|
1723
|
-
|
|
1724
|
-
...(input.
|
|
1725
|
-
...(input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }),
|
|
1713
|
+
...(input.exportIds != null && { exportIds: serializeAws_json1_1ContinuousExportIds(input.exportIds, context) }),
|
|
1714
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
1715
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
1726
1716
|
};
|
|
1727
1717
|
};
|
|
1728
1718
|
const serializeAws_json1_1DescribeExportConfigurationsRequest = (input, context) => {
|
|
1729
1719
|
return {
|
|
1730
|
-
...(input.exportIds
|
|
1731
|
-
|
|
1732
|
-
...(input.
|
|
1733
|
-
...(input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }),
|
|
1720
|
+
...(input.exportIds != null && { exportIds: serializeAws_json1_1ExportIds(input.exportIds, context) }),
|
|
1721
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
1722
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
1734
1723
|
};
|
|
1735
1724
|
};
|
|
1736
1725
|
const serializeAws_json1_1DescribeExportTasksRequest = (input, context) => {
|
|
1737
1726
|
return {
|
|
1738
|
-
...(input.exportIds
|
|
1739
|
-
|
|
1740
|
-
...(input.
|
|
1741
|
-
|
|
1742
|
-
...(input.maxResults !== undefined && input.maxResults !== null && { maxResults: input.maxResults }),
|
|
1743
|
-
...(input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }),
|
|
1727
|
+
...(input.exportIds != null && { exportIds: serializeAws_json1_1ExportIds(input.exportIds, context) }),
|
|
1728
|
+
...(input.filters != null && { filters: serializeAws_json1_1ExportFilters(input.filters, context) }),
|
|
1729
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
1730
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
1744
1731
|
};
|
|
1745
1732
|
};
|
|
1746
1733
|
const serializeAws_json1_1DescribeImportTasksFilterList = (input, context) => {
|
|
@@ -1755,26 +1742,24 @@ const serializeAws_json1_1DescribeImportTasksFilterList = (input, context) => {
|
|
|
1755
1742
|
};
|
|
1756
1743
|
const serializeAws_json1_1DescribeImportTasksRequest = (input, context) => {
|
|
1757
1744
|
return {
|
|
1758
|
-
...(input.filters
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
...(input.
|
|
1745
|
+
...(input.filters != null && {
|
|
1746
|
+
filters: serializeAws_json1_1DescribeImportTasksFilterList(input.filters, context),
|
|
1747
|
+
}),
|
|
1748
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
1749
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
1762
1750
|
};
|
|
1763
1751
|
};
|
|
1764
1752
|
const serializeAws_json1_1DescribeTagsRequest = (input, context) => {
|
|
1765
1753
|
return {
|
|
1766
|
-
...(input.filters
|
|
1767
|
-
|
|
1768
|
-
...(input.
|
|
1769
|
-
...(input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }),
|
|
1754
|
+
...(input.filters != null && { filters: serializeAws_json1_1TagFilters(input.filters, context) }),
|
|
1755
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
1756
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
1770
1757
|
};
|
|
1771
1758
|
};
|
|
1772
1759
|
const serializeAws_json1_1DisassociateConfigurationItemsFromApplicationRequest = (input, context) => {
|
|
1773
1760
|
return {
|
|
1774
|
-
...(input.applicationConfigurationId
|
|
1775
|
-
|
|
1776
|
-
...(input.configurationIds !== undefined &&
|
|
1777
|
-
input.configurationIds !== null && {
|
|
1761
|
+
...(input.applicationConfigurationId != null && { applicationConfigurationId: input.applicationConfigurationId }),
|
|
1762
|
+
...(input.configurationIds != null && {
|
|
1778
1763
|
configurationIds: serializeAws_json1_1ConfigurationIdList(input.configurationIds, context),
|
|
1779
1764
|
}),
|
|
1780
1765
|
};
|
|
@@ -1791,10 +1776,9 @@ const serializeAws_json1_1ExportDataFormats = (input, context) => {
|
|
|
1791
1776
|
};
|
|
1792
1777
|
const serializeAws_json1_1ExportFilter = (input, context) => {
|
|
1793
1778
|
return {
|
|
1794
|
-
...(input.condition
|
|
1795
|
-
...(input.name
|
|
1796
|
-
...(input.values
|
|
1797
|
-
input.values !== null && { values: serializeAws_json1_1FilterValues(input.values, context) }),
|
|
1779
|
+
...(input.condition != null && { condition: input.condition }),
|
|
1780
|
+
...(input.name != null && { name: input.name }),
|
|
1781
|
+
...(input.values != null && { values: serializeAws_json1_1FilterValues(input.values, context) }),
|
|
1798
1782
|
};
|
|
1799
1783
|
};
|
|
1800
1784
|
const serializeAws_json1_1ExportFilters = (input, context) => {
|
|
@@ -1819,10 +1803,9 @@ const serializeAws_json1_1ExportIds = (input, context) => {
|
|
|
1819
1803
|
};
|
|
1820
1804
|
const serializeAws_json1_1Filter = (input, context) => {
|
|
1821
1805
|
return {
|
|
1822
|
-
...(input.condition
|
|
1823
|
-
...(input.name
|
|
1824
|
-
...(input.values
|
|
1825
|
-
input.values !== null && { values: serializeAws_json1_1FilterValues(input.values, context) }),
|
|
1806
|
+
...(input.condition != null && { condition: input.condition }),
|
|
1807
|
+
...(input.name != null && { name: input.name }),
|
|
1808
|
+
...(input.values != null && { values: serializeAws_json1_1FilterValues(input.values, context) }),
|
|
1826
1809
|
};
|
|
1827
1810
|
};
|
|
1828
1811
|
const serializeAws_json1_1Filters = (input, context) => {
|
|
@@ -1850,9 +1833,8 @@ const serializeAws_json1_1GetDiscoverySummaryRequest = (input, context) => {
|
|
|
1850
1833
|
};
|
|
1851
1834
|
const serializeAws_json1_1ImportTaskFilter = (input, context) => {
|
|
1852
1835
|
return {
|
|
1853
|
-
...(input.name
|
|
1854
|
-
...(input.values
|
|
1855
|
-
input.values !== null && { values: serializeAws_json1_1ImportTaskFilterValueList(input.values, context) }),
|
|
1836
|
+
...(input.name != null && { name: input.name }),
|
|
1837
|
+
...(input.values != null && { values: serializeAws_json1_1ImportTaskFilterValueList(input.values, context) }),
|
|
1856
1838
|
};
|
|
1857
1839
|
};
|
|
1858
1840
|
const serializeAws_json1_1ImportTaskFilterValueList = (input, context) => {
|
|
@@ -1867,34 +1849,28 @@ const serializeAws_json1_1ImportTaskFilterValueList = (input, context) => {
|
|
|
1867
1849
|
};
|
|
1868
1850
|
const serializeAws_json1_1ListConfigurationsRequest = (input, context) => {
|
|
1869
1851
|
return {
|
|
1870
|
-
...(input.configurationType
|
|
1871
|
-
|
|
1872
|
-
...(input.
|
|
1873
|
-
|
|
1874
|
-
...(input.
|
|
1875
|
-
...(input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }),
|
|
1876
|
-
...(input.orderBy !== undefined &&
|
|
1877
|
-
input.orderBy !== null && { orderBy: serializeAws_json1_1OrderByList(input.orderBy, context) }),
|
|
1852
|
+
...(input.configurationType != null && { configurationType: input.configurationType }),
|
|
1853
|
+
...(input.filters != null && { filters: serializeAws_json1_1Filters(input.filters, context) }),
|
|
1854
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
1855
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
1856
|
+
...(input.orderBy != null && { orderBy: serializeAws_json1_1OrderByList(input.orderBy, context) }),
|
|
1878
1857
|
};
|
|
1879
1858
|
};
|
|
1880
1859
|
const serializeAws_json1_1ListServerNeighborsRequest = (input, context) => {
|
|
1881
1860
|
return {
|
|
1882
|
-
...(input.configurationId
|
|
1883
|
-
|
|
1884
|
-
...(input.
|
|
1885
|
-
...(input.neighborConfigurationIds !== undefined &&
|
|
1886
|
-
input.neighborConfigurationIds !== null && {
|
|
1861
|
+
...(input.configurationId != null && { configurationId: input.configurationId }),
|
|
1862
|
+
...(input.maxResults != null && { maxResults: input.maxResults }),
|
|
1863
|
+
...(input.neighborConfigurationIds != null && {
|
|
1887
1864
|
neighborConfigurationIds: serializeAws_json1_1ConfigurationIdList(input.neighborConfigurationIds, context),
|
|
1888
1865
|
}),
|
|
1889
|
-
...(input.nextToken
|
|
1890
|
-
...(input.portInformationNeeded
|
|
1891
|
-
input.portInformationNeeded !== null && { portInformationNeeded: input.portInformationNeeded }),
|
|
1866
|
+
...(input.nextToken != null && { nextToken: input.nextToken }),
|
|
1867
|
+
...(input.portInformationNeeded != null && { portInformationNeeded: input.portInformationNeeded }),
|
|
1892
1868
|
};
|
|
1893
1869
|
};
|
|
1894
1870
|
const serializeAws_json1_1OrderByElement = (input, context) => {
|
|
1895
1871
|
return {
|
|
1896
|
-
...(input.fieldName
|
|
1897
|
-
...(input.sortOrder
|
|
1872
|
+
...(input.fieldName != null && { fieldName: input.fieldName }),
|
|
1873
|
+
...(input.sortOrder != null && { sortOrder: input.sortOrder }),
|
|
1898
1874
|
};
|
|
1899
1875
|
};
|
|
1900
1876
|
const serializeAws_json1_1OrderByList = (input, context) => {
|
|
@@ -1912,54 +1888,47 @@ const serializeAws_json1_1StartContinuousExportRequest = (input, context) => {
|
|
|
1912
1888
|
};
|
|
1913
1889
|
const serializeAws_json1_1StartDataCollectionByAgentIdsRequest = (input, context) => {
|
|
1914
1890
|
return {
|
|
1915
|
-
...(input.agentIds
|
|
1916
|
-
input.agentIds !== null && { agentIds: serializeAws_json1_1AgentIds(input.agentIds, context) }),
|
|
1891
|
+
...(input.agentIds != null && { agentIds: serializeAws_json1_1AgentIds(input.agentIds, context) }),
|
|
1917
1892
|
};
|
|
1918
1893
|
};
|
|
1919
1894
|
const serializeAws_json1_1StartExportTaskRequest = (input, context) => {
|
|
1920
1895
|
return {
|
|
1921
|
-
...(input.endTime
|
|
1922
|
-
|
|
1923
|
-
...(input.exportDataFormat !== undefined &&
|
|
1924
|
-
input.exportDataFormat !== null && {
|
|
1896
|
+
...(input.endTime != null && { endTime: Math.round(input.endTime.getTime() / 1000) }),
|
|
1897
|
+
...(input.exportDataFormat != null && {
|
|
1925
1898
|
exportDataFormat: serializeAws_json1_1ExportDataFormats(input.exportDataFormat, context),
|
|
1926
1899
|
}),
|
|
1927
|
-
...(input.filters
|
|
1928
|
-
|
|
1929
|
-
...(input.startTime !== undefined &&
|
|
1930
|
-
input.startTime !== null && { startTime: Math.round(input.startTime.getTime() / 1000) }),
|
|
1900
|
+
...(input.filters != null && { filters: serializeAws_json1_1ExportFilters(input.filters, context) }),
|
|
1901
|
+
...(input.startTime != null && { startTime: Math.round(input.startTime.getTime() / 1000) }),
|
|
1931
1902
|
};
|
|
1932
1903
|
};
|
|
1933
1904
|
const serializeAws_json1_1StartImportTaskRequest = (input, context) => {
|
|
1934
1905
|
var _a;
|
|
1935
1906
|
return {
|
|
1936
1907
|
clientRequestToken: (_a = input.clientRequestToken) !== null && _a !== void 0 ? _a : (0, uuid_1.v4)(),
|
|
1937
|
-
...(input.importUrl
|
|
1938
|
-
...(input.name
|
|
1908
|
+
...(input.importUrl != null && { importUrl: input.importUrl }),
|
|
1909
|
+
...(input.name != null && { name: input.name }),
|
|
1939
1910
|
};
|
|
1940
1911
|
};
|
|
1941
1912
|
const serializeAws_json1_1StopContinuousExportRequest = (input, context) => {
|
|
1942
1913
|
return {
|
|
1943
|
-
...(input.exportId
|
|
1914
|
+
...(input.exportId != null && { exportId: input.exportId }),
|
|
1944
1915
|
};
|
|
1945
1916
|
};
|
|
1946
1917
|
const serializeAws_json1_1StopDataCollectionByAgentIdsRequest = (input, context) => {
|
|
1947
1918
|
return {
|
|
1948
|
-
...(input.agentIds
|
|
1949
|
-
input.agentIds !== null && { agentIds: serializeAws_json1_1AgentIds(input.agentIds, context) }),
|
|
1919
|
+
...(input.agentIds != null && { agentIds: serializeAws_json1_1AgentIds(input.agentIds, context) }),
|
|
1950
1920
|
};
|
|
1951
1921
|
};
|
|
1952
1922
|
const serializeAws_json1_1Tag = (input, context) => {
|
|
1953
1923
|
return {
|
|
1954
|
-
...(input.key
|
|
1955
|
-
...(input.value
|
|
1924
|
+
...(input.key != null && { key: input.key }),
|
|
1925
|
+
...(input.value != null && { value: input.value }),
|
|
1956
1926
|
};
|
|
1957
1927
|
};
|
|
1958
1928
|
const serializeAws_json1_1TagFilter = (input, context) => {
|
|
1959
1929
|
return {
|
|
1960
|
-
...(input.name
|
|
1961
|
-
...(input.values
|
|
1962
|
-
input.values !== null && { values: serializeAws_json1_1FilterValues(input.values, context) }),
|
|
1930
|
+
...(input.name != null && { name: input.name }),
|
|
1931
|
+
...(input.values != null && { values: serializeAws_json1_1FilterValues(input.values, context) }),
|
|
1963
1932
|
};
|
|
1964
1933
|
};
|
|
1965
1934
|
const serializeAws_json1_1TagFilters = (input, context) => {
|
|
@@ -1994,10 +1963,9 @@ const serializeAws_json1_1ToDeleteIdentifierList = (input, context) => {
|
|
|
1994
1963
|
};
|
|
1995
1964
|
const serializeAws_json1_1UpdateApplicationRequest = (input, context) => {
|
|
1996
1965
|
return {
|
|
1997
|
-
...(input.configurationId
|
|
1998
|
-
|
|
1999
|
-
...(input.
|
|
2000
|
-
...(input.name !== undefined && input.name !== null && { name: input.name }),
|
|
1966
|
+
...(input.configurationId != null && { configurationId: input.configurationId }),
|
|
1967
|
+
...(input.description != null && { description: input.description }),
|
|
1968
|
+
...(input.name != null && { name: input.name }),
|
|
2001
1969
|
};
|
|
2002
1970
|
};
|
|
2003
1971
|
const deserializeAws_json1_1AgentConfigurationStatus = (output, context) => {
|
|
@@ -2021,7 +1989,7 @@ const deserializeAws_json1_1AgentConfigurationStatusList = (output, context) =>
|
|
|
2021
1989
|
const deserializeAws_json1_1AgentInfo = (output, context) => {
|
|
2022
1990
|
return {
|
|
2023
1991
|
agentId: (0, smithy_client_1.expectString)(output.agentId),
|
|
2024
|
-
agentNetworkInfoList: output.agentNetworkInfoList
|
|
1992
|
+
agentNetworkInfoList: output.agentNetworkInfoList != null
|
|
2025
1993
|
? deserializeAws_json1_1AgentNetworkInfoList(output.agentNetworkInfoList, context)
|
|
2026
1994
|
: undefined,
|
|
2027
1995
|
agentType: (0, smithy_client_1.expectString)(output.agentType),
|
|
@@ -2090,9 +2058,7 @@ const deserializeAws_json1_1BatchDeleteImportDataErrorList = (output, context) =
|
|
|
2090
2058
|
};
|
|
2091
2059
|
const deserializeAws_json1_1BatchDeleteImportDataResponse = (output, context) => {
|
|
2092
2060
|
return {
|
|
2093
|
-
errors: output.errors
|
|
2094
|
-
? deserializeAws_json1_1BatchDeleteImportDataErrorList(output.errors, context)
|
|
2095
|
-
: undefined,
|
|
2061
|
+
errors: output.errors != null ? deserializeAws_json1_1BatchDeleteImportDataErrorList(output.errors, context) : undefined,
|
|
2096
2062
|
};
|
|
2097
2063
|
};
|
|
2098
2064
|
const deserializeAws_json1_1Configuration = (output, context) => {
|
|
@@ -2122,7 +2088,7 @@ const deserializeAws_json1_1ConfigurationTag = (output, context) => {
|
|
|
2122
2088
|
configurationId: (0, smithy_client_1.expectString)(output.configurationId),
|
|
2123
2089
|
configurationType: (0, smithy_client_1.expectString)(output.configurationType),
|
|
2124
2090
|
key: (0, smithy_client_1.expectString)(output.key),
|
|
2125
|
-
timeOfCreation: output.timeOfCreation
|
|
2091
|
+
timeOfCreation: output.timeOfCreation != null
|
|
2126
2092
|
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.timeOfCreation)))
|
|
2127
2093
|
: undefined,
|
|
2128
2094
|
value: (0, smithy_client_1.expectString)(output.value),
|
|
@@ -2149,17 +2115,13 @@ const deserializeAws_json1_1ContinuousExportDescription = (output, context) => {
|
|
|
2149
2115
|
dataSource: (0, smithy_client_1.expectString)(output.dataSource),
|
|
2150
2116
|
exportId: (0, smithy_client_1.expectString)(output.exportId),
|
|
2151
2117
|
s3Bucket: (0, smithy_client_1.expectString)(output.s3Bucket),
|
|
2152
|
-
schemaStorageConfig: output.schemaStorageConfig
|
|
2118
|
+
schemaStorageConfig: output.schemaStorageConfig != null
|
|
2153
2119
|
? deserializeAws_json1_1SchemaStorageConfig(output.schemaStorageConfig, context)
|
|
2154
2120
|
: undefined,
|
|
2155
|
-
startTime: output.startTime
|
|
2156
|
-
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.startTime)))
|
|
2157
|
-
: undefined,
|
|
2121
|
+
startTime: output.startTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.startTime))) : undefined,
|
|
2158
2122
|
status: (0, smithy_client_1.expectString)(output.status),
|
|
2159
2123
|
statusDetail: (0, smithy_client_1.expectString)(output.statusDetail),
|
|
2160
|
-
stopTime: output.stopTime
|
|
2161
|
-
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.stopTime)))
|
|
2162
|
-
: undefined,
|
|
2124
|
+
stopTime: output.stopTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.stopTime))) : undefined,
|
|
2163
2125
|
};
|
|
2164
2126
|
};
|
|
2165
2127
|
const deserializeAws_json1_1ContinuousExportDescriptions = (output, context) => {
|
|
@@ -2222,9 +2184,7 @@ const deserializeAws_json1_1DeleteTagsResponse = (output, context) => {
|
|
|
2222
2184
|
};
|
|
2223
2185
|
const deserializeAws_json1_1DescribeAgentsResponse = (output, context) => {
|
|
2224
2186
|
return {
|
|
2225
|
-
agentsInfo: output.agentsInfo
|
|
2226
|
-
? deserializeAws_json1_1AgentsInfo(output.agentsInfo, context)
|
|
2227
|
-
: undefined,
|
|
2187
|
+
agentsInfo: output.agentsInfo != null ? deserializeAws_json1_1AgentsInfo(output.agentsInfo, context) : undefined,
|
|
2228
2188
|
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
2229
2189
|
};
|
|
2230
2190
|
};
|
|
@@ -2252,14 +2212,14 @@ const deserializeAws_json1_1DescribeConfigurationsAttributes = (output, context)
|
|
|
2252
2212
|
};
|
|
2253
2213
|
const deserializeAws_json1_1DescribeConfigurationsResponse = (output, context) => {
|
|
2254
2214
|
return {
|
|
2255
|
-
configurations: output.configurations
|
|
2215
|
+
configurations: output.configurations != null
|
|
2256
2216
|
? deserializeAws_json1_1DescribeConfigurationsAttributes(output.configurations, context)
|
|
2257
2217
|
: undefined,
|
|
2258
2218
|
};
|
|
2259
2219
|
};
|
|
2260
2220
|
const deserializeAws_json1_1DescribeContinuousExportsResponse = (output, context) => {
|
|
2261
2221
|
return {
|
|
2262
|
-
descriptions: output.descriptions
|
|
2222
|
+
descriptions: output.descriptions != null
|
|
2263
2223
|
? deserializeAws_json1_1ContinuousExportDescriptions(output.descriptions, context)
|
|
2264
2224
|
: undefined,
|
|
2265
2225
|
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
@@ -2267,34 +2227,26 @@ const deserializeAws_json1_1DescribeContinuousExportsResponse = (output, context
|
|
|
2267
2227
|
};
|
|
2268
2228
|
const deserializeAws_json1_1DescribeExportConfigurationsResponse = (output, context) => {
|
|
2269
2229
|
return {
|
|
2270
|
-
exportsInfo: output.exportsInfo
|
|
2271
|
-
? deserializeAws_json1_1ExportsInfo(output.exportsInfo, context)
|
|
2272
|
-
: undefined,
|
|
2230
|
+
exportsInfo: output.exportsInfo != null ? deserializeAws_json1_1ExportsInfo(output.exportsInfo, context) : undefined,
|
|
2273
2231
|
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
2274
2232
|
};
|
|
2275
2233
|
};
|
|
2276
2234
|
const deserializeAws_json1_1DescribeExportTasksResponse = (output, context) => {
|
|
2277
2235
|
return {
|
|
2278
|
-
exportsInfo: output.exportsInfo
|
|
2279
|
-
? deserializeAws_json1_1ExportsInfo(output.exportsInfo, context)
|
|
2280
|
-
: undefined,
|
|
2236
|
+
exportsInfo: output.exportsInfo != null ? deserializeAws_json1_1ExportsInfo(output.exportsInfo, context) : undefined,
|
|
2281
2237
|
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
2282
2238
|
};
|
|
2283
2239
|
};
|
|
2284
2240
|
const deserializeAws_json1_1DescribeImportTasksResponse = (output, context) => {
|
|
2285
2241
|
return {
|
|
2286
2242
|
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
2287
|
-
tasks: output.tasks
|
|
2288
|
-
? deserializeAws_json1_1ImportTaskList(output.tasks, context)
|
|
2289
|
-
: undefined,
|
|
2243
|
+
tasks: output.tasks != null ? deserializeAws_json1_1ImportTaskList(output.tasks, context) : undefined,
|
|
2290
2244
|
};
|
|
2291
2245
|
};
|
|
2292
2246
|
const deserializeAws_json1_1DescribeTagsResponse = (output, context) => {
|
|
2293
2247
|
return {
|
|
2294
2248
|
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
2295
|
-
tags: output.tags
|
|
2296
|
-
? deserializeAws_json1_1ConfigurationTagSet(output.tags, context)
|
|
2297
|
-
: undefined,
|
|
2249
|
+
tags: output.tags != null ? deserializeAws_json1_1ConfigurationTagSet(output.tags, context) : undefined,
|
|
2298
2250
|
};
|
|
2299
2251
|
};
|
|
2300
2252
|
const deserializeAws_json1_1DisassociateConfigurationItemsFromApplicationResponse = (output, context) => {
|
|
@@ -2309,15 +2261,15 @@ const deserializeAws_json1_1ExportInfo = (output, context) => {
|
|
|
2309
2261
|
return {
|
|
2310
2262
|
configurationsDownloadUrl: (0, smithy_client_1.expectString)(output.configurationsDownloadUrl),
|
|
2311
2263
|
exportId: (0, smithy_client_1.expectString)(output.exportId),
|
|
2312
|
-
exportRequestTime: output.exportRequestTime
|
|
2264
|
+
exportRequestTime: output.exportRequestTime != null
|
|
2313
2265
|
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.exportRequestTime)))
|
|
2314
2266
|
: undefined,
|
|
2315
2267
|
exportStatus: (0, smithy_client_1.expectString)(output.exportStatus),
|
|
2316
2268
|
isTruncated: (0, smithy_client_1.expectBoolean)(output.isTruncated),
|
|
2317
|
-
requestedEndTime: output.requestedEndTime
|
|
2269
|
+
requestedEndTime: output.requestedEndTime != null
|
|
2318
2270
|
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.requestedEndTime)))
|
|
2319
2271
|
: undefined,
|
|
2320
|
-
requestedStartTime: output.requestedStartTime
|
|
2272
|
+
requestedStartTime: output.requestedStartTime != null
|
|
2321
2273
|
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.requestedStartTime)))
|
|
2322
2274
|
: undefined,
|
|
2323
2275
|
statusMessage: (0, smithy_client_1.expectString)(output.statusMessage),
|
|
@@ -2336,14 +2288,12 @@ const deserializeAws_json1_1ExportsInfo = (output, context) => {
|
|
|
2336
2288
|
};
|
|
2337
2289
|
const deserializeAws_json1_1GetDiscoverySummaryResponse = (output, context) => {
|
|
2338
2290
|
return {
|
|
2339
|
-
agentSummary: output.agentSummary
|
|
2340
|
-
? deserializeAws_json1_1CustomerAgentInfo(output.agentSummary, context)
|
|
2341
|
-
: undefined,
|
|
2291
|
+
agentSummary: output.agentSummary != null ? deserializeAws_json1_1CustomerAgentInfo(output.agentSummary, context) : undefined,
|
|
2342
2292
|
applications: (0, smithy_client_1.expectLong)(output.applications),
|
|
2343
|
-
connectorSummary: output.connectorSummary
|
|
2293
|
+
connectorSummary: output.connectorSummary != null
|
|
2344
2294
|
? deserializeAws_json1_1CustomerConnectorInfo(output.connectorSummary, context)
|
|
2345
2295
|
: undefined,
|
|
2346
|
-
meCollectorSummary: output.meCollectorSummary
|
|
2296
|
+
meCollectorSummary: output.meCollectorSummary != null
|
|
2347
2297
|
? deserializeAws_json1_1CustomerMeCollectorInfo(output.meCollectorSummary, context)
|
|
2348
2298
|
: undefined,
|
|
2349
2299
|
servers: (0, smithy_client_1.expectLong)(output.servers),
|
|
@@ -2362,13 +2312,13 @@ const deserializeAws_json1_1ImportTask = (output, context) => {
|
|
|
2362
2312
|
applicationImportSuccess: (0, smithy_client_1.expectInt32)(output.applicationImportSuccess),
|
|
2363
2313
|
clientRequestToken: (0, smithy_client_1.expectString)(output.clientRequestToken),
|
|
2364
2314
|
errorsAndFailedEntriesZip: (0, smithy_client_1.expectString)(output.errorsAndFailedEntriesZip),
|
|
2365
|
-
importCompletionTime: output.importCompletionTime
|
|
2315
|
+
importCompletionTime: output.importCompletionTime != null
|
|
2366
2316
|
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.importCompletionTime)))
|
|
2367
2317
|
: undefined,
|
|
2368
|
-
importDeletedTime: output.importDeletedTime
|
|
2318
|
+
importDeletedTime: output.importDeletedTime != null
|
|
2369
2319
|
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.importDeletedTime)))
|
|
2370
2320
|
: undefined,
|
|
2371
|
-
importRequestTime: output.importRequestTime
|
|
2321
|
+
importRequestTime: output.importRequestTime != null
|
|
2372
2322
|
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.importRequestTime)))
|
|
2373
2323
|
: undefined,
|
|
2374
2324
|
importTaskId: (0, smithy_client_1.expectString)(output.importTaskId),
|
|
@@ -2402,18 +2352,14 @@ const deserializeAws_json1_1InvalidParameterValueException = (output, context) =
|
|
|
2402
2352
|
};
|
|
2403
2353
|
const deserializeAws_json1_1ListConfigurationsResponse = (output, context) => {
|
|
2404
2354
|
return {
|
|
2405
|
-
configurations: output.configurations
|
|
2406
|
-
? deserializeAws_json1_1Configurations(output.configurations, context)
|
|
2407
|
-
: undefined,
|
|
2355
|
+
configurations: output.configurations != null ? deserializeAws_json1_1Configurations(output.configurations, context) : undefined,
|
|
2408
2356
|
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
2409
2357
|
};
|
|
2410
2358
|
};
|
|
2411
2359
|
const deserializeAws_json1_1ListServerNeighborsResponse = (output, context) => {
|
|
2412
2360
|
return {
|
|
2413
2361
|
knownDependencyCount: (0, smithy_client_1.expectLong)(output.knownDependencyCount),
|
|
2414
|
-
neighbors: output.neighbors
|
|
2415
|
-
? deserializeAws_json1_1NeighborDetailsList(output.neighbors, context)
|
|
2416
|
-
: undefined,
|
|
2362
|
+
neighbors: output.neighbors != null ? deserializeAws_json1_1NeighborDetailsList(output.neighbors, context) : undefined,
|
|
2417
2363
|
nextToken: (0, smithy_client_1.expectString)(output.nextToken),
|
|
2418
2364
|
};
|
|
2419
2365
|
};
|
|
@@ -2473,17 +2419,15 @@ const deserializeAws_json1_1StartContinuousExportResponse = (output, context) =>
|
|
|
2473
2419
|
dataSource: (0, smithy_client_1.expectString)(output.dataSource),
|
|
2474
2420
|
exportId: (0, smithy_client_1.expectString)(output.exportId),
|
|
2475
2421
|
s3Bucket: (0, smithy_client_1.expectString)(output.s3Bucket),
|
|
2476
|
-
schemaStorageConfig: output.schemaStorageConfig
|
|
2422
|
+
schemaStorageConfig: output.schemaStorageConfig != null
|
|
2477
2423
|
? deserializeAws_json1_1SchemaStorageConfig(output.schemaStorageConfig, context)
|
|
2478
2424
|
: undefined,
|
|
2479
|
-
startTime: output.startTime
|
|
2480
|
-
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.startTime)))
|
|
2481
|
-
: undefined,
|
|
2425
|
+
startTime: output.startTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.startTime))) : undefined,
|
|
2482
2426
|
};
|
|
2483
2427
|
};
|
|
2484
2428
|
const deserializeAws_json1_1StartDataCollectionByAgentIdsResponse = (output, context) => {
|
|
2485
2429
|
return {
|
|
2486
|
-
agentsConfigurationStatus: output.agentsConfigurationStatus
|
|
2430
|
+
agentsConfigurationStatus: output.agentsConfigurationStatus != null
|
|
2487
2431
|
? deserializeAws_json1_1AgentConfigurationStatusList(output.agentsConfigurationStatus, context)
|
|
2488
2432
|
: undefined,
|
|
2489
2433
|
};
|
|
@@ -2495,24 +2439,18 @@ const deserializeAws_json1_1StartExportTaskResponse = (output, context) => {
|
|
|
2495
2439
|
};
|
|
2496
2440
|
const deserializeAws_json1_1StartImportTaskResponse = (output, context) => {
|
|
2497
2441
|
return {
|
|
2498
|
-
task: output.task
|
|
2499
|
-
? deserializeAws_json1_1ImportTask(output.task, context)
|
|
2500
|
-
: undefined,
|
|
2442
|
+
task: output.task != null ? deserializeAws_json1_1ImportTask(output.task, context) : undefined,
|
|
2501
2443
|
};
|
|
2502
2444
|
};
|
|
2503
2445
|
const deserializeAws_json1_1StopContinuousExportResponse = (output, context) => {
|
|
2504
2446
|
return {
|
|
2505
|
-
startTime: output.startTime
|
|
2506
|
-
|
|
2507
|
-
: undefined,
|
|
2508
|
-
stopTime: output.stopTime !== undefined && output.stopTime !== null
|
|
2509
|
-
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.stopTime)))
|
|
2510
|
-
: undefined,
|
|
2447
|
+
startTime: output.startTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.startTime))) : undefined,
|
|
2448
|
+
stopTime: output.stopTime != null ? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.stopTime))) : undefined,
|
|
2511
2449
|
};
|
|
2512
2450
|
};
|
|
2513
2451
|
const deserializeAws_json1_1StopDataCollectionByAgentIdsResponse = (output, context) => {
|
|
2514
2452
|
return {
|
|
2515
|
-
agentsConfigurationStatus: output.agentsConfigurationStatus
|
|
2453
|
+
agentsConfigurationStatus: output.agentsConfigurationStatus != null
|
|
2516
2454
|
? deserializeAws_json1_1AgentConfigurationStatusList(output.agentsConfigurationStatus, context)
|
|
2517
2455
|
: undefined,
|
|
2518
2456
|
};
|
|
@@ -2120,15 +2120,12 @@ var serializeAws_json1_1ApplicationIdsList = function (input, context) {
|
|
|
2120
2120
|
});
|
|
2121
2121
|
};
|
|
2122
2122
|
var serializeAws_json1_1AssociateConfigurationItemsToApplicationRequest = function (input, context) {
|
|
2123
|
-
return __assign(__assign({}, (input.applicationConfigurationId
|
|
2124
|
-
input.applicationConfigurationId !== null && { applicationConfigurationId: input.applicationConfigurationId })), (input.configurationIds !== undefined &&
|
|
2125
|
-
input.configurationIds !== null && {
|
|
2123
|
+
return __assign(__assign({}, (input.applicationConfigurationId != null && { applicationConfigurationId: input.applicationConfigurationId })), (input.configurationIds != null && {
|
|
2126
2124
|
configurationIds: serializeAws_json1_1ConfigurationIdList(input.configurationIds, context),
|
|
2127
2125
|
}));
|
|
2128
2126
|
};
|
|
2129
2127
|
var serializeAws_json1_1BatchDeleteImportDataRequest = function (input, context) {
|
|
2130
|
-
return __assign({}, (input.importTaskIds
|
|
2131
|
-
input.importTaskIds !== null && {
|
|
2128
|
+
return __assign({}, (input.importTaskIds != null && {
|
|
2132
2129
|
importTaskIds: serializeAws_json1_1ToDeleteIdentifierList(input.importTaskIds, context),
|
|
2133
2130
|
}));
|
|
2134
2131
|
};
|
|
@@ -2153,49 +2150,39 @@ var serializeAws_json1_1ContinuousExportIds = function (input, context) {
|
|
|
2153
2150
|
});
|
|
2154
2151
|
};
|
|
2155
2152
|
var serializeAws_json1_1CreateApplicationRequest = function (input, context) {
|
|
2156
|
-
return __assign(__assign({}, (input.description
|
|
2153
|
+
return __assign(__assign({}, (input.description != null && { description: input.description })), (input.name != null && { name: input.name }));
|
|
2157
2154
|
};
|
|
2158
2155
|
var serializeAws_json1_1CreateTagsRequest = function (input, context) {
|
|
2159
|
-
return __assign(__assign({}, (input.configurationIds
|
|
2160
|
-
input.configurationIds !== null && {
|
|
2156
|
+
return __assign(__assign({}, (input.configurationIds != null && {
|
|
2161
2157
|
configurationIds: serializeAws_json1_1ConfigurationIdList(input.configurationIds, context),
|
|
2162
|
-
})), (input.tags
|
|
2158
|
+
})), (input.tags != null && { tags: serializeAws_json1_1TagSet(input.tags, context) }));
|
|
2163
2159
|
};
|
|
2164
2160
|
var serializeAws_json1_1DeleteApplicationsRequest = function (input, context) {
|
|
2165
|
-
return __assign({}, (input.configurationIds
|
|
2166
|
-
input.configurationIds !== null && {
|
|
2161
|
+
return __assign({}, (input.configurationIds != null && {
|
|
2167
2162
|
configurationIds: serializeAws_json1_1ApplicationIdsList(input.configurationIds, context),
|
|
2168
2163
|
}));
|
|
2169
2164
|
};
|
|
2170
2165
|
var serializeAws_json1_1DeleteTagsRequest = function (input, context) {
|
|
2171
|
-
return __assign(__assign({}, (input.configurationIds
|
|
2172
|
-
input.configurationIds !== null && {
|
|
2166
|
+
return __assign(__assign({}, (input.configurationIds != null && {
|
|
2173
2167
|
configurationIds: serializeAws_json1_1ConfigurationIdList(input.configurationIds, context),
|
|
2174
|
-
})), (input.tags
|
|
2168
|
+
})), (input.tags != null && { tags: serializeAws_json1_1TagSet(input.tags, context) }));
|
|
2175
2169
|
};
|
|
2176
2170
|
var serializeAws_json1_1DescribeAgentsRequest = function (input, context) {
|
|
2177
|
-
return __assign(__assign(__assign(__assign({}, (input.agentIds
|
|
2178
|
-
input.agentIds !== null && { agentIds: serializeAws_json1_1AgentIds(input.agentIds, context) })), (input.filters !== undefined &&
|
|
2179
|
-
input.filters !== null && { filters: serializeAws_json1_1Filters(input.filters, context) })), (input.maxResults !== undefined && input.maxResults !== null && { maxResults: input.maxResults })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }));
|
|
2171
|
+
return __assign(__assign(__assign(__assign({}, (input.agentIds != null && { agentIds: serializeAws_json1_1AgentIds(input.agentIds, context) })), (input.filters != null && { filters: serializeAws_json1_1Filters(input.filters, context) })), (input.maxResults != null && { maxResults: input.maxResults })), (input.nextToken != null && { nextToken: input.nextToken }));
|
|
2180
2172
|
};
|
|
2181
2173
|
var serializeAws_json1_1DescribeConfigurationsRequest = function (input, context) {
|
|
2182
|
-
return __assign({}, (input.configurationIds
|
|
2183
|
-
input.configurationIds !== null && {
|
|
2174
|
+
return __assign({}, (input.configurationIds != null && {
|
|
2184
2175
|
configurationIds: serializeAws_json1_1ConfigurationIdList(input.configurationIds, context),
|
|
2185
2176
|
}));
|
|
2186
2177
|
};
|
|
2187
2178
|
var serializeAws_json1_1DescribeContinuousExportsRequest = function (input, context) {
|
|
2188
|
-
return __assign(__assign(__assign({}, (input.exportIds
|
|
2189
|
-
input.exportIds !== null && { exportIds: serializeAws_json1_1ContinuousExportIds(input.exportIds, context) })), (input.maxResults !== undefined && input.maxResults !== null && { maxResults: input.maxResults })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }));
|
|
2179
|
+
return __assign(__assign(__assign({}, (input.exportIds != null && { exportIds: serializeAws_json1_1ContinuousExportIds(input.exportIds, context) })), (input.maxResults != null && { maxResults: input.maxResults })), (input.nextToken != null && { nextToken: input.nextToken }));
|
|
2190
2180
|
};
|
|
2191
2181
|
var serializeAws_json1_1DescribeExportConfigurationsRequest = function (input, context) {
|
|
2192
|
-
return __assign(__assign(__assign({}, (input.exportIds
|
|
2193
|
-
input.exportIds !== null && { exportIds: serializeAws_json1_1ExportIds(input.exportIds, context) })), (input.maxResults !== undefined && input.maxResults !== null && { maxResults: input.maxResults })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }));
|
|
2182
|
+
return __assign(__assign(__assign({}, (input.exportIds != null && { exportIds: serializeAws_json1_1ExportIds(input.exportIds, context) })), (input.maxResults != null && { maxResults: input.maxResults })), (input.nextToken != null && { nextToken: input.nextToken }));
|
|
2194
2183
|
};
|
|
2195
2184
|
var serializeAws_json1_1DescribeExportTasksRequest = function (input, context) {
|
|
2196
|
-
return __assign(__assign(__assign(__assign({}, (input.exportIds
|
|
2197
|
-
input.exportIds !== null && { exportIds: serializeAws_json1_1ExportIds(input.exportIds, context) })), (input.filters !== undefined &&
|
|
2198
|
-
input.filters !== null && { filters: serializeAws_json1_1ExportFilters(input.filters, context) })), (input.maxResults !== undefined && input.maxResults !== null && { maxResults: input.maxResults })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }));
|
|
2185
|
+
return __assign(__assign(__assign(__assign({}, (input.exportIds != null && { exportIds: serializeAws_json1_1ExportIds(input.exportIds, context) })), (input.filters != null && { filters: serializeAws_json1_1ExportFilters(input.filters, context) })), (input.maxResults != null && { maxResults: input.maxResults })), (input.nextToken != null && { nextToken: input.nextToken }));
|
|
2199
2186
|
};
|
|
2200
2187
|
var serializeAws_json1_1DescribeImportTasksFilterList = function (input, context) {
|
|
2201
2188
|
return input
|
|
@@ -2208,17 +2195,15 @@ var serializeAws_json1_1DescribeImportTasksFilterList = function (input, context
|
|
|
2208
2195
|
});
|
|
2209
2196
|
};
|
|
2210
2197
|
var serializeAws_json1_1DescribeImportTasksRequest = function (input, context) {
|
|
2211
|
-
return __assign(__assign(__assign({}, (input.filters
|
|
2212
|
-
|
|
2198
|
+
return __assign(__assign(__assign({}, (input.filters != null && {
|
|
2199
|
+
filters: serializeAws_json1_1DescribeImportTasksFilterList(input.filters, context),
|
|
2200
|
+
})), (input.maxResults != null && { maxResults: input.maxResults })), (input.nextToken != null && { nextToken: input.nextToken }));
|
|
2213
2201
|
};
|
|
2214
2202
|
var serializeAws_json1_1DescribeTagsRequest = function (input, context) {
|
|
2215
|
-
return __assign(__assign(__assign({}, (input.filters
|
|
2216
|
-
input.filters !== null && { filters: serializeAws_json1_1TagFilters(input.filters, context) })), (input.maxResults !== undefined && input.maxResults !== null && { maxResults: input.maxResults })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken }));
|
|
2203
|
+
return __assign(__assign(__assign({}, (input.filters != null && { filters: serializeAws_json1_1TagFilters(input.filters, context) })), (input.maxResults != null && { maxResults: input.maxResults })), (input.nextToken != null && { nextToken: input.nextToken }));
|
|
2217
2204
|
};
|
|
2218
2205
|
var serializeAws_json1_1DisassociateConfigurationItemsFromApplicationRequest = function (input, context) {
|
|
2219
|
-
return __assign(__assign({}, (input.applicationConfigurationId
|
|
2220
|
-
input.applicationConfigurationId !== null && { applicationConfigurationId: input.applicationConfigurationId })), (input.configurationIds !== undefined &&
|
|
2221
|
-
input.configurationIds !== null && {
|
|
2206
|
+
return __assign(__assign({}, (input.applicationConfigurationId != null && { applicationConfigurationId: input.applicationConfigurationId })), (input.configurationIds != null && {
|
|
2222
2207
|
configurationIds: serializeAws_json1_1ConfigurationIdList(input.configurationIds, context),
|
|
2223
2208
|
}));
|
|
2224
2209
|
};
|
|
@@ -2233,8 +2218,7 @@ var serializeAws_json1_1ExportDataFormats = function (input, context) {
|
|
|
2233
2218
|
});
|
|
2234
2219
|
};
|
|
2235
2220
|
var serializeAws_json1_1ExportFilter = function (input, context) {
|
|
2236
|
-
return __assign(__assign(__assign({}, (input.condition
|
|
2237
|
-
input.values !== null && { values: serializeAws_json1_1FilterValues(input.values, context) }));
|
|
2221
|
+
return __assign(__assign(__assign({}, (input.condition != null && { condition: input.condition })), (input.name != null && { name: input.name })), (input.values != null && { values: serializeAws_json1_1FilterValues(input.values, context) }));
|
|
2238
2222
|
};
|
|
2239
2223
|
var serializeAws_json1_1ExportFilters = function (input, context) {
|
|
2240
2224
|
return input
|
|
@@ -2257,8 +2241,7 @@ var serializeAws_json1_1ExportIds = function (input, context) {
|
|
|
2257
2241
|
});
|
|
2258
2242
|
};
|
|
2259
2243
|
var serializeAws_json1_1Filter = function (input, context) {
|
|
2260
|
-
return __assign(__assign(__assign({}, (input.condition
|
|
2261
|
-
input.values !== null && { values: serializeAws_json1_1FilterValues(input.values, context) }));
|
|
2244
|
+
return __assign(__assign(__assign({}, (input.condition != null && { condition: input.condition })), (input.name != null && { name: input.name })), (input.values != null && { values: serializeAws_json1_1FilterValues(input.values, context) }));
|
|
2262
2245
|
};
|
|
2263
2246
|
var serializeAws_json1_1Filters = function (input, context) {
|
|
2264
2247
|
return input
|
|
@@ -2284,8 +2267,7 @@ var serializeAws_json1_1GetDiscoverySummaryRequest = function (input, context) {
|
|
|
2284
2267
|
return {};
|
|
2285
2268
|
};
|
|
2286
2269
|
var serializeAws_json1_1ImportTaskFilter = function (input, context) {
|
|
2287
|
-
return __assign(__assign({}, (input.name
|
|
2288
|
-
input.values !== null && { values: serializeAws_json1_1ImportTaskFilterValueList(input.values, context) }));
|
|
2270
|
+
return __assign(__assign({}, (input.name != null && { name: input.name })), (input.values != null && { values: serializeAws_json1_1ImportTaskFilterValueList(input.values, context) }));
|
|
2289
2271
|
};
|
|
2290
2272
|
var serializeAws_json1_1ImportTaskFilterValueList = function (input, context) {
|
|
2291
2273
|
return input
|
|
@@ -2298,21 +2280,15 @@ var serializeAws_json1_1ImportTaskFilterValueList = function (input, context) {
|
|
|
2298
2280
|
});
|
|
2299
2281
|
};
|
|
2300
2282
|
var serializeAws_json1_1ListConfigurationsRequest = function (input, context) {
|
|
2301
|
-
return __assign(__assign(__assign(__assign(__assign({}, (input.configurationType
|
|
2302
|
-
input.configurationType !== null && { configurationType: input.configurationType })), (input.filters !== undefined &&
|
|
2303
|
-
input.filters !== null && { filters: serializeAws_json1_1Filters(input.filters, context) })), (input.maxResults !== undefined && input.maxResults !== null && { maxResults: input.maxResults })), (input.nextToken !== undefined && input.nextToken !== null && { nextToken: input.nextToken })), (input.orderBy !== undefined &&
|
|
2304
|
-
input.orderBy !== null && { orderBy: serializeAws_json1_1OrderByList(input.orderBy, context) }));
|
|
2283
|
+
return __assign(__assign(__assign(__assign(__assign({}, (input.configurationType != null && { configurationType: input.configurationType })), (input.filters != null && { filters: serializeAws_json1_1Filters(input.filters, context) })), (input.maxResults != null && { maxResults: input.maxResults })), (input.nextToken != null && { nextToken: input.nextToken })), (input.orderBy != null && { orderBy: serializeAws_json1_1OrderByList(input.orderBy, context) }));
|
|
2305
2284
|
};
|
|
2306
2285
|
var serializeAws_json1_1ListServerNeighborsRequest = function (input, context) {
|
|
2307
|
-
return __assign(__assign(__assign(__assign(__assign({}, (input.configurationId
|
|
2308
|
-
input.configurationId !== null && { configurationId: input.configurationId })), (input.maxResults !== undefined && input.maxResults !== null && { maxResults: input.maxResults })), (input.neighborConfigurationIds !== undefined &&
|
|
2309
|
-
input.neighborConfigurationIds !== null && {
|
|
2286
|
+
return __assign(__assign(__assign(__assign(__assign({}, (input.configurationId != null && { configurationId: input.configurationId })), (input.maxResults != null && { maxResults: input.maxResults })), (input.neighborConfigurationIds != null && {
|
|
2310
2287
|
neighborConfigurationIds: serializeAws_json1_1ConfigurationIdList(input.neighborConfigurationIds, context),
|
|
2311
|
-
})), (input.nextToken
|
|
2312
|
-
input.portInformationNeeded !== null && { portInformationNeeded: input.portInformationNeeded }));
|
|
2288
|
+
})), (input.nextToken != null && { nextToken: input.nextToken })), (input.portInformationNeeded != null && { portInformationNeeded: input.portInformationNeeded }));
|
|
2313
2289
|
};
|
|
2314
2290
|
var serializeAws_json1_1OrderByElement = function (input, context) {
|
|
2315
|
-
return __assign(__assign({}, (input.fieldName
|
|
2291
|
+
return __assign(__assign({}, (input.fieldName != null && { fieldName: input.fieldName })), (input.sortOrder != null && { sortOrder: input.sortOrder }));
|
|
2316
2292
|
};
|
|
2317
2293
|
var serializeAws_json1_1OrderByList = function (input, context) {
|
|
2318
2294
|
return input
|
|
@@ -2328,35 +2304,28 @@ var serializeAws_json1_1StartContinuousExportRequest = function (input, context)
|
|
|
2328
2304
|
return {};
|
|
2329
2305
|
};
|
|
2330
2306
|
var serializeAws_json1_1StartDataCollectionByAgentIdsRequest = function (input, context) {
|
|
2331
|
-
return __assign({}, (input.agentIds
|
|
2332
|
-
input.agentIds !== null && { agentIds: serializeAws_json1_1AgentIds(input.agentIds, context) }));
|
|
2307
|
+
return __assign({}, (input.agentIds != null && { agentIds: serializeAws_json1_1AgentIds(input.agentIds, context) }));
|
|
2333
2308
|
};
|
|
2334
2309
|
var serializeAws_json1_1StartExportTaskRequest = function (input, context) {
|
|
2335
|
-
return __assign(__assign(__assign(__assign({}, (input.endTime
|
|
2336
|
-
input.endTime !== null && { endTime: Math.round(input.endTime.getTime() / 1000) })), (input.exportDataFormat !== undefined &&
|
|
2337
|
-
input.exportDataFormat !== null && {
|
|
2310
|
+
return __assign(__assign(__assign(__assign({}, (input.endTime != null && { endTime: Math.round(input.endTime.getTime() / 1000) })), (input.exportDataFormat != null && {
|
|
2338
2311
|
exportDataFormat: serializeAws_json1_1ExportDataFormats(input.exportDataFormat, context),
|
|
2339
|
-
})), (input.filters
|
|
2340
|
-
input.filters !== null && { filters: serializeAws_json1_1ExportFilters(input.filters, context) })), (input.startTime !== undefined &&
|
|
2341
|
-
input.startTime !== null && { startTime: Math.round(input.startTime.getTime() / 1000) }));
|
|
2312
|
+
})), (input.filters != null && { filters: serializeAws_json1_1ExportFilters(input.filters, context) })), (input.startTime != null && { startTime: Math.round(input.startTime.getTime() / 1000) }));
|
|
2342
2313
|
};
|
|
2343
2314
|
var serializeAws_json1_1StartImportTaskRequest = function (input, context) {
|
|
2344
2315
|
var _a;
|
|
2345
|
-
return __assign(__assign({ clientRequestToken: (_a = input.clientRequestToken) !== null && _a !== void 0 ? _a : generateIdempotencyToken() }, (input.importUrl
|
|
2316
|
+
return __assign(__assign({ clientRequestToken: (_a = input.clientRequestToken) !== null && _a !== void 0 ? _a : generateIdempotencyToken() }, (input.importUrl != null && { importUrl: input.importUrl })), (input.name != null && { name: input.name }));
|
|
2346
2317
|
};
|
|
2347
2318
|
var serializeAws_json1_1StopContinuousExportRequest = function (input, context) {
|
|
2348
|
-
return __assign({}, (input.exportId
|
|
2319
|
+
return __assign({}, (input.exportId != null && { exportId: input.exportId }));
|
|
2349
2320
|
};
|
|
2350
2321
|
var serializeAws_json1_1StopDataCollectionByAgentIdsRequest = function (input, context) {
|
|
2351
|
-
return __assign({}, (input.agentIds
|
|
2352
|
-
input.agentIds !== null && { agentIds: serializeAws_json1_1AgentIds(input.agentIds, context) }));
|
|
2322
|
+
return __assign({}, (input.agentIds != null && { agentIds: serializeAws_json1_1AgentIds(input.agentIds, context) }));
|
|
2353
2323
|
};
|
|
2354
2324
|
var serializeAws_json1_1Tag = function (input, context) {
|
|
2355
|
-
return __assign(__assign({}, (input.key
|
|
2325
|
+
return __assign(__assign({}, (input.key != null && { key: input.key })), (input.value != null && { value: input.value }));
|
|
2356
2326
|
};
|
|
2357
2327
|
var serializeAws_json1_1TagFilter = function (input, context) {
|
|
2358
|
-
return __assign(__assign({}, (input.name
|
|
2359
|
-
input.values !== null && { values: serializeAws_json1_1FilterValues(input.values, context) }));
|
|
2328
|
+
return __assign(__assign({}, (input.name != null && { name: input.name })), (input.values != null && { values: serializeAws_json1_1FilterValues(input.values, context) }));
|
|
2360
2329
|
};
|
|
2361
2330
|
var serializeAws_json1_1TagFilters = function (input, context) {
|
|
2362
2331
|
return input
|
|
@@ -2389,8 +2358,7 @@ var serializeAws_json1_1ToDeleteIdentifierList = function (input, context) {
|
|
|
2389
2358
|
});
|
|
2390
2359
|
};
|
|
2391
2360
|
var serializeAws_json1_1UpdateApplicationRequest = function (input, context) {
|
|
2392
|
-
return __assign(__assign(__assign({}, (input.configurationId
|
|
2393
|
-
input.configurationId !== null && { configurationId: input.configurationId })), (input.description !== undefined && input.description !== null && { description: input.description })), (input.name !== undefined && input.name !== null && { name: input.name }));
|
|
2361
|
+
return __assign(__assign(__assign({}, (input.configurationId != null && { configurationId: input.configurationId })), (input.description != null && { description: input.description })), (input.name != null && { name: input.name }));
|
|
2394
2362
|
};
|
|
2395
2363
|
var deserializeAws_json1_1AgentConfigurationStatus = function (output, context) {
|
|
2396
2364
|
return {
|
|
@@ -2413,7 +2381,7 @@ var deserializeAws_json1_1AgentConfigurationStatusList = function (output, conte
|
|
|
2413
2381
|
var deserializeAws_json1_1AgentInfo = function (output, context) {
|
|
2414
2382
|
return {
|
|
2415
2383
|
agentId: __expectString(output.agentId),
|
|
2416
|
-
agentNetworkInfoList: output.agentNetworkInfoList
|
|
2384
|
+
agentNetworkInfoList: output.agentNetworkInfoList != null
|
|
2417
2385
|
? deserializeAws_json1_1AgentNetworkInfoList(output.agentNetworkInfoList, context)
|
|
2418
2386
|
: undefined,
|
|
2419
2387
|
agentType: __expectString(output.agentType),
|
|
@@ -2482,9 +2450,7 @@ var deserializeAws_json1_1BatchDeleteImportDataErrorList = function (output, con
|
|
|
2482
2450
|
};
|
|
2483
2451
|
var deserializeAws_json1_1BatchDeleteImportDataResponse = function (output, context) {
|
|
2484
2452
|
return {
|
|
2485
|
-
errors: output.errors
|
|
2486
|
-
? deserializeAws_json1_1BatchDeleteImportDataErrorList(output.errors, context)
|
|
2487
|
-
: undefined,
|
|
2453
|
+
errors: output.errors != null ? deserializeAws_json1_1BatchDeleteImportDataErrorList(output.errors, context) : undefined,
|
|
2488
2454
|
};
|
|
2489
2455
|
};
|
|
2490
2456
|
var deserializeAws_json1_1Configuration = function (output, context) {
|
|
@@ -2513,7 +2479,7 @@ var deserializeAws_json1_1ConfigurationTag = function (output, context) {
|
|
|
2513
2479
|
configurationId: __expectString(output.configurationId),
|
|
2514
2480
|
configurationType: __expectString(output.configurationType),
|
|
2515
2481
|
key: __expectString(output.key),
|
|
2516
|
-
timeOfCreation: output.timeOfCreation
|
|
2482
|
+
timeOfCreation: output.timeOfCreation != null
|
|
2517
2483
|
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.timeOfCreation)))
|
|
2518
2484
|
: undefined,
|
|
2519
2485
|
value: __expectString(output.value),
|
|
@@ -2540,17 +2506,13 @@ var deserializeAws_json1_1ContinuousExportDescription = function (output, contex
|
|
|
2540
2506
|
dataSource: __expectString(output.dataSource),
|
|
2541
2507
|
exportId: __expectString(output.exportId),
|
|
2542
2508
|
s3Bucket: __expectString(output.s3Bucket),
|
|
2543
|
-
schemaStorageConfig: output.schemaStorageConfig
|
|
2509
|
+
schemaStorageConfig: output.schemaStorageConfig != null
|
|
2544
2510
|
? deserializeAws_json1_1SchemaStorageConfig(output.schemaStorageConfig, context)
|
|
2545
2511
|
: undefined,
|
|
2546
|
-
startTime: output.startTime
|
|
2547
|
-
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.startTime)))
|
|
2548
|
-
: undefined,
|
|
2512
|
+
startTime: output.startTime != null ? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.startTime))) : undefined,
|
|
2549
2513
|
status: __expectString(output.status),
|
|
2550
2514
|
statusDetail: __expectString(output.statusDetail),
|
|
2551
|
-
stopTime: output.stopTime
|
|
2552
|
-
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.stopTime)))
|
|
2553
|
-
: undefined,
|
|
2515
|
+
stopTime: output.stopTime != null ? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.stopTime))) : undefined,
|
|
2554
2516
|
};
|
|
2555
2517
|
};
|
|
2556
2518
|
var deserializeAws_json1_1ContinuousExportDescriptions = function (output, context) {
|
|
@@ -2613,9 +2575,7 @@ var deserializeAws_json1_1DeleteTagsResponse = function (output, context) {
|
|
|
2613
2575
|
};
|
|
2614
2576
|
var deserializeAws_json1_1DescribeAgentsResponse = function (output, context) {
|
|
2615
2577
|
return {
|
|
2616
|
-
agentsInfo: output.agentsInfo
|
|
2617
|
-
? deserializeAws_json1_1AgentsInfo(output.agentsInfo, context)
|
|
2618
|
-
: undefined,
|
|
2578
|
+
agentsInfo: output.agentsInfo != null ? deserializeAws_json1_1AgentsInfo(output.agentsInfo, context) : undefined,
|
|
2619
2579
|
nextToken: __expectString(output.nextToken),
|
|
2620
2580
|
};
|
|
2621
2581
|
};
|
|
@@ -2642,14 +2602,14 @@ var deserializeAws_json1_1DescribeConfigurationsAttributes = function (output, c
|
|
|
2642
2602
|
};
|
|
2643
2603
|
var deserializeAws_json1_1DescribeConfigurationsResponse = function (output, context) {
|
|
2644
2604
|
return {
|
|
2645
|
-
configurations: output.configurations
|
|
2605
|
+
configurations: output.configurations != null
|
|
2646
2606
|
? deserializeAws_json1_1DescribeConfigurationsAttributes(output.configurations, context)
|
|
2647
2607
|
: undefined,
|
|
2648
2608
|
};
|
|
2649
2609
|
};
|
|
2650
2610
|
var deserializeAws_json1_1DescribeContinuousExportsResponse = function (output, context) {
|
|
2651
2611
|
return {
|
|
2652
|
-
descriptions: output.descriptions
|
|
2612
|
+
descriptions: output.descriptions != null
|
|
2653
2613
|
? deserializeAws_json1_1ContinuousExportDescriptions(output.descriptions, context)
|
|
2654
2614
|
: undefined,
|
|
2655
2615
|
nextToken: __expectString(output.nextToken),
|
|
@@ -2657,34 +2617,26 @@ var deserializeAws_json1_1DescribeContinuousExportsResponse = function (output,
|
|
|
2657
2617
|
};
|
|
2658
2618
|
var deserializeAws_json1_1DescribeExportConfigurationsResponse = function (output, context) {
|
|
2659
2619
|
return {
|
|
2660
|
-
exportsInfo: output.exportsInfo
|
|
2661
|
-
? deserializeAws_json1_1ExportsInfo(output.exportsInfo, context)
|
|
2662
|
-
: undefined,
|
|
2620
|
+
exportsInfo: output.exportsInfo != null ? deserializeAws_json1_1ExportsInfo(output.exportsInfo, context) : undefined,
|
|
2663
2621
|
nextToken: __expectString(output.nextToken),
|
|
2664
2622
|
};
|
|
2665
2623
|
};
|
|
2666
2624
|
var deserializeAws_json1_1DescribeExportTasksResponse = function (output, context) {
|
|
2667
2625
|
return {
|
|
2668
|
-
exportsInfo: output.exportsInfo
|
|
2669
|
-
? deserializeAws_json1_1ExportsInfo(output.exportsInfo, context)
|
|
2670
|
-
: undefined,
|
|
2626
|
+
exportsInfo: output.exportsInfo != null ? deserializeAws_json1_1ExportsInfo(output.exportsInfo, context) : undefined,
|
|
2671
2627
|
nextToken: __expectString(output.nextToken),
|
|
2672
2628
|
};
|
|
2673
2629
|
};
|
|
2674
2630
|
var deserializeAws_json1_1DescribeImportTasksResponse = function (output, context) {
|
|
2675
2631
|
return {
|
|
2676
2632
|
nextToken: __expectString(output.nextToken),
|
|
2677
|
-
tasks: output.tasks
|
|
2678
|
-
? deserializeAws_json1_1ImportTaskList(output.tasks, context)
|
|
2679
|
-
: undefined,
|
|
2633
|
+
tasks: output.tasks != null ? deserializeAws_json1_1ImportTaskList(output.tasks, context) : undefined,
|
|
2680
2634
|
};
|
|
2681
2635
|
};
|
|
2682
2636
|
var deserializeAws_json1_1DescribeTagsResponse = function (output, context) {
|
|
2683
2637
|
return {
|
|
2684
2638
|
nextToken: __expectString(output.nextToken),
|
|
2685
|
-
tags: output.tags
|
|
2686
|
-
? deserializeAws_json1_1ConfigurationTagSet(output.tags, context)
|
|
2687
|
-
: undefined,
|
|
2639
|
+
tags: output.tags != null ? deserializeAws_json1_1ConfigurationTagSet(output.tags, context) : undefined,
|
|
2688
2640
|
};
|
|
2689
2641
|
};
|
|
2690
2642
|
var deserializeAws_json1_1DisassociateConfigurationItemsFromApplicationResponse = function (output, context) {
|
|
@@ -2699,15 +2651,15 @@ var deserializeAws_json1_1ExportInfo = function (output, context) {
|
|
|
2699
2651
|
return {
|
|
2700
2652
|
configurationsDownloadUrl: __expectString(output.configurationsDownloadUrl),
|
|
2701
2653
|
exportId: __expectString(output.exportId),
|
|
2702
|
-
exportRequestTime: output.exportRequestTime
|
|
2654
|
+
exportRequestTime: output.exportRequestTime != null
|
|
2703
2655
|
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.exportRequestTime)))
|
|
2704
2656
|
: undefined,
|
|
2705
2657
|
exportStatus: __expectString(output.exportStatus),
|
|
2706
2658
|
isTruncated: __expectBoolean(output.isTruncated),
|
|
2707
|
-
requestedEndTime: output.requestedEndTime
|
|
2659
|
+
requestedEndTime: output.requestedEndTime != null
|
|
2708
2660
|
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.requestedEndTime)))
|
|
2709
2661
|
: undefined,
|
|
2710
|
-
requestedStartTime: output.requestedStartTime
|
|
2662
|
+
requestedStartTime: output.requestedStartTime != null
|
|
2711
2663
|
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.requestedStartTime)))
|
|
2712
2664
|
: undefined,
|
|
2713
2665
|
statusMessage: __expectString(output.statusMessage),
|
|
@@ -2726,14 +2678,12 @@ var deserializeAws_json1_1ExportsInfo = function (output, context) {
|
|
|
2726
2678
|
};
|
|
2727
2679
|
var deserializeAws_json1_1GetDiscoverySummaryResponse = function (output, context) {
|
|
2728
2680
|
return {
|
|
2729
|
-
agentSummary: output.agentSummary
|
|
2730
|
-
? deserializeAws_json1_1CustomerAgentInfo(output.agentSummary, context)
|
|
2731
|
-
: undefined,
|
|
2681
|
+
agentSummary: output.agentSummary != null ? deserializeAws_json1_1CustomerAgentInfo(output.agentSummary, context) : undefined,
|
|
2732
2682
|
applications: __expectLong(output.applications),
|
|
2733
|
-
connectorSummary: output.connectorSummary
|
|
2683
|
+
connectorSummary: output.connectorSummary != null
|
|
2734
2684
|
? deserializeAws_json1_1CustomerConnectorInfo(output.connectorSummary, context)
|
|
2735
2685
|
: undefined,
|
|
2736
|
-
meCollectorSummary: output.meCollectorSummary
|
|
2686
|
+
meCollectorSummary: output.meCollectorSummary != null
|
|
2737
2687
|
? deserializeAws_json1_1CustomerMeCollectorInfo(output.meCollectorSummary, context)
|
|
2738
2688
|
: undefined,
|
|
2739
2689
|
servers: __expectLong(output.servers),
|
|
@@ -2752,13 +2702,13 @@ var deserializeAws_json1_1ImportTask = function (output, context) {
|
|
|
2752
2702
|
applicationImportSuccess: __expectInt32(output.applicationImportSuccess),
|
|
2753
2703
|
clientRequestToken: __expectString(output.clientRequestToken),
|
|
2754
2704
|
errorsAndFailedEntriesZip: __expectString(output.errorsAndFailedEntriesZip),
|
|
2755
|
-
importCompletionTime: output.importCompletionTime
|
|
2705
|
+
importCompletionTime: output.importCompletionTime != null
|
|
2756
2706
|
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.importCompletionTime)))
|
|
2757
2707
|
: undefined,
|
|
2758
|
-
importDeletedTime: output.importDeletedTime
|
|
2708
|
+
importDeletedTime: output.importDeletedTime != null
|
|
2759
2709
|
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.importDeletedTime)))
|
|
2760
2710
|
: undefined,
|
|
2761
|
-
importRequestTime: output.importRequestTime
|
|
2711
|
+
importRequestTime: output.importRequestTime != null
|
|
2762
2712
|
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.importRequestTime)))
|
|
2763
2713
|
: undefined,
|
|
2764
2714
|
importTaskId: __expectString(output.importTaskId),
|
|
@@ -2792,18 +2742,14 @@ var deserializeAws_json1_1InvalidParameterValueException = function (output, con
|
|
|
2792
2742
|
};
|
|
2793
2743
|
var deserializeAws_json1_1ListConfigurationsResponse = function (output, context) {
|
|
2794
2744
|
return {
|
|
2795
|
-
configurations: output.configurations
|
|
2796
|
-
? deserializeAws_json1_1Configurations(output.configurations, context)
|
|
2797
|
-
: undefined,
|
|
2745
|
+
configurations: output.configurations != null ? deserializeAws_json1_1Configurations(output.configurations, context) : undefined,
|
|
2798
2746
|
nextToken: __expectString(output.nextToken),
|
|
2799
2747
|
};
|
|
2800
2748
|
};
|
|
2801
2749
|
var deserializeAws_json1_1ListServerNeighborsResponse = function (output, context) {
|
|
2802
2750
|
return {
|
|
2803
2751
|
knownDependencyCount: __expectLong(output.knownDependencyCount),
|
|
2804
|
-
neighbors: output.neighbors
|
|
2805
|
-
? deserializeAws_json1_1NeighborDetailsList(output.neighbors, context)
|
|
2806
|
-
: undefined,
|
|
2752
|
+
neighbors: output.neighbors != null ? deserializeAws_json1_1NeighborDetailsList(output.neighbors, context) : undefined,
|
|
2807
2753
|
nextToken: __expectString(output.nextToken),
|
|
2808
2754
|
};
|
|
2809
2755
|
};
|
|
@@ -2862,17 +2808,15 @@ var deserializeAws_json1_1StartContinuousExportResponse = function (output, cont
|
|
|
2862
2808
|
dataSource: __expectString(output.dataSource),
|
|
2863
2809
|
exportId: __expectString(output.exportId),
|
|
2864
2810
|
s3Bucket: __expectString(output.s3Bucket),
|
|
2865
|
-
schemaStorageConfig: output.schemaStorageConfig
|
|
2811
|
+
schemaStorageConfig: output.schemaStorageConfig != null
|
|
2866
2812
|
? deserializeAws_json1_1SchemaStorageConfig(output.schemaStorageConfig, context)
|
|
2867
2813
|
: undefined,
|
|
2868
|
-
startTime: output.startTime
|
|
2869
|
-
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.startTime)))
|
|
2870
|
-
: undefined,
|
|
2814
|
+
startTime: output.startTime != null ? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.startTime))) : undefined,
|
|
2871
2815
|
};
|
|
2872
2816
|
};
|
|
2873
2817
|
var deserializeAws_json1_1StartDataCollectionByAgentIdsResponse = function (output, context) {
|
|
2874
2818
|
return {
|
|
2875
|
-
agentsConfigurationStatus: output.agentsConfigurationStatus
|
|
2819
|
+
agentsConfigurationStatus: output.agentsConfigurationStatus != null
|
|
2876
2820
|
? deserializeAws_json1_1AgentConfigurationStatusList(output.agentsConfigurationStatus, context)
|
|
2877
2821
|
: undefined,
|
|
2878
2822
|
};
|
|
@@ -2884,24 +2828,18 @@ var deserializeAws_json1_1StartExportTaskResponse = function (output, context) {
|
|
|
2884
2828
|
};
|
|
2885
2829
|
var deserializeAws_json1_1StartImportTaskResponse = function (output, context) {
|
|
2886
2830
|
return {
|
|
2887
|
-
task: output.task
|
|
2888
|
-
? deserializeAws_json1_1ImportTask(output.task, context)
|
|
2889
|
-
: undefined,
|
|
2831
|
+
task: output.task != null ? deserializeAws_json1_1ImportTask(output.task, context) : undefined,
|
|
2890
2832
|
};
|
|
2891
2833
|
};
|
|
2892
2834
|
var deserializeAws_json1_1StopContinuousExportResponse = function (output, context) {
|
|
2893
2835
|
return {
|
|
2894
|
-
startTime: output.startTime
|
|
2895
|
-
|
|
2896
|
-
: undefined,
|
|
2897
|
-
stopTime: output.stopTime !== undefined && output.stopTime !== null
|
|
2898
|
-
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.stopTime)))
|
|
2899
|
-
: undefined,
|
|
2836
|
+
startTime: output.startTime != null ? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.startTime))) : undefined,
|
|
2837
|
+
stopTime: output.stopTime != null ? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.stopTime))) : undefined,
|
|
2900
2838
|
};
|
|
2901
2839
|
};
|
|
2902
2840
|
var deserializeAws_json1_1StopDataCollectionByAgentIdsResponse = function (output, context) {
|
|
2903
2841
|
return {
|
|
2904
|
-
agentsConfigurationStatus: output.agentsConfigurationStatus
|
|
2842
|
+
agentsConfigurationStatus: output.agentsConfigurationStatus != null
|
|
2905
2843
|
? deserializeAws_json1_1AgentConfigurationStatusList(output.agentsConfigurationStatus, context)
|
|
2906
2844
|
: undefined,
|
|
2907
2845
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-application-discovery-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Application Discovery Service Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.127.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,35 +18,35 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
32
|
-
"@aws-sdk/middleware-serde": "3.
|
|
33
|
-
"@aws-sdk/middleware-signing": "3.
|
|
34
|
-
"@aws-sdk/middleware-stack": "3.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
36
|
-
"@aws-sdk/node-config-provider": "3.
|
|
37
|
-
"@aws-sdk/node-http-handler": "3.
|
|
38
|
-
"@aws-sdk/protocol-http": "3.
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
40
|
-
"@aws-sdk/types": "3.
|
|
41
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.127.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.127.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.127.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.127.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.127.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.127.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.127.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.127.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.127.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.127.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.127.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.127.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.127.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.127.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.127.0",
|
|
40
|
+
"@aws-sdk/types": "3.127.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.127.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.127.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
52
52
|
"tslib": "^2.3.1",
|