@aws-sdk/client-workspaces-web 3.395.0 → 3.401.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/dist-cjs/commands/GetUserSettingsCommand.js +2 -1
- package/dist-cjs/commands/ListUserSettingsCommand.js +2 -1
- package/dist-cjs/commands/UpdateUserSettingsCommand.js +3 -2
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +136 -98
- package/dist-cjs/protocols/Aws_restJson1.js +4 -0
- package/dist-cjs/runtimeExtensions.js +5 -5
- package/dist-es/commands/GetUserSettingsCommand.js +2 -1
- package/dist-es/commands/ListUserSettingsCommand.js +2 -1
- package/dist-es/commands/UpdateUserSettingsCommand.js +3 -2
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +100 -70
- package/dist-es/protocols/Aws_restJson1.js +4 -0
- package/dist-es/runtimeExtensions.js +5 -5
- package/dist-types/commands/CreateUserSettingsCommand.d.ts +20 -0
- package/dist-types/commands/GetPortalCommand.d.ts +1 -1
- package/dist-types/commands/GetTrustStoreCertificateCommand.d.ts +1 -1
- package/dist-types/commands/GetTrustStoreCommand.d.ts +1 -1
- package/dist-types/commands/GetUserSettingsCommand.d.ts +16 -0
- package/dist-types/commands/ListBrowserSettingsCommand.d.ts +1 -1
- package/dist-types/commands/ListIdentityProvidersCommand.d.ts +1 -1
- package/dist-types/commands/ListIpAccessSettingsCommand.d.ts +1 -1
- package/dist-types/commands/ListNetworkSettingsCommand.d.ts +1 -1
- package/dist-types/commands/ListPortalsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrustStoreCertificatesCommand.d.ts +1 -1
- package/dist-types/commands/ListUserAccessLoggingSettingsCommand.d.ts +1 -1
- package/dist-types/commands/ListUserSettingsCommand.d.ts +17 -1
- package/dist-types/commands/UpdatePortalCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUserSettingsCommand.d.ts +32 -0
- package/dist-types/extensionConfiguration.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +1375 -1279
- package/dist-types/runtimeExtensions.d.ts +2 -2
- package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +403 -369
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -2
- package/package.json +29 -29
- package/dist-types/clientConfiguration.d.ts +0 -6
- package/dist-types/ts3.4/clientConfiguration.d.ts +0 -3
- /package/dist-cjs/{clientConfiguration.js → extensionConfiguration.js} +0 -0
- /package/dist-es/{clientConfiguration.js → extensionConfiguration.js} +0 -0
|
@@ -116,10 +116,6 @@ export const IdentityProviderType = {
|
|
|
116
116
|
SAML: "SAML",
|
|
117
117
|
SignInWithApple: "SignInWithApple",
|
|
118
118
|
};
|
|
119
|
-
export const EnabledType = {
|
|
120
|
-
DISABLED: "Disabled",
|
|
121
|
-
ENABLED: "Enabled",
|
|
122
|
-
};
|
|
123
119
|
export const BrowserType = {
|
|
124
120
|
CHROME: "Chrome",
|
|
125
121
|
};
|
|
@@ -144,6 +140,10 @@ export class TooManyTagsException extends __BaseException {
|
|
|
144
140
|
this.resourceName = opts.resourceName;
|
|
145
141
|
}
|
|
146
142
|
}
|
|
143
|
+
export const EnabledType = {
|
|
144
|
+
DISABLED: "Disabled",
|
|
145
|
+
ENABLED: "Enabled",
|
|
146
|
+
};
|
|
147
147
|
export const TagFilterSensitiveLog = (obj) => ({
|
|
148
148
|
...obj,
|
|
149
149
|
...(obj.Key && { Key: SENSITIVE_STRING }),
|
|
@@ -154,61 +154,67 @@ export const CreateBrowserSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
|
154
154
|
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
155
155
|
...(obj.browserPolicy && { browserPolicy: SENSITIVE_STRING }),
|
|
156
156
|
});
|
|
157
|
-
export const
|
|
158
|
-
...obj,
|
|
159
|
-
...(obj.identityProviderName && { identityProviderName: SENSITIVE_STRING }),
|
|
160
|
-
...(obj.identityProviderDetails && { identityProviderDetails: SENSITIVE_STRING }),
|
|
161
|
-
});
|
|
162
|
-
export const IpRuleFilterSensitiveLog = (obj) => ({
|
|
157
|
+
export const BrowserSettingsFilterSensitiveLog = (obj) => ({
|
|
163
158
|
...obj,
|
|
164
|
-
...(obj.
|
|
165
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
159
|
+
...(obj.browserPolicy && { browserPolicy: SENSITIVE_STRING }),
|
|
166
160
|
});
|
|
167
|
-
export const
|
|
161
|
+
export const GetBrowserSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
168
162
|
...obj,
|
|
169
|
-
...(obj.
|
|
170
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
171
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
172
|
-
...(obj.ipRules && { ipRules: SENSITIVE_STRING }),
|
|
163
|
+
...(obj.browserSettings && { browserSettings: BrowserSettingsFilterSensitiveLog(obj.browserSettings) }),
|
|
173
164
|
});
|
|
174
|
-
export const
|
|
165
|
+
export const UpdateBrowserSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
175
166
|
...obj,
|
|
176
|
-
...(obj.
|
|
167
|
+
...(obj.browserPolicy && { browserPolicy: SENSITIVE_STRING }),
|
|
177
168
|
});
|
|
178
|
-
export const
|
|
169
|
+
export const UpdateBrowserSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
179
170
|
...obj,
|
|
180
|
-
...(obj.
|
|
181
|
-
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
171
|
+
...(obj.browserSettings && { browserSettings: BrowserSettingsFilterSensitiveLog(obj.browserSettings) }),
|
|
182
172
|
});
|
|
183
|
-
export const
|
|
173
|
+
export const CreateIdentityProviderRequestFilterSensitiveLog = (obj) => ({
|
|
184
174
|
...obj,
|
|
185
|
-
...(obj.
|
|
175
|
+
...(obj.identityProviderName && { identityProviderName: SENSITIVE_STRING }),
|
|
176
|
+
...(obj.identityProviderDetails && { identityProviderDetails: SENSITIVE_STRING }),
|
|
186
177
|
});
|
|
187
|
-
export const
|
|
178
|
+
export const IdentityProviderFilterSensitiveLog = (obj) => ({
|
|
188
179
|
...obj,
|
|
189
|
-
...(obj.
|
|
180
|
+
...(obj.identityProviderName && { identityProviderName: SENSITIVE_STRING }),
|
|
181
|
+
...(obj.identityProviderDetails && { identityProviderDetails: SENSITIVE_STRING }),
|
|
190
182
|
});
|
|
191
|
-
export const
|
|
183
|
+
export const GetIdentityProviderResponseFilterSensitiveLog = (obj) => ({
|
|
192
184
|
...obj,
|
|
193
|
-
...(obj.
|
|
185
|
+
...(obj.identityProvider && { identityProvider: IdentityProviderFilterSensitiveLog(obj.identityProvider) }),
|
|
194
186
|
});
|
|
195
|
-
export const
|
|
187
|
+
export const IdentityProviderSummaryFilterSensitiveLog = (obj) => ({
|
|
196
188
|
...obj,
|
|
197
|
-
...(obj.
|
|
189
|
+
...(obj.identityProviderName && { identityProviderName: SENSITIVE_STRING }),
|
|
198
190
|
});
|
|
199
|
-
export const
|
|
191
|
+
export const ListIdentityProvidersResponseFilterSensitiveLog = (obj) => ({
|
|
200
192
|
...obj,
|
|
201
|
-
...(obj.
|
|
193
|
+
...(obj.identityProviders && {
|
|
194
|
+
identityProviders: obj.identityProviders.map((item) => IdentityProviderSummaryFilterSensitiveLog(item)),
|
|
195
|
+
}),
|
|
202
196
|
});
|
|
203
|
-
export const
|
|
197
|
+
export const UpdateIdentityProviderRequestFilterSensitiveLog = (obj) => ({
|
|
204
198
|
...obj,
|
|
205
199
|
...(obj.identityProviderName && { identityProviderName: SENSITIVE_STRING }),
|
|
206
200
|
...(obj.identityProviderDetails && { identityProviderDetails: SENSITIVE_STRING }),
|
|
207
201
|
});
|
|
208
|
-
export const
|
|
202
|
+
export const UpdateIdentityProviderResponseFilterSensitiveLog = (obj) => ({
|
|
209
203
|
...obj,
|
|
210
204
|
...(obj.identityProvider && { identityProvider: IdentityProviderFilterSensitiveLog(obj.identityProvider) }),
|
|
211
205
|
});
|
|
206
|
+
export const IpRuleFilterSensitiveLog = (obj) => ({
|
|
207
|
+
...obj,
|
|
208
|
+
...(obj.ipRange && { ipRange: SENSITIVE_STRING }),
|
|
209
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
210
|
+
});
|
|
211
|
+
export const CreateIpAccessSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
212
|
+
...obj,
|
|
213
|
+
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
214
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
215
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
216
|
+
...(obj.ipRules && { ipRules: SENSITIVE_STRING }),
|
|
217
|
+
});
|
|
212
218
|
export const IpAccessSettingsFilterSensitiveLog = (obj) => ({
|
|
213
219
|
...obj,
|
|
214
220
|
...(obj.ipRules && { ipRules: SENSITIVE_STRING }),
|
|
@@ -219,34 +225,47 @@ export const GetIpAccessSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
|
219
225
|
...obj,
|
|
220
226
|
...(obj.ipAccessSettings && { ipAccessSettings: IpAccessSettingsFilterSensitiveLog(obj.ipAccessSettings) }),
|
|
221
227
|
});
|
|
222
|
-
export const
|
|
228
|
+
export const IpAccessSettingsSummaryFilterSensitiveLog = (obj) => ({
|
|
223
229
|
...obj,
|
|
224
230
|
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
231
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
225
232
|
});
|
|
226
|
-
export const
|
|
233
|
+
export const ListIpAccessSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
227
234
|
...obj,
|
|
228
|
-
...(obj.
|
|
235
|
+
...(obj.ipAccessSettings && {
|
|
236
|
+
ipAccessSettings: obj.ipAccessSettings.map((item) => IpAccessSettingsSummaryFilterSensitiveLog(item)),
|
|
237
|
+
}),
|
|
229
238
|
});
|
|
230
|
-
export const
|
|
239
|
+
export const UpdateIpAccessSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
231
240
|
...obj,
|
|
232
|
-
...(obj.
|
|
241
|
+
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
242
|
+
...(obj.description && { description: SENSITIVE_STRING }),
|
|
243
|
+
...(obj.ipRules && { ipRules: SENSITIVE_STRING }),
|
|
233
244
|
});
|
|
234
|
-
export const
|
|
245
|
+
export const UpdateIpAccessSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
235
246
|
...obj,
|
|
236
|
-
...(obj.
|
|
237
|
-
identityProviders: obj.identityProviders.map((item) => IdentityProviderSummaryFilterSensitiveLog(item)),
|
|
238
|
-
}),
|
|
247
|
+
...(obj.ipAccessSettings && { ipAccessSettings: IpAccessSettingsFilterSensitiveLog(obj.ipAccessSettings) }),
|
|
239
248
|
});
|
|
240
|
-
export const
|
|
249
|
+
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
250
|
+
...obj,
|
|
251
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
252
|
+
});
|
|
253
|
+
export const CreateNetworkSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
254
|
+
...obj,
|
|
255
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
256
|
+
});
|
|
257
|
+
export const CreatePortalRequestFilterSensitiveLog = (obj) => ({
|
|
241
258
|
...obj,
|
|
242
259
|
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
243
|
-
...(obj.
|
|
260
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
244
261
|
});
|
|
245
|
-
export const
|
|
262
|
+
export const PortalFilterSensitiveLog = (obj) => ({
|
|
246
263
|
...obj,
|
|
247
|
-
...(obj.
|
|
248
|
-
|
|
249
|
-
|
|
264
|
+
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
265
|
+
});
|
|
266
|
+
export const GetPortalResponseFilterSensitiveLog = (obj) => ({
|
|
267
|
+
...obj,
|
|
268
|
+
...(obj.portal && { portal: PortalFilterSensitiveLog(obj.portal) }),
|
|
250
269
|
});
|
|
251
270
|
export const PortalSummaryFilterSensitiveLog = (obj) => ({
|
|
252
271
|
...obj,
|
|
@@ -256,50 +275,61 @@ export const ListPortalsResponseFilterSensitiveLog = (obj) => ({
|
|
|
256
275
|
...obj,
|
|
257
276
|
...(obj.portals && { portals: obj.portals.map((item) => PortalSummaryFilterSensitiveLog(item)) }),
|
|
258
277
|
});
|
|
259
|
-
export const
|
|
278
|
+
export const UpdatePortalRequestFilterSensitiveLog = (obj) => ({
|
|
260
279
|
...obj,
|
|
261
|
-
...(obj.
|
|
280
|
+
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
281
|
+
});
|
|
282
|
+
export const UpdatePortalResponseFilterSensitiveLog = (obj) => ({
|
|
283
|
+
...obj,
|
|
284
|
+
...(obj.portal && { portal: PortalFilterSensitiveLog(obj.portal) }),
|
|
262
285
|
});
|
|
263
286
|
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
264
287
|
...obj,
|
|
265
288
|
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
266
289
|
});
|
|
290
|
+
export const CreateTrustStoreRequestFilterSensitiveLog = (obj) => ({
|
|
291
|
+
...obj,
|
|
292
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
293
|
+
});
|
|
267
294
|
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
268
295
|
...obj,
|
|
269
296
|
...(obj.tagKeys && { tagKeys: SENSITIVE_STRING }),
|
|
270
297
|
});
|
|
271
|
-
export const
|
|
298
|
+
export const CreateUserAccessLoggingSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
272
299
|
...obj,
|
|
273
|
-
...(obj.
|
|
300
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
274
301
|
});
|
|
275
|
-
export const
|
|
302
|
+
export const CookieSynchronizationConfigurationFilterSensitiveLog = (obj) => ({
|
|
276
303
|
...obj,
|
|
277
|
-
...(obj.browserSettings && { browserSettings: BrowserSettingsFilterSensitiveLog(obj.browserSettings) }),
|
|
278
304
|
});
|
|
279
|
-
export const
|
|
305
|
+
export const CreateUserSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
280
306
|
...obj,
|
|
281
|
-
...(obj.
|
|
282
|
-
...(obj.
|
|
307
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
308
|
+
...(obj.cookieSynchronizationConfiguration && { cookieSynchronizationConfiguration: SENSITIVE_STRING }),
|
|
283
309
|
});
|
|
284
|
-
export const
|
|
310
|
+
export const UserSettingsFilterSensitiveLog = (obj) => ({
|
|
285
311
|
...obj,
|
|
286
|
-
...(obj.
|
|
312
|
+
...(obj.cookieSynchronizationConfiguration && { cookieSynchronizationConfiguration: SENSITIVE_STRING }),
|
|
287
313
|
});
|
|
288
|
-
export const
|
|
314
|
+
export const GetUserSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
289
315
|
...obj,
|
|
290
|
-
...(obj.
|
|
291
|
-
...(obj.description && { description: SENSITIVE_STRING }),
|
|
292
|
-
...(obj.ipRules && { ipRules: SENSITIVE_STRING }),
|
|
316
|
+
...(obj.userSettings && { userSettings: UserSettingsFilterSensitiveLog(obj.userSettings) }),
|
|
293
317
|
});
|
|
294
|
-
export const
|
|
318
|
+
export const UserSettingsSummaryFilterSensitiveLog = (obj) => ({
|
|
295
319
|
...obj,
|
|
296
|
-
...(obj.
|
|
320
|
+
...(obj.cookieSynchronizationConfiguration && { cookieSynchronizationConfiguration: SENSITIVE_STRING }),
|
|
297
321
|
});
|
|
298
|
-
export const
|
|
322
|
+
export const ListUserSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
299
323
|
...obj,
|
|
300
|
-
...(obj.
|
|
324
|
+
...(obj.userSettings && {
|
|
325
|
+
userSettings: obj.userSettings.map((item) => UserSettingsSummaryFilterSensitiveLog(item)),
|
|
326
|
+
}),
|
|
301
327
|
});
|
|
302
|
-
export const
|
|
328
|
+
export const UpdateUserSettingsRequestFilterSensitiveLog = (obj) => ({
|
|
303
329
|
...obj,
|
|
304
|
-
...(obj.
|
|
330
|
+
...(obj.cookieSynchronizationConfiguration && { cookieSynchronizationConfiguration: SENSITIVE_STRING }),
|
|
331
|
+
});
|
|
332
|
+
export const UpdateUserSettingsResponseFilterSensitiveLog = (obj) => ({
|
|
333
|
+
...obj,
|
|
334
|
+
...(obj.userSettings && { userSettings: UserSettingsFilterSensitiveLog(obj.userSettings) }),
|
|
305
335
|
});
|
|
@@ -302,8 +302,11 @@ export const se_CreateUserSettingsCommand = async (input, context) => {
|
|
|
302
302
|
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/userSettings";
|
|
303
303
|
let body;
|
|
304
304
|
body = JSON.stringify(take(input, {
|
|
305
|
+
additionalEncryptionContext: (_) => _json(_),
|
|
305
306
|
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
307
|
+
cookieSynchronizationConfiguration: (_) => _json(_),
|
|
306
308
|
copyAllowed: [],
|
|
309
|
+
customerManagedKey: [],
|
|
307
310
|
disconnectTimeoutInMinutes: [],
|
|
308
311
|
downloadAllowed: [],
|
|
309
312
|
idleDisconnectTimeoutInMinutes: [],
|
|
@@ -1129,6 +1132,7 @@ export const se_UpdateUserSettingsCommand = async (input, context) => {
|
|
|
1129
1132
|
let body;
|
|
1130
1133
|
body = JSON.stringify(take(input, {
|
|
1131
1134
|
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
1135
|
+
cookieSynchronizationConfiguration: (_) => _json(_),
|
|
1132
1136
|
copyAllowed: [],
|
|
1133
1137
|
disconnectTimeoutInMinutes: [],
|
|
1134
1138
|
downloadAllowed: [],
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client";
|
|
2
2
|
const asPartial = (t) => t;
|
|
3
3
|
export const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
4
|
-
const
|
|
5
|
-
...asPartial(
|
|
4
|
+
const extensionConfiguration = {
|
|
5
|
+
...asPartial(getDefaultExtensionConfiguration(runtimeConfig)),
|
|
6
6
|
};
|
|
7
|
-
extensions.forEach((extension) => extension.
|
|
7
|
+
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
8
8
|
return {
|
|
9
9
|
...runtimeConfig,
|
|
10
|
-
...resolveDefaultRuntimeConfig(
|
|
10
|
+
...resolveDefaultRuntimeConfig(extensionConfiguration),
|
|
11
11
|
};
|
|
12
12
|
};
|
|
@@ -47,6 +47,26 @@ export interface CreateUserSettingsCommandOutput extends CreateUserSettingsRespo
|
|
|
47
47
|
* disconnectTimeoutInMinutes: Number("int"),
|
|
48
48
|
* idleDisconnectTimeoutInMinutes: Number("int"),
|
|
49
49
|
* clientToken: "STRING_VALUE",
|
|
50
|
+
* cookieSynchronizationConfiguration: { // CookieSynchronizationConfiguration
|
|
51
|
+
* allowlist: [ // CookieSpecifications // required
|
|
52
|
+
* { // CookieSpecification
|
|
53
|
+
* domain: "STRING_VALUE", // required
|
|
54
|
+
* name: "STRING_VALUE",
|
|
55
|
+
* path: "STRING_VALUE",
|
|
56
|
+
* },
|
|
57
|
+
* ],
|
|
58
|
+
* blocklist: [
|
|
59
|
+
* {
|
|
60
|
+
* domain: "STRING_VALUE", // required
|
|
61
|
+
* name: "STRING_VALUE",
|
|
62
|
+
* path: "STRING_VALUE",
|
|
63
|
+
* },
|
|
64
|
+
* ],
|
|
65
|
+
* },
|
|
66
|
+
* customerManagedKey: "STRING_VALUE",
|
|
67
|
+
* additionalEncryptionContext: { // EncryptionContextMap
|
|
68
|
+
* "<keys>": "STRING_VALUE",
|
|
69
|
+
* },
|
|
50
70
|
* };
|
|
51
71
|
* const command = new CreateUserSettingsCommand(input);
|
|
52
72
|
* const response = await client.send(command);
|
|
@@ -37,7 +37,7 @@ export interface GetPortalCommandOutput extends GetPortalResponse, __MetadataBea
|
|
|
37
37
|
* const response = await client.send(command);
|
|
38
38
|
* // { // GetPortalResponse
|
|
39
39
|
* // portal: { // Portal
|
|
40
|
-
* // portalArn: "STRING_VALUE",
|
|
40
|
+
* // portalArn: "STRING_VALUE", // required
|
|
41
41
|
* // rendererType: "STRING_VALUE",
|
|
42
42
|
* // browserType: "STRING_VALUE",
|
|
43
43
|
* // portalStatus: "STRING_VALUE",
|
|
@@ -37,7 +37,7 @@ export interface GetTrustStoreCertificateCommandOutput extends GetTrustStoreCert
|
|
|
37
37
|
* const command = new GetTrustStoreCertificateCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
39
|
* // { // GetTrustStoreCertificateResponse
|
|
40
|
-
* // trustStoreArn: "STRING_VALUE",
|
|
40
|
+
* // trustStoreArn: "STRING_VALUE", // required
|
|
41
41
|
* // certificate: { // Certificate
|
|
42
42
|
* // thumbprint: "STRING_VALUE",
|
|
43
43
|
* // subject: "STRING_VALUE",
|
|
@@ -40,7 +40,7 @@ export interface GetTrustStoreCommandOutput extends GetTrustStoreResponse, __Met
|
|
|
40
40
|
* // associatedPortalArns: [ // ArnList
|
|
41
41
|
* // "STRING_VALUE",
|
|
42
42
|
* // ],
|
|
43
|
-
* // trustStoreArn: "STRING_VALUE",
|
|
43
|
+
* // trustStoreArn: "STRING_VALUE", // required
|
|
44
44
|
* // },
|
|
45
45
|
* // };
|
|
46
46
|
*
|
|
@@ -48,6 +48,22 @@ export interface GetUserSettingsCommandOutput extends GetUserSettingsResponse, _
|
|
|
48
48
|
* // printAllowed: "STRING_VALUE",
|
|
49
49
|
* // disconnectTimeoutInMinutes: Number("int"),
|
|
50
50
|
* // idleDisconnectTimeoutInMinutes: Number("int"),
|
|
51
|
+
* // cookieSynchronizationConfiguration: { // CookieSynchronizationConfiguration
|
|
52
|
+
* // allowlist: [ // CookieSpecifications // required
|
|
53
|
+
* // { // CookieSpecification
|
|
54
|
+
* // domain: "STRING_VALUE", // required
|
|
55
|
+
* // name: "STRING_VALUE",
|
|
56
|
+
* // path: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // blocklist: [
|
|
60
|
+
* // {
|
|
61
|
+
* // domain: "STRING_VALUE", // required
|
|
62
|
+
* // name: "STRING_VALUE",
|
|
63
|
+
* // path: "STRING_VALUE",
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // },
|
|
51
67
|
* // },
|
|
52
68
|
* // };
|
|
53
69
|
*
|
|
@@ -39,7 +39,7 @@ export interface ListBrowserSettingsCommandOutput extends ListBrowserSettingsRes
|
|
|
39
39
|
* // { // ListBrowserSettingsResponse
|
|
40
40
|
* // browserSettings: [ // BrowserSettingsList
|
|
41
41
|
* // { // BrowserSettingsSummary
|
|
42
|
-
* // browserSettingsArn: "STRING_VALUE",
|
|
42
|
+
* // browserSettingsArn: "STRING_VALUE", // required
|
|
43
43
|
* // },
|
|
44
44
|
* // ],
|
|
45
45
|
* // nextToken: "STRING_VALUE",
|
|
@@ -41,7 +41,7 @@ export interface ListIdentityProvidersCommandOutput extends ListIdentityProvider
|
|
|
41
41
|
* // nextToken: "STRING_VALUE",
|
|
42
42
|
* // identityProviders: [ // IdentityProviderList
|
|
43
43
|
* // { // IdentityProviderSummary
|
|
44
|
-
* // identityProviderArn: "STRING_VALUE",
|
|
44
|
+
* // identityProviderArn: "STRING_VALUE", // required
|
|
45
45
|
* // identityProviderName: "STRING_VALUE",
|
|
46
46
|
* // identityProviderType: "STRING_VALUE",
|
|
47
47
|
* // },
|
|
@@ -39,7 +39,7 @@ export interface ListIpAccessSettingsCommandOutput extends ListIpAccessSettingsR
|
|
|
39
39
|
* // { // ListIpAccessSettingsResponse
|
|
40
40
|
* // ipAccessSettings: [ // IpAccessSettingsList
|
|
41
41
|
* // { // IpAccessSettingsSummary
|
|
42
|
-
* // ipAccessSettingsArn: "STRING_VALUE",
|
|
42
|
+
* // ipAccessSettingsArn: "STRING_VALUE", // required
|
|
43
43
|
* // displayName: "STRING_VALUE",
|
|
44
44
|
* // description: "STRING_VALUE",
|
|
45
45
|
* // creationDate: new Date("TIMESTAMP"),
|
|
@@ -39,7 +39,7 @@ export interface ListNetworkSettingsCommandOutput extends ListNetworkSettingsRes
|
|
|
39
39
|
* // { // ListNetworkSettingsResponse
|
|
40
40
|
* // networkSettings: [ // NetworkSettingsList
|
|
41
41
|
* // { // NetworkSettingsSummary
|
|
42
|
-
* // networkSettingsArn: "STRING_VALUE",
|
|
42
|
+
* // networkSettingsArn: "STRING_VALUE", // required
|
|
43
43
|
* // vpcId: "STRING_VALUE",
|
|
44
44
|
* // },
|
|
45
45
|
* // ],
|
|
@@ -39,7 +39,7 @@ export interface ListPortalsCommandOutput extends ListPortalsResponse, __Metadat
|
|
|
39
39
|
* // { // ListPortalsResponse
|
|
40
40
|
* // portals: [ // PortalList
|
|
41
41
|
* // { // PortalSummary
|
|
42
|
-
* // portalArn: "STRING_VALUE",
|
|
42
|
+
* // portalArn: "STRING_VALUE", // required
|
|
43
43
|
* // rendererType: "STRING_VALUE",
|
|
44
44
|
* // browserType: "STRING_VALUE",
|
|
45
45
|
* // portalStatus: "STRING_VALUE",
|
|
@@ -47,7 +47,7 @@ export interface ListTrustStoreCertificatesCommandOutput extends ListTrustStoreC
|
|
|
47
47
|
* // notValidAfter: new Date("TIMESTAMP"),
|
|
48
48
|
* // },
|
|
49
49
|
* // ],
|
|
50
|
-
* // trustStoreArn: "STRING_VALUE",
|
|
50
|
+
* // trustStoreArn: "STRING_VALUE", // required
|
|
51
51
|
* // nextToken: "STRING_VALUE",
|
|
52
52
|
* // };
|
|
53
53
|
*
|
|
@@ -39,7 +39,7 @@ export interface ListUserAccessLoggingSettingsCommandOutput extends ListUserAcce
|
|
|
39
39
|
* // { // ListUserAccessLoggingSettingsResponse
|
|
40
40
|
* // userAccessLoggingSettings: [ // UserAccessLoggingSettingsList
|
|
41
41
|
* // { // UserAccessLoggingSettingsSummary
|
|
42
|
-
* // userAccessLoggingSettingsArn: "STRING_VALUE",
|
|
42
|
+
* // userAccessLoggingSettingsArn: "STRING_VALUE", // required
|
|
43
43
|
* // kinesisStreamArn: "STRING_VALUE",
|
|
44
44
|
* // },
|
|
45
45
|
* // ],
|
|
@@ -39,7 +39,7 @@ export interface ListUserSettingsCommandOutput extends ListUserSettingsResponse,
|
|
|
39
39
|
* // { // ListUserSettingsResponse
|
|
40
40
|
* // userSettings: [ // UserSettingsList
|
|
41
41
|
* // { // UserSettingsSummary
|
|
42
|
-
* // userSettingsArn: "STRING_VALUE",
|
|
42
|
+
* // userSettingsArn: "STRING_VALUE", // required
|
|
43
43
|
* // copyAllowed: "STRING_VALUE",
|
|
44
44
|
* // pasteAllowed: "STRING_VALUE",
|
|
45
45
|
* // downloadAllowed: "STRING_VALUE",
|
|
@@ -47,6 +47,22 @@ export interface ListUserSettingsCommandOutput extends ListUserSettingsResponse,
|
|
|
47
47
|
* // printAllowed: "STRING_VALUE",
|
|
48
48
|
* // disconnectTimeoutInMinutes: Number("int"),
|
|
49
49
|
* // idleDisconnectTimeoutInMinutes: Number("int"),
|
|
50
|
+
* // cookieSynchronizationConfiguration: { // CookieSynchronizationConfiguration
|
|
51
|
+
* // allowlist: [ // CookieSpecifications // required
|
|
52
|
+
* // { // CookieSpecification
|
|
53
|
+
* // domain: "STRING_VALUE", // required
|
|
54
|
+
* // name: "STRING_VALUE",
|
|
55
|
+
* // path: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // blocklist: [
|
|
59
|
+
* // {
|
|
60
|
+
* // domain: "STRING_VALUE", // required
|
|
61
|
+
* // name: "STRING_VALUE",
|
|
62
|
+
* // path: "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // ],
|
|
65
|
+
* // },
|
|
50
66
|
* // },
|
|
51
67
|
* // ],
|
|
52
68
|
* // nextToken: "STRING_VALUE",
|
|
@@ -39,7 +39,7 @@ export interface UpdatePortalCommandOutput extends UpdatePortalResponse, __Metad
|
|
|
39
39
|
* const response = await client.send(command);
|
|
40
40
|
* // { // UpdatePortalResponse
|
|
41
41
|
* // portal: { // Portal
|
|
42
|
-
* // portalArn: "STRING_VALUE",
|
|
42
|
+
* // portalArn: "STRING_VALUE", // required
|
|
43
43
|
* // rendererType: "STRING_VALUE",
|
|
44
44
|
* // browserType: "STRING_VALUE",
|
|
45
45
|
* // portalStatus: "STRING_VALUE",
|
|
@@ -40,6 +40,22 @@ export interface UpdateUserSettingsCommandOutput extends UpdateUserSettingsRespo
|
|
|
40
40
|
* disconnectTimeoutInMinutes: Number("int"),
|
|
41
41
|
* idleDisconnectTimeoutInMinutes: Number("int"),
|
|
42
42
|
* clientToken: "STRING_VALUE",
|
|
43
|
+
* cookieSynchronizationConfiguration: { // CookieSynchronizationConfiguration
|
|
44
|
+
* allowlist: [ // CookieSpecifications // required
|
|
45
|
+
* { // CookieSpecification
|
|
46
|
+
* domain: "STRING_VALUE", // required
|
|
47
|
+
* name: "STRING_VALUE",
|
|
48
|
+
* path: "STRING_VALUE",
|
|
49
|
+
* },
|
|
50
|
+
* ],
|
|
51
|
+
* blocklist: [
|
|
52
|
+
* {
|
|
53
|
+
* domain: "STRING_VALUE", // required
|
|
54
|
+
* name: "STRING_VALUE",
|
|
55
|
+
* path: "STRING_VALUE",
|
|
56
|
+
* },
|
|
57
|
+
* ],
|
|
58
|
+
* },
|
|
43
59
|
* };
|
|
44
60
|
* const command = new UpdateUserSettingsCommand(input);
|
|
45
61
|
* const response = await client.send(command);
|
|
@@ -56,6 +72,22 @@ export interface UpdateUserSettingsCommandOutput extends UpdateUserSettingsRespo
|
|
|
56
72
|
* // printAllowed: "STRING_VALUE",
|
|
57
73
|
* // disconnectTimeoutInMinutes: Number("int"),
|
|
58
74
|
* // idleDisconnectTimeoutInMinutes: Number("int"),
|
|
75
|
+
* // cookieSynchronizationConfiguration: { // CookieSynchronizationConfiguration
|
|
76
|
+
* // allowlist: [ // CookieSpecifications // required
|
|
77
|
+
* // { // CookieSpecification
|
|
78
|
+
* // domain: "STRING_VALUE", // required
|
|
79
|
+
* // name: "STRING_VALUE",
|
|
80
|
+
* // path: "STRING_VALUE",
|
|
81
|
+
* // },
|
|
82
|
+
* // ],
|
|
83
|
+
* // blocklist: [
|
|
84
|
+
* // {
|
|
85
|
+
* // domain: "STRING_VALUE", // required
|
|
86
|
+
* // name: "STRING_VALUE",
|
|
87
|
+
* // path: "STRING_VALUE",
|
|
88
|
+
* // },
|
|
89
|
+
* // ],
|
|
90
|
+
* // },
|
|
59
91
|
* // },
|
|
60
92
|
* // };
|
|
61
93
|
*
|