@aws-sdk/client-config-service 3.716.0 → 3.723.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 +741 -581
- package/dist-es/ConfigServiceClient.js +1 -0
- package/dist-es/models/models_0.js +82 -82
- package/dist-es/models/models_1.js +30 -30
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -356,7 +356,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
356
356
|
}, "resolveRuntimeExtensions");
|
|
357
357
|
|
|
358
358
|
// src/ConfigServiceClient.ts
|
|
359
|
-
var
|
|
359
|
+
var ConfigServiceClient = class extends import_smithy_client.Client {
|
|
360
|
+
static {
|
|
361
|
+
__name(this, "ConfigServiceClient");
|
|
362
|
+
}
|
|
363
|
+
/**
|
|
364
|
+
* The resolved configuration of ConfigServiceClient class. This is resolved and normalized from the {@link ConfigServiceClientConfig | constructor configuration interface}.
|
|
365
|
+
*/
|
|
366
|
+
config;
|
|
360
367
|
constructor(...[configuration]) {
|
|
361
368
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
362
369
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -366,7 +373,7 @@ var _ConfigServiceClient = class _ConfigServiceClient extends import_smithy_clie
|
|
|
366
373
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
367
374
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
368
375
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
369
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
376
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
370
377
|
super(_config_8);
|
|
371
378
|
this.config = _config_8;
|
|
372
379
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -394,8 +401,6 @@ var _ConfigServiceClient = class _ConfigServiceClient extends import_smithy_clie
|
|
|
394
401
|
super.destroy();
|
|
395
402
|
}
|
|
396
403
|
};
|
|
397
|
-
__name(_ConfigServiceClient, "ConfigServiceClient");
|
|
398
|
-
var ConfigServiceClient = _ConfigServiceClient;
|
|
399
404
|
|
|
400
405
|
// src/ConfigService.ts
|
|
401
406
|
|
|
@@ -412,7 +417,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
412
417
|
|
|
413
418
|
// src/models/ConfigServiceServiceException.ts
|
|
414
419
|
|
|
415
|
-
var
|
|
420
|
+
var ConfigServiceServiceException = class _ConfigServiceServiceException extends import_smithy_client.ServiceException {
|
|
421
|
+
static {
|
|
422
|
+
__name(this, "ConfigServiceServiceException");
|
|
423
|
+
}
|
|
416
424
|
/**
|
|
417
425
|
* @internal
|
|
418
426
|
*/
|
|
@@ -421,8 +429,6 @@ var _ConfigServiceServiceException = class _ConfigServiceServiceException extend
|
|
|
421
429
|
Object.setPrototypeOf(this, _ConfigServiceServiceException.prototype);
|
|
422
430
|
}
|
|
423
431
|
};
|
|
424
|
-
__name(_ConfigServiceServiceException, "ConfigServiceServiceException");
|
|
425
|
-
var ConfigServiceServiceException = _ConfigServiceServiceException;
|
|
426
432
|
|
|
427
433
|
// src/models/models_0.ts
|
|
428
434
|
var ComplianceType = {
|
|
@@ -878,7 +884,12 @@ var RecordingScope = {
|
|
|
878
884
|
INTERNAL: "INTERNAL",
|
|
879
885
|
PAID: "PAID"
|
|
880
886
|
};
|
|
881
|
-
var
|
|
887
|
+
var ConflictException = class _ConflictException extends ConfigServiceServiceException {
|
|
888
|
+
static {
|
|
889
|
+
__name(this, "ConflictException");
|
|
890
|
+
}
|
|
891
|
+
name = "ConflictException";
|
|
892
|
+
$fault = "client";
|
|
882
893
|
/**
|
|
883
894
|
* @internal
|
|
884
895
|
*/
|
|
@@ -888,14 +899,15 @@ var _ConflictException = class _ConflictException extends ConfigServiceServiceEx
|
|
|
888
899
|
$fault: "client",
|
|
889
900
|
...opts
|
|
890
901
|
});
|
|
891
|
-
this.name = "ConflictException";
|
|
892
|
-
this.$fault = "client";
|
|
893
902
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
894
903
|
}
|
|
895
904
|
};
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
905
|
+
var NoSuchConfigurationRecorderException = class _NoSuchConfigurationRecorderException extends ConfigServiceServiceException {
|
|
906
|
+
static {
|
|
907
|
+
__name(this, "NoSuchConfigurationRecorderException");
|
|
908
|
+
}
|
|
909
|
+
name = "NoSuchConfigurationRecorderException";
|
|
910
|
+
$fault = "client";
|
|
899
911
|
/**
|
|
900
912
|
* @internal
|
|
901
913
|
*/
|
|
@@ -905,14 +917,15 @@ var _NoSuchConfigurationRecorderException = class _NoSuchConfigurationRecorderEx
|
|
|
905
917
|
$fault: "client",
|
|
906
918
|
...opts
|
|
907
919
|
});
|
|
908
|
-
this.name = "NoSuchConfigurationRecorderException";
|
|
909
|
-
this.$fault = "client";
|
|
910
920
|
Object.setPrototypeOf(this, _NoSuchConfigurationRecorderException.prototype);
|
|
911
921
|
}
|
|
912
922
|
};
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
923
|
+
var ValidationException = class _ValidationException extends ConfigServiceServiceException {
|
|
924
|
+
static {
|
|
925
|
+
__name(this, "ValidationException");
|
|
926
|
+
}
|
|
927
|
+
name = "ValidationException";
|
|
928
|
+
$fault = "client";
|
|
916
929
|
/**
|
|
917
930
|
* @internal
|
|
918
931
|
*/
|
|
@@ -922,13 +935,9 @@ var _ValidationException = class _ValidationException extends ConfigServiceServi
|
|
|
922
935
|
$fault: "client",
|
|
923
936
|
...opts
|
|
924
937
|
});
|
|
925
|
-
this.name = "ValidationException";
|
|
926
|
-
this.$fault = "client";
|
|
927
938
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
928
939
|
}
|
|
929
940
|
};
|
|
930
|
-
__name(_ValidationException, "ValidationException");
|
|
931
|
-
var ValidationException = _ValidationException;
|
|
932
941
|
var ConfigurationItemStatus = {
|
|
933
942
|
OK: "OK",
|
|
934
943
|
ResourceDeleted: "ResourceDeleted",
|
|
@@ -936,7 +945,12 @@ var ConfigurationItemStatus = {
|
|
|
936
945
|
ResourceDiscovered: "ResourceDiscovered",
|
|
937
946
|
ResourceNotRecorded: "ResourceNotRecorded"
|
|
938
947
|
};
|
|
939
|
-
var
|
|
948
|
+
var NoSuchConfigurationAggregatorException = class _NoSuchConfigurationAggregatorException extends ConfigServiceServiceException {
|
|
949
|
+
static {
|
|
950
|
+
__name(this, "NoSuchConfigurationAggregatorException");
|
|
951
|
+
}
|
|
952
|
+
name = "NoSuchConfigurationAggregatorException";
|
|
953
|
+
$fault = "client";
|
|
940
954
|
/**
|
|
941
955
|
* @internal
|
|
942
956
|
*/
|
|
@@ -946,14 +960,15 @@ var _NoSuchConfigurationAggregatorException = class _NoSuchConfigurationAggregat
|
|
|
946
960
|
$fault: "client",
|
|
947
961
|
...opts
|
|
948
962
|
});
|
|
949
|
-
this.name = "NoSuchConfigurationAggregatorException";
|
|
950
|
-
this.$fault = "client";
|
|
951
963
|
Object.setPrototypeOf(this, _NoSuchConfigurationAggregatorException.prototype);
|
|
952
964
|
}
|
|
953
965
|
};
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
966
|
+
var NoAvailableConfigurationRecorderException = class _NoAvailableConfigurationRecorderException extends ConfigServiceServiceException {
|
|
967
|
+
static {
|
|
968
|
+
__name(this, "NoAvailableConfigurationRecorderException");
|
|
969
|
+
}
|
|
970
|
+
name = "NoAvailableConfigurationRecorderException";
|
|
971
|
+
$fault = "client";
|
|
957
972
|
/**
|
|
958
973
|
* @internal
|
|
959
974
|
*/
|
|
@@ -963,13 +978,9 @@ var _NoAvailableConfigurationRecorderException = class _NoAvailableConfiguration
|
|
|
963
978
|
$fault: "client",
|
|
964
979
|
...opts
|
|
965
980
|
});
|
|
966
|
-
this.name = "NoAvailableConfigurationRecorderException";
|
|
967
|
-
this.$fault = "client";
|
|
968
981
|
Object.setPrototypeOf(this, _NoAvailableConfigurationRecorderException.prototype);
|
|
969
982
|
}
|
|
970
983
|
};
|
|
971
|
-
__name(_NoAvailableConfigurationRecorderException, "NoAvailableConfigurationRecorderException");
|
|
972
|
-
var NoAvailableConfigurationRecorderException = _NoAvailableConfigurationRecorderException;
|
|
973
984
|
var ChronologicalOrder = {
|
|
974
985
|
Forward: "Forward",
|
|
975
986
|
Reverse: "Reverse"
|
|
@@ -1026,7 +1037,12 @@ var ConformancePackState = {
|
|
|
1026
1037
|
DELETE_FAILED: "DELETE_FAILED",
|
|
1027
1038
|
DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS"
|
|
1028
1039
|
};
|
|
1029
|
-
var
|
|
1040
|
+
var ConformancePackTemplateValidationException = class _ConformancePackTemplateValidationException extends ConfigServiceServiceException {
|
|
1041
|
+
static {
|
|
1042
|
+
__name(this, "ConformancePackTemplateValidationException");
|
|
1043
|
+
}
|
|
1044
|
+
name = "ConformancePackTemplateValidationException";
|
|
1045
|
+
$fault = "client";
|
|
1030
1046
|
/**
|
|
1031
1047
|
* @internal
|
|
1032
1048
|
*/
|
|
@@ -1036,14 +1052,15 @@ var _ConformancePackTemplateValidationException = class _ConformancePackTemplate
|
|
|
1036
1052
|
$fault: "client",
|
|
1037
1053
|
...opts
|
|
1038
1054
|
});
|
|
1039
|
-
this.name = "ConformancePackTemplateValidationException";
|
|
1040
|
-
this.$fault = "client";
|
|
1041
1055
|
Object.setPrototypeOf(this, _ConformancePackTemplateValidationException.prototype);
|
|
1042
1056
|
}
|
|
1043
1057
|
};
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1058
|
+
var InvalidParameterValueException = class _InvalidParameterValueException extends ConfigServiceServiceException {
|
|
1059
|
+
static {
|
|
1060
|
+
__name(this, "InvalidParameterValueException");
|
|
1061
|
+
}
|
|
1062
|
+
name = "InvalidParameterValueException";
|
|
1063
|
+
$fault = "client";
|
|
1047
1064
|
/**
|
|
1048
1065
|
* @internal
|
|
1049
1066
|
*/
|
|
@@ -1053,14 +1070,15 @@ var _InvalidParameterValueException = class _InvalidParameterValueException exte
|
|
|
1053
1070
|
$fault: "client",
|
|
1054
1071
|
...opts
|
|
1055
1072
|
});
|
|
1056
|
-
this.name = "InvalidParameterValueException";
|
|
1057
|
-
this.$fault = "client";
|
|
1058
1073
|
Object.setPrototypeOf(this, _InvalidParameterValueException.prototype);
|
|
1059
1074
|
}
|
|
1060
1075
|
};
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1076
|
+
var NoSuchConfigRuleException = class _NoSuchConfigRuleException extends ConfigServiceServiceException {
|
|
1077
|
+
static {
|
|
1078
|
+
__name(this, "NoSuchConfigRuleException");
|
|
1079
|
+
}
|
|
1080
|
+
name = "NoSuchConfigRuleException";
|
|
1081
|
+
$fault = "client";
|
|
1064
1082
|
/**
|
|
1065
1083
|
* @internal
|
|
1066
1084
|
*/
|
|
@@ -1070,14 +1088,15 @@ var _NoSuchConfigRuleException = class _NoSuchConfigRuleException extends Config
|
|
|
1070
1088
|
$fault: "client",
|
|
1071
1089
|
...opts
|
|
1072
1090
|
});
|
|
1073
|
-
this.name = "NoSuchConfigRuleException";
|
|
1074
|
-
this.$fault = "client";
|
|
1075
1091
|
Object.setPrototypeOf(this, _NoSuchConfigRuleException.prototype);
|
|
1076
1092
|
}
|
|
1077
1093
|
};
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1094
|
+
var ResourceInUseException = class _ResourceInUseException extends ConfigServiceServiceException {
|
|
1095
|
+
static {
|
|
1096
|
+
__name(this, "ResourceInUseException");
|
|
1097
|
+
}
|
|
1098
|
+
name = "ResourceInUseException";
|
|
1099
|
+
$fault = "client";
|
|
1081
1100
|
/**
|
|
1082
1101
|
* @internal
|
|
1083
1102
|
*/
|
|
@@ -1087,14 +1106,15 @@ var _ResourceInUseException = class _ResourceInUseException extends ConfigServic
|
|
|
1087
1106
|
$fault: "client",
|
|
1088
1107
|
...opts
|
|
1089
1108
|
});
|
|
1090
|
-
this.name = "ResourceInUseException";
|
|
1091
|
-
this.$fault = "client";
|
|
1092
1109
|
Object.setPrototypeOf(this, _ResourceInUseException.prototype);
|
|
1093
1110
|
}
|
|
1094
1111
|
};
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1112
|
+
var UnmodifiableEntityException = class _UnmodifiableEntityException extends ConfigServiceServiceException {
|
|
1113
|
+
static {
|
|
1114
|
+
__name(this, "UnmodifiableEntityException");
|
|
1115
|
+
}
|
|
1116
|
+
name = "UnmodifiableEntityException";
|
|
1117
|
+
$fault = "client";
|
|
1098
1118
|
/**
|
|
1099
1119
|
* @internal
|
|
1100
1120
|
*/
|
|
@@ -1104,14 +1124,15 @@ var _UnmodifiableEntityException = class _UnmodifiableEntityException extends Co
|
|
|
1104
1124
|
$fault: "client",
|
|
1105
1125
|
...opts
|
|
1106
1126
|
});
|
|
1107
|
-
this.name = "UnmodifiableEntityException";
|
|
1108
|
-
this.$fault = "client";
|
|
1109
1127
|
Object.setPrototypeOf(this, _UnmodifiableEntityException.prototype);
|
|
1110
1128
|
}
|
|
1111
1129
|
};
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1130
|
+
var NoSuchConformancePackException = class _NoSuchConformancePackException extends ConfigServiceServiceException {
|
|
1131
|
+
static {
|
|
1132
|
+
__name(this, "NoSuchConformancePackException");
|
|
1133
|
+
}
|
|
1134
|
+
name = "NoSuchConformancePackException";
|
|
1135
|
+
$fault = "client";
|
|
1115
1136
|
/**
|
|
1116
1137
|
* @internal
|
|
1117
1138
|
*/
|
|
@@ -1121,14 +1142,15 @@ var _NoSuchConformancePackException = class _NoSuchConformancePackException exte
|
|
|
1121
1142
|
$fault: "client",
|
|
1122
1143
|
...opts
|
|
1123
1144
|
});
|
|
1124
|
-
this.name = "NoSuchConformancePackException";
|
|
1125
|
-
this.$fault = "client";
|
|
1126
1145
|
Object.setPrototypeOf(this, _NoSuchConformancePackException.prototype);
|
|
1127
1146
|
}
|
|
1128
1147
|
};
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1148
|
+
var LastDeliveryChannelDeleteFailedException = class _LastDeliveryChannelDeleteFailedException extends ConfigServiceServiceException {
|
|
1149
|
+
static {
|
|
1150
|
+
__name(this, "LastDeliveryChannelDeleteFailedException");
|
|
1151
|
+
}
|
|
1152
|
+
name = "LastDeliveryChannelDeleteFailedException";
|
|
1153
|
+
$fault = "client";
|
|
1132
1154
|
/**
|
|
1133
1155
|
* @internal
|
|
1134
1156
|
*/
|
|
@@ -1138,14 +1160,15 @@ var _LastDeliveryChannelDeleteFailedException = class _LastDeliveryChannelDelete
|
|
|
1138
1160
|
$fault: "client",
|
|
1139
1161
|
...opts
|
|
1140
1162
|
});
|
|
1141
|
-
this.name = "LastDeliveryChannelDeleteFailedException";
|
|
1142
|
-
this.$fault = "client";
|
|
1143
1163
|
Object.setPrototypeOf(this, _LastDeliveryChannelDeleteFailedException.prototype);
|
|
1144
1164
|
}
|
|
1145
1165
|
};
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1166
|
+
var NoSuchDeliveryChannelException = class _NoSuchDeliveryChannelException extends ConfigServiceServiceException {
|
|
1167
|
+
static {
|
|
1168
|
+
__name(this, "NoSuchDeliveryChannelException");
|
|
1169
|
+
}
|
|
1170
|
+
name = "NoSuchDeliveryChannelException";
|
|
1171
|
+
$fault = "client";
|
|
1149
1172
|
/**
|
|
1150
1173
|
* @internal
|
|
1151
1174
|
*/
|
|
@@ -1155,14 +1178,15 @@ var _NoSuchDeliveryChannelException = class _NoSuchDeliveryChannelException exte
|
|
|
1155
1178
|
$fault: "client",
|
|
1156
1179
|
...opts
|
|
1157
1180
|
});
|
|
1158
|
-
this.name = "NoSuchDeliveryChannelException";
|
|
1159
|
-
this.$fault = "client";
|
|
1160
1181
|
Object.setPrototypeOf(this, _NoSuchDeliveryChannelException.prototype);
|
|
1161
1182
|
}
|
|
1162
1183
|
};
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1184
|
+
var NoSuchOrganizationConfigRuleException = class _NoSuchOrganizationConfigRuleException extends ConfigServiceServiceException {
|
|
1185
|
+
static {
|
|
1186
|
+
__name(this, "NoSuchOrganizationConfigRuleException");
|
|
1187
|
+
}
|
|
1188
|
+
name = "NoSuchOrganizationConfigRuleException";
|
|
1189
|
+
$fault = "client";
|
|
1166
1190
|
/**
|
|
1167
1191
|
* @internal
|
|
1168
1192
|
*/
|
|
@@ -1172,14 +1196,15 @@ var _NoSuchOrganizationConfigRuleException = class _NoSuchOrganizationConfigRule
|
|
|
1172
1196
|
$fault: "client",
|
|
1173
1197
|
...opts
|
|
1174
1198
|
});
|
|
1175
|
-
this.name = "NoSuchOrganizationConfigRuleException";
|
|
1176
|
-
this.$fault = "client";
|
|
1177
1199
|
Object.setPrototypeOf(this, _NoSuchOrganizationConfigRuleException.prototype);
|
|
1178
1200
|
}
|
|
1179
1201
|
};
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1202
|
+
var OrganizationAccessDeniedException = class _OrganizationAccessDeniedException extends ConfigServiceServiceException {
|
|
1203
|
+
static {
|
|
1204
|
+
__name(this, "OrganizationAccessDeniedException");
|
|
1205
|
+
}
|
|
1206
|
+
name = "OrganizationAccessDeniedException";
|
|
1207
|
+
$fault = "client";
|
|
1183
1208
|
/**
|
|
1184
1209
|
* @internal
|
|
1185
1210
|
*/
|
|
@@ -1189,14 +1214,15 @@ var _OrganizationAccessDeniedException = class _OrganizationAccessDeniedExceptio
|
|
|
1189
1214
|
$fault: "client",
|
|
1190
1215
|
...opts
|
|
1191
1216
|
});
|
|
1192
|
-
this.name = "OrganizationAccessDeniedException";
|
|
1193
|
-
this.$fault = "client";
|
|
1194
1217
|
Object.setPrototypeOf(this, _OrganizationAccessDeniedException.prototype);
|
|
1195
1218
|
}
|
|
1196
1219
|
};
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1220
|
+
var NoSuchOrganizationConformancePackException = class _NoSuchOrganizationConformancePackException extends ConfigServiceServiceException {
|
|
1221
|
+
static {
|
|
1222
|
+
__name(this, "NoSuchOrganizationConformancePackException");
|
|
1223
|
+
}
|
|
1224
|
+
name = "NoSuchOrganizationConformancePackException";
|
|
1225
|
+
$fault = "client";
|
|
1200
1226
|
/**
|
|
1201
1227
|
* @internal
|
|
1202
1228
|
*/
|
|
@@ -1206,14 +1232,15 @@ var _NoSuchOrganizationConformancePackException = class _NoSuchOrganizationConfo
|
|
|
1206
1232
|
$fault: "client",
|
|
1207
1233
|
...opts
|
|
1208
1234
|
});
|
|
1209
|
-
this.name = "NoSuchOrganizationConformancePackException";
|
|
1210
|
-
this.$fault = "client";
|
|
1211
1235
|
Object.setPrototypeOf(this, _NoSuchOrganizationConformancePackException.prototype);
|
|
1212
1236
|
}
|
|
1213
1237
|
};
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1238
|
+
var InsufficientPermissionsException = class _InsufficientPermissionsException extends ConfigServiceServiceException {
|
|
1239
|
+
static {
|
|
1240
|
+
__name(this, "InsufficientPermissionsException");
|
|
1241
|
+
}
|
|
1242
|
+
name = "InsufficientPermissionsException";
|
|
1243
|
+
$fault = "client";
|
|
1217
1244
|
/**
|
|
1218
1245
|
* @internal
|
|
1219
1246
|
*/
|
|
@@ -1223,14 +1250,15 @@ var _InsufficientPermissionsException = class _InsufficientPermissionsException
|
|
|
1223
1250
|
$fault: "client",
|
|
1224
1251
|
...opts
|
|
1225
1252
|
});
|
|
1226
|
-
this.name = "InsufficientPermissionsException";
|
|
1227
|
-
this.$fault = "client";
|
|
1228
1253
|
Object.setPrototypeOf(this, _InsufficientPermissionsException.prototype);
|
|
1229
1254
|
}
|
|
1230
1255
|
};
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1256
|
+
var NoSuchRemediationConfigurationException = class _NoSuchRemediationConfigurationException extends ConfigServiceServiceException {
|
|
1257
|
+
static {
|
|
1258
|
+
__name(this, "NoSuchRemediationConfigurationException");
|
|
1259
|
+
}
|
|
1260
|
+
name = "NoSuchRemediationConfigurationException";
|
|
1261
|
+
$fault = "client";
|
|
1234
1262
|
/**
|
|
1235
1263
|
* @internal
|
|
1236
1264
|
*/
|
|
@@ -1240,14 +1268,15 @@ var _NoSuchRemediationConfigurationException = class _NoSuchRemediationConfigura
|
|
|
1240
1268
|
$fault: "client",
|
|
1241
1269
|
...opts
|
|
1242
1270
|
});
|
|
1243
|
-
this.name = "NoSuchRemediationConfigurationException";
|
|
1244
|
-
this.$fault = "client";
|
|
1245
1271
|
Object.setPrototypeOf(this, _NoSuchRemediationConfigurationException.prototype);
|
|
1246
1272
|
}
|
|
1247
1273
|
};
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1274
|
+
var RemediationInProgressException = class _RemediationInProgressException extends ConfigServiceServiceException {
|
|
1275
|
+
static {
|
|
1276
|
+
__name(this, "RemediationInProgressException");
|
|
1277
|
+
}
|
|
1278
|
+
name = "RemediationInProgressException";
|
|
1279
|
+
$fault = "client";
|
|
1251
1280
|
/**
|
|
1252
1281
|
* @internal
|
|
1253
1282
|
*/
|
|
@@ -1257,14 +1286,15 @@ var _RemediationInProgressException = class _RemediationInProgressException exte
|
|
|
1257
1286
|
$fault: "client",
|
|
1258
1287
|
...opts
|
|
1259
1288
|
});
|
|
1260
|
-
this.name = "RemediationInProgressException";
|
|
1261
|
-
this.$fault = "client";
|
|
1262
1289
|
Object.setPrototypeOf(this, _RemediationInProgressException.prototype);
|
|
1263
1290
|
}
|
|
1264
1291
|
};
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1292
|
+
var NoSuchRemediationExceptionException = class _NoSuchRemediationExceptionException extends ConfigServiceServiceException {
|
|
1293
|
+
static {
|
|
1294
|
+
__name(this, "NoSuchRemediationExceptionException");
|
|
1295
|
+
}
|
|
1296
|
+
name = "NoSuchRemediationExceptionException";
|
|
1297
|
+
$fault = "client";
|
|
1268
1298
|
/**
|
|
1269
1299
|
* @internal
|
|
1270
1300
|
*/
|
|
@@ -1274,14 +1304,15 @@ var _NoSuchRemediationExceptionException = class _NoSuchRemediationExceptionExce
|
|
|
1274
1304
|
$fault: "client",
|
|
1275
1305
|
...opts
|
|
1276
1306
|
});
|
|
1277
|
-
this.name = "NoSuchRemediationExceptionException";
|
|
1278
|
-
this.$fault = "client";
|
|
1279
1307
|
Object.setPrototypeOf(this, _NoSuchRemediationExceptionException.prototype);
|
|
1280
1308
|
}
|
|
1281
1309
|
};
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1310
|
+
var NoRunningConfigurationRecorderException = class _NoRunningConfigurationRecorderException extends ConfigServiceServiceException {
|
|
1311
|
+
static {
|
|
1312
|
+
__name(this, "NoRunningConfigurationRecorderException");
|
|
1313
|
+
}
|
|
1314
|
+
name = "NoRunningConfigurationRecorderException";
|
|
1315
|
+
$fault = "client";
|
|
1285
1316
|
/**
|
|
1286
1317
|
* @internal
|
|
1287
1318
|
*/
|
|
@@ -1291,14 +1322,15 @@ var _NoRunningConfigurationRecorderException = class _NoRunningConfigurationReco
|
|
|
1291
1322
|
$fault: "client",
|
|
1292
1323
|
...opts
|
|
1293
1324
|
});
|
|
1294
|
-
this.name = "NoRunningConfigurationRecorderException";
|
|
1295
|
-
this.$fault = "client";
|
|
1296
1325
|
Object.setPrototypeOf(this, _NoRunningConfigurationRecorderException.prototype);
|
|
1297
1326
|
}
|
|
1298
1327
|
};
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1328
|
+
var NoSuchRetentionConfigurationException = class _NoSuchRetentionConfigurationException extends ConfigServiceServiceException {
|
|
1329
|
+
static {
|
|
1330
|
+
__name(this, "NoSuchRetentionConfigurationException");
|
|
1331
|
+
}
|
|
1332
|
+
name = "NoSuchRetentionConfigurationException";
|
|
1333
|
+
$fault = "client";
|
|
1302
1334
|
/**
|
|
1303
1335
|
* @internal
|
|
1304
1336
|
*/
|
|
@@ -1308,14 +1340,15 @@ var _NoSuchRetentionConfigurationException = class _NoSuchRetentionConfiguration
|
|
|
1308
1340
|
$fault: "client",
|
|
1309
1341
|
...opts
|
|
1310
1342
|
});
|
|
1311
|
-
this.name = "NoSuchRetentionConfigurationException";
|
|
1312
|
-
this.$fault = "client";
|
|
1313
1343
|
Object.setPrototypeOf(this, _NoSuchRetentionConfigurationException.prototype);
|
|
1314
1344
|
}
|
|
1315
1345
|
};
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1346
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends ConfigServiceServiceException {
|
|
1347
|
+
static {
|
|
1348
|
+
__name(this, "ResourceNotFoundException");
|
|
1349
|
+
}
|
|
1350
|
+
name = "ResourceNotFoundException";
|
|
1351
|
+
$fault = "client";
|
|
1319
1352
|
/**
|
|
1320
1353
|
* @internal
|
|
1321
1354
|
*/
|
|
@@ -1325,14 +1358,15 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Config
|
|
|
1325
1358
|
$fault: "client",
|
|
1326
1359
|
...opts
|
|
1327
1360
|
});
|
|
1328
|
-
this.name = "ResourceNotFoundException";
|
|
1329
|
-
this.$fault = "client";
|
|
1330
1361
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
1331
1362
|
}
|
|
1332
1363
|
};
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1364
|
+
var InvalidLimitException = class _InvalidLimitException extends ConfigServiceServiceException {
|
|
1365
|
+
static {
|
|
1366
|
+
__name(this, "InvalidLimitException");
|
|
1367
|
+
}
|
|
1368
|
+
name = "InvalidLimitException";
|
|
1369
|
+
$fault = "client";
|
|
1336
1370
|
/**
|
|
1337
1371
|
* @internal
|
|
1338
1372
|
*/
|
|
@@ -1342,14 +1376,15 @@ var _InvalidLimitException = class _InvalidLimitException extends ConfigServiceS
|
|
|
1342
1376
|
$fault: "client",
|
|
1343
1377
|
...opts
|
|
1344
1378
|
});
|
|
1345
|
-
this.name = "InvalidLimitException";
|
|
1346
|
-
this.$fault = "client";
|
|
1347
1379
|
Object.setPrototypeOf(this, _InvalidLimitException.prototype);
|
|
1348
1380
|
}
|
|
1349
1381
|
};
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1382
|
+
var InvalidNextTokenException = class _InvalidNextTokenException extends ConfigServiceServiceException {
|
|
1383
|
+
static {
|
|
1384
|
+
__name(this, "InvalidNextTokenException");
|
|
1385
|
+
}
|
|
1386
|
+
name = "InvalidNextTokenException";
|
|
1387
|
+
$fault = "client";
|
|
1353
1388
|
/**
|
|
1354
1389
|
* @internal
|
|
1355
1390
|
*/
|
|
@@ -1359,14 +1394,15 @@ var _InvalidNextTokenException = class _InvalidNextTokenException extends Config
|
|
|
1359
1394
|
$fault: "client",
|
|
1360
1395
|
...opts
|
|
1361
1396
|
});
|
|
1362
|
-
this.name = "InvalidNextTokenException";
|
|
1363
|
-
this.$fault = "client";
|
|
1364
1397
|
Object.setPrototypeOf(this, _InvalidNextTokenException.prototype);
|
|
1365
1398
|
}
|
|
1366
1399
|
};
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1400
|
+
var NoSuchConfigRuleInConformancePackException = class _NoSuchConfigRuleInConformancePackException extends ConfigServiceServiceException {
|
|
1401
|
+
static {
|
|
1402
|
+
__name(this, "NoSuchConfigRuleInConformancePackException");
|
|
1403
|
+
}
|
|
1404
|
+
name = "NoSuchConfigRuleInConformancePackException";
|
|
1405
|
+
$fault = "client";
|
|
1370
1406
|
/**
|
|
1371
1407
|
* @internal
|
|
1372
1408
|
*/
|
|
@@ -1376,13 +1412,9 @@ var _NoSuchConfigRuleInConformancePackException = class _NoSuchConfigRuleInConfo
|
|
|
1376
1412
|
$fault: "client",
|
|
1377
1413
|
...opts
|
|
1378
1414
|
});
|
|
1379
|
-
this.name = "NoSuchConfigRuleInConformancePackException";
|
|
1380
|
-
this.$fault = "client";
|
|
1381
1415
|
Object.setPrototypeOf(this, _NoSuchConfigRuleInConformancePackException.prototype);
|
|
1382
1416
|
}
|
|
1383
1417
|
};
|
|
1384
|
-
__name(_NoSuchConfigRuleInConformancePackException, "NoSuchConfigRuleInConformancePackException");
|
|
1385
|
-
var NoSuchConfigRuleInConformancePackException = _NoSuchConfigRuleInConformancePackException;
|
|
1386
1418
|
var OrganizationConfigRuleTriggerTypeNoSN = {
|
|
1387
1419
|
CONFIGURATION_ITEM_CHANGE_NOTIFICATION: "ConfigurationItemChangeNotification",
|
|
1388
1420
|
OVERSIZED_CONFIGURATION_ITEM_CHANGE_NOTIFCATION: "OversizedConfigurationItemChangeNotification"
|
|
@@ -1441,7 +1473,12 @@ var ResourceCountGroupKey = {
|
|
|
1441
1473
|
AWS_REGION: "AWS_REGION",
|
|
1442
1474
|
RESOURCE_TYPE: "RESOURCE_TYPE"
|
|
1443
1475
|
};
|
|
1444
|
-
var
|
|
1476
|
+
var OversizedConfigurationItemException = class _OversizedConfigurationItemException extends ConfigServiceServiceException {
|
|
1477
|
+
static {
|
|
1478
|
+
__name(this, "OversizedConfigurationItemException");
|
|
1479
|
+
}
|
|
1480
|
+
name = "OversizedConfigurationItemException";
|
|
1481
|
+
$fault = "client";
|
|
1445
1482
|
/**
|
|
1446
1483
|
* @internal
|
|
1447
1484
|
*/
|
|
@@ -1451,14 +1488,15 @@ var _OversizedConfigurationItemException = class _OversizedConfigurationItemExce
|
|
|
1451
1488
|
$fault: "client",
|
|
1452
1489
|
...opts
|
|
1453
1490
|
});
|
|
1454
|
-
this.name = "OversizedConfigurationItemException";
|
|
1455
|
-
this.$fault = "client";
|
|
1456
1491
|
Object.setPrototypeOf(this, _OversizedConfigurationItemException.prototype);
|
|
1457
1492
|
}
|
|
1458
1493
|
};
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1494
|
+
var ResourceNotDiscoveredException = class _ResourceNotDiscoveredException extends ConfigServiceServiceException {
|
|
1495
|
+
static {
|
|
1496
|
+
__name(this, "ResourceNotDiscoveredException");
|
|
1497
|
+
}
|
|
1498
|
+
name = "ResourceNotDiscoveredException";
|
|
1499
|
+
$fault = "client";
|
|
1462
1500
|
/**
|
|
1463
1501
|
* @internal
|
|
1464
1502
|
*/
|
|
@@ -1468,13 +1506,9 @@ var _ResourceNotDiscoveredException = class _ResourceNotDiscoveredException exte
|
|
|
1468
1506
|
$fault: "client",
|
|
1469
1507
|
...opts
|
|
1470
1508
|
});
|
|
1471
|
-
this.name = "ResourceNotDiscoveredException";
|
|
1472
|
-
this.$fault = "client";
|
|
1473
1509
|
Object.setPrototypeOf(this, _ResourceNotDiscoveredException.prototype);
|
|
1474
1510
|
}
|
|
1475
1511
|
};
|
|
1476
|
-
__name(_ResourceNotDiscoveredException, "ResourceNotDiscoveredException");
|
|
1477
|
-
var ResourceNotDiscoveredException = _ResourceNotDiscoveredException;
|
|
1478
1512
|
var MemberAccountRuleStatus = {
|
|
1479
1513
|
CREATE_FAILED: "CREATE_FAILED",
|
|
1480
1514
|
CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
|
|
@@ -1497,7 +1531,12 @@ var OrganizationResourceDetailedStatus = {
|
|
|
1497
1531
|
UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
|
|
1498
1532
|
UPDATE_SUCCESSFUL: "UPDATE_SUCCESSFUL"
|
|
1499
1533
|
};
|
|
1500
|
-
var
|
|
1534
|
+
var InvalidTimeRangeException = class _InvalidTimeRangeException extends ConfigServiceServiceException {
|
|
1535
|
+
static {
|
|
1536
|
+
__name(this, "InvalidTimeRangeException");
|
|
1537
|
+
}
|
|
1538
|
+
name = "InvalidTimeRangeException";
|
|
1539
|
+
$fault = "client";
|
|
1501
1540
|
/**
|
|
1502
1541
|
* @internal
|
|
1503
1542
|
*/
|
|
@@ -1507,17 +1546,18 @@ var _InvalidTimeRangeException = class _InvalidTimeRangeException extends Config
|
|
|
1507
1546
|
$fault: "client",
|
|
1508
1547
|
...opts
|
|
1509
1548
|
});
|
|
1510
|
-
this.name = "InvalidTimeRangeException";
|
|
1511
|
-
this.$fault = "client";
|
|
1512
1549
|
Object.setPrototypeOf(this, _InvalidTimeRangeException.prototype);
|
|
1513
1550
|
}
|
|
1514
1551
|
};
|
|
1515
|
-
__name(_InvalidTimeRangeException, "InvalidTimeRangeException");
|
|
1516
|
-
var InvalidTimeRangeException = _InvalidTimeRangeException;
|
|
1517
1552
|
var ResourceConfigurationSchemaType = {
|
|
1518
1553
|
CFN_RESOURCE_SCHEMA: "CFN_RESOURCE_SCHEMA"
|
|
1519
1554
|
};
|
|
1520
|
-
var
|
|
1555
|
+
var IdempotentParameterMismatch = class _IdempotentParameterMismatch extends ConfigServiceServiceException {
|
|
1556
|
+
static {
|
|
1557
|
+
__name(this, "IdempotentParameterMismatch");
|
|
1558
|
+
}
|
|
1559
|
+
name = "IdempotentParameterMismatch";
|
|
1560
|
+
$fault = "client";
|
|
1521
1561
|
/**
|
|
1522
1562
|
* @internal
|
|
1523
1563
|
*/
|
|
@@ -1527,14 +1567,15 @@ var _IdempotentParameterMismatch = class _IdempotentParameterMismatch extends Co
|
|
|
1527
1567
|
$fault: "client",
|
|
1528
1568
|
...opts
|
|
1529
1569
|
});
|
|
1530
|
-
this.name = "IdempotentParameterMismatch";
|
|
1531
|
-
this.$fault = "client";
|
|
1532
1570
|
Object.setPrototypeOf(this, _IdempotentParameterMismatch.prototype);
|
|
1533
1571
|
}
|
|
1534
1572
|
};
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1573
|
+
var InsufficientDeliveryPolicyException = class _InsufficientDeliveryPolicyException extends ConfigServiceServiceException {
|
|
1574
|
+
static {
|
|
1575
|
+
__name(this, "InsufficientDeliveryPolicyException");
|
|
1576
|
+
}
|
|
1577
|
+
name = "InsufficientDeliveryPolicyException";
|
|
1578
|
+
$fault = "client";
|
|
1538
1579
|
/**
|
|
1539
1580
|
* @internal
|
|
1540
1581
|
*/
|
|
@@ -1544,14 +1585,15 @@ var _InsufficientDeliveryPolicyException = class _InsufficientDeliveryPolicyExce
|
|
|
1544
1585
|
$fault: "client",
|
|
1545
1586
|
...opts
|
|
1546
1587
|
});
|
|
1547
|
-
this.name = "InsufficientDeliveryPolicyException";
|
|
1548
|
-
this.$fault = "client";
|
|
1549
1588
|
Object.setPrototypeOf(this, _InsufficientDeliveryPolicyException.prototype);
|
|
1550
1589
|
}
|
|
1551
1590
|
};
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1591
|
+
var InvalidConfigurationRecorderNameException = class _InvalidConfigurationRecorderNameException extends ConfigServiceServiceException {
|
|
1592
|
+
static {
|
|
1593
|
+
__name(this, "InvalidConfigurationRecorderNameException");
|
|
1594
|
+
}
|
|
1595
|
+
name = "InvalidConfigurationRecorderNameException";
|
|
1596
|
+
$fault = "client";
|
|
1555
1597
|
/**
|
|
1556
1598
|
* @internal
|
|
1557
1599
|
*/
|
|
@@ -1561,14 +1603,15 @@ var _InvalidConfigurationRecorderNameException = class _InvalidConfigurationReco
|
|
|
1561
1603
|
$fault: "client",
|
|
1562
1604
|
...opts
|
|
1563
1605
|
});
|
|
1564
|
-
this.name = "InvalidConfigurationRecorderNameException";
|
|
1565
|
-
this.$fault = "client";
|
|
1566
1606
|
Object.setPrototypeOf(this, _InvalidConfigurationRecorderNameException.prototype);
|
|
1567
1607
|
}
|
|
1568
1608
|
};
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1609
|
+
var InvalidDeliveryChannelNameException = class _InvalidDeliveryChannelNameException extends ConfigServiceServiceException {
|
|
1610
|
+
static {
|
|
1611
|
+
__name(this, "InvalidDeliveryChannelNameException");
|
|
1612
|
+
}
|
|
1613
|
+
name = "InvalidDeliveryChannelNameException";
|
|
1614
|
+
$fault = "client";
|
|
1572
1615
|
/**
|
|
1573
1616
|
* @internal
|
|
1574
1617
|
*/
|
|
@@ -1578,14 +1621,15 @@ var _InvalidDeliveryChannelNameException = class _InvalidDeliveryChannelNameExce
|
|
|
1578
1621
|
$fault: "client",
|
|
1579
1622
|
...opts
|
|
1580
1623
|
});
|
|
1581
|
-
this.name = "InvalidDeliveryChannelNameException";
|
|
1582
|
-
this.$fault = "client";
|
|
1583
1624
|
Object.setPrototypeOf(this, _InvalidDeliveryChannelNameException.prototype);
|
|
1584
1625
|
}
|
|
1585
1626
|
};
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1627
|
+
var InvalidExpressionException = class _InvalidExpressionException extends ConfigServiceServiceException {
|
|
1628
|
+
static {
|
|
1629
|
+
__name(this, "InvalidExpressionException");
|
|
1630
|
+
}
|
|
1631
|
+
name = "InvalidExpressionException";
|
|
1632
|
+
$fault = "client";
|
|
1589
1633
|
/**
|
|
1590
1634
|
* @internal
|
|
1591
1635
|
*/
|
|
@@ -1595,14 +1639,15 @@ var _InvalidExpressionException = class _InvalidExpressionException extends Conf
|
|
|
1595
1639
|
$fault: "client",
|
|
1596
1640
|
...opts
|
|
1597
1641
|
});
|
|
1598
|
-
this.name = "InvalidExpressionException";
|
|
1599
|
-
this.$fault = "client";
|
|
1600
1642
|
Object.setPrototypeOf(this, _InvalidExpressionException.prototype);
|
|
1601
1643
|
}
|
|
1602
1644
|
};
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1645
|
+
var InvalidRecordingGroupException = class _InvalidRecordingGroupException extends ConfigServiceServiceException {
|
|
1646
|
+
static {
|
|
1647
|
+
__name(this, "InvalidRecordingGroupException");
|
|
1648
|
+
}
|
|
1649
|
+
name = "InvalidRecordingGroupException";
|
|
1650
|
+
$fault = "client";
|
|
1606
1651
|
/**
|
|
1607
1652
|
* @internal
|
|
1608
1653
|
*/
|
|
@@ -1612,14 +1657,15 @@ var _InvalidRecordingGroupException = class _InvalidRecordingGroupException exte
|
|
|
1612
1657
|
$fault: "client",
|
|
1613
1658
|
...opts
|
|
1614
1659
|
});
|
|
1615
|
-
this.name = "InvalidRecordingGroupException";
|
|
1616
|
-
this.$fault = "client";
|
|
1617
1660
|
Object.setPrototypeOf(this, _InvalidRecordingGroupException.prototype);
|
|
1618
1661
|
}
|
|
1619
1662
|
};
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1663
|
+
var InvalidResultTokenException = class _InvalidResultTokenException extends ConfigServiceServiceException {
|
|
1664
|
+
static {
|
|
1665
|
+
__name(this, "InvalidResultTokenException");
|
|
1666
|
+
}
|
|
1667
|
+
name = "InvalidResultTokenException";
|
|
1668
|
+
$fault = "client";
|
|
1623
1669
|
/**
|
|
1624
1670
|
* @internal
|
|
1625
1671
|
*/
|
|
@@ -1629,14 +1675,15 @@ var _InvalidResultTokenException = class _InvalidResultTokenException extends Co
|
|
|
1629
1675
|
$fault: "client",
|
|
1630
1676
|
...opts
|
|
1631
1677
|
});
|
|
1632
|
-
this.name = "InvalidResultTokenException";
|
|
1633
|
-
this.$fault = "client";
|
|
1634
1678
|
Object.setPrototypeOf(this, _InvalidResultTokenException.prototype);
|
|
1635
1679
|
}
|
|
1636
1680
|
};
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1681
|
+
var InvalidRoleException = class _InvalidRoleException extends ConfigServiceServiceException {
|
|
1682
|
+
static {
|
|
1683
|
+
__name(this, "InvalidRoleException");
|
|
1684
|
+
}
|
|
1685
|
+
name = "InvalidRoleException";
|
|
1686
|
+
$fault = "client";
|
|
1640
1687
|
/**
|
|
1641
1688
|
* @internal
|
|
1642
1689
|
*/
|
|
@@ -1646,14 +1693,15 @@ var _InvalidRoleException = class _InvalidRoleException extends ConfigServiceSer
|
|
|
1646
1693
|
$fault: "client",
|
|
1647
1694
|
...opts
|
|
1648
1695
|
});
|
|
1649
|
-
this.name = "InvalidRoleException";
|
|
1650
|
-
this.$fault = "client";
|
|
1651
1696
|
Object.setPrototypeOf(this, _InvalidRoleException.prototype);
|
|
1652
1697
|
}
|
|
1653
1698
|
};
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1699
|
+
var InvalidS3KeyPrefixException = class _InvalidS3KeyPrefixException extends ConfigServiceServiceException {
|
|
1700
|
+
static {
|
|
1701
|
+
__name(this, "InvalidS3KeyPrefixException");
|
|
1702
|
+
}
|
|
1703
|
+
name = "InvalidS3KeyPrefixException";
|
|
1704
|
+
$fault = "client";
|
|
1657
1705
|
/**
|
|
1658
1706
|
* @internal
|
|
1659
1707
|
*/
|
|
@@ -1663,14 +1711,15 @@ var _InvalidS3KeyPrefixException = class _InvalidS3KeyPrefixException extends Co
|
|
|
1663
1711
|
$fault: "client",
|
|
1664
1712
|
...opts
|
|
1665
1713
|
});
|
|
1666
|
-
this.name = "InvalidS3KeyPrefixException";
|
|
1667
|
-
this.$fault = "client";
|
|
1668
1714
|
Object.setPrototypeOf(this, _InvalidS3KeyPrefixException.prototype);
|
|
1669
1715
|
}
|
|
1670
1716
|
};
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1717
|
+
var InvalidS3KmsKeyArnException = class _InvalidS3KmsKeyArnException extends ConfigServiceServiceException {
|
|
1718
|
+
static {
|
|
1719
|
+
__name(this, "InvalidS3KmsKeyArnException");
|
|
1720
|
+
}
|
|
1721
|
+
name = "InvalidS3KmsKeyArnException";
|
|
1722
|
+
$fault = "client";
|
|
1674
1723
|
/**
|
|
1675
1724
|
* @internal
|
|
1676
1725
|
*/
|
|
@@ -1680,14 +1729,15 @@ var _InvalidS3KmsKeyArnException = class _InvalidS3KmsKeyArnException extends Co
|
|
|
1680
1729
|
$fault: "client",
|
|
1681
1730
|
...opts
|
|
1682
1731
|
});
|
|
1683
|
-
this.name = "InvalidS3KmsKeyArnException";
|
|
1684
|
-
this.$fault = "client";
|
|
1685
1732
|
Object.setPrototypeOf(this, _InvalidS3KmsKeyArnException.prototype);
|
|
1686
1733
|
}
|
|
1687
1734
|
};
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1735
|
+
var InvalidSNSTopicARNException = class _InvalidSNSTopicARNException extends ConfigServiceServiceException {
|
|
1736
|
+
static {
|
|
1737
|
+
__name(this, "InvalidSNSTopicARNException");
|
|
1738
|
+
}
|
|
1739
|
+
name = "InvalidSNSTopicARNException";
|
|
1740
|
+
$fault = "client";
|
|
1691
1741
|
/**
|
|
1692
1742
|
* @internal
|
|
1693
1743
|
*/
|
|
@@ -1697,14 +1747,15 @@ var _InvalidSNSTopicARNException = class _InvalidSNSTopicARNException extends Co
|
|
|
1697
1747
|
$fault: "client",
|
|
1698
1748
|
...opts
|
|
1699
1749
|
});
|
|
1700
|
-
this.name = "InvalidSNSTopicARNException";
|
|
1701
|
-
this.$fault = "client";
|
|
1702
1750
|
Object.setPrototypeOf(this, _InvalidSNSTopicARNException.prototype);
|
|
1703
1751
|
}
|
|
1704
1752
|
};
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1753
|
+
var LimitExceededException = class _LimitExceededException extends ConfigServiceServiceException {
|
|
1754
|
+
static {
|
|
1755
|
+
__name(this, "LimitExceededException");
|
|
1756
|
+
}
|
|
1757
|
+
name = "LimitExceededException";
|
|
1758
|
+
$fault = "client";
|
|
1708
1759
|
/**
|
|
1709
1760
|
* @internal
|
|
1710
1761
|
*/
|
|
@@ -1714,13 +1765,9 @@ var _LimitExceededException = class _LimitExceededException extends ConfigServic
|
|
|
1714
1765
|
$fault: "client",
|
|
1715
1766
|
...opts
|
|
1716
1767
|
});
|
|
1717
|
-
this.name = "LimitExceededException";
|
|
1718
|
-
this.$fault = "client";
|
|
1719
1768
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
1720
1769
|
}
|
|
1721
1770
|
};
|
|
1722
|
-
__name(_LimitExceededException, "LimitExceededException");
|
|
1723
|
-
var LimitExceededException = _LimitExceededException;
|
|
1724
1771
|
|
|
1725
1772
|
// src/models/models_1.ts
|
|
1726
1773
|
var SortBy = {
|
|
@@ -1730,7 +1777,12 @@ var SortOrder = {
|
|
|
1730
1777
|
ASCENDING: "ASCENDING",
|
|
1731
1778
|
DESCENDING: "DESCENDING"
|
|
1732
1779
|
};
|
|
1733
|
-
var
|
|
1780
|
+
var MaxActiveResourcesExceededException = class _MaxActiveResourcesExceededException extends ConfigServiceServiceException {
|
|
1781
|
+
static {
|
|
1782
|
+
__name(this, "MaxActiveResourcesExceededException");
|
|
1783
|
+
}
|
|
1784
|
+
name = "MaxActiveResourcesExceededException";
|
|
1785
|
+
$fault = "client";
|
|
1734
1786
|
/**
|
|
1735
1787
|
* @internal
|
|
1736
1788
|
*/
|
|
@@ -1740,14 +1792,15 @@ var _MaxActiveResourcesExceededException = class _MaxActiveResourcesExceededExce
|
|
|
1740
1792
|
$fault: "client",
|
|
1741
1793
|
...opts
|
|
1742
1794
|
});
|
|
1743
|
-
this.name = "MaxActiveResourcesExceededException";
|
|
1744
|
-
this.$fault = "client";
|
|
1745
1795
|
Object.setPrototypeOf(this, _MaxActiveResourcesExceededException.prototype);
|
|
1746
1796
|
}
|
|
1747
1797
|
};
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1798
|
+
var MaxNumberOfConfigRulesExceededException = class _MaxNumberOfConfigRulesExceededException extends ConfigServiceServiceException {
|
|
1799
|
+
static {
|
|
1800
|
+
__name(this, "MaxNumberOfConfigRulesExceededException");
|
|
1801
|
+
}
|
|
1802
|
+
name = "MaxNumberOfConfigRulesExceededException";
|
|
1803
|
+
$fault = "client";
|
|
1751
1804
|
/**
|
|
1752
1805
|
* @internal
|
|
1753
1806
|
*/
|
|
@@ -1757,14 +1810,15 @@ var _MaxNumberOfConfigRulesExceededException = class _MaxNumberOfConfigRulesExce
|
|
|
1757
1810
|
$fault: "client",
|
|
1758
1811
|
...opts
|
|
1759
1812
|
});
|
|
1760
|
-
this.name = "MaxNumberOfConfigRulesExceededException";
|
|
1761
|
-
this.$fault = "client";
|
|
1762
1813
|
Object.setPrototypeOf(this, _MaxNumberOfConfigRulesExceededException.prototype);
|
|
1763
1814
|
}
|
|
1764
1815
|
};
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1816
|
+
var MaxNumberOfConfigurationRecordersExceededException = class _MaxNumberOfConfigurationRecordersExceededException extends ConfigServiceServiceException {
|
|
1817
|
+
static {
|
|
1818
|
+
__name(this, "MaxNumberOfConfigurationRecordersExceededException");
|
|
1819
|
+
}
|
|
1820
|
+
name = "MaxNumberOfConfigurationRecordersExceededException";
|
|
1821
|
+
$fault = "client";
|
|
1768
1822
|
/**
|
|
1769
1823
|
* @internal
|
|
1770
1824
|
*/
|
|
@@ -1774,14 +1828,15 @@ var _MaxNumberOfConfigurationRecordersExceededException = class _MaxNumberOfConf
|
|
|
1774
1828
|
$fault: "client",
|
|
1775
1829
|
...opts
|
|
1776
1830
|
});
|
|
1777
|
-
this.name = "MaxNumberOfConfigurationRecordersExceededException";
|
|
1778
|
-
this.$fault = "client";
|
|
1779
1831
|
Object.setPrototypeOf(this, _MaxNumberOfConfigurationRecordersExceededException.prototype);
|
|
1780
1832
|
}
|
|
1781
1833
|
};
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1834
|
+
var MaxNumberOfConformancePacksExceededException = class _MaxNumberOfConformancePacksExceededException extends ConfigServiceServiceException {
|
|
1835
|
+
static {
|
|
1836
|
+
__name(this, "MaxNumberOfConformancePacksExceededException");
|
|
1837
|
+
}
|
|
1838
|
+
name = "MaxNumberOfConformancePacksExceededException";
|
|
1839
|
+
$fault = "client";
|
|
1785
1840
|
/**
|
|
1786
1841
|
* @internal
|
|
1787
1842
|
*/
|
|
@@ -1791,14 +1846,15 @@ var _MaxNumberOfConformancePacksExceededException = class _MaxNumberOfConformanc
|
|
|
1791
1846
|
$fault: "client",
|
|
1792
1847
|
...opts
|
|
1793
1848
|
});
|
|
1794
|
-
this.name = "MaxNumberOfConformancePacksExceededException";
|
|
1795
|
-
this.$fault = "client";
|
|
1796
1849
|
Object.setPrototypeOf(this, _MaxNumberOfConformancePacksExceededException.prototype);
|
|
1797
1850
|
}
|
|
1798
1851
|
};
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1852
|
+
var MaxNumberOfDeliveryChannelsExceededException = class _MaxNumberOfDeliveryChannelsExceededException extends ConfigServiceServiceException {
|
|
1853
|
+
static {
|
|
1854
|
+
__name(this, "MaxNumberOfDeliveryChannelsExceededException");
|
|
1855
|
+
}
|
|
1856
|
+
name = "MaxNumberOfDeliveryChannelsExceededException";
|
|
1857
|
+
$fault = "client";
|
|
1802
1858
|
/**
|
|
1803
1859
|
* @internal
|
|
1804
1860
|
*/
|
|
@@ -1808,14 +1864,15 @@ var _MaxNumberOfDeliveryChannelsExceededException = class _MaxNumberOfDeliveryCh
|
|
|
1808
1864
|
$fault: "client",
|
|
1809
1865
|
...opts
|
|
1810
1866
|
});
|
|
1811
|
-
this.name = "MaxNumberOfDeliveryChannelsExceededException";
|
|
1812
|
-
this.$fault = "client";
|
|
1813
1867
|
Object.setPrototypeOf(this, _MaxNumberOfDeliveryChannelsExceededException.prototype);
|
|
1814
1868
|
}
|
|
1815
1869
|
};
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1870
|
+
var MaxNumberOfOrganizationConfigRulesExceededException = class _MaxNumberOfOrganizationConfigRulesExceededException extends ConfigServiceServiceException {
|
|
1871
|
+
static {
|
|
1872
|
+
__name(this, "MaxNumberOfOrganizationConfigRulesExceededException");
|
|
1873
|
+
}
|
|
1874
|
+
name = "MaxNumberOfOrganizationConfigRulesExceededException";
|
|
1875
|
+
$fault = "client";
|
|
1819
1876
|
/**
|
|
1820
1877
|
* @internal
|
|
1821
1878
|
*/
|
|
@@ -1825,14 +1882,15 @@ var _MaxNumberOfOrganizationConfigRulesExceededException = class _MaxNumberOfOrg
|
|
|
1825
1882
|
$fault: "client",
|
|
1826
1883
|
...opts
|
|
1827
1884
|
});
|
|
1828
|
-
this.name = "MaxNumberOfOrganizationConfigRulesExceededException";
|
|
1829
|
-
this.$fault = "client";
|
|
1830
1885
|
Object.setPrototypeOf(this, _MaxNumberOfOrganizationConfigRulesExceededException.prototype);
|
|
1831
1886
|
}
|
|
1832
1887
|
};
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1888
|
+
var MaxNumberOfOrganizationConformancePacksExceededException = class _MaxNumberOfOrganizationConformancePacksExceededException extends ConfigServiceServiceException {
|
|
1889
|
+
static {
|
|
1890
|
+
__name(this, "MaxNumberOfOrganizationConformancePacksExceededException");
|
|
1891
|
+
}
|
|
1892
|
+
name = "MaxNumberOfOrganizationConformancePacksExceededException";
|
|
1893
|
+
$fault = "client";
|
|
1836
1894
|
/**
|
|
1837
1895
|
* @internal
|
|
1838
1896
|
*/
|
|
@@ -1842,14 +1900,15 @@ var _MaxNumberOfOrganizationConformancePacksExceededException = class _MaxNumber
|
|
|
1842
1900
|
$fault: "client",
|
|
1843
1901
|
...opts
|
|
1844
1902
|
});
|
|
1845
|
-
this.name = "MaxNumberOfOrganizationConformancePacksExceededException";
|
|
1846
|
-
this.$fault = "client";
|
|
1847
1903
|
Object.setPrototypeOf(this, _MaxNumberOfOrganizationConformancePacksExceededException.prototype);
|
|
1848
1904
|
}
|
|
1849
1905
|
};
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1906
|
+
var MaxNumberOfRetentionConfigurationsExceededException = class _MaxNumberOfRetentionConfigurationsExceededException extends ConfigServiceServiceException {
|
|
1907
|
+
static {
|
|
1908
|
+
__name(this, "MaxNumberOfRetentionConfigurationsExceededException");
|
|
1909
|
+
}
|
|
1910
|
+
name = "MaxNumberOfRetentionConfigurationsExceededException";
|
|
1911
|
+
$fault = "client";
|
|
1853
1912
|
/**
|
|
1854
1913
|
* @internal
|
|
1855
1914
|
*/
|
|
@@ -1859,14 +1918,15 @@ var _MaxNumberOfRetentionConfigurationsExceededException = class _MaxNumberOfRet
|
|
|
1859
1918
|
$fault: "client",
|
|
1860
1919
|
...opts
|
|
1861
1920
|
});
|
|
1862
|
-
this.name = "MaxNumberOfRetentionConfigurationsExceededException";
|
|
1863
|
-
this.$fault = "client";
|
|
1864
1921
|
Object.setPrototypeOf(this, _MaxNumberOfRetentionConfigurationsExceededException.prototype);
|
|
1865
1922
|
}
|
|
1866
1923
|
};
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1924
|
+
var NoAvailableDeliveryChannelException = class _NoAvailableDeliveryChannelException extends ConfigServiceServiceException {
|
|
1925
|
+
static {
|
|
1926
|
+
__name(this, "NoAvailableDeliveryChannelException");
|
|
1927
|
+
}
|
|
1928
|
+
name = "NoAvailableDeliveryChannelException";
|
|
1929
|
+
$fault = "client";
|
|
1870
1930
|
/**
|
|
1871
1931
|
* @internal
|
|
1872
1932
|
*/
|
|
@@ -1876,14 +1936,15 @@ var _NoAvailableDeliveryChannelException = class _NoAvailableDeliveryChannelExce
|
|
|
1876
1936
|
$fault: "client",
|
|
1877
1937
|
...opts
|
|
1878
1938
|
});
|
|
1879
|
-
this.name = "NoAvailableDeliveryChannelException";
|
|
1880
|
-
this.$fault = "client";
|
|
1881
1939
|
Object.setPrototypeOf(this, _NoAvailableDeliveryChannelException.prototype);
|
|
1882
1940
|
}
|
|
1883
1941
|
};
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1942
|
+
var NoAvailableOrganizationException = class _NoAvailableOrganizationException extends ConfigServiceServiceException {
|
|
1943
|
+
static {
|
|
1944
|
+
__name(this, "NoAvailableOrganizationException");
|
|
1945
|
+
}
|
|
1946
|
+
name = "NoAvailableOrganizationException";
|
|
1947
|
+
$fault = "client";
|
|
1887
1948
|
/**
|
|
1888
1949
|
* @internal
|
|
1889
1950
|
*/
|
|
@@ -1893,14 +1954,15 @@ var _NoAvailableOrganizationException = class _NoAvailableOrganizationException
|
|
|
1893
1954
|
$fault: "client",
|
|
1894
1955
|
...opts
|
|
1895
1956
|
});
|
|
1896
|
-
this.name = "NoAvailableOrganizationException";
|
|
1897
|
-
this.$fault = "client";
|
|
1898
1957
|
Object.setPrototypeOf(this, _NoAvailableOrganizationException.prototype);
|
|
1899
1958
|
}
|
|
1900
1959
|
};
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1960
|
+
var NoSuchBucketException = class _NoSuchBucketException extends ConfigServiceServiceException {
|
|
1961
|
+
static {
|
|
1962
|
+
__name(this, "NoSuchBucketException");
|
|
1963
|
+
}
|
|
1964
|
+
name = "NoSuchBucketException";
|
|
1965
|
+
$fault = "client";
|
|
1904
1966
|
/**
|
|
1905
1967
|
* @internal
|
|
1906
1968
|
*/
|
|
@@ -1910,14 +1972,15 @@ var _NoSuchBucketException = class _NoSuchBucketException extends ConfigServiceS
|
|
|
1910
1972
|
$fault: "client",
|
|
1911
1973
|
...opts
|
|
1912
1974
|
});
|
|
1913
|
-
this.name = "NoSuchBucketException";
|
|
1914
|
-
this.$fault = "client";
|
|
1915
1975
|
Object.setPrototypeOf(this, _NoSuchBucketException.prototype);
|
|
1916
1976
|
}
|
|
1917
1977
|
};
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1978
|
+
var OrganizationAllFeaturesNotEnabledException = class _OrganizationAllFeaturesNotEnabledException extends ConfigServiceServiceException {
|
|
1979
|
+
static {
|
|
1980
|
+
__name(this, "OrganizationAllFeaturesNotEnabledException");
|
|
1981
|
+
}
|
|
1982
|
+
name = "OrganizationAllFeaturesNotEnabledException";
|
|
1983
|
+
$fault = "client";
|
|
1921
1984
|
/**
|
|
1922
1985
|
* @internal
|
|
1923
1986
|
*/
|
|
@@ -1927,14 +1990,15 @@ var _OrganizationAllFeaturesNotEnabledException = class _OrganizationAllFeatures
|
|
|
1927
1990
|
$fault: "client",
|
|
1928
1991
|
...opts
|
|
1929
1992
|
});
|
|
1930
|
-
this.name = "OrganizationAllFeaturesNotEnabledException";
|
|
1931
|
-
this.$fault = "client";
|
|
1932
1993
|
Object.setPrototypeOf(this, _OrganizationAllFeaturesNotEnabledException.prototype);
|
|
1933
1994
|
}
|
|
1934
1995
|
};
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1996
|
+
var OrganizationConformancePackTemplateValidationException = class _OrganizationConformancePackTemplateValidationException extends ConfigServiceServiceException {
|
|
1997
|
+
static {
|
|
1998
|
+
__name(this, "OrganizationConformancePackTemplateValidationException");
|
|
1999
|
+
}
|
|
2000
|
+
name = "OrganizationConformancePackTemplateValidationException";
|
|
2001
|
+
$fault = "client";
|
|
1938
2002
|
/**
|
|
1939
2003
|
* @internal
|
|
1940
2004
|
*/
|
|
@@ -1944,14 +2008,15 @@ var _OrganizationConformancePackTemplateValidationException = class _Organizatio
|
|
|
1944
2008
|
$fault: "client",
|
|
1945
2009
|
...opts
|
|
1946
2010
|
});
|
|
1947
|
-
this.name = "OrganizationConformancePackTemplateValidationException";
|
|
1948
|
-
this.$fault = "client";
|
|
1949
2011
|
Object.setPrototypeOf(this, _OrganizationConformancePackTemplateValidationException.prototype);
|
|
1950
2012
|
}
|
|
1951
2013
|
};
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
2014
|
+
var ResourceConcurrentModificationException = class _ResourceConcurrentModificationException extends ConfigServiceServiceException {
|
|
2015
|
+
static {
|
|
2016
|
+
__name(this, "ResourceConcurrentModificationException");
|
|
2017
|
+
}
|
|
2018
|
+
name = "ResourceConcurrentModificationException";
|
|
2019
|
+
$fault = "client";
|
|
1955
2020
|
/**
|
|
1956
2021
|
* @internal
|
|
1957
2022
|
*/
|
|
@@ -1961,14 +2026,15 @@ var _ResourceConcurrentModificationException = class _ResourceConcurrentModifica
|
|
|
1961
2026
|
$fault: "client",
|
|
1962
2027
|
...opts
|
|
1963
2028
|
});
|
|
1964
|
-
this.name = "ResourceConcurrentModificationException";
|
|
1965
|
-
this.$fault = "client";
|
|
1966
2029
|
Object.setPrototypeOf(this, _ResourceConcurrentModificationException.prototype);
|
|
1967
2030
|
}
|
|
1968
2031
|
};
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
2032
|
+
var TooManyTagsException = class _TooManyTagsException extends ConfigServiceServiceException {
|
|
2033
|
+
static {
|
|
2034
|
+
__name(this, "TooManyTagsException");
|
|
2035
|
+
}
|
|
2036
|
+
name = "TooManyTagsException";
|
|
2037
|
+
$fault = "client";
|
|
1972
2038
|
/**
|
|
1973
2039
|
* @internal
|
|
1974
2040
|
*/
|
|
@@ -1978,13 +2044,9 @@ var _TooManyTagsException = class _TooManyTagsException extends ConfigServiceSer
|
|
|
1978
2044
|
$fault: "client",
|
|
1979
2045
|
...opts
|
|
1980
2046
|
});
|
|
1981
|
-
this.name = "TooManyTagsException";
|
|
1982
|
-
this.$fault = "client";
|
|
1983
2047
|
Object.setPrototypeOf(this, _TooManyTagsException.prototype);
|
|
1984
2048
|
}
|
|
1985
2049
|
};
|
|
1986
|
-
__name(_TooManyTagsException, "TooManyTagsException");
|
|
1987
|
-
var TooManyTagsException = _TooManyTagsException;
|
|
1988
2050
|
|
|
1989
2051
|
// src/protocols/Aws_json1_1.ts
|
|
1990
2052
|
var se_AssociateResourceTypesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -5290,1359 +5352,1456 @@ function sharedHeaders(operation) {
|
|
|
5290
5352
|
__name(sharedHeaders, "sharedHeaders");
|
|
5291
5353
|
|
|
5292
5354
|
// src/commands/AssociateResourceTypesCommand.ts
|
|
5293
|
-
var
|
|
5355
|
+
var AssociateResourceTypesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5294
5356
|
return [
|
|
5295
5357
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5296
5358
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5297
5359
|
];
|
|
5298
5360
|
}).s("StarlingDoveService", "AssociateResourceTypes", {}).n("ConfigServiceClient", "AssociateResourceTypesCommand").f(void 0, void 0).ser(se_AssociateResourceTypesCommand).de(de_AssociateResourceTypesCommand).build() {
|
|
5361
|
+
static {
|
|
5362
|
+
__name(this, "AssociateResourceTypesCommand");
|
|
5363
|
+
}
|
|
5299
5364
|
};
|
|
5300
|
-
__name(_AssociateResourceTypesCommand, "AssociateResourceTypesCommand");
|
|
5301
|
-
var AssociateResourceTypesCommand = _AssociateResourceTypesCommand;
|
|
5302
5365
|
|
|
5303
5366
|
// src/commands/BatchGetAggregateResourceConfigCommand.ts
|
|
5304
5367
|
|
|
5305
5368
|
|
|
5306
5369
|
|
|
5307
|
-
var
|
|
5370
|
+
var BatchGetAggregateResourceConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5308
5371
|
return [
|
|
5309
5372
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5310
5373
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5311
5374
|
];
|
|
5312
5375
|
}).s("StarlingDoveService", "BatchGetAggregateResourceConfig", {}).n("ConfigServiceClient", "BatchGetAggregateResourceConfigCommand").f(void 0, void 0).ser(se_BatchGetAggregateResourceConfigCommand).de(de_BatchGetAggregateResourceConfigCommand).build() {
|
|
5376
|
+
static {
|
|
5377
|
+
__name(this, "BatchGetAggregateResourceConfigCommand");
|
|
5378
|
+
}
|
|
5313
5379
|
};
|
|
5314
|
-
__name(_BatchGetAggregateResourceConfigCommand, "BatchGetAggregateResourceConfigCommand");
|
|
5315
|
-
var BatchGetAggregateResourceConfigCommand = _BatchGetAggregateResourceConfigCommand;
|
|
5316
5380
|
|
|
5317
5381
|
// src/commands/BatchGetResourceConfigCommand.ts
|
|
5318
5382
|
|
|
5319
5383
|
|
|
5320
5384
|
|
|
5321
|
-
var
|
|
5385
|
+
var BatchGetResourceConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5322
5386
|
return [
|
|
5323
5387
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5324
5388
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5325
5389
|
];
|
|
5326
5390
|
}).s("StarlingDoveService", "BatchGetResourceConfig", {}).n("ConfigServiceClient", "BatchGetResourceConfigCommand").f(void 0, void 0).ser(se_BatchGetResourceConfigCommand).de(de_BatchGetResourceConfigCommand).build() {
|
|
5391
|
+
static {
|
|
5392
|
+
__name(this, "BatchGetResourceConfigCommand");
|
|
5393
|
+
}
|
|
5327
5394
|
};
|
|
5328
|
-
__name(_BatchGetResourceConfigCommand, "BatchGetResourceConfigCommand");
|
|
5329
|
-
var BatchGetResourceConfigCommand = _BatchGetResourceConfigCommand;
|
|
5330
5395
|
|
|
5331
5396
|
// src/commands/DeleteAggregationAuthorizationCommand.ts
|
|
5332
5397
|
|
|
5333
5398
|
|
|
5334
5399
|
|
|
5335
|
-
var
|
|
5400
|
+
var DeleteAggregationAuthorizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5336
5401
|
return [
|
|
5337
5402
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5338
5403
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5339
5404
|
];
|
|
5340
5405
|
}).s("StarlingDoveService", "DeleteAggregationAuthorization", {}).n("ConfigServiceClient", "DeleteAggregationAuthorizationCommand").f(void 0, void 0).ser(se_DeleteAggregationAuthorizationCommand).de(de_DeleteAggregationAuthorizationCommand).build() {
|
|
5406
|
+
static {
|
|
5407
|
+
__name(this, "DeleteAggregationAuthorizationCommand");
|
|
5408
|
+
}
|
|
5341
5409
|
};
|
|
5342
|
-
__name(_DeleteAggregationAuthorizationCommand, "DeleteAggregationAuthorizationCommand");
|
|
5343
|
-
var DeleteAggregationAuthorizationCommand = _DeleteAggregationAuthorizationCommand;
|
|
5344
5410
|
|
|
5345
5411
|
// src/commands/DeleteConfigRuleCommand.ts
|
|
5346
5412
|
|
|
5347
5413
|
|
|
5348
5414
|
|
|
5349
|
-
var
|
|
5415
|
+
var DeleteConfigRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5350
5416
|
return [
|
|
5351
5417
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5352
5418
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5353
5419
|
];
|
|
5354
5420
|
}).s("StarlingDoveService", "DeleteConfigRule", {}).n("ConfigServiceClient", "DeleteConfigRuleCommand").f(void 0, void 0).ser(se_DeleteConfigRuleCommand).de(de_DeleteConfigRuleCommand).build() {
|
|
5421
|
+
static {
|
|
5422
|
+
__name(this, "DeleteConfigRuleCommand");
|
|
5423
|
+
}
|
|
5355
5424
|
};
|
|
5356
|
-
__name(_DeleteConfigRuleCommand, "DeleteConfigRuleCommand");
|
|
5357
|
-
var DeleteConfigRuleCommand = _DeleteConfigRuleCommand;
|
|
5358
5425
|
|
|
5359
5426
|
// src/commands/DeleteConfigurationAggregatorCommand.ts
|
|
5360
5427
|
|
|
5361
5428
|
|
|
5362
5429
|
|
|
5363
|
-
var
|
|
5430
|
+
var DeleteConfigurationAggregatorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5364
5431
|
return [
|
|
5365
5432
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5366
5433
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5367
5434
|
];
|
|
5368
5435
|
}).s("StarlingDoveService", "DeleteConfigurationAggregator", {}).n("ConfigServiceClient", "DeleteConfigurationAggregatorCommand").f(void 0, void 0).ser(se_DeleteConfigurationAggregatorCommand).de(de_DeleteConfigurationAggregatorCommand).build() {
|
|
5436
|
+
static {
|
|
5437
|
+
__name(this, "DeleteConfigurationAggregatorCommand");
|
|
5438
|
+
}
|
|
5369
5439
|
};
|
|
5370
|
-
__name(_DeleteConfigurationAggregatorCommand, "DeleteConfigurationAggregatorCommand");
|
|
5371
|
-
var DeleteConfigurationAggregatorCommand = _DeleteConfigurationAggregatorCommand;
|
|
5372
5440
|
|
|
5373
5441
|
// src/commands/DeleteConfigurationRecorderCommand.ts
|
|
5374
5442
|
|
|
5375
5443
|
|
|
5376
5444
|
|
|
5377
|
-
var
|
|
5445
|
+
var DeleteConfigurationRecorderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5378
5446
|
return [
|
|
5379
5447
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5380
5448
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5381
5449
|
];
|
|
5382
5450
|
}).s("StarlingDoveService", "DeleteConfigurationRecorder", {}).n("ConfigServiceClient", "DeleteConfigurationRecorderCommand").f(void 0, void 0).ser(se_DeleteConfigurationRecorderCommand).de(de_DeleteConfigurationRecorderCommand).build() {
|
|
5451
|
+
static {
|
|
5452
|
+
__name(this, "DeleteConfigurationRecorderCommand");
|
|
5453
|
+
}
|
|
5383
5454
|
};
|
|
5384
|
-
__name(_DeleteConfigurationRecorderCommand, "DeleteConfigurationRecorderCommand");
|
|
5385
|
-
var DeleteConfigurationRecorderCommand = _DeleteConfigurationRecorderCommand;
|
|
5386
5455
|
|
|
5387
5456
|
// src/commands/DeleteConformancePackCommand.ts
|
|
5388
5457
|
|
|
5389
5458
|
|
|
5390
5459
|
|
|
5391
|
-
var
|
|
5460
|
+
var DeleteConformancePackCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5392
5461
|
return [
|
|
5393
5462
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5394
5463
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5395
5464
|
];
|
|
5396
5465
|
}).s("StarlingDoveService", "DeleteConformancePack", {}).n("ConfigServiceClient", "DeleteConformancePackCommand").f(void 0, void 0).ser(se_DeleteConformancePackCommand).de(de_DeleteConformancePackCommand).build() {
|
|
5466
|
+
static {
|
|
5467
|
+
__name(this, "DeleteConformancePackCommand");
|
|
5468
|
+
}
|
|
5397
5469
|
};
|
|
5398
|
-
__name(_DeleteConformancePackCommand, "DeleteConformancePackCommand");
|
|
5399
|
-
var DeleteConformancePackCommand = _DeleteConformancePackCommand;
|
|
5400
5470
|
|
|
5401
5471
|
// src/commands/DeleteDeliveryChannelCommand.ts
|
|
5402
5472
|
|
|
5403
5473
|
|
|
5404
5474
|
|
|
5405
|
-
var
|
|
5475
|
+
var DeleteDeliveryChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5406
5476
|
return [
|
|
5407
5477
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5408
5478
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5409
5479
|
];
|
|
5410
5480
|
}).s("StarlingDoveService", "DeleteDeliveryChannel", {}).n("ConfigServiceClient", "DeleteDeliveryChannelCommand").f(void 0, void 0).ser(se_DeleteDeliveryChannelCommand).de(de_DeleteDeliveryChannelCommand).build() {
|
|
5481
|
+
static {
|
|
5482
|
+
__name(this, "DeleteDeliveryChannelCommand");
|
|
5483
|
+
}
|
|
5411
5484
|
};
|
|
5412
|
-
__name(_DeleteDeliveryChannelCommand, "DeleteDeliveryChannelCommand");
|
|
5413
|
-
var DeleteDeliveryChannelCommand = _DeleteDeliveryChannelCommand;
|
|
5414
5485
|
|
|
5415
5486
|
// src/commands/DeleteEvaluationResultsCommand.ts
|
|
5416
5487
|
|
|
5417
5488
|
|
|
5418
5489
|
|
|
5419
|
-
var
|
|
5490
|
+
var DeleteEvaluationResultsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5420
5491
|
return [
|
|
5421
5492
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5422
5493
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5423
5494
|
];
|
|
5424
5495
|
}).s("StarlingDoveService", "DeleteEvaluationResults", {}).n("ConfigServiceClient", "DeleteEvaluationResultsCommand").f(void 0, void 0).ser(se_DeleteEvaluationResultsCommand).de(de_DeleteEvaluationResultsCommand).build() {
|
|
5496
|
+
static {
|
|
5497
|
+
__name(this, "DeleteEvaluationResultsCommand");
|
|
5498
|
+
}
|
|
5425
5499
|
};
|
|
5426
|
-
__name(_DeleteEvaluationResultsCommand, "DeleteEvaluationResultsCommand");
|
|
5427
|
-
var DeleteEvaluationResultsCommand = _DeleteEvaluationResultsCommand;
|
|
5428
5500
|
|
|
5429
5501
|
// src/commands/DeleteOrganizationConfigRuleCommand.ts
|
|
5430
5502
|
|
|
5431
5503
|
|
|
5432
5504
|
|
|
5433
|
-
var
|
|
5505
|
+
var DeleteOrganizationConfigRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5434
5506
|
return [
|
|
5435
5507
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5436
5508
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5437
5509
|
];
|
|
5438
5510
|
}).s("StarlingDoveService", "DeleteOrganizationConfigRule", {}).n("ConfigServiceClient", "DeleteOrganizationConfigRuleCommand").f(void 0, void 0).ser(se_DeleteOrganizationConfigRuleCommand).de(de_DeleteOrganizationConfigRuleCommand).build() {
|
|
5511
|
+
static {
|
|
5512
|
+
__name(this, "DeleteOrganizationConfigRuleCommand");
|
|
5513
|
+
}
|
|
5439
5514
|
};
|
|
5440
|
-
__name(_DeleteOrganizationConfigRuleCommand, "DeleteOrganizationConfigRuleCommand");
|
|
5441
|
-
var DeleteOrganizationConfigRuleCommand = _DeleteOrganizationConfigRuleCommand;
|
|
5442
5515
|
|
|
5443
5516
|
// src/commands/DeleteOrganizationConformancePackCommand.ts
|
|
5444
5517
|
|
|
5445
5518
|
|
|
5446
5519
|
|
|
5447
|
-
var
|
|
5520
|
+
var DeleteOrganizationConformancePackCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5448
5521
|
return [
|
|
5449
5522
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5450
5523
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5451
5524
|
];
|
|
5452
5525
|
}).s("StarlingDoveService", "DeleteOrganizationConformancePack", {}).n("ConfigServiceClient", "DeleteOrganizationConformancePackCommand").f(void 0, void 0).ser(se_DeleteOrganizationConformancePackCommand).de(de_DeleteOrganizationConformancePackCommand).build() {
|
|
5526
|
+
static {
|
|
5527
|
+
__name(this, "DeleteOrganizationConformancePackCommand");
|
|
5528
|
+
}
|
|
5453
5529
|
};
|
|
5454
|
-
__name(_DeleteOrganizationConformancePackCommand, "DeleteOrganizationConformancePackCommand");
|
|
5455
|
-
var DeleteOrganizationConformancePackCommand = _DeleteOrganizationConformancePackCommand;
|
|
5456
5530
|
|
|
5457
5531
|
// src/commands/DeletePendingAggregationRequestCommand.ts
|
|
5458
5532
|
|
|
5459
5533
|
|
|
5460
5534
|
|
|
5461
|
-
var
|
|
5535
|
+
var DeletePendingAggregationRequestCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5462
5536
|
return [
|
|
5463
5537
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5464
5538
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5465
5539
|
];
|
|
5466
5540
|
}).s("StarlingDoveService", "DeletePendingAggregationRequest", {}).n("ConfigServiceClient", "DeletePendingAggregationRequestCommand").f(void 0, void 0).ser(se_DeletePendingAggregationRequestCommand).de(de_DeletePendingAggregationRequestCommand).build() {
|
|
5541
|
+
static {
|
|
5542
|
+
__name(this, "DeletePendingAggregationRequestCommand");
|
|
5543
|
+
}
|
|
5467
5544
|
};
|
|
5468
|
-
__name(_DeletePendingAggregationRequestCommand, "DeletePendingAggregationRequestCommand");
|
|
5469
|
-
var DeletePendingAggregationRequestCommand = _DeletePendingAggregationRequestCommand;
|
|
5470
5545
|
|
|
5471
5546
|
// src/commands/DeleteRemediationConfigurationCommand.ts
|
|
5472
5547
|
|
|
5473
5548
|
|
|
5474
5549
|
|
|
5475
|
-
var
|
|
5550
|
+
var DeleteRemediationConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5476
5551
|
return [
|
|
5477
5552
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5478
5553
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5479
5554
|
];
|
|
5480
5555
|
}).s("StarlingDoveService", "DeleteRemediationConfiguration", {}).n("ConfigServiceClient", "DeleteRemediationConfigurationCommand").f(void 0, void 0).ser(se_DeleteRemediationConfigurationCommand).de(de_DeleteRemediationConfigurationCommand).build() {
|
|
5556
|
+
static {
|
|
5557
|
+
__name(this, "DeleteRemediationConfigurationCommand");
|
|
5558
|
+
}
|
|
5481
5559
|
};
|
|
5482
|
-
__name(_DeleteRemediationConfigurationCommand, "DeleteRemediationConfigurationCommand");
|
|
5483
|
-
var DeleteRemediationConfigurationCommand = _DeleteRemediationConfigurationCommand;
|
|
5484
5560
|
|
|
5485
5561
|
// src/commands/DeleteRemediationExceptionsCommand.ts
|
|
5486
5562
|
|
|
5487
5563
|
|
|
5488
5564
|
|
|
5489
|
-
var
|
|
5565
|
+
var DeleteRemediationExceptionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5490
5566
|
return [
|
|
5491
5567
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5492
5568
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5493
5569
|
];
|
|
5494
5570
|
}).s("StarlingDoveService", "DeleteRemediationExceptions", {}).n("ConfigServiceClient", "DeleteRemediationExceptionsCommand").f(void 0, void 0).ser(se_DeleteRemediationExceptionsCommand).de(de_DeleteRemediationExceptionsCommand).build() {
|
|
5571
|
+
static {
|
|
5572
|
+
__name(this, "DeleteRemediationExceptionsCommand");
|
|
5573
|
+
}
|
|
5495
5574
|
};
|
|
5496
|
-
__name(_DeleteRemediationExceptionsCommand, "DeleteRemediationExceptionsCommand");
|
|
5497
|
-
var DeleteRemediationExceptionsCommand = _DeleteRemediationExceptionsCommand;
|
|
5498
5575
|
|
|
5499
5576
|
// src/commands/DeleteResourceConfigCommand.ts
|
|
5500
5577
|
|
|
5501
5578
|
|
|
5502
5579
|
|
|
5503
|
-
var
|
|
5580
|
+
var DeleteResourceConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5504
5581
|
return [
|
|
5505
5582
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5506
5583
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5507
5584
|
];
|
|
5508
5585
|
}).s("StarlingDoveService", "DeleteResourceConfig", {}).n("ConfigServiceClient", "DeleteResourceConfigCommand").f(void 0, void 0).ser(se_DeleteResourceConfigCommand).de(de_DeleteResourceConfigCommand).build() {
|
|
5586
|
+
static {
|
|
5587
|
+
__name(this, "DeleteResourceConfigCommand");
|
|
5588
|
+
}
|
|
5509
5589
|
};
|
|
5510
|
-
__name(_DeleteResourceConfigCommand, "DeleteResourceConfigCommand");
|
|
5511
|
-
var DeleteResourceConfigCommand = _DeleteResourceConfigCommand;
|
|
5512
5590
|
|
|
5513
5591
|
// src/commands/DeleteRetentionConfigurationCommand.ts
|
|
5514
5592
|
|
|
5515
5593
|
|
|
5516
5594
|
|
|
5517
|
-
var
|
|
5595
|
+
var DeleteRetentionConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5518
5596
|
return [
|
|
5519
5597
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5520
5598
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5521
5599
|
];
|
|
5522
5600
|
}).s("StarlingDoveService", "DeleteRetentionConfiguration", {}).n("ConfigServiceClient", "DeleteRetentionConfigurationCommand").f(void 0, void 0).ser(se_DeleteRetentionConfigurationCommand).de(de_DeleteRetentionConfigurationCommand).build() {
|
|
5601
|
+
static {
|
|
5602
|
+
__name(this, "DeleteRetentionConfigurationCommand");
|
|
5603
|
+
}
|
|
5523
5604
|
};
|
|
5524
|
-
__name(_DeleteRetentionConfigurationCommand, "DeleteRetentionConfigurationCommand");
|
|
5525
|
-
var DeleteRetentionConfigurationCommand = _DeleteRetentionConfigurationCommand;
|
|
5526
5605
|
|
|
5527
5606
|
// src/commands/DeleteServiceLinkedConfigurationRecorderCommand.ts
|
|
5528
5607
|
|
|
5529
5608
|
|
|
5530
5609
|
|
|
5531
|
-
var
|
|
5610
|
+
var DeleteServiceLinkedConfigurationRecorderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5532
5611
|
return [
|
|
5533
5612
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5534
5613
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5535
5614
|
];
|
|
5536
5615
|
}).s("StarlingDoveService", "DeleteServiceLinkedConfigurationRecorder", {}).n("ConfigServiceClient", "DeleteServiceLinkedConfigurationRecorderCommand").f(void 0, void 0).ser(se_DeleteServiceLinkedConfigurationRecorderCommand).de(de_DeleteServiceLinkedConfigurationRecorderCommand).build() {
|
|
5616
|
+
static {
|
|
5617
|
+
__name(this, "DeleteServiceLinkedConfigurationRecorderCommand");
|
|
5618
|
+
}
|
|
5537
5619
|
};
|
|
5538
|
-
__name(_DeleteServiceLinkedConfigurationRecorderCommand, "DeleteServiceLinkedConfigurationRecorderCommand");
|
|
5539
|
-
var DeleteServiceLinkedConfigurationRecorderCommand = _DeleteServiceLinkedConfigurationRecorderCommand;
|
|
5540
5620
|
|
|
5541
5621
|
// src/commands/DeleteStoredQueryCommand.ts
|
|
5542
5622
|
|
|
5543
5623
|
|
|
5544
5624
|
|
|
5545
|
-
var
|
|
5625
|
+
var DeleteStoredQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5546
5626
|
return [
|
|
5547
5627
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5548
5628
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5549
5629
|
];
|
|
5550
5630
|
}).s("StarlingDoveService", "DeleteStoredQuery", {}).n("ConfigServiceClient", "DeleteStoredQueryCommand").f(void 0, void 0).ser(se_DeleteStoredQueryCommand).de(de_DeleteStoredQueryCommand).build() {
|
|
5631
|
+
static {
|
|
5632
|
+
__name(this, "DeleteStoredQueryCommand");
|
|
5633
|
+
}
|
|
5551
5634
|
};
|
|
5552
|
-
__name(_DeleteStoredQueryCommand, "DeleteStoredQueryCommand");
|
|
5553
|
-
var DeleteStoredQueryCommand = _DeleteStoredQueryCommand;
|
|
5554
5635
|
|
|
5555
5636
|
// src/commands/DeliverConfigSnapshotCommand.ts
|
|
5556
5637
|
|
|
5557
5638
|
|
|
5558
5639
|
|
|
5559
|
-
var
|
|
5640
|
+
var DeliverConfigSnapshotCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5560
5641
|
return [
|
|
5561
5642
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5562
5643
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5563
5644
|
];
|
|
5564
5645
|
}).s("StarlingDoveService", "DeliverConfigSnapshot", {}).n("ConfigServiceClient", "DeliverConfigSnapshotCommand").f(void 0, void 0).ser(se_DeliverConfigSnapshotCommand).de(de_DeliverConfigSnapshotCommand).build() {
|
|
5646
|
+
static {
|
|
5647
|
+
__name(this, "DeliverConfigSnapshotCommand");
|
|
5648
|
+
}
|
|
5565
5649
|
};
|
|
5566
|
-
__name(_DeliverConfigSnapshotCommand, "DeliverConfigSnapshotCommand");
|
|
5567
|
-
var DeliverConfigSnapshotCommand = _DeliverConfigSnapshotCommand;
|
|
5568
5650
|
|
|
5569
5651
|
// src/commands/DescribeAggregateComplianceByConfigRulesCommand.ts
|
|
5570
5652
|
|
|
5571
5653
|
|
|
5572
5654
|
|
|
5573
|
-
var
|
|
5655
|
+
var DescribeAggregateComplianceByConfigRulesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5574
5656
|
return [
|
|
5575
5657
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5576
5658
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5577
5659
|
];
|
|
5578
5660
|
}).s("StarlingDoveService", "DescribeAggregateComplianceByConfigRules", {}).n("ConfigServiceClient", "DescribeAggregateComplianceByConfigRulesCommand").f(void 0, void 0).ser(se_DescribeAggregateComplianceByConfigRulesCommand).de(de_DescribeAggregateComplianceByConfigRulesCommand).build() {
|
|
5661
|
+
static {
|
|
5662
|
+
__name(this, "DescribeAggregateComplianceByConfigRulesCommand");
|
|
5663
|
+
}
|
|
5579
5664
|
};
|
|
5580
|
-
__name(_DescribeAggregateComplianceByConfigRulesCommand, "DescribeAggregateComplianceByConfigRulesCommand");
|
|
5581
|
-
var DescribeAggregateComplianceByConfigRulesCommand = _DescribeAggregateComplianceByConfigRulesCommand;
|
|
5582
5665
|
|
|
5583
5666
|
// src/commands/DescribeAggregateComplianceByConformancePacksCommand.ts
|
|
5584
5667
|
|
|
5585
5668
|
|
|
5586
5669
|
|
|
5587
|
-
var
|
|
5670
|
+
var DescribeAggregateComplianceByConformancePacksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5588
5671
|
return [
|
|
5589
5672
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5590
5673
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5591
5674
|
];
|
|
5592
5675
|
}).s("StarlingDoveService", "DescribeAggregateComplianceByConformancePacks", {}).n("ConfigServiceClient", "DescribeAggregateComplianceByConformancePacksCommand").f(void 0, void 0).ser(se_DescribeAggregateComplianceByConformancePacksCommand).de(de_DescribeAggregateComplianceByConformancePacksCommand).build() {
|
|
5676
|
+
static {
|
|
5677
|
+
__name(this, "DescribeAggregateComplianceByConformancePacksCommand");
|
|
5678
|
+
}
|
|
5593
5679
|
};
|
|
5594
|
-
__name(_DescribeAggregateComplianceByConformancePacksCommand, "DescribeAggregateComplianceByConformancePacksCommand");
|
|
5595
|
-
var DescribeAggregateComplianceByConformancePacksCommand = _DescribeAggregateComplianceByConformancePacksCommand;
|
|
5596
5680
|
|
|
5597
5681
|
// src/commands/DescribeAggregationAuthorizationsCommand.ts
|
|
5598
5682
|
|
|
5599
5683
|
|
|
5600
5684
|
|
|
5601
|
-
var
|
|
5685
|
+
var DescribeAggregationAuthorizationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5602
5686
|
return [
|
|
5603
5687
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5604
5688
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5605
5689
|
];
|
|
5606
5690
|
}).s("StarlingDoveService", "DescribeAggregationAuthorizations", {}).n("ConfigServiceClient", "DescribeAggregationAuthorizationsCommand").f(void 0, void 0).ser(se_DescribeAggregationAuthorizationsCommand).de(de_DescribeAggregationAuthorizationsCommand).build() {
|
|
5691
|
+
static {
|
|
5692
|
+
__name(this, "DescribeAggregationAuthorizationsCommand");
|
|
5693
|
+
}
|
|
5607
5694
|
};
|
|
5608
|
-
__name(_DescribeAggregationAuthorizationsCommand, "DescribeAggregationAuthorizationsCommand");
|
|
5609
|
-
var DescribeAggregationAuthorizationsCommand = _DescribeAggregationAuthorizationsCommand;
|
|
5610
5695
|
|
|
5611
5696
|
// src/commands/DescribeComplianceByConfigRuleCommand.ts
|
|
5612
5697
|
|
|
5613
5698
|
|
|
5614
5699
|
|
|
5615
|
-
var
|
|
5700
|
+
var DescribeComplianceByConfigRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5616
5701
|
return [
|
|
5617
5702
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5618
5703
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5619
5704
|
];
|
|
5620
5705
|
}).s("StarlingDoveService", "DescribeComplianceByConfigRule", {}).n("ConfigServiceClient", "DescribeComplianceByConfigRuleCommand").f(void 0, void 0).ser(se_DescribeComplianceByConfigRuleCommand).de(de_DescribeComplianceByConfigRuleCommand).build() {
|
|
5706
|
+
static {
|
|
5707
|
+
__name(this, "DescribeComplianceByConfigRuleCommand");
|
|
5708
|
+
}
|
|
5621
5709
|
};
|
|
5622
|
-
__name(_DescribeComplianceByConfigRuleCommand, "DescribeComplianceByConfigRuleCommand");
|
|
5623
|
-
var DescribeComplianceByConfigRuleCommand = _DescribeComplianceByConfigRuleCommand;
|
|
5624
5710
|
|
|
5625
5711
|
// src/commands/DescribeComplianceByResourceCommand.ts
|
|
5626
5712
|
|
|
5627
5713
|
|
|
5628
5714
|
|
|
5629
|
-
var
|
|
5715
|
+
var DescribeComplianceByResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5630
5716
|
return [
|
|
5631
5717
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5632
5718
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5633
5719
|
];
|
|
5634
5720
|
}).s("StarlingDoveService", "DescribeComplianceByResource", {}).n("ConfigServiceClient", "DescribeComplianceByResourceCommand").f(void 0, void 0).ser(se_DescribeComplianceByResourceCommand).de(de_DescribeComplianceByResourceCommand).build() {
|
|
5721
|
+
static {
|
|
5722
|
+
__name(this, "DescribeComplianceByResourceCommand");
|
|
5723
|
+
}
|
|
5635
5724
|
};
|
|
5636
|
-
__name(_DescribeComplianceByResourceCommand, "DescribeComplianceByResourceCommand");
|
|
5637
|
-
var DescribeComplianceByResourceCommand = _DescribeComplianceByResourceCommand;
|
|
5638
5725
|
|
|
5639
5726
|
// src/commands/DescribeConfigRuleEvaluationStatusCommand.ts
|
|
5640
5727
|
|
|
5641
5728
|
|
|
5642
5729
|
|
|
5643
|
-
var
|
|
5730
|
+
var DescribeConfigRuleEvaluationStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5644
5731
|
return [
|
|
5645
5732
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5646
5733
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5647
5734
|
];
|
|
5648
5735
|
}).s("StarlingDoveService", "DescribeConfigRuleEvaluationStatus", {}).n("ConfigServiceClient", "DescribeConfigRuleEvaluationStatusCommand").f(void 0, void 0).ser(se_DescribeConfigRuleEvaluationStatusCommand).de(de_DescribeConfigRuleEvaluationStatusCommand).build() {
|
|
5736
|
+
static {
|
|
5737
|
+
__name(this, "DescribeConfigRuleEvaluationStatusCommand");
|
|
5738
|
+
}
|
|
5649
5739
|
};
|
|
5650
|
-
__name(_DescribeConfigRuleEvaluationStatusCommand, "DescribeConfigRuleEvaluationStatusCommand");
|
|
5651
|
-
var DescribeConfigRuleEvaluationStatusCommand = _DescribeConfigRuleEvaluationStatusCommand;
|
|
5652
5740
|
|
|
5653
5741
|
// src/commands/DescribeConfigRulesCommand.ts
|
|
5654
5742
|
|
|
5655
5743
|
|
|
5656
5744
|
|
|
5657
|
-
var
|
|
5745
|
+
var DescribeConfigRulesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5658
5746
|
return [
|
|
5659
5747
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5660
5748
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5661
5749
|
];
|
|
5662
5750
|
}).s("StarlingDoveService", "DescribeConfigRules", {}).n("ConfigServiceClient", "DescribeConfigRulesCommand").f(void 0, void 0).ser(se_DescribeConfigRulesCommand).de(de_DescribeConfigRulesCommand).build() {
|
|
5751
|
+
static {
|
|
5752
|
+
__name(this, "DescribeConfigRulesCommand");
|
|
5753
|
+
}
|
|
5663
5754
|
};
|
|
5664
|
-
__name(_DescribeConfigRulesCommand, "DescribeConfigRulesCommand");
|
|
5665
|
-
var DescribeConfigRulesCommand = _DescribeConfigRulesCommand;
|
|
5666
5755
|
|
|
5667
5756
|
// src/commands/DescribeConfigurationAggregatorsCommand.ts
|
|
5668
5757
|
|
|
5669
5758
|
|
|
5670
5759
|
|
|
5671
|
-
var
|
|
5760
|
+
var DescribeConfigurationAggregatorsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5672
5761
|
return [
|
|
5673
5762
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5674
5763
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5675
5764
|
];
|
|
5676
5765
|
}).s("StarlingDoveService", "DescribeConfigurationAggregators", {}).n("ConfigServiceClient", "DescribeConfigurationAggregatorsCommand").f(void 0, void 0).ser(se_DescribeConfigurationAggregatorsCommand).de(de_DescribeConfigurationAggregatorsCommand).build() {
|
|
5766
|
+
static {
|
|
5767
|
+
__name(this, "DescribeConfigurationAggregatorsCommand");
|
|
5768
|
+
}
|
|
5677
5769
|
};
|
|
5678
|
-
__name(_DescribeConfigurationAggregatorsCommand, "DescribeConfigurationAggregatorsCommand");
|
|
5679
|
-
var DescribeConfigurationAggregatorsCommand = _DescribeConfigurationAggregatorsCommand;
|
|
5680
5770
|
|
|
5681
5771
|
// src/commands/DescribeConfigurationAggregatorSourcesStatusCommand.ts
|
|
5682
5772
|
|
|
5683
5773
|
|
|
5684
5774
|
|
|
5685
|
-
var
|
|
5775
|
+
var DescribeConfigurationAggregatorSourcesStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5686
5776
|
return [
|
|
5687
5777
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5688
5778
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5689
5779
|
];
|
|
5690
5780
|
}).s("StarlingDoveService", "DescribeConfigurationAggregatorSourcesStatus", {}).n("ConfigServiceClient", "DescribeConfigurationAggregatorSourcesStatusCommand").f(void 0, void 0).ser(se_DescribeConfigurationAggregatorSourcesStatusCommand).de(de_DescribeConfigurationAggregatorSourcesStatusCommand).build() {
|
|
5781
|
+
static {
|
|
5782
|
+
__name(this, "DescribeConfigurationAggregatorSourcesStatusCommand");
|
|
5783
|
+
}
|
|
5691
5784
|
};
|
|
5692
|
-
__name(_DescribeConfigurationAggregatorSourcesStatusCommand, "DescribeConfigurationAggregatorSourcesStatusCommand");
|
|
5693
|
-
var DescribeConfigurationAggregatorSourcesStatusCommand = _DescribeConfigurationAggregatorSourcesStatusCommand;
|
|
5694
5785
|
|
|
5695
5786
|
// src/commands/DescribeConfigurationRecordersCommand.ts
|
|
5696
5787
|
|
|
5697
5788
|
|
|
5698
5789
|
|
|
5699
|
-
var
|
|
5790
|
+
var DescribeConfigurationRecordersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5700
5791
|
return [
|
|
5701
5792
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5702
5793
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5703
5794
|
];
|
|
5704
5795
|
}).s("StarlingDoveService", "DescribeConfigurationRecorders", {}).n("ConfigServiceClient", "DescribeConfigurationRecordersCommand").f(void 0, void 0).ser(se_DescribeConfigurationRecordersCommand).de(de_DescribeConfigurationRecordersCommand).build() {
|
|
5796
|
+
static {
|
|
5797
|
+
__name(this, "DescribeConfigurationRecordersCommand");
|
|
5798
|
+
}
|
|
5705
5799
|
};
|
|
5706
|
-
__name(_DescribeConfigurationRecordersCommand, "DescribeConfigurationRecordersCommand");
|
|
5707
|
-
var DescribeConfigurationRecordersCommand = _DescribeConfigurationRecordersCommand;
|
|
5708
5800
|
|
|
5709
5801
|
// src/commands/DescribeConfigurationRecorderStatusCommand.ts
|
|
5710
5802
|
|
|
5711
5803
|
|
|
5712
5804
|
|
|
5713
|
-
var
|
|
5805
|
+
var DescribeConfigurationRecorderStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5714
5806
|
return [
|
|
5715
5807
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5716
5808
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5717
5809
|
];
|
|
5718
5810
|
}).s("StarlingDoveService", "DescribeConfigurationRecorderStatus", {}).n("ConfigServiceClient", "DescribeConfigurationRecorderStatusCommand").f(void 0, void 0).ser(se_DescribeConfigurationRecorderStatusCommand).de(de_DescribeConfigurationRecorderStatusCommand).build() {
|
|
5811
|
+
static {
|
|
5812
|
+
__name(this, "DescribeConfigurationRecorderStatusCommand");
|
|
5813
|
+
}
|
|
5719
5814
|
};
|
|
5720
|
-
__name(_DescribeConfigurationRecorderStatusCommand, "DescribeConfigurationRecorderStatusCommand");
|
|
5721
|
-
var DescribeConfigurationRecorderStatusCommand = _DescribeConfigurationRecorderStatusCommand;
|
|
5722
5815
|
|
|
5723
5816
|
// src/commands/DescribeConformancePackComplianceCommand.ts
|
|
5724
5817
|
|
|
5725
5818
|
|
|
5726
5819
|
|
|
5727
|
-
var
|
|
5820
|
+
var DescribeConformancePackComplianceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5728
5821
|
return [
|
|
5729
5822
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5730
5823
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5731
5824
|
];
|
|
5732
5825
|
}).s("StarlingDoveService", "DescribeConformancePackCompliance", {}).n("ConfigServiceClient", "DescribeConformancePackComplianceCommand").f(void 0, void 0).ser(se_DescribeConformancePackComplianceCommand).de(de_DescribeConformancePackComplianceCommand).build() {
|
|
5826
|
+
static {
|
|
5827
|
+
__name(this, "DescribeConformancePackComplianceCommand");
|
|
5828
|
+
}
|
|
5733
5829
|
};
|
|
5734
|
-
__name(_DescribeConformancePackComplianceCommand, "DescribeConformancePackComplianceCommand");
|
|
5735
|
-
var DescribeConformancePackComplianceCommand = _DescribeConformancePackComplianceCommand;
|
|
5736
5830
|
|
|
5737
5831
|
// src/commands/DescribeConformancePacksCommand.ts
|
|
5738
5832
|
|
|
5739
5833
|
|
|
5740
5834
|
|
|
5741
|
-
var
|
|
5835
|
+
var DescribeConformancePacksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5742
5836
|
return [
|
|
5743
5837
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5744
5838
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5745
5839
|
];
|
|
5746
5840
|
}).s("StarlingDoveService", "DescribeConformancePacks", {}).n("ConfigServiceClient", "DescribeConformancePacksCommand").f(void 0, void 0).ser(se_DescribeConformancePacksCommand).de(de_DescribeConformancePacksCommand).build() {
|
|
5841
|
+
static {
|
|
5842
|
+
__name(this, "DescribeConformancePacksCommand");
|
|
5843
|
+
}
|
|
5747
5844
|
};
|
|
5748
|
-
__name(_DescribeConformancePacksCommand, "DescribeConformancePacksCommand");
|
|
5749
|
-
var DescribeConformancePacksCommand = _DescribeConformancePacksCommand;
|
|
5750
5845
|
|
|
5751
5846
|
// src/commands/DescribeConformancePackStatusCommand.ts
|
|
5752
5847
|
|
|
5753
5848
|
|
|
5754
5849
|
|
|
5755
|
-
var
|
|
5850
|
+
var DescribeConformancePackStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5756
5851
|
return [
|
|
5757
5852
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5758
5853
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5759
5854
|
];
|
|
5760
5855
|
}).s("StarlingDoveService", "DescribeConformancePackStatus", {}).n("ConfigServiceClient", "DescribeConformancePackStatusCommand").f(void 0, void 0).ser(se_DescribeConformancePackStatusCommand).de(de_DescribeConformancePackStatusCommand).build() {
|
|
5856
|
+
static {
|
|
5857
|
+
__name(this, "DescribeConformancePackStatusCommand");
|
|
5858
|
+
}
|
|
5761
5859
|
};
|
|
5762
|
-
__name(_DescribeConformancePackStatusCommand, "DescribeConformancePackStatusCommand");
|
|
5763
|
-
var DescribeConformancePackStatusCommand = _DescribeConformancePackStatusCommand;
|
|
5764
5860
|
|
|
5765
5861
|
// src/commands/DescribeDeliveryChannelsCommand.ts
|
|
5766
5862
|
|
|
5767
5863
|
|
|
5768
5864
|
|
|
5769
|
-
var
|
|
5865
|
+
var DescribeDeliveryChannelsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5770
5866
|
return [
|
|
5771
5867
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5772
5868
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5773
5869
|
];
|
|
5774
5870
|
}).s("StarlingDoveService", "DescribeDeliveryChannels", {}).n("ConfigServiceClient", "DescribeDeliveryChannelsCommand").f(void 0, void 0).ser(se_DescribeDeliveryChannelsCommand).de(de_DescribeDeliveryChannelsCommand).build() {
|
|
5871
|
+
static {
|
|
5872
|
+
__name(this, "DescribeDeliveryChannelsCommand");
|
|
5873
|
+
}
|
|
5775
5874
|
};
|
|
5776
|
-
__name(_DescribeDeliveryChannelsCommand, "DescribeDeliveryChannelsCommand");
|
|
5777
|
-
var DescribeDeliveryChannelsCommand = _DescribeDeliveryChannelsCommand;
|
|
5778
5875
|
|
|
5779
5876
|
// src/commands/DescribeDeliveryChannelStatusCommand.ts
|
|
5780
5877
|
|
|
5781
5878
|
|
|
5782
5879
|
|
|
5783
|
-
var
|
|
5880
|
+
var DescribeDeliveryChannelStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5784
5881
|
return [
|
|
5785
5882
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5786
5883
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5787
5884
|
];
|
|
5788
5885
|
}).s("StarlingDoveService", "DescribeDeliveryChannelStatus", {}).n("ConfigServiceClient", "DescribeDeliveryChannelStatusCommand").f(void 0, void 0).ser(se_DescribeDeliveryChannelStatusCommand).de(de_DescribeDeliveryChannelStatusCommand).build() {
|
|
5886
|
+
static {
|
|
5887
|
+
__name(this, "DescribeDeliveryChannelStatusCommand");
|
|
5888
|
+
}
|
|
5789
5889
|
};
|
|
5790
|
-
__name(_DescribeDeliveryChannelStatusCommand, "DescribeDeliveryChannelStatusCommand");
|
|
5791
|
-
var DescribeDeliveryChannelStatusCommand = _DescribeDeliveryChannelStatusCommand;
|
|
5792
5890
|
|
|
5793
5891
|
// src/commands/DescribeOrganizationConfigRulesCommand.ts
|
|
5794
5892
|
|
|
5795
5893
|
|
|
5796
5894
|
|
|
5797
|
-
var
|
|
5895
|
+
var DescribeOrganizationConfigRulesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5798
5896
|
return [
|
|
5799
5897
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5800
5898
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5801
5899
|
];
|
|
5802
5900
|
}).s("StarlingDoveService", "DescribeOrganizationConfigRules", {}).n("ConfigServiceClient", "DescribeOrganizationConfigRulesCommand").f(void 0, void 0).ser(se_DescribeOrganizationConfigRulesCommand).de(de_DescribeOrganizationConfigRulesCommand).build() {
|
|
5901
|
+
static {
|
|
5902
|
+
__name(this, "DescribeOrganizationConfigRulesCommand");
|
|
5903
|
+
}
|
|
5803
5904
|
};
|
|
5804
|
-
__name(_DescribeOrganizationConfigRulesCommand, "DescribeOrganizationConfigRulesCommand");
|
|
5805
|
-
var DescribeOrganizationConfigRulesCommand = _DescribeOrganizationConfigRulesCommand;
|
|
5806
5905
|
|
|
5807
5906
|
// src/commands/DescribeOrganizationConfigRuleStatusesCommand.ts
|
|
5808
5907
|
|
|
5809
5908
|
|
|
5810
5909
|
|
|
5811
|
-
var
|
|
5910
|
+
var DescribeOrganizationConfigRuleStatusesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5812
5911
|
return [
|
|
5813
5912
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5814
5913
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5815
5914
|
];
|
|
5816
5915
|
}).s("StarlingDoveService", "DescribeOrganizationConfigRuleStatuses", {}).n("ConfigServiceClient", "DescribeOrganizationConfigRuleStatusesCommand").f(void 0, void 0).ser(se_DescribeOrganizationConfigRuleStatusesCommand).de(de_DescribeOrganizationConfigRuleStatusesCommand).build() {
|
|
5916
|
+
static {
|
|
5917
|
+
__name(this, "DescribeOrganizationConfigRuleStatusesCommand");
|
|
5918
|
+
}
|
|
5817
5919
|
};
|
|
5818
|
-
__name(_DescribeOrganizationConfigRuleStatusesCommand, "DescribeOrganizationConfigRuleStatusesCommand");
|
|
5819
|
-
var DescribeOrganizationConfigRuleStatusesCommand = _DescribeOrganizationConfigRuleStatusesCommand;
|
|
5820
5920
|
|
|
5821
5921
|
// src/commands/DescribeOrganizationConformancePacksCommand.ts
|
|
5822
5922
|
|
|
5823
5923
|
|
|
5824
5924
|
|
|
5825
|
-
var
|
|
5925
|
+
var DescribeOrganizationConformancePacksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5826
5926
|
return [
|
|
5827
5927
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5828
5928
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5829
5929
|
];
|
|
5830
5930
|
}).s("StarlingDoveService", "DescribeOrganizationConformancePacks", {}).n("ConfigServiceClient", "DescribeOrganizationConformancePacksCommand").f(void 0, void 0).ser(se_DescribeOrganizationConformancePacksCommand).de(de_DescribeOrganizationConformancePacksCommand).build() {
|
|
5931
|
+
static {
|
|
5932
|
+
__name(this, "DescribeOrganizationConformancePacksCommand");
|
|
5933
|
+
}
|
|
5831
5934
|
};
|
|
5832
|
-
__name(_DescribeOrganizationConformancePacksCommand, "DescribeOrganizationConformancePacksCommand");
|
|
5833
|
-
var DescribeOrganizationConformancePacksCommand = _DescribeOrganizationConformancePacksCommand;
|
|
5834
5935
|
|
|
5835
5936
|
// src/commands/DescribeOrganizationConformancePackStatusesCommand.ts
|
|
5836
5937
|
|
|
5837
5938
|
|
|
5838
5939
|
|
|
5839
|
-
var
|
|
5940
|
+
var DescribeOrganizationConformancePackStatusesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5840
5941
|
return [
|
|
5841
5942
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5842
5943
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5843
5944
|
];
|
|
5844
5945
|
}).s("StarlingDoveService", "DescribeOrganizationConformancePackStatuses", {}).n("ConfigServiceClient", "DescribeOrganizationConformancePackStatusesCommand").f(void 0, void 0).ser(se_DescribeOrganizationConformancePackStatusesCommand).de(de_DescribeOrganizationConformancePackStatusesCommand).build() {
|
|
5946
|
+
static {
|
|
5947
|
+
__name(this, "DescribeOrganizationConformancePackStatusesCommand");
|
|
5948
|
+
}
|
|
5845
5949
|
};
|
|
5846
|
-
__name(_DescribeOrganizationConformancePackStatusesCommand, "DescribeOrganizationConformancePackStatusesCommand");
|
|
5847
|
-
var DescribeOrganizationConformancePackStatusesCommand = _DescribeOrganizationConformancePackStatusesCommand;
|
|
5848
5950
|
|
|
5849
5951
|
// src/commands/DescribePendingAggregationRequestsCommand.ts
|
|
5850
5952
|
|
|
5851
5953
|
|
|
5852
5954
|
|
|
5853
|
-
var
|
|
5955
|
+
var DescribePendingAggregationRequestsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5854
5956
|
return [
|
|
5855
5957
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5856
5958
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5857
5959
|
];
|
|
5858
5960
|
}).s("StarlingDoveService", "DescribePendingAggregationRequests", {}).n("ConfigServiceClient", "DescribePendingAggregationRequestsCommand").f(void 0, void 0).ser(se_DescribePendingAggregationRequestsCommand).de(de_DescribePendingAggregationRequestsCommand).build() {
|
|
5961
|
+
static {
|
|
5962
|
+
__name(this, "DescribePendingAggregationRequestsCommand");
|
|
5963
|
+
}
|
|
5859
5964
|
};
|
|
5860
|
-
__name(_DescribePendingAggregationRequestsCommand, "DescribePendingAggregationRequestsCommand");
|
|
5861
|
-
var DescribePendingAggregationRequestsCommand = _DescribePendingAggregationRequestsCommand;
|
|
5862
5965
|
|
|
5863
5966
|
// src/commands/DescribeRemediationConfigurationsCommand.ts
|
|
5864
5967
|
|
|
5865
5968
|
|
|
5866
5969
|
|
|
5867
|
-
var
|
|
5970
|
+
var DescribeRemediationConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5868
5971
|
return [
|
|
5869
5972
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5870
5973
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5871
5974
|
];
|
|
5872
5975
|
}).s("StarlingDoveService", "DescribeRemediationConfigurations", {}).n("ConfigServiceClient", "DescribeRemediationConfigurationsCommand").f(void 0, void 0).ser(se_DescribeRemediationConfigurationsCommand).de(de_DescribeRemediationConfigurationsCommand).build() {
|
|
5976
|
+
static {
|
|
5977
|
+
__name(this, "DescribeRemediationConfigurationsCommand");
|
|
5978
|
+
}
|
|
5873
5979
|
};
|
|
5874
|
-
__name(_DescribeRemediationConfigurationsCommand, "DescribeRemediationConfigurationsCommand");
|
|
5875
|
-
var DescribeRemediationConfigurationsCommand = _DescribeRemediationConfigurationsCommand;
|
|
5876
5980
|
|
|
5877
5981
|
// src/commands/DescribeRemediationExceptionsCommand.ts
|
|
5878
5982
|
|
|
5879
5983
|
|
|
5880
5984
|
|
|
5881
|
-
var
|
|
5985
|
+
var DescribeRemediationExceptionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5882
5986
|
return [
|
|
5883
5987
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5884
5988
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5885
5989
|
];
|
|
5886
5990
|
}).s("StarlingDoveService", "DescribeRemediationExceptions", {}).n("ConfigServiceClient", "DescribeRemediationExceptionsCommand").f(void 0, void 0).ser(se_DescribeRemediationExceptionsCommand).de(de_DescribeRemediationExceptionsCommand).build() {
|
|
5991
|
+
static {
|
|
5992
|
+
__name(this, "DescribeRemediationExceptionsCommand");
|
|
5993
|
+
}
|
|
5887
5994
|
};
|
|
5888
|
-
__name(_DescribeRemediationExceptionsCommand, "DescribeRemediationExceptionsCommand");
|
|
5889
|
-
var DescribeRemediationExceptionsCommand = _DescribeRemediationExceptionsCommand;
|
|
5890
5995
|
|
|
5891
5996
|
// src/commands/DescribeRemediationExecutionStatusCommand.ts
|
|
5892
5997
|
|
|
5893
5998
|
|
|
5894
5999
|
|
|
5895
|
-
var
|
|
6000
|
+
var DescribeRemediationExecutionStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5896
6001
|
return [
|
|
5897
6002
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5898
6003
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5899
6004
|
];
|
|
5900
6005
|
}).s("StarlingDoveService", "DescribeRemediationExecutionStatus", {}).n("ConfigServiceClient", "DescribeRemediationExecutionStatusCommand").f(void 0, void 0).ser(se_DescribeRemediationExecutionStatusCommand).de(de_DescribeRemediationExecutionStatusCommand).build() {
|
|
6006
|
+
static {
|
|
6007
|
+
__name(this, "DescribeRemediationExecutionStatusCommand");
|
|
6008
|
+
}
|
|
5901
6009
|
};
|
|
5902
|
-
__name(_DescribeRemediationExecutionStatusCommand, "DescribeRemediationExecutionStatusCommand");
|
|
5903
|
-
var DescribeRemediationExecutionStatusCommand = _DescribeRemediationExecutionStatusCommand;
|
|
5904
6010
|
|
|
5905
6011
|
// src/commands/DescribeRetentionConfigurationsCommand.ts
|
|
5906
6012
|
|
|
5907
6013
|
|
|
5908
6014
|
|
|
5909
|
-
var
|
|
6015
|
+
var DescribeRetentionConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5910
6016
|
return [
|
|
5911
6017
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5912
6018
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5913
6019
|
];
|
|
5914
6020
|
}).s("StarlingDoveService", "DescribeRetentionConfigurations", {}).n("ConfigServiceClient", "DescribeRetentionConfigurationsCommand").f(void 0, void 0).ser(se_DescribeRetentionConfigurationsCommand).de(de_DescribeRetentionConfigurationsCommand).build() {
|
|
6021
|
+
static {
|
|
6022
|
+
__name(this, "DescribeRetentionConfigurationsCommand");
|
|
6023
|
+
}
|
|
5915
6024
|
};
|
|
5916
|
-
__name(_DescribeRetentionConfigurationsCommand, "DescribeRetentionConfigurationsCommand");
|
|
5917
|
-
var DescribeRetentionConfigurationsCommand = _DescribeRetentionConfigurationsCommand;
|
|
5918
6025
|
|
|
5919
6026
|
// src/commands/DisassociateResourceTypesCommand.ts
|
|
5920
6027
|
|
|
5921
6028
|
|
|
5922
6029
|
|
|
5923
|
-
var
|
|
6030
|
+
var DisassociateResourceTypesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5924
6031
|
return [
|
|
5925
6032
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5926
6033
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5927
6034
|
];
|
|
5928
6035
|
}).s("StarlingDoveService", "DisassociateResourceTypes", {}).n("ConfigServiceClient", "DisassociateResourceTypesCommand").f(void 0, void 0).ser(se_DisassociateResourceTypesCommand).de(de_DisassociateResourceTypesCommand).build() {
|
|
6036
|
+
static {
|
|
6037
|
+
__name(this, "DisassociateResourceTypesCommand");
|
|
6038
|
+
}
|
|
5929
6039
|
};
|
|
5930
|
-
__name(_DisassociateResourceTypesCommand, "DisassociateResourceTypesCommand");
|
|
5931
|
-
var DisassociateResourceTypesCommand = _DisassociateResourceTypesCommand;
|
|
5932
6040
|
|
|
5933
6041
|
// src/commands/GetAggregateComplianceDetailsByConfigRuleCommand.ts
|
|
5934
6042
|
|
|
5935
6043
|
|
|
5936
6044
|
|
|
5937
|
-
var
|
|
6045
|
+
var GetAggregateComplianceDetailsByConfigRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5938
6046
|
return [
|
|
5939
6047
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5940
6048
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5941
6049
|
];
|
|
5942
6050
|
}).s("StarlingDoveService", "GetAggregateComplianceDetailsByConfigRule", {}).n("ConfigServiceClient", "GetAggregateComplianceDetailsByConfigRuleCommand").f(void 0, void 0).ser(se_GetAggregateComplianceDetailsByConfigRuleCommand).de(de_GetAggregateComplianceDetailsByConfigRuleCommand).build() {
|
|
6051
|
+
static {
|
|
6052
|
+
__name(this, "GetAggregateComplianceDetailsByConfigRuleCommand");
|
|
6053
|
+
}
|
|
5943
6054
|
};
|
|
5944
|
-
__name(_GetAggregateComplianceDetailsByConfigRuleCommand, "GetAggregateComplianceDetailsByConfigRuleCommand");
|
|
5945
|
-
var GetAggregateComplianceDetailsByConfigRuleCommand = _GetAggregateComplianceDetailsByConfigRuleCommand;
|
|
5946
6055
|
|
|
5947
6056
|
// src/commands/GetAggregateConfigRuleComplianceSummaryCommand.ts
|
|
5948
6057
|
|
|
5949
6058
|
|
|
5950
6059
|
|
|
5951
|
-
var
|
|
6060
|
+
var GetAggregateConfigRuleComplianceSummaryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5952
6061
|
return [
|
|
5953
6062
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5954
6063
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5955
6064
|
];
|
|
5956
6065
|
}).s("StarlingDoveService", "GetAggregateConfigRuleComplianceSummary", {}).n("ConfigServiceClient", "GetAggregateConfigRuleComplianceSummaryCommand").f(void 0, void 0).ser(se_GetAggregateConfigRuleComplianceSummaryCommand).de(de_GetAggregateConfigRuleComplianceSummaryCommand).build() {
|
|
6066
|
+
static {
|
|
6067
|
+
__name(this, "GetAggregateConfigRuleComplianceSummaryCommand");
|
|
6068
|
+
}
|
|
5957
6069
|
};
|
|
5958
|
-
__name(_GetAggregateConfigRuleComplianceSummaryCommand, "GetAggregateConfigRuleComplianceSummaryCommand");
|
|
5959
|
-
var GetAggregateConfigRuleComplianceSummaryCommand = _GetAggregateConfigRuleComplianceSummaryCommand;
|
|
5960
6070
|
|
|
5961
6071
|
// src/commands/GetAggregateConformancePackComplianceSummaryCommand.ts
|
|
5962
6072
|
|
|
5963
6073
|
|
|
5964
6074
|
|
|
5965
|
-
var
|
|
6075
|
+
var GetAggregateConformancePackComplianceSummaryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5966
6076
|
return [
|
|
5967
6077
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5968
6078
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5969
6079
|
];
|
|
5970
6080
|
}).s("StarlingDoveService", "GetAggregateConformancePackComplianceSummary", {}).n("ConfigServiceClient", "GetAggregateConformancePackComplianceSummaryCommand").f(void 0, void 0).ser(se_GetAggregateConformancePackComplianceSummaryCommand).de(de_GetAggregateConformancePackComplianceSummaryCommand).build() {
|
|
6081
|
+
static {
|
|
6082
|
+
__name(this, "GetAggregateConformancePackComplianceSummaryCommand");
|
|
6083
|
+
}
|
|
5971
6084
|
};
|
|
5972
|
-
__name(_GetAggregateConformancePackComplianceSummaryCommand, "GetAggregateConformancePackComplianceSummaryCommand");
|
|
5973
|
-
var GetAggregateConformancePackComplianceSummaryCommand = _GetAggregateConformancePackComplianceSummaryCommand;
|
|
5974
6085
|
|
|
5975
6086
|
// src/commands/GetAggregateDiscoveredResourceCountsCommand.ts
|
|
5976
6087
|
|
|
5977
6088
|
|
|
5978
6089
|
|
|
5979
|
-
var
|
|
6090
|
+
var GetAggregateDiscoveredResourceCountsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5980
6091
|
return [
|
|
5981
6092
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5982
6093
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5983
6094
|
];
|
|
5984
6095
|
}).s("StarlingDoveService", "GetAggregateDiscoveredResourceCounts", {}).n("ConfigServiceClient", "GetAggregateDiscoveredResourceCountsCommand").f(void 0, void 0).ser(se_GetAggregateDiscoveredResourceCountsCommand).de(de_GetAggregateDiscoveredResourceCountsCommand).build() {
|
|
6096
|
+
static {
|
|
6097
|
+
__name(this, "GetAggregateDiscoveredResourceCountsCommand");
|
|
6098
|
+
}
|
|
5985
6099
|
};
|
|
5986
|
-
__name(_GetAggregateDiscoveredResourceCountsCommand, "GetAggregateDiscoveredResourceCountsCommand");
|
|
5987
|
-
var GetAggregateDiscoveredResourceCountsCommand = _GetAggregateDiscoveredResourceCountsCommand;
|
|
5988
6100
|
|
|
5989
6101
|
// src/commands/GetAggregateResourceConfigCommand.ts
|
|
5990
6102
|
|
|
5991
6103
|
|
|
5992
6104
|
|
|
5993
|
-
var
|
|
6105
|
+
var GetAggregateResourceConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
5994
6106
|
return [
|
|
5995
6107
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
5996
6108
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
5997
6109
|
];
|
|
5998
6110
|
}).s("StarlingDoveService", "GetAggregateResourceConfig", {}).n("ConfigServiceClient", "GetAggregateResourceConfigCommand").f(void 0, void 0).ser(se_GetAggregateResourceConfigCommand).de(de_GetAggregateResourceConfigCommand).build() {
|
|
6111
|
+
static {
|
|
6112
|
+
__name(this, "GetAggregateResourceConfigCommand");
|
|
6113
|
+
}
|
|
5999
6114
|
};
|
|
6000
|
-
__name(_GetAggregateResourceConfigCommand, "GetAggregateResourceConfigCommand");
|
|
6001
|
-
var GetAggregateResourceConfigCommand = _GetAggregateResourceConfigCommand;
|
|
6002
6115
|
|
|
6003
6116
|
// src/commands/GetComplianceDetailsByConfigRuleCommand.ts
|
|
6004
6117
|
|
|
6005
6118
|
|
|
6006
6119
|
|
|
6007
|
-
var
|
|
6120
|
+
var GetComplianceDetailsByConfigRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6008
6121
|
return [
|
|
6009
6122
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6010
6123
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6011
6124
|
];
|
|
6012
6125
|
}).s("StarlingDoveService", "GetComplianceDetailsByConfigRule", {}).n("ConfigServiceClient", "GetComplianceDetailsByConfigRuleCommand").f(void 0, void 0).ser(se_GetComplianceDetailsByConfigRuleCommand).de(de_GetComplianceDetailsByConfigRuleCommand).build() {
|
|
6126
|
+
static {
|
|
6127
|
+
__name(this, "GetComplianceDetailsByConfigRuleCommand");
|
|
6128
|
+
}
|
|
6013
6129
|
};
|
|
6014
|
-
__name(_GetComplianceDetailsByConfigRuleCommand, "GetComplianceDetailsByConfigRuleCommand");
|
|
6015
|
-
var GetComplianceDetailsByConfigRuleCommand = _GetComplianceDetailsByConfigRuleCommand;
|
|
6016
6130
|
|
|
6017
6131
|
// src/commands/GetComplianceDetailsByResourceCommand.ts
|
|
6018
6132
|
|
|
6019
6133
|
|
|
6020
6134
|
|
|
6021
|
-
var
|
|
6135
|
+
var GetComplianceDetailsByResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6022
6136
|
return [
|
|
6023
6137
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6024
6138
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6025
6139
|
];
|
|
6026
6140
|
}).s("StarlingDoveService", "GetComplianceDetailsByResource", {}).n("ConfigServiceClient", "GetComplianceDetailsByResourceCommand").f(void 0, void 0).ser(se_GetComplianceDetailsByResourceCommand).de(de_GetComplianceDetailsByResourceCommand).build() {
|
|
6141
|
+
static {
|
|
6142
|
+
__name(this, "GetComplianceDetailsByResourceCommand");
|
|
6143
|
+
}
|
|
6027
6144
|
};
|
|
6028
|
-
__name(_GetComplianceDetailsByResourceCommand, "GetComplianceDetailsByResourceCommand");
|
|
6029
|
-
var GetComplianceDetailsByResourceCommand = _GetComplianceDetailsByResourceCommand;
|
|
6030
6145
|
|
|
6031
6146
|
// src/commands/GetComplianceSummaryByConfigRuleCommand.ts
|
|
6032
6147
|
|
|
6033
6148
|
|
|
6034
6149
|
|
|
6035
|
-
var
|
|
6150
|
+
var GetComplianceSummaryByConfigRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6036
6151
|
return [
|
|
6037
6152
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6038
6153
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6039
6154
|
];
|
|
6040
6155
|
}).s("StarlingDoveService", "GetComplianceSummaryByConfigRule", {}).n("ConfigServiceClient", "GetComplianceSummaryByConfigRuleCommand").f(void 0, void 0).ser(se_GetComplianceSummaryByConfigRuleCommand).de(de_GetComplianceSummaryByConfigRuleCommand).build() {
|
|
6156
|
+
static {
|
|
6157
|
+
__name(this, "GetComplianceSummaryByConfigRuleCommand");
|
|
6158
|
+
}
|
|
6041
6159
|
};
|
|
6042
|
-
__name(_GetComplianceSummaryByConfigRuleCommand, "GetComplianceSummaryByConfigRuleCommand");
|
|
6043
|
-
var GetComplianceSummaryByConfigRuleCommand = _GetComplianceSummaryByConfigRuleCommand;
|
|
6044
6160
|
|
|
6045
6161
|
// src/commands/GetComplianceSummaryByResourceTypeCommand.ts
|
|
6046
6162
|
|
|
6047
6163
|
|
|
6048
6164
|
|
|
6049
|
-
var
|
|
6165
|
+
var GetComplianceSummaryByResourceTypeCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6050
6166
|
return [
|
|
6051
6167
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6052
6168
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6053
6169
|
];
|
|
6054
6170
|
}).s("StarlingDoveService", "GetComplianceSummaryByResourceType", {}).n("ConfigServiceClient", "GetComplianceSummaryByResourceTypeCommand").f(void 0, void 0).ser(se_GetComplianceSummaryByResourceTypeCommand).de(de_GetComplianceSummaryByResourceTypeCommand).build() {
|
|
6171
|
+
static {
|
|
6172
|
+
__name(this, "GetComplianceSummaryByResourceTypeCommand");
|
|
6173
|
+
}
|
|
6055
6174
|
};
|
|
6056
|
-
__name(_GetComplianceSummaryByResourceTypeCommand, "GetComplianceSummaryByResourceTypeCommand");
|
|
6057
|
-
var GetComplianceSummaryByResourceTypeCommand = _GetComplianceSummaryByResourceTypeCommand;
|
|
6058
6175
|
|
|
6059
6176
|
// src/commands/GetConformancePackComplianceDetailsCommand.ts
|
|
6060
6177
|
|
|
6061
6178
|
|
|
6062
6179
|
|
|
6063
|
-
var
|
|
6180
|
+
var GetConformancePackComplianceDetailsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6064
6181
|
return [
|
|
6065
6182
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6066
6183
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6067
6184
|
];
|
|
6068
6185
|
}).s("StarlingDoveService", "GetConformancePackComplianceDetails", {}).n("ConfigServiceClient", "GetConformancePackComplianceDetailsCommand").f(void 0, void 0).ser(se_GetConformancePackComplianceDetailsCommand).de(de_GetConformancePackComplianceDetailsCommand).build() {
|
|
6186
|
+
static {
|
|
6187
|
+
__name(this, "GetConformancePackComplianceDetailsCommand");
|
|
6188
|
+
}
|
|
6069
6189
|
};
|
|
6070
|
-
__name(_GetConformancePackComplianceDetailsCommand, "GetConformancePackComplianceDetailsCommand");
|
|
6071
|
-
var GetConformancePackComplianceDetailsCommand = _GetConformancePackComplianceDetailsCommand;
|
|
6072
6190
|
|
|
6073
6191
|
// src/commands/GetConformancePackComplianceSummaryCommand.ts
|
|
6074
6192
|
|
|
6075
6193
|
|
|
6076
6194
|
|
|
6077
|
-
var
|
|
6195
|
+
var GetConformancePackComplianceSummaryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6078
6196
|
return [
|
|
6079
6197
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6080
6198
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6081
6199
|
];
|
|
6082
6200
|
}).s("StarlingDoveService", "GetConformancePackComplianceSummary", {}).n("ConfigServiceClient", "GetConformancePackComplianceSummaryCommand").f(void 0, void 0).ser(se_GetConformancePackComplianceSummaryCommand).de(de_GetConformancePackComplianceSummaryCommand).build() {
|
|
6201
|
+
static {
|
|
6202
|
+
__name(this, "GetConformancePackComplianceSummaryCommand");
|
|
6203
|
+
}
|
|
6083
6204
|
};
|
|
6084
|
-
__name(_GetConformancePackComplianceSummaryCommand, "GetConformancePackComplianceSummaryCommand");
|
|
6085
|
-
var GetConformancePackComplianceSummaryCommand = _GetConformancePackComplianceSummaryCommand;
|
|
6086
6205
|
|
|
6087
6206
|
// src/commands/GetCustomRulePolicyCommand.ts
|
|
6088
6207
|
|
|
6089
6208
|
|
|
6090
6209
|
|
|
6091
|
-
var
|
|
6210
|
+
var GetCustomRulePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6092
6211
|
return [
|
|
6093
6212
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6094
6213
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6095
6214
|
];
|
|
6096
6215
|
}).s("StarlingDoveService", "GetCustomRulePolicy", {}).n("ConfigServiceClient", "GetCustomRulePolicyCommand").f(void 0, void 0).ser(se_GetCustomRulePolicyCommand).de(de_GetCustomRulePolicyCommand).build() {
|
|
6216
|
+
static {
|
|
6217
|
+
__name(this, "GetCustomRulePolicyCommand");
|
|
6218
|
+
}
|
|
6097
6219
|
};
|
|
6098
|
-
__name(_GetCustomRulePolicyCommand, "GetCustomRulePolicyCommand");
|
|
6099
|
-
var GetCustomRulePolicyCommand = _GetCustomRulePolicyCommand;
|
|
6100
6220
|
|
|
6101
6221
|
// src/commands/GetDiscoveredResourceCountsCommand.ts
|
|
6102
6222
|
|
|
6103
6223
|
|
|
6104
6224
|
|
|
6105
|
-
var
|
|
6225
|
+
var GetDiscoveredResourceCountsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6106
6226
|
return [
|
|
6107
6227
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6108
6228
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6109
6229
|
];
|
|
6110
6230
|
}).s("StarlingDoveService", "GetDiscoveredResourceCounts", {}).n("ConfigServiceClient", "GetDiscoveredResourceCountsCommand").f(void 0, void 0).ser(se_GetDiscoveredResourceCountsCommand).de(de_GetDiscoveredResourceCountsCommand).build() {
|
|
6231
|
+
static {
|
|
6232
|
+
__name(this, "GetDiscoveredResourceCountsCommand");
|
|
6233
|
+
}
|
|
6111
6234
|
};
|
|
6112
|
-
__name(_GetDiscoveredResourceCountsCommand, "GetDiscoveredResourceCountsCommand");
|
|
6113
|
-
var GetDiscoveredResourceCountsCommand = _GetDiscoveredResourceCountsCommand;
|
|
6114
6235
|
|
|
6115
6236
|
// src/commands/GetOrganizationConfigRuleDetailedStatusCommand.ts
|
|
6116
6237
|
|
|
6117
6238
|
|
|
6118
6239
|
|
|
6119
|
-
var
|
|
6240
|
+
var GetOrganizationConfigRuleDetailedStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6120
6241
|
return [
|
|
6121
6242
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6122
6243
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6123
6244
|
];
|
|
6124
6245
|
}).s("StarlingDoveService", "GetOrganizationConfigRuleDetailedStatus", {}).n("ConfigServiceClient", "GetOrganizationConfigRuleDetailedStatusCommand").f(void 0, void 0).ser(se_GetOrganizationConfigRuleDetailedStatusCommand).de(de_GetOrganizationConfigRuleDetailedStatusCommand).build() {
|
|
6246
|
+
static {
|
|
6247
|
+
__name(this, "GetOrganizationConfigRuleDetailedStatusCommand");
|
|
6248
|
+
}
|
|
6125
6249
|
};
|
|
6126
|
-
__name(_GetOrganizationConfigRuleDetailedStatusCommand, "GetOrganizationConfigRuleDetailedStatusCommand");
|
|
6127
|
-
var GetOrganizationConfigRuleDetailedStatusCommand = _GetOrganizationConfigRuleDetailedStatusCommand;
|
|
6128
6250
|
|
|
6129
6251
|
// src/commands/GetOrganizationConformancePackDetailedStatusCommand.ts
|
|
6130
6252
|
|
|
6131
6253
|
|
|
6132
6254
|
|
|
6133
|
-
var
|
|
6255
|
+
var GetOrganizationConformancePackDetailedStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6134
6256
|
return [
|
|
6135
6257
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6136
6258
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6137
6259
|
];
|
|
6138
6260
|
}).s("StarlingDoveService", "GetOrganizationConformancePackDetailedStatus", {}).n("ConfigServiceClient", "GetOrganizationConformancePackDetailedStatusCommand").f(void 0, void 0).ser(se_GetOrganizationConformancePackDetailedStatusCommand).de(de_GetOrganizationConformancePackDetailedStatusCommand).build() {
|
|
6261
|
+
static {
|
|
6262
|
+
__name(this, "GetOrganizationConformancePackDetailedStatusCommand");
|
|
6263
|
+
}
|
|
6139
6264
|
};
|
|
6140
|
-
__name(_GetOrganizationConformancePackDetailedStatusCommand, "GetOrganizationConformancePackDetailedStatusCommand");
|
|
6141
|
-
var GetOrganizationConformancePackDetailedStatusCommand = _GetOrganizationConformancePackDetailedStatusCommand;
|
|
6142
6265
|
|
|
6143
6266
|
// src/commands/GetOrganizationCustomRulePolicyCommand.ts
|
|
6144
6267
|
|
|
6145
6268
|
|
|
6146
6269
|
|
|
6147
|
-
var
|
|
6270
|
+
var GetOrganizationCustomRulePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6148
6271
|
return [
|
|
6149
6272
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6150
6273
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6151
6274
|
];
|
|
6152
6275
|
}).s("StarlingDoveService", "GetOrganizationCustomRulePolicy", {}).n("ConfigServiceClient", "GetOrganizationCustomRulePolicyCommand").f(void 0, void 0).ser(se_GetOrganizationCustomRulePolicyCommand).de(de_GetOrganizationCustomRulePolicyCommand).build() {
|
|
6276
|
+
static {
|
|
6277
|
+
__name(this, "GetOrganizationCustomRulePolicyCommand");
|
|
6278
|
+
}
|
|
6153
6279
|
};
|
|
6154
|
-
__name(_GetOrganizationCustomRulePolicyCommand, "GetOrganizationCustomRulePolicyCommand");
|
|
6155
|
-
var GetOrganizationCustomRulePolicyCommand = _GetOrganizationCustomRulePolicyCommand;
|
|
6156
6280
|
|
|
6157
6281
|
// src/commands/GetResourceConfigHistoryCommand.ts
|
|
6158
6282
|
|
|
6159
6283
|
|
|
6160
6284
|
|
|
6161
|
-
var
|
|
6285
|
+
var GetResourceConfigHistoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6162
6286
|
return [
|
|
6163
6287
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6164
6288
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6165
6289
|
];
|
|
6166
6290
|
}).s("StarlingDoveService", "GetResourceConfigHistory", {}).n("ConfigServiceClient", "GetResourceConfigHistoryCommand").f(void 0, void 0).ser(se_GetResourceConfigHistoryCommand).de(de_GetResourceConfigHistoryCommand).build() {
|
|
6291
|
+
static {
|
|
6292
|
+
__name(this, "GetResourceConfigHistoryCommand");
|
|
6293
|
+
}
|
|
6167
6294
|
};
|
|
6168
|
-
__name(_GetResourceConfigHistoryCommand, "GetResourceConfigHistoryCommand");
|
|
6169
|
-
var GetResourceConfigHistoryCommand = _GetResourceConfigHistoryCommand;
|
|
6170
6295
|
|
|
6171
6296
|
// src/commands/GetResourceEvaluationSummaryCommand.ts
|
|
6172
6297
|
|
|
6173
6298
|
|
|
6174
6299
|
|
|
6175
|
-
var
|
|
6300
|
+
var GetResourceEvaluationSummaryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6176
6301
|
return [
|
|
6177
6302
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6178
6303
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6179
6304
|
];
|
|
6180
6305
|
}).s("StarlingDoveService", "GetResourceEvaluationSummary", {}).n("ConfigServiceClient", "GetResourceEvaluationSummaryCommand").f(void 0, void 0).ser(se_GetResourceEvaluationSummaryCommand).de(de_GetResourceEvaluationSummaryCommand).build() {
|
|
6306
|
+
static {
|
|
6307
|
+
__name(this, "GetResourceEvaluationSummaryCommand");
|
|
6308
|
+
}
|
|
6181
6309
|
};
|
|
6182
|
-
__name(_GetResourceEvaluationSummaryCommand, "GetResourceEvaluationSummaryCommand");
|
|
6183
|
-
var GetResourceEvaluationSummaryCommand = _GetResourceEvaluationSummaryCommand;
|
|
6184
6310
|
|
|
6185
6311
|
// src/commands/GetStoredQueryCommand.ts
|
|
6186
6312
|
|
|
6187
6313
|
|
|
6188
6314
|
|
|
6189
|
-
var
|
|
6315
|
+
var GetStoredQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6190
6316
|
return [
|
|
6191
6317
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6192
6318
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6193
6319
|
];
|
|
6194
6320
|
}).s("StarlingDoveService", "GetStoredQuery", {}).n("ConfigServiceClient", "GetStoredQueryCommand").f(void 0, void 0).ser(se_GetStoredQueryCommand).de(de_GetStoredQueryCommand).build() {
|
|
6321
|
+
static {
|
|
6322
|
+
__name(this, "GetStoredQueryCommand");
|
|
6323
|
+
}
|
|
6195
6324
|
};
|
|
6196
|
-
__name(_GetStoredQueryCommand, "GetStoredQueryCommand");
|
|
6197
|
-
var GetStoredQueryCommand = _GetStoredQueryCommand;
|
|
6198
6325
|
|
|
6199
6326
|
// src/commands/ListAggregateDiscoveredResourcesCommand.ts
|
|
6200
6327
|
|
|
6201
6328
|
|
|
6202
6329
|
|
|
6203
|
-
var
|
|
6330
|
+
var ListAggregateDiscoveredResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6204
6331
|
return [
|
|
6205
6332
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6206
6333
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6207
6334
|
];
|
|
6208
6335
|
}).s("StarlingDoveService", "ListAggregateDiscoveredResources", {}).n("ConfigServiceClient", "ListAggregateDiscoveredResourcesCommand").f(void 0, void 0).ser(se_ListAggregateDiscoveredResourcesCommand).de(de_ListAggregateDiscoveredResourcesCommand).build() {
|
|
6336
|
+
static {
|
|
6337
|
+
__name(this, "ListAggregateDiscoveredResourcesCommand");
|
|
6338
|
+
}
|
|
6209
6339
|
};
|
|
6210
|
-
__name(_ListAggregateDiscoveredResourcesCommand, "ListAggregateDiscoveredResourcesCommand");
|
|
6211
|
-
var ListAggregateDiscoveredResourcesCommand = _ListAggregateDiscoveredResourcesCommand;
|
|
6212
6340
|
|
|
6213
6341
|
// src/commands/ListConfigurationRecordersCommand.ts
|
|
6214
6342
|
|
|
6215
6343
|
|
|
6216
6344
|
|
|
6217
|
-
var
|
|
6345
|
+
var ListConfigurationRecordersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6218
6346
|
return [
|
|
6219
6347
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6220
6348
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6221
6349
|
];
|
|
6222
6350
|
}).s("StarlingDoveService", "ListConfigurationRecorders", {}).n("ConfigServiceClient", "ListConfigurationRecordersCommand").f(void 0, void 0).ser(se_ListConfigurationRecordersCommand).de(de_ListConfigurationRecordersCommand).build() {
|
|
6351
|
+
static {
|
|
6352
|
+
__name(this, "ListConfigurationRecordersCommand");
|
|
6353
|
+
}
|
|
6223
6354
|
};
|
|
6224
|
-
__name(_ListConfigurationRecordersCommand, "ListConfigurationRecordersCommand");
|
|
6225
|
-
var ListConfigurationRecordersCommand = _ListConfigurationRecordersCommand;
|
|
6226
6355
|
|
|
6227
6356
|
// src/commands/ListConformancePackComplianceScoresCommand.ts
|
|
6228
6357
|
|
|
6229
6358
|
|
|
6230
6359
|
|
|
6231
|
-
var
|
|
6360
|
+
var ListConformancePackComplianceScoresCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6232
6361
|
return [
|
|
6233
6362
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6234
6363
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6235
6364
|
];
|
|
6236
6365
|
}).s("StarlingDoveService", "ListConformancePackComplianceScores", {}).n("ConfigServiceClient", "ListConformancePackComplianceScoresCommand").f(void 0, void 0).ser(se_ListConformancePackComplianceScoresCommand).de(de_ListConformancePackComplianceScoresCommand).build() {
|
|
6366
|
+
static {
|
|
6367
|
+
__name(this, "ListConformancePackComplianceScoresCommand");
|
|
6368
|
+
}
|
|
6237
6369
|
};
|
|
6238
|
-
__name(_ListConformancePackComplianceScoresCommand, "ListConformancePackComplianceScoresCommand");
|
|
6239
|
-
var ListConformancePackComplianceScoresCommand = _ListConformancePackComplianceScoresCommand;
|
|
6240
6370
|
|
|
6241
6371
|
// src/commands/ListDiscoveredResourcesCommand.ts
|
|
6242
6372
|
|
|
6243
6373
|
|
|
6244
6374
|
|
|
6245
|
-
var
|
|
6375
|
+
var ListDiscoveredResourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6246
6376
|
return [
|
|
6247
6377
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6248
6378
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6249
6379
|
];
|
|
6250
6380
|
}).s("StarlingDoveService", "ListDiscoveredResources", {}).n("ConfigServiceClient", "ListDiscoveredResourcesCommand").f(void 0, void 0).ser(se_ListDiscoveredResourcesCommand).de(de_ListDiscoveredResourcesCommand).build() {
|
|
6381
|
+
static {
|
|
6382
|
+
__name(this, "ListDiscoveredResourcesCommand");
|
|
6383
|
+
}
|
|
6251
6384
|
};
|
|
6252
|
-
__name(_ListDiscoveredResourcesCommand, "ListDiscoveredResourcesCommand");
|
|
6253
|
-
var ListDiscoveredResourcesCommand = _ListDiscoveredResourcesCommand;
|
|
6254
6385
|
|
|
6255
6386
|
// src/commands/ListResourceEvaluationsCommand.ts
|
|
6256
6387
|
|
|
6257
6388
|
|
|
6258
6389
|
|
|
6259
|
-
var
|
|
6390
|
+
var ListResourceEvaluationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6260
6391
|
return [
|
|
6261
6392
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6262
6393
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6263
6394
|
];
|
|
6264
6395
|
}).s("StarlingDoveService", "ListResourceEvaluations", {}).n("ConfigServiceClient", "ListResourceEvaluationsCommand").f(void 0, void 0).ser(se_ListResourceEvaluationsCommand).de(de_ListResourceEvaluationsCommand).build() {
|
|
6396
|
+
static {
|
|
6397
|
+
__name(this, "ListResourceEvaluationsCommand");
|
|
6398
|
+
}
|
|
6265
6399
|
};
|
|
6266
|
-
__name(_ListResourceEvaluationsCommand, "ListResourceEvaluationsCommand");
|
|
6267
|
-
var ListResourceEvaluationsCommand = _ListResourceEvaluationsCommand;
|
|
6268
6400
|
|
|
6269
6401
|
// src/commands/ListStoredQueriesCommand.ts
|
|
6270
6402
|
|
|
6271
6403
|
|
|
6272
6404
|
|
|
6273
|
-
var
|
|
6405
|
+
var ListStoredQueriesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6274
6406
|
return [
|
|
6275
6407
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6276
6408
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6277
6409
|
];
|
|
6278
6410
|
}).s("StarlingDoveService", "ListStoredQueries", {}).n("ConfigServiceClient", "ListStoredQueriesCommand").f(void 0, void 0).ser(se_ListStoredQueriesCommand).de(de_ListStoredQueriesCommand).build() {
|
|
6411
|
+
static {
|
|
6412
|
+
__name(this, "ListStoredQueriesCommand");
|
|
6413
|
+
}
|
|
6279
6414
|
};
|
|
6280
|
-
__name(_ListStoredQueriesCommand, "ListStoredQueriesCommand");
|
|
6281
|
-
var ListStoredQueriesCommand = _ListStoredQueriesCommand;
|
|
6282
6415
|
|
|
6283
6416
|
// src/commands/ListTagsForResourceCommand.ts
|
|
6284
6417
|
|
|
6285
6418
|
|
|
6286
6419
|
|
|
6287
|
-
var
|
|
6420
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6288
6421
|
return [
|
|
6289
6422
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6290
6423
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6291
6424
|
];
|
|
6292
6425
|
}).s("StarlingDoveService", "ListTagsForResource", {}).n("ConfigServiceClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
6426
|
+
static {
|
|
6427
|
+
__name(this, "ListTagsForResourceCommand");
|
|
6428
|
+
}
|
|
6293
6429
|
};
|
|
6294
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
6295
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
6296
6430
|
|
|
6297
6431
|
// src/commands/PutAggregationAuthorizationCommand.ts
|
|
6298
6432
|
|
|
6299
6433
|
|
|
6300
6434
|
|
|
6301
|
-
var
|
|
6435
|
+
var PutAggregationAuthorizationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6302
6436
|
return [
|
|
6303
6437
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6304
6438
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6305
6439
|
];
|
|
6306
6440
|
}).s("StarlingDoveService", "PutAggregationAuthorization", {}).n("ConfigServiceClient", "PutAggregationAuthorizationCommand").f(void 0, void 0).ser(se_PutAggregationAuthorizationCommand).de(de_PutAggregationAuthorizationCommand).build() {
|
|
6441
|
+
static {
|
|
6442
|
+
__name(this, "PutAggregationAuthorizationCommand");
|
|
6443
|
+
}
|
|
6307
6444
|
};
|
|
6308
|
-
__name(_PutAggregationAuthorizationCommand, "PutAggregationAuthorizationCommand");
|
|
6309
|
-
var PutAggregationAuthorizationCommand = _PutAggregationAuthorizationCommand;
|
|
6310
6445
|
|
|
6311
6446
|
// src/commands/PutConfigRuleCommand.ts
|
|
6312
6447
|
|
|
6313
6448
|
|
|
6314
6449
|
|
|
6315
|
-
var
|
|
6450
|
+
var PutConfigRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6316
6451
|
return [
|
|
6317
6452
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6318
6453
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6319
6454
|
];
|
|
6320
6455
|
}).s("StarlingDoveService", "PutConfigRule", {}).n("ConfigServiceClient", "PutConfigRuleCommand").f(void 0, void 0).ser(se_PutConfigRuleCommand).de(de_PutConfigRuleCommand).build() {
|
|
6456
|
+
static {
|
|
6457
|
+
__name(this, "PutConfigRuleCommand");
|
|
6458
|
+
}
|
|
6321
6459
|
};
|
|
6322
|
-
__name(_PutConfigRuleCommand, "PutConfigRuleCommand");
|
|
6323
|
-
var PutConfigRuleCommand = _PutConfigRuleCommand;
|
|
6324
6460
|
|
|
6325
6461
|
// src/commands/PutConfigurationAggregatorCommand.ts
|
|
6326
6462
|
|
|
6327
6463
|
|
|
6328
6464
|
|
|
6329
|
-
var
|
|
6465
|
+
var PutConfigurationAggregatorCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6330
6466
|
return [
|
|
6331
6467
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6332
6468
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6333
6469
|
];
|
|
6334
6470
|
}).s("StarlingDoveService", "PutConfigurationAggregator", {}).n("ConfigServiceClient", "PutConfigurationAggregatorCommand").f(void 0, void 0).ser(se_PutConfigurationAggregatorCommand).de(de_PutConfigurationAggregatorCommand).build() {
|
|
6471
|
+
static {
|
|
6472
|
+
__name(this, "PutConfigurationAggregatorCommand");
|
|
6473
|
+
}
|
|
6335
6474
|
};
|
|
6336
|
-
__name(_PutConfigurationAggregatorCommand, "PutConfigurationAggregatorCommand");
|
|
6337
|
-
var PutConfigurationAggregatorCommand = _PutConfigurationAggregatorCommand;
|
|
6338
6475
|
|
|
6339
6476
|
// src/commands/PutConfigurationRecorderCommand.ts
|
|
6340
6477
|
|
|
6341
6478
|
|
|
6342
6479
|
|
|
6343
|
-
var
|
|
6480
|
+
var PutConfigurationRecorderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6344
6481
|
return [
|
|
6345
6482
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6346
6483
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6347
6484
|
];
|
|
6348
6485
|
}).s("StarlingDoveService", "PutConfigurationRecorder", {}).n("ConfigServiceClient", "PutConfigurationRecorderCommand").f(void 0, void 0).ser(se_PutConfigurationRecorderCommand).de(de_PutConfigurationRecorderCommand).build() {
|
|
6486
|
+
static {
|
|
6487
|
+
__name(this, "PutConfigurationRecorderCommand");
|
|
6488
|
+
}
|
|
6349
6489
|
};
|
|
6350
|
-
__name(_PutConfigurationRecorderCommand, "PutConfigurationRecorderCommand");
|
|
6351
|
-
var PutConfigurationRecorderCommand = _PutConfigurationRecorderCommand;
|
|
6352
6490
|
|
|
6353
6491
|
// src/commands/PutConformancePackCommand.ts
|
|
6354
6492
|
|
|
6355
6493
|
|
|
6356
6494
|
|
|
6357
|
-
var
|
|
6495
|
+
var PutConformancePackCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6358
6496
|
return [
|
|
6359
6497
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6360
6498
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6361
6499
|
];
|
|
6362
6500
|
}).s("StarlingDoveService", "PutConformancePack", {}).n("ConfigServiceClient", "PutConformancePackCommand").f(void 0, void 0).ser(se_PutConformancePackCommand).de(de_PutConformancePackCommand).build() {
|
|
6501
|
+
static {
|
|
6502
|
+
__name(this, "PutConformancePackCommand");
|
|
6503
|
+
}
|
|
6363
6504
|
};
|
|
6364
|
-
__name(_PutConformancePackCommand, "PutConformancePackCommand");
|
|
6365
|
-
var PutConformancePackCommand = _PutConformancePackCommand;
|
|
6366
6505
|
|
|
6367
6506
|
// src/commands/PutDeliveryChannelCommand.ts
|
|
6368
6507
|
|
|
6369
6508
|
|
|
6370
6509
|
|
|
6371
|
-
var
|
|
6510
|
+
var PutDeliveryChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6372
6511
|
return [
|
|
6373
6512
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6374
6513
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6375
6514
|
];
|
|
6376
6515
|
}).s("StarlingDoveService", "PutDeliveryChannel", {}).n("ConfigServiceClient", "PutDeliveryChannelCommand").f(void 0, void 0).ser(se_PutDeliveryChannelCommand).de(de_PutDeliveryChannelCommand).build() {
|
|
6516
|
+
static {
|
|
6517
|
+
__name(this, "PutDeliveryChannelCommand");
|
|
6518
|
+
}
|
|
6377
6519
|
};
|
|
6378
|
-
__name(_PutDeliveryChannelCommand, "PutDeliveryChannelCommand");
|
|
6379
|
-
var PutDeliveryChannelCommand = _PutDeliveryChannelCommand;
|
|
6380
6520
|
|
|
6381
6521
|
// src/commands/PutEvaluationsCommand.ts
|
|
6382
6522
|
|
|
6383
6523
|
|
|
6384
6524
|
|
|
6385
|
-
var
|
|
6525
|
+
var PutEvaluationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6386
6526
|
return [
|
|
6387
6527
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6388
6528
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6389
6529
|
];
|
|
6390
6530
|
}).s("StarlingDoveService", "PutEvaluations", {}).n("ConfigServiceClient", "PutEvaluationsCommand").f(void 0, void 0).ser(se_PutEvaluationsCommand).de(de_PutEvaluationsCommand).build() {
|
|
6531
|
+
static {
|
|
6532
|
+
__name(this, "PutEvaluationsCommand");
|
|
6533
|
+
}
|
|
6391
6534
|
};
|
|
6392
|
-
__name(_PutEvaluationsCommand, "PutEvaluationsCommand");
|
|
6393
|
-
var PutEvaluationsCommand = _PutEvaluationsCommand;
|
|
6394
6535
|
|
|
6395
6536
|
// src/commands/PutExternalEvaluationCommand.ts
|
|
6396
6537
|
|
|
6397
6538
|
|
|
6398
6539
|
|
|
6399
|
-
var
|
|
6540
|
+
var PutExternalEvaluationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6400
6541
|
return [
|
|
6401
6542
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6402
6543
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6403
6544
|
];
|
|
6404
6545
|
}).s("StarlingDoveService", "PutExternalEvaluation", {}).n("ConfigServiceClient", "PutExternalEvaluationCommand").f(void 0, void 0).ser(se_PutExternalEvaluationCommand).de(de_PutExternalEvaluationCommand).build() {
|
|
6546
|
+
static {
|
|
6547
|
+
__name(this, "PutExternalEvaluationCommand");
|
|
6548
|
+
}
|
|
6405
6549
|
};
|
|
6406
|
-
__name(_PutExternalEvaluationCommand, "PutExternalEvaluationCommand");
|
|
6407
|
-
var PutExternalEvaluationCommand = _PutExternalEvaluationCommand;
|
|
6408
6550
|
|
|
6409
6551
|
// src/commands/PutOrganizationConfigRuleCommand.ts
|
|
6410
6552
|
|
|
6411
6553
|
|
|
6412
6554
|
|
|
6413
|
-
var
|
|
6555
|
+
var PutOrganizationConfigRuleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6414
6556
|
return [
|
|
6415
6557
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6416
6558
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6417
6559
|
];
|
|
6418
6560
|
}).s("StarlingDoveService", "PutOrganizationConfigRule", {}).n("ConfigServiceClient", "PutOrganizationConfigRuleCommand").f(void 0, void 0).ser(se_PutOrganizationConfigRuleCommand).de(de_PutOrganizationConfigRuleCommand).build() {
|
|
6561
|
+
static {
|
|
6562
|
+
__name(this, "PutOrganizationConfigRuleCommand");
|
|
6563
|
+
}
|
|
6419
6564
|
};
|
|
6420
|
-
__name(_PutOrganizationConfigRuleCommand, "PutOrganizationConfigRuleCommand");
|
|
6421
|
-
var PutOrganizationConfigRuleCommand = _PutOrganizationConfigRuleCommand;
|
|
6422
6565
|
|
|
6423
6566
|
// src/commands/PutOrganizationConformancePackCommand.ts
|
|
6424
6567
|
|
|
6425
6568
|
|
|
6426
6569
|
|
|
6427
|
-
var
|
|
6570
|
+
var PutOrganizationConformancePackCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6428
6571
|
return [
|
|
6429
6572
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6430
6573
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6431
6574
|
];
|
|
6432
6575
|
}).s("StarlingDoveService", "PutOrganizationConformancePack", {}).n("ConfigServiceClient", "PutOrganizationConformancePackCommand").f(void 0, void 0).ser(se_PutOrganizationConformancePackCommand).de(de_PutOrganizationConformancePackCommand).build() {
|
|
6576
|
+
static {
|
|
6577
|
+
__name(this, "PutOrganizationConformancePackCommand");
|
|
6578
|
+
}
|
|
6433
6579
|
};
|
|
6434
|
-
__name(_PutOrganizationConformancePackCommand, "PutOrganizationConformancePackCommand");
|
|
6435
|
-
var PutOrganizationConformancePackCommand = _PutOrganizationConformancePackCommand;
|
|
6436
6580
|
|
|
6437
6581
|
// src/commands/PutRemediationConfigurationsCommand.ts
|
|
6438
6582
|
|
|
6439
6583
|
|
|
6440
6584
|
|
|
6441
|
-
var
|
|
6585
|
+
var PutRemediationConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6442
6586
|
return [
|
|
6443
6587
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6444
6588
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6445
6589
|
];
|
|
6446
6590
|
}).s("StarlingDoveService", "PutRemediationConfigurations", {}).n("ConfigServiceClient", "PutRemediationConfigurationsCommand").f(void 0, void 0).ser(se_PutRemediationConfigurationsCommand).de(de_PutRemediationConfigurationsCommand).build() {
|
|
6591
|
+
static {
|
|
6592
|
+
__name(this, "PutRemediationConfigurationsCommand");
|
|
6593
|
+
}
|
|
6447
6594
|
};
|
|
6448
|
-
__name(_PutRemediationConfigurationsCommand, "PutRemediationConfigurationsCommand");
|
|
6449
|
-
var PutRemediationConfigurationsCommand = _PutRemediationConfigurationsCommand;
|
|
6450
6595
|
|
|
6451
6596
|
// src/commands/PutRemediationExceptionsCommand.ts
|
|
6452
6597
|
|
|
6453
6598
|
|
|
6454
6599
|
|
|
6455
|
-
var
|
|
6600
|
+
var PutRemediationExceptionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6456
6601
|
return [
|
|
6457
6602
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6458
6603
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6459
6604
|
];
|
|
6460
6605
|
}).s("StarlingDoveService", "PutRemediationExceptions", {}).n("ConfigServiceClient", "PutRemediationExceptionsCommand").f(void 0, void 0).ser(se_PutRemediationExceptionsCommand).de(de_PutRemediationExceptionsCommand).build() {
|
|
6606
|
+
static {
|
|
6607
|
+
__name(this, "PutRemediationExceptionsCommand");
|
|
6608
|
+
}
|
|
6461
6609
|
};
|
|
6462
|
-
__name(_PutRemediationExceptionsCommand, "PutRemediationExceptionsCommand");
|
|
6463
|
-
var PutRemediationExceptionsCommand = _PutRemediationExceptionsCommand;
|
|
6464
6610
|
|
|
6465
6611
|
// src/commands/PutResourceConfigCommand.ts
|
|
6466
6612
|
|
|
6467
6613
|
|
|
6468
6614
|
|
|
6469
|
-
var
|
|
6615
|
+
var PutResourceConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6470
6616
|
return [
|
|
6471
6617
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6472
6618
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6473
6619
|
];
|
|
6474
6620
|
}).s("StarlingDoveService", "PutResourceConfig", {}).n("ConfigServiceClient", "PutResourceConfigCommand").f(void 0, void 0).ser(se_PutResourceConfigCommand).de(de_PutResourceConfigCommand).build() {
|
|
6621
|
+
static {
|
|
6622
|
+
__name(this, "PutResourceConfigCommand");
|
|
6623
|
+
}
|
|
6475
6624
|
};
|
|
6476
|
-
__name(_PutResourceConfigCommand, "PutResourceConfigCommand");
|
|
6477
|
-
var PutResourceConfigCommand = _PutResourceConfigCommand;
|
|
6478
6625
|
|
|
6479
6626
|
// src/commands/PutRetentionConfigurationCommand.ts
|
|
6480
6627
|
|
|
6481
6628
|
|
|
6482
6629
|
|
|
6483
|
-
var
|
|
6630
|
+
var PutRetentionConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6484
6631
|
return [
|
|
6485
6632
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6486
6633
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6487
6634
|
];
|
|
6488
6635
|
}).s("StarlingDoveService", "PutRetentionConfiguration", {}).n("ConfigServiceClient", "PutRetentionConfigurationCommand").f(void 0, void 0).ser(se_PutRetentionConfigurationCommand).de(de_PutRetentionConfigurationCommand).build() {
|
|
6636
|
+
static {
|
|
6637
|
+
__name(this, "PutRetentionConfigurationCommand");
|
|
6638
|
+
}
|
|
6489
6639
|
};
|
|
6490
|
-
__name(_PutRetentionConfigurationCommand, "PutRetentionConfigurationCommand");
|
|
6491
|
-
var PutRetentionConfigurationCommand = _PutRetentionConfigurationCommand;
|
|
6492
6640
|
|
|
6493
6641
|
// src/commands/PutServiceLinkedConfigurationRecorderCommand.ts
|
|
6494
6642
|
|
|
6495
6643
|
|
|
6496
6644
|
|
|
6497
|
-
var
|
|
6645
|
+
var PutServiceLinkedConfigurationRecorderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6498
6646
|
return [
|
|
6499
6647
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6500
6648
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6501
6649
|
];
|
|
6502
6650
|
}).s("StarlingDoveService", "PutServiceLinkedConfigurationRecorder", {}).n("ConfigServiceClient", "PutServiceLinkedConfigurationRecorderCommand").f(void 0, void 0).ser(se_PutServiceLinkedConfigurationRecorderCommand).de(de_PutServiceLinkedConfigurationRecorderCommand).build() {
|
|
6651
|
+
static {
|
|
6652
|
+
__name(this, "PutServiceLinkedConfigurationRecorderCommand");
|
|
6653
|
+
}
|
|
6503
6654
|
};
|
|
6504
|
-
__name(_PutServiceLinkedConfigurationRecorderCommand, "PutServiceLinkedConfigurationRecorderCommand");
|
|
6505
|
-
var PutServiceLinkedConfigurationRecorderCommand = _PutServiceLinkedConfigurationRecorderCommand;
|
|
6506
6655
|
|
|
6507
6656
|
// src/commands/PutStoredQueryCommand.ts
|
|
6508
6657
|
|
|
6509
6658
|
|
|
6510
6659
|
|
|
6511
|
-
var
|
|
6660
|
+
var PutStoredQueryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6512
6661
|
return [
|
|
6513
6662
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6514
6663
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6515
6664
|
];
|
|
6516
6665
|
}).s("StarlingDoveService", "PutStoredQuery", {}).n("ConfigServiceClient", "PutStoredQueryCommand").f(void 0, void 0).ser(se_PutStoredQueryCommand).de(de_PutStoredQueryCommand).build() {
|
|
6666
|
+
static {
|
|
6667
|
+
__name(this, "PutStoredQueryCommand");
|
|
6668
|
+
}
|
|
6517
6669
|
};
|
|
6518
|
-
__name(_PutStoredQueryCommand, "PutStoredQueryCommand");
|
|
6519
|
-
var PutStoredQueryCommand = _PutStoredQueryCommand;
|
|
6520
6670
|
|
|
6521
6671
|
// src/commands/SelectAggregateResourceConfigCommand.ts
|
|
6522
6672
|
|
|
6523
6673
|
|
|
6524
6674
|
|
|
6525
|
-
var
|
|
6675
|
+
var SelectAggregateResourceConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6526
6676
|
return [
|
|
6527
6677
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6528
6678
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6529
6679
|
];
|
|
6530
6680
|
}).s("StarlingDoveService", "SelectAggregateResourceConfig", {}).n("ConfigServiceClient", "SelectAggregateResourceConfigCommand").f(void 0, void 0).ser(se_SelectAggregateResourceConfigCommand).de(de_SelectAggregateResourceConfigCommand).build() {
|
|
6681
|
+
static {
|
|
6682
|
+
__name(this, "SelectAggregateResourceConfigCommand");
|
|
6683
|
+
}
|
|
6531
6684
|
};
|
|
6532
|
-
__name(_SelectAggregateResourceConfigCommand, "SelectAggregateResourceConfigCommand");
|
|
6533
|
-
var SelectAggregateResourceConfigCommand = _SelectAggregateResourceConfigCommand;
|
|
6534
6685
|
|
|
6535
6686
|
// src/commands/SelectResourceConfigCommand.ts
|
|
6536
6687
|
|
|
6537
6688
|
|
|
6538
6689
|
|
|
6539
|
-
var
|
|
6690
|
+
var SelectResourceConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6540
6691
|
return [
|
|
6541
6692
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6542
6693
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6543
6694
|
];
|
|
6544
6695
|
}).s("StarlingDoveService", "SelectResourceConfig", {}).n("ConfigServiceClient", "SelectResourceConfigCommand").f(void 0, void 0).ser(se_SelectResourceConfigCommand).de(de_SelectResourceConfigCommand).build() {
|
|
6696
|
+
static {
|
|
6697
|
+
__name(this, "SelectResourceConfigCommand");
|
|
6698
|
+
}
|
|
6545
6699
|
};
|
|
6546
|
-
__name(_SelectResourceConfigCommand, "SelectResourceConfigCommand");
|
|
6547
|
-
var SelectResourceConfigCommand = _SelectResourceConfigCommand;
|
|
6548
6700
|
|
|
6549
6701
|
// src/commands/StartConfigRulesEvaluationCommand.ts
|
|
6550
6702
|
|
|
6551
6703
|
|
|
6552
6704
|
|
|
6553
|
-
var
|
|
6705
|
+
var StartConfigRulesEvaluationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6554
6706
|
return [
|
|
6555
6707
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6556
6708
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6557
6709
|
];
|
|
6558
6710
|
}).s("StarlingDoveService", "StartConfigRulesEvaluation", {}).n("ConfigServiceClient", "StartConfigRulesEvaluationCommand").f(void 0, void 0).ser(se_StartConfigRulesEvaluationCommand).de(de_StartConfigRulesEvaluationCommand).build() {
|
|
6711
|
+
static {
|
|
6712
|
+
__name(this, "StartConfigRulesEvaluationCommand");
|
|
6713
|
+
}
|
|
6559
6714
|
};
|
|
6560
|
-
__name(_StartConfigRulesEvaluationCommand, "StartConfigRulesEvaluationCommand");
|
|
6561
|
-
var StartConfigRulesEvaluationCommand = _StartConfigRulesEvaluationCommand;
|
|
6562
6715
|
|
|
6563
6716
|
// src/commands/StartConfigurationRecorderCommand.ts
|
|
6564
6717
|
|
|
6565
6718
|
|
|
6566
6719
|
|
|
6567
|
-
var
|
|
6720
|
+
var StartConfigurationRecorderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6568
6721
|
return [
|
|
6569
6722
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6570
6723
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6571
6724
|
];
|
|
6572
6725
|
}).s("StarlingDoveService", "StartConfigurationRecorder", {}).n("ConfigServiceClient", "StartConfigurationRecorderCommand").f(void 0, void 0).ser(se_StartConfigurationRecorderCommand).de(de_StartConfigurationRecorderCommand).build() {
|
|
6726
|
+
static {
|
|
6727
|
+
__name(this, "StartConfigurationRecorderCommand");
|
|
6728
|
+
}
|
|
6573
6729
|
};
|
|
6574
|
-
__name(_StartConfigurationRecorderCommand, "StartConfigurationRecorderCommand");
|
|
6575
|
-
var StartConfigurationRecorderCommand = _StartConfigurationRecorderCommand;
|
|
6576
6730
|
|
|
6577
6731
|
// src/commands/StartRemediationExecutionCommand.ts
|
|
6578
6732
|
|
|
6579
6733
|
|
|
6580
6734
|
|
|
6581
|
-
var
|
|
6735
|
+
var StartRemediationExecutionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6582
6736
|
return [
|
|
6583
6737
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6584
6738
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6585
6739
|
];
|
|
6586
6740
|
}).s("StarlingDoveService", "StartRemediationExecution", {}).n("ConfigServiceClient", "StartRemediationExecutionCommand").f(void 0, void 0).ser(se_StartRemediationExecutionCommand).de(de_StartRemediationExecutionCommand).build() {
|
|
6741
|
+
static {
|
|
6742
|
+
__name(this, "StartRemediationExecutionCommand");
|
|
6743
|
+
}
|
|
6587
6744
|
};
|
|
6588
|
-
__name(_StartRemediationExecutionCommand, "StartRemediationExecutionCommand");
|
|
6589
|
-
var StartRemediationExecutionCommand = _StartRemediationExecutionCommand;
|
|
6590
6745
|
|
|
6591
6746
|
// src/commands/StartResourceEvaluationCommand.ts
|
|
6592
6747
|
|
|
6593
6748
|
|
|
6594
6749
|
|
|
6595
|
-
var
|
|
6750
|
+
var StartResourceEvaluationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6596
6751
|
return [
|
|
6597
6752
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6598
6753
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6599
6754
|
];
|
|
6600
6755
|
}).s("StarlingDoveService", "StartResourceEvaluation", {}).n("ConfigServiceClient", "StartResourceEvaluationCommand").f(void 0, void 0).ser(se_StartResourceEvaluationCommand).de(de_StartResourceEvaluationCommand).build() {
|
|
6756
|
+
static {
|
|
6757
|
+
__name(this, "StartResourceEvaluationCommand");
|
|
6758
|
+
}
|
|
6601
6759
|
};
|
|
6602
|
-
__name(_StartResourceEvaluationCommand, "StartResourceEvaluationCommand");
|
|
6603
|
-
var StartResourceEvaluationCommand = _StartResourceEvaluationCommand;
|
|
6604
6760
|
|
|
6605
6761
|
// src/commands/StopConfigurationRecorderCommand.ts
|
|
6606
6762
|
|
|
6607
6763
|
|
|
6608
6764
|
|
|
6609
|
-
var
|
|
6765
|
+
var StopConfigurationRecorderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6610
6766
|
return [
|
|
6611
6767
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6612
6768
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6613
6769
|
];
|
|
6614
6770
|
}).s("StarlingDoveService", "StopConfigurationRecorder", {}).n("ConfigServiceClient", "StopConfigurationRecorderCommand").f(void 0, void 0).ser(se_StopConfigurationRecorderCommand).de(de_StopConfigurationRecorderCommand).build() {
|
|
6771
|
+
static {
|
|
6772
|
+
__name(this, "StopConfigurationRecorderCommand");
|
|
6773
|
+
}
|
|
6615
6774
|
};
|
|
6616
|
-
__name(_StopConfigurationRecorderCommand, "StopConfigurationRecorderCommand");
|
|
6617
|
-
var StopConfigurationRecorderCommand = _StopConfigurationRecorderCommand;
|
|
6618
6775
|
|
|
6619
6776
|
// src/commands/TagResourceCommand.ts
|
|
6620
6777
|
|
|
6621
6778
|
|
|
6622
6779
|
|
|
6623
|
-
var
|
|
6780
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6624
6781
|
return [
|
|
6625
6782
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6626
6783
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6627
6784
|
];
|
|
6628
6785
|
}).s("StarlingDoveService", "TagResource", {}).n("ConfigServiceClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
6786
|
+
static {
|
|
6787
|
+
__name(this, "TagResourceCommand");
|
|
6788
|
+
}
|
|
6629
6789
|
};
|
|
6630
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
6631
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
6632
6790
|
|
|
6633
6791
|
// src/commands/UntagResourceCommand.ts
|
|
6634
6792
|
|
|
6635
6793
|
|
|
6636
6794
|
|
|
6637
|
-
var
|
|
6795
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
6638
6796
|
return [
|
|
6639
6797
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
6640
6798
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
6641
6799
|
];
|
|
6642
6800
|
}).s("StarlingDoveService", "UntagResource", {}).n("ConfigServiceClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
6801
|
+
static {
|
|
6802
|
+
__name(this, "UntagResourceCommand");
|
|
6803
|
+
}
|
|
6643
6804
|
};
|
|
6644
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
6645
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
6646
6805
|
|
|
6647
6806
|
// src/ConfigService.ts
|
|
6648
6807
|
var commands = {
|
|
@@ -6744,10 +6903,11 @@ var commands = {
|
|
|
6744
6903
|
TagResourceCommand,
|
|
6745
6904
|
UntagResourceCommand
|
|
6746
6905
|
};
|
|
6747
|
-
var
|
|
6906
|
+
var ConfigService = class extends ConfigServiceClient {
|
|
6907
|
+
static {
|
|
6908
|
+
__name(this, "ConfigService");
|
|
6909
|
+
}
|
|
6748
6910
|
};
|
|
6749
|
-
__name(_ConfigService, "ConfigService");
|
|
6750
|
-
var ConfigService = _ConfigService;
|
|
6751
6911
|
(0, import_smithy_client.createAggregatedClient)(commands, ConfigService);
|
|
6752
6912
|
|
|
6753
6913
|
// src/pagination/DescribeAggregateComplianceByConfigRulesPaginator.ts
|