@aws-sdk/client-ssm-quicksetup 3.693.0 → 3.698.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.
Files changed (34) hide show
  1. package/README.md +23 -7
  2. package/dist-cjs/SSMQuickSetup.js +4 -0
  3. package/dist-cjs/commands/GetConfigurationCommand.js +26 -0
  4. package/dist-cjs/commands/ListConfigurationsCommand.js +26 -0
  5. package/dist-cjs/commands/index.js +2 -0
  6. package/dist-cjs/pagination/ListConfigurationsPaginator.js +7 -0
  7. package/dist-cjs/pagination/index.js +1 -0
  8. package/dist-cjs/protocols/Aws_restJson1.js +92 -1
  9. package/dist-es/SSMQuickSetup.js +4 -0
  10. package/dist-es/commands/GetConfigurationCommand.js +22 -0
  11. package/dist-es/commands/ListConfigurationsCommand.js +22 -0
  12. package/dist-es/commands/index.js +2 -0
  13. package/dist-es/pagination/ListConfigurationsPaginator.js +4 -0
  14. package/dist-es/pagination/index.js +1 -0
  15. package/dist-es/protocols/Aws_restJson1.js +87 -0
  16. package/dist-types/SSMQuickSetup.d.ts +15 -0
  17. package/dist-types/SSMQuickSetupClient.d.ts +4 -2
  18. package/dist-types/commands/GetConfigurationCommand.d.ts +112 -0
  19. package/dist-types/commands/ListConfigurationsCommand.d.ts +124 -0
  20. package/dist-types/commands/index.d.ts +2 -0
  21. package/dist-types/models/models_0.d.ts +184 -5
  22. package/dist-types/pagination/ListConfigurationsPaginator.d.ts +7 -0
  23. package/dist-types/pagination/index.d.ts +1 -0
  24. package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
  25. package/dist-types/ts3.4/SSMQuickSetup.d.ts +35 -0
  26. package/dist-types/ts3.4/SSMQuickSetupClient.d.ts +12 -0
  27. package/dist-types/ts3.4/commands/GetConfigurationCommand.d.ts +50 -0
  28. package/dist-types/ts3.4/commands/ListConfigurationsCommand.d.ts +51 -0
  29. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  30. package/dist-types/ts3.4/models/models_0.d.ts +39 -0
  31. package/dist-types/ts3.4/pagination/ListConfigurationsPaginator.d.ts +11 -0
  32. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  33. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  34. package/package.json +35 -35
