@aws-sdk/client-codeguru-reviewer 3.52.0 → 3.54.1
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 +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/CodeGuruReviewerServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +101 -2
- package/dist-cjs/protocols/Aws_restJson1.js +177 -574
- package/dist-es/index.js +1 -0
- package/dist-es/models/CodeGuruReviewerServiceException.js +12 -0
- package/dist-es/models/models_0.js +93 -1
- package/dist-es/protocols/Aws_restJson1.js +339 -638
- package/dist-types/CodeGuruReviewerClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/CodeGuruReviewerServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -22
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/CodeGuruReviewerClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/CodeGuruReviewerServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -22
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +28 -28
package/dist-es/index.js
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
3
|
+
var CodeGuruReviewerServiceException = (function (_super) {
|
|
4
|
+
__extends(CodeGuruReviewerServiceException, _super);
|
|
5
|
+
function CodeGuruReviewerServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, CodeGuruReviewerServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return CodeGuruReviewerServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { CodeGuruReviewerServiceException };
|
|
@@ -1,4 +1,18 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
|
+
import { CodeGuruReviewerServiceException as __BaseException } from "./CodeGuruReviewerServiceException";
|
|
3
|
+
var AccessDeniedException = (function (_super) {
|
|
4
|
+
__extends(AccessDeniedException, _super);
|
|
5
|
+
function AccessDeniedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessDeniedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
10
|
+
_this.Message = opts.Message;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
return AccessDeniedException;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { AccessDeniedException };
|
|
2
16
|
export var AnalysisType;
|
|
3
17
|
(function (AnalysisType) {
|
|
4
18
|
AnalysisType["CODE_QUALITY"] = "CodeQuality";
|
|
@@ -65,6 +79,58 @@ export var AssociateRepositoryResponse;
|
|
|
65
79
|
(function (AssociateRepositoryResponse) {
|
|
66
80
|
AssociateRepositoryResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
67
81
|
})(AssociateRepositoryResponse || (AssociateRepositoryResponse = {}));
|
|
82
|
+
var ConflictException = (function (_super) {
|
|
83
|
+
__extends(ConflictException, _super);
|
|
84
|
+
function ConflictException(opts) {
|
|
85
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
86
|
+
_this.name = "ConflictException";
|
|
87
|
+
_this.$fault = "client";
|
|
88
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
89
|
+
_this.Message = opts.Message;
|
|
90
|
+
return _this;
|
|
91
|
+
}
|
|
92
|
+
return ConflictException;
|
|
93
|
+
}(__BaseException));
|
|
94
|
+
export { ConflictException };
|
|
95
|
+
var InternalServerException = (function (_super) {
|
|
96
|
+
__extends(InternalServerException, _super);
|
|
97
|
+
function InternalServerException(opts) {
|
|
98
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
99
|
+
_this.name = "InternalServerException";
|
|
100
|
+
_this.$fault = "server";
|
|
101
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
102
|
+
_this.Message = opts.Message;
|
|
103
|
+
return _this;
|
|
104
|
+
}
|
|
105
|
+
return InternalServerException;
|
|
106
|
+
}(__BaseException));
|
|
107
|
+
export { InternalServerException };
|
|
108
|
+
var ThrottlingException = (function (_super) {
|
|
109
|
+
__extends(ThrottlingException, _super);
|
|
110
|
+
function ThrottlingException(opts) {
|
|
111
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
112
|
+
_this.name = "ThrottlingException";
|
|
113
|
+
_this.$fault = "client";
|
|
114
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
115
|
+
_this.Message = opts.Message;
|
|
116
|
+
return _this;
|
|
117
|
+
}
|
|
118
|
+
return ThrottlingException;
|
|
119
|
+
}(__BaseException));
|
|
120
|
+
export { ThrottlingException };
|
|
121
|
+
var ValidationException = (function (_super) {
|
|
122
|
+
__extends(ValidationException, _super);
|
|
123
|
+
function ValidationException(opts) {
|
|
124
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
125
|
+
_this.name = "ValidationException";
|
|
126
|
+
_this.$fault = "client";
|
|
127
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
128
|
+
_this.Message = opts.Message;
|
|
129
|
+
return _this;
|
|
130
|
+
}
|
|
131
|
+
return ValidationException;
|
|
132
|
+
}(__BaseException));
|
|
133
|
+
export { ValidationException };
|
|
68
134
|
export var RepositoryHeadSourceCodeType;
|
|
69
135
|
(function (RepositoryHeadSourceCodeType) {
|
|
70
136
|
RepositoryHeadSourceCodeType.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -135,6 +201,19 @@ export var CreateCodeReviewResponse;
|
|
|
135
201
|
(function (CreateCodeReviewResponse) {
|
|
136
202
|
CreateCodeReviewResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
137
203
|
})(CreateCodeReviewResponse || (CreateCodeReviewResponse = {}));
|
|
204
|
+
var ResourceNotFoundException = (function (_super) {
|
|
205
|
+
__extends(ResourceNotFoundException, _super);
|
|
206
|
+
function ResourceNotFoundException(opts) {
|
|
207
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
208
|
+
_this.name = "ResourceNotFoundException";
|
|
209
|
+
_this.$fault = "client";
|
|
210
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
211
|
+
_this.Message = opts.Message;
|
|
212
|
+
return _this;
|
|
213
|
+
}
|
|
214
|
+
return ResourceNotFoundException;
|
|
215
|
+
}(__BaseException));
|
|
216
|
+
export { ResourceNotFoundException };
|
|
138
217
|
export var DescribeCodeReviewRequest;
|
|
139
218
|
(function (DescribeCodeReviewRequest) {
|
|
140
219
|
DescribeCodeReviewRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -168,6 +247,19 @@ export var DescribeRepositoryAssociationResponse;
|
|
|
168
247
|
(function (DescribeRepositoryAssociationResponse) {
|
|
169
248
|
DescribeRepositoryAssociationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
170
249
|
})(DescribeRepositoryAssociationResponse || (DescribeRepositoryAssociationResponse = {}));
|
|
250
|
+
var NotFoundException = (function (_super) {
|
|
251
|
+
__extends(NotFoundException, _super);
|
|
252
|
+
function NotFoundException(opts) {
|
|
253
|
+
var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
|
|
254
|
+
_this.name = "NotFoundException";
|
|
255
|
+
_this.$fault = "client";
|
|
256
|
+
Object.setPrototypeOf(_this, NotFoundException.prototype);
|
|
257
|
+
_this.Message = opts.Message;
|
|
258
|
+
return _this;
|
|
259
|
+
}
|
|
260
|
+
return NotFoundException;
|
|
261
|
+
}(__BaseException));
|
|
262
|
+
export { NotFoundException };
|
|
171
263
|
export var DisassociateRepositoryRequest;
|
|
172
264
|
(function (DisassociateRepositoryRequest) {
|
|
173
265
|
DisassociateRepositoryRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|