@aws-sdk/client-ssm-quicksetup 3.891.0 → 3.894.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 (31) hide show
  1. package/dist-cjs/index.js +1214 -10
  2. package/package.json +19 -19
  3. package/dist-cjs/SSMQuickSetup.js +0 -39
  4. package/dist-cjs/SSMQuickSetupClient.js +0 -52
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +0 -43
  6. package/dist-cjs/commands/CreateConfigurationManagerCommand.js +0 -27
  7. package/dist-cjs/commands/DeleteConfigurationManagerCommand.js +0 -26
  8. package/dist-cjs/commands/GetConfigurationCommand.js +0 -26
  9. package/dist-cjs/commands/GetConfigurationManagerCommand.js +0 -27
  10. package/dist-cjs/commands/GetServiceSettingsCommand.js +0 -26
  11. package/dist-cjs/commands/ListConfigurationManagersCommand.js +0 -26
  12. package/dist-cjs/commands/ListConfigurationsCommand.js +0 -26
  13. package/dist-cjs/commands/ListQuickSetupTypesCommand.js +0 -26
  14. package/dist-cjs/commands/ListTagsForResourceCommand.js +0 -27
  15. package/dist-cjs/commands/TagResourceCommand.js +0 -27
  16. package/dist-cjs/commands/UntagResourceCommand.js +0 -26
  17. package/dist-cjs/commands/UpdateConfigurationDefinitionCommand.js +0 -26
  18. package/dist-cjs/commands/UpdateConfigurationManagerCommand.js +0 -26
  19. package/dist-cjs/commands/UpdateServiceSettingsCommand.js +0 -26
  20. package/dist-cjs/commands/index.js +0 -17
  21. package/dist-cjs/endpoint/EndpointParameters.js +0 -17
  22. package/dist-cjs/extensionConfiguration.js +0 -2
  23. package/dist-cjs/models/SSMQuickSetupServiceException.js +0 -12
  24. package/dist-cjs/models/index.js +0 -4
  25. package/dist-cjs/models/models_0.js +0 -137
  26. package/dist-cjs/pagination/Interfaces.js +0 -2
  27. package/dist-cjs/pagination/ListConfigurationManagersPaginator.js +0 -7
  28. package/dist-cjs/pagination/ListConfigurationsPaginator.js +0 -7
  29. package/dist-cjs/pagination/index.js +0 -6
  30. package/dist-cjs/protocols/Aws_restJson1.js +0 -577
  31. package/dist-cjs/runtimeExtensions.js +0 -13
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SSMQuickSetupServiceException = exports.__ServiceException = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
6
- class SSMQuickSetupServiceException extends smithy_client_1.ServiceException {
7
- constructor(options) {
8
- super(options);
9
- Object.setPrototypeOf(this, SSMQuickSetupServiceException.prototype);
10
- }
11
- }
12
- exports.SSMQuickSetupServiceException = SSMQuickSetupServiceException;
@@ -1,4 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./models_0"), exports);
@@ -1,137 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TagResourceInputFilterSensitiveLog = exports.ListTagsForResourceResponseFilterSensitiveLog = exports.TagEntryFilterSensitiveLog = exports.GetConfigurationManagerOutputFilterSensitiveLog = exports.CreateConfigurationManagerInputFilterSensitiveLog = exports.ResourceNotFoundException = exports.ValidationException = exports.ThrottlingException = exports.InternalServerException = exports.ConflictException = exports.StatusType = exports.Status = exports.AccessDeniedException = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- const SSMQuickSetupServiceException_1 = require("./SSMQuickSetupServiceException");
6
- class AccessDeniedException extends SSMQuickSetupServiceException_1.SSMQuickSetupServiceException {
7
- name = "AccessDeniedException";
8
- $fault = "client";
9
- Message;
10
- constructor(opts) {
11
- super({
12
- name: "AccessDeniedException",
13
- $fault: "client",
14
- ...opts,
15
- });
16
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
17
- this.Message = opts.Message;
18
- }
19
- }
20
- exports.AccessDeniedException = AccessDeniedException;
21
- exports.Status = {
22
- DELETE_FAILED: "DELETE_FAILED",
23
- DELETING: "DELETING",
24
- DEPLOYING: "DEPLOYING",
25
- FAILED: "FAILED",
26
- INITIALIZING: "INITIALIZING",
27
- NONE: "NONE",
28
- STOPPED: "STOPPED",
29
- STOPPING: "STOPPING",
30
- STOP_FAILED: "STOP_FAILED",
31
- SUCCEEDED: "SUCCEEDED",
32
- };
33
- exports.StatusType = {
34
- ASYNC_EXECUTIONS: "AsyncExecutions",
35
- DEPLOYMENT: "Deployment",
36
- };
37
- class ConflictException extends SSMQuickSetupServiceException_1.SSMQuickSetupServiceException {
38
- name = "ConflictException";
39
- $fault = "client";
40
- Message;
41
- constructor(opts) {
42
- super({
43
- name: "ConflictException",
44
- $fault: "client",
45
- ...opts,
46
- });
47
- Object.setPrototypeOf(this, ConflictException.prototype);
48
- this.Message = opts.Message;
49
- }
50
- }
51
- exports.ConflictException = ConflictException;
52
- class InternalServerException extends SSMQuickSetupServiceException_1.SSMQuickSetupServiceException {
53
- name = "InternalServerException";
54
- $fault = "server";
55
- $retryable = {};
56
- Message;
57
- constructor(opts) {
58
- super({
59
- name: "InternalServerException",
60
- $fault: "server",
61
- ...opts,
62
- });
63
- Object.setPrototypeOf(this, InternalServerException.prototype);
64
- this.Message = opts.Message;
65
- }
66
- }
67
- exports.InternalServerException = InternalServerException;
68
- class ThrottlingException extends SSMQuickSetupServiceException_1.SSMQuickSetupServiceException {
69
- name = "ThrottlingException";
70
- $fault = "client";
71
- $retryable = {};
72
- Message;
73
- constructor(opts) {
74
- super({
75
- name: "ThrottlingException",
76
- $fault: "client",
77
- ...opts,
78
- });
79
- Object.setPrototypeOf(this, ThrottlingException.prototype);
80
- this.Message = opts.Message;
81
- }
82
- }
83
- exports.ThrottlingException = ThrottlingException;
84
- class ValidationException extends SSMQuickSetupServiceException_1.SSMQuickSetupServiceException {
85
- name = "ValidationException";
86
- $fault = "client";
87
- Message;
88
- constructor(opts) {
89
- super({
90
- name: "ValidationException",
91
- $fault: "client",
92
- ...opts,
93
- });
94
- Object.setPrototypeOf(this, ValidationException.prototype);
95
- this.Message = opts.Message;
96
- }
97
- }
98
- exports.ValidationException = ValidationException;
99
- class ResourceNotFoundException extends SSMQuickSetupServiceException_1.SSMQuickSetupServiceException {
100
- name = "ResourceNotFoundException";
101
- $fault = "client";
102
- Message;
103
- constructor(opts) {
104
- super({
105
- name: "ResourceNotFoundException",
106
- $fault: "client",
107
- ...opts,
108
- });
109
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
110
- this.Message = opts.Message;
111
- }
112
- }
113
- exports.ResourceNotFoundException = ResourceNotFoundException;
114
- const CreateConfigurationManagerInputFilterSensitiveLog = (obj) => ({
115
- ...obj,
116
- ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
117
- });
118
- exports.CreateConfigurationManagerInputFilterSensitiveLog = CreateConfigurationManagerInputFilterSensitiveLog;
119
- const GetConfigurationManagerOutputFilterSensitiveLog = (obj) => ({
120
- ...obj,
121
- ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
122
- });
123
- exports.GetConfigurationManagerOutputFilterSensitiveLog = GetConfigurationManagerOutputFilterSensitiveLog;
124
- const TagEntryFilterSensitiveLog = (obj) => ({
125
- ...obj,
126
- });
127
- exports.TagEntryFilterSensitiveLog = TagEntryFilterSensitiveLog;
128
- const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
129
- ...obj,
130
- ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
131
- });
132
- exports.ListTagsForResourceResponseFilterSensitiveLog = ListTagsForResourceResponseFilterSensitiveLog;
133
- const TagResourceInputFilterSensitiveLog = (obj) => ({
134
- ...obj,
135
- ...(obj.Tags && { Tags: smithy_client_1.SENSITIVE_STRING }),
136
- });
137
- exports.TagResourceInputFilterSensitiveLog = TagResourceInputFilterSensitiveLog;
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListConfigurationManagers = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListConfigurationManagersCommand_1 = require("../commands/ListConfigurationManagersCommand");
6
- const SSMQuickSetupClient_1 = require("../SSMQuickSetupClient");
7
- exports.paginateListConfigurationManagers = (0, core_1.createPaginator)(SSMQuickSetupClient_1.SSMQuickSetupClient, ListConfigurationManagersCommand_1.ListConfigurationManagersCommand, "StartingToken", "NextToken", "MaxItems");
@@ -1,7 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.paginateListConfigurations = void 0;
4
- const core_1 = require("@smithy/core");
5
- const ListConfigurationsCommand_1 = require("../commands/ListConfigurationsCommand");
6
- const SSMQuickSetupClient_1 = require("../SSMQuickSetupClient");
7
- exports.paginateListConfigurations = (0, core_1.createPaginator)(SSMQuickSetupClient_1.SSMQuickSetupClient, ListConfigurationsCommand_1.ListConfigurationsCommand, "StartingToken", "NextToken", "MaxItems");
@@ -1,6 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./Interfaces"), exports);
5
- tslib_1.__exportStar(require("./ListConfigurationManagersPaginator"), exports);
6
- tslib_1.__exportStar(require("./ListConfigurationsPaginator"), exports);