@aws-sdk/client-ssm 3.759.0 → 3.774.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 +208 -202
- package/dist-es/models/models_0.js +5 -0
- package/dist-es/protocols/Aws_json1_1.js +4 -0
- package/dist-types/commands/CreatePatchBaselineCommand.d.ts +1 -0
- package/dist-types/commands/DescribeInstancePatchStatesCommand.d.ts +1 -0
- package/dist-types/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +1 -0
- package/dist-types/commands/DescribeInstancePatchesCommand.d.ts +1 -1
- package/dist-types/commands/DescribePatchGroupStateCommand.d.ts +1 -0
- package/dist-types/commands/GetDeployablePatchSnapshotForInstanceCommand.d.ts +1 -0
- package/dist-types/commands/GetPatchBaselineCommand.d.ts +1 -0
- package/dist-types/commands/ResetServiceSettingCommand.d.ts +1 -2
- package/dist-types/commands/UpdatePatchBaselineCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +34 -22
- package/dist-types/models/models_1.d.ts +60 -69
- package/dist-types/models/models_2.d.ts +83 -1
- package/dist-types/ts3.4/commands/ResetServiceSettingCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +9 -5
- package/dist-types/ts3.4/models/models_1.d.ts +9 -4
- package/dist-types/ts3.4/models/models_2.d.ts +6 -0
- package/package.json +7 -7
package/dist-cjs/index.js
CHANGED
|
@@ -19,8 +19,8 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
19
19
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
20
|
|
|
21
21
|
// src/index.ts
|
|
22
|
-
var
|
|
23
|
-
__export(
|
|
22
|
+
var index_exports = {};
|
|
23
|
+
__export(index_exports, {
|
|
24
24
|
AddTagsToResourceCommand: () => AddTagsToResourceCommand,
|
|
25
25
|
AlreadyExistsException: () => AlreadyExistsException,
|
|
26
26
|
AssociateOpsItemRelatedItemCommand: () => AssociateOpsItemRelatedItemCommand,
|
|
@@ -365,6 +365,7 @@ __export(src_exports, {
|
|
|
365
365
|
PatchAction: () => PatchAction,
|
|
366
366
|
PatchComplianceDataState: () => PatchComplianceDataState,
|
|
367
367
|
PatchComplianceLevel: () => PatchComplianceLevel,
|
|
368
|
+
PatchComplianceStatus: () => PatchComplianceStatus,
|
|
368
369
|
PatchDeploymentStatus: () => PatchDeploymentStatus,
|
|
369
370
|
PatchFilterKey: () => PatchFilterKey,
|
|
370
371
|
PatchOperationType: () => PatchOperationType,
|
|
@@ -523,7 +524,7 @@ __export(src_exports, {
|
|
|
523
524
|
waitForCommandExecuted: () => waitForCommandExecuted,
|
|
524
525
|
waitUntilCommandExecuted: () => waitUntilCommandExecuted
|
|
525
526
|
});
|
|
526
|
-
module.exports = __toCommonJS(
|
|
527
|
+
module.exports = __toCommonJS(index_exports);
|
|
527
528
|
|
|
528
529
|
// src/SSMClient.ts
|
|
529
530
|
var import_middleware_host_header = require("@aws-sdk/middleware-host-header");
|
|
@@ -650,9 +651,9 @@ var SSMClient = class extends import_smithy_client.Client {
|
|
|
650
651
|
this.middlewareStack.use(
|
|
651
652
|
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
652
653
|
httpAuthSchemeParametersProvider: import_httpAuthSchemeProvider.defaultSSMHttpAuthSchemeParametersProvider,
|
|
653
|
-
identityProviderConfigProvider: async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
654
|
+
identityProviderConfigProvider: /* @__PURE__ */ __name(async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
654
655
|
"aws.auth#sigv4": config.credentials
|
|
655
|
-
})
|
|
656
|
+
}), "identityProviderConfigProvider")
|
|
656
657
|
})
|
|
657
658
|
);
|
|
658
659
|
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
@@ -1601,6 +1602,10 @@ var PatchFilterKey = {
|
|
|
1601
1602
|
Severity: "SEVERITY",
|
|
1602
1603
|
Version: "VERSION"
|
|
1603
1604
|
};
|
|
1605
|
+
var PatchComplianceStatus = {
|
|
1606
|
+
Compliant: "COMPLIANT",
|
|
1607
|
+
NonCompliant: "NON_COMPLIANT"
|
|
1608
|
+
};
|
|
1604
1609
|
var OperatingSystem = {
|
|
1605
1610
|
AlmaLinux: "ALMA_LINUX",
|
|
1606
1611
|
AmazonLinux: "AMAZON_LINUX",
|
|
@@ -2376,6 +2381,7 @@ var InvalidInstanceInformationFilterValue = class _InvalidInstanceInformationFil
|
|
|
2376
2381
|
}
|
|
2377
2382
|
};
|
|
2378
2383
|
var PatchComplianceDataState = {
|
|
2384
|
+
AvailableSecurityUpdate: "AVAILABLE_SECURITY_UPDATE",
|
|
2379
2385
|
Failed: "FAILED",
|
|
2380
2386
|
Installed: "INSTALLED",
|
|
2381
2387
|
InstalledOther: "INSTALLED_OTHER",
|
|
@@ -2862,8 +2868,7 @@ var ImpactType = {
|
|
|
2862
2868
|
var ExecutionPreview;
|
|
2863
2869
|
((ExecutionPreview2) => {
|
|
2864
2870
|
ExecutionPreview2.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
2865
|
-
if (value.Automation !== void 0)
|
|
2866
|
-
return visitor.Automation(value.Automation);
|
|
2871
|
+
if (value.Automation !== void 0) return visitor.Automation(value.Automation);
|
|
2867
2872
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
2868
2873
|
}, "visit");
|
|
2869
2874
|
})(ExecutionPreview || (ExecutionPreview = {}));
|
|
@@ -3134,8 +3139,7 @@ var ManagedStatus = {
|
|
|
3134
3139
|
var NodeType;
|
|
3135
3140
|
((NodeType2) => {
|
|
3136
3141
|
NodeType2.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
3137
|
-
if (value.Instance !== void 0)
|
|
3138
|
-
return visitor.Instance(value.Instance);
|
|
3142
|
+
if (value.Instance !== void 0) return visitor.Instance(value.Instance);
|
|
3139
3143
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
3140
3144
|
}, "visit");
|
|
3141
3145
|
})(NodeType || (NodeType = {}));
|
|
@@ -3805,10 +3809,8 @@ var InstanceInfoFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
|
3805
3809
|
...obj.IpAddress && { IpAddress: import_smithy_client.SENSITIVE_STRING }
|
|
3806
3810
|
}), "InstanceInfoFilterSensitiveLog");
|
|
3807
3811
|
var NodeTypeFilterSensitiveLog = /* @__PURE__ */ __name((obj) => {
|
|
3808
|
-
if (obj.Instance !== void 0)
|
|
3809
|
-
|
|
3810
|
-
if (obj.$unknown !== void 0)
|
|
3811
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
3812
|
+
if (obj.Instance !== void 0) return { Instance: InstanceInfoFilterSensitiveLog(obj.Instance) };
|
|
3813
|
+
if (obj.$unknown !== void 0) return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
3812
3814
|
}, "NodeTypeFilterSensitiveLog");
|
|
3813
3815
|
var NodeFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3814
3816
|
...obj,
|
|
@@ -4066,8 +4068,7 @@ var AutomationDefinitionNotApprovedException = class _AutomationDefinitionNotApp
|
|
|
4066
4068
|
var ExecutionInputs;
|
|
4067
4069
|
((ExecutionInputs3) => {
|
|
4068
4070
|
ExecutionInputs3.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
4069
|
-
if (value.Automation !== void 0)
|
|
4070
|
-
return visitor.Automation(value.Automation);
|
|
4071
|
+
if (value.Automation !== void 0) return visitor.Automation(value.Automation);
|
|
4071
4072
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
4072
4073
|
}, "visit");
|
|
4073
4074
|
})(ExecutionInputs || (ExecutionInputs = {}));
|
|
@@ -8746,7 +8747,7 @@ var de_ValidationExceptionRes = /* @__PURE__ */ __name(async (parsedOutput, cont
|
|
|
8746
8747
|
var se_AssociationStatus = /* @__PURE__ */ __name((input, context) => {
|
|
8747
8748
|
return (0, import_smithy_client.take)(input, {
|
|
8748
8749
|
AdditionalInfo: [],
|
|
8749
|
-
Date: (_) => _.getTime() / 1e3,
|
|
8750
|
+
Date: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "Date"),
|
|
8750
8751
|
Message: [],
|
|
8751
8752
|
Name: []
|
|
8752
8753
|
});
|
|
@@ -8754,7 +8755,7 @@ var se_AssociationStatus = /* @__PURE__ */ __name((input, context) => {
|
|
|
8754
8755
|
var se_ComplianceExecutionSummary = /* @__PURE__ */ __name((input, context) => {
|
|
8755
8756
|
return (0, import_smithy_client.take)(input, {
|
|
8756
8757
|
ExecutionId: [],
|
|
8757
|
-
ExecutionTime: (_) => _.getTime() / 1e3,
|
|
8758
|
+
ExecutionTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "ExecutionTime"),
|
|
8758
8759
|
ExecutionType: []
|
|
8759
8760
|
});
|
|
8760
8761
|
}, "se_ComplianceExecutionSummary");
|
|
@@ -8762,7 +8763,7 @@ var se_CreateActivationRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
8762
8763
|
return (0, import_smithy_client.take)(input, {
|
|
8763
8764
|
DefaultInstanceName: [],
|
|
8764
8765
|
Description: [],
|
|
8765
|
-
ExpirationDate: (_) => _.getTime() / 1e3,
|
|
8766
|
+
ExpirationDate: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "ExpirationDate"),
|
|
8766
8767
|
IamRole: [],
|
|
8767
8768
|
RegistrationLimit: [],
|
|
8768
8769
|
RegistrationMetadata: import_smithy_client._json,
|
|
@@ -8788,15 +8789,15 @@ var se_CreateMaintenanceWindowRequest = /* @__PURE__ */ __name((input, context)
|
|
|
8788
8789
|
var se_CreateOpsItemRequest = /* @__PURE__ */ __name((input, context) => {
|
|
8789
8790
|
return (0, import_smithy_client.take)(input, {
|
|
8790
8791
|
AccountId: [],
|
|
8791
|
-
ActualEndTime: (_) => _.getTime() / 1e3,
|
|
8792
|
-
ActualStartTime: (_) => _.getTime() / 1e3,
|
|
8792
|
+
ActualEndTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "ActualEndTime"),
|
|
8793
|
+
ActualStartTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "ActualStartTime"),
|
|
8793
8794
|
Category: [],
|
|
8794
8795
|
Description: [],
|
|
8795
8796
|
Notifications: import_smithy_client._json,
|
|
8796
8797
|
OperationalData: import_smithy_client._json,
|
|
8797
8798
|
OpsItemType: [],
|
|
8798
|
-
PlannedEndTime: (_) => _.getTime() / 1e3,
|
|
8799
|
-
PlannedStartTime: (_) => _.getTime() / 1e3,
|
|
8799
|
+
PlannedEndTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "PlannedEndTime"),
|
|
8800
|
+
PlannedStartTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "PlannedStartTime"),
|
|
8800
8801
|
Priority: [],
|
|
8801
8802
|
RelatedOpsItems: import_smithy_client._json,
|
|
8802
8803
|
Severity: [],
|
|
@@ -8811,6 +8812,7 @@ var se_CreatePatchBaselineRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
8811
8812
|
ApprovedPatches: import_smithy_client._json,
|
|
8812
8813
|
ApprovedPatchesComplianceLevel: [],
|
|
8813
8814
|
ApprovedPatchesEnableNonSecurity: [],
|
|
8815
|
+
AvailableSecurityUpdatesComplianceStatus: [],
|
|
8814
8816
|
ClientToken: [true, (_) => _ ?? (0, import_uuid.v4)()],
|
|
8815
8817
|
Description: [],
|
|
8816
8818
|
GlobalFilters: import_smithy_client._json,
|
|
@@ -8832,7 +8834,7 @@ var se_DeleteInventoryRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
8832
8834
|
}, "se_DeleteInventoryRequest");
|
|
8833
8835
|
var se_GetInventoryRequest = /* @__PURE__ */ __name((input, context) => {
|
|
8834
8836
|
return (0, import_smithy_client.take)(input, {
|
|
8835
|
-
Aggregators: (_) => se_InventoryAggregatorList(_, context),
|
|
8837
|
+
Aggregators: /* @__PURE__ */ __name((_) => se_InventoryAggregatorList(_, context), "Aggregators"),
|
|
8836
8838
|
Filters: import_smithy_client._json,
|
|
8837
8839
|
MaxResults: [],
|
|
8838
8840
|
NextToken: [],
|
|
@@ -8841,7 +8843,7 @@ var se_GetInventoryRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
8841
8843
|
}, "se_GetInventoryRequest");
|
|
8842
8844
|
var se_GetOpsSummaryRequest = /* @__PURE__ */ __name((input, context) => {
|
|
8843
8845
|
return (0, import_smithy_client.take)(input, {
|
|
8844
|
-
Aggregators: (_) => se_OpsAggregatorList(_, context),
|
|
8846
|
+
Aggregators: /* @__PURE__ */ __name((_) => se_OpsAggregatorList(_, context), "Aggregators"),
|
|
8845
8847
|
Filters: import_smithy_client._json,
|
|
8846
8848
|
MaxResults: [],
|
|
8847
8849
|
NextToken: [],
|
|
@@ -8851,7 +8853,7 @@ var se_GetOpsSummaryRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
8851
8853
|
}, "se_GetOpsSummaryRequest");
|
|
8852
8854
|
var se_InventoryAggregator = /* @__PURE__ */ __name((input, context) => {
|
|
8853
8855
|
return (0, import_smithy_client.take)(input, {
|
|
8854
|
-
Aggregators: (_) => se_InventoryAggregatorList(_, context),
|
|
8856
|
+
Aggregators: /* @__PURE__ */ __name((_) => se_InventoryAggregatorList(_, context), "Aggregators"),
|
|
8855
8857
|
Expression: [],
|
|
8856
8858
|
Groups: import_smithy_client._json
|
|
8857
8859
|
});
|
|
@@ -8863,7 +8865,7 @@ var se_InventoryAggregatorList = /* @__PURE__ */ __name((input, context) => {
|
|
|
8863
8865
|
}, "se_InventoryAggregatorList");
|
|
8864
8866
|
var se_ListNodesSummaryRequest = /* @__PURE__ */ __name((input, context) => {
|
|
8865
8867
|
return (0, import_smithy_client.take)(input, {
|
|
8866
|
-
Aggregators: (_) => se_NodeAggregatorList(_, context),
|
|
8868
|
+
Aggregators: /* @__PURE__ */ __name((_) => se_NodeAggregatorList(_, context), "Aggregators"),
|
|
8867
8869
|
Filters: import_smithy_client._json,
|
|
8868
8870
|
MaxResults: [],
|
|
8869
8871
|
NextToken: [],
|
|
@@ -8880,7 +8882,7 @@ var se_MaintenanceWindowLambdaParameters = /* @__PURE__ */ __name((input, contex
|
|
|
8880
8882
|
var se_MaintenanceWindowTaskInvocationParameters = /* @__PURE__ */ __name((input, context) => {
|
|
8881
8883
|
return (0, import_smithy_client.take)(input, {
|
|
8882
8884
|
Automation: import_smithy_client._json,
|
|
8883
|
-
Lambda: (_) => se_MaintenanceWindowLambdaParameters(_, context),
|
|
8885
|
+
Lambda: /* @__PURE__ */ __name((_) => se_MaintenanceWindowLambdaParameters(_, context), "Lambda"),
|
|
8884
8886
|
RunCommand: import_smithy_client._json,
|
|
8885
8887
|
StepFunctions: import_smithy_client._json
|
|
8886
8888
|
});
|
|
@@ -8888,7 +8890,7 @@ var se_MaintenanceWindowTaskInvocationParameters = /* @__PURE__ */ __name((input
|
|
|
8888
8890
|
var se_NodeAggregator = /* @__PURE__ */ __name((input, context) => {
|
|
8889
8891
|
return (0, import_smithy_client.take)(input, {
|
|
8890
8892
|
AggregatorType: [],
|
|
8891
|
-
Aggregators: (_) => se_NodeAggregatorList(_, context),
|
|
8893
|
+
Aggregators: /* @__PURE__ */ __name((_) => se_NodeAggregatorList(_, context), "Aggregators"),
|
|
8892
8894
|
AttributeName: [],
|
|
8893
8895
|
TypeName: []
|
|
8894
8896
|
});
|
|
@@ -8901,7 +8903,7 @@ var se_NodeAggregatorList = /* @__PURE__ */ __name((input, context) => {
|
|
|
8901
8903
|
var se_OpsAggregator = /* @__PURE__ */ __name((input, context) => {
|
|
8902
8904
|
return (0, import_smithy_client.take)(input, {
|
|
8903
8905
|
AggregatorType: [],
|
|
8904
|
-
Aggregators: (_) => se_OpsAggregatorList(_, context),
|
|
8906
|
+
Aggregators: /* @__PURE__ */ __name((_) => se_OpsAggregatorList(_, context), "Aggregators"),
|
|
8905
8907
|
AttributeName: [],
|
|
8906
8908
|
Filters: import_smithy_client._json,
|
|
8907
8909
|
TypeName: [],
|
|
@@ -8916,7 +8918,7 @@ var se_OpsAggregatorList = /* @__PURE__ */ __name((input, context) => {
|
|
|
8916
8918
|
var se_PutComplianceItemsRequest = /* @__PURE__ */ __name((input, context) => {
|
|
8917
8919
|
return (0, import_smithy_client.take)(input, {
|
|
8918
8920
|
ComplianceType: [],
|
|
8919
|
-
ExecutionSummary: (_) => se_ComplianceExecutionSummary(_, context),
|
|
8921
|
+
ExecutionSummary: /* @__PURE__ */ __name((_) => se_ComplianceExecutionSummary(_, context), "ExecutionSummary"),
|
|
8920
8922
|
ItemContentHash: [],
|
|
8921
8923
|
Items: import_smithy_client._json,
|
|
8922
8924
|
ResourceId: [],
|
|
@@ -8949,7 +8951,7 @@ var se_RegisterTaskWithMaintenanceWindowRequest = /* @__PURE__ */ __name((input,
|
|
|
8949
8951
|
ServiceRoleArn: [],
|
|
8950
8952
|
Targets: import_smithy_client._json,
|
|
8951
8953
|
TaskArn: [],
|
|
8952
|
-
TaskInvocationParameters: (_) => se_MaintenanceWindowTaskInvocationParameters(_, context),
|
|
8954
|
+
TaskInvocationParameters: /* @__PURE__ */ __name((_) => se_MaintenanceWindowTaskInvocationParameters(_, context), "TaskInvocationParameters"),
|
|
8953
8955
|
TaskParameters: import_smithy_client._json,
|
|
8954
8956
|
TaskType: [],
|
|
8955
8957
|
WindowId: []
|
|
@@ -8965,14 +8967,14 @@ var se_StartChangeRequestExecutionRequest = /* @__PURE__ */ __name((input, conte
|
|
|
8965
8967
|
DocumentVersion: [],
|
|
8966
8968
|
Parameters: import_smithy_client._json,
|
|
8967
8969
|
Runbooks: import_smithy_client._json,
|
|
8968
|
-
ScheduledEndTime: (_) => _.getTime() / 1e3,
|
|
8969
|
-
ScheduledTime: (_) => _.getTime() / 1e3,
|
|
8970
|
+
ScheduledEndTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "ScheduledEndTime"),
|
|
8971
|
+
ScheduledTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "ScheduledTime"),
|
|
8970
8972
|
Tags: import_smithy_client._json
|
|
8971
8973
|
});
|
|
8972
8974
|
}, "se_StartChangeRequestExecutionRequest");
|
|
8973
8975
|
var se_UpdateAssociationStatusRequest = /* @__PURE__ */ __name((input, context) => {
|
|
8974
8976
|
return (0, import_smithy_client.take)(input, {
|
|
8975
|
-
AssociationStatus: (_) => se_AssociationStatus(_, context),
|
|
8977
|
+
AssociationStatus: /* @__PURE__ */ __name((_) => se_AssociationStatus(_, context), "AssociationStatus"),
|
|
8976
8978
|
InstanceId: [],
|
|
8977
8979
|
Name: []
|
|
8978
8980
|
});
|
|
@@ -8991,7 +8993,7 @@ var se_UpdateMaintenanceWindowTaskRequest = /* @__PURE__ */ __name((input, conte
|
|
|
8991
8993
|
ServiceRoleArn: [],
|
|
8992
8994
|
Targets: import_smithy_client._json,
|
|
8993
8995
|
TaskArn: [],
|
|
8994
|
-
TaskInvocationParameters: (_) => se_MaintenanceWindowTaskInvocationParameters(_, context),
|
|
8996
|
+
TaskInvocationParameters: /* @__PURE__ */ __name((_) => se_MaintenanceWindowTaskInvocationParameters(_, context), "TaskInvocationParameters"),
|
|
8995
8997
|
TaskParameters: import_smithy_client._json,
|
|
8996
8998
|
WindowId: [],
|
|
8997
8999
|
WindowTaskId: []
|
|
@@ -8999,8 +9001,8 @@ var se_UpdateMaintenanceWindowTaskRequest = /* @__PURE__ */ __name((input, conte
|
|
|
8999
9001
|
}, "se_UpdateMaintenanceWindowTaskRequest");
|
|
9000
9002
|
var se_UpdateOpsItemRequest = /* @__PURE__ */ __name((input, context) => {
|
|
9001
9003
|
return (0, import_smithy_client.take)(input, {
|
|
9002
|
-
ActualEndTime: (_) => _.getTime() / 1e3,
|
|
9003
|
-
ActualStartTime: (_) => _.getTime() / 1e3,
|
|
9004
|
+
ActualEndTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "ActualEndTime"),
|
|
9005
|
+
ActualStartTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "ActualStartTime"),
|
|
9004
9006
|
Category: [],
|
|
9005
9007
|
Description: [],
|
|
9006
9008
|
Notifications: import_smithy_client._json,
|
|
@@ -9008,8 +9010,8 @@ var se_UpdateOpsItemRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
9008
9010
|
OperationalDataToDelete: import_smithy_client._json,
|
|
9009
9011
|
OpsItemArn: [],
|
|
9010
9012
|
OpsItemId: [],
|
|
9011
|
-
PlannedEndTime: (_) => _.getTime() / 1e3,
|
|
9012
|
-
PlannedStartTime: (_) => _.getTime() / 1e3,
|
|
9013
|
+
PlannedEndTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "PlannedEndTime"),
|
|
9014
|
+
PlannedStartTime: /* @__PURE__ */ __name((_) => _.getTime() / 1e3, "PlannedStartTime"),
|
|
9013
9015
|
Priority: [],
|
|
9014
9016
|
RelatedOpsItems: import_smithy_client._json,
|
|
9015
9017
|
Severity: [],
|
|
@@ -9020,10 +9022,10 @@ var se_UpdateOpsItemRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
9020
9022
|
var de_Activation = /* @__PURE__ */ __name((output, context) => {
|
|
9021
9023
|
return (0, import_smithy_client.take)(output, {
|
|
9022
9024
|
ActivationId: import_smithy_client.expectString,
|
|
9023
|
-
CreatedDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9025
|
+
CreatedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedDate"),
|
|
9024
9026
|
DefaultInstanceName: import_smithy_client.expectString,
|
|
9025
9027
|
Description: import_smithy_client.expectString,
|
|
9026
|
-
ExpirationDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9028
|
+
ExpirationDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ExpirationDate"),
|
|
9027
9029
|
Expired: import_smithy_client.expectBoolean,
|
|
9028
9030
|
IamRole: import_smithy_client.expectString,
|
|
9029
9031
|
RegistrationLimit: import_smithy_client.expectInt32,
|
|
@@ -9045,7 +9047,7 @@ var de_Association = /* @__PURE__ */ __name((output, context) => {
|
|
|
9045
9047
|
DocumentVersion: import_smithy_client.expectString,
|
|
9046
9048
|
Duration: import_smithy_client.expectInt32,
|
|
9047
9049
|
InstanceId: import_smithy_client.expectString,
|
|
9048
|
-
LastExecutionDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9050
|
+
LastExecutionDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastExecutionDate"),
|
|
9049
9051
|
Name: import_smithy_client.expectString,
|
|
9050
9052
|
Overview: import_smithy_client._json,
|
|
9051
9053
|
ScheduleExpression: import_smithy_client.expectString,
|
|
@@ -9064,13 +9066,13 @@ var de_AssociationDescription = /* @__PURE__ */ __name((output, context) => {
|
|
|
9064
9066
|
AutomationTargetParameterName: import_smithy_client.expectString,
|
|
9065
9067
|
CalendarNames: import_smithy_client._json,
|
|
9066
9068
|
ComplianceSeverity: import_smithy_client.expectString,
|
|
9067
|
-
Date: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9069
|
+
Date: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "Date"),
|
|
9068
9070
|
DocumentVersion: import_smithy_client.expectString,
|
|
9069
9071
|
Duration: import_smithy_client.expectInt32,
|
|
9070
9072
|
InstanceId: import_smithy_client.expectString,
|
|
9071
|
-
LastExecutionDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9072
|
-
LastSuccessfulExecutionDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9073
|
-
LastUpdateAssociationDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9073
|
+
LastExecutionDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastExecutionDate"),
|
|
9074
|
+
LastSuccessfulExecutionDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastSuccessfulExecutionDate"),
|
|
9075
|
+
LastUpdateAssociationDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastUpdateAssociationDate"),
|
|
9074
9076
|
MaxConcurrency: import_smithy_client.expectString,
|
|
9075
9077
|
MaxErrors: import_smithy_client.expectString,
|
|
9076
9078
|
Name: import_smithy_client.expectString,
|
|
@@ -9079,7 +9081,7 @@ var de_AssociationDescription = /* @__PURE__ */ __name((output, context) => {
|
|
|
9079
9081
|
Parameters: import_smithy_client._json,
|
|
9080
9082
|
ScheduleExpression: import_smithy_client.expectString,
|
|
9081
9083
|
ScheduleOffset: import_smithy_client.expectInt32,
|
|
9082
|
-
Status: (_) => de_AssociationStatus(_, context),
|
|
9084
|
+
Status: /* @__PURE__ */ __name((_) => de_AssociationStatus(_, context), "Status"),
|
|
9083
9085
|
SyncCompliance: import_smithy_client.expectString,
|
|
9084
9086
|
TargetLocations: import_smithy_client._json,
|
|
9085
9087
|
TargetMaps: import_smithy_client._json,
|
|
@@ -9098,10 +9100,10 @@ var de_AssociationExecution = /* @__PURE__ */ __name((output, context) => {
|
|
|
9098
9100
|
AlarmConfiguration: import_smithy_client._json,
|
|
9099
9101
|
AssociationId: import_smithy_client.expectString,
|
|
9100
9102
|
AssociationVersion: import_smithy_client.expectString,
|
|
9101
|
-
CreatedTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9103
|
+
CreatedTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedTime"),
|
|
9102
9104
|
DetailedStatus: import_smithy_client.expectString,
|
|
9103
9105
|
ExecutionId: import_smithy_client.expectString,
|
|
9104
|
-
LastExecutionDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9106
|
+
LastExecutionDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastExecutionDate"),
|
|
9105
9107
|
ResourceCountByStatus: import_smithy_client.expectString,
|
|
9106
9108
|
Status: import_smithy_client.expectString,
|
|
9107
9109
|
TriggeredAlarms: import_smithy_client._json
|
|
@@ -9119,7 +9121,7 @@ var de_AssociationExecutionTarget = /* @__PURE__ */ __name((output, context) =>
|
|
|
9119
9121
|
AssociationVersion: import_smithy_client.expectString,
|
|
9120
9122
|
DetailedStatus: import_smithy_client.expectString,
|
|
9121
9123
|
ExecutionId: import_smithy_client.expectString,
|
|
9122
|
-
LastExecutionDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9124
|
+
LastExecutionDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastExecutionDate"),
|
|
9123
9125
|
OutputSource: import_smithy_client._json,
|
|
9124
9126
|
ResourceId: import_smithy_client.expectString,
|
|
9125
9127
|
ResourceType: import_smithy_client.expectString,
|
|
@@ -9141,7 +9143,7 @@ var de_AssociationList = /* @__PURE__ */ __name((output, context) => {
|
|
|
9141
9143
|
var de_AssociationStatus = /* @__PURE__ */ __name((output, context) => {
|
|
9142
9144
|
return (0, import_smithy_client.take)(output, {
|
|
9143
9145
|
AdditionalInfo: import_smithy_client.expectString,
|
|
9144
|
-
Date: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9146
|
+
Date: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "Date"),
|
|
9145
9147
|
Message: import_smithy_client.expectString,
|
|
9146
9148
|
Name: import_smithy_client.expectString
|
|
9147
9149
|
});
|
|
@@ -9154,7 +9156,7 @@ var de_AssociationVersionInfo = /* @__PURE__ */ __name((output, context) => {
|
|
|
9154
9156
|
AssociationVersion: import_smithy_client.expectString,
|
|
9155
9157
|
CalendarNames: import_smithy_client._json,
|
|
9156
9158
|
ComplianceSeverity: import_smithy_client.expectString,
|
|
9157
|
-
CreatedDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9159
|
+
CreatedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedDate"),
|
|
9158
9160
|
DocumentVersion: import_smithy_client.expectString,
|
|
9159
9161
|
Duration: import_smithy_client.expectInt32,
|
|
9160
9162
|
MaxConcurrency: import_smithy_client.expectString,
|
|
@@ -9189,8 +9191,8 @@ var de_AutomationExecution = /* @__PURE__ */ __name((output, context) => {
|
|
|
9189
9191
|
DocumentName: import_smithy_client.expectString,
|
|
9190
9192
|
DocumentVersion: import_smithy_client.expectString,
|
|
9191
9193
|
ExecutedBy: import_smithy_client.expectString,
|
|
9192
|
-
ExecutionEndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9193
|
-
ExecutionStartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9194
|
+
ExecutionEndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ExecutionEndTime"),
|
|
9195
|
+
ExecutionStartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ExecutionStartTime"),
|
|
9194
9196
|
FailureMessage: import_smithy_client.expectString,
|
|
9195
9197
|
MaxConcurrency: import_smithy_client.expectString,
|
|
9196
9198
|
MaxErrors: import_smithy_client.expectString,
|
|
@@ -9202,8 +9204,8 @@ var de_AutomationExecution = /* @__PURE__ */ __name((output, context) => {
|
|
|
9202
9204
|
ProgressCounters: import_smithy_client._json,
|
|
9203
9205
|
ResolvedTargets: import_smithy_client._json,
|
|
9204
9206
|
Runbooks: import_smithy_client._json,
|
|
9205
|
-
ScheduledTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9206
|
-
StepExecutions: (_) => de_StepExecutionList(_, context),
|
|
9207
|
+
ScheduledTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ScheduledTime"),
|
|
9208
|
+
StepExecutions: /* @__PURE__ */ __name((_) => de_StepExecutionList(_, context), "StepExecutions"),
|
|
9207
9209
|
StepExecutionsTruncated: import_smithy_client.expectBoolean,
|
|
9208
9210
|
Target: import_smithy_client.expectString,
|
|
9209
9211
|
TargetLocations: import_smithy_client._json,
|
|
@@ -9229,8 +9231,8 @@ var de_AutomationExecutionMetadata = /* @__PURE__ */ __name((output, context) =>
|
|
|
9229
9231
|
DocumentName: import_smithy_client.expectString,
|
|
9230
9232
|
DocumentVersion: import_smithy_client.expectString,
|
|
9231
9233
|
ExecutedBy: import_smithy_client.expectString,
|
|
9232
|
-
ExecutionEndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9233
|
-
ExecutionStartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9234
|
+
ExecutionEndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ExecutionEndTime"),
|
|
9235
|
+
ExecutionStartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ExecutionStartTime"),
|
|
9234
9236
|
FailureMessage: import_smithy_client.expectString,
|
|
9235
9237
|
LogFile: import_smithy_client.expectString,
|
|
9236
9238
|
MaxConcurrency: import_smithy_client.expectString,
|
|
@@ -9241,7 +9243,7 @@ var de_AutomationExecutionMetadata = /* @__PURE__ */ __name((output, context) =>
|
|
|
9241
9243
|
ParentAutomationExecutionId: import_smithy_client.expectString,
|
|
9242
9244
|
ResolvedTargets: import_smithy_client._json,
|
|
9243
9245
|
Runbooks: import_smithy_client._json,
|
|
9244
|
-
ScheduledTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9246
|
+
ScheduledTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ScheduledTime"),
|
|
9245
9247
|
Target: import_smithy_client.expectString,
|
|
9246
9248
|
TargetLocationsURL: import_smithy_client.expectString,
|
|
9247
9249
|
TargetMaps: import_smithy_client._json,
|
|
@@ -9267,7 +9269,7 @@ var de_Command = /* @__PURE__ */ __name((output, context) => {
|
|
|
9267
9269
|
DocumentName: import_smithy_client.expectString,
|
|
9268
9270
|
DocumentVersion: import_smithy_client.expectString,
|
|
9269
9271
|
ErrorCount: import_smithy_client.expectInt32,
|
|
9270
|
-
ExpiresAfter: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9272
|
+
ExpiresAfter: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ExpiresAfter"),
|
|
9271
9273
|
InstanceIds: import_smithy_client._json,
|
|
9272
9274
|
MaxConcurrency: import_smithy_client.expectString,
|
|
9273
9275
|
MaxErrors: import_smithy_client.expectString,
|
|
@@ -9276,7 +9278,7 @@ var de_Command = /* @__PURE__ */ __name((output, context) => {
|
|
|
9276
9278
|
OutputS3KeyPrefix: import_smithy_client.expectString,
|
|
9277
9279
|
OutputS3Region: import_smithy_client.expectString,
|
|
9278
9280
|
Parameters: import_smithy_client._json,
|
|
9279
|
-
RequestedDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9281
|
+
RequestedDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "RequestedDateTime"),
|
|
9280
9282
|
ServiceRole: import_smithy_client.expectString,
|
|
9281
9283
|
Status: import_smithy_client.expectString,
|
|
9282
9284
|
StatusDetails: import_smithy_client.expectString,
|
|
@@ -9290,14 +9292,14 @@ var de_CommandInvocation = /* @__PURE__ */ __name((output, context) => {
|
|
|
9290
9292
|
return (0, import_smithy_client.take)(output, {
|
|
9291
9293
|
CloudWatchOutputConfig: import_smithy_client._json,
|
|
9292
9294
|
CommandId: import_smithy_client.expectString,
|
|
9293
|
-
CommandPlugins: (_) => de_CommandPluginList(_, context),
|
|
9295
|
+
CommandPlugins: /* @__PURE__ */ __name((_) => de_CommandPluginList(_, context), "CommandPlugins"),
|
|
9294
9296
|
Comment: import_smithy_client.expectString,
|
|
9295
9297
|
DocumentName: import_smithy_client.expectString,
|
|
9296
9298
|
DocumentVersion: import_smithy_client.expectString,
|
|
9297
9299
|
InstanceId: import_smithy_client.expectString,
|
|
9298
9300
|
InstanceName: import_smithy_client.expectString,
|
|
9299
9301
|
NotificationConfig: import_smithy_client._json,
|
|
9300
|
-
RequestedDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9302
|
+
RequestedDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "RequestedDateTime"),
|
|
9301
9303
|
ServiceRole: import_smithy_client.expectString,
|
|
9302
9304
|
StandardErrorUrl: import_smithy_client.expectString,
|
|
9303
9305
|
StandardOutputUrl: import_smithy_client.expectString,
|
|
@@ -9326,8 +9328,8 @@ var de_CommandPlugin = /* @__PURE__ */ __name((output, context) => {
|
|
|
9326
9328
|
OutputS3KeyPrefix: import_smithy_client.expectString,
|
|
9327
9329
|
OutputS3Region: import_smithy_client.expectString,
|
|
9328
9330
|
ResponseCode: import_smithy_client.expectInt32,
|
|
9329
|
-
ResponseFinishDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9330
|
-
ResponseStartDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9331
|
+
ResponseFinishDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ResponseFinishDateTime"),
|
|
9332
|
+
ResponseStartDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ResponseStartDateTime"),
|
|
9331
9333
|
StandardErrorUrl: import_smithy_client.expectString,
|
|
9332
9334
|
StandardOutputUrl: import_smithy_client.expectString,
|
|
9333
9335
|
Status: import_smithy_client.expectString,
|
|
@@ -9343,7 +9345,7 @@ var de_CommandPluginList = /* @__PURE__ */ __name((output, context) => {
|
|
|
9343
9345
|
var de_ComplianceExecutionSummary = /* @__PURE__ */ __name((output, context) => {
|
|
9344
9346
|
return (0, import_smithy_client.take)(output, {
|
|
9345
9347
|
ExecutionId: import_smithy_client.expectString,
|
|
9346
|
-
ExecutionTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9348
|
+
ExecutionTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ExecutionTime"),
|
|
9347
9349
|
ExecutionType: import_smithy_client.expectString
|
|
9348
9350
|
});
|
|
9349
9351
|
}, "de_ComplianceExecutionSummary");
|
|
@@ -9351,7 +9353,7 @@ var de_ComplianceItem = /* @__PURE__ */ __name((output, context) => {
|
|
|
9351
9353
|
return (0, import_smithy_client.take)(output, {
|
|
9352
9354
|
ComplianceType: import_smithy_client.expectString,
|
|
9353
9355
|
Details: import_smithy_client._json,
|
|
9354
|
-
ExecutionSummary: (_) => de_ComplianceExecutionSummary(_, context),
|
|
9356
|
+
ExecutionSummary: /* @__PURE__ */ __name((_) => de_ComplianceExecutionSummary(_, context), "ExecutionSummary"),
|
|
9355
9357
|
Id: import_smithy_client.expectString,
|
|
9356
9358
|
ResourceId: import_smithy_client.expectString,
|
|
9357
9359
|
ResourceType: import_smithy_client.expectString,
|
|
@@ -9369,147 +9371,147 @@ var de_ComplianceItemList = /* @__PURE__ */ __name((output, context) => {
|
|
|
9369
9371
|
var de_CreateAssociationBatchResult = /* @__PURE__ */ __name((output, context) => {
|
|
9370
9372
|
return (0, import_smithy_client.take)(output, {
|
|
9371
9373
|
Failed: import_smithy_client._json,
|
|
9372
|
-
Successful: (_) => de_AssociationDescriptionList(_, context)
|
|
9374
|
+
Successful: /* @__PURE__ */ __name((_) => de_AssociationDescriptionList(_, context), "Successful")
|
|
9373
9375
|
});
|
|
9374
9376
|
}, "de_CreateAssociationBatchResult");
|
|
9375
9377
|
var de_CreateAssociationResult = /* @__PURE__ */ __name((output, context) => {
|
|
9376
9378
|
return (0, import_smithy_client.take)(output, {
|
|
9377
|
-
AssociationDescription: (_) => de_AssociationDescription(_, context)
|
|
9379
|
+
AssociationDescription: /* @__PURE__ */ __name((_) => de_AssociationDescription(_, context), "AssociationDescription")
|
|
9378
9380
|
});
|
|
9379
9381
|
}, "de_CreateAssociationResult");
|
|
9380
9382
|
var de_CreateDocumentResult = /* @__PURE__ */ __name((output, context) => {
|
|
9381
9383
|
return (0, import_smithy_client.take)(output, {
|
|
9382
|
-
DocumentDescription: (_) => de_DocumentDescription(_, context)
|
|
9384
|
+
DocumentDescription: /* @__PURE__ */ __name((_) => de_DocumentDescription(_, context), "DocumentDescription")
|
|
9383
9385
|
});
|
|
9384
9386
|
}, "de_CreateDocumentResult");
|
|
9385
9387
|
var de_DescribeActivationsResult = /* @__PURE__ */ __name((output, context) => {
|
|
9386
9388
|
return (0, import_smithy_client.take)(output, {
|
|
9387
|
-
ActivationList: (_) => de_ActivationList(_, context),
|
|
9389
|
+
ActivationList: /* @__PURE__ */ __name((_) => de_ActivationList(_, context), "ActivationList"),
|
|
9388
9390
|
NextToken: import_smithy_client.expectString
|
|
9389
9391
|
});
|
|
9390
9392
|
}, "de_DescribeActivationsResult");
|
|
9391
9393
|
var de_DescribeAssociationExecutionsResult = /* @__PURE__ */ __name((output, context) => {
|
|
9392
9394
|
return (0, import_smithy_client.take)(output, {
|
|
9393
|
-
AssociationExecutions: (_) => de_AssociationExecutionsList(_, context),
|
|
9395
|
+
AssociationExecutions: /* @__PURE__ */ __name((_) => de_AssociationExecutionsList(_, context), "AssociationExecutions"),
|
|
9394
9396
|
NextToken: import_smithy_client.expectString
|
|
9395
9397
|
});
|
|
9396
9398
|
}, "de_DescribeAssociationExecutionsResult");
|
|
9397
9399
|
var de_DescribeAssociationExecutionTargetsResult = /* @__PURE__ */ __name((output, context) => {
|
|
9398
9400
|
return (0, import_smithy_client.take)(output, {
|
|
9399
|
-
AssociationExecutionTargets: (_) => de_AssociationExecutionTargetsList(_, context),
|
|
9401
|
+
AssociationExecutionTargets: /* @__PURE__ */ __name((_) => de_AssociationExecutionTargetsList(_, context), "AssociationExecutionTargets"),
|
|
9400
9402
|
NextToken: import_smithy_client.expectString
|
|
9401
9403
|
});
|
|
9402
9404
|
}, "de_DescribeAssociationExecutionTargetsResult");
|
|
9403
9405
|
var de_DescribeAssociationResult = /* @__PURE__ */ __name((output, context) => {
|
|
9404
9406
|
return (0, import_smithy_client.take)(output, {
|
|
9405
|
-
AssociationDescription: (_) => de_AssociationDescription(_, context)
|
|
9407
|
+
AssociationDescription: /* @__PURE__ */ __name((_) => de_AssociationDescription(_, context), "AssociationDescription")
|
|
9406
9408
|
});
|
|
9407
9409
|
}, "de_DescribeAssociationResult");
|
|
9408
9410
|
var de_DescribeAutomationExecutionsResult = /* @__PURE__ */ __name((output, context) => {
|
|
9409
9411
|
return (0, import_smithy_client.take)(output, {
|
|
9410
|
-
AutomationExecutionMetadataList: (_) => de_AutomationExecutionMetadataList(_, context),
|
|
9412
|
+
AutomationExecutionMetadataList: /* @__PURE__ */ __name((_) => de_AutomationExecutionMetadataList(_, context), "AutomationExecutionMetadataList"),
|
|
9411
9413
|
NextToken: import_smithy_client.expectString
|
|
9412
9414
|
});
|
|
9413
9415
|
}, "de_DescribeAutomationExecutionsResult");
|
|
9414
9416
|
var de_DescribeAutomationStepExecutionsResult = /* @__PURE__ */ __name((output, context) => {
|
|
9415
9417
|
return (0, import_smithy_client.take)(output, {
|
|
9416
9418
|
NextToken: import_smithy_client.expectString,
|
|
9417
|
-
StepExecutions: (_) => de_StepExecutionList(_, context)
|
|
9419
|
+
StepExecutions: /* @__PURE__ */ __name((_) => de_StepExecutionList(_, context), "StepExecutions")
|
|
9418
9420
|
});
|
|
9419
9421
|
}, "de_DescribeAutomationStepExecutionsResult");
|
|
9420
9422
|
var de_DescribeAvailablePatchesResult = /* @__PURE__ */ __name((output, context) => {
|
|
9421
9423
|
return (0, import_smithy_client.take)(output, {
|
|
9422
9424
|
NextToken: import_smithy_client.expectString,
|
|
9423
|
-
Patches: (_) => de_PatchList(_, context)
|
|
9425
|
+
Patches: /* @__PURE__ */ __name((_) => de_PatchList(_, context), "Patches")
|
|
9424
9426
|
});
|
|
9425
9427
|
}, "de_DescribeAvailablePatchesResult");
|
|
9426
9428
|
var de_DescribeDocumentResult = /* @__PURE__ */ __name((output, context) => {
|
|
9427
9429
|
return (0, import_smithy_client.take)(output, {
|
|
9428
|
-
Document: (_) => de_DocumentDescription(_, context)
|
|
9430
|
+
Document: /* @__PURE__ */ __name((_) => de_DocumentDescription(_, context), "Document")
|
|
9429
9431
|
});
|
|
9430
9432
|
}, "de_DescribeDocumentResult");
|
|
9431
9433
|
var de_DescribeEffectivePatchesForPatchBaselineResult = /* @__PURE__ */ __name((output, context) => {
|
|
9432
9434
|
return (0, import_smithy_client.take)(output, {
|
|
9433
|
-
EffectivePatches: (_) => de_EffectivePatchList(_, context),
|
|
9435
|
+
EffectivePatches: /* @__PURE__ */ __name((_) => de_EffectivePatchList(_, context), "EffectivePatches"),
|
|
9434
9436
|
NextToken: import_smithy_client.expectString
|
|
9435
9437
|
});
|
|
9436
9438
|
}, "de_DescribeEffectivePatchesForPatchBaselineResult");
|
|
9437
9439
|
var de_DescribeInstanceAssociationsStatusResult = /* @__PURE__ */ __name((output, context) => {
|
|
9438
9440
|
return (0, import_smithy_client.take)(output, {
|
|
9439
|
-
InstanceAssociationStatusInfos: (_) => de_InstanceAssociationStatusInfos(_, context),
|
|
9441
|
+
InstanceAssociationStatusInfos: /* @__PURE__ */ __name((_) => de_InstanceAssociationStatusInfos(_, context), "InstanceAssociationStatusInfos"),
|
|
9440
9442
|
NextToken: import_smithy_client.expectString
|
|
9441
9443
|
});
|
|
9442
9444
|
}, "de_DescribeInstanceAssociationsStatusResult");
|
|
9443
9445
|
var de_DescribeInstanceInformationResult = /* @__PURE__ */ __name((output, context) => {
|
|
9444
9446
|
return (0, import_smithy_client.take)(output, {
|
|
9445
|
-
InstanceInformationList: (_) => de_InstanceInformationList(_, context),
|
|
9447
|
+
InstanceInformationList: /* @__PURE__ */ __name((_) => de_InstanceInformationList(_, context), "InstanceInformationList"),
|
|
9446
9448
|
NextToken: import_smithy_client.expectString
|
|
9447
9449
|
});
|
|
9448
9450
|
}, "de_DescribeInstanceInformationResult");
|
|
9449
9451
|
var de_DescribeInstancePatchesResult = /* @__PURE__ */ __name((output, context) => {
|
|
9450
9452
|
return (0, import_smithy_client.take)(output, {
|
|
9451
9453
|
NextToken: import_smithy_client.expectString,
|
|
9452
|
-
Patches: (_) => de_PatchComplianceDataList(_, context)
|
|
9454
|
+
Patches: /* @__PURE__ */ __name((_) => de_PatchComplianceDataList(_, context), "Patches")
|
|
9453
9455
|
});
|
|
9454
9456
|
}, "de_DescribeInstancePatchesResult");
|
|
9455
9457
|
var de_DescribeInstancePatchStatesForPatchGroupResult = /* @__PURE__ */ __name((output, context) => {
|
|
9456
9458
|
return (0, import_smithy_client.take)(output, {
|
|
9457
|
-
InstancePatchStates: (_) => de_InstancePatchStatesList(_, context),
|
|
9459
|
+
InstancePatchStates: /* @__PURE__ */ __name((_) => de_InstancePatchStatesList(_, context), "InstancePatchStates"),
|
|
9458
9460
|
NextToken: import_smithy_client.expectString
|
|
9459
9461
|
});
|
|
9460
9462
|
}, "de_DescribeInstancePatchStatesForPatchGroupResult");
|
|
9461
9463
|
var de_DescribeInstancePatchStatesResult = /* @__PURE__ */ __name((output, context) => {
|
|
9462
9464
|
return (0, import_smithy_client.take)(output, {
|
|
9463
|
-
InstancePatchStates: (_) => de_InstancePatchStateList(_, context),
|
|
9465
|
+
InstancePatchStates: /* @__PURE__ */ __name((_) => de_InstancePatchStateList(_, context), "InstancePatchStates"),
|
|
9464
9466
|
NextToken: import_smithy_client.expectString
|
|
9465
9467
|
});
|
|
9466
9468
|
}, "de_DescribeInstancePatchStatesResult");
|
|
9467
9469
|
var de_DescribeInstancePropertiesResult = /* @__PURE__ */ __name((output, context) => {
|
|
9468
9470
|
return (0, import_smithy_client.take)(output, {
|
|
9469
|
-
InstanceProperties: (_) => de_InstanceProperties(_, context),
|
|
9471
|
+
InstanceProperties: /* @__PURE__ */ __name((_) => de_InstanceProperties(_, context), "InstanceProperties"),
|
|
9470
9472
|
NextToken: import_smithy_client.expectString
|
|
9471
9473
|
});
|
|
9472
9474
|
}, "de_DescribeInstancePropertiesResult");
|
|
9473
9475
|
var de_DescribeInventoryDeletionsResult = /* @__PURE__ */ __name((output, context) => {
|
|
9474
9476
|
return (0, import_smithy_client.take)(output, {
|
|
9475
|
-
InventoryDeletions: (_) => de_InventoryDeletionsList(_, context),
|
|
9477
|
+
InventoryDeletions: /* @__PURE__ */ __name((_) => de_InventoryDeletionsList(_, context), "InventoryDeletions"),
|
|
9476
9478
|
NextToken: import_smithy_client.expectString
|
|
9477
9479
|
});
|
|
9478
9480
|
}, "de_DescribeInventoryDeletionsResult");
|
|
9479
9481
|
var de_DescribeMaintenanceWindowExecutionsResult = /* @__PURE__ */ __name((output, context) => {
|
|
9480
9482
|
return (0, import_smithy_client.take)(output, {
|
|
9481
9483
|
NextToken: import_smithy_client.expectString,
|
|
9482
|
-
WindowExecutions: (_) => de_MaintenanceWindowExecutionList(_, context)
|
|
9484
|
+
WindowExecutions: /* @__PURE__ */ __name((_) => de_MaintenanceWindowExecutionList(_, context), "WindowExecutions")
|
|
9483
9485
|
});
|
|
9484
9486
|
}, "de_DescribeMaintenanceWindowExecutionsResult");
|
|
9485
9487
|
var de_DescribeMaintenanceWindowExecutionTaskInvocationsResult = /* @__PURE__ */ __name((output, context) => {
|
|
9486
9488
|
return (0, import_smithy_client.take)(output, {
|
|
9487
9489
|
NextToken: import_smithy_client.expectString,
|
|
9488
|
-
WindowExecutionTaskInvocationIdentities: (_) => de_MaintenanceWindowExecutionTaskInvocationIdentityList(_, context)
|
|
9490
|
+
WindowExecutionTaskInvocationIdentities: /* @__PURE__ */ __name((_) => de_MaintenanceWindowExecutionTaskInvocationIdentityList(_, context), "WindowExecutionTaskInvocationIdentities")
|
|
9489
9491
|
});
|
|
9490
9492
|
}, "de_DescribeMaintenanceWindowExecutionTaskInvocationsResult");
|
|
9491
9493
|
var de_DescribeMaintenanceWindowExecutionTasksResult = /* @__PURE__ */ __name((output, context) => {
|
|
9492
9494
|
return (0, import_smithy_client.take)(output, {
|
|
9493
9495
|
NextToken: import_smithy_client.expectString,
|
|
9494
|
-
WindowExecutionTaskIdentities: (_) => de_MaintenanceWindowExecutionTaskIdentityList(_, context)
|
|
9496
|
+
WindowExecutionTaskIdentities: /* @__PURE__ */ __name((_) => de_MaintenanceWindowExecutionTaskIdentityList(_, context), "WindowExecutionTaskIdentities")
|
|
9495
9497
|
});
|
|
9496
9498
|
}, "de_DescribeMaintenanceWindowExecutionTasksResult");
|
|
9497
9499
|
var de_DescribeOpsItemsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
9498
9500
|
return (0, import_smithy_client.take)(output, {
|
|
9499
9501
|
NextToken: import_smithy_client.expectString,
|
|
9500
|
-
OpsItemSummaries: (_) => de_OpsItemSummaries(_, context)
|
|
9502
|
+
OpsItemSummaries: /* @__PURE__ */ __name((_) => de_OpsItemSummaries(_, context), "OpsItemSummaries")
|
|
9501
9503
|
});
|
|
9502
9504
|
}, "de_DescribeOpsItemsResponse");
|
|
9503
9505
|
var de_DescribeParametersResult = /* @__PURE__ */ __name((output, context) => {
|
|
9504
9506
|
return (0, import_smithy_client.take)(output, {
|
|
9505
9507
|
NextToken: import_smithy_client.expectString,
|
|
9506
|
-
Parameters: (_) => de_ParameterMetadataList(_, context)
|
|
9508
|
+
Parameters: /* @__PURE__ */ __name((_) => de_ParameterMetadataList(_, context), "Parameters")
|
|
9507
9509
|
});
|
|
9508
9510
|
}, "de_DescribeParametersResult");
|
|
9509
9511
|
var de_DescribeSessionsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
9510
9512
|
return (0, import_smithy_client.take)(output, {
|
|
9511
9513
|
NextToken: import_smithy_client.expectString,
|
|
9512
|
-
Sessions: (_) => de_SessionList(_, context)
|
|
9514
|
+
Sessions: /* @__PURE__ */ __name((_) => de_SessionList(_, context), "Sessions")
|
|
9513
9515
|
});
|
|
9514
9516
|
}, "de_DescribeSessionsResponse");
|
|
9515
9517
|
var de_DocumentDescription = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -9519,7 +9521,7 @@ var de_DocumentDescription = /* @__PURE__ */ __name((output, context) => {
|
|
|
9519
9521
|
Author: import_smithy_client.expectString,
|
|
9520
9522
|
Category: import_smithy_client._json,
|
|
9521
9523
|
CategoryEnum: import_smithy_client._json,
|
|
9522
|
-
CreatedDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9524
|
+
CreatedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedDate"),
|
|
9523
9525
|
DefaultVersion: import_smithy_client.expectString,
|
|
9524
9526
|
Description: import_smithy_client.expectString,
|
|
9525
9527
|
DisplayName: import_smithy_client.expectString,
|
|
@@ -9535,7 +9537,7 @@ var de_DocumentDescription = /* @__PURE__ */ __name((output, context) => {
|
|
|
9535
9537
|
PendingReviewVersion: import_smithy_client.expectString,
|
|
9536
9538
|
PlatformTypes: import_smithy_client._json,
|
|
9537
9539
|
Requires: import_smithy_client._json,
|
|
9538
|
-
ReviewInformation: (_) => de_ReviewInformationList(_, context),
|
|
9540
|
+
ReviewInformation: /* @__PURE__ */ __name((_) => de_ReviewInformationList(_, context), "ReviewInformation"),
|
|
9539
9541
|
ReviewStatus: import_smithy_client.expectString,
|
|
9540
9542
|
SchemaVersion: import_smithy_client.expectString,
|
|
9541
9543
|
Sha1: import_smithy_client.expectString,
|
|
@@ -9549,7 +9551,7 @@ var de_DocumentDescription = /* @__PURE__ */ __name((output, context) => {
|
|
|
9549
9551
|
var de_DocumentIdentifier = /* @__PURE__ */ __name((output, context) => {
|
|
9550
9552
|
return (0, import_smithy_client.take)(output, {
|
|
9551
9553
|
Author: import_smithy_client.expectString,
|
|
9552
|
-
CreatedDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9554
|
+
CreatedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedDate"),
|
|
9553
9555
|
DisplayName: import_smithy_client.expectString,
|
|
9554
9556
|
DocumentFormat: import_smithy_client.expectString,
|
|
9555
9557
|
DocumentType: import_smithy_client.expectString,
|
|
@@ -9573,7 +9575,7 @@ var de_DocumentIdentifierList = /* @__PURE__ */ __name((output, context) => {
|
|
|
9573
9575
|
}, "de_DocumentIdentifierList");
|
|
9574
9576
|
var de_DocumentMetadataResponseInfo = /* @__PURE__ */ __name((output, context) => {
|
|
9575
9577
|
return (0, import_smithy_client.take)(output, {
|
|
9576
|
-
ReviewerResponse: (_) => de_DocumentReviewerResponseList(_, context)
|
|
9578
|
+
ReviewerResponse: /* @__PURE__ */ __name((_) => de_DocumentReviewerResponseList(_, context), "ReviewerResponse")
|
|
9577
9579
|
});
|
|
9578
9580
|
}, "de_DocumentMetadataResponseInfo");
|
|
9579
9581
|
var de_DocumentReviewerResponseList = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -9585,15 +9587,15 @@ var de_DocumentReviewerResponseList = /* @__PURE__ */ __name((output, context) =
|
|
|
9585
9587
|
var de_DocumentReviewerResponseSource = /* @__PURE__ */ __name((output, context) => {
|
|
9586
9588
|
return (0, import_smithy_client.take)(output, {
|
|
9587
9589
|
Comment: import_smithy_client._json,
|
|
9588
|
-
CreateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9590
|
+
CreateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreateTime"),
|
|
9589
9591
|
ReviewStatus: import_smithy_client.expectString,
|
|
9590
9592
|
Reviewer: import_smithy_client.expectString,
|
|
9591
|
-
UpdatedTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_)))
|
|
9593
|
+
UpdatedTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "UpdatedTime")
|
|
9592
9594
|
});
|
|
9593
9595
|
}, "de_DocumentReviewerResponseSource");
|
|
9594
9596
|
var de_DocumentVersionInfo = /* @__PURE__ */ __name((output, context) => {
|
|
9595
9597
|
return (0, import_smithy_client.take)(output, {
|
|
9596
|
-
CreatedDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9598
|
+
CreatedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedDate"),
|
|
9597
9599
|
DisplayName: import_smithy_client.expectString,
|
|
9598
9600
|
DocumentFormat: import_smithy_client.expectString,
|
|
9599
9601
|
DocumentVersion: import_smithy_client.expectString,
|
|
@@ -9613,8 +9615,8 @@ var de_DocumentVersionList = /* @__PURE__ */ __name((output, context) => {
|
|
|
9613
9615
|
}, "de_DocumentVersionList");
|
|
9614
9616
|
var de_EffectivePatch = /* @__PURE__ */ __name((output, context) => {
|
|
9615
9617
|
return (0, import_smithy_client.take)(output, {
|
|
9616
|
-
Patch: (_) => de_Patch(_, context),
|
|
9617
|
-
PatchStatus: (_) => de_PatchStatus(_, context)
|
|
9618
|
+
Patch: /* @__PURE__ */ __name((_) => de_Patch(_, context), "Patch"),
|
|
9619
|
+
PatchStatus: /* @__PURE__ */ __name((_) => de_PatchStatus(_, context), "PatchStatus")
|
|
9618
9620
|
});
|
|
9619
9621
|
}, "de_EffectivePatch");
|
|
9620
9622
|
var de_EffectivePatchList = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -9625,14 +9627,14 @@ var de_EffectivePatchList = /* @__PURE__ */ __name((output, context) => {
|
|
|
9625
9627
|
}, "de_EffectivePatchList");
|
|
9626
9628
|
var de_GetAutomationExecutionResult = /* @__PURE__ */ __name((output, context) => {
|
|
9627
9629
|
return (0, import_smithy_client.take)(output, {
|
|
9628
|
-
AutomationExecution: (_) => de_AutomationExecution(_, context)
|
|
9630
|
+
AutomationExecution: /* @__PURE__ */ __name((_) => de_AutomationExecution(_, context), "AutomationExecution")
|
|
9629
9631
|
});
|
|
9630
9632
|
}, "de_GetAutomationExecutionResult");
|
|
9631
9633
|
var de_GetDocumentResult = /* @__PURE__ */ __name((output, context) => {
|
|
9632
9634
|
return (0, import_smithy_client.take)(output, {
|
|
9633
9635
|
AttachmentsContent: import_smithy_client._json,
|
|
9634
9636
|
Content: import_smithy_client.expectString,
|
|
9635
|
-
CreatedDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9637
|
+
CreatedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedDate"),
|
|
9636
9638
|
DisplayName: import_smithy_client.expectString,
|
|
9637
9639
|
DocumentFormat: import_smithy_client.expectString,
|
|
9638
9640
|
DocumentType: import_smithy_client.expectString,
|
|
@@ -9647,8 +9649,8 @@ var de_GetDocumentResult = /* @__PURE__ */ __name((output, context) => {
|
|
|
9647
9649
|
}, "de_GetDocumentResult");
|
|
9648
9650
|
var de_GetExecutionPreviewResponse = /* @__PURE__ */ __name((output, context) => {
|
|
9649
9651
|
return (0, import_smithy_client.take)(output, {
|
|
9650
|
-
EndedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9651
|
-
ExecutionPreview: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
9652
|
+
EndedAt: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "EndedAt"),
|
|
9653
|
+
ExecutionPreview: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)), "ExecutionPreview"),
|
|
9652
9654
|
ExecutionPreviewId: import_smithy_client.expectString,
|
|
9653
9655
|
Status: import_smithy_client.expectString,
|
|
9654
9656
|
StatusMessage: import_smithy_client.expectString
|
|
@@ -9656,8 +9658,8 @@ var de_GetExecutionPreviewResponse = /* @__PURE__ */ __name((output, context) =>
|
|
|
9656
9658
|
}, "de_GetExecutionPreviewResponse");
|
|
9657
9659
|
var de_GetMaintenanceWindowExecutionResult = /* @__PURE__ */ __name((output, context) => {
|
|
9658
9660
|
return (0, import_smithy_client.take)(output, {
|
|
9659
|
-
EndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9660
|
-
StartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9661
|
+
EndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "EndTime"),
|
|
9662
|
+
StartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartTime"),
|
|
9661
9663
|
Status: import_smithy_client.expectString,
|
|
9662
9664
|
StatusDetails: import_smithy_client.expectString,
|
|
9663
9665
|
TaskIds: import_smithy_client._json,
|
|
@@ -9666,12 +9668,12 @@ var de_GetMaintenanceWindowExecutionResult = /* @__PURE__ */ __name((output, con
|
|
|
9666
9668
|
}, "de_GetMaintenanceWindowExecutionResult");
|
|
9667
9669
|
var de_GetMaintenanceWindowExecutionTaskInvocationResult = /* @__PURE__ */ __name((output, context) => {
|
|
9668
9670
|
return (0, import_smithy_client.take)(output, {
|
|
9669
|
-
EndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9671
|
+
EndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "EndTime"),
|
|
9670
9672
|
ExecutionId: import_smithy_client.expectString,
|
|
9671
9673
|
InvocationId: import_smithy_client.expectString,
|
|
9672
9674
|
OwnerInformation: import_smithy_client.expectString,
|
|
9673
9675
|
Parameters: import_smithy_client.expectString,
|
|
9674
|
-
StartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9676
|
+
StartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartTime"),
|
|
9675
9677
|
Status: import_smithy_client.expectString,
|
|
9676
9678
|
StatusDetails: import_smithy_client.expectString,
|
|
9677
9679
|
TaskExecutionId: import_smithy_client.expectString,
|
|
@@ -9683,12 +9685,12 @@ var de_GetMaintenanceWindowExecutionTaskInvocationResult = /* @__PURE__ */ __nam
|
|
|
9683
9685
|
var de_GetMaintenanceWindowExecutionTaskResult = /* @__PURE__ */ __name((output, context) => {
|
|
9684
9686
|
return (0, import_smithy_client.take)(output, {
|
|
9685
9687
|
AlarmConfiguration: import_smithy_client._json,
|
|
9686
|
-
EndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9688
|
+
EndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "EndTime"),
|
|
9687
9689
|
MaxConcurrency: import_smithy_client.expectString,
|
|
9688
9690
|
MaxErrors: import_smithy_client.expectString,
|
|
9689
9691
|
Priority: import_smithy_client.expectInt32,
|
|
9690
9692
|
ServiceRole: import_smithy_client.expectString,
|
|
9691
|
-
StartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9693
|
+
StartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartTime"),
|
|
9692
9694
|
Status: import_smithy_client.expectString,
|
|
9693
9695
|
StatusDetails: import_smithy_client.expectString,
|
|
9694
9696
|
TaskArn: import_smithy_client.expectString,
|
|
@@ -9702,13 +9704,13 @@ var de_GetMaintenanceWindowExecutionTaskResult = /* @__PURE__ */ __name((output,
|
|
|
9702
9704
|
var de_GetMaintenanceWindowResult = /* @__PURE__ */ __name((output, context) => {
|
|
9703
9705
|
return (0, import_smithy_client.take)(output, {
|
|
9704
9706
|
AllowUnassociatedTargets: import_smithy_client.expectBoolean,
|
|
9705
|
-
CreatedDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9707
|
+
CreatedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedDate"),
|
|
9706
9708
|
Cutoff: import_smithy_client.expectInt32,
|
|
9707
9709
|
Description: import_smithy_client.expectString,
|
|
9708
9710
|
Duration: import_smithy_client.expectInt32,
|
|
9709
9711
|
Enabled: import_smithy_client.expectBoolean,
|
|
9710
9712
|
EndDate: import_smithy_client.expectString,
|
|
9711
|
-
ModifiedDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9713
|
+
ModifiedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ModifiedDate"),
|
|
9712
9714
|
Name: import_smithy_client.expectString,
|
|
9713
9715
|
NextExecutionTime: import_smithy_client.expectString,
|
|
9714
9716
|
Schedule: import_smithy_client.expectString,
|
|
@@ -9731,7 +9733,7 @@ var de_GetMaintenanceWindowTaskResult = /* @__PURE__ */ __name((output, context)
|
|
|
9731
9733
|
ServiceRoleArn: import_smithy_client.expectString,
|
|
9732
9734
|
Targets: import_smithy_client._json,
|
|
9733
9735
|
TaskArn: import_smithy_client.expectString,
|
|
9734
|
-
TaskInvocationParameters: (_) => de_MaintenanceWindowTaskInvocationParameters(_, context),
|
|
9736
|
+
TaskInvocationParameters: /* @__PURE__ */ __name((_) => de_MaintenanceWindowTaskInvocationParameters(_, context), "TaskInvocationParameters"),
|
|
9735
9737
|
TaskParameters: import_smithy_client._json,
|
|
9736
9738
|
TaskType: import_smithy_client.expectString,
|
|
9737
9739
|
WindowId: import_smithy_client.expectString,
|
|
@@ -9740,30 +9742,30 @@ var de_GetMaintenanceWindowTaskResult = /* @__PURE__ */ __name((output, context)
|
|
|
9740
9742
|
}, "de_GetMaintenanceWindowTaskResult");
|
|
9741
9743
|
var de_GetOpsItemResponse = /* @__PURE__ */ __name((output, context) => {
|
|
9742
9744
|
return (0, import_smithy_client.take)(output, {
|
|
9743
|
-
OpsItem: (_) => de_OpsItem(_, context)
|
|
9745
|
+
OpsItem: /* @__PURE__ */ __name((_) => de_OpsItem(_, context), "OpsItem")
|
|
9744
9746
|
});
|
|
9745
9747
|
}, "de_GetOpsItemResponse");
|
|
9746
9748
|
var de_GetParameterHistoryResult = /* @__PURE__ */ __name((output, context) => {
|
|
9747
9749
|
return (0, import_smithy_client.take)(output, {
|
|
9748
9750
|
NextToken: import_smithy_client.expectString,
|
|
9749
|
-
Parameters: (_) => de_ParameterHistoryList(_, context)
|
|
9751
|
+
Parameters: /* @__PURE__ */ __name((_) => de_ParameterHistoryList(_, context), "Parameters")
|
|
9750
9752
|
});
|
|
9751
9753
|
}, "de_GetParameterHistoryResult");
|
|
9752
9754
|
var de_GetParameterResult = /* @__PURE__ */ __name((output, context) => {
|
|
9753
9755
|
return (0, import_smithy_client.take)(output, {
|
|
9754
|
-
Parameter: (_) => de_Parameter(_, context)
|
|
9756
|
+
Parameter: /* @__PURE__ */ __name((_) => de_Parameter(_, context), "Parameter")
|
|
9755
9757
|
});
|
|
9756
9758
|
}, "de_GetParameterResult");
|
|
9757
9759
|
var de_GetParametersByPathResult = /* @__PURE__ */ __name((output, context) => {
|
|
9758
9760
|
return (0, import_smithy_client.take)(output, {
|
|
9759
9761
|
NextToken: import_smithy_client.expectString,
|
|
9760
|
-
Parameters: (_) => de_ParameterList(_, context)
|
|
9762
|
+
Parameters: /* @__PURE__ */ __name((_) => de_ParameterList(_, context), "Parameters")
|
|
9761
9763
|
});
|
|
9762
9764
|
}, "de_GetParametersByPathResult");
|
|
9763
9765
|
var de_GetParametersResult = /* @__PURE__ */ __name((output, context) => {
|
|
9764
9766
|
return (0, import_smithy_client.take)(output, {
|
|
9765
9767
|
InvalidParameters: import_smithy_client._json,
|
|
9766
|
-
Parameters: (_) => de_ParameterList(_, context)
|
|
9768
|
+
Parameters: /* @__PURE__ */ __name((_) => de_ParameterList(_, context), "Parameters")
|
|
9767
9769
|
});
|
|
9768
9770
|
}, "de_GetParametersResult");
|
|
9769
9771
|
var de_GetPatchBaselineResult = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -9772,11 +9774,12 @@ var de_GetPatchBaselineResult = /* @__PURE__ */ __name((output, context) => {
|
|
|
9772
9774
|
ApprovedPatches: import_smithy_client._json,
|
|
9773
9775
|
ApprovedPatchesComplianceLevel: import_smithy_client.expectString,
|
|
9774
9776
|
ApprovedPatchesEnableNonSecurity: import_smithy_client.expectBoolean,
|
|
9777
|
+
AvailableSecurityUpdatesComplianceStatus: import_smithy_client.expectString,
|
|
9775
9778
|
BaselineId: import_smithy_client.expectString,
|
|
9776
|
-
CreatedDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9779
|
+
CreatedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedDate"),
|
|
9777
9780
|
Description: import_smithy_client.expectString,
|
|
9778
9781
|
GlobalFilters: import_smithy_client._json,
|
|
9779
|
-
ModifiedDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9782
|
+
ModifiedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ModifiedDate"),
|
|
9780
9783
|
Name: import_smithy_client.expectString,
|
|
9781
9784
|
OperatingSystem: import_smithy_client.expectString,
|
|
9782
9785
|
PatchGroups: import_smithy_client._json,
|
|
@@ -9787,7 +9790,7 @@ var de_GetPatchBaselineResult = /* @__PURE__ */ __name((output, context) => {
|
|
|
9787
9790
|
}, "de_GetPatchBaselineResult");
|
|
9788
9791
|
var de_GetServiceSettingResult = /* @__PURE__ */ __name((output, context) => {
|
|
9789
9792
|
return (0, import_smithy_client.take)(output, {
|
|
9790
|
-
ServiceSetting: (_) => de_ServiceSetting(_, context)
|
|
9793
|
+
ServiceSetting: /* @__PURE__ */ __name((_) => de_ServiceSetting(_, context), "ServiceSetting")
|
|
9791
9794
|
});
|
|
9792
9795
|
}, "de_GetServiceSettingResult");
|
|
9793
9796
|
var de_InstanceAssociationStatusInfo = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -9798,7 +9801,7 @@ var de_InstanceAssociationStatusInfo = /* @__PURE__ */ __name((output, context)
|
|
|
9798
9801
|
DetailedStatus: import_smithy_client.expectString,
|
|
9799
9802
|
DocumentVersion: import_smithy_client.expectString,
|
|
9800
9803
|
ErrorCode: import_smithy_client.expectString,
|
|
9801
|
-
ExecutionDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9804
|
+
ExecutionDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ExecutionDate"),
|
|
9802
9805
|
ExecutionSummary: import_smithy_client.expectString,
|
|
9803
9806
|
InstanceId: import_smithy_client.expectString,
|
|
9804
9807
|
Name: import_smithy_client.expectString,
|
|
@@ -9823,15 +9826,15 @@ var de_InstanceInformation = /* @__PURE__ */ __name((output, context) => {
|
|
|
9823
9826
|
IamRole: import_smithy_client.expectString,
|
|
9824
9827
|
InstanceId: import_smithy_client.expectString,
|
|
9825
9828
|
IsLatestVersion: import_smithy_client.expectBoolean,
|
|
9826
|
-
LastAssociationExecutionDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9827
|
-
LastPingDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9828
|
-
LastSuccessfulAssociationExecutionDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9829
|
+
LastAssociationExecutionDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastAssociationExecutionDate"),
|
|
9830
|
+
LastPingDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastPingDateTime"),
|
|
9831
|
+
LastSuccessfulAssociationExecutionDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastSuccessfulAssociationExecutionDate"),
|
|
9829
9832
|
Name: import_smithy_client.expectString,
|
|
9830
9833
|
PingStatus: import_smithy_client.expectString,
|
|
9831
9834
|
PlatformName: import_smithy_client.expectString,
|
|
9832
9835
|
PlatformType: import_smithy_client.expectString,
|
|
9833
9836
|
PlatformVersion: import_smithy_client.expectString,
|
|
9834
|
-
RegistrationDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9837
|
+
RegistrationDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "RegistrationDate"),
|
|
9835
9838
|
ResourceType: import_smithy_client.expectString,
|
|
9836
9839
|
SourceId: import_smithy_client.expectString,
|
|
9837
9840
|
SourceType: import_smithy_client.expectString
|
|
@@ -9845,6 +9848,7 @@ var de_InstanceInformationList = /* @__PURE__ */ __name((output, context) => {
|
|
|
9845
9848
|
}, "de_InstanceInformationList");
|
|
9846
9849
|
var de_InstancePatchState = /* @__PURE__ */ __name((output, context) => {
|
|
9847
9850
|
return (0, import_smithy_client.take)(output, {
|
|
9851
|
+
AvailableSecurityUpdateCount: import_smithy_client.expectInt32,
|
|
9848
9852
|
BaselineId: import_smithy_client.expectString,
|
|
9849
9853
|
CriticalNonCompliantCount: import_smithy_client.expectInt32,
|
|
9850
9854
|
FailedCount: import_smithy_client.expectInt32,
|
|
@@ -9854,12 +9858,12 @@ var de_InstancePatchState = /* @__PURE__ */ __name((output, context) => {
|
|
|
9854
9858
|
InstalledPendingRebootCount: import_smithy_client.expectInt32,
|
|
9855
9859
|
InstalledRejectedCount: import_smithy_client.expectInt32,
|
|
9856
9860
|
InstanceId: import_smithy_client.expectString,
|
|
9857
|
-
LastNoRebootInstallOperationTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9861
|
+
LastNoRebootInstallOperationTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastNoRebootInstallOperationTime"),
|
|
9858
9862
|
MissingCount: import_smithy_client.expectInt32,
|
|
9859
9863
|
NotApplicableCount: import_smithy_client.expectInt32,
|
|
9860
9864
|
Operation: import_smithy_client.expectString,
|
|
9861
|
-
OperationEndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9862
|
-
OperationStartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9865
|
+
OperationEndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "OperationEndTime"),
|
|
9866
|
+
OperationStartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "OperationStartTime"),
|
|
9863
9867
|
OtherNonCompliantCount: import_smithy_client.expectInt32,
|
|
9864
9868
|
OwnerInformation: import_smithy_client.expectString,
|
|
9865
9869
|
PatchGroup: import_smithy_client.expectString,
|
|
@@ -9902,16 +9906,16 @@ var de_InstanceProperty = /* @__PURE__ */ __name((output, context) => {
|
|
|
9902
9906
|
InstanceState: import_smithy_client.expectString,
|
|
9903
9907
|
InstanceType: import_smithy_client.expectString,
|
|
9904
9908
|
KeyName: import_smithy_client.expectString,
|
|
9905
|
-
LastAssociationExecutionDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9906
|
-
LastPingDateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9907
|
-
LastSuccessfulAssociationExecutionDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9908
|
-
LaunchTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9909
|
+
LastAssociationExecutionDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastAssociationExecutionDate"),
|
|
9910
|
+
LastPingDateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastPingDateTime"),
|
|
9911
|
+
LastSuccessfulAssociationExecutionDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastSuccessfulAssociationExecutionDate"),
|
|
9912
|
+
LaunchTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LaunchTime"),
|
|
9909
9913
|
Name: import_smithy_client.expectString,
|
|
9910
9914
|
PingStatus: import_smithy_client.expectString,
|
|
9911
9915
|
PlatformName: import_smithy_client.expectString,
|
|
9912
9916
|
PlatformType: import_smithy_client.expectString,
|
|
9913
9917
|
PlatformVersion: import_smithy_client.expectString,
|
|
9914
|
-
RegistrationDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9918
|
+
RegistrationDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "RegistrationDate"),
|
|
9915
9919
|
ResourceType: import_smithy_client.expectString,
|
|
9916
9920
|
SourceId: import_smithy_client.expectString,
|
|
9917
9921
|
SourceType: import_smithy_client.expectString
|
|
@@ -9926,41 +9930,41 @@ var de_InventoryDeletionsList = /* @__PURE__ */ __name((output, context) => {
|
|
|
9926
9930
|
var de_InventoryDeletionStatusItem = /* @__PURE__ */ __name((output, context) => {
|
|
9927
9931
|
return (0, import_smithy_client.take)(output, {
|
|
9928
9932
|
DeletionId: import_smithy_client.expectString,
|
|
9929
|
-
DeletionStartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9933
|
+
DeletionStartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "DeletionStartTime"),
|
|
9930
9934
|
DeletionSummary: import_smithy_client._json,
|
|
9931
9935
|
LastStatus: import_smithy_client.expectString,
|
|
9932
9936
|
LastStatusMessage: import_smithy_client.expectString,
|
|
9933
|
-
LastStatusUpdateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
9937
|
+
LastStatusUpdateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastStatusUpdateTime"),
|
|
9934
9938
|
TypeName: import_smithy_client.expectString
|
|
9935
9939
|
});
|
|
9936
9940
|
}, "de_InventoryDeletionStatusItem");
|
|
9937
9941
|
var de_ListAssociationsResult = /* @__PURE__ */ __name((output, context) => {
|
|
9938
9942
|
return (0, import_smithy_client.take)(output, {
|
|
9939
|
-
Associations: (_) => de_AssociationList(_, context),
|
|
9943
|
+
Associations: /* @__PURE__ */ __name((_) => de_AssociationList(_, context), "Associations"),
|
|
9940
9944
|
NextToken: import_smithy_client.expectString
|
|
9941
9945
|
});
|
|
9942
9946
|
}, "de_ListAssociationsResult");
|
|
9943
9947
|
var de_ListAssociationVersionsResult = /* @__PURE__ */ __name((output, context) => {
|
|
9944
9948
|
return (0, import_smithy_client.take)(output, {
|
|
9945
|
-
AssociationVersions: (_) => de_AssociationVersionList(_, context),
|
|
9949
|
+
AssociationVersions: /* @__PURE__ */ __name((_) => de_AssociationVersionList(_, context), "AssociationVersions"),
|
|
9946
9950
|
NextToken: import_smithy_client.expectString
|
|
9947
9951
|
});
|
|
9948
9952
|
}, "de_ListAssociationVersionsResult");
|
|
9949
9953
|
var de_ListCommandInvocationsResult = /* @__PURE__ */ __name((output, context) => {
|
|
9950
9954
|
return (0, import_smithy_client.take)(output, {
|
|
9951
|
-
CommandInvocations: (_) => de_CommandInvocationList(_, context),
|
|
9955
|
+
CommandInvocations: /* @__PURE__ */ __name((_) => de_CommandInvocationList(_, context), "CommandInvocations"),
|
|
9952
9956
|
NextToken: import_smithy_client.expectString
|
|
9953
9957
|
});
|
|
9954
9958
|
}, "de_ListCommandInvocationsResult");
|
|
9955
9959
|
var de_ListCommandsResult = /* @__PURE__ */ __name((output, context) => {
|
|
9956
9960
|
return (0, import_smithy_client.take)(output, {
|
|
9957
|
-
Commands: (_) => de_CommandList(_, context),
|
|
9961
|
+
Commands: /* @__PURE__ */ __name((_) => de_CommandList(_, context), "Commands"),
|
|
9958
9962
|
NextToken: import_smithy_client.expectString
|
|
9959
9963
|
});
|
|
9960
9964
|
}, "de_ListCommandsResult");
|
|
9961
9965
|
var de_ListComplianceItemsResult = /* @__PURE__ */ __name((output, context) => {
|
|
9962
9966
|
return (0, import_smithy_client.take)(output, {
|
|
9963
|
-
ComplianceItems: (_) => de_ComplianceItemList(_, context),
|
|
9967
|
+
ComplianceItems: /* @__PURE__ */ __name((_) => de_ComplianceItemList(_, context), "ComplianceItems"),
|
|
9964
9968
|
NextToken: import_smithy_client.expectString
|
|
9965
9969
|
});
|
|
9966
9970
|
}, "de_ListComplianceItemsResult");
|
|
@@ -9968,63 +9972,63 @@ var de_ListDocumentMetadataHistoryResponse = /* @__PURE__ */ __name((output, con
|
|
|
9968
9972
|
return (0, import_smithy_client.take)(output, {
|
|
9969
9973
|
Author: import_smithy_client.expectString,
|
|
9970
9974
|
DocumentVersion: import_smithy_client.expectString,
|
|
9971
|
-
Metadata: (_) => de_DocumentMetadataResponseInfo(_, context),
|
|
9975
|
+
Metadata: /* @__PURE__ */ __name((_) => de_DocumentMetadataResponseInfo(_, context), "Metadata"),
|
|
9972
9976
|
Name: import_smithy_client.expectString,
|
|
9973
9977
|
NextToken: import_smithy_client.expectString
|
|
9974
9978
|
});
|
|
9975
9979
|
}, "de_ListDocumentMetadataHistoryResponse");
|
|
9976
9980
|
var de_ListDocumentsResult = /* @__PURE__ */ __name((output, context) => {
|
|
9977
9981
|
return (0, import_smithy_client.take)(output, {
|
|
9978
|
-
DocumentIdentifiers: (_) => de_DocumentIdentifierList(_, context),
|
|
9982
|
+
DocumentIdentifiers: /* @__PURE__ */ __name((_) => de_DocumentIdentifierList(_, context), "DocumentIdentifiers"),
|
|
9979
9983
|
NextToken: import_smithy_client.expectString
|
|
9980
9984
|
});
|
|
9981
9985
|
}, "de_ListDocumentsResult");
|
|
9982
9986
|
var de_ListDocumentVersionsResult = /* @__PURE__ */ __name((output, context) => {
|
|
9983
9987
|
return (0, import_smithy_client.take)(output, {
|
|
9984
|
-
DocumentVersions: (_) => de_DocumentVersionList(_, context),
|
|
9988
|
+
DocumentVersions: /* @__PURE__ */ __name((_) => de_DocumentVersionList(_, context), "DocumentVersions"),
|
|
9985
9989
|
NextToken: import_smithy_client.expectString
|
|
9986
9990
|
});
|
|
9987
9991
|
}, "de_ListDocumentVersionsResult");
|
|
9988
9992
|
var de_ListNodesResult = /* @__PURE__ */ __name((output, context) => {
|
|
9989
9993
|
return (0, import_smithy_client.take)(output, {
|
|
9990
9994
|
NextToken: import_smithy_client.expectString,
|
|
9991
|
-
Nodes: (_) => de_NodeList(_, context)
|
|
9995
|
+
Nodes: /* @__PURE__ */ __name((_) => de_NodeList(_, context), "Nodes")
|
|
9992
9996
|
});
|
|
9993
9997
|
}, "de_ListNodesResult");
|
|
9994
9998
|
var de_ListOpsItemEventsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
9995
9999
|
return (0, import_smithy_client.take)(output, {
|
|
9996
10000
|
NextToken: import_smithy_client.expectString,
|
|
9997
|
-
Summaries: (_) => de_OpsItemEventSummaries(_, context)
|
|
10001
|
+
Summaries: /* @__PURE__ */ __name((_) => de_OpsItemEventSummaries(_, context), "Summaries")
|
|
9998
10002
|
});
|
|
9999
10003
|
}, "de_ListOpsItemEventsResponse");
|
|
10000
10004
|
var de_ListOpsItemRelatedItemsResponse = /* @__PURE__ */ __name((output, context) => {
|
|
10001
10005
|
return (0, import_smithy_client.take)(output, {
|
|
10002
10006
|
NextToken: import_smithy_client.expectString,
|
|
10003
|
-
Summaries: (_) => de_OpsItemRelatedItemSummaries(_, context)
|
|
10007
|
+
Summaries: /* @__PURE__ */ __name((_) => de_OpsItemRelatedItemSummaries(_, context), "Summaries")
|
|
10004
10008
|
});
|
|
10005
10009
|
}, "de_ListOpsItemRelatedItemsResponse");
|
|
10006
10010
|
var de_ListOpsMetadataResult = /* @__PURE__ */ __name((output, context) => {
|
|
10007
10011
|
return (0, import_smithy_client.take)(output, {
|
|
10008
10012
|
NextToken: import_smithy_client.expectString,
|
|
10009
|
-
OpsMetadataList: (_) => de_OpsMetadataList(_, context)
|
|
10013
|
+
OpsMetadataList: /* @__PURE__ */ __name((_) => de_OpsMetadataList(_, context), "OpsMetadataList")
|
|
10010
10014
|
});
|
|
10011
10015
|
}, "de_ListOpsMetadataResult");
|
|
10012
10016
|
var de_ListResourceComplianceSummariesResult = /* @__PURE__ */ __name((output, context) => {
|
|
10013
10017
|
return (0, import_smithy_client.take)(output, {
|
|
10014
10018
|
NextToken: import_smithy_client.expectString,
|
|
10015
|
-
ResourceComplianceSummaryItems: (_) => de_ResourceComplianceSummaryItemList(_, context)
|
|
10019
|
+
ResourceComplianceSummaryItems: /* @__PURE__ */ __name((_) => de_ResourceComplianceSummaryItemList(_, context), "ResourceComplianceSummaryItems")
|
|
10016
10020
|
});
|
|
10017
10021
|
}, "de_ListResourceComplianceSummariesResult");
|
|
10018
10022
|
var de_ListResourceDataSyncResult = /* @__PURE__ */ __name((output, context) => {
|
|
10019
10023
|
return (0, import_smithy_client.take)(output, {
|
|
10020
10024
|
NextToken: import_smithy_client.expectString,
|
|
10021
|
-
ResourceDataSyncItems: (_) => de_ResourceDataSyncItemList(_, context)
|
|
10025
|
+
ResourceDataSyncItems: /* @__PURE__ */ __name((_) => de_ResourceDataSyncItemList(_, context), "ResourceDataSyncItems")
|
|
10022
10026
|
});
|
|
10023
10027
|
}, "de_ListResourceDataSyncResult");
|
|
10024
10028
|
var de_MaintenanceWindowExecution = /* @__PURE__ */ __name((output, context) => {
|
|
10025
10029
|
return (0, import_smithy_client.take)(output, {
|
|
10026
|
-
EndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10027
|
-
StartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10030
|
+
EndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "EndTime"),
|
|
10031
|
+
StartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartTime"),
|
|
10028
10032
|
Status: import_smithy_client.expectString,
|
|
10029
10033
|
StatusDetails: import_smithy_client.expectString,
|
|
10030
10034
|
WindowExecutionId: import_smithy_client.expectString,
|
|
@@ -10040,8 +10044,8 @@ var de_MaintenanceWindowExecutionList = /* @__PURE__ */ __name((output, context)
|
|
|
10040
10044
|
var de_MaintenanceWindowExecutionTaskIdentity = /* @__PURE__ */ __name((output, context) => {
|
|
10041
10045
|
return (0, import_smithy_client.take)(output, {
|
|
10042
10046
|
AlarmConfiguration: import_smithy_client._json,
|
|
10043
|
-
EndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10044
|
-
StartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10047
|
+
EndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "EndTime"),
|
|
10048
|
+
StartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartTime"),
|
|
10045
10049
|
Status: import_smithy_client.expectString,
|
|
10046
10050
|
StatusDetails: import_smithy_client.expectString,
|
|
10047
10051
|
TaskArn: import_smithy_client.expectString,
|
|
@@ -10059,12 +10063,12 @@ var de_MaintenanceWindowExecutionTaskIdentityList = /* @__PURE__ */ __name((outp
|
|
|
10059
10063
|
}, "de_MaintenanceWindowExecutionTaskIdentityList");
|
|
10060
10064
|
var de_MaintenanceWindowExecutionTaskInvocationIdentity = /* @__PURE__ */ __name((output, context) => {
|
|
10061
10065
|
return (0, import_smithy_client.take)(output, {
|
|
10062
|
-
EndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10066
|
+
EndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "EndTime"),
|
|
10063
10067
|
ExecutionId: import_smithy_client.expectString,
|
|
10064
10068
|
InvocationId: import_smithy_client.expectString,
|
|
10065
10069
|
OwnerInformation: import_smithy_client.expectString,
|
|
10066
10070
|
Parameters: import_smithy_client.expectString,
|
|
10067
|
-
StartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10071
|
+
StartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartTime"),
|
|
10068
10072
|
Status: import_smithy_client.expectString,
|
|
10069
10073
|
StatusDetails: import_smithy_client.expectString,
|
|
10070
10074
|
TaskExecutionId: import_smithy_client.expectString,
|
|
@@ -10089,16 +10093,16 @@ var de_MaintenanceWindowLambdaParameters = /* @__PURE__ */ __name((output, conte
|
|
|
10089
10093
|
var de_MaintenanceWindowTaskInvocationParameters = /* @__PURE__ */ __name((output, context) => {
|
|
10090
10094
|
return (0, import_smithy_client.take)(output, {
|
|
10091
10095
|
Automation: import_smithy_client._json,
|
|
10092
|
-
Lambda: (_) => de_MaintenanceWindowLambdaParameters(_, context),
|
|
10096
|
+
Lambda: /* @__PURE__ */ __name((_) => de_MaintenanceWindowLambdaParameters(_, context), "Lambda"),
|
|
10093
10097
|
RunCommand: import_smithy_client._json,
|
|
10094
10098
|
StepFunctions: import_smithy_client._json
|
|
10095
10099
|
});
|
|
10096
10100
|
}, "de_MaintenanceWindowTaskInvocationParameters");
|
|
10097
10101
|
var de_Node = /* @__PURE__ */ __name((output, context) => {
|
|
10098
10102
|
return (0, import_smithy_client.take)(output, {
|
|
10099
|
-
CaptureTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10103
|
+
CaptureTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CaptureTime"),
|
|
10100
10104
|
Id: import_smithy_client.expectString,
|
|
10101
|
-
NodeType: (_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)),
|
|
10105
|
+
NodeType: /* @__PURE__ */ __name((_) => (0, import_smithy_client._json)((0, import_core2.awsExpectUnion)(_)), "NodeType"),
|
|
10102
10106
|
Owner: import_smithy_client._json,
|
|
10103
10107
|
Region: import_smithy_client.expectString
|
|
10104
10108
|
});
|
|
@@ -10111,21 +10115,21 @@ var de_NodeList = /* @__PURE__ */ __name((output, context) => {
|
|
|
10111
10115
|
}, "de_NodeList");
|
|
10112
10116
|
var de_OpsItem = /* @__PURE__ */ __name((output, context) => {
|
|
10113
10117
|
return (0, import_smithy_client.take)(output, {
|
|
10114
|
-
ActualEndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10115
|
-
ActualStartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10118
|
+
ActualEndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ActualEndTime"),
|
|
10119
|
+
ActualStartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ActualStartTime"),
|
|
10116
10120
|
Category: import_smithy_client.expectString,
|
|
10117
10121
|
CreatedBy: import_smithy_client.expectString,
|
|
10118
|
-
CreatedTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10122
|
+
CreatedTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedTime"),
|
|
10119
10123
|
Description: import_smithy_client.expectString,
|
|
10120
10124
|
LastModifiedBy: import_smithy_client.expectString,
|
|
10121
|
-
LastModifiedTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10125
|
+
LastModifiedTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastModifiedTime"),
|
|
10122
10126
|
Notifications: import_smithy_client._json,
|
|
10123
10127
|
OperationalData: import_smithy_client._json,
|
|
10124
10128
|
OpsItemArn: import_smithy_client.expectString,
|
|
10125
10129
|
OpsItemId: import_smithy_client.expectString,
|
|
10126
10130
|
OpsItemType: import_smithy_client.expectString,
|
|
10127
|
-
PlannedEndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10128
|
-
PlannedStartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10131
|
+
PlannedEndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "PlannedEndTime"),
|
|
10132
|
+
PlannedStartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "PlannedStartTime"),
|
|
10129
10133
|
Priority: import_smithy_client.expectInt32,
|
|
10130
10134
|
RelatedOpsItems: import_smithy_client._json,
|
|
10131
10135
|
Severity: import_smithy_client.expectString,
|
|
@@ -10144,7 +10148,7 @@ var de_OpsItemEventSummaries = /* @__PURE__ */ __name((output, context) => {
|
|
|
10144
10148
|
var de_OpsItemEventSummary = /* @__PURE__ */ __name((output, context) => {
|
|
10145
10149
|
return (0, import_smithy_client.take)(output, {
|
|
10146
10150
|
CreatedBy: import_smithy_client._json,
|
|
10147
|
-
CreatedTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10151
|
+
CreatedTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedTime"),
|
|
10148
10152
|
Detail: import_smithy_client.expectString,
|
|
10149
10153
|
DetailType: import_smithy_client.expectString,
|
|
10150
10154
|
EventId: import_smithy_client.expectString,
|
|
@@ -10163,9 +10167,9 @@ var de_OpsItemRelatedItemSummary = /* @__PURE__ */ __name((output, context) => {
|
|
|
10163
10167
|
AssociationId: import_smithy_client.expectString,
|
|
10164
10168
|
AssociationType: import_smithy_client.expectString,
|
|
10165
10169
|
CreatedBy: import_smithy_client._json,
|
|
10166
|
-
CreatedTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10170
|
+
CreatedTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedTime"),
|
|
10167
10171
|
LastModifiedBy: import_smithy_client._json,
|
|
10168
|
-
LastModifiedTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10172
|
+
LastModifiedTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastModifiedTime"),
|
|
10169
10173
|
OpsItemId: import_smithy_client.expectString,
|
|
10170
10174
|
ResourceType: import_smithy_client.expectString,
|
|
10171
10175
|
ResourceUri: import_smithy_client.expectString
|
|
@@ -10179,18 +10183,18 @@ var de_OpsItemSummaries = /* @__PURE__ */ __name((output, context) => {
|
|
|
10179
10183
|
}, "de_OpsItemSummaries");
|
|
10180
10184
|
var de_OpsItemSummary = /* @__PURE__ */ __name((output, context) => {
|
|
10181
10185
|
return (0, import_smithy_client.take)(output, {
|
|
10182
|
-
ActualEndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10183
|
-
ActualStartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10186
|
+
ActualEndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ActualEndTime"),
|
|
10187
|
+
ActualStartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ActualStartTime"),
|
|
10184
10188
|
Category: import_smithy_client.expectString,
|
|
10185
10189
|
CreatedBy: import_smithy_client.expectString,
|
|
10186
|
-
CreatedTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10190
|
+
CreatedTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedTime"),
|
|
10187
10191
|
LastModifiedBy: import_smithy_client.expectString,
|
|
10188
|
-
LastModifiedTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10192
|
+
LastModifiedTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastModifiedTime"),
|
|
10189
10193
|
OperationalData: import_smithy_client._json,
|
|
10190
10194
|
OpsItemId: import_smithy_client.expectString,
|
|
10191
10195
|
OpsItemType: import_smithy_client.expectString,
|
|
10192
|
-
PlannedEndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10193
|
-
PlannedStartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10196
|
+
PlannedEndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "PlannedEndTime"),
|
|
10197
|
+
PlannedStartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "PlannedStartTime"),
|
|
10194
10198
|
Priority: import_smithy_client.expectInt32,
|
|
10195
10199
|
Severity: import_smithy_client.expectString,
|
|
10196
10200
|
Source: import_smithy_client.expectString,
|
|
@@ -10200,8 +10204,8 @@ var de_OpsItemSummary = /* @__PURE__ */ __name((output, context) => {
|
|
|
10200
10204
|
}, "de_OpsItemSummary");
|
|
10201
10205
|
var de_OpsMetadata = /* @__PURE__ */ __name((output, context) => {
|
|
10202
10206
|
return (0, import_smithy_client.take)(output, {
|
|
10203
|
-
CreationDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10204
|
-
LastModifiedDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10207
|
+
CreationDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreationDate"),
|
|
10208
|
+
LastModifiedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastModifiedDate"),
|
|
10205
10209
|
LastModifiedUser: import_smithy_client.expectString,
|
|
10206
10210
|
OpsMetadataArn: import_smithy_client.expectString,
|
|
10207
10211
|
ResourceId: import_smithy_client.expectString
|
|
@@ -10217,7 +10221,7 @@ var de_Parameter = /* @__PURE__ */ __name((output, context) => {
|
|
|
10217
10221
|
return (0, import_smithy_client.take)(output, {
|
|
10218
10222
|
ARN: import_smithy_client.expectString,
|
|
10219
10223
|
DataType: import_smithy_client.expectString,
|
|
10220
|
-
LastModifiedDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10224
|
+
LastModifiedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastModifiedDate"),
|
|
10221
10225
|
Name: import_smithy_client.expectString,
|
|
10222
10226
|
Selector: import_smithy_client.expectString,
|
|
10223
10227
|
SourceResult: import_smithy_client.expectString,
|
|
@@ -10233,7 +10237,7 @@ var de_ParameterHistory = /* @__PURE__ */ __name((output, context) => {
|
|
|
10233
10237
|
Description: import_smithy_client.expectString,
|
|
10234
10238
|
KeyId: import_smithy_client.expectString,
|
|
10235
10239
|
Labels: import_smithy_client._json,
|
|
10236
|
-
LastModifiedDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10240
|
+
LastModifiedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastModifiedDate"),
|
|
10237
10241
|
LastModifiedUser: import_smithy_client.expectString,
|
|
10238
10242
|
Name: import_smithy_client.expectString,
|
|
10239
10243
|
Policies: import_smithy_client._json,
|
|
@@ -10262,7 +10266,7 @@ var de_ParameterMetadata = /* @__PURE__ */ __name((output, context) => {
|
|
|
10262
10266
|
DataType: import_smithy_client.expectString,
|
|
10263
10267
|
Description: import_smithy_client.expectString,
|
|
10264
10268
|
KeyId: import_smithy_client.expectString,
|
|
10265
|
-
LastModifiedDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10269
|
+
LastModifiedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastModifiedDate"),
|
|
10266
10270
|
LastModifiedUser: import_smithy_client.expectString,
|
|
10267
10271
|
Name: import_smithy_client.expectString,
|
|
10268
10272
|
Policies: import_smithy_client._json,
|
|
@@ -10296,7 +10300,7 @@ var de_Patch = /* @__PURE__ */ __name((output, context) => {
|
|
|
10296
10300
|
Product: import_smithy_client.expectString,
|
|
10297
10301
|
ProductFamily: import_smithy_client.expectString,
|
|
10298
10302
|
Release: import_smithy_client.expectString,
|
|
10299
|
-
ReleaseDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10303
|
+
ReleaseDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ReleaseDate"),
|
|
10300
10304
|
Repository: import_smithy_client.expectString,
|
|
10301
10305
|
Severity: import_smithy_client.expectString,
|
|
10302
10306
|
Title: import_smithy_client.expectString,
|
|
@@ -10308,7 +10312,7 @@ var de_PatchComplianceData = /* @__PURE__ */ __name((output, context) => {
|
|
|
10308
10312
|
return (0, import_smithy_client.take)(output, {
|
|
10309
10313
|
CVEIds: import_smithy_client.expectString,
|
|
10310
10314
|
Classification: import_smithy_client.expectString,
|
|
10311
|
-
InstalledTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10315
|
+
InstalledTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "InstalledTime"),
|
|
10312
10316
|
KBId: import_smithy_client.expectString,
|
|
10313
10317
|
Severity: import_smithy_client.expectString,
|
|
10314
10318
|
State: import_smithy_client.expectString,
|
|
@@ -10329,21 +10333,21 @@ var de_PatchList = /* @__PURE__ */ __name((output, context) => {
|
|
|
10329
10333
|
}, "de_PatchList");
|
|
10330
10334
|
var de_PatchStatus = /* @__PURE__ */ __name((output, context) => {
|
|
10331
10335
|
return (0, import_smithy_client.take)(output, {
|
|
10332
|
-
ApprovalDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10336
|
+
ApprovalDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ApprovalDate"),
|
|
10333
10337
|
ComplianceLevel: import_smithy_client.expectString,
|
|
10334
10338
|
DeploymentStatus: import_smithy_client.expectString
|
|
10335
10339
|
});
|
|
10336
10340
|
}, "de_PatchStatus");
|
|
10337
10341
|
var de_ResetServiceSettingResult = /* @__PURE__ */ __name((output, context) => {
|
|
10338
10342
|
return (0, import_smithy_client.take)(output, {
|
|
10339
|
-
ServiceSetting: (_) => de_ServiceSetting(_, context)
|
|
10343
|
+
ServiceSetting: /* @__PURE__ */ __name((_) => de_ServiceSetting(_, context), "ServiceSetting")
|
|
10340
10344
|
});
|
|
10341
10345
|
}, "de_ResetServiceSettingResult");
|
|
10342
10346
|
var de_ResourceComplianceSummaryItem = /* @__PURE__ */ __name((output, context) => {
|
|
10343
10347
|
return (0, import_smithy_client.take)(output, {
|
|
10344
10348
|
ComplianceType: import_smithy_client.expectString,
|
|
10345
10349
|
CompliantSummary: import_smithy_client._json,
|
|
10346
|
-
ExecutionSummary: (_) => de_ComplianceExecutionSummary(_, context),
|
|
10350
|
+
ExecutionSummary: /* @__PURE__ */ __name((_) => de_ComplianceExecutionSummary(_, context), "ExecutionSummary"),
|
|
10347
10351
|
NonCompliantSummary: import_smithy_client._json,
|
|
10348
10352
|
OverallSeverity: import_smithy_client.expectString,
|
|
10349
10353
|
ResourceId: import_smithy_client.expectString,
|
|
@@ -10360,12 +10364,12 @@ var de_ResourceComplianceSummaryItemList = /* @__PURE__ */ __name((output, conte
|
|
|
10360
10364
|
var de_ResourceDataSyncItem = /* @__PURE__ */ __name((output, context) => {
|
|
10361
10365
|
return (0, import_smithy_client.take)(output, {
|
|
10362
10366
|
LastStatus: import_smithy_client.expectString,
|
|
10363
|
-
LastSuccessfulSyncTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10367
|
+
LastSuccessfulSyncTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastSuccessfulSyncTime"),
|
|
10364
10368
|
LastSyncStatusMessage: import_smithy_client.expectString,
|
|
10365
|
-
LastSyncTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10369
|
+
LastSyncTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastSyncTime"),
|
|
10366
10370
|
S3Destination: import_smithy_client._json,
|
|
10367
|
-
SyncCreatedTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10368
|
-
SyncLastModifiedTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10371
|
+
SyncCreatedTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "SyncCreatedTime"),
|
|
10372
|
+
SyncLastModifiedTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "SyncLastModifiedTime"),
|
|
10369
10373
|
SyncName: import_smithy_client.expectString,
|
|
10370
10374
|
SyncSource: import_smithy_client._json,
|
|
10371
10375
|
SyncType: import_smithy_client.expectString
|
|
@@ -10379,7 +10383,7 @@ var de_ResourceDataSyncItemList = /* @__PURE__ */ __name((output, context) => {
|
|
|
10379
10383
|
}, "de_ResourceDataSyncItemList");
|
|
10380
10384
|
var de_ReviewInformation = /* @__PURE__ */ __name((output, context) => {
|
|
10381
10385
|
return (0, import_smithy_client.take)(output, {
|
|
10382
|
-
ReviewedTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10386
|
+
ReviewedTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ReviewedTime"),
|
|
10383
10387
|
Reviewer: import_smithy_client.expectString,
|
|
10384
10388
|
Status: import_smithy_client.expectString
|
|
10385
10389
|
});
|
|
@@ -10392,13 +10396,13 @@ var de_ReviewInformationList = /* @__PURE__ */ __name((output, context) => {
|
|
|
10392
10396
|
}, "de_ReviewInformationList");
|
|
10393
10397
|
var de_SendCommandResult = /* @__PURE__ */ __name((output, context) => {
|
|
10394
10398
|
return (0, import_smithy_client.take)(output, {
|
|
10395
|
-
Command: (_) => de_Command(_, context)
|
|
10399
|
+
Command: /* @__PURE__ */ __name((_) => de_Command(_, context), "Command")
|
|
10396
10400
|
});
|
|
10397
10401
|
}, "de_SendCommandResult");
|
|
10398
10402
|
var de_ServiceSetting = /* @__PURE__ */ __name((output, context) => {
|
|
10399
10403
|
return (0, import_smithy_client.take)(output, {
|
|
10400
10404
|
ARN: import_smithy_client.expectString,
|
|
10401
|
-
LastModifiedDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10405
|
+
LastModifiedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastModifiedDate"),
|
|
10402
10406
|
LastModifiedUser: import_smithy_client.expectString,
|
|
10403
10407
|
SettingId: import_smithy_client.expectString,
|
|
10404
10408
|
SettingValue: import_smithy_client.expectString,
|
|
@@ -10409,13 +10413,13 @@ var de_Session = /* @__PURE__ */ __name((output, context) => {
|
|
|
10409
10413
|
return (0, import_smithy_client.take)(output, {
|
|
10410
10414
|
Details: import_smithy_client.expectString,
|
|
10411
10415
|
DocumentName: import_smithy_client.expectString,
|
|
10412
|
-
EndDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10416
|
+
EndDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "EndDate"),
|
|
10413
10417
|
MaxSessionDuration: import_smithy_client.expectString,
|
|
10414
10418
|
OutputUrl: import_smithy_client._json,
|
|
10415
10419
|
Owner: import_smithy_client.expectString,
|
|
10416
10420
|
Reason: import_smithy_client.expectString,
|
|
10417
10421
|
SessionId: import_smithy_client.expectString,
|
|
10418
|
-
StartDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10422
|
+
StartDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "StartDate"),
|
|
10419
10423
|
Status: import_smithy_client.expectString,
|
|
10420
10424
|
Target: import_smithy_client.expectString
|
|
10421
10425
|
});
|
|
@@ -10429,8 +10433,8 @@ var de_SessionList = /* @__PURE__ */ __name((output, context) => {
|
|
|
10429
10433
|
var de_StepExecution = /* @__PURE__ */ __name((output, context) => {
|
|
10430
10434
|
return (0, import_smithy_client.take)(output, {
|
|
10431
10435
|
Action: import_smithy_client.expectString,
|
|
10432
|
-
ExecutionEndTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10433
|
-
ExecutionStartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10436
|
+
ExecutionEndTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ExecutionEndTime"),
|
|
10437
|
+
ExecutionStartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ExecutionStartTime"),
|
|
10434
10438
|
FailureDetails: import_smithy_client._json,
|
|
10435
10439
|
FailureMessage: import_smithy_client.expectString,
|
|
10436
10440
|
Inputs: import_smithy_client._json,
|
|
@@ -10462,17 +10466,17 @@ var de_StepExecutionList = /* @__PURE__ */ __name((output, context) => {
|
|
|
10462
10466
|
}, "de_StepExecutionList");
|
|
10463
10467
|
var de_UpdateAssociationResult = /* @__PURE__ */ __name((output, context) => {
|
|
10464
10468
|
return (0, import_smithy_client.take)(output, {
|
|
10465
|
-
AssociationDescription: (_) => de_AssociationDescription(_, context)
|
|
10469
|
+
AssociationDescription: /* @__PURE__ */ __name((_) => de_AssociationDescription(_, context), "AssociationDescription")
|
|
10466
10470
|
});
|
|
10467
10471
|
}, "de_UpdateAssociationResult");
|
|
10468
10472
|
var de_UpdateAssociationStatusResult = /* @__PURE__ */ __name((output, context) => {
|
|
10469
10473
|
return (0, import_smithy_client.take)(output, {
|
|
10470
|
-
AssociationDescription: (_) => de_AssociationDescription(_, context)
|
|
10474
|
+
AssociationDescription: /* @__PURE__ */ __name((_) => de_AssociationDescription(_, context), "AssociationDescription")
|
|
10471
10475
|
});
|
|
10472
10476
|
}, "de_UpdateAssociationStatusResult");
|
|
10473
10477
|
var de_UpdateDocumentResult = /* @__PURE__ */ __name((output, context) => {
|
|
10474
10478
|
return (0, import_smithy_client.take)(output, {
|
|
10475
|
-
DocumentDescription: (_) => de_DocumentDescription(_, context)
|
|
10479
|
+
DocumentDescription: /* @__PURE__ */ __name((_) => de_DocumentDescription(_, context), "DocumentDescription")
|
|
10476
10480
|
});
|
|
10477
10481
|
}, "de_UpdateDocumentResult");
|
|
10478
10482
|
var de_UpdateMaintenanceWindowTaskResult = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -10488,7 +10492,7 @@ var de_UpdateMaintenanceWindowTaskResult = /* @__PURE__ */ __name((output, conte
|
|
|
10488
10492
|
ServiceRoleArn: import_smithy_client.expectString,
|
|
10489
10493
|
Targets: import_smithy_client._json,
|
|
10490
10494
|
TaskArn: import_smithy_client.expectString,
|
|
10491
|
-
TaskInvocationParameters: (_) => de_MaintenanceWindowTaskInvocationParameters(_, context),
|
|
10495
|
+
TaskInvocationParameters: /* @__PURE__ */ __name((_) => de_MaintenanceWindowTaskInvocationParameters(_, context), "TaskInvocationParameters"),
|
|
10492
10496
|
TaskParameters: import_smithy_client._json,
|
|
10493
10497
|
WindowId: import_smithy_client.expectString,
|
|
10494
10498
|
WindowTaskId: import_smithy_client.expectString
|
|
@@ -10500,11 +10504,12 @@ var de_UpdatePatchBaselineResult = /* @__PURE__ */ __name((output, context) => {
|
|
|
10500
10504
|
ApprovedPatches: import_smithy_client._json,
|
|
10501
10505
|
ApprovedPatchesComplianceLevel: import_smithy_client.expectString,
|
|
10502
10506
|
ApprovedPatchesEnableNonSecurity: import_smithy_client.expectBoolean,
|
|
10507
|
+
AvailableSecurityUpdatesComplianceStatus: import_smithy_client.expectString,
|
|
10503
10508
|
BaselineId: import_smithy_client.expectString,
|
|
10504
|
-
CreatedDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10509
|
+
CreatedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "CreatedDate"),
|
|
10505
10510
|
Description: import_smithy_client.expectString,
|
|
10506
10511
|
GlobalFilters: import_smithy_client._json,
|
|
10507
|
-
ModifiedDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
10512
|
+
ModifiedDate: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "ModifiedDate"),
|
|
10508
10513
|
Name: import_smithy_client.expectString,
|
|
10509
10514
|
OperatingSystem: import_smithy_client.expectString,
|
|
10510
10515
|
RejectedPatches: import_smithy_client._json,
|
|
@@ -13412,6 +13417,7 @@ var waitUntilCommandExecuted = /* @__PURE__ */ __name(async (params, input) => {
|
|
|
13412
13417
|
OpsMetadataTooManyUpdatesException,
|
|
13413
13418
|
PatchComplianceLevel,
|
|
13414
13419
|
PatchFilterKey,
|
|
13420
|
+
PatchComplianceStatus,
|
|
13415
13421
|
OperatingSystem,
|
|
13416
13422
|
PatchAction,
|
|
13417
13423
|
ResourceDataSyncS3Format,
|