@aws-sdk/client-auditmanager 3.137.0 → 3.142.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/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/models/models_0.js +17 -4
- package/dist-cjs/protocols/Aws_restJson1.js +737 -1476
- package/dist-es/models/models_0.js +12 -0
- package/dist-es/protocols/Aws_restJson1.js +982 -1471
- package/dist-types/AuditManager.d.ts +33 -29
- package/dist-types/commands/DeleteAssessmentFrameworkShareCommand.d.ts +1 -3
- package/dist-types/commands/DeleteAssessmentReportCommand.d.ts +2 -1
- package/dist-types/commands/DeregisterAccountCommand.d.ts +2 -2
- package/dist-types/commands/DeregisterOrganizationAdminAccountCommand.d.ts +5 -5
- package/dist-types/commands/ListAssessmentControlInsightsByControlDomainCommand.d.ts +4 -4
- package/dist-types/commands/ListControlDomainInsightsByAssessmentCommand.d.ts +4 -3
- package/dist-types/commands/ListControlDomainInsightsCommand.d.ts +4 -3
- package/dist-types/commands/ListControlInsightsByControlDomainCommand.d.ts +4 -4
- package/dist-types/commands/ListKeywordsForDataSourceCommand.d.ts +2 -1
- package/dist-types/commands/StartAssessmentFrameworkShareCommand.d.ts +5 -3
- package/dist-types/models/models_0.d.ts +187 -84
- package/dist-types/ts3.4/models/models_0.d.ts +7 -0
- package/package.json +6 -6
|
@@ -137,6 +137,18 @@ var ValidationException = (function (_super) {
|
|
|
137
137
|
return ValidationException;
|
|
138
138
|
}(__BaseException));
|
|
139
139
|
export { ValidationException };
|
|
140
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
141
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
142
|
+
function ServiceQuotaExceededException(opts) {
|
|
143
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
144
|
+
_this.name = "ServiceQuotaExceededException";
|
|
145
|
+
_this.$fault = "client";
|
|
146
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
147
|
+
return _this;
|
|
148
|
+
}
|
|
149
|
+
return ServiceQuotaExceededException;
|
|
150
|
+
}(__BaseException));
|
|
151
|
+
export { ServiceQuotaExceededException };
|
|
140
152
|
export var SourceFrequency;
|
|
141
153
|
(function (SourceFrequency) {
|
|
142
154
|
SourceFrequency["DAILY"] = "DAILY";
|