@aws-sdk/client-ssm 3.45.0 → 3.47.2
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/CHANGELOG.md +44 -0
- package/dist-cjs/endpoints.js +0 -28
- package/dist-cjs/models/models_0.js +5 -384
- package/dist-cjs/models/models_1.js +5 -348
- package/dist-cjs/models/models_2.js +1 -13
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/endpoints.js +0 -28
- package/dist-es/models/models_0.js +0 -252
- package/dist-es/models/models_1.js +0 -228
- package/dist-es/models/models_2.js +0 -8
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/SSMClient.d.ts +5 -1
- package/dist-types/models/models_0.d.ts +0 -378
- package/dist-types/models/models_1.d.ts +0 -342
- package/dist-types/models/models_2.d.ts +0 -12
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/SSMClient.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -252
- package/dist-types/ts3.4/models/models_1.d.ts +0 -228
- package/dist-types/ts3.4/models/models_2.d.ts +0 -8
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +40 -47
|
@@ -16,14 +16,17 @@ const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
|
|
|
16
16
|
const util_utf8_node_1 = require("@aws-sdk/util-utf8-node");
|
|
17
17
|
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
18
18
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
19
|
+
const util_defaults_mode_node_1 = require("@aws-sdk/util-defaults-mode-node");
|
|
19
20
|
const getRuntimeConfig = (config) => {
|
|
20
21
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
21
|
-
|
|
22
|
+
const defaultsMode = util_defaults_mode_node_1.resolveDefaultsModeConfig(config);
|
|
23
|
+
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
22
24
|
const clientSharedValues = runtimeConfig_shared_1.getRuntimeConfig(config);
|
|
23
25
|
return {
|
|
24
26
|
...clientSharedValues,
|
|
25
27
|
...config,
|
|
26
28
|
runtime: "node",
|
|
29
|
+
defaultsMode,
|
|
27
30
|
base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : util_base64_node_1.fromBase64,
|
|
28
31
|
base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : util_base64_node_1.toBase64,
|
|
29
32
|
bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : util_body_length_node_1.calculateBodyLength,
|
|
@@ -31,8 +34,11 @@ const getRuntimeConfig = (config) => {
|
|
|
31
34
|
defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : util_user_agent_node_1.defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
32
35
|
maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : node_config_provider_1.loadConfig(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
|
|
33
36
|
region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : node_config_provider_1.loadConfig(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS),
|
|
34
|
-
requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new node_http_handler_1.NodeHttpHandler(),
|
|
35
|
-
retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : node_config_provider_1.loadConfig(
|
|
37
|
+
requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new node_http_handler_1.NodeHttpHandler(defaultConfigProvider),
|
|
38
|
+
retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : node_config_provider_1.loadConfig({
|
|
39
|
+
...middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
40
|
+
default: async () => (await defaultConfigProvider()).retryMode || middleware_retry_1.DEFAULT_RETRY_MODE,
|
|
41
|
+
}),
|
|
36
42
|
sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : hash_node_1.Hash.bind(null, "sha256"),
|
|
37
43
|
streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : node_http_handler_1.streamCollector,
|
|
38
44
|
useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : node_config_provider_1.loadConfig(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
|
package/dist-es/endpoints.js
CHANGED
|
@@ -3,10 +3,6 @@ import { getRegionInfo } from "@aws-sdk/config-resolver";
|
|
|
3
3
|
var regionHash = {
|
|
4
4
|
"ca-central-1": {
|
|
5
5
|
variants: [
|
|
6
|
-
{
|
|
7
|
-
hostname: "ssm.ca-central-1.amazonaws.com",
|
|
8
|
-
tags: [],
|
|
9
|
-
},
|
|
10
6
|
{
|
|
11
7
|
hostname: "ssm-fips.ca-central-1.amazonaws.com",
|
|
12
8
|
tags: ["fips"],
|
|
@@ -15,10 +11,6 @@ var regionHash = {
|
|
|
15
11
|
},
|
|
16
12
|
"us-east-1": {
|
|
17
13
|
variants: [
|
|
18
|
-
{
|
|
19
|
-
hostname: "ssm.us-east-1.amazonaws.com",
|
|
20
|
-
tags: [],
|
|
21
|
-
},
|
|
22
14
|
{
|
|
23
15
|
hostname: "ssm-fips.us-east-1.amazonaws.com",
|
|
24
16
|
tags: ["fips"],
|
|
@@ -27,10 +19,6 @@ var regionHash = {
|
|
|
27
19
|
},
|
|
28
20
|
"us-east-2": {
|
|
29
21
|
variants: [
|
|
30
|
-
{
|
|
31
|
-
hostname: "ssm.us-east-2.amazonaws.com",
|
|
32
|
-
tags: [],
|
|
33
|
-
},
|
|
34
22
|
{
|
|
35
23
|
hostname: "ssm-fips.us-east-2.amazonaws.com",
|
|
36
24
|
tags: ["fips"],
|
|
@@ -39,10 +27,6 @@ var regionHash = {
|
|
|
39
27
|
},
|
|
40
28
|
"us-gov-east-1": {
|
|
41
29
|
variants: [
|
|
42
|
-
{
|
|
43
|
-
hostname: "ssm.us-gov-east-1.amazonaws.com",
|
|
44
|
-
tags: [],
|
|
45
|
-
},
|
|
46
30
|
{
|
|
47
31
|
hostname: "ssm.us-gov-east-1.amazonaws.com",
|
|
48
32
|
tags: ["fips"],
|
|
@@ -51,10 +35,6 @@ var regionHash = {
|
|
|
51
35
|
},
|
|
52
36
|
"us-gov-west-1": {
|
|
53
37
|
variants: [
|
|
54
|
-
{
|
|
55
|
-
hostname: "ssm.us-gov-west-1.amazonaws.com",
|
|
56
|
-
tags: [],
|
|
57
|
-
},
|
|
58
38
|
{
|
|
59
39
|
hostname: "ssm.us-gov-west-1.amazonaws.com",
|
|
60
40
|
tags: ["fips"],
|
|
@@ -63,10 +43,6 @@ var regionHash = {
|
|
|
63
43
|
},
|
|
64
44
|
"us-west-1": {
|
|
65
45
|
variants: [
|
|
66
|
-
{
|
|
67
|
-
hostname: "ssm.us-west-1.amazonaws.com",
|
|
68
|
-
tags: [],
|
|
69
|
-
},
|
|
70
46
|
{
|
|
71
47
|
hostname: "ssm-fips.us-west-1.amazonaws.com",
|
|
72
48
|
tags: ["fips"],
|
|
@@ -75,10 +51,6 @@ var regionHash = {
|
|
|
75
51
|
},
|
|
76
52
|
"us-west-2": {
|
|
77
53
|
variants: [
|
|
78
|
-
{
|
|
79
|
-
hostname: "ssm.us-west-2.amazonaws.com",
|
|
80
|
-
tags: [],
|
|
81
|
-
},
|
|
82
54
|
{
|
|
83
55
|
hostname: "ssm-fips.us-west-2.amazonaws.com",
|
|
84
56
|
tags: ["fips"],
|
|
@@ -30,30 +30,6 @@ export var AddTagsToResourceResult;
|
|
|
30
30
|
(function (AddTagsToResourceResult) {
|
|
31
31
|
AddTagsToResourceResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
32
32
|
})(AddTagsToResourceResult || (AddTagsToResourceResult = {}));
|
|
33
|
-
export var InternalServerError;
|
|
34
|
-
(function (InternalServerError) {
|
|
35
|
-
InternalServerError.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
36
|
-
})(InternalServerError || (InternalServerError = {}));
|
|
37
|
-
export var InvalidResourceId;
|
|
38
|
-
(function (InvalidResourceId) {
|
|
39
|
-
InvalidResourceId.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
40
|
-
})(InvalidResourceId || (InvalidResourceId = {}));
|
|
41
|
-
export var InvalidResourceType;
|
|
42
|
-
(function (InvalidResourceType) {
|
|
43
|
-
InvalidResourceType.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
44
|
-
})(InvalidResourceType || (InvalidResourceType = {}));
|
|
45
|
-
export var TooManyTagsError;
|
|
46
|
-
(function (TooManyTagsError) {
|
|
47
|
-
TooManyTagsError.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
48
|
-
})(TooManyTagsError || (TooManyTagsError = {}));
|
|
49
|
-
export var TooManyUpdates;
|
|
50
|
-
(function (TooManyUpdates) {
|
|
51
|
-
TooManyUpdates.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
52
|
-
})(TooManyUpdates || (TooManyUpdates = {}));
|
|
53
|
-
export var AlreadyExistsException;
|
|
54
|
-
(function (AlreadyExistsException) {
|
|
55
|
-
AlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
56
|
-
})(AlreadyExistsException || (AlreadyExistsException = {}));
|
|
57
33
|
export var AssociateOpsItemRelatedItemRequest;
|
|
58
34
|
(function (AssociateOpsItemRelatedItemRequest) {
|
|
59
35
|
AssociateOpsItemRelatedItemRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -62,22 +38,6 @@ export var AssociateOpsItemRelatedItemResponse;
|
|
|
62
38
|
(function (AssociateOpsItemRelatedItemResponse) {
|
|
63
39
|
AssociateOpsItemRelatedItemResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
64
40
|
})(AssociateOpsItemRelatedItemResponse || (AssociateOpsItemRelatedItemResponse = {}));
|
|
65
|
-
export var OpsItemInvalidParameterException;
|
|
66
|
-
(function (OpsItemInvalidParameterException) {
|
|
67
|
-
OpsItemInvalidParameterException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
68
|
-
})(OpsItemInvalidParameterException || (OpsItemInvalidParameterException = {}));
|
|
69
|
-
export var OpsItemLimitExceededException;
|
|
70
|
-
(function (OpsItemLimitExceededException) {
|
|
71
|
-
OpsItemLimitExceededException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
72
|
-
})(OpsItemLimitExceededException || (OpsItemLimitExceededException = {}));
|
|
73
|
-
export var OpsItemNotFoundException;
|
|
74
|
-
(function (OpsItemNotFoundException) {
|
|
75
|
-
OpsItemNotFoundException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
76
|
-
})(OpsItemNotFoundException || (OpsItemNotFoundException = {}));
|
|
77
|
-
export var OpsItemRelatedItemAlreadyExistsException;
|
|
78
|
-
(function (OpsItemRelatedItemAlreadyExistsException) {
|
|
79
|
-
OpsItemRelatedItemAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
80
|
-
})(OpsItemRelatedItemAlreadyExistsException || (OpsItemRelatedItemAlreadyExistsException = {}));
|
|
81
41
|
export var CancelCommandRequest;
|
|
82
42
|
(function (CancelCommandRequest) {
|
|
83
43
|
CancelCommandRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -86,18 +46,6 @@ export var CancelCommandResult;
|
|
|
86
46
|
(function (CancelCommandResult) {
|
|
87
47
|
CancelCommandResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
88
48
|
})(CancelCommandResult || (CancelCommandResult = {}));
|
|
89
|
-
export var DuplicateInstanceId;
|
|
90
|
-
(function (DuplicateInstanceId) {
|
|
91
|
-
DuplicateInstanceId.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
92
|
-
})(DuplicateInstanceId || (DuplicateInstanceId = {}));
|
|
93
|
-
export var InvalidCommandId;
|
|
94
|
-
(function (InvalidCommandId) {
|
|
95
|
-
InvalidCommandId.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
96
|
-
})(InvalidCommandId || (InvalidCommandId = {}));
|
|
97
|
-
export var InvalidInstanceId;
|
|
98
|
-
(function (InvalidInstanceId) {
|
|
99
|
-
InvalidInstanceId.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
100
|
-
})(InvalidInstanceId || (InvalidInstanceId = {}));
|
|
101
49
|
export var CancelMaintenanceWindowExecutionRequest;
|
|
102
50
|
(function (CancelMaintenanceWindowExecutionRequest) {
|
|
103
51
|
CancelMaintenanceWindowExecutionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -106,10 +54,6 @@ export var CancelMaintenanceWindowExecutionResult;
|
|
|
106
54
|
(function (CancelMaintenanceWindowExecutionResult) {
|
|
107
55
|
CancelMaintenanceWindowExecutionResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
108
56
|
})(CancelMaintenanceWindowExecutionResult || (CancelMaintenanceWindowExecutionResult = {}));
|
|
109
|
-
export var DoesNotExistException;
|
|
110
|
-
(function (DoesNotExistException) {
|
|
111
|
-
DoesNotExistException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
112
|
-
})(DoesNotExistException || (DoesNotExistException = {}));
|
|
113
57
|
export var RegistrationMetadataItem;
|
|
114
58
|
(function (RegistrationMetadataItem) {
|
|
115
59
|
RegistrationMetadataItem.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -122,18 +66,6 @@ export var CreateActivationResult;
|
|
|
122
66
|
(function (CreateActivationResult) {
|
|
123
67
|
CreateActivationResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
124
68
|
})(CreateActivationResult || (CreateActivationResult = {}));
|
|
125
|
-
export var InvalidParameters;
|
|
126
|
-
(function (InvalidParameters) {
|
|
127
|
-
InvalidParameters.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
128
|
-
})(InvalidParameters || (InvalidParameters = {}));
|
|
129
|
-
export var AssociationAlreadyExists;
|
|
130
|
-
(function (AssociationAlreadyExists) {
|
|
131
|
-
AssociationAlreadyExists.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
132
|
-
})(AssociationAlreadyExists || (AssociationAlreadyExists = {}));
|
|
133
|
-
export var AssociationLimitExceeded;
|
|
134
|
-
(function (AssociationLimitExceeded) {
|
|
135
|
-
AssociationLimitExceeded.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
136
|
-
})(AssociationLimitExceeded || (AssociationLimitExceeded = {}));
|
|
137
69
|
export var AssociationComplianceSeverity;
|
|
138
70
|
(function (AssociationComplianceSeverity) {
|
|
139
71
|
AssociationComplianceSeverity["Critical"] = "CRITICAL";
|
|
@@ -191,30 +123,6 @@ export var CreateAssociationResult;
|
|
|
191
123
|
AssociationDescription: AssociationDescription.filterSensitiveLog(obj.AssociationDescription),
|
|
192
124
|
}))); };
|
|
193
125
|
})(CreateAssociationResult || (CreateAssociationResult = {}));
|
|
194
|
-
export var InvalidDocument;
|
|
195
|
-
(function (InvalidDocument) {
|
|
196
|
-
InvalidDocument.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
197
|
-
})(InvalidDocument || (InvalidDocument = {}));
|
|
198
|
-
export var InvalidDocumentVersion;
|
|
199
|
-
(function (InvalidDocumentVersion) {
|
|
200
|
-
InvalidDocumentVersion.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
201
|
-
})(InvalidDocumentVersion || (InvalidDocumentVersion = {}));
|
|
202
|
-
export var InvalidOutputLocation;
|
|
203
|
-
(function (InvalidOutputLocation) {
|
|
204
|
-
InvalidOutputLocation.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
205
|
-
})(InvalidOutputLocation || (InvalidOutputLocation = {}));
|
|
206
|
-
export var InvalidSchedule;
|
|
207
|
-
(function (InvalidSchedule) {
|
|
208
|
-
InvalidSchedule.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
209
|
-
})(InvalidSchedule || (InvalidSchedule = {}));
|
|
210
|
-
export var InvalidTarget;
|
|
211
|
-
(function (InvalidTarget) {
|
|
212
|
-
InvalidTarget.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
213
|
-
})(InvalidTarget || (InvalidTarget = {}));
|
|
214
|
-
export var UnsupportedPlatformType;
|
|
215
|
-
(function (UnsupportedPlatformType) {
|
|
216
|
-
UnsupportedPlatformType.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
217
|
-
})(UnsupportedPlatformType || (UnsupportedPlatformType = {}));
|
|
218
126
|
export var CreateAssociationBatchRequestEntry;
|
|
219
127
|
(function (CreateAssociationBatchRequestEntry) {
|
|
220
128
|
CreateAssociationBatchRequestEntry.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Parameters && { Parameters: SENSITIVE_STRING }))); };
|
|
@@ -320,26 +228,6 @@ export var CreateDocumentResult;
|
|
|
320
228
|
(function (CreateDocumentResult) {
|
|
321
229
|
CreateDocumentResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
322
230
|
})(CreateDocumentResult || (CreateDocumentResult = {}));
|
|
323
|
-
export var DocumentAlreadyExists;
|
|
324
|
-
(function (DocumentAlreadyExists) {
|
|
325
|
-
DocumentAlreadyExists.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
326
|
-
})(DocumentAlreadyExists || (DocumentAlreadyExists = {}));
|
|
327
|
-
export var DocumentLimitExceeded;
|
|
328
|
-
(function (DocumentLimitExceeded) {
|
|
329
|
-
DocumentLimitExceeded.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
330
|
-
})(DocumentLimitExceeded || (DocumentLimitExceeded = {}));
|
|
331
|
-
export var InvalidDocumentContent;
|
|
332
|
-
(function (InvalidDocumentContent) {
|
|
333
|
-
InvalidDocumentContent.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
334
|
-
})(InvalidDocumentContent || (InvalidDocumentContent = {}));
|
|
335
|
-
export var InvalidDocumentSchemaVersion;
|
|
336
|
-
(function (InvalidDocumentSchemaVersion) {
|
|
337
|
-
InvalidDocumentSchemaVersion.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
338
|
-
})(InvalidDocumentSchemaVersion || (InvalidDocumentSchemaVersion = {}));
|
|
339
|
-
export var MaxDocumentSizeExceeded;
|
|
340
|
-
(function (MaxDocumentSizeExceeded) {
|
|
341
|
-
MaxDocumentSizeExceeded.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
342
|
-
})(MaxDocumentSizeExceeded || (MaxDocumentSizeExceeded = {}));
|
|
343
231
|
export var CreateMaintenanceWindowRequest;
|
|
344
232
|
(function (CreateMaintenanceWindowRequest) {
|
|
345
233
|
CreateMaintenanceWindowRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Description && { Description: SENSITIVE_STRING }))); };
|
|
@@ -348,14 +236,6 @@ export var CreateMaintenanceWindowResult;
|
|
|
348
236
|
(function (CreateMaintenanceWindowResult) {
|
|
349
237
|
CreateMaintenanceWindowResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
350
238
|
})(CreateMaintenanceWindowResult || (CreateMaintenanceWindowResult = {}));
|
|
351
|
-
export var IdempotentParameterMismatch;
|
|
352
|
-
(function (IdempotentParameterMismatch) {
|
|
353
|
-
IdempotentParameterMismatch.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
354
|
-
})(IdempotentParameterMismatch || (IdempotentParameterMismatch = {}));
|
|
355
|
-
export var ResourceLimitExceededException;
|
|
356
|
-
(function (ResourceLimitExceededException) {
|
|
357
|
-
ResourceLimitExceededException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
358
|
-
})(ResourceLimitExceededException || (ResourceLimitExceededException = {}));
|
|
359
239
|
export var OpsItemNotification;
|
|
360
240
|
(function (OpsItemNotification) {
|
|
361
241
|
OpsItemNotification.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -381,10 +261,6 @@ export var CreateOpsItemResponse;
|
|
|
381
261
|
(function (CreateOpsItemResponse) {
|
|
382
262
|
CreateOpsItemResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
383
263
|
})(CreateOpsItemResponse || (CreateOpsItemResponse = {}));
|
|
384
|
-
export var OpsItemAlreadyExistsException;
|
|
385
|
-
(function (OpsItemAlreadyExistsException) {
|
|
386
|
-
OpsItemAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
387
|
-
})(OpsItemAlreadyExistsException || (OpsItemAlreadyExistsException = {}));
|
|
388
264
|
export var MetadataValue;
|
|
389
265
|
(function (MetadataValue) {
|
|
390
266
|
MetadataValue.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -397,22 +273,6 @@ export var CreateOpsMetadataResult;
|
|
|
397
273
|
(function (CreateOpsMetadataResult) {
|
|
398
274
|
CreateOpsMetadataResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
399
275
|
})(CreateOpsMetadataResult || (CreateOpsMetadataResult = {}));
|
|
400
|
-
export var OpsMetadataAlreadyExistsException;
|
|
401
|
-
(function (OpsMetadataAlreadyExistsException) {
|
|
402
|
-
OpsMetadataAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
403
|
-
})(OpsMetadataAlreadyExistsException || (OpsMetadataAlreadyExistsException = {}));
|
|
404
|
-
export var OpsMetadataInvalidArgumentException;
|
|
405
|
-
(function (OpsMetadataInvalidArgumentException) {
|
|
406
|
-
OpsMetadataInvalidArgumentException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
407
|
-
})(OpsMetadataInvalidArgumentException || (OpsMetadataInvalidArgumentException = {}));
|
|
408
|
-
export var OpsMetadataLimitExceededException;
|
|
409
|
-
(function (OpsMetadataLimitExceededException) {
|
|
410
|
-
OpsMetadataLimitExceededException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
411
|
-
})(OpsMetadataLimitExceededException || (OpsMetadataLimitExceededException = {}));
|
|
412
|
-
export var OpsMetadataTooManyUpdatesException;
|
|
413
|
-
(function (OpsMetadataTooManyUpdatesException) {
|
|
414
|
-
OpsMetadataTooManyUpdatesException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
415
|
-
})(OpsMetadataTooManyUpdatesException || (OpsMetadataTooManyUpdatesException = {}));
|
|
416
276
|
export var PatchComplianceLevel;
|
|
417
277
|
(function (PatchComplianceLevel) {
|
|
418
278
|
PatchComplianceLevel["Critical"] = "CRITICAL";
|
|
@@ -523,18 +383,6 @@ export var CreateResourceDataSyncResult;
|
|
|
523
383
|
(function (CreateResourceDataSyncResult) {
|
|
524
384
|
CreateResourceDataSyncResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
525
385
|
})(CreateResourceDataSyncResult || (CreateResourceDataSyncResult = {}));
|
|
526
|
-
export var ResourceDataSyncAlreadyExistsException;
|
|
527
|
-
(function (ResourceDataSyncAlreadyExistsException) {
|
|
528
|
-
ResourceDataSyncAlreadyExistsException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
529
|
-
})(ResourceDataSyncAlreadyExistsException || (ResourceDataSyncAlreadyExistsException = {}));
|
|
530
|
-
export var ResourceDataSyncCountExceededException;
|
|
531
|
-
(function (ResourceDataSyncCountExceededException) {
|
|
532
|
-
ResourceDataSyncCountExceededException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
533
|
-
})(ResourceDataSyncCountExceededException || (ResourceDataSyncCountExceededException = {}));
|
|
534
|
-
export var ResourceDataSyncInvalidConfigurationException;
|
|
535
|
-
(function (ResourceDataSyncInvalidConfigurationException) {
|
|
536
|
-
ResourceDataSyncInvalidConfigurationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
537
|
-
})(ResourceDataSyncInvalidConfigurationException || (ResourceDataSyncInvalidConfigurationException = {}));
|
|
538
386
|
export var DeleteActivationRequest;
|
|
539
387
|
(function (DeleteActivationRequest) {
|
|
540
388
|
DeleteActivationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -543,18 +391,6 @@ export var DeleteActivationResult;
|
|
|
543
391
|
(function (DeleteActivationResult) {
|
|
544
392
|
DeleteActivationResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
545
393
|
})(DeleteActivationResult || (DeleteActivationResult = {}));
|
|
546
|
-
export var InvalidActivation;
|
|
547
|
-
(function (InvalidActivation) {
|
|
548
|
-
InvalidActivation.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
549
|
-
})(InvalidActivation || (InvalidActivation = {}));
|
|
550
|
-
export var InvalidActivationId;
|
|
551
|
-
(function (InvalidActivationId) {
|
|
552
|
-
InvalidActivationId.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
553
|
-
})(InvalidActivationId || (InvalidActivationId = {}));
|
|
554
|
-
export var AssociationDoesNotExist;
|
|
555
|
-
(function (AssociationDoesNotExist) {
|
|
556
|
-
AssociationDoesNotExist.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
557
|
-
})(AssociationDoesNotExist || (AssociationDoesNotExist = {}));
|
|
558
394
|
export var DeleteAssociationRequest;
|
|
559
395
|
(function (DeleteAssociationRequest) {
|
|
560
396
|
DeleteAssociationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -563,10 +399,6 @@ export var DeleteAssociationResult;
|
|
|
563
399
|
(function (DeleteAssociationResult) {
|
|
564
400
|
DeleteAssociationResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
565
401
|
})(DeleteAssociationResult || (DeleteAssociationResult = {}));
|
|
566
|
-
export var AssociatedInstances;
|
|
567
|
-
(function (AssociatedInstances) {
|
|
568
|
-
AssociatedInstances.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
569
|
-
})(AssociatedInstances || (AssociatedInstances = {}));
|
|
570
402
|
export var DeleteDocumentRequest;
|
|
571
403
|
(function (DeleteDocumentRequest) {
|
|
572
404
|
DeleteDocumentRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -575,10 +407,6 @@ export var DeleteDocumentResult;
|
|
|
575
407
|
(function (DeleteDocumentResult) {
|
|
576
408
|
DeleteDocumentResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
577
409
|
})(DeleteDocumentResult || (DeleteDocumentResult = {}));
|
|
578
|
-
export var InvalidDocumentOperation;
|
|
579
|
-
(function (InvalidDocumentOperation) {
|
|
580
|
-
InvalidDocumentOperation.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
581
|
-
})(InvalidDocumentOperation || (InvalidDocumentOperation = {}));
|
|
582
410
|
export var InventorySchemaDeleteOption;
|
|
583
411
|
(function (InventorySchemaDeleteOption) {
|
|
584
412
|
InventorySchemaDeleteOption["DELETE_SCHEMA"] = "DeleteSchema";
|
|
@@ -600,22 +428,6 @@ export var DeleteInventoryResult;
|
|
|
600
428
|
(function (DeleteInventoryResult) {
|
|
601
429
|
DeleteInventoryResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
602
430
|
})(DeleteInventoryResult || (DeleteInventoryResult = {}));
|
|
603
|
-
export var InvalidDeleteInventoryParametersException;
|
|
604
|
-
(function (InvalidDeleteInventoryParametersException) {
|
|
605
|
-
InvalidDeleteInventoryParametersException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
606
|
-
})(InvalidDeleteInventoryParametersException || (InvalidDeleteInventoryParametersException = {}));
|
|
607
|
-
export var InvalidInventoryRequestException;
|
|
608
|
-
(function (InvalidInventoryRequestException) {
|
|
609
|
-
InvalidInventoryRequestException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
610
|
-
})(InvalidInventoryRequestException || (InvalidInventoryRequestException = {}));
|
|
611
|
-
export var InvalidOptionException;
|
|
612
|
-
(function (InvalidOptionException) {
|
|
613
|
-
InvalidOptionException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
614
|
-
})(InvalidOptionException || (InvalidOptionException = {}));
|
|
615
|
-
export var InvalidTypeNameException;
|
|
616
|
-
(function (InvalidTypeNameException) {
|
|
617
|
-
InvalidTypeNameException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
618
|
-
})(InvalidTypeNameException || (InvalidTypeNameException = {}));
|
|
619
431
|
export var DeleteMaintenanceWindowRequest;
|
|
620
432
|
(function (DeleteMaintenanceWindowRequest) {
|
|
621
433
|
DeleteMaintenanceWindowRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -632,10 +444,6 @@ export var DeleteOpsMetadataResult;
|
|
|
632
444
|
(function (DeleteOpsMetadataResult) {
|
|
633
445
|
DeleteOpsMetadataResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
634
446
|
})(DeleteOpsMetadataResult || (DeleteOpsMetadataResult = {}));
|
|
635
|
-
export var OpsMetadataNotFoundException;
|
|
636
|
-
(function (OpsMetadataNotFoundException) {
|
|
637
|
-
OpsMetadataNotFoundException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
638
|
-
})(OpsMetadataNotFoundException || (OpsMetadataNotFoundException = {}));
|
|
639
447
|
export var DeleteParameterRequest;
|
|
640
448
|
(function (DeleteParameterRequest) {
|
|
641
449
|
DeleteParameterRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -644,10 +452,6 @@ export var DeleteParameterResult;
|
|
|
644
452
|
(function (DeleteParameterResult) {
|
|
645
453
|
DeleteParameterResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
646
454
|
})(DeleteParameterResult || (DeleteParameterResult = {}));
|
|
647
|
-
export var ParameterNotFound;
|
|
648
|
-
(function (ParameterNotFound) {
|
|
649
|
-
ParameterNotFound.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
650
|
-
})(ParameterNotFound || (ParameterNotFound = {}));
|
|
651
455
|
export var DeleteParametersRequest;
|
|
652
456
|
(function (DeleteParametersRequest) {
|
|
653
457
|
DeleteParametersRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -664,10 +468,6 @@ export var DeletePatchBaselineResult;
|
|
|
664
468
|
(function (DeletePatchBaselineResult) {
|
|
665
469
|
DeletePatchBaselineResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
666
470
|
})(DeletePatchBaselineResult || (DeletePatchBaselineResult = {}));
|
|
667
|
-
export var ResourceInUseException;
|
|
668
|
-
(function (ResourceInUseException) {
|
|
669
|
-
ResourceInUseException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
670
|
-
})(ResourceInUseException || (ResourceInUseException = {}));
|
|
671
471
|
export var DeleteResourceDataSyncRequest;
|
|
672
472
|
(function (DeleteResourceDataSyncRequest) {
|
|
673
473
|
DeleteResourceDataSyncRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -676,10 +476,6 @@ export var DeleteResourceDataSyncResult;
|
|
|
676
476
|
(function (DeleteResourceDataSyncResult) {
|
|
677
477
|
DeleteResourceDataSyncResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
678
478
|
})(DeleteResourceDataSyncResult || (DeleteResourceDataSyncResult = {}));
|
|
679
|
-
export var ResourceDataSyncNotFoundException;
|
|
680
|
-
(function (ResourceDataSyncNotFoundException) {
|
|
681
|
-
ResourceDataSyncNotFoundException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
682
|
-
})(ResourceDataSyncNotFoundException || (ResourceDataSyncNotFoundException = {}));
|
|
683
479
|
export var DeregisterManagedInstanceRequest;
|
|
684
480
|
(function (DeregisterManagedInstanceRequest) {
|
|
685
481
|
DeregisterManagedInstanceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -704,10 +500,6 @@ export var DeregisterTargetFromMaintenanceWindowResult;
|
|
|
704
500
|
(function (DeregisterTargetFromMaintenanceWindowResult) {
|
|
705
501
|
DeregisterTargetFromMaintenanceWindowResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
706
502
|
})(DeregisterTargetFromMaintenanceWindowResult || (DeregisterTargetFromMaintenanceWindowResult = {}));
|
|
707
|
-
export var TargetInUseException;
|
|
708
|
-
(function (TargetInUseException) {
|
|
709
|
-
TargetInUseException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
710
|
-
})(TargetInUseException || (TargetInUseException = {}));
|
|
711
503
|
export var DeregisterTaskFromMaintenanceWindowRequest;
|
|
712
504
|
(function (DeregisterTaskFromMaintenanceWindowRequest) {
|
|
713
505
|
DeregisterTaskFromMaintenanceWindowRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -734,14 +526,6 @@ export var DescribeActivationsResult;
|
|
|
734
526
|
(function (DescribeActivationsResult) {
|
|
735
527
|
DescribeActivationsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
736
528
|
})(DescribeActivationsResult || (DescribeActivationsResult = {}));
|
|
737
|
-
export var InvalidFilter;
|
|
738
|
-
(function (InvalidFilter) {
|
|
739
|
-
InvalidFilter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
740
|
-
})(InvalidFilter || (InvalidFilter = {}));
|
|
741
|
-
export var InvalidNextToken;
|
|
742
|
-
(function (InvalidNextToken) {
|
|
743
|
-
InvalidNextToken.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
744
|
-
})(InvalidNextToken || (InvalidNextToken = {}));
|
|
745
529
|
export var DescribeAssociationRequest;
|
|
746
530
|
(function (DescribeAssociationRequest) {
|
|
747
531
|
DescribeAssociationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -752,10 +536,6 @@ export var DescribeAssociationResult;
|
|
|
752
536
|
AssociationDescription: AssociationDescription.filterSensitiveLog(obj.AssociationDescription),
|
|
753
537
|
}))); };
|
|
754
538
|
})(DescribeAssociationResult || (DescribeAssociationResult = {}));
|
|
755
|
-
export var InvalidAssociationVersion;
|
|
756
|
-
(function (InvalidAssociationVersion) {
|
|
757
|
-
InvalidAssociationVersion.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
758
|
-
})(InvalidAssociationVersion || (InvalidAssociationVersion = {}));
|
|
759
539
|
export var AssociationExecutionFilterKey;
|
|
760
540
|
(function (AssociationExecutionFilterKey) {
|
|
761
541
|
AssociationExecutionFilterKey["CreatedTime"] = "CreatedTime";
|
|
@@ -784,10 +564,6 @@ export var DescribeAssociationExecutionsResult;
|
|
|
784
564
|
(function (DescribeAssociationExecutionsResult) {
|
|
785
565
|
DescribeAssociationExecutionsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
786
566
|
})(DescribeAssociationExecutionsResult || (DescribeAssociationExecutionsResult = {}));
|
|
787
|
-
export var AssociationExecutionDoesNotExist;
|
|
788
|
-
(function (AssociationExecutionDoesNotExist) {
|
|
789
|
-
AssociationExecutionDoesNotExist.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
790
|
-
})(AssociationExecutionDoesNotExist || (AssociationExecutionDoesNotExist = {}));
|
|
791
567
|
export var AssociationExecutionTargetsFilterKey;
|
|
792
568
|
(function (AssociationExecutionTargetsFilterKey) {
|
|
793
569
|
AssociationExecutionTargetsFilterKey["ResourceId"] = "ResourceId";
|
|
@@ -888,18 +664,6 @@ export var DescribeAutomationExecutionsResult;
|
|
|
888
664
|
(function (DescribeAutomationExecutionsResult) {
|
|
889
665
|
DescribeAutomationExecutionsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
890
666
|
})(DescribeAutomationExecutionsResult || (DescribeAutomationExecutionsResult = {}));
|
|
891
|
-
export var InvalidFilterKey;
|
|
892
|
-
(function (InvalidFilterKey) {
|
|
893
|
-
InvalidFilterKey.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
894
|
-
})(InvalidFilterKey || (InvalidFilterKey = {}));
|
|
895
|
-
export var InvalidFilterValue;
|
|
896
|
-
(function (InvalidFilterValue) {
|
|
897
|
-
InvalidFilterValue.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
898
|
-
})(InvalidFilterValue || (InvalidFilterValue = {}));
|
|
899
|
-
export var AutomationExecutionNotFoundException;
|
|
900
|
-
(function (AutomationExecutionNotFoundException) {
|
|
901
|
-
AutomationExecutionNotFoundException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
902
|
-
})(AutomationExecutionNotFoundException || (AutomationExecutionNotFoundException = {}));
|
|
903
667
|
export var StepExecutionFilterKey;
|
|
904
668
|
(function (StepExecutionFilterKey) {
|
|
905
669
|
StepExecutionFilterKey["ACTION"] = "Action";
|
|
@@ -965,10 +729,6 @@ export var DescribeDocumentPermissionResponse;
|
|
|
965
729
|
(function (DescribeDocumentPermissionResponse) {
|
|
966
730
|
DescribeDocumentPermissionResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
967
731
|
})(DescribeDocumentPermissionResponse || (DescribeDocumentPermissionResponse = {}));
|
|
968
|
-
export var InvalidPermissionType;
|
|
969
|
-
(function (InvalidPermissionType) {
|
|
970
|
-
InvalidPermissionType.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
971
|
-
})(InvalidPermissionType || (InvalidPermissionType = {}));
|
|
972
732
|
export var DescribeEffectiveInstanceAssociationsRequest;
|
|
973
733
|
(function (DescribeEffectiveInstanceAssociationsRequest) {
|
|
974
734
|
DescribeEffectiveInstanceAssociationsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1004,10 +764,6 @@ export var DescribeEffectivePatchesForPatchBaselineResult;
|
|
|
1004
764
|
(function (DescribeEffectivePatchesForPatchBaselineResult) {
|
|
1005
765
|
DescribeEffectivePatchesForPatchBaselineResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1006
766
|
})(DescribeEffectivePatchesForPatchBaselineResult || (DescribeEffectivePatchesForPatchBaselineResult = {}));
|
|
1007
|
-
export var UnsupportedOperatingSystem;
|
|
1008
|
-
(function (UnsupportedOperatingSystem) {
|
|
1009
|
-
UnsupportedOperatingSystem.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1010
|
-
})(UnsupportedOperatingSystem || (UnsupportedOperatingSystem = {}));
|
|
1011
767
|
export var DescribeInstanceAssociationsStatusRequest;
|
|
1012
768
|
(function (DescribeInstanceAssociationsStatusRequest) {
|
|
1013
769
|
DescribeInstanceAssociationsStatusRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1081,10 +837,6 @@ export var DescribeInstanceInformationResult;
|
|
|
1081
837
|
(function (DescribeInstanceInformationResult) {
|
|
1082
838
|
DescribeInstanceInformationResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1083
839
|
})(DescribeInstanceInformationResult || (DescribeInstanceInformationResult = {}));
|
|
1084
|
-
export var InvalidInstanceInformationFilterValue;
|
|
1085
|
-
(function (InvalidInstanceInformationFilterValue) {
|
|
1086
|
-
InvalidInstanceInformationFilterValue.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1087
|
-
})(InvalidInstanceInformationFilterValue || (InvalidInstanceInformationFilterValue = {}));
|
|
1088
840
|
export var DescribeInstancePatchesRequest;
|
|
1089
841
|
(function (DescribeInstancePatchesRequest) {
|
|
1090
842
|
DescribeInstancePatchesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1169,10 +921,6 @@ export var DescribeInventoryDeletionsResult;
|
|
|
1169
921
|
(function (DescribeInventoryDeletionsResult) {
|
|
1170
922
|
DescribeInventoryDeletionsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1171
923
|
})(DescribeInventoryDeletionsResult || (DescribeInventoryDeletionsResult = {}));
|
|
1172
|
-
export var InvalidDeletionIdException;
|
|
1173
|
-
(function (InvalidDeletionIdException) {
|
|
1174
|
-
InvalidDeletionIdException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1175
|
-
})(InvalidDeletionIdException || (InvalidDeletionIdException = {}));
|
|
1176
924
|
export var MaintenanceWindowFilter;
|
|
1177
925
|
(function (MaintenanceWindowFilter) {
|
|
1178
926
|
MaintenanceWindowFilter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|