@aws-sdk/client-workspaces-web 3.186.0 → 3.188.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 +8 -0
- package/dist-es/WorkSpacesWeb.js +178 -185
- package/dist-es/WorkSpacesWebClient.js +22 -28
- package/dist-es/commands/AssociateBrowserSettingsCommand.js +21 -28
- package/dist-es/commands/AssociateNetworkSettingsCommand.js +21 -28
- package/dist-es/commands/AssociateTrustStoreCommand.js +21 -28
- package/dist-es/commands/AssociateUserSettingsCommand.js +21 -28
- package/dist-es/commands/CreateBrowserSettingsCommand.js +21 -28
- package/dist-es/commands/CreateIdentityProviderCommand.js +21 -28
- package/dist-es/commands/CreateNetworkSettingsCommand.js +21 -28
- package/dist-es/commands/CreatePortalCommand.js +21 -28
- package/dist-es/commands/CreateTrustStoreCommand.js +21 -28
- package/dist-es/commands/CreateUserSettingsCommand.js +21 -28
- package/dist-es/commands/DeleteBrowserSettingsCommand.js +21 -28
- package/dist-es/commands/DeleteIdentityProviderCommand.js +21 -28
- package/dist-es/commands/DeleteNetworkSettingsCommand.js +21 -28
- package/dist-es/commands/DeletePortalCommand.js +21 -28
- package/dist-es/commands/DeleteTrustStoreCommand.js +21 -28
- package/dist-es/commands/DeleteUserSettingsCommand.js +21 -28
- package/dist-es/commands/DisassociateBrowserSettingsCommand.js +21 -28
- package/dist-es/commands/DisassociateNetworkSettingsCommand.js +21 -28
- package/dist-es/commands/DisassociateTrustStoreCommand.js +21 -28
- package/dist-es/commands/DisassociateUserSettingsCommand.js +21 -28
- package/dist-es/commands/GetBrowserSettingsCommand.js +21 -28
- package/dist-es/commands/GetIdentityProviderCommand.js +21 -28
- package/dist-es/commands/GetNetworkSettingsCommand.js +21 -28
- package/dist-es/commands/GetPortalCommand.js +21 -28
- package/dist-es/commands/GetPortalServiceProviderMetadataCommand.js +21 -28
- package/dist-es/commands/GetTrustStoreCertificateCommand.js +21 -28
- package/dist-es/commands/GetTrustStoreCommand.js +21 -28
- package/dist-es/commands/GetUserSettingsCommand.js +21 -28
- package/dist-es/commands/ListBrowserSettingsCommand.js +21 -28
- package/dist-es/commands/ListIdentityProvidersCommand.js +21 -28
- package/dist-es/commands/ListNetworkSettingsCommand.js +21 -28
- package/dist-es/commands/ListPortalsCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/ListTrustStoreCertificatesCommand.js +21 -28
- package/dist-es/commands/ListTrustStoresCommand.js +21 -28
- package/dist-es/commands/ListUserSettingsCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UpdateBrowserSettingsCommand.js +21 -28
- package/dist-es/commands/UpdateIdentityProviderCommand.js +21 -28
- package/dist-es/commands/UpdateNetworkSettingsCommand.js +21 -28
- package/dist-es/commands/UpdatePortalCommand.js +21 -28
- package/dist-es/commands/UpdateTrustStoreCommand.js +21 -28
- package/dist-es/commands/UpdateUserSettingsCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/WorkSpacesWebServiceException.js +5 -10
- package/dist-es/models/models_0.js +449 -210
- package/dist-es/pagination/ListBrowserSettingsPaginator.js +25 -68
- package/dist-es/pagination/ListIdentityProvidersPaginator.js +25 -68
- package/dist-es/pagination/ListNetworkSettingsPaginator.js +25 -68
- package/dist-es/pagination/ListPortalsPaginator.js +25 -68
- package/dist-es/pagination/ListTrustStoreCertificatesPaginator.js +25 -68
- package/dist-es/pagination/ListTrustStoresPaginator.js +25 -68
- package/dist-es/pagination/ListUserSettingsPaginator.js +25 -68
- package/dist-es/protocols/Aws_restJson1.js +3076 -4468
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,74 +1,73 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
2
|
import { WorkSpacesWebServiceException as __BaseException } from "./WorkSpacesWebServiceException";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
3
|
+
export class AccessDeniedException extends __BaseException {
|
|
4
|
+
constructor(opts) {
|
|
5
|
+
super({
|
|
6
|
+
name: "AccessDeniedException",
|
|
7
|
+
$fault: "client",
|
|
8
|
+
...opts,
|
|
9
|
+
});
|
|
10
|
+
this.name = "AccessDeniedException";
|
|
11
|
+
this.$fault = "client";
|
|
12
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
13
|
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
14
|
+
}
|
|
15
|
+
export class ConflictException extends __BaseException {
|
|
16
|
+
constructor(opts) {
|
|
17
|
+
super({
|
|
18
|
+
name: "ConflictException",
|
|
19
|
+
$fault: "client",
|
|
20
|
+
...opts,
|
|
21
|
+
});
|
|
22
|
+
this.name = "ConflictException";
|
|
23
|
+
this.$fault = "client";
|
|
24
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
25
|
+
this.resourceId = opts.resourceId;
|
|
26
|
+
this.resourceType = opts.resourceType;
|
|
26
27
|
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
28
|
+
}
|
|
29
|
+
export class InternalServerException extends __BaseException {
|
|
30
|
+
constructor(opts) {
|
|
31
|
+
super({
|
|
32
|
+
name: "InternalServerException",
|
|
33
|
+
$fault: "server",
|
|
34
|
+
...opts,
|
|
35
|
+
});
|
|
36
|
+
this.name = "InternalServerException";
|
|
37
|
+
this.$fault = "server";
|
|
38
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
39
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
39
40
|
}
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
41
|
+
}
|
|
42
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
43
|
+
constructor(opts) {
|
|
44
|
+
super({
|
|
45
|
+
name: "ResourceNotFoundException",
|
|
46
|
+
$fault: "client",
|
|
47
|
+
...opts,
|
|
48
|
+
});
|
|
49
|
+
this.name = "ResourceNotFoundException";
|
|
50
|
+
this.$fault = "client";
|
|
51
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
52
|
+
this.resourceId = opts.resourceId;
|
|
53
|
+
this.resourceType = opts.resourceType;
|
|
53
54
|
}
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
55
|
+
}
|
|
56
|
+
export class ThrottlingException extends __BaseException {
|
|
57
|
+
constructor(opts) {
|
|
58
|
+
super({
|
|
59
|
+
name: "ThrottlingException",
|
|
60
|
+
$fault: "client",
|
|
61
|
+
...opts,
|
|
62
|
+
});
|
|
63
|
+
this.name = "ThrottlingException";
|
|
64
|
+
this.$fault = "client";
|
|
65
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
66
|
+
this.serviceCode = opts.serviceCode;
|
|
67
|
+
this.quotaCode = opts.quotaCode;
|
|
68
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
68
69
|
}
|
|
69
|
-
|
|
70
|
-
}(__BaseException));
|
|
71
|
-
export { ThrottlingException };
|
|
70
|
+
}
|
|
72
71
|
export var ValidationExceptionReason;
|
|
73
72
|
(function (ValidationExceptionReason) {
|
|
74
73
|
ValidationExceptionReason["CANNOT_PARSE"] = "cannotParse";
|
|
@@ -76,36 +75,36 @@ export var ValidationExceptionReason;
|
|
|
76
75
|
ValidationExceptionReason["OTHER"] = "other";
|
|
77
76
|
ValidationExceptionReason["UNKNOWN_OPERATION"] = "unknownOperation";
|
|
78
77
|
})(ValidationExceptionReason || (ValidationExceptionReason = {}));
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
78
|
+
export class ValidationException extends __BaseException {
|
|
79
|
+
constructor(opts) {
|
|
80
|
+
super({
|
|
81
|
+
name: "ValidationException",
|
|
82
|
+
$fault: "client",
|
|
83
|
+
...opts,
|
|
84
|
+
});
|
|
85
|
+
this.name = "ValidationException";
|
|
86
|
+
this.$fault = "client";
|
|
87
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
88
|
+
this.reason = opts.reason;
|
|
89
|
+
this.fieldList = opts.fieldList;
|
|
89
90
|
}
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
91
|
+
}
|
|
92
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
93
|
+
constructor(opts) {
|
|
94
|
+
super({
|
|
95
|
+
name: "ServiceQuotaExceededException",
|
|
96
|
+
$fault: "client",
|
|
97
|
+
...opts,
|
|
98
|
+
});
|
|
99
|
+
this.name = "ServiceQuotaExceededException";
|
|
100
|
+
this.$fault = "client";
|
|
101
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
102
|
+
this.resourceId = opts.resourceId;
|
|
103
|
+
this.resourceType = opts.resourceType;
|
|
104
|
+
this.serviceCode = opts.serviceCode;
|
|
105
|
+
this.quotaCode = opts.quotaCode;
|
|
105
106
|
}
|
|
106
|
-
|
|
107
|
-
}(__BaseException));
|
|
108
|
-
export { ServiceQuotaExceededException };
|
|
107
|
+
}
|
|
109
108
|
export var IdentityProviderType;
|
|
110
109
|
(function (IdentityProviderType) {
|
|
111
110
|
IdentityProviderType["Facebook"] = "Facebook";
|
|
@@ -134,122 +133,362 @@ export var RendererType;
|
|
|
134
133
|
(function (RendererType) {
|
|
135
134
|
RendererType["APPSTREAM"] = "AppStream";
|
|
136
135
|
})(RendererType || (RendererType = {}));
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
136
|
+
export class TooManyTagsException extends __BaseException {
|
|
137
|
+
constructor(opts) {
|
|
138
|
+
super({
|
|
139
|
+
name: "TooManyTagsException",
|
|
140
|
+
$fault: "client",
|
|
141
|
+
...opts,
|
|
142
|
+
});
|
|
143
|
+
this.name = "TooManyTagsException";
|
|
144
|
+
this.$fault = "client";
|
|
145
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
146
|
+
this.resourceName = opts.resourceName;
|
|
146
147
|
}
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
export
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
export
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
export
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
export
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
export
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
export
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
export
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
export
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
export
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
export
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
export
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
export
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
export
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
export
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
export
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
export
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
export
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
export
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
export
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
export
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
export
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
export
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
export
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
export
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
export
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
export
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
export
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
export
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
export
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
export
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
export
|
|
148
|
+
}
|
|
149
|
+
export const AssociateBrowserSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
150
|
+
...obj,
|
|
151
|
+
});
|
|
152
|
+
export const AssociateBrowserSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
153
|
+
...obj,
|
|
154
|
+
});
|
|
155
|
+
export const ValidationExceptionFieldFilterSensitiveLog = (obj) => ({
|
|
156
|
+
...obj,
|
|
157
|
+
});
|
|
158
|
+
export const AssociateNetworkSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
159
|
+
...obj,
|
|
160
|
+
});
|
|
161
|
+
export const AssociateNetworkSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
162
|
+
...obj,
|
|
163
|
+
});
|
|
164
|
+
export const AssociateTrustStoreRequestFilterSensitiveLog = (obj) => ({
|
|
165
|
+
...obj,
|
|
166
|
+
});
|
|
167
|
+
export const AssociateTrustStoreResponseFilterSensitiveLog = (obj) => ({
|
|
168
|
+
...obj,
|
|
169
|
+
});
|
|
170
|
+
export const AssociateUserSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
171
|
+
...obj,
|
|
172
|
+
});
|
|
173
|
+
export const AssociateUserSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
174
|
+
...obj,
|
|
175
|
+
});
|
|
176
|
+
export const TagFilterSensitiveLog = (obj) => ({
|
|
177
|
+
...obj,
|
|
178
|
+
...(obj.Key && { Key: SENSITIVE_STRING }),
|
|
179
|
+
...(obj.Value && { Value: SENSITIVE_STRING }),
|
|
180
|
+
});
|
|
181
|
+
export const CreateBrowserSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
182
|
+
...obj,
|
|
183
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
184
|
+
...(obj.browserPolicy && { browserPolicy: SENSITIVE_STRING }),
|
|
185
|
+
});
|
|
186
|
+
export const CreateBrowserSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
187
|
+
...obj,
|
|
188
|
+
});
|
|
189
|
+
export const CreateIdentityProviderRequestFilterSensitiveLog = (obj) => ({
|
|
190
|
+
...obj,
|
|
191
|
+
...(obj.identityProviderName && { identityProviderName: SENSITIVE_STRING }),
|
|
192
|
+
...(obj.identityProviderDetails && { identityProviderDetails: SENSITIVE_STRING }),
|
|
193
|
+
});
|
|
194
|
+
export const CreateIdentityProviderResponseFilterSensitiveLog = (obj) => ({
|
|
195
|
+
...obj,
|
|
196
|
+
});
|
|
197
|
+
export const CreateNetworkSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
198
|
+
...obj,
|
|
199
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
200
|
+
});
|
|
201
|
+
export const CreateNetworkSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
202
|
+
...obj,
|
|
203
|
+
});
|
|
204
|
+
export const CreatePortalRequestFilterSensitiveLog = (obj) => ({
|
|
205
|
+
...obj,
|
|
206
|
+
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
207
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
208
|
+
});
|
|
209
|
+
export const CreatePortalResponseFilterSensitiveLog = (obj) => ({
|
|
210
|
+
...obj,
|
|
211
|
+
});
|
|
212
|
+
export const CreateTrustStoreRequestFilterSensitiveLog = (obj) => ({
|
|
213
|
+
...obj,
|
|
214
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
215
|
+
});
|
|
216
|
+
export const CreateTrustStoreResponseFilterSensitiveLog = (obj) => ({
|
|
217
|
+
...obj,
|
|
218
|
+
});
|
|
219
|
+
export const CreateUserSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
220
|
+
...obj,
|
|
221
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
222
|
+
});
|
|
223
|
+
export const CreateUserSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
224
|
+
...obj,
|
|
225
|
+
});
|
|
226
|
+
export const DeleteBrowserSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
227
|
+
...obj,
|
|
228
|
+
});
|
|
229
|
+
export const DeleteBrowserSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
230
|
+
...obj,
|
|
231
|
+
});
|
|
232
|
+
export const DeleteIdentityProviderRequestFilterSensitiveLog = (obj) => ({
|
|
233
|
+
...obj,
|
|
234
|
+
});
|
|
235
|
+
export const DeleteIdentityProviderResponseFilterSensitiveLog = (obj) => ({
|
|
236
|
+
...obj,
|
|
237
|
+
});
|
|
238
|
+
export const DeleteNetworkSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
239
|
+
...obj,
|
|
240
|
+
});
|
|
241
|
+
export const DeleteNetworkSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
242
|
+
...obj,
|
|
243
|
+
});
|
|
244
|
+
export const DeletePortalRequestFilterSensitiveLog = (obj) => ({
|
|
245
|
+
...obj,
|
|
246
|
+
});
|
|
247
|
+
export const DeletePortalResponseFilterSensitiveLog = (obj) => ({
|
|
248
|
+
...obj,
|
|
249
|
+
});
|
|
250
|
+
export const DeleteTrustStoreRequestFilterSensitiveLog = (obj) => ({
|
|
251
|
+
...obj,
|
|
252
|
+
});
|
|
253
|
+
export const DeleteTrustStoreResponseFilterSensitiveLog = (obj) => ({
|
|
254
|
+
...obj,
|
|
255
|
+
});
|
|
256
|
+
export const DeleteUserSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
257
|
+
...obj,
|
|
258
|
+
});
|
|
259
|
+
export const DeleteUserSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
260
|
+
...obj,
|
|
261
|
+
});
|
|
262
|
+
export const DisassociateBrowserSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
263
|
+
...obj,
|
|
264
|
+
});
|
|
265
|
+
export const DisassociateBrowserSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
266
|
+
...obj,
|
|
267
|
+
});
|
|
268
|
+
export const DisassociateNetworkSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
269
|
+
...obj,
|
|
270
|
+
});
|
|
271
|
+
export const DisassociateNetworkSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
272
|
+
...obj,
|
|
273
|
+
});
|
|
274
|
+
export const DisassociateTrustStoreRequestFilterSensitiveLog = (obj) => ({
|
|
275
|
+
...obj,
|
|
276
|
+
});
|
|
277
|
+
export const DisassociateTrustStoreResponseFilterSensitiveLog = (obj) => ({
|
|
278
|
+
...obj,
|
|
279
|
+
});
|
|
280
|
+
export const DisassociateUserSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
281
|
+
...obj,
|
|
282
|
+
});
|
|
283
|
+
export const DisassociateUserSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
284
|
+
...obj,
|
|
285
|
+
});
|
|
286
|
+
export const GetBrowserSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
287
|
+
...obj,
|
|
288
|
+
});
|
|
289
|
+
export const BrowserSettingsFilterSensitiveLog = (obj) => ({
|
|
290
|
+
...obj,
|
|
291
|
+
...(obj.browserPolicy && { browserPolicy: SENSITIVE_STRING }),
|
|
292
|
+
});
|
|
293
|
+
export const GetBrowserSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
294
|
+
...obj,
|
|
295
|
+
...(obj.browserSettings && { browserSettings: BrowserSettingsFilterSensitiveLog(obj.browserSettings) }),
|
|
296
|
+
});
|
|
297
|
+
export const GetIdentityProviderRequestFilterSensitiveLog = (obj) => ({
|
|
298
|
+
...obj,
|
|
299
|
+
});
|
|
300
|
+
export const IdentityProviderFilterSensitiveLog = (obj) => ({
|
|
301
|
+
...obj,
|
|
302
|
+
...(obj.identityProviderName && { identityProviderName: SENSITIVE_STRING }),
|
|
303
|
+
...(obj.identityProviderDetails && { identityProviderDetails: SENSITIVE_STRING }),
|
|
304
|
+
});
|
|
305
|
+
export const GetIdentityProviderResponseFilterSensitiveLog = (obj) => ({
|
|
306
|
+
...obj,
|
|
307
|
+
...(obj.identityProvider && { identityProvider: IdentityProviderFilterSensitiveLog(obj.identityProvider) }),
|
|
308
|
+
});
|
|
309
|
+
export const GetNetworkSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
310
|
+
...obj,
|
|
311
|
+
});
|
|
312
|
+
export const NetworkSettingsFilterSensitiveLog = (obj) => ({
|
|
313
|
+
...obj,
|
|
314
|
+
});
|
|
315
|
+
export const GetNetworkSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
316
|
+
...obj,
|
|
317
|
+
});
|
|
318
|
+
export const GetPortalRequestFilterSensitiveLog = (obj) => ({
|
|
319
|
+
...obj,
|
|
320
|
+
});
|
|
321
|
+
export const PortalFilterSensitiveLog = (obj) => ({
|
|
322
|
+
...obj,
|
|
323
|
+
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
324
|
+
});
|
|
325
|
+
export const GetPortalResponseFilterSensitiveLog = (obj) => ({
|
|
326
|
+
...obj,
|
|
327
|
+
...(obj.portal && { portal: PortalFilterSensitiveLog(obj.portal) }),
|
|
328
|
+
});
|
|
329
|
+
export const GetPortalServiceProviderMetadataRequestFilterSensitiveLog = (obj) => ({
|
|
330
|
+
...obj,
|
|
331
|
+
});
|
|
332
|
+
export const GetPortalServiceProviderMetadataResponseFilterSensitiveLog = (obj) => ({
|
|
333
|
+
...obj,
|
|
334
|
+
});
|
|
335
|
+
export const GetTrustStoreRequestFilterSensitiveLog = (obj) => ({
|
|
336
|
+
...obj,
|
|
337
|
+
});
|
|
338
|
+
export const TrustStoreFilterSensitiveLog = (obj) => ({
|
|
339
|
+
...obj,
|
|
340
|
+
});
|
|
341
|
+
export const GetTrustStoreResponseFilterSensitiveLog = (obj) => ({
|
|
342
|
+
...obj,
|
|
343
|
+
});
|
|
344
|
+
export const GetTrustStoreCertificateRequestFilterSensitiveLog = (obj) => ({
|
|
345
|
+
...obj,
|
|
346
|
+
});
|
|
347
|
+
export const CertificateFilterSensitiveLog = (obj) => ({
|
|
348
|
+
...obj,
|
|
349
|
+
});
|
|
350
|
+
export const GetTrustStoreCertificateResponseFilterSensitiveLog = (obj) => ({
|
|
351
|
+
...obj,
|
|
352
|
+
});
|
|
353
|
+
export const GetUserSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
354
|
+
...obj,
|
|
355
|
+
});
|
|
356
|
+
export const UserSettingsFilterSensitiveLog = (obj) => ({
|
|
357
|
+
...obj,
|
|
358
|
+
});
|
|
359
|
+
export const GetUserSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
360
|
+
...obj,
|
|
361
|
+
});
|
|
362
|
+
export const ListBrowserSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
363
|
+
...obj,
|
|
364
|
+
});
|
|
365
|
+
export const BrowserSettingsSummaryFilterSensitiveLog = (obj) => ({
|
|
366
|
+
...obj,
|
|
367
|
+
});
|
|
368
|
+
export const ListBrowserSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
369
|
+
...obj,
|
|
370
|
+
});
|
|
371
|
+
export const ListIdentityProvidersRequestFilterSensitiveLog = (obj) => ({
|
|
372
|
+
...obj,
|
|
373
|
+
});
|
|
374
|
+
export const IdentityProviderSummaryFilterSensitiveLog = (obj) => ({
|
|
375
|
+
...obj,
|
|
376
|
+
...(obj.identityProviderName && { identityProviderName: SENSITIVE_STRING }),
|
|
377
|
+
});
|
|
378
|
+
export const ListIdentityProvidersResponseFilterSensitiveLog = (obj) => ({
|
|
379
|
+
...obj,
|
|
380
|
+
...(obj.identityProviders && {
|
|
381
|
+
identityProviders: obj.identityProviders.map((item) => IdentityProviderSummaryFilterSensitiveLog(item)),
|
|
382
|
+
}),
|
|
383
|
+
});
|
|
384
|
+
export const ListNetworkSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
385
|
+
...obj,
|
|
386
|
+
});
|
|
387
|
+
export const NetworkSettingsSummaryFilterSensitiveLog = (obj) => ({
|
|
388
|
+
...obj,
|
|
389
|
+
});
|
|
390
|
+
export const ListNetworkSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
391
|
+
...obj,
|
|
392
|
+
});
|
|
393
|
+
export const ListPortalsRequestFilterSensitiveLog = (obj) => ({
|
|
394
|
+
...obj,
|
|
395
|
+
});
|
|
396
|
+
export const PortalSummaryFilterSensitiveLog = (obj) => ({
|
|
397
|
+
...obj,
|
|
398
|
+
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
399
|
+
});
|
|
400
|
+
export const ListPortalsResponseFilterSensitiveLog = (obj) => ({
|
|
401
|
+
...obj,
|
|
402
|
+
...(obj.portals && { portals: obj.portals.map((item) => PortalSummaryFilterSensitiveLog(item)) }),
|
|
403
|
+
});
|
|
404
|
+
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
405
|
+
...obj,
|
|
406
|
+
});
|
|
407
|
+
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
408
|
+
...obj,
|
|
409
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
410
|
+
});
|
|
411
|
+
export const ListTrustStoreCertificatesRequestFilterSensitiveLog = (obj) => ({
|
|
412
|
+
...obj,
|
|
413
|
+
});
|
|
414
|
+
export const CertificateSummaryFilterSensitiveLog = (obj) => ({
|
|
415
|
+
...obj,
|
|
416
|
+
});
|
|
417
|
+
export const ListTrustStoreCertificatesResponseFilterSensitiveLog = (obj) => ({
|
|
418
|
+
...obj,
|
|
419
|
+
});
|
|
420
|
+
export const ListTrustStoresRequestFilterSensitiveLog = (obj) => ({
|
|
421
|
+
...obj,
|
|
422
|
+
});
|
|
423
|
+
export const TrustStoreSummaryFilterSensitiveLog = (obj) => ({
|
|
424
|
+
...obj,
|
|
425
|
+
});
|
|
426
|
+
export const ListTrustStoresResponseFilterSensitiveLog = (obj) => ({
|
|
427
|
+
...obj,
|
|
428
|
+
});
|
|
429
|
+
export const ListUserSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
430
|
+
...obj,
|
|
431
|
+
});
|
|
432
|
+
export const UserSettingsSummaryFilterSensitiveLog = (obj) => ({
|
|
433
|
+
...obj,
|
|
434
|
+
});
|
|
435
|
+
export const ListUserSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
436
|
+
...obj,
|
|
437
|
+
});
|
|
438
|
+
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
439
|
+
...obj,
|
|
440
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
441
|
+
});
|
|
442
|
+
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
443
|
+
...obj,
|
|
444
|
+
});
|
|
445
|
+
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
446
|
+
...obj,
|
|
447
|
+
...(obj.tagKeys && { tagKeys: SENSITIVE_STRING }),
|
|
448
|
+
});
|
|
449
|
+
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
450
|
+
...obj,
|
|
451
|
+
});
|
|
452
|
+
export const UpdateBrowserSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
453
|
+
...obj,
|
|
454
|
+
...(obj.browserPolicy && { browserPolicy: SENSITIVE_STRING }),
|
|
455
|
+
});
|
|
456
|
+
export const UpdateBrowserSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
457
|
+
...obj,
|
|
458
|
+
...(obj.browserSettings && { browserSettings: BrowserSettingsFilterSensitiveLog(obj.browserSettings) }),
|
|
459
|
+
});
|
|
460
|
+
export const UpdateIdentityProviderRequestFilterSensitiveLog = (obj) => ({
|
|
461
|
+
...obj,
|
|
462
|
+
...(obj.identityProviderName && { identityProviderName: SENSITIVE_STRING }),
|
|
463
|
+
...(obj.identityProviderDetails && { identityProviderDetails: SENSITIVE_STRING }),
|
|
464
|
+
});
|
|
465
|
+
export const UpdateIdentityProviderResponseFilterSensitiveLog = (obj) => ({
|
|
466
|
+
...obj,
|
|
467
|
+
...(obj.identityProvider && { identityProvider: IdentityProviderFilterSensitiveLog(obj.identityProvider) }),
|
|
468
|
+
});
|
|
469
|
+
export const UpdateNetworkSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
470
|
+
...obj,
|
|
471
|
+
});
|
|
472
|
+
export const UpdateNetworkSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
473
|
+
...obj,
|
|
474
|
+
});
|
|
475
|
+
export const UpdatePortalRequestFilterSensitiveLog = (obj) => ({
|
|
476
|
+
...obj,
|
|
477
|
+
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
478
|
+
});
|
|
479
|
+
export const UpdatePortalResponseFilterSensitiveLog = (obj) => ({
|
|
480
|
+
...obj,
|
|
481
|
+
...(obj.portal && { portal: PortalFilterSensitiveLog(obj.portal) }),
|
|
482
|
+
});
|
|
483
|
+
export const UpdateTrustStoreRequestFilterSensitiveLog = (obj) => ({
|
|
484
|
+
...obj,
|
|
485
|
+
});
|
|
486
|
+
export const UpdateTrustStoreResponseFilterSensitiveLog = (obj) => ({
|
|
487
|
+
...obj,
|
|
488
|
+
});
|
|
489
|
+
export const UpdateUserSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
490
|
+
...obj,
|
|
491
|
+
});
|
|
492
|
+
export const UpdateUserSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
493
|
+
...obj,
|
|
494
|
+
});
|