@aws-sdk/client-chime-sdk-messaging 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/ChimeSDKMessagingServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +139 -3
- package/dist-cjs/protocols/Aws_restJson1.js +561 -2318
- package/dist-es/index.js +1 -0
- package/dist-es/models/ChimeSDKMessagingServiceException.js +12 -0
- package/dist-es/models/models_0.js +128 -1
- package/dist-es/protocols/Aws_restJson1.js +1201 -2508
- package/dist-types/ChimeSDKMessagingClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/ChimeSDKMessagingServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +65 -28
- 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/ChimeSDKMessagingClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/ChimeSDKMessagingServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +47 -28
- 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 ChimeSDKMessagingServiceException = (function (_super) {
|
|
4
|
+
__extends(ChimeSDKMessagingServiceException, _super);
|
|
5
|
+
function ChimeSDKMessagingServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, ChimeSDKMessagingServiceException.prototype);
|
|
8
|
+
return _this;
|
|
9
|
+
}
|
|
10
|
+
return ChimeSDKMessagingServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { ChimeSDKMessagingServiceException };
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { __assign, __read } from "tslib";
|
|
1
|
+
import { __assign, __extends, __read } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { ChimeSDKMessagingServiceException as __BaseException } from "./ChimeSDKMessagingServiceException";
|
|
3
4
|
export var AllowNotifications;
|
|
4
5
|
(function (AllowNotifications) {
|
|
5
6
|
AllowNotifications["ALL"] = "ALL";
|
|
@@ -37,6 +38,118 @@ export var ErrorCode;
|
|
|
37
38
|
ErrorCode["Unprocessable"] = "Unprocessable";
|
|
38
39
|
ErrorCode["VoiceConnectorGroupAssociationsExist"] = "VoiceConnectorGroupAssociationsExist";
|
|
39
40
|
})(ErrorCode || (ErrorCode = {}));
|
|
41
|
+
var BadRequestException = (function (_super) {
|
|
42
|
+
__extends(BadRequestException, _super);
|
|
43
|
+
function BadRequestException(opts) {
|
|
44
|
+
var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
|
|
45
|
+
_this.name = "BadRequestException";
|
|
46
|
+
_this.$fault = "client";
|
|
47
|
+
Object.setPrototypeOf(_this, BadRequestException.prototype);
|
|
48
|
+
_this.Code = opts.Code;
|
|
49
|
+
_this.Message = opts.Message;
|
|
50
|
+
return _this;
|
|
51
|
+
}
|
|
52
|
+
return BadRequestException;
|
|
53
|
+
}(__BaseException));
|
|
54
|
+
export { BadRequestException };
|
|
55
|
+
var ConflictException = (function (_super) {
|
|
56
|
+
__extends(ConflictException, _super);
|
|
57
|
+
function ConflictException(opts) {
|
|
58
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
59
|
+
_this.name = "ConflictException";
|
|
60
|
+
_this.$fault = "client";
|
|
61
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
62
|
+
_this.Code = opts.Code;
|
|
63
|
+
_this.Message = opts.Message;
|
|
64
|
+
return _this;
|
|
65
|
+
}
|
|
66
|
+
return ConflictException;
|
|
67
|
+
}(__BaseException));
|
|
68
|
+
export { ConflictException };
|
|
69
|
+
var ForbiddenException = (function (_super) {
|
|
70
|
+
__extends(ForbiddenException, _super);
|
|
71
|
+
function ForbiddenException(opts) {
|
|
72
|
+
var _this = _super.call(this, __assign({ name: "ForbiddenException", $fault: "client" }, opts)) || this;
|
|
73
|
+
_this.name = "ForbiddenException";
|
|
74
|
+
_this.$fault = "client";
|
|
75
|
+
Object.setPrototypeOf(_this, ForbiddenException.prototype);
|
|
76
|
+
_this.Code = opts.Code;
|
|
77
|
+
_this.Message = opts.Message;
|
|
78
|
+
return _this;
|
|
79
|
+
}
|
|
80
|
+
return ForbiddenException;
|
|
81
|
+
}(__BaseException));
|
|
82
|
+
export { ForbiddenException };
|
|
83
|
+
var NotFoundException = (function (_super) {
|
|
84
|
+
__extends(NotFoundException, _super);
|
|
85
|
+
function NotFoundException(opts) {
|
|
86
|
+
var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
|
|
87
|
+
_this.name = "NotFoundException";
|
|
88
|
+
_this.$fault = "client";
|
|
89
|
+
Object.setPrototypeOf(_this, NotFoundException.prototype);
|
|
90
|
+
_this.Code = opts.Code;
|
|
91
|
+
_this.Message = opts.Message;
|
|
92
|
+
return _this;
|
|
93
|
+
}
|
|
94
|
+
return NotFoundException;
|
|
95
|
+
}(__BaseException));
|
|
96
|
+
export { NotFoundException };
|
|
97
|
+
var ServiceFailureException = (function (_super) {
|
|
98
|
+
__extends(ServiceFailureException, _super);
|
|
99
|
+
function ServiceFailureException(opts) {
|
|
100
|
+
var _this = _super.call(this, __assign({ name: "ServiceFailureException", $fault: "server" }, opts)) || this;
|
|
101
|
+
_this.name = "ServiceFailureException";
|
|
102
|
+
_this.$fault = "server";
|
|
103
|
+
Object.setPrototypeOf(_this, ServiceFailureException.prototype);
|
|
104
|
+
_this.Code = opts.Code;
|
|
105
|
+
_this.Message = opts.Message;
|
|
106
|
+
return _this;
|
|
107
|
+
}
|
|
108
|
+
return ServiceFailureException;
|
|
109
|
+
}(__BaseException));
|
|
110
|
+
export { ServiceFailureException };
|
|
111
|
+
var ServiceUnavailableException = (function (_super) {
|
|
112
|
+
__extends(ServiceUnavailableException, _super);
|
|
113
|
+
function ServiceUnavailableException(opts) {
|
|
114
|
+
var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
|
|
115
|
+
_this.name = "ServiceUnavailableException";
|
|
116
|
+
_this.$fault = "server";
|
|
117
|
+
Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
|
|
118
|
+
_this.Code = opts.Code;
|
|
119
|
+
_this.Message = opts.Message;
|
|
120
|
+
return _this;
|
|
121
|
+
}
|
|
122
|
+
return ServiceUnavailableException;
|
|
123
|
+
}(__BaseException));
|
|
124
|
+
export { ServiceUnavailableException };
|
|
125
|
+
var ThrottledClientException = (function (_super) {
|
|
126
|
+
__extends(ThrottledClientException, _super);
|
|
127
|
+
function ThrottledClientException(opts) {
|
|
128
|
+
var _this = _super.call(this, __assign({ name: "ThrottledClientException", $fault: "client" }, opts)) || this;
|
|
129
|
+
_this.name = "ThrottledClientException";
|
|
130
|
+
_this.$fault = "client";
|
|
131
|
+
Object.setPrototypeOf(_this, ThrottledClientException.prototype);
|
|
132
|
+
_this.Code = opts.Code;
|
|
133
|
+
_this.Message = opts.Message;
|
|
134
|
+
return _this;
|
|
135
|
+
}
|
|
136
|
+
return ThrottledClientException;
|
|
137
|
+
}(__BaseException));
|
|
138
|
+
export { ThrottledClientException };
|
|
139
|
+
var UnauthorizedClientException = (function (_super) {
|
|
140
|
+
__extends(UnauthorizedClientException, _super);
|
|
141
|
+
function UnauthorizedClientException(opts) {
|
|
142
|
+
var _this = _super.call(this, __assign({ name: "UnauthorizedClientException", $fault: "client" }, opts)) || this;
|
|
143
|
+
_this.name = "UnauthorizedClientException";
|
|
144
|
+
_this.$fault = "client";
|
|
145
|
+
Object.setPrototypeOf(_this, UnauthorizedClientException.prototype);
|
|
146
|
+
_this.Code = opts.Code;
|
|
147
|
+
_this.Message = opts.Message;
|
|
148
|
+
return _this;
|
|
149
|
+
}
|
|
150
|
+
return UnauthorizedClientException;
|
|
151
|
+
}(__BaseException));
|
|
152
|
+
export { UnauthorizedClientException };
|
|
40
153
|
export var Identity;
|
|
41
154
|
(function (Identity) {
|
|
42
155
|
Identity.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING }))); };
|
|
@@ -238,6 +351,20 @@ export var CreateChannelResponse;
|
|
|
238
351
|
(function (CreateChannelResponse) {
|
|
239
352
|
CreateChannelResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
240
353
|
})(CreateChannelResponse || (CreateChannelResponse = {}));
|
|
354
|
+
var ResourceLimitExceededException = (function (_super) {
|
|
355
|
+
__extends(ResourceLimitExceededException, _super);
|
|
356
|
+
function ResourceLimitExceededException(opts) {
|
|
357
|
+
var _this = _super.call(this, __assign({ name: "ResourceLimitExceededException", $fault: "client" }, opts)) || this;
|
|
358
|
+
_this.name = "ResourceLimitExceededException";
|
|
359
|
+
_this.$fault = "client";
|
|
360
|
+
Object.setPrototypeOf(_this, ResourceLimitExceededException.prototype);
|
|
361
|
+
_this.Code = opts.Code;
|
|
362
|
+
_this.Message = opts.Message;
|
|
363
|
+
return _this;
|
|
364
|
+
}
|
|
365
|
+
return ResourceLimitExceededException;
|
|
366
|
+
}(__BaseException));
|
|
367
|
+
export { ResourceLimitExceededException };
|
|
241
368
|
export var CreateChannelBanRequest;
|
|
242
369
|
(function (CreateChannelBanRequest) {
|
|
243
370
|
CreateChannelBanRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|