@aws-sdk/client-chime-sdk-meetings 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 +30 -0
- package/README.md +1 -2
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/ChimeSDKMeetingsServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +115 -1
- package/dist-cjs/protocols/Aws_restJson1.js +145 -458
- package/dist-es/index.js +1 -0
- package/dist-es/models/ChimeSDKMeetingsServiceException.js +12 -0
- package/dist-es/models/models_0.js +108 -1
- package/dist-es/protocols/Aws_restJson1.js +268 -514
- package/dist-types/ChimeSDKMeetings.d.ts +1 -2
- package/dist-types/ChimeSDKMeetingsClient.d.ts +3 -4
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ChimeSDKMeetingsServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +114 -65
- 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/ChimeSDKMeetingsClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ChimeSDKMeetingsServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +44 -23
- 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 +27 -27
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 ChimeSDKMeetingsServiceException = (function (_super) {
|
|
4
|
+
__extends(ChimeSDKMeetingsServiceException, _super);
|
|
5
|
+
function ChimeSDKMeetingsServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, ChimeSDKMeetingsServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return ChimeSDKMeetingsServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { ChimeSDKMeetingsServiceException };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { ChimeSDKMeetingsServiceException as __BaseException } from "./ChimeSDKMeetingsServiceException";
|
|
3
4
|
export var Attendee;
|
|
4
5
|
(function (Attendee) {
|
|
5
6
|
Attendee.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.ExternalUserId && { ExternalUserId: SENSITIVE_STRING })), (obj.JoinToken && { JoinToken: SENSITIVE_STRING }))); };
|
|
@@ -13,6 +14,21 @@ export var AudioFeatures;
|
|
|
13
14
|
(function (AudioFeatures) {
|
|
14
15
|
AudioFeatures.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
15
16
|
})(AudioFeatures || (AudioFeatures = {}));
|
|
17
|
+
var BadRequestException = (function (_super) {
|
|
18
|
+
__extends(BadRequestException, _super);
|
|
19
|
+
function BadRequestException(opts) {
|
|
20
|
+
var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
|
|
21
|
+
_this.name = "BadRequestException";
|
|
22
|
+
_this.$fault = "client";
|
|
23
|
+
Object.setPrototypeOf(_this, BadRequestException.prototype);
|
|
24
|
+
_this.Code = opts.Code;
|
|
25
|
+
_this.Message = opts.Message;
|
|
26
|
+
_this.RequestId = opts.RequestId;
|
|
27
|
+
return _this;
|
|
28
|
+
}
|
|
29
|
+
return BadRequestException;
|
|
30
|
+
}(__BaseException));
|
|
31
|
+
export { BadRequestException };
|
|
16
32
|
export var CreateAttendeeRequestItem;
|
|
17
33
|
(function (CreateAttendeeRequestItem) {
|
|
18
34
|
CreateAttendeeRequestItem.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ExternalUserId && { ExternalUserId: SENSITIVE_STRING }))); };
|
|
@@ -31,6 +47,82 @@ export var BatchCreateAttendeeResponse;
|
|
|
31
47
|
(function (BatchCreateAttendeeResponse) {
|
|
32
48
|
BatchCreateAttendeeResponse.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Attendees && { Attendees: obj.Attendees.map(function (item) { return Attendee.filterSensitiveLog(item); }) })), (obj.Errors && { Errors: obj.Errors.map(function (item) { return CreateAttendeeError.filterSensitiveLog(item); }) }))); };
|
|
33
49
|
})(BatchCreateAttendeeResponse || (BatchCreateAttendeeResponse = {}));
|
|
50
|
+
var ForbiddenException = (function (_super) {
|
|
51
|
+
__extends(ForbiddenException, _super);
|
|
52
|
+
function ForbiddenException(opts) {
|
|
53
|
+
var _this = _super.call(this, __assign({ name: "ForbiddenException", $fault: "client" }, opts)) || this;
|
|
54
|
+
_this.name = "ForbiddenException";
|
|
55
|
+
_this.$fault = "client";
|
|
56
|
+
Object.setPrototypeOf(_this, ForbiddenException.prototype);
|
|
57
|
+
_this.Code = opts.Code;
|
|
58
|
+
_this.Message = opts.Message;
|
|
59
|
+
_this.RequestId = opts.RequestId;
|
|
60
|
+
return _this;
|
|
61
|
+
}
|
|
62
|
+
return ForbiddenException;
|
|
63
|
+
}(__BaseException));
|
|
64
|
+
export { ForbiddenException };
|
|
65
|
+
var LimitExceededException = (function (_super) {
|
|
66
|
+
__extends(LimitExceededException, _super);
|
|
67
|
+
function LimitExceededException(opts) {
|
|
68
|
+
var _this = _super.call(this, __assign({ name: "LimitExceededException", $fault: "client" }, opts)) || this;
|
|
69
|
+
_this.name = "LimitExceededException";
|
|
70
|
+
_this.$fault = "client";
|
|
71
|
+
Object.setPrototypeOf(_this, LimitExceededException.prototype);
|
|
72
|
+
_this.Code = opts.Code;
|
|
73
|
+
_this.Message = opts.Message;
|
|
74
|
+
_this.RequestId = opts.RequestId;
|
|
75
|
+
return _this;
|
|
76
|
+
}
|
|
77
|
+
return LimitExceededException;
|
|
78
|
+
}(__BaseException));
|
|
79
|
+
export { LimitExceededException };
|
|
80
|
+
var NotFoundException = (function (_super) {
|
|
81
|
+
__extends(NotFoundException, _super);
|
|
82
|
+
function NotFoundException(opts) {
|
|
83
|
+
var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
|
|
84
|
+
_this.name = "NotFoundException";
|
|
85
|
+
_this.$fault = "client";
|
|
86
|
+
Object.setPrototypeOf(_this, NotFoundException.prototype);
|
|
87
|
+
_this.Code = opts.Code;
|
|
88
|
+
_this.Message = opts.Message;
|
|
89
|
+
_this.RequestId = opts.RequestId;
|
|
90
|
+
return _this;
|
|
91
|
+
}
|
|
92
|
+
return NotFoundException;
|
|
93
|
+
}(__BaseException));
|
|
94
|
+
export { NotFoundException };
|
|
95
|
+
var ServiceUnavailableException = (function (_super) {
|
|
96
|
+
__extends(ServiceUnavailableException, _super);
|
|
97
|
+
function ServiceUnavailableException(opts) {
|
|
98
|
+
var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
|
|
99
|
+
_this.name = "ServiceUnavailableException";
|
|
100
|
+
_this.$fault = "server";
|
|
101
|
+
Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
|
|
102
|
+
_this.Code = opts.Code;
|
|
103
|
+
_this.Message = opts.Message;
|
|
104
|
+
_this.RequestId = opts.RequestId;
|
|
105
|
+
_this.RetryAfterSeconds = opts.RetryAfterSeconds;
|
|
106
|
+
return _this;
|
|
107
|
+
}
|
|
108
|
+
return ServiceUnavailableException;
|
|
109
|
+
}(__BaseException));
|
|
110
|
+
export { ServiceUnavailableException };
|
|
111
|
+
var UnauthorizedException = (function (_super) {
|
|
112
|
+
__extends(UnauthorizedException, _super);
|
|
113
|
+
function UnauthorizedException(opts) {
|
|
114
|
+
var _this = _super.call(this, __assign({ name: "UnauthorizedException", $fault: "client" }, opts)) || this;
|
|
115
|
+
_this.name = "UnauthorizedException";
|
|
116
|
+
_this.$fault = "client";
|
|
117
|
+
Object.setPrototypeOf(_this, UnauthorizedException.prototype);
|
|
118
|
+
_this.Code = opts.Code;
|
|
119
|
+
_this.Message = opts.Message;
|
|
120
|
+
_this.RequestId = opts.RequestId;
|
|
121
|
+
return _this;
|
|
122
|
+
}
|
|
123
|
+
return UnauthorizedException;
|
|
124
|
+
}(__BaseException));
|
|
125
|
+
export { UnauthorizedException };
|
|
34
126
|
export var CreateAttendeeRequest;
|
|
35
127
|
(function (CreateAttendeeRequest) {
|
|
36
128
|
CreateAttendeeRequest.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.ExternalUserId && { ExternalUserId: SENSITIVE_STRING }))); };
|
|
@@ -39,6 +131,21 @@ export var CreateAttendeeResponse;
|
|
|
39
131
|
(function (CreateAttendeeResponse) {
|
|
40
132
|
CreateAttendeeResponse.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Attendee && { Attendee: Attendee.filterSensitiveLog(obj.Attendee) }))); };
|
|
41
133
|
})(CreateAttendeeResponse || (CreateAttendeeResponse = {}));
|
|
134
|
+
var UnprocessableEntityException = (function (_super) {
|
|
135
|
+
__extends(UnprocessableEntityException, _super);
|
|
136
|
+
function UnprocessableEntityException(opts) {
|
|
137
|
+
var _this = _super.call(this, __assign({ name: "UnprocessableEntityException", $fault: "client" }, opts)) || this;
|
|
138
|
+
_this.name = "UnprocessableEntityException";
|
|
139
|
+
_this.$fault = "client";
|
|
140
|
+
Object.setPrototypeOf(_this, UnprocessableEntityException.prototype);
|
|
141
|
+
_this.Code = opts.Code;
|
|
142
|
+
_this.Message = opts.Message;
|
|
143
|
+
_this.RequestId = opts.RequestId;
|
|
144
|
+
return _this;
|
|
145
|
+
}
|
|
146
|
+
return UnprocessableEntityException;
|
|
147
|
+
}(__BaseException));
|
|
148
|
+
export { UnprocessableEntityException };
|
|
42
149
|
export var MeetingFeaturesConfiguration;
|
|
43
150
|
(function (MeetingFeaturesConfiguration) {
|
|
44
151
|
MeetingFeaturesConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|