@@ -0,0 +1,112 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetConfigurationInput, GetConfigurationOutput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetConfigurationCommand}.
14
+ */
15
+ export interface GetConfigurationCommandInput extends GetConfigurationInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetConfigurationCommand}.
21
+ */
22
+ export interface GetConfigurationCommandOutput extends GetConfigurationOutput, __MetadataBearer {
23
+ }
24
+ declare const GetConfigurationCommand_base: {
25
+ new (input: GetConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<GetConfigurationCommandInput, GetConfigurationCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: GetConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<GetConfigurationCommandInput, GetConfigurationCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns details about the specified configuration.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { SSMQuickSetupClient, GetConfigurationCommand } from "@aws-sdk/client-ssm-quicksetup"; // ES Modules import
35
+ * // const { SSMQuickSetupClient, GetConfigurationCommand } = require("@aws-sdk/client-ssm-quicksetup"); // CommonJS import
36
+ * const client = new SSMQuickSetupClient(config);
37
+ * const input = { // GetConfigurationInput
38
+ * ConfigurationId: "STRING_VALUE", // required
39
+ * };
40
+ * const command = new GetConfigurationCommand(input);
41
+ * const response = await client.send(command);
42
+ * // { // GetConfigurationOutput
43
+ * // Id: "STRING_VALUE",
44
+ * // ManagerArn: "STRING_VALUE",
45
+ * // ConfigurationDefinitionId: "STRING_VALUE",
46
+ * // Type: "STRING_VALUE",
47
+ * // TypeVersion: "STRING_VALUE",
48
+ * // Account: "STRING_VALUE",
49
+ * // Region: "STRING_VALUE",
50
+ * // CreatedAt: new Date("TIMESTAMP"),
51
+ * // LastModifiedAt: new Date("TIMESTAMP"),
52
+ * // StatusSummaries: [ // StatusSummariesList
53
+ * // { // StatusSummary
54
+ * // StatusType: "Deployment" || "AsyncExecutions", // required
55
+ * // Status: "INITIALIZING" || "DEPLOYING" || "SUCCEEDED" || "DELETING" || "STOPPING" || "FAILED" || "STOPPED" || "DELETE_FAILED" || "STOP_FAILED" || "NONE",
56
+ * // StatusMessage: "STRING_VALUE",
57
+ * // LastUpdatedAt: new Date("TIMESTAMP"), // required
58
+ * // StatusDetails: { // StatusDetails
59
+ * // "<keys>": "STRING_VALUE",
60
+ * // },
61
+ * // },
62
+ * // ],
63
+ * // Parameters: { // ConfigurationParametersMap
64
+ * // "<keys>": "STRING_VALUE",
65
+ * // },
66
+ * // };
67
+ *
68
+ * ```
69
+ *
70
+ * @param GetConfigurationCommandInput - {@link GetConfigurationCommandInput}
71
+ * @returns {@link GetConfigurationCommandOutput}
72
+ * @see {@link GetConfigurationCommandInput} for command's `input` shape.
73
+ * @see {@link GetConfigurationCommandOutput} for command's `response` shape.
74
+ * @see {@link SSMQuickSetupClientResolvedConfig | config} for SSMQuickSetupClient's `config` shape.
75
+ *
76
+ * @throws {@link AccessDeniedException} (client fault)
77
+ * <p>The requester has insufficient permissions to perform the operation.</p>
78
+ *
79
+ * @throws {@link ConflictException} (client fault)
80
+ * <p>Another request is being processed. Wait a few minutes and try again.</p>
81
+ *
82
+ * @throws {@link InternalServerException} (server fault)
83
+ * <p>An error occurred on the server side.</p>
84
+ *
85
+ * @throws {@link ResourceNotFoundException} (client fault)
86
+ * <p>The resource couldn't be found. Check the ID or name and try again.</p>
87
+ *
88
+ * @throws {@link ThrottlingException} (client fault)
89
+ * <p>The request or operation exceeds the maximum allowed request rate per Amazon Web Services account and Amazon Web Services Region.</p>
90
+ *
91
+ * @throws {@link ValidationException} (client fault)
92
+ * <p>The request is invalid. Verify the values provided for the request parameters are
93
+ * accurate.</p>
94
+ *
95
+ * @throws {@link SSMQuickSetupServiceException}
96
+ * <p>Base exception class for all service exceptions from SSMQuickSetup service.</p>
97
+ *
98
+ * @public
99
+ */
100
+ export declare class GetConfigurationCommand extends GetConfigurationCommand_base {
101
+ /** @internal type navigation helper, not in runtime. */
102
+ protected static __types: {
103
+ api: {
104
+ input: GetConfigurationInput;
105
+ output: GetConfigurationOutput;
106
+ };
107
+ sdk: {
108
+ input: GetConfigurationCommandInput;
109
+ output: GetConfigurationCommandOutput;
110
+ };
111
+ };
112
+ }
@@ -0,0 +1,124 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListConfigurationsInput, ListConfigurationsOutput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, SSMQuickSetupClientResolvedConfig } from "../SSMQuickSetupClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListConfigurationsCommand}.
14
+ */
15
+ export interface ListConfigurationsCommandInput extends ListConfigurationsInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListConfigurationsCommand}.
21
+ */
22
+ export interface ListConfigurationsCommandOutput extends ListConfigurationsOutput, __MetadataBearer {
23
+ }
24
+ declare const ListConfigurationsCommand_base: {
25
+ new (input: ListConfigurationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListConfigurationsCommandInput, ListConfigurationsCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (...[input]: [] | [ListConfigurationsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListConfigurationsCommandInput, ListConfigurationsCommandOutput, SSMQuickSetupClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns configurations deployed by Quick Setup in the requesting Amazon Web Services account and Amazon Web Services Region.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { SSMQuickSetupClient, ListConfigurationsCommand } from "@aws-sdk/client-ssm-quicksetup"; // ES Modules import
35
+ * // const { SSMQuickSetupClient, ListConfigurationsCommand } = require("@aws-sdk/client-ssm-quicksetup"); // CommonJS import
36
+ * const client = new SSMQuickSetupClient(config);
37
+ * const input = { // ListConfigurationsInput
38
+ * StartingToken: "STRING_VALUE",
39
+ * MaxItems: Number("int"),
40
+ * Filters: [ // FiltersList
41
+ * { // Filter
42
+ * Key: "STRING_VALUE", // required
43
+ * Values: [ // FilterValues // required
44
+ * "STRING_VALUE",
45
+ * ],
46
+ * },
47
+ * ],
48
+ * ManagerArn: "STRING_VALUE",
49
+ * ConfigurationDefinitionId: "STRING_VALUE",
50
+ * };
51
+ * const command = new ListConfigurationsCommand(input);
52
+ * const response = await client.send(command);
53
+ * // { // ListConfigurationsOutput
54
+ * // ConfigurationsList: [ // ConfigurationsList
55
+ * // { // ConfigurationSummary
56
+ * // Id: "STRING_VALUE",
57
+ * // ManagerArn: "STRING_VALUE",
58
+ * // ConfigurationDefinitionId: "STRING_VALUE",
59
+ * // Type: "STRING_VALUE",
60
+ * // TypeVersion: "STRING_VALUE",
61
+ * // Region: "STRING_VALUE",
62
+ * // Account: "STRING_VALUE",
63
+ * // CreatedAt: new Date("TIMESTAMP"),
64
+ * // FirstClassParameters: { // ConfigurationParametersMap
65
+ * // "<keys>": "STRING_VALUE",
66
+ * // },
67
+ * // StatusSummaries: [ // StatusSummariesList
68
+ * // { // StatusSummary
69
+ * // StatusType: "Deployment" || "AsyncExecutions", // required
70
+ * // Status: "INITIALIZING" || "DEPLOYING" || "SUCCEEDED" || "DELETING" || "STOPPING" || "FAILED" || "STOPPED" || "DELETE_FAILED" || "STOP_FAILED" || "NONE",
71
+ * // StatusMessage: "STRING_VALUE",
72
+ * // LastUpdatedAt: new Date("TIMESTAMP"), // required
73
+ * // StatusDetails: { // StatusDetails
74
+ * // "<keys>": "STRING_VALUE",
75
+ * // },
76
+ * // },
77
+ * // ],
78
+ * // },
79
+ * // ],
80
+ * // NextToken: "STRING_VALUE",
81
+ * // };
82
+ *
83
+ * ```
84
+ *
85
+ * @param ListConfigurationsCommandInput - {@link ListConfigurationsCommandInput}
86
+ * @returns {@link ListConfigurationsCommandOutput}
87
+ * @see {@link ListConfigurationsCommandInput} for command's `input` shape.
88
+ * @see {@link ListConfigurationsCommandOutput} for command's `response` shape.
89
+ * @see {@link SSMQuickSetupClientResolvedConfig | config} for SSMQuickSetupClient's `config` shape.
90
+ *
91
+ * @throws {@link AccessDeniedException} (client fault)
92
+ * <p>The requester has insufficient permissions to perform the operation.</p>
93
+ *
94
+ * @throws {@link InternalServerException} (server fault)
95
+ * <p>An error occurred on the server side.</p>
96
+ *
97
+ * @throws {@link ResourceNotFoundException} (client fault)
98
+ * <p>The resource couldn't be found. Check the ID or name and try again.</p>
99
+ *
100
+ * @throws {@link ThrottlingException} (client fault)
101
+ * <p>The request or operation exceeds the maximum allowed request rate per Amazon Web Services account and Amazon Web Services Region.</p>
102
+ *
103
+ * @throws {@link ValidationException} (client fault)
104
+ * <p>The request is invalid. Verify the values provided for the request parameters are
105
+ * accurate.</p>
106
+ *
107
+ * @throws {@link SSMQuickSetupServiceException}
108
+ * <p>Base exception class for all service exceptions from SSMQuickSetup service.</p>
109
+ *
110
+ * @public
111
+ */
112
+ export declare class ListConfigurationsCommand extends ListConfigurationsCommand_base {
113
+ /** @internal type navigation helper, not in runtime. */
114
+ protected static __types: {
115
+ api: {
116
+ input: ListConfigurationsInput;
117
+ output: ListConfigurationsOutput;
118
+ };
119
+ sdk: {
120
+ input: ListConfigurationsCommandInput;
121
+ output: ListConfigurationsCommandOutput;
122
+ };
123
+ };
124
+ }
@@ -1,8 +1,10 @@
1
1
  export * from "./CreateConfigurationManagerCommand";
2
2
  export * from "./DeleteConfigurationManagerCommand";
3
+ export * from "./GetConfigurationCommand";
3
4
  export * from "./GetConfigurationManagerCommand";
4
5
  export * from "./GetServiceSettingsCommand";
5
6
  export * from "./ListConfigurationManagersCommand";
7
+ export * from "./ListConfigurationsCommand";
6
8
  export * from "./ListQuickSetupTypesCommand";
7
9
  export * from "./ListTagsForResourceCommand";
8
10
  export * from "./TagResourceCommand";
@@ -1242,10 +1242,11 @@ export interface ConfigurationDefinitionInput {
1242
1242
  * </p>
1243
1243
  * <ul>
1244
1244
  * <li>
1245
- * <p>Description: (Optional) A boolean value that
1246
- * determines whether instances are rebooted after
1247
- * patches are installed. The default value is
1248
- * "<code>false</code>".</p>
1245
+ * <p>Description: (Optional) Determines whether
1246
+ * instances are rebooted after patches are
1247
+ * installed. Valid values are
1248
+ * <code>RebootIfNeeded</code> and
1249
+ * <code>NoReboot</code>.</p>
1249
1250
  * </li>
1250
1251
  * </ul>
1251
1252
  * </li>
@@ -1539,7 +1540,10 @@ export interface StatusSummary {
1539
1540
  */
1540
1541
  Status?: Status | undefined;
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
+ * <p>When applicable, returns an informational message relevant to the current status
1544
+ * and status type of the status summary object. We don't recommend implementing
1545
+ * parsing logic around this value since the messages returned can vary in
1546
+ * format.</p>
1543
1547
  * @public
1544
1548
  */
1545
1549
  StatusMessage?: string | undefined;
@@ -1588,6 +1592,63 @@ export interface ConfigurationManagerSummary {
1588
1592
  */
1589
1593
  ConfigurationDefinitionSummaries?: ConfigurationDefinitionSummary[] | undefined;
1590
1594
  }
1595
+ /**
1596
+ * <p>Details for a Quick Setup configuration.</p>
1597
+ * @public
1598
+ */
1599
+ export interface ConfigurationSummary {
1600
+ /**
1601
+ * <p>A service generated identifier for the configuration.</p>
1602
+ * @public
1603
+ */
1604
+ Id?: string | undefined;
1605
+ /**
1606
+ * <p>The ARN of the configuration manager.</p>
1607
+ * @public
1608
+ */
1609
+ ManagerArn?: string | undefined;
1610
+ /**
1611
+ * <p>The ID of the configuration definition.</p>
1612
+ * @public
1613
+ */
1614
+ ConfigurationDefinitionId?: string | undefined;
1615
+ /**
1616
+ * <p>The type of the Quick Setup configuration.</p>
1617
+ * @public
1618
+ */
1619
+ Type?: string | undefined;
1620
+ /**
1621
+ * <p>The version of the Quick Setup type used.</p>
1622
+ * @public
1623
+ */
1624
+ TypeVersion?: string | undefined;
1625
+ /**
1626
+ * <p>The Amazon Web Services Region where the configuration was deployed.</p>
1627
+ * @public
1628
+ */
1629
+ Region?: string | undefined;
1630
+ /**
1631
+ * <p>The ID of the Amazon Web Services account where the configuration was deployed.</p>
1632
+ * @public
1633
+ */
1634
+ Account?: string | undefined;
1635
+ /**
1636
+ * <p>The datetime stamp when the configuration was created.</p>
1637
+ * @public
1638
+ */
1639
+ CreatedAt?: Date | undefined;
1640
+ /**
1641
+ * <p>The common parameters and values for the configuration definition.</p>
1642
+ * @public
1643
+ */
1644
+ FirstClassParameters?: Record<string, string> | undefined;
1645
+ /**
1646
+ * <p>A summary of the state of the configuration manager. This includes deployment
1647
+ * statuses, association statuses, drift statuses, health checks, and more.</p>
1648
+ * @public
1649
+ */
1650
+ StatusSummaries?: StatusSummary[] | undefined;
1651
+ }
1591
1652
  /**
1592
1653
  * <p>Another request is being processed. Wait a few minutes and try again.</p>
1593
1654
  * @public
@@ -1718,6 +1779,77 @@ export interface Filter {
1718
1779
  */
1719
1780
  Values: string[] | undefined;
1720
1781
  }
1782
+ /**
1783
+ * @public
1784
+ */
1785
+ export interface GetConfigurationInput {
1786
+ /**
1787
+ * <p>A service generated identifier for the configuration.</p>
1788
+ * @public
1789
+ */
1790
+ ConfigurationId: string | undefined;
1791
+ }
1792
+ /**
1793
+ * @public
1794
+ */
1795
+ export interface GetConfigurationOutput {
1796
+ /**
1797
+ * <p>A service generated identifier for the configuration.</p>
1798
+ * @public
1799
+ */
1800
+ Id?: string | undefined;
1801
+ /**
1802
+ * <p>The ARN of the configuration manager.</p>
1803
+ * @public
1804
+ */
1805
+ ManagerArn?: string | undefined;
1806
+ /**
1807
+ * <p>The ID of the configuration definition.</p>
1808
+ * @public
1809
+ */
1810
+ ConfigurationDefinitionId?: string | undefined;
1811
+ /**
1812
+ * <p>The type of the Quick Setup configuration.</p>
1813
+ * @public
1814
+ */
1815
+ Type?: string | undefined;
1816
+ /**
1817
+ * <p>The version of the Quick Setup type used.</p>
1818
+ * @public
1819
+ */
1820
+ TypeVersion?: string | undefined;
1821
+ /**
1822
+ * <p>The ID of the Amazon Web Services account where the configuration was deployed.</p>
1823
+ * @public
1824
+ */
1825
+ Account?: string | undefined;
1826
+ /**
1827
+ * <p>The Amazon Web Services Region where the configuration was deployed.</p>
1828
+ * @public
1829
+ */
1830
+ Region?: string | undefined;
1831
+ /**
1832
+ * <p>The datetime stamp when the configuration manager was created.</p>
1833
+ * @public
1834
+ */
1835
+ CreatedAt?: Date | undefined;
1836
+ /**
1837
+ * <p>The datetime stamp when the configuration manager was last updated.</p>
1838
+ * @public
1839
+ */
1840
+ LastModifiedAt?: Date | undefined;
1841
+ /**
1842
+ * <p>A summary of the state of the configuration manager. This includes deployment
1843
+ * statuses, association statuses, drift statuses, health checks, and more.</p>
1844
+ * @public
1845
+ */
1846
+ StatusSummaries?: StatusSummary[] | undefined;
1847
+ /**
1848
+ * <p>The parameters for the configuration definition type.</p>
1849
+ * @public
1850
+ */
1851
+ Parameters?: Record<string, string> | undefined;
1852
+ }
1721
1853
  /**
1722
1854
  * @public
1723
1855
  */
@@ -1832,6 +1964,53 @@ export interface ListConfigurationManagersOutput {
1832
1964
  */
1833
1965
  NextToken?: string | undefined;
1834
1966
  }
1967
+ /**
1968
+ * @public
1969
+ */
1970
+ export interface ListConfigurationsInput {
1971
+ /**
1972
+ * <p>The token to use when requesting a specific set of items from a list.</p>
1973
+ * @public
1974
+ */
1975
+ StartingToken?: string | undefined;
1976
+ /**
1977
+ * <p>Specifies the maximum number of configurations that are returned by the
1978
+ * request.</p>
1979
+ * @public
1980
+ */
1981
+ MaxItems?: number | undefined;
1982
+ /**
1983
+ * <p>Filters the results returned by the request.</p>
1984
+ * @public
1985
+ */
1986
+ Filters?: Filter[] | undefined;
1987
+ /**
1988
+ * <p>The ARN of the configuration manager.</p>
1989
+ * @public
1990
+ */
1991
+ ManagerArn?: string | undefined;
1992
+ /**
1993
+ * <p>The ID of the configuration definition.</p>
1994
+ * @public
1995
+ */
1996
+ ConfigurationDefinitionId?: string | undefined;
1997
+ }
1998
+ /**
1999
+ * @public
2000
+ */
2001
+ export interface ListConfigurationsOutput {
2002
+ /**
2003
+ * <p>An array of configurations.</p>
2004
+ * @public
2005
+ */
2006
+ ConfigurationsList?: ConfigurationSummary[] | undefined;
2007
+ /**
2008
+ * <p>The token to use when requesting the next set of items. If there are no additional items to
2009
+ * return, the string is empty.</p>
2010
+ * @public
2011
+ */
2012
+ NextToken?: string | undefined;
2013
+ }
1835
2014
  /**
1836
2015
  * <p>Information about the Quick Setup type.</p>
1837
2016
  * @public
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListConfigurationsCommandInput, ListConfigurationsCommandOutput } from "../commands/ListConfigurationsCommand";
3
+ import { SSMQuickSetupPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListConfigurations: (config: SSMQuickSetupPaginationConfiguration, input: ListConfigurationsCommandInput, ...rest: any[]) => Paginator<ListConfigurationsCommandOutput>;
@@ -1,2 +1,3 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./ListConfigurationManagersPaginator";
3
+ export * from "./ListConfigurationsPaginator";
@@ -2,9 +2,11 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@s
2
2
  import { SerdeContext as __SerdeContext } from "@smithy/types";
3
3
  import { CreateConfigurationManagerCommandInput, CreateConfigurationManagerCommandOutput } from "../commands/CreateConfigurationManagerCommand";
4
4
  import { DeleteConfigurationManagerCommandInput, DeleteConfigurationManagerCommandOutput } from "../commands/DeleteConfigurationManagerCommand";
5
+ import { GetConfigurationCommandInput, GetConfigurationCommandOutput } from "../commands/GetConfigurationCommand";
5
6
  import { GetConfigurationManagerCommandInput, GetConfigurationManagerCommandOutput } from "../commands/GetConfigurationManagerCommand";
6
7
  import { GetServiceSettingsCommandInput, GetServiceSettingsCommandOutput } from "../commands/GetServiceSettingsCommand";
7
8
  import { ListConfigurationManagersCommandInput, ListConfigurationManagersCommandOutput } from "../commands/ListConfigurationManagersCommand";
9
+ import { ListConfigurationsCommandInput, ListConfigurationsCommandOutput } from "../commands/ListConfigurationsCommand";
8
10
  import { ListQuickSetupTypesCommandInput, ListQuickSetupTypesCommandOutput } from "../commands/ListQuickSetupTypesCommand";
9
11
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
10
12
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
@@ -20,6 +22,10 @@ export declare const se_CreateConfigurationManagerCommand: (input: CreateConfigu
20
22
  * serializeAws_restJson1DeleteConfigurationManagerCommand
21
23
  */
22
24
  export declare const se_DeleteConfigurationManagerCommand: (input: DeleteConfigurationManagerCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
+ /**
26
+ * serializeAws_restJson1GetConfigurationCommand
27
+ */
28
+ export declare const se_GetConfigurationCommand: (input: GetConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
29
  /**
24
30
  * serializeAws_restJson1GetConfigurationManagerCommand
25
31
  */
@@ -32,6 +38,10 @@ export declare const se_GetServiceSettingsCommand: (input: GetServiceSettingsCom
32
38
  * serializeAws_restJson1ListConfigurationManagersCommand
33
39
  */
34
40
  export declare const se_ListConfigurationManagersCommand: (input: ListConfigurationManagersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
+ /**
42
+ * serializeAws_restJson1ListConfigurationsCommand
43
+ */
44
+ export declare const se_ListConfigurationsCommand: (input: ListConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
45
  /**
36
46
  * serializeAws_restJson1ListQuickSetupTypesCommand
37
47
  */
@@ -68,6 +78,10 @@ export declare const de_CreateConfigurationManagerCommand: (output: __HttpRespon
68
78
  * deserializeAws_restJson1DeleteConfigurationManagerCommand
69
79
  */
70
80
  export declare const de_DeleteConfigurationManagerCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConfigurationManagerCommandOutput>;
81
+ /**
82
+ * deserializeAws_restJson1GetConfigurationCommand
83
+ */
84
+ export declare const de_GetConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConfigurationCommandOutput>;
71
85
  /**
72
86
  * deserializeAws_restJson1GetConfigurationManagerCommand
73
87
  */
@@ -80,6 +94,10 @@ export declare const de_GetServiceSettingsCommand: (output: __HttpResponse, cont
80
94
  * deserializeAws_restJson1ListConfigurationManagersCommand
81
95
  */
82
96
  export declare const de_ListConfigurationManagersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConfigurationManagersCommandOutput>;
97
+ /**
98
+ * deserializeAws_restJson1ListConfigurationsCommand
99
+ */
100
+ export declare const de_ListConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConfigurationsCommandOutput>;
83
101
  /**
84
102
  * deserializeAws_restJson1ListQuickSetupTypesCommand
85
103
  */
@@ -7,6 +7,10 @@ import {
7
7
  DeleteConfigurationManagerCommandInput,
8
8
  DeleteConfigurationManagerCommandOutput,
9
9
  } from "./commands/DeleteConfigurationManagerCommand";
10
+ import {
11
+ GetConfigurationCommandInput,
12
+ GetConfigurationCommandOutput,
13
+ } from "./commands/GetConfigurationCommand";
10
14
  import {
11
15
  GetConfigurationManagerCommandInput,
12
16
  GetConfigurationManagerCommandOutput,
@@ -19,6 +23,10 @@ import {
19
23
  ListConfigurationManagersCommandInput,
20
24
  ListConfigurationManagersCommandOutput,
21
25
  } from "./commands/ListConfigurationManagersCommand";
26
+ import {
27
+ ListConfigurationsCommandInput,
28
+ ListConfigurationsCommandOutput,
29
+ } from "./commands/ListConfigurationsCommand";
22
30
  import {
23
31
  ListQuickSetupTypesCommandInput,
24
32
  ListQuickSetupTypesCommandOutput,
@@ -75,6 +83,19 @@ export interface SSMQuickSetup {
75
83
  options: __HttpHandlerOptions,
76
84
  cb: (err: any, data?: DeleteConfigurationManagerCommandOutput) => void
77
85
  ): void;
86
+ getConfiguration(
87
+ args: GetConfigurationCommandInput,
88
+ options?: __HttpHandlerOptions
89
+ ): Promise<GetConfigurationCommandOutput>;
90
+ getConfiguration(
91
+ args: GetConfigurationCommandInput,
92
+ cb: (err: any, data?: GetConfigurationCommandOutput) => void
93
+ ): void;
94
+ getConfiguration(
95
+ args: GetConfigurationCommandInput,
96
+ options: __HttpHandlerOptions,
97
+ cb: (err: any, data?: GetConfigurationCommandOutput) => void
98
+ ): void;
78
99
  getConfigurationManager(
79
100
  args: GetConfigurationManagerCommandInput,
80
101
  options?: __HttpHandlerOptions
@@ -116,6 +137,20 @@ export interface SSMQuickSetup {
116
137
  options: __HttpHandlerOptions,
117
138
  cb: (err: any, data?: ListConfigurationManagersCommandOutput) => void
118
139
  ): void;
140
+ listConfigurations(): Promise<ListConfigurationsCommandOutput>;
141
+ listConfigurations(
142
+ args: ListConfigurationsCommandInput,
143
+ options?: __HttpHandlerOptions
144
+ ): Promise<ListConfigurationsCommandOutput>;
145
+ listConfigurations(
146
+ args: ListConfigurationsCommandInput,
147
+ cb: (err: any, data?: ListConfigurationsCommandOutput) => void
148
+ ): void;
149
+ listConfigurations(
150
+ args: ListConfigurationsCommandInput,
151
+ options: __HttpHandlerOptions,
152
+ cb: (err: any, data?: ListConfigurationsCommandOutput) => void
153
+ ): void;
119
154
  listQuickSetupTypes(): Promise<ListQuickSetupTypesCommandOutput>;
120
155
  listQuickSetupTypes(
121
156
  args: ListQuickSetupTypesCommandInput,
@@ -53,6 +53,10 @@ import {
53
53
  DeleteConfigurationManagerCommandInput,
54
54
  DeleteConfigurationManagerCommandOutput,
55
55
  } from "./commands/DeleteConfigurationManagerCommand";
56
+ import {
57
+ GetConfigurationCommandInput,
58
+ GetConfigurationCommandOutput,
59
+ } from "./commands/GetConfigurationCommand";
56
60
  import {
57
61
  GetConfigurationManagerCommandInput,
58
62
  GetConfigurationManagerCommandOutput,
@@ -65,6 +69,10 @@ import {
65
69
  ListConfigurationManagersCommandInput,
66
70
  ListConfigurationManagersCommandOutput,
67
71
  } from "./commands/ListConfigurationManagersCommand";
72
+ import {
73
+ ListConfigurationsCommandInput,
74
+ ListConfigurationsCommandOutput,
75
+ } from "./commands/ListConfigurationsCommand";
68
76
  import {
69
77
  ListQuickSetupTypesCommandInput,
70
78
  ListQuickSetupTypesCommandOutput,
@@ -103,9 +111,11 @@ export { __Client };
103
111
  export type ServiceInputTypes =
104
112
  | CreateConfigurationManagerCommandInput
105
113
  | DeleteConfigurationManagerCommandInput
114
+ | GetConfigurationCommandInput
106
115
  | GetConfigurationManagerCommandInput
107
116
  | GetServiceSettingsCommandInput
108
117
  | ListConfigurationManagersCommandInput
118
+ | ListConfigurationsCommandInput
109
119
  | ListQuickSetupTypesCommandInput
110
120
  | ListTagsForResourceCommandInput
111
121
  | TagResourceCommandInput
@@ -116,9 +126,11 @@ export type ServiceInputTypes =
116
126
  export type ServiceOutputTypes =
117
127
  | CreateConfigurationManagerCommandOutput
118
128
  | DeleteConfigurationManagerCommandOutput
129
+ | GetConfigurationCommandOutput
119
130
  | GetConfigurationManagerCommandOutput
120
131
  | GetServiceSettingsCommandOutput
121
132
  | ListConfigurationManagersCommandOutput
133
+ | ListConfigurationsCommandOutput
122
134
  | ListQuickSetupTypesCommandOutput
123
135
  | ListTagsForResourceCommandOutput
124
136
  | TagResourceCommandOutput