@aws-sdk/client-ssm-sap 3.490.0 → 3.495.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/SsmSap.js +1 -47
- package/dist-cjs/SsmSapClient.js +1 -43
- package/dist-cjs/commands/DeleteResourcePermissionCommand.js +1 -28
- package/dist-cjs/commands/DeregisterApplicationCommand.js +1 -28
- package/dist-cjs/commands/GetApplicationCommand.js +1 -28
- package/dist-cjs/commands/GetComponentCommand.js +1 -28
- package/dist-cjs/commands/GetDatabaseCommand.js +1 -29
- package/dist-cjs/commands/GetOperationCommand.js +1 -28
- package/dist-cjs/commands/GetResourcePermissionCommand.js +1 -28
- package/dist-cjs/commands/ListApplicationsCommand.js +1 -28
- package/dist-cjs/commands/ListComponentsCommand.js +1 -28
- package/dist-cjs/commands/ListDatabasesCommand.js +1 -28
- package/dist-cjs/commands/ListOperationsCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/PutResourcePermissionCommand.js +1 -28
- package/dist-cjs/commands/RegisterApplicationCommand.js +1 -29
- package/dist-cjs/commands/StartApplicationRefreshCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateApplicationSettingsCommand.js +1 -29
- package/dist-cjs/commands/index.js +1 -21
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +2024 -11
- package/dist-cjs/models/SsmSapServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -213
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListApplicationsPaginator.js +1 -7
- package/dist-cjs/pagination/ListComponentsPaginator.js +1 -7
- package/dist-cjs/pagination/ListDatabasesPaginator.js +1 -7
- package/dist-cjs/pagination/ListOperationsPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -8
- package/dist-cjs/protocols/Aws_restJson1.js +1 -1217
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SsmSapServiceException = 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 SsmSapServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, SsmSapServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.SsmSapServiceException = SsmSapServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED
|
@@ -1,213 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateApplicationSettingsInputFilterSensitiveLog = exports.RegisterApplicationInputFilterSensitiveLog = exports.GetDatabaseOutputFilterSensitiveLog = exports.DatabaseFilterSensitiveLog = exports.ApplicationCredentialFilterSensitiveLog = exports.OperationStatus = exports.FilterOperator = exports.UnauthorizedException = exports.ValidationException = exports.ResourceNotFoundException = exports.InternalServerException = exports.PermissionActionType = exports.DatabaseStatus = exports.DatabaseType = exports.ConflictException = exports.ComponentStatus = exports.ReplicationMode = exports.OperationMode = exports.HostRole = exports.DatabaseConnectionMethod = exports.ComponentType = exports.ClusterStatus = exports.BackintMode = exports.CredentialType = exports.ApplicationType = exports.ApplicationStatus = exports.ApplicationDiscoveryStatus = exports.AllocationType = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
const SsmSapServiceException_1 = require("./SsmSapServiceException");
|
|
6
|
-
exports.AllocationType = {
|
|
7
|
-
ELASTIC_IP: "ELASTIC_IP",
|
|
8
|
-
OVERLAY: "OVERLAY",
|
|
9
|
-
UNKNOWN: "UNKNOWN",
|
|
10
|
-
VPC_SUBNET: "VPC_SUBNET",
|
|
11
|
-
};
|
|
12
|
-
exports.ApplicationDiscoveryStatus = {
|
|
13
|
-
DELETING: "DELETING",
|
|
14
|
-
REFRESH_FAILED: "REFRESH_FAILED",
|
|
15
|
-
REGISTERING: "REGISTERING",
|
|
16
|
-
REGISTRATION_FAILED: "REGISTRATION_FAILED",
|
|
17
|
-
SUCCESS: "SUCCESS",
|
|
18
|
-
};
|
|
19
|
-
exports.ApplicationStatus = {
|
|
20
|
-
ACTIVATED: "ACTIVATED",
|
|
21
|
-
DELETING: "DELETING",
|
|
22
|
-
FAILED: "FAILED",
|
|
23
|
-
REGISTERING: "REGISTERING",
|
|
24
|
-
STARTING: "STARTING",
|
|
25
|
-
STOPPED: "STOPPED",
|
|
26
|
-
STOPPING: "STOPPING",
|
|
27
|
-
UNKNOWN: "UNKNOWN",
|
|
28
|
-
};
|
|
29
|
-
exports.ApplicationType = {
|
|
30
|
-
HANA: "HANA",
|
|
31
|
-
SAP_ABAP: "SAP_ABAP",
|
|
32
|
-
};
|
|
33
|
-
exports.CredentialType = {
|
|
34
|
-
ADMIN: "ADMIN",
|
|
35
|
-
};
|
|
36
|
-
exports.BackintMode = {
|
|
37
|
-
AWSBackup: "AWSBackup",
|
|
38
|
-
};
|
|
39
|
-
exports.ClusterStatus = {
|
|
40
|
-
MAINTENANCE: "MAINTENANCE",
|
|
41
|
-
NONE: "NONE",
|
|
42
|
-
OFFLINE: "OFFLINE",
|
|
43
|
-
ONLINE: "ONLINE",
|
|
44
|
-
STANDBY: "STANDBY",
|
|
45
|
-
};
|
|
46
|
-
exports.ComponentType = {
|
|
47
|
-
ABAP: "ABAP",
|
|
48
|
-
ASCS: "ASCS",
|
|
49
|
-
DIALOG: "DIALOG",
|
|
50
|
-
ERS: "ERS",
|
|
51
|
-
HANA: "HANA",
|
|
52
|
-
HANA_NODE: "HANA_NODE",
|
|
53
|
-
WD: "WD",
|
|
54
|
-
WEBDISP: "WEBDISP",
|
|
55
|
-
};
|
|
56
|
-
exports.DatabaseConnectionMethod = {
|
|
57
|
-
DIRECT: "DIRECT",
|
|
58
|
-
OVERLAY: "OVERLAY",
|
|
59
|
-
};
|
|
60
|
-
exports.HostRole = {
|
|
61
|
-
LEADER: "LEADER",
|
|
62
|
-
STANDBY: "STANDBY",
|
|
63
|
-
UNKNOWN: "UNKNOWN",
|
|
64
|
-
WORKER: "WORKER",
|
|
65
|
-
};
|
|
66
|
-
exports.OperationMode = {
|
|
67
|
-
DELTA_DATASHIPPING: "DELTA_DATASHIPPING",
|
|
68
|
-
LOGREPLAY: "LOGREPLAY",
|
|
69
|
-
LOGREPLAY_READACCESS: "LOGREPLAY_READACCESS",
|
|
70
|
-
NONE: "NONE",
|
|
71
|
-
PRIMARY: "PRIMARY",
|
|
72
|
-
};
|
|
73
|
-
exports.ReplicationMode = {
|
|
74
|
-
ASYNC: "ASYNC",
|
|
75
|
-
NONE: "NONE",
|
|
76
|
-
PRIMARY: "PRIMARY",
|
|
77
|
-
SYNC: "SYNC",
|
|
78
|
-
SYNCMEM: "SYNCMEM",
|
|
79
|
-
};
|
|
80
|
-
exports.ComponentStatus = {
|
|
81
|
-
ACTIVATED: "ACTIVATED",
|
|
82
|
-
RUNNING: "RUNNING",
|
|
83
|
-
RUNNING_WITH_ERROR: "RUNNING_WITH_ERROR",
|
|
84
|
-
STARTING: "STARTING",
|
|
85
|
-
STOPPED: "STOPPED",
|
|
86
|
-
STOPPING: "STOPPING",
|
|
87
|
-
UNDEFINED: "UNDEFINED",
|
|
88
|
-
};
|
|
89
|
-
class ConflictException extends SsmSapServiceException_1.SsmSapServiceException {
|
|
90
|
-
constructor(opts) {
|
|
91
|
-
super({
|
|
92
|
-
name: "ConflictException",
|
|
93
|
-
$fault: "client",
|
|
94
|
-
...opts,
|
|
95
|
-
});
|
|
96
|
-
this.name = "ConflictException";
|
|
97
|
-
this.$fault = "client";
|
|
98
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
99
|
-
this.Message = opts.Message;
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
exports.ConflictException = ConflictException;
|
|
103
|
-
exports.DatabaseType = {
|
|
104
|
-
SYSTEM: "SYSTEM",
|
|
105
|
-
TENANT: "TENANT",
|
|
106
|
-
};
|
|
107
|
-
exports.DatabaseStatus = {
|
|
108
|
-
ERROR: "ERROR",
|
|
109
|
-
RUNNING: "RUNNING",
|
|
110
|
-
STARTING: "STARTING",
|
|
111
|
-
STOPPED: "STOPPED",
|
|
112
|
-
UNKNOWN: "UNKNOWN",
|
|
113
|
-
WARNING: "WARNING",
|
|
114
|
-
};
|
|
115
|
-
exports.PermissionActionType = {
|
|
116
|
-
RESTORE: "RESTORE",
|
|
117
|
-
};
|
|
118
|
-
class InternalServerException extends SsmSapServiceException_1.SsmSapServiceException {
|
|
119
|
-
constructor(opts) {
|
|
120
|
-
super({
|
|
121
|
-
name: "InternalServerException",
|
|
122
|
-
$fault: "server",
|
|
123
|
-
...opts,
|
|
124
|
-
});
|
|
125
|
-
this.name = "InternalServerException";
|
|
126
|
-
this.$fault = "server";
|
|
127
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
128
|
-
this.Message = opts.Message;
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
exports.InternalServerException = InternalServerException;
|
|
132
|
-
class ResourceNotFoundException extends SsmSapServiceException_1.SsmSapServiceException {
|
|
133
|
-
constructor(opts) {
|
|
134
|
-
super({
|
|
135
|
-
name: "ResourceNotFoundException",
|
|
136
|
-
$fault: "client",
|
|
137
|
-
...opts,
|
|
138
|
-
});
|
|
139
|
-
this.name = "ResourceNotFoundException";
|
|
140
|
-
this.$fault = "client";
|
|
141
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
142
|
-
this.Message = opts.Message;
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
146
|
-
class ValidationException extends SsmSapServiceException_1.SsmSapServiceException {
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "ValidationException",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
this.name = "ValidationException";
|
|
154
|
-
this.$fault = "client";
|
|
155
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
156
|
-
this.Message = opts.Message;
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
exports.ValidationException = ValidationException;
|
|
160
|
-
class UnauthorizedException extends SsmSapServiceException_1.SsmSapServiceException {
|
|
161
|
-
constructor(opts) {
|
|
162
|
-
super({
|
|
163
|
-
name: "UnauthorizedException",
|
|
164
|
-
$fault: "client",
|
|
165
|
-
...opts,
|
|
166
|
-
});
|
|
167
|
-
this.name = "UnauthorizedException";
|
|
168
|
-
this.$fault = "client";
|
|
169
|
-
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
170
|
-
this.Message = opts.Message;
|
|
171
|
-
}
|
|
172
|
-
}
|
|
173
|
-
exports.UnauthorizedException = UnauthorizedException;
|
|
174
|
-
exports.FilterOperator = {
|
|
175
|
-
EQUALS: "Equals",
|
|
176
|
-
GREATER_THAN_OR_EQUALS: "GreaterThanOrEquals",
|
|
177
|
-
LESS_THAN_OR_EQUALS: "LessThanOrEquals",
|
|
178
|
-
};
|
|
179
|
-
exports.OperationStatus = {
|
|
180
|
-
ERROR: "ERROR",
|
|
181
|
-
INPROGRESS: "INPROGRESS",
|
|
182
|
-
SUCCESS: "SUCCESS",
|
|
183
|
-
};
|
|
184
|
-
const ApplicationCredentialFilterSensitiveLog = (obj) => ({
|
|
185
|
-
...obj,
|
|
186
|
-
...(obj.SecretId && { SecretId: smithy_client_1.SENSITIVE_STRING }),
|
|
187
|
-
});
|
|
188
|
-
exports.ApplicationCredentialFilterSensitiveLog = ApplicationCredentialFilterSensitiveLog;
|
|
189
|
-
const DatabaseFilterSensitiveLog = (obj) => ({
|
|
190
|
-
...obj,
|
|
191
|
-
...(obj.Credentials && { Credentials: obj.Credentials.map((item) => (0, exports.ApplicationCredentialFilterSensitiveLog)(item)) }),
|
|
192
|
-
});
|
|
193
|
-
exports.DatabaseFilterSensitiveLog = DatabaseFilterSensitiveLog;
|
|
194
|
-
const GetDatabaseOutputFilterSensitiveLog = (obj) => ({
|
|
195
|
-
...obj,
|
|
196
|
-
...(obj.Database && { Database: (0, exports.DatabaseFilterSensitiveLog)(obj.Database) }),
|
|
197
|
-
});
|
|
198
|
-
exports.GetDatabaseOutputFilterSensitiveLog = GetDatabaseOutputFilterSensitiveLog;
|
|
199
|
-
const RegisterApplicationInputFilterSensitiveLog = (obj) => ({
|
|
200
|
-
...obj,
|
|
201
|
-
...(obj.Credentials && { Credentials: obj.Credentials.map((item) => (0, exports.ApplicationCredentialFilterSensitiveLog)(item)) }),
|
|
202
|
-
});
|
|
203
|
-
exports.RegisterApplicationInputFilterSensitiveLog = RegisterApplicationInputFilterSensitiveLog;
|
|
204
|
-
const UpdateApplicationSettingsInputFilterSensitiveLog = (obj) => ({
|
|
205
|
-
...obj,
|
|
206
|
-
...(obj.CredentialsToAddOrUpdate && {
|
|
207
|
-
CredentialsToAddOrUpdate: obj.CredentialsToAddOrUpdate.map((item) => (0, exports.ApplicationCredentialFilterSensitiveLog)(item)),
|
|
208
|
-
}),
|
|
209
|
-
...(obj.CredentialsToRemove && {
|
|
210
|
-
CredentialsToRemove: obj.CredentialsToRemove.map((item) => (0, exports.ApplicationCredentialFilterSensitiveLog)(item)),
|
|
211
|
-
}),
|
|
212
|
-
});
|
|
213
|
-
exports.UpdateApplicationSettingsInputFilterSensitiveLog = UpdateApplicationSettingsInputFilterSensitiveLog;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListApplications = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListApplicationsCommand_1 = require("../commands/ListApplicationsCommand");
|
|
6
|
-
const SsmSapClient_1 = require("../SsmSapClient");
|
|
7
|
-
exports.paginateListApplications = (0, core_1.createPaginator)(SsmSapClient_1.SsmSapClient, ListApplicationsCommand_1.ListApplicationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListComponents = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListComponentsCommand_1 = require("../commands/ListComponentsCommand");
|
|
6
|
-
const SsmSapClient_1 = require("../SsmSapClient");
|
|
7
|
-
exports.paginateListComponents = (0, core_1.createPaginator)(SsmSapClient_1.SsmSapClient, ListComponentsCommand_1.ListComponentsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListDatabases = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListDatabasesCommand_1 = require("../commands/ListDatabasesCommand");
|
|
6
|
-
const SsmSapClient_1 = require("../SsmSapClient");
|
|
7
|
-
exports.paginateListDatabases = (0, core_1.createPaginator)(SsmSapClient_1.SsmSapClient, ListDatabasesCommand_1.ListDatabasesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListOperations = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListOperationsCommand_1 = require("../commands/ListOperationsCommand");
|
|
6
|
-
const SsmSapClient_1 = require("../SsmSapClient");
|
|
7
|
-
exports.paginateListOperations = (0, core_1.createPaginator)(SsmSapClient_1.SsmSapClient, ListOperationsCommand_1.ListOperationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,8 +1 @@
|
|
|
1
|
-
|
|
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("./ListApplicationsPaginator"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./ListComponentsPaginator"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./ListDatabasesPaginator"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./ListOperationsPaginator"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|