@aws-sdk/client-ssm-quicksetup 3.687.0 → 3.691.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.
|
@@ -7,7 +7,7 @@ import { SSMQuickSetupServiceException as __BaseException } from "./SSMQuickSetu
|
|
|
7
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
8
8
|
readonly name: "AccessDeniedException";
|
|
9
9
|
readonly $fault: "client";
|
|
10
|
-
Message?: string;
|
|
10
|
+
Message?: string | undefined;
|
|
11
11
|
/**
|
|
12
12
|
* @internal
|
|
13
13
|
*/
|
|
@@ -33,24 +33,24 @@ export interface ConfigurationDefinition {
|
|
|
33
33
|
* <p>The version of the Quick Setup type used.</p>
|
|
34
34
|
* @public
|
|
35
35
|
*/
|
|
36
|
-
TypeVersion?: string;
|
|
36
|
+
TypeVersion?: string | undefined;
|
|
37
37
|
/**
|
|
38
38
|
* <p>The name of the IAM role used to deploy local
|
|
39
39
|
* configurations.</p>
|
|
40
40
|
* @public
|
|
41
41
|
*/
|
|
42
|
-
LocalDeploymentExecutionRoleName?: string;
|
|
42
|
+
LocalDeploymentExecutionRoleName?: string | undefined;
|
|
43
43
|
/**
|
|
44
44
|
* <p>The ARN of the IAM role used to administrate local configuration
|
|
45
45
|
* deployments.</p>
|
|
46
46
|
* @public
|
|
47
47
|
*/
|
|
48
|
-
LocalDeploymentAdministrationRoleArn?: string;
|
|
48
|
+
LocalDeploymentAdministrationRoleArn?: string | undefined;
|
|
49
49
|
/**
|
|
50
50
|
* <p>The ID of the configuration definition.</p>
|
|
51
51
|
* @public
|
|
52
52
|
*/
|
|
53
|
-
Id?: string;
|
|
53
|
+
Id?: string | undefined;
|
|
54
54
|
}
|
|
55
55
|
/**
|
|
56
56
|
* <p>Defines the preferences and options for a configuration definition.</p>
|
|
@@ -1450,19 +1450,19 @@ export interface ConfigurationDefinitionInput {
|
|
|
1450
1450
|
* <p>The version of the Quick Setup type to use.</p>
|
|
1451
1451
|
* @public
|
|
1452
1452
|
*/
|
|
1453
|
-
TypeVersion?: string;
|
|
1453
|
+
TypeVersion?: string | undefined;
|
|
1454
1454
|
/**
|
|
1455
1455
|
* <p>The name of the IAM role used to deploy local
|
|
1456
1456
|
* configurations.</p>
|
|
1457
1457
|
* @public
|
|
1458
1458
|
*/
|
|
1459
|
-
LocalDeploymentExecutionRoleName?: string;
|
|
1459
|
+
LocalDeploymentExecutionRoleName?: string | undefined;
|
|
1460
1460
|
/**
|
|
1461
1461
|
* <p>The ARN of the IAM role used to administrate local configuration
|
|
1462
1462
|
* deployments.</p>
|
|
1463
1463
|
* @public
|
|
1464
1464
|
*/
|
|
1465
|
-
LocalDeploymentAdministrationRoleArn?: string;
|
|
1465
|
+
LocalDeploymentAdministrationRoleArn?: string | undefined;
|
|
1466
1466
|
}
|
|
1467
1467
|
/**
|
|
1468
1468
|
* <p>A summarized definition of a Quick Setup configuration definition.</p>
|
|
@@ -1473,23 +1473,23 @@ export interface ConfigurationDefinitionSummary {
|
|
|
1473
1473
|
* <p>The ID of the configuration definition.</p>
|
|
1474
1474
|
* @public
|
|
1475
1475
|
*/
|
|
1476
|
-
Id?: string;
|
|
1476
|
+
Id?: string | undefined;
|
|
1477
1477
|
/**
|
|
1478
1478
|
* <p>The type of the Quick Setup configuration used by the configuration
|
|
1479
1479
|
* definition.</p>
|
|
1480
1480
|
* @public
|
|
1481
1481
|
*/
|
|
1482
|
-
Type?: string;
|
|
1482
|
+
Type?: string | undefined;
|
|
1483
1483
|
/**
|
|
1484
1484
|
* <p>The version of the Quick Setup type used by the configuration definition.</p>
|
|
1485
1485
|
* @public
|
|
1486
1486
|
*/
|
|
1487
|
-
TypeVersion?: string;
|
|
1487
|
+
TypeVersion?: string | undefined;
|
|
1488
1488
|
/**
|
|
1489
1489
|
* <p>The common parameters and values for the configuration definition.</p>
|
|
1490
1490
|
* @public
|
|
1491
1491
|
*/
|
|
1492
|
-
FirstClassParameters?: Record<string, string
|
|
1492
|
+
FirstClassParameters?: Record<string, string> | undefined;
|
|
1493
1493
|
}
|
|
1494
1494
|
/**
|
|
1495
1495
|
* @public
|
|
@@ -1537,12 +1537,12 @@ export interface StatusSummary {
|
|
|
1537
1537
|
* <p>The current status.</p>
|
|
1538
1538
|
* @public
|
|
1539
1539
|
*/
|
|
1540
|
-
Status?: Status;
|
|
1540
|
+
Status?: Status | undefined;
|
|
1541
1541
|
/**
|
|
1542
1542
|
* <p>When applicable, returns an informational message relevant to the current status and status type of the status summary object. We don't recommend implementing parsing logic around this value since the messages returned can vary in format.</p>
|
|
1543
1543
|
* @public
|
|
1544
1544
|
*/
|
|
1545
|
-
StatusMessage?: string;
|
|
1545
|
+
StatusMessage?: string | undefined;
|
|
1546
1546
|
/**
|
|
1547
1547
|
* <p>The datetime stamp when the status was last updated.</p>
|
|
1548
1548
|
* @public
|
|
@@ -1552,7 +1552,7 @@ export interface StatusSummary {
|
|
|
1552
1552
|
* <p>Details about the status.</p>
|
|
1553
1553
|
* @public
|
|
1554
1554
|
*/
|
|
1555
|
-
StatusDetails?: Record<string, string
|
|
1555
|
+
StatusDetails?: Record<string, string> | undefined;
|
|
1556
1556
|
}
|
|
1557
1557
|
/**
|
|
1558
1558
|
* <p>A summary of a Quick Setup configuration manager.</p>
|
|
@@ -1568,12 +1568,12 @@ export interface ConfigurationManagerSummary {
|
|
|
1568
1568
|
* <p>The description of the configuration.</p>
|
|
1569
1569
|
* @public
|
|
1570
1570
|
*/
|
|
1571
|
-
Description?: string;
|
|
1571
|
+
Description?: string | undefined;
|
|
1572
1572
|
/**
|
|
1573
1573
|
* <p>The name of the configuration</p>
|
|
1574
1574
|
* @public
|
|
1575
1575
|
*/
|
|
1576
|
-
Name?: string;
|
|
1576
|
+
Name?: string | undefined;
|
|
1577
1577
|
/**
|
|
1578
1578
|
* <p>Summaries of the state of the configuration manager. These summaries include an
|
|
1579
1579
|
* aggregate of the statuses from the configuration definition associated with the
|
|
@@ -1581,12 +1581,12 @@ export interface ConfigurationManagerSummary {
|
|
|
1581
1581
|
* drift statuses, health checks, and more.</p>
|
|
1582
1582
|
* @public
|
|
1583
1583
|
*/
|
|
1584
|
-
StatusSummaries?: StatusSummary[];
|
|
1584
|
+
StatusSummaries?: StatusSummary[] | undefined;
|
|
1585
1585
|
/**
|
|
1586
1586
|
* <p>A summary of the Quick Setup configuration definition.</p>
|
|
1587
1587
|
* @public
|
|
1588
1588
|
*/
|
|
1589
|
-
ConfigurationDefinitionSummaries?: ConfigurationDefinitionSummary[];
|
|
1589
|
+
ConfigurationDefinitionSummaries?: ConfigurationDefinitionSummary[] | undefined;
|
|
1590
1590
|
}
|
|
1591
1591
|
/**
|
|
1592
1592
|
* <p>Another request is being processed. Wait a few minutes and try again.</p>
|
|
@@ -1595,7 +1595,7 @@ export interface ConfigurationManagerSummary {
|
|
|
1595
1595
|
export declare class ConflictException extends __BaseException {
|
|
1596
1596
|
readonly name: "ConflictException";
|
|
1597
1597
|
readonly $fault: "client";
|
|
1598
|
-
Message?: string;
|
|
1598
|
+
Message?: string | undefined;
|
|
1599
1599
|
/**
|
|
1600
1600
|
* @internal
|
|
1601
1601
|
*/
|
|
@@ -1609,12 +1609,12 @@ export interface CreateConfigurationManagerInput {
|
|
|
1609
1609
|
* <p>A name for the configuration manager.</p>
|
|
1610
1610
|
* @public
|
|
1611
1611
|
*/
|
|
1612
|
-
Name?: string;
|
|
1612
|
+
Name?: string | undefined;
|
|
1613
1613
|
/**
|
|
1614
1614
|
* <p>A description of the configuration manager.</p>
|
|
1615
1615
|
* @public
|
|
1616
1616
|
*/
|
|
1617
|
-
Description?: string;
|
|
1617
|
+
Description?: string | undefined;
|
|
1618
1618
|
/**
|
|
1619
1619
|
* <p>The definition of the Quick Setup configuration that the configuration manager
|
|
1620
1620
|
* deploys.</p>
|
|
@@ -1625,7 +1625,7 @@ export interface CreateConfigurationManagerInput {
|
|
|
1625
1625
|
* <p>Key-value pairs of metadata to assign to the configuration manager.</p>
|
|
1626
1626
|
* @public
|
|
1627
1627
|
*/
|
|
1628
|
-
Tags?: Record<string, string
|
|
1628
|
+
Tags?: Record<string, string> | undefined;
|
|
1629
1629
|
}
|
|
1630
1630
|
/**
|
|
1631
1631
|
* @public
|
|
@@ -1645,7 +1645,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
1645
1645
|
readonly name: "InternalServerException";
|
|
1646
1646
|
readonly $fault: "server";
|
|
1647
1647
|
$retryable: {};
|
|
1648
|
-
Message?: string;
|
|
1648
|
+
Message?: string | undefined;
|
|
1649
1649
|
/**
|
|
1650
1650
|
* @internal
|
|
1651
1651
|
*/
|
|
@@ -1673,7 +1673,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
1673
1673
|
export declare class ValidationException extends __BaseException {
|
|
1674
1674
|
readonly name: "ValidationException";
|
|
1675
1675
|
readonly $fault: "client";
|
|
1676
|
-
Message?: string;
|
|
1676
|
+
Message?: string | undefined;
|
|
1677
1677
|
/**
|
|
1678
1678
|
* @internal
|
|
1679
1679
|
*/
|
|
@@ -1696,7 +1696,7 @@ export interface DeleteConfigurationManagerInput {
|
|
|
1696
1696
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
1697
1697
|
readonly name: "ResourceNotFoundException";
|
|
1698
1698
|
readonly $fault: "client";
|
|
1699
|
-
Message?: string;
|
|
1699
|
+
Message?: string | undefined;
|
|
1700
1700
|
/**
|
|
1701
1701
|
* @internal
|
|
1702
1702
|
*/
|
|
@@ -1741,38 +1741,38 @@ export interface GetConfigurationManagerOutput {
|
|
|
1741
1741
|
* <p>The description of the configuration manager.</p>
|
|
1742
1742
|
* @public
|
|
1743
1743
|
*/
|
|
1744
|
-
Description?: string;
|
|
1744
|
+
Description?: string | undefined;
|
|
1745
1745
|
/**
|
|
1746
1746
|
* <p>The name of the configuration manager.</p>
|
|
1747
1747
|
* @public
|
|
1748
1748
|
*/
|
|
1749
|
-
Name?: string;
|
|
1749
|
+
Name?: string | undefined;
|
|
1750
1750
|
/**
|
|
1751
1751
|
* <p>The datetime stamp when the configuration manager was created.</p>
|
|
1752
1752
|
* @public
|
|
1753
1753
|
*/
|
|
1754
|
-
CreatedAt?: Date;
|
|
1754
|
+
CreatedAt?: Date | undefined;
|
|
1755
1755
|
/**
|
|
1756
1756
|
* <p>The datetime stamp when the configuration manager was last updated.</p>
|
|
1757
1757
|
* @public
|
|
1758
1758
|
*/
|
|
1759
|
-
LastModifiedAt?: Date;
|
|
1759
|
+
LastModifiedAt?: Date | undefined;
|
|
1760
1760
|
/**
|
|
1761
1761
|
* <p>A summary of the state of the configuration manager. This includes deployment
|
|
1762
1762
|
* statuses, association statuses, drift statuses, health checks, and more.</p>
|
|
1763
1763
|
* @public
|
|
1764
1764
|
*/
|
|
1765
|
-
StatusSummaries?: StatusSummary[];
|
|
1765
|
+
StatusSummaries?: StatusSummary[] | undefined;
|
|
1766
1766
|
/**
|
|
1767
1767
|
* <p>The configuration definitions association with the configuration manager.</p>
|
|
1768
1768
|
* @public
|
|
1769
1769
|
*/
|
|
1770
|
-
ConfigurationDefinitions?: ConfigurationDefinition[];
|
|
1770
|
+
ConfigurationDefinitions?: ConfigurationDefinition[] | undefined;
|
|
1771
1771
|
/**
|
|
1772
1772
|
* <p>Key-value pairs of metadata to assign to the configuration manager.</p>
|
|
1773
1773
|
* @public
|
|
1774
1774
|
*/
|
|
1775
|
-
Tags?: Record<string, string
|
|
1775
|
+
Tags?: Record<string, string> | undefined;
|
|
1776
1776
|
}
|
|
1777
1777
|
/**
|
|
1778
1778
|
* <p>Settings configured for Quick Setup.</p>
|
|
@@ -1783,7 +1783,7 @@ export interface ServiceSettings {
|
|
|
1783
1783
|
* <p>The IAM role used to enable Explorer.</p>
|
|
1784
1784
|
* @public
|
|
1785
1785
|
*/
|
|
1786
|
-
ExplorerEnablingRoleArn?: string;
|
|
1786
|
+
ExplorerEnablingRoleArn?: string | undefined;
|
|
1787
1787
|
}
|
|
1788
1788
|
/**
|
|
1789
1789
|
* @public
|
|
@@ -1793,7 +1793,7 @@ export interface GetServiceSettingsOutput {
|
|
|
1793
1793
|
* <p>Returns details about the settings for Quick Setup in the requesting Amazon Web Services account and Amazon Web Services Region.</p>
|
|
1794
1794
|
* @public
|
|
1795
1795
|
*/
|
|
1796
|
-
ServiceSettings?: ServiceSettings;
|
|
1796
|
+
ServiceSettings?: ServiceSettings | undefined;
|
|
1797
1797
|
}
|
|
1798
1798
|
/**
|
|
1799
1799
|
* @public
|
|
@@ -1803,18 +1803,18 @@ export interface ListConfigurationManagersInput {
|
|
|
1803
1803
|
* <p>The token to use when requesting a specific set of items from a list.</p>
|
|
1804
1804
|
* @public
|
|
1805
1805
|
*/
|
|
1806
|
-
StartingToken?: string;
|
|
1806
|
+
StartingToken?: string | undefined;
|
|
1807
1807
|
/**
|
|
1808
1808
|
* <p>Specifies the maximum number of configuration managers that are returned by the
|
|
1809
1809
|
* request.</p>
|
|
1810
1810
|
* @public
|
|
1811
1811
|
*/
|
|
1812
|
-
MaxItems?: number;
|
|
1812
|
+
MaxItems?: number | undefined;
|
|
1813
1813
|
/**
|
|
1814
1814
|
* <p>Filters the results returned by the request.</p>
|
|
1815
1815
|
* @public
|
|
1816
1816
|
*/
|
|
1817
|
-
Filters?: Filter[];
|
|
1817
|
+
Filters?: Filter[] | undefined;
|
|
1818
1818
|
}
|
|
1819
1819
|
/**
|
|
1820
1820
|
* @public
|
|
@@ -1824,13 +1824,13 @@ export interface ListConfigurationManagersOutput {
|
|
|
1824
1824
|
* <p>The configuration managers returned by the request.</p>
|
|
1825
1825
|
* @public
|
|
1826
1826
|
*/
|
|
1827
|
-
ConfigurationManagersList?: ConfigurationManagerSummary[];
|
|
1827
|
+
ConfigurationManagersList?: ConfigurationManagerSummary[] | undefined;
|
|
1828
1828
|
/**
|
|
1829
1829
|
* <p>The token to use when requesting the next set of configuration managers. If there
|
|
1830
1830
|
* are no additional operations to return, the string is empty.</p>
|
|
1831
1831
|
* @public
|
|
1832
1832
|
*/
|
|
1833
|
-
NextToken?: string;
|
|
1833
|
+
NextToken?: string | undefined;
|
|
1834
1834
|
}
|
|
1835
1835
|
/**
|
|
1836
1836
|
* <p>Information about the Quick Setup type.</p>
|
|
@@ -1841,12 +1841,12 @@ export interface QuickSetupTypeOutput {
|
|
|
1841
1841
|
* <p>The type of the Quick Setup configuration.</p>
|
|
1842
1842
|
* @public
|
|
1843
1843
|
*/
|
|
1844
|
-
Type?: string;
|
|
1844
|
+
Type?: string | undefined;
|
|
1845
1845
|
/**
|
|
1846
1846
|
* <p>The latest version number of the configuration.</p>
|
|
1847
1847
|
* @public
|
|
1848
1848
|
*/
|
|
1849
|
-
LatestVersion?: string;
|
|
1849
|
+
LatestVersion?: string | undefined;
|
|
1850
1850
|
}
|
|
1851
1851
|
/**
|
|
1852
1852
|
* @public
|
|
@@ -1856,7 +1856,7 @@ export interface ListQuickSetupTypesOutput {
|
|
|
1856
1856
|
* <p>An array of Quick Setup types.</p>
|
|
1857
1857
|
* @public
|
|
1858
1858
|
*/
|
|
1859
|
-
QuickSetupTypeList?: QuickSetupTypeOutput[];
|
|
1859
|
+
QuickSetupTypeList?: QuickSetupTypeOutput[] | undefined;
|
|
1860
1860
|
}
|
|
1861
1861
|
/**
|
|
1862
1862
|
* @public
|
|
@@ -1877,12 +1877,12 @@ export interface TagEntry {
|
|
|
1877
1877
|
* <p>The key for the tag.</p>
|
|
1878
1878
|
* @public
|
|
1879
1879
|
*/
|
|
1880
|
-
Key?: string;
|
|
1880
|
+
Key?: string | undefined;
|
|
1881
1881
|
/**
|
|
1882
1882
|
* <p>The value for the tag.</p>
|
|
1883
1883
|
* @public
|
|
1884
1884
|
*/
|
|
1885
|
-
Value?: string;
|
|
1885
|
+
Value?: string | undefined;
|
|
1886
1886
|
}
|
|
1887
1887
|
/**
|
|
1888
1888
|
* @public
|
|
@@ -1892,7 +1892,7 @@ export interface ListTagsForResourceResponse {
|
|
|
1892
1892
|
* <p>Key-value pairs of metadata assigned to the resource.</p>
|
|
1893
1893
|
* @public
|
|
1894
1894
|
*/
|
|
1895
|
-
Tags?: TagEntry[];
|
|
1895
|
+
Tags?: TagEntry[] | undefined;
|
|
1896
1896
|
}
|
|
1897
1897
|
/**
|
|
1898
1898
|
* @public
|
|
@@ -1943,24 +1943,24 @@ export interface UpdateConfigurationDefinitionInput {
|
|
|
1943
1943
|
* <p>The version of the Quick Setup type to use.</p>
|
|
1944
1944
|
* @public
|
|
1945
1945
|
*/
|
|
1946
|
-
TypeVersion?: string;
|
|
1946
|
+
TypeVersion?: string | undefined;
|
|
1947
1947
|
/**
|
|
1948
1948
|
* <p>The parameters for the configuration definition type.</p>
|
|
1949
1949
|
* @public
|
|
1950
1950
|
*/
|
|
1951
|
-
Parameters?: Record<string, string
|
|
1951
|
+
Parameters?: Record<string, string> | undefined;
|
|
1952
1952
|
/**
|
|
1953
1953
|
* <p>The name of the IAM role used to deploy local
|
|
1954
1954
|
* configurations.</p>
|
|
1955
1955
|
* @public
|
|
1956
1956
|
*/
|
|
1957
|
-
LocalDeploymentExecutionRoleName?: string;
|
|
1957
|
+
LocalDeploymentExecutionRoleName?: string | undefined;
|
|
1958
1958
|
/**
|
|
1959
1959
|
* <p>The ARN of the IAM role used to administrate local configuration
|
|
1960
1960
|
* deployments.</p>
|
|
1961
1961
|
* @public
|
|
1962
1962
|
*/
|
|
1963
|
-
LocalDeploymentAdministrationRoleArn?: string;
|
|
1963
|
+
LocalDeploymentAdministrationRoleArn?: string | undefined;
|
|
1964
1964
|
}
|
|
1965
1965
|
/**
|
|
1966
1966
|
* @public
|
|
@@ -1975,12 +1975,12 @@ export interface UpdateConfigurationManagerInput {
|
|
|
1975
1975
|
* <p>A name for the configuration manager.</p>
|
|
1976
1976
|
* @public
|
|
1977
1977
|
*/
|
|
1978
|
-
Name?: string;
|
|
1978
|
+
Name?: string | undefined;
|
|
1979
1979
|
/**
|
|
1980
1980
|
* <p>A description of the configuration manager.</p>
|
|
1981
1981
|
* @public
|
|
1982
1982
|
*/
|
|
1983
|
-
Description?: string;
|
|
1983
|
+
Description?: string | undefined;
|
|
1984
1984
|
}
|
|
1985
1985
|
/**
|
|
1986
1986
|
* @public
|
|
@@ -1990,7 +1990,7 @@ export interface UpdateServiceSettingsInput {
|
|
|
1990
1990
|
* <p>The IAM role used to enable Explorer.</p>
|
|
1991
1991
|
* @public
|
|
1992
1992
|
*/
|
|
1993
|
-
ExplorerEnablingRoleArn?: string;
|
|
1993
|
+
ExplorerEnablingRoleArn?: string | undefined;
|
|
1994
1994
|
}
|
|
1995
1995
|
/**
|
|
1996
1996
|
* @internal
|
|
@@ -3,7 +3,7 @@ import { SSMQuickSetupServiceException as __BaseException } from "./SSMQuickSetu
|
|
|
3
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
|
-
Message?: string;
|
|
6
|
+
Message?: string | undefined;
|
|
7
7
|
constructor(
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
@@ -11,23 +11,23 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
11
11
|
export interface ConfigurationDefinition {
|
|
12
12
|
Type: string | undefined;
|
|
13
13
|
Parameters: Record<string, string> | undefined;
|
|
14
|
-
TypeVersion?: string;
|
|
15
|
-
LocalDeploymentExecutionRoleName?: string;
|
|
16
|
-
LocalDeploymentAdministrationRoleArn?: string;
|
|
17
|
-
Id?: string;
|
|
14
|
+
TypeVersion?: string | undefined;
|
|
15
|
+
LocalDeploymentExecutionRoleName?: string | undefined;
|
|
16
|
+
LocalDeploymentAdministrationRoleArn?: string | undefined;
|
|
17
|
+
Id?: string | undefined;
|
|
18
18
|
}
|
|
19
19
|
export interface ConfigurationDefinitionInput {
|
|
20
20
|
Type: string | undefined;
|
|
21
21
|
Parameters: Record<string, string> | undefined;
|
|
22
|
-
TypeVersion?: string;
|
|
23
|
-
LocalDeploymentExecutionRoleName?: string;
|
|
24
|
-
LocalDeploymentAdministrationRoleArn?: string;
|
|
22
|
+
TypeVersion?: string | undefined;
|
|
23
|
+
LocalDeploymentExecutionRoleName?: string | undefined;
|
|
24
|
+
LocalDeploymentAdministrationRoleArn?: string | undefined;
|
|
25
25
|
}
|
|
26
26
|
export interface ConfigurationDefinitionSummary {
|
|
27
|
-
Id?: string;
|
|
28
|
-
Type?: string;
|
|
29
|
-
TypeVersion?: string;
|
|
30
|
-
FirstClassParameters?: Record<string, string
|
|
27
|
+
Id?: string | undefined;
|
|
28
|
+
Type?: string | undefined;
|
|
29
|
+
TypeVersion?: string | undefined;
|
|
30
|
+
FirstClassParameters?: Record<string, string> | undefined;
|
|
31
31
|
}
|
|
32
32
|
export declare const Status: {
|
|
33
33
|
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
@@ -49,29 +49,31 @@ export declare const StatusType: {
|
|
|
49
49
|
export type StatusType = (typeof StatusType)[keyof typeof StatusType];
|
|
50
50
|
export interface StatusSummary {
|
|
51
51
|
StatusType: StatusType | undefined;
|
|
52
|
-
Status?: Status;
|
|
53
|
-
StatusMessage?: string;
|
|
52
|
+
Status?: Status | undefined;
|
|
53
|
+
StatusMessage?: string | undefined;
|
|
54
54
|
LastUpdatedAt: Date | undefined;
|
|
55
|
-
StatusDetails?: Record<string, string
|
|
55
|
+
StatusDetails?: Record<string, string> | undefined;
|
|
56
56
|
}
|
|
57
57
|
export interface ConfigurationManagerSummary {
|
|
58
58
|
ManagerArn: string | undefined;
|
|
59
|
-
Description?: string;
|
|
60
|
-
Name?: string;
|
|
61
|
-
StatusSummaries?: StatusSummary[];
|
|
62
|
-
ConfigurationDefinitionSummaries?:
|
|
59
|
+
Description?: string | undefined;
|
|
60
|
+
Name?: string | undefined;
|
|
61
|
+
StatusSummaries?: StatusSummary[] | undefined;
|
|
62
|
+
ConfigurationDefinitionSummaries?:
|
|
63
|
+
| ConfigurationDefinitionSummary[]
|
|
64
|
+
| undefined;
|
|
63
65
|
}
|
|
64
66
|
export declare class ConflictException extends __BaseException {
|
|
65
67
|
readonly name: "ConflictException";
|
|
66
68
|
readonly $fault: "client";
|
|
67
|
-
Message?: string;
|
|
69
|
+
Message?: string | undefined;
|
|
68
70
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
69
71
|
}
|
|
70
72
|
export interface CreateConfigurationManagerInput {
|
|
71
|
-
Name?: string;
|
|
72
|
-
Description?: string;
|
|
73
|
+
Name?: string | undefined;
|
|
74
|
+
Description?: string | undefined;
|
|
73
75
|
ConfigurationDefinitions: ConfigurationDefinitionInput[] | undefined;
|
|
74
|
-
Tags?: Record<string, string
|
|
76
|
+
Tags?: Record<string, string> | undefined;
|
|
75
77
|
}
|
|
76
78
|
export interface CreateConfigurationManagerOutput {
|
|
77
79
|
ManagerArn: string | undefined;
|
|
@@ -80,7 +82,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
80
82
|
readonly name: "InternalServerException";
|
|
81
83
|
readonly $fault: "server";
|
|
82
84
|
$retryable: {};
|
|
83
|
-
Message?: string;
|
|
85
|
+
Message?: string | undefined;
|
|
84
86
|
constructor(
|
|
85
87
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
86
88
|
);
|
|
@@ -97,7 +99,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
97
99
|
export declare class ValidationException extends __BaseException {
|
|
98
100
|
readonly name: "ValidationException";
|
|
99
101
|
readonly $fault: "client";
|
|
100
|
-
Message?: string;
|
|
102
|
+
Message?: string | undefined;
|
|
101
103
|
constructor(
|
|
102
104
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
103
105
|
);
|
|
@@ -108,7 +110,7 @@ export interface DeleteConfigurationManagerInput {
|
|
|
108
110
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
109
111
|
readonly name: "ResourceNotFoundException";
|
|
110
112
|
readonly $fault: "client";
|
|
111
|
-
Message?: string;
|
|
113
|
+
Message?: string | undefined;
|
|
112
114
|
constructor(
|
|
113
115
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
114
116
|
);
|
|
@@ -122,45 +124,45 @@ export interface GetConfigurationManagerInput {
|
|
|
122
124
|
}
|
|
123
125
|
export interface GetConfigurationManagerOutput {
|
|
124
126
|
ManagerArn: string | undefined;
|
|
125
|
-
Description?: string;
|
|
126
|
-
Name?: string;
|
|
127
|
-
CreatedAt?: Date;
|
|
128
|
-
LastModifiedAt?: Date;
|
|
129
|
-
StatusSummaries?: StatusSummary[];
|
|
130
|
-
ConfigurationDefinitions?: ConfigurationDefinition[];
|
|
131
|
-
Tags?: Record<string, string
|
|
127
|
+
Description?: string | undefined;
|
|
128
|
+
Name?: string | undefined;
|
|
129
|
+
CreatedAt?: Date | undefined;
|
|
130
|
+
LastModifiedAt?: Date | undefined;
|
|
131
|
+
StatusSummaries?: StatusSummary[] | undefined;
|
|
132
|
+
ConfigurationDefinitions?: ConfigurationDefinition[] | undefined;
|
|
133
|
+
Tags?: Record<string, string> | undefined;
|
|
132
134
|
}
|
|
133
135
|
export interface ServiceSettings {
|
|
134
|
-
ExplorerEnablingRoleArn?: string;
|
|
136
|
+
ExplorerEnablingRoleArn?: string | undefined;
|
|
135
137
|
}
|
|
136
138
|
export interface GetServiceSettingsOutput {
|
|
137
|
-
ServiceSettings?: ServiceSettings;
|
|
139
|
+
ServiceSettings?: ServiceSettings | undefined;
|
|
138
140
|
}
|
|
139
141
|
export interface ListConfigurationManagersInput {
|
|
140
|
-
StartingToken?: string;
|
|
141
|
-
MaxItems?: number;
|
|
142
|
-
Filters?: Filter[];
|
|
142
|
+
StartingToken?: string | undefined;
|
|
143
|
+
MaxItems?: number | undefined;
|
|
144
|
+
Filters?: Filter[] | undefined;
|
|
143
145
|
}
|
|
144
146
|
export interface ListConfigurationManagersOutput {
|
|
145
|
-
ConfigurationManagersList?: ConfigurationManagerSummary[];
|
|
146
|
-
NextToken?: string;
|
|
147
|
+
ConfigurationManagersList?: ConfigurationManagerSummary[] | undefined;
|
|
148
|
+
NextToken?: string | undefined;
|
|
147
149
|
}
|
|
148
150
|
export interface QuickSetupTypeOutput {
|
|
149
|
-
Type?: string;
|
|
150
|
-
LatestVersion?: string;
|
|
151
|
+
Type?: string | undefined;
|
|
152
|
+
LatestVersion?: string | undefined;
|
|
151
153
|
}
|
|
152
154
|
export interface ListQuickSetupTypesOutput {
|
|
153
|
-
QuickSetupTypeList?: QuickSetupTypeOutput[];
|
|
155
|
+
QuickSetupTypeList?: QuickSetupTypeOutput[] | undefined;
|
|
154
156
|
}
|
|
155
157
|
export interface ListTagsForResourceRequest {
|
|
156
158
|
ResourceArn: string | undefined;
|
|
157
159
|
}
|
|
158
160
|
export interface TagEntry {
|
|
159
|
-
Key?: string;
|
|
160
|
-
Value?: string;
|
|
161
|
+
Key?: string | undefined;
|
|
162
|
+
Value?: string | undefined;
|
|
161
163
|
}
|
|
162
164
|
export interface ListTagsForResourceResponse {
|
|
163
|
-
Tags?: TagEntry[];
|
|
165
|
+
Tags?: TagEntry[] | undefined;
|
|
164
166
|
}
|
|
165
167
|
export interface TagResourceInput {
|
|
166
168
|
ResourceArn: string | undefined;
|
|
@@ -173,18 +175,18 @@ export interface UntagResourceInput {
|
|
|
173
175
|
export interface UpdateConfigurationDefinitionInput {
|
|
174
176
|
ManagerArn: string | undefined;
|
|
175
177
|
Id: string | undefined;
|
|
176
|
-
TypeVersion?: string;
|
|
177
|
-
Parameters?: Record<string, string
|
|
178
|
-
LocalDeploymentExecutionRoleName?: string;
|
|
179
|
-
LocalDeploymentAdministrationRoleArn?: string;
|
|
178
|
+
TypeVersion?: string | undefined;
|
|
179
|
+
Parameters?: Record<string, string> | undefined;
|
|
180
|
+
LocalDeploymentExecutionRoleName?: string | undefined;
|
|
181
|
+
LocalDeploymentAdministrationRoleArn?: string | undefined;
|
|
180
182
|
}
|
|
181
183
|
export interface UpdateConfigurationManagerInput {
|
|
182
184
|
ManagerArn: string | undefined;
|
|
183
|
-
Name?: string;
|
|
184
|
-
Description?: string;
|
|
185
|
+
Name?: string | undefined;
|
|
186
|
+
Description?: string | undefined;
|
|
185
187
|
}
|
|
186
188
|
export interface UpdateServiceSettingsInput {
|
|
187
|
-
ExplorerEnablingRoleArn?: string;
|
|
189
|
+
ExplorerEnablingRoleArn?: string | undefined;
|
|
188
190
|
}
|
|
189
191
|
export declare const CreateConfigurationManagerInputFilterSensitiveLog: (
|
|
190
192
|
obj: CreateConfigurationManagerInput
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm-quicksetup",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Quicksetup Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.691.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",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|