@aws-sdk/client-chime-sdk-identity 3.183.0 → 3.185.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 +11 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/ChimeSDKIdentity.js +105 -98
- package/dist-es/ChimeSDKIdentityClient.js +28 -22
- package/dist-es/commands/CreateAppInstanceAdminCommand.js +28 -21
- package/dist-es/commands/CreateAppInstanceCommand.js +28 -21
- package/dist-es/commands/CreateAppInstanceUserCommand.js +28 -21
- package/dist-es/commands/DeleteAppInstanceAdminCommand.js +29 -22
- package/dist-es/commands/DeleteAppInstanceCommand.js +29 -22
- package/dist-es/commands/DeleteAppInstanceUserCommand.js +29 -22
- package/dist-es/commands/DeregisterAppInstanceUserEndpointCommand.js +29 -22
- package/dist-es/commands/DescribeAppInstanceAdminCommand.js +28 -21
- package/dist-es/commands/DescribeAppInstanceCommand.js +28 -21
- package/dist-es/commands/DescribeAppInstanceUserCommand.js +28 -21
- package/dist-es/commands/DescribeAppInstanceUserEndpointCommand.js +28 -21
- package/dist-es/commands/GetAppInstanceRetentionSettingsCommand.js +28 -21
- package/dist-es/commands/ListAppInstanceAdminsCommand.js +28 -21
- package/dist-es/commands/ListAppInstanceUserEndpointsCommand.js +28 -21
- package/dist-es/commands/ListAppInstanceUsersCommand.js +28 -21
- package/dist-es/commands/ListAppInstancesCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/PutAppInstanceRetentionSettingsCommand.js +28 -21
- package/dist-es/commands/RegisterAppInstanceUserEndpointCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +29 -22
- package/dist-es/commands/UntagResourceCommand.js +29 -22
- package/dist-es/commands/UpdateAppInstanceCommand.js +28 -21
- package/dist-es/commands/UpdateAppInstanceUserCommand.js +28 -21
- package/dist-es/commands/UpdateAppInstanceUserEndpointCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ChimeSDKIdentityServiceException.js +10 -5
- package/dist-es/models/models_0.js +170 -352
- package/dist-es/pagination/ListAppInstanceAdminsPaginator.js +68 -25
- package/dist-es/pagination/ListAppInstanceUserEndpointsPaginator.js +68 -25
- package/dist-es/pagination/ListAppInstanceUsersPaginator.js +68 -25
- package/dist-es/pagination/ListAppInstancesPaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +2670 -1873
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +5 -5
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { ChimeSDKIdentityServiceException as __BaseException } from "./ChimeSDKIdentityServiceException";
|
|
3
4
|
export var AllowMessages;
|
|
@@ -39,364 +40,181 @@ export var ErrorCode;
|
|
|
39
40
|
ErrorCode["Unprocessable"] = "Unprocessable";
|
|
40
41
|
ErrorCode["VoiceConnectorGroupAssociationsExist"] = "VoiceConnectorGroupAssociationsExist";
|
|
41
42
|
})(ErrorCode || (ErrorCode = {}));
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
this.Code = opts.Code;
|
|
53
|
-
this.Message = opts.Message;
|
|
43
|
+
var BadRequestException = (function (_super) {
|
|
44
|
+
__extends(BadRequestException, _super);
|
|
45
|
+
function BadRequestException(opts) {
|
|
46
|
+
var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
|
|
47
|
+
_this.name = "BadRequestException";
|
|
48
|
+
_this.$fault = "client";
|
|
49
|
+
Object.setPrototypeOf(_this, BadRequestException.prototype);
|
|
50
|
+
_this.Code = opts.Code;
|
|
51
|
+
_this.Message = opts.Message;
|
|
52
|
+
return _this;
|
|
54
53
|
}
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
54
|
+
return BadRequestException;
|
|
55
|
+
}(__BaseException));
|
|
56
|
+
export { BadRequestException };
|
|
57
|
+
var ConflictException = (function (_super) {
|
|
58
|
+
__extends(ConflictException, _super);
|
|
59
|
+
function ConflictException(opts) {
|
|
60
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
61
|
+
_this.name = "ConflictException";
|
|
62
|
+
_this.$fault = "client";
|
|
63
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
64
|
+
_this.Code = opts.Code;
|
|
65
|
+
_this.Message = opts.Message;
|
|
66
|
+
return _this;
|
|
68
67
|
}
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
68
|
+
return ConflictException;
|
|
69
|
+
}(__BaseException));
|
|
70
|
+
export { ConflictException };
|
|
71
|
+
var ForbiddenException = (function (_super) {
|
|
72
|
+
__extends(ForbiddenException, _super);
|
|
73
|
+
function ForbiddenException(opts) {
|
|
74
|
+
var _this = _super.call(this, __assign({ name: "ForbiddenException", $fault: "client" }, opts)) || this;
|
|
75
|
+
_this.name = "ForbiddenException";
|
|
76
|
+
_this.$fault = "client";
|
|
77
|
+
Object.setPrototypeOf(_this, ForbiddenException.prototype);
|
|
78
|
+
_this.Code = opts.Code;
|
|
79
|
+
_this.Message = opts.Message;
|
|
80
|
+
return _this;
|
|
82
81
|
}
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
82
|
+
return ForbiddenException;
|
|
83
|
+
}(__BaseException));
|
|
84
|
+
export { ForbiddenException };
|
|
85
|
+
var ResourceLimitExceededException = (function (_super) {
|
|
86
|
+
__extends(ResourceLimitExceededException, _super);
|
|
87
|
+
function ResourceLimitExceededException(opts) {
|
|
88
|
+
var _this = _super.call(this, __assign({ name: "ResourceLimitExceededException", $fault: "client" }, opts)) || this;
|
|
89
|
+
_this.name = "ResourceLimitExceededException";
|
|
90
|
+
_this.$fault = "client";
|
|
91
|
+
Object.setPrototypeOf(_this, ResourceLimitExceededException.prototype);
|
|
92
|
+
_this.Code = opts.Code;
|
|
93
|
+
_this.Message = opts.Message;
|
|
94
|
+
return _this;
|
|
96
95
|
}
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
96
|
+
return ResourceLimitExceededException;
|
|
97
|
+
}(__BaseException));
|
|
98
|
+
export { ResourceLimitExceededException };
|
|
99
|
+
var ServiceFailureException = (function (_super) {
|
|
100
|
+
__extends(ServiceFailureException, _super);
|
|
101
|
+
function ServiceFailureException(opts) {
|
|
102
|
+
var _this = _super.call(this, __assign({ name: "ServiceFailureException", $fault: "server" }, opts)) || this;
|
|
103
|
+
_this.name = "ServiceFailureException";
|
|
104
|
+
_this.$fault = "server";
|
|
105
|
+
Object.setPrototypeOf(_this, ServiceFailureException.prototype);
|
|
106
|
+
_this.Code = opts.Code;
|
|
107
|
+
_this.Message = opts.Message;
|
|
108
|
+
return _this;
|
|
110
109
|
}
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
110
|
+
return ServiceFailureException;
|
|
111
|
+
}(__BaseException));
|
|
112
|
+
export { ServiceFailureException };
|
|
113
|
+
var ServiceUnavailableException = (function (_super) {
|
|
114
|
+
__extends(ServiceUnavailableException, _super);
|
|
115
|
+
function ServiceUnavailableException(opts) {
|
|
116
|
+
var _this = _super.call(this, __assign({ name: "ServiceUnavailableException", $fault: "server" }, opts)) || this;
|
|
117
|
+
_this.name = "ServiceUnavailableException";
|
|
118
|
+
_this.$fault = "server";
|
|
119
|
+
Object.setPrototypeOf(_this, ServiceUnavailableException.prototype);
|
|
120
|
+
_this.Code = opts.Code;
|
|
121
|
+
_this.Message = opts.Message;
|
|
122
|
+
return _this;
|
|
124
123
|
}
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
124
|
+
return ServiceUnavailableException;
|
|
125
|
+
}(__BaseException));
|
|
126
|
+
export { ServiceUnavailableException };
|
|
127
|
+
var ThrottledClientException = (function (_super) {
|
|
128
|
+
__extends(ThrottledClientException, _super);
|
|
129
|
+
function ThrottledClientException(opts) {
|
|
130
|
+
var _this = _super.call(this, __assign({ name: "ThrottledClientException", $fault: "client" }, opts)) || this;
|
|
131
|
+
_this.name = "ThrottledClientException";
|
|
132
|
+
_this.$fault = "client";
|
|
133
|
+
Object.setPrototypeOf(_this, ThrottledClientException.prototype);
|
|
134
|
+
_this.Code = opts.Code;
|
|
135
|
+
_this.Message = opts.Message;
|
|
136
|
+
return _this;
|
|
138
137
|
}
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
138
|
+
return ThrottledClientException;
|
|
139
|
+
}(__BaseException));
|
|
140
|
+
export { ThrottledClientException };
|
|
141
|
+
var UnauthorizedClientException = (function (_super) {
|
|
142
|
+
__extends(UnauthorizedClientException, _super);
|
|
143
|
+
function UnauthorizedClientException(opts) {
|
|
144
|
+
var _this = _super.call(this, __assign({ name: "UnauthorizedClientException", $fault: "client" }, opts)) || this;
|
|
145
|
+
_this.name = "UnauthorizedClientException";
|
|
146
|
+
_this.$fault = "client";
|
|
147
|
+
Object.setPrototypeOf(_this, UnauthorizedClientException.prototype);
|
|
148
|
+
_this.Code = opts.Code;
|
|
149
|
+
_this.Message = opts.Message;
|
|
150
|
+
return _this;
|
|
152
151
|
}
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
});
|
|
159
|
-
export
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
});
|
|
163
|
-
export
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
});
|
|
167
|
-
export
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
});
|
|
171
|
-
export
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
});
|
|
176
|
-
export
|
|
177
|
-
|
|
178
|
-
});
|
|
179
|
-
export
|
|
180
|
-
|
|
181
|
-
});
|
|
182
|
-
export
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
});
|
|
187
|
-
export
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
});
|
|
192
|
-
export
|
|
193
|
-
|
|
194
|
-
})
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
});
|
|
203
|
-
export const AppInstanceUserEndpointSummaryFilterSensitiveLog = (obj) => ({
|
|
204
|
-
...obj,
|
|
205
|
-
...(obj.AppInstanceUserArn && { AppInstanceUserArn: SENSITIVE_STRING }),
|
|
206
|
-
...(obj.EndpointId && { EndpointId: SENSITIVE_STRING }),
|
|
207
|
-
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
208
|
-
});
|
|
209
|
-
export const AppInstanceUserSummaryFilterSensitiveLog = (obj) => ({
|
|
210
|
-
...obj,
|
|
211
|
-
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
212
|
-
...(obj.Metadata && { Metadata: SENSITIVE_STRING }),
|
|
213
|
-
});
|
|
214
|
-
export const TagFilterSensitiveLog = (obj) => ({
|
|
215
|
-
...obj,
|
|
216
|
-
...(obj.Key && { Key: SENSITIVE_STRING }),
|
|
217
|
-
...(obj.Value && { Value: SENSITIVE_STRING }),
|
|
218
|
-
});
|
|
219
|
-
export const CreateAppInstanceRequestFilterSensitiveLog = (obj) => ({
|
|
220
|
-
...obj,
|
|
221
|
-
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
222
|
-
...(obj.Metadata && { Metadata: SENSITIVE_STRING }),
|
|
223
|
-
...(obj.ClientRequestToken && { ClientRequestToken: SENSITIVE_STRING }),
|
|
224
|
-
...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
225
|
-
});
|
|
226
|
-
export const CreateAppInstanceResponseFilterSensitiveLog = (obj) => ({
|
|
227
|
-
...obj,
|
|
228
|
-
});
|
|
229
|
-
export const CreateAppInstanceAdminRequestFilterSensitiveLog = (obj) => ({
|
|
230
|
-
...obj,
|
|
231
|
-
});
|
|
232
|
-
export const CreateAppInstanceAdminResponseFilterSensitiveLog = (obj) => ({
|
|
233
|
-
...obj,
|
|
234
|
-
...(obj.AppInstanceAdmin && { AppInstanceAdmin: IdentityFilterSensitiveLog(obj.AppInstanceAdmin) }),
|
|
235
|
-
});
|
|
236
|
-
export const CreateAppInstanceUserRequestFilterSensitiveLog = (obj) => ({
|
|
237
|
-
...obj,
|
|
238
|
-
...(obj.AppInstanceUserId && { AppInstanceUserId: SENSITIVE_STRING }),
|
|
239
|
-
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
240
|
-
...(obj.Metadata && { Metadata: SENSITIVE_STRING }),
|
|
241
|
-
...(obj.ClientRequestToken && { ClientRequestToken: SENSITIVE_STRING }),
|
|
242
|
-
...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
243
|
-
});
|
|
244
|
-
export const CreateAppInstanceUserResponseFilterSensitiveLog = (obj) => ({
|
|
245
|
-
...obj,
|
|
246
|
-
});
|
|
247
|
-
export const DeleteAppInstanceRequestFilterSensitiveLog = (obj) => ({
|
|
248
|
-
...obj,
|
|
249
|
-
});
|
|
250
|
-
export const DeleteAppInstanceAdminRequestFilterSensitiveLog = (obj) => ({
|
|
251
|
-
...obj,
|
|
252
|
-
});
|
|
253
|
-
export const DeleteAppInstanceUserRequestFilterSensitiveLog = (obj) => ({
|
|
254
|
-
...obj,
|
|
255
|
-
});
|
|
256
|
-
export const DeregisterAppInstanceUserEndpointRequestFilterSensitiveLog = (obj) => ({
|
|
257
|
-
...obj,
|
|
258
|
-
...(obj.AppInstanceUserArn && { AppInstanceUserArn: SENSITIVE_STRING }),
|
|
259
|
-
...(obj.EndpointId && { EndpointId: SENSITIVE_STRING }),
|
|
260
|
-
});
|
|
261
|
-
export const DescribeAppInstanceRequestFilterSensitiveLog = (obj) => ({
|
|
262
|
-
...obj,
|
|
263
|
-
});
|
|
264
|
-
export const DescribeAppInstanceResponseFilterSensitiveLog = (obj) => ({
|
|
265
|
-
...obj,
|
|
266
|
-
...(obj.AppInstance && { AppInstance: AppInstanceFilterSensitiveLog(obj.AppInstance) }),
|
|
267
|
-
});
|
|
268
|
-
export const DescribeAppInstanceAdminRequestFilterSensitiveLog = (obj) => ({
|
|
269
|
-
...obj,
|
|
270
|
-
});
|
|
271
|
-
export const DescribeAppInstanceAdminResponseFilterSensitiveLog = (obj) => ({
|
|
272
|
-
...obj,
|
|
273
|
-
...(obj.AppInstanceAdmin && { AppInstanceAdmin: AppInstanceAdminFilterSensitiveLog(obj.AppInstanceAdmin) }),
|
|
274
|
-
});
|
|
275
|
-
export const DescribeAppInstanceUserRequestFilterSensitiveLog = (obj) => ({
|
|
276
|
-
...obj,
|
|
277
|
-
});
|
|
278
|
-
export const DescribeAppInstanceUserResponseFilterSensitiveLog = (obj) => ({
|
|
279
|
-
...obj,
|
|
280
|
-
...(obj.AppInstanceUser && { AppInstanceUser: AppInstanceUserFilterSensitiveLog(obj.AppInstanceUser) }),
|
|
281
|
-
});
|
|
282
|
-
export const DescribeAppInstanceUserEndpointRequestFilterSensitiveLog = (obj) => ({
|
|
283
|
-
...obj,
|
|
284
|
-
...(obj.AppInstanceUserArn && { AppInstanceUserArn: SENSITIVE_STRING }),
|
|
285
|
-
...(obj.EndpointId && { EndpointId: SENSITIVE_STRING }),
|
|
286
|
-
});
|
|
287
|
-
export const DescribeAppInstanceUserEndpointResponseFilterSensitiveLog = (obj) => ({
|
|
288
|
-
...obj,
|
|
289
|
-
...(obj.AppInstanceUserEndpoint && {
|
|
290
|
-
AppInstanceUserEndpoint: AppInstanceUserEndpointFilterSensitiveLog(obj.AppInstanceUserEndpoint),
|
|
152
|
+
return UnauthorizedClientException;
|
|
153
|
+
}(__BaseException));
|
|
154
|
+
export { UnauthorizedClientException };
|
|
155
|
+
export var AppInstanceFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Metadata && { Metadata: SENSITIVE_STRING }))); };
|
|
156
|
+
export var IdentityFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING }))); };
|
|
157
|
+
export var AppInstanceAdminFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Admin && { Admin: IdentityFilterSensitiveLog(obj.Admin) }))); };
|
|
158
|
+
export var AppInstanceAdminSummaryFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Admin && { Admin: IdentityFilterSensitiveLog(obj.Admin) }))); };
|
|
159
|
+
export var AppInstanceSummaryFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Metadata && { Metadata: SENSITIVE_STRING }))); };
|
|
160
|
+
export var ChannelRetentionSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
161
|
+
export var AppInstanceRetentionSettingsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
162
|
+
export var AppInstanceUserFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Metadata && { Metadata: SENSITIVE_STRING }))); };
|
|
163
|
+
export var EndpointAttributesFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.DeviceToken && { DeviceToken: SENSITIVE_STRING })), (obj.VoipDeviceToken && { VoipDeviceToken: SENSITIVE_STRING }))); };
|
|
164
|
+
export var EndpointStateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
165
|
+
export var AppInstanceUserEndpointFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign(__assign({}, obj), (obj.AppInstanceUserArn && { AppInstanceUserArn: SENSITIVE_STRING })), (obj.EndpointId && { EndpointId: SENSITIVE_STRING })), (obj.Name && { Name: SENSITIVE_STRING })), (obj.ResourceArn && { ResourceArn: SENSITIVE_STRING })), (obj.EndpointAttributes && { EndpointAttributes: EndpointAttributesFilterSensitiveLog(obj.EndpointAttributes) }))); };
|
|
166
|
+
export var AppInstanceUserEndpointSummaryFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.AppInstanceUserArn && { AppInstanceUserArn: SENSITIVE_STRING })), (obj.EndpointId && { EndpointId: SENSITIVE_STRING })), (obj.Name && { Name: SENSITIVE_STRING }))); };
|
|
167
|
+
export var AppInstanceUserSummaryFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Metadata && { Metadata: SENSITIVE_STRING }))); };
|
|
168
|
+
export var TagFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Key && { Key: SENSITIVE_STRING })), (obj.Value && { Value: SENSITIVE_STRING }))); };
|
|
169
|
+
export var CreateAppInstanceRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Metadata && { Metadata: SENSITIVE_STRING })), (obj.ClientRequestToken && { ClientRequestToken: SENSITIVE_STRING })), (obj.Tags && { Tags: obj.Tags.map(function (item) { return TagFilterSensitiveLog(item); }) }))); };
|
|
170
|
+
export var CreateAppInstanceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
171
|
+
export var CreateAppInstanceAdminRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
172
|
+
export var CreateAppInstanceAdminResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AppInstanceAdmin && { AppInstanceAdmin: IdentityFilterSensitiveLog(obj.AppInstanceAdmin) }))); };
|
|
173
|
+
export var CreateAppInstanceUserRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign(__assign({}, obj), (obj.AppInstanceUserId && { AppInstanceUserId: SENSITIVE_STRING })), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Metadata && { Metadata: SENSITIVE_STRING })), (obj.ClientRequestToken && { ClientRequestToken: SENSITIVE_STRING })), (obj.Tags && { Tags: obj.Tags.map(function (item) { return TagFilterSensitiveLog(item); }) }))); };
|
|
174
|
+
export var CreateAppInstanceUserResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
175
|
+
export var DeleteAppInstanceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
176
|
+
export var DeleteAppInstanceAdminRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
177
|
+
export var DeleteAppInstanceUserRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
178
|
+
export var DeregisterAppInstanceUserEndpointRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.AppInstanceUserArn && { AppInstanceUserArn: SENSITIVE_STRING })), (obj.EndpointId && { EndpointId: SENSITIVE_STRING }))); };
|
|
179
|
+
export var DescribeAppInstanceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
180
|
+
export var DescribeAppInstanceResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AppInstance && { AppInstance: AppInstanceFilterSensitiveLog(obj.AppInstance) }))); };
|
|
181
|
+
export var DescribeAppInstanceAdminRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
182
|
+
export var DescribeAppInstanceAdminResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AppInstanceAdmin && { AppInstanceAdmin: AppInstanceAdminFilterSensitiveLog(obj.AppInstanceAdmin) }))); };
|
|
183
|
+
export var DescribeAppInstanceUserRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
184
|
+
export var DescribeAppInstanceUserResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AppInstanceUser && { AppInstanceUser: AppInstanceUserFilterSensitiveLog(obj.AppInstanceUser) }))); };
|
|
185
|
+
export var DescribeAppInstanceUserEndpointRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.AppInstanceUserArn && { AppInstanceUserArn: SENSITIVE_STRING })), (obj.EndpointId && { EndpointId: SENSITIVE_STRING }))); };
|
|
186
|
+
export var DescribeAppInstanceUserEndpointResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.AppInstanceUserEndpoint && {
|
|
187
|
+
AppInstanceUserEndpoint: AppInstanceUserEndpointFilterSensitiveLog(obj.AppInstanceUserEndpoint),
|
|
188
|
+
}))); };
|
|
189
|
+
export var GetAppInstanceRetentionSettingsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
190
|
+
export var GetAppInstanceRetentionSettingsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
191
|
+
export var ListAppInstanceAdminsRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.NextToken && { NextToken: SENSITIVE_STRING }))); };
|
|
192
|
+
export var ListAppInstanceAdminsResponseFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.AppInstanceAdmins && {
|
|
193
|
+
AppInstanceAdmins: obj.AppInstanceAdmins.map(function (item) { return AppInstanceAdminSummaryFilterSensitiveLog(item); }),
|
|
194
|
+
})), (obj.NextToken && { NextToken: SENSITIVE_STRING }))); };
|
|
195
|
+
export var ListAppInstancesRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.NextToken && { NextToken: SENSITIVE_STRING }))); };
|
|
196
|
+
export var ListAppInstancesResponseFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.AppInstances && { AppInstances: obj.AppInstances.map(function (item) { return AppInstanceSummaryFilterSensitiveLog(item); }) })), (obj.NextToken && { NextToken: SENSITIVE_STRING }))); };
|
|
197
|
+
export var ListAppInstanceUserEndpointsRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.AppInstanceUserArn && { AppInstanceUserArn: SENSITIVE_STRING })), (obj.NextToken && { NextToken: SENSITIVE_STRING }))); };
|
|
198
|
+
export var ListAppInstanceUserEndpointsResponseFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.AppInstanceUserEndpoints && {
|
|
199
|
+
AppInstanceUserEndpoints: obj.AppInstanceUserEndpoints.map(function (item) {
|
|
200
|
+
return AppInstanceUserEndpointSummaryFilterSensitiveLog(item);
|
|
291
201
|
}),
|
|
292
|
-
});
|
|
293
|
-
export
|
|
294
|
-
|
|
295
|
-
})
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
});
|
|
299
|
-
export
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
});
|
|
303
|
-
export
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
});
|
|
310
|
-
export
|
|
311
|
-
...obj,
|
|
312
|
-
...(obj.NextToken && { NextToken: SENSITIVE_STRING }),
|
|
313
|
-
});
|
|
314
|
-
export const ListAppInstancesResponseFilterSensitiveLog = (obj) => ({
|
|
315
|
-
...obj,
|
|
316
|
-
...(obj.AppInstances && { AppInstances: obj.AppInstances.map((item) => AppInstanceSummaryFilterSensitiveLog(item)) }),
|
|
317
|
-
...(obj.NextToken && { NextToken: SENSITIVE_STRING }),
|
|
318
|
-
});
|
|
319
|
-
export const ListAppInstanceUserEndpointsRequestFilterSensitiveLog = (obj) => ({
|
|
320
|
-
...obj,
|
|
321
|
-
...(obj.AppInstanceUserArn && { AppInstanceUserArn: SENSITIVE_STRING }),
|
|
322
|
-
...(obj.NextToken && { NextToken: SENSITIVE_STRING }),
|
|
323
|
-
});
|
|
324
|
-
export const ListAppInstanceUserEndpointsResponseFilterSensitiveLog = (obj) => ({
|
|
325
|
-
...obj,
|
|
326
|
-
...(obj.AppInstanceUserEndpoints && {
|
|
327
|
-
AppInstanceUserEndpoints: obj.AppInstanceUserEndpoints.map((item) => AppInstanceUserEndpointSummaryFilterSensitiveLog(item)),
|
|
328
|
-
}),
|
|
329
|
-
...(obj.NextToken && { NextToken: SENSITIVE_STRING }),
|
|
330
|
-
});
|
|
331
|
-
export const ListAppInstanceUsersRequestFilterSensitiveLog = (obj) => ({
|
|
332
|
-
...obj,
|
|
333
|
-
...(obj.NextToken && { NextToken: SENSITIVE_STRING }),
|
|
334
|
-
});
|
|
335
|
-
export const ListAppInstanceUsersResponseFilterSensitiveLog = (obj) => ({
|
|
336
|
-
...obj,
|
|
337
|
-
...(obj.AppInstanceUsers && {
|
|
338
|
-
AppInstanceUsers: obj.AppInstanceUsers.map((item) => AppInstanceUserSummaryFilterSensitiveLog(item)),
|
|
339
|
-
}),
|
|
340
|
-
...(obj.NextToken && { NextToken: SENSITIVE_STRING }),
|
|
341
|
-
});
|
|
342
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
343
|
-
...obj,
|
|
344
|
-
});
|
|
345
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
346
|
-
...obj,
|
|
347
|
-
...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
348
|
-
});
|
|
349
|
-
export const PutAppInstanceRetentionSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
350
|
-
...obj,
|
|
351
|
-
});
|
|
352
|
-
export const PutAppInstanceRetentionSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
353
|
-
...obj,
|
|
354
|
-
});
|
|
355
|
-
export const RegisterAppInstanceUserEndpointRequestFilterSensitiveLog = (obj) => ({
|
|
356
|
-
...obj,
|
|
357
|
-
...(obj.AppInstanceUserArn && { AppInstanceUserArn: SENSITIVE_STRING }),
|
|
358
|
-
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
359
|
-
...(obj.ResourceArn && { ResourceArn: SENSITIVE_STRING }),
|
|
360
|
-
...(obj.EndpointAttributes && { EndpointAttributes: EndpointAttributesFilterSensitiveLog(obj.EndpointAttributes) }),
|
|
361
|
-
...(obj.ClientRequestToken && { ClientRequestToken: SENSITIVE_STRING }),
|
|
362
|
-
});
|
|
363
|
-
export const RegisterAppInstanceUserEndpointResponseFilterSensitiveLog = (obj) => ({
|
|
364
|
-
...obj,
|
|
365
|
-
...(obj.AppInstanceUserArn && { AppInstanceUserArn: SENSITIVE_STRING }),
|
|
366
|
-
...(obj.EndpointId && { EndpointId: SENSITIVE_STRING }),
|
|
367
|
-
});
|
|
368
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
369
|
-
...obj,
|
|
370
|
-
...(obj.Tags && { Tags: obj.Tags.map((item) => TagFilterSensitiveLog(item)) }),
|
|
371
|
-
});
|
|
372
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
373
|
-
...obj,
|
|
374
|
-
...(obj.TagKeys && { TagKeys: SENSITIVE_STRING }),
|
|
375
|
-
});
|
|
376
|
-
export const UpdateAppInstanceRequestFilterSensitiveLog = (obj) => ({
|
|
377
|
-
...obj,
|
|
378
|
-
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
379
|
-
...(obj.Metadata && { Metadata: SENSITIVE_STRING }),
|
|
380
|
-
});
|
|
381
|
-
export const UpdateAppInstanceResponseFilterSensitiveLog = (obj) => ({
|
|
382
|
-
...obj,
|
|
383
|
-
});
|
|
384
|
-
export const UpdateAppInstanceUserRequestFilterSensitiveLog = (obj) => ({
|
|
385
|
-
...obj,
|
|
386
|
-
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
387
|
-
...(obj.Metadata && { Metadata: SENSITIVE_STRING }),
|
|
388
|
-
});
|
|
389
|
-
export const UpdateAppInstanceUserResponseFilterSensitiveLog = (obj) => ({
|
|
390
|
-
...obj,
|
|
391
|
-
});
|
|
392
|
-
export const UpdateAppInstanceUserEndpointRequestFilterSensitiveLog = (obj) => ({
|
|
393
|
-
...obj,
|
|
394
|
-
...(obj.AppInstanceUserArn && { AppInstanceUserArn: SENSITIVE_STRING }),
|
|
395
|
-
...(obj.EndpointId && { EndpointId: SENSITIVE_STRING }),
|
|
396
|
-
...(obj.Name && { Name: SENSITIVE_STRING }),
|
|
397
|
-
});
|
|
398
|
-
export const UpdateAppInstanceUserEndpointResponseFilterSensitiveLog = (obj) => ({
|
|
399
|
-
...obj,
|
|
400
|
-
...(obj.AppInstanceUserArn && { AppInstanceUserArn: SENSITIVE_STRING }),
|
|
401
|
-
...(obj.EndpointId && { EndpointId: SENSITIVE_STRING }),
|
|
402
|
-
});
|
|
202
|
+
})), (obj.NextToken && { NextToken: SENSITIVE_STRING }))); };
|
|
203
|
+
export var ListAppInstanceUsersRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.NextToken && { NextToken: SENSITIVE_STRING }))); };
|
|
204
|
+
export var ListAppInstanceUsersResponseFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.AppInstanceUsers && {
|
|
205
|
+
AppInstanceUsers: obj.AppInstanceUsers.map(function (item) { return AppInstanceUserSummaryFilterSensitiveLog(item); }),
|
|
206
|
+
})), (obj.NextToken && { NextToken: SENSITIVE_STRING }))); };
|
|
207
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
208
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Tags && { Tags: obj.Tags.map(function (item) { return TagFilterSensitiveLog(item); }) }))); };
|
|
209
|
+
export var PutAppInstanceRetentionSettingsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
210
|
+
export var PutAppInstanceRetentionSettingsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
211
|
+
export var RegisterAppInstanceUserEndpointRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign(__assign({}, obj), (obj.AppInstanceUserArn && { AppInstanceUserArn: SENSITIVE_STRING })), (obj.Name && { Name: SENSITIVE_STRING })), (obj.ResourceArn && { ResourceArn: SENSITIVE_STRING })), (obj.EndpointAttributes && { EndpointAttributes: EndpointAttributesFilterSensitiveLog(obj.EndpointAttributes) })), (obj.ClientRequestToken && { ClientRequestToken: SENSITIVE_STRING }))); };
|
|
212
|
+
export var RegisterAppInstanceUserEndpointResponseFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.AppInstanceUserArn && { AppInstanceUserArn: SENSITIVE_STRING })), (obj.EndpointId && { EndpointId: SENSITIVE_STRING }))); };
|
|
213
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Tags && { Tags: obj.Tags.map(function (item) { return TagFilterSensitiveLog(item); }) }))); };
|
|
214
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.TagKeys && { TagKeys: SENSITIVE_STRING }))); };
|
|
215
|
+
export var UpdateAppInstanceRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Metadata && { Metadata: SENSITIVE_STRING }))); };
|
|
216
|
+
export var UpdateAppInstanceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
217
|
+
export var UpdateAppInstanceUserRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.Name && { Name: SENSITIVE_STRING })), (obj.Metadata && { Metadata: SENSITIVE_STRING }))); };
|
|
218
|
+
export var UpdateAppInstanceUserResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
219
|
+
export var UpdateAppInstanceUserEndpointRequestFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign({}, obj), (obj.AppInstanceUserArn && { AppInstanceUserArn: SENSITIVE_STRING })), (obj.EndpointId && { EndpointId: SENSITIVE_STRING })), (obj.Name && { Name: SENSITIVE_STRING }))); };
|
|
220
|
+
export var UpdateAppInstanceUserEndpointResponseFilterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.AppInstanceUserArn && { AppInstanceUserArn: SENSITIVE_STRING })), (obj.EndpointId && { EndpointId: SENSITIVE_STRING }))); };
|