@aws-sdk/client-ssm-quicksetup 3.974.0 → 3.978.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/dist-cjs/index.js
CHANGED
|
@@ -741,6 +741,10 @@ class UpdateServiceSettingsCommand extends smithyClient.Command
|
|
|
741
741
|
.build() {
|
|
742
742
|
}
|
|
743
743
|
|
|
744
|
+
const paginateListConfigurationManagers = core.createPaginator(SSMQuickSetupClient, ListConfigurationManagersCommand, "StartingToken", "NextToken", "MaxItems");
|
|
745
|
+
|
|
746
|
+
const paginateListConfigurations = core.createPaginator(SSMQuickSetupClient, ListConfigurationsCommand, "StartingToken", "NextToken", "MaxItems");
|
|
747
|
+
|
|
744
748
|
const commands = {
|
|
745
749
|
CreateConfigurationManagerCommand,
|
|
746
750
|
DeleteConfigurationManagerCommand,
|
|
@@ -757,13 +761,13 @@ const commands = {
|
|
|
757
761
|
UpdateConfigurationManagerCommand,
|
|
758
762
|
UpdateServiceSettingsCommand,
|
|
759
763
|
};
|
|
764
|
+
const paginators = {
|
|
765
|
+
paginateListConfigurationManagers,
|
|
766
|
+
paginateListConfigurations,
|
|
767
|
+
};
|
|
760
768
|
class SSMQuickSetup extends SSMQuickSetupClient {
|
|
761
769
|
}
|
|
762
|
-
smithyClient.createAggregatedClient(commands, SSMQuickSetup);
|
|
763
|
-
|
|
764
|
-
const paginateListConfigurationManagers = core.createPaginator(SSMQuickSetupClient, ListConfigurationManagersCommand, "StartingToken", "NextToken", "MaxItems");
|
|
765
|
-
|
|
766
|
-
const paginateListConfigurations = core.createPaginator(SSMQuickSetupClient, ListConfigurationsCommand, "StartingToken", "NextToken", "MaxItems");
|
|
770
|
+
smithyClient.createAggregatedClient(commands, SSMQuickSetup, { paginators });
|
|
767
771
|
|
|
768
772
|
const Status = {
|
|
769
773
|
DELETE_FAILED: "DELETE_FAILED",
|
package/dist-es/SSMQuickSetup.js
CHANGED
|
@@ -13,6 +13,8 @@ import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
|
13
13
|
import { UpdateConfigurationDefinitionCommand, } from "./commands/UpdateConfigurationDefinitionCommand";
|
|
14
14
|
import { UpdateConfigurationManagerCommand, } from "./commands/UpdateConfigurationManagerCommand";
|
|
15
15
|
import { UpdateServiceSettingsCommand, } from "./commands/UpdateServiceSettingsCommand";
|
|
16
|
+
import { paginateListConfigurationManagers } from "./pagination/ListConfigurationManagersPaginator";
|
|
17
|
+
import { paginateListConfigurations } from "./pagination/ListConfigurationsPaginator";
|
|
16
18
|
import { SSMQuickSetupClient } from "./SSMQuickSetupClient";
|
|
17
19
|
const commands = {
|
|
18
20
|
CreateConfigurationManagerCommand,
|
|
@@ -30,6 +32,10 @@ const commands = {
|
|
|
30
32
|
UpdateConfigurationManagerCommand,
|
|
31
33
|
UpdateServiceSettingsCommand,
|
|
32
34
|
};
|
|
35
|
+
const paginators = {
|
|
36
|
+
paginateListConfigurationManagers,
|
|
37
|
+
paginateListConfigurations,
|
|
38
|
+
};
|
|
33
39
|
export class SSMQuickSetup extends SSMQuickSetupClient {
|
|
34
40
|
}
|
|
35
|
-
createAggregatedClient(commands, SSMQuickSetup);
|
|
41
|
+
createAggregatedClient(commands, SSMQuickSetup, { paginators });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { CreateConfigurationManagerCommandInput, CreateConfigurationManagerCommandOutput } from "./commands/CreateConfigurationManagerCommand";
|
|
3
3
|
import { DeleteConfigurationManagerCommandInput, DeleteConfigurationManagerCommandOutput } from "./commands/DeleteConfigurationManagerCommand";
|
|
4
4
|
import { GetConfigurationCommandInput, GetConfigurationCommandOutput } from "./commands/GetConfigurationCommand";
|
|
@@ -104,6 +104,20 @@ export interface SSMQuickSetup {
|
|
|
104
104
|
updateServiceSettings(args: UpdateServiceSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateServiceSettingsCommandOutput>;
|
|
105
105
|
updateServiceSettings(args: UpdateServiceSettingsCommandInput, cb: (err: any, data?: UpdateServiceSettingsCommandOutput) => void): void;
|
|
106
106
|
updateServiceSettings(args: UpdateServiceSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServiceSettingsCommandOutput) => void): void;
|
|
107
|
+
/**
|
|
108
|
+
* @see {@link ListConfigurationManagersCommand}
|
|
109
|
+
* @param args - command input.
|
|
110
|
+
* @param paginationConfig - optional pagination config.
|
|
111
|
+
* @returns AsyncIterable of {@link ListConfigurationManagersCommandOutput}.
|
|
112
|
+
*/
|
|
113
|
+
paginateListConfigurationManagers(args?: ListConfigurationManagersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListConfigurationManagersCommandOutput>;
|
|
114
|
+
/**
|
|
115
|
+
* @see {@link ListConfigurationsCommand}
|
|
116
|
+
* @param args - command input.
|
|
117
|
+
* @param paginationConfig - optional pagination config.
|
|
118
|
+
* @returns AsyncIterable of {@link ListConfigurationsCommandOutput}.
|
|
119
|
+
*/
|
|
120
|
+
paginateListConfigurations(args?: ListConfigurationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListConfigurationsCommandOutput>;
|
|
107
121
|
}
|
|
108
122
|
/**
|
|
109
123
|
* <p>Quick Setup helps you quickly configure frequently used services and features with
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
CreateConfigurationManagerCommandInput,
|
|
4
8
|
CreateConfigurationManagerCommandOutput,
|
|
@@ -244,6 +248,20 @@ export interface SSMQuickSetup {
|
|
|
244
248
|
options: __HttpHandlerOptions,
|
|
245
249
|
cb: (err: any, data?: UpdateServiceSettingsCommandOutput) => void
|
|
246
250
|
): void;
|
|
251
|
+
paginateListConfigurationManagers(
|
|
252
|
+
args?: ListConfigurationManagersCommandInput,
|
|
253
|
+
paginationConfig?: Pick<
|
|
254
|
+
PaginationConfiguration,
|
|
255
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
256
|
+
>
|
|
257
|
+
): Paginator<ListConfigurationManagersCommandOutput>;
|
|
258
|
+
paginateListConfigurations(
|
|
259
|
+
args?: ListConfigurationsCommandInput,
|
|
260
|
+
paginationConfig?: Pick<
|
|
261
|
+
PaginationConfiguration,
|
|
262
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
263
|
+
>
|
|
264
|
+
): Paginator<ListConfigurationsCommandOutput>;
|
|
247
265
|
}
|
|
248
266
|
export declare class SSMQuickSetup
|
|
249
267
|
extends SSMQuickSetupClient
|
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.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ssm-quicksetup",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|