@aws-sdk/client-workspaces-web 3.857.0 → 3.858.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/README.md +56 -0
- package/dist-cjs/index.js +450 -0
- package/dist-es/WorkSpacesWeb.js +14 -0
- package/dist-es/commands/AssociateSessionLoggerCommand.js +22 -0
- package/dist-es/commands/CreateSessionLoggerCommand.js +23 -0
- package/dist-es/commands/DeleteSessionLoggerCommand.js +22 -0
- package/dist-es/commands/DisassociateSessionLoggerCommand.js +22 -0
- package/dist-es/commands/GetSessionLoggerCommand.js +23 -0
- package/dist-es/commands/ListSessionLoggersCommand.js +23 -0
- package/dist-es/commands/UpdateSessionLoggerCommand.js +23 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +83 -0
- package/dist-es/pagination/ListSessionLoggersPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +210 -1
- package/dist-types/WorkSpacesWeb.d.ts +50 -0
- package/dist-types/WorkSpacesWebClient.d.ts +9 -2
- package/dist-types/commands/AssociateSessionLoggerCommand.d.ts +109 -0
- package/dist-types/commands/CreateSessionLoggerCommand.d.ts +189 -0
- package/dist-types/commands/DeleteSessionLoggerCommand.d.ts +98 -0
- package/dist-types/commands/DisassociateSessionLoggerCommand.d.ts +98 -0
- package/dist-types/commands/GetPortalCommand.d.ts +1 -0
- package/dist-types/commands/GetSessionLoggerCommand.d.ts +187 -0
- package/dist-types/commands/ListPortalsCommand.d.ts +1 -0
- package/dist-types/commands/ListSessionLoggersCommand.d.ts +175 -0
- package/dist-types/commands/UpdatePortalCommand.d.ts +1 -0
- package/dist-types/commands/UpdateSessionLoggerCommand.d.ts +217 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +452 -0
- package/dist-types/pagination/ListSessionLoggersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
- package/dist-types/ts3.4/WorkSpacesWeb.d.ts +120 -0
- package/dist-types/ts3.4/WorkSpacesWebClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/AssociateSessionLoggerCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateSessionLoggerCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteSessionLoggerCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisassociateSessionLoggerCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetSessionLoggerCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListSessionLoggersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateSessionLoggerCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +164 -0
- package/dist-types/ts3.4/pagination/ListSessionLoggersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
- package/package.json +5 -5
package/dist-es/WorkSpacesWeb.js
CHANGED
|
@@ -3,6 +3,7 @@ import { AssociateBrowserSettingsCommand, } from "./commands/AssociateBrowserSet
|
|
|
3
3
|
import { AssociateDataProtectionSettingsCommand, } from "./commands/AssociateDataProtectionSettingsCommand";
|
|
4
4
|
import { AssociateIpAccessSettingsCommand, } from "./commands/AssociateIpAccessSettingsCommand";
|
|
5
5
|
import { AssociateNetworkSettingsCommand, } from "./commands/AssociateNetworkSettingsCommand";
|
|
6
|
+
import { AssociateSessionLoggerCommand, } from "./commands/AssociateSessionLoggerCommand";
|
|
6
7
|
import { AssociateTrustStoreCommand, } from "./commands/AssociateTrustStoreCommand";
|
|
7
8
|
import { AssociateUserAccessLoggingSettingsCommand, } from "./commands/AssociateUserAccessLoggingSettingsCommand";
|
|
8
9
|
import { AssociateUserSettingsCommand, } from "./commands/AssociateUserSettingsCommand";
|
|
@@ -12,6 +13,7 @@ import { CreateIdentityProviderCommand, } from "./commands/CreateIdentityProvide
|
|
|
12
13
|
import { CreateIpAccessSettingsCommand, } from "./commands/CreateIpAccessSettingsCommand";
|
|
13
14
|
import { CreateNetworkSettingsCommand, } from "./commands/CreateNetworkSettingsCommand";
|
|
14
15
|
import { CreatePortalCommand, } from "./commands/CreatePortalCommand";
|
|
16
|
+
import { CreateSessionLoggerCommand, } from "./commands/CreateSessionLoggerCommand";
|
|
15
17
|
import { CreateTrustStoreCommand, } from "./commands/CreateTrustStoreCommand";
|
|
16
18
|
import { CreateUserAccessLoggingSettingsCommand, } from "./commands/CreateUserAccessLoggingSettingsCommand";
|
|
17
19
|
import { CreateUserSettingsCommand, } from "./commands/CreateUserSettingsCommand";
|
|
@@ -21,6 +23,7 @@ import { DeleteIdentityProviderCommand, } from "./commands/DeleteIdentityProvide
|
|
|
21
23
|
import { DeleteIpAccessSettingsCommand, } from "./commands/DeleteIpAccessSettingsCommand";
|
|
22
24
|
import { DeleteNetworkSettingsCommand, } from "./commands/DeleteNetworkSettingsCommand";
|
|
23
25
|
import { DeletePortalCommand, } from "./commands/DeletePortalCommand";
|
|
26
|
+
import { DeleteSessionLoggerCommand, } from "./commands/DeleteSessionLoggerCommand";
|
|
24
27
|
import { DeleteTrustStoreCommand, } from "./commands/DeleteTrustStoreCommand";
|
|
25
28
|
import { DeleteUserAccessLoggingSettingsCommand, } from "./commands/DeleteUserAccessLoggingSettingsCommand";
|
|
26
29
|
import { DeleteUserSettingsCommand, } from "./commands/DeleteUserSettingsCommand";
|
|
@@ -28,6 +31,7 @@ import { DisassociateBrowserSettingsCommand, } from "./commands/DisassociateBrow
|
|
|
28
31
|
import { DisassociateDataProtectionSettingsCommand, } from "./commands/DisassociateDataProtectionSettingsCommand";
|
|
29
32
|
import { DisassociateIpAccessSettingsCommand, } from "./commands/DisassociateIpAccessSettingsCommand";
|
|
30
33
|
import { DisassociateNetworkSettingsCommand, } from "./commands/DisassociateNetworkSettingsCommand";
|
|
34
|
+
import { DisassociateSessionLoggerCommand, } from "./commands/DisassociateSessionLoggerCommand";
|
|
31
35
|
import { DisassociateTrustStoreCommand, } from "./commands/DisassociateTrustStoreCommand";
|
|
32
36
|
import { DisassociateUserAccessLoggingSettingsCommand, } from "./commands/DisassociateUserAccessLoggingSettingsCommand";
|
|
33
37
|
import { DisassociateUserSettingsCommand, } from "./commands/DisassociateUserSettingsCommand";
|
|
@@ -40,6 +44,7 @@ import { GetNetworkSettingsCommand, } from "./commands/GetNetworkSettingsCommand
|
|
|
40
44
|
import { GetPortalCommand } from "./commands/GetPortalCommand";
|
|
41
45
|
import { GetPortalServiceProviderMetadataCommand, } from "./commands/GetPortalServiceProviderMetadataCommand";
|
|
42
46
|
import { GetSessionCommand } from "./commands/GetSessionCommand";
|
|
47
|
+
import { GetSessionLoggerCommand, } from "./commands/GetSessionLoggerCommand";
|
|
43
48
|
import { GetTrustStoreCertificateCommand, } from "./commands/GetTrustStoreCertificateCommand";
|
|
44
49
|
import { GetTrustStoreCommand, } from "./commands/GetTrustStoreCommand";
|
|
45
50
|
import { GetUserAccessLoggingSettingsCommand, } from "./commands/GetUserAccessLoggingSettingsCommand";
|
|
@@ -50,6 +55,7 @@ import { ListIdentityProvidersCommand, } from "./commands/ListIdentityProvidersC
|
|
|
50
55
|
import { ListIpAccessSettingsCommand, } from "./commands/ListIpAccessSettingsCommand";
|
|
51
56
|
import { ListNetworkSettingsCommand, } from "./commands/ListNetworkSettingsCommand";
|
|
52
57
|
import { ListPortalsCommand } from "./commands/ListPortalsCommand";
|
|
58
|
+
import { ListSessionLoggersCommand, } from "./commands/ListSessionLoggersCommand";
|
|
53
59
|
import { ListSessionsCommand, } from "./commands/ListSessionsCommand";
|
|
54
60
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
55
61
|
import { ListTrustStoreCertificatesCommand, } from "./commands/ListTrustStoreCertificatesCommand";
|
|
@@ -64,6 +70,7 @@ import { UpdateIdentityProviderCommand, } from "./commands/UpdateIdentityProvide
|
|
|
64
70
|
import { UpdateIpAccessSettingsCommand, } from "./commands/UpdateIpAccessSettingsCommand";
|
|
65
71
|
import { UpdateNetworkSettingsCommand, } from "./commands/UpdateNetworkSettingsCommand";
|
|
66
72
|
import { UpdatePortalCommand, } from "./commands/UpdatePortalCommand";
|
|
73
|
+
import { UpdateSessionLoggerCommand, } from "./commands/UpdateSessionLoggerCommand";
|
|
67
74
|
import { UpdateTrustStoreCommand, } from "./commands/UpdateTrustStoreCommand";
|
|
68
75
|
import { UpdateUserAccessLoggingSettingsCommand, } from "./commands/UpdateUserAccessLoggingSettingsCommand";
|
|
69
76
|
import { UpdateUserSettingsCommand, } from "./commands/UpdateUserSettingsCommand";
|
|
@@ -73,6 +80,7 @@ const commands = {
|
|
|
73
80
|
AssociateDataProtectionSettingsCommand,
|
|
74
81
|
AssociateIpAccessSettingsCommand,
|
|
75
82
|
AssociateNetworkSettingsCommand,
|
|
83
|
+
AssociateSessionLoggerCommand,
|
|
76
84
|
AssociateTrustStoreCommand,
|
|
77
85
|
AssociateUserAccessLoggingSettingsCommand,
|
|
78
86
|
AssociateUserSettingsCommand,
|
|
@@ -82,6 +90,7 @@ const commands = {
|
|
|
82
90
|
CreateIpAccessSettingsCommand,
|
|
83
91
|
CreateNetworkSettingsCommand,
|
|
84
92
|
CreatePortalCommand,
|
|
93
|
+
CreateSessionLoggerCommand,
|
|
85
94
|
CreateTrustStoreCommand,
|
|
86
95
|
CreateUserAccessLoggingSettingsCommand,
|
|
87
96
|
CreateUserSettingsCommand,
|
|
@@ -91,6 +100,7 @@ const commands = {
|
|
|
91
100
|
DeleteIpAccessSettingsCommand,
|
|
92
101
|
DeleteNetworkSettingsCommand,
|
|
93
102
|
DeletePortalCommand,
|
|
103
|
+
DeleteSessionLoggerCommand,
|
|
94
104
|
DeleteTrustStoreCommand,
|
|
95
105
|
DeleteUserAccessLoggingSettingsCommand,
|
|
96
106
|
DeleteUserSettingsCommand,
|
|
@@ -98,6 +108,7 @@ const commands = {
|
|
|
98
108
|
DisassociateDataProtectionSettingsCommand,
|
|
99
109
|
DisassociateIpAccessSettingsCommand,
|
|
100
110
|
DisassociateNetworkSettingsCommand,
|
|
111
|
+
DisassociateSessionLoggerCommand,
|
|
101
112
|
DisassociateTrustStoreCommand,
|
|
102
113
|
DisassociateUserAccessLoggingSettingsCommand,
|
|
103
114
|
DisassociateUserSettingsCommand,
|
|
@@ -110,6 +121,7 @@ const commands = {
|
|
|
110
121
|
GetPortalCommand,
|
|
111
122
|
GetPortalServiceProviderMetadataCommand,
|
|
112
123
|
GetSessionCommand,
|
|
124
|
+
GetSessionLoggerCommand,
|
|
113
125
|
GetTrustStoreCommand,
|
|
114
126
|
GetTrustStoreCertificateCommand,
|
|
115
127
|
GetUserAccessLoggingSettingsCommand,
|
|
@@ -120,6 +132,7 @@ const commands = {
|
|
|
120
132
|
ListIpAccessSettingsCommand,
|
|
121
133
|
ListNetworkSettingsCommand,
|
|
122
134
|
ListPortalsCommand,
|
|
135
|
+
ListSessionLoggersCommand,
|
|
123
136
|
ListSessionsCommand,
|
|
124
137
|
ListTagsForResourceCommand,
|
|
125
138
|
ListTrustStoreCertificatesCommand,
|
|
@@ -134,6 +147,7 @@ const commands = {
|
|
|
134
147
|
UpdateIpAccessSettingsCommand,
|
|
135
148
|
UpdateNetworkSettingsCommand,
|
|
136
149
|
UpdatePortalCommand,
|
|
150
|
+
UpdateSessionLoggerCommand,
|
|
137
151
|
UpdateTrustStoreCommand,
|
|
138
152
|
UpdateUserAccessLoggingSettingsCommand,
|
|
139
153
|
UpdateUserSettingsCommand,
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_AssociateSessionLoggerCommand, se_AssociateSessionLoggerCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class AssociateSessionLoggerCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AWSErmineControlPlaneService", "AssociateSessionLogger", {})
|
|
17
|
+
.n("WorkSpacesWebClient", "AssociateSessionLoggerCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_AssociateSessionLoggerCommand)
|
|
20
|
+
.de(de_AssociateSessionLoggerCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { CreateSessionLoggerRequestFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_CreateSessionLoggerCommand, se_CreateSessionLoggerCommand } from "../protocols/Aws_restJson1";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class CreateSessionLoggerCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("AWSErmineControlPlaneService", "CreateSessionLogger", {})
|
|
18
|
+
.n("WorkSpacesWebClient", "CreateSessionLoggerCommand")
|
|
19
|
+
.f(CreateSessionLoggerRequestFilterSensitiveLog, void 0)
|
|
20
|
+
.ser(se_CreateSessionLoggerCommand)
|
|
21
|
+
.de(de_CreateSessionLoggerCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_DeleteSessionLoggerCommand, se_DeleteSessionLoggerCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DeleteSessionLoggerCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AWSErmineControlPlaneService", "DeleteSessionLogger", {})
|
|
17
|
+
.n("WorkSpacesWebClient", "DeleteSessionLoggerCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_DeleteSessionLoggerCommand)
|
|
20
|
+
.de(de_DeleteSessionLoggerCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_DisassociateSessionLoggerCommand, se_DisassociateSessionLoggerCommand } from "../protocols/Aws_restJson1";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DisassociateSessionLoggerCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AWSErmineControlPlaneService", "DisassociateSessionLogger", {})
|
|
17
|
+
.n("WorkSpacesWebClient", "DisassociateSessionLoggerCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_DisassociateSessionLoggerCommand)
|
|
20
|
+
.de(de_DisassociateSessionLoggerCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { GetSessionLoggerResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_GetSessionLoggerCommand, se_GetSessionLoggerCommand } from "../protocols/Aws_restJson1";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class GetSessionLoggerCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("AWSErmineControlPlaneService", "GetSessionLogger", {})
|
|
18
|
+
.n("WorkSpacesWebClient", "GetSessionLoggerCommand")
|
|
19
|
+
.f(void 0, GetSessionLoggerResponseFilterSensitiveLog)
|
|
20
|
+
.ser(se_GetSessionLoggerCommand)
|
|
21
|
+
.de(de_GetSessionLoggerCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { ListSessionLoggersResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_ListSessionLoggersCommand, se_ListSessionLoggersCommand } from "../protocols/Aws_restJson1";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class ListSessionLoggersCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("AWSErmineControlPlaneService", "ListSessionLoggers", {})
|
|
18
|
+
.n("WorkSpacesWebClient", "ListSessionLoggersCommand")
|
|
19
|
+
.f(void 0, ListSessionLoggersResponseFilterSensitiveLog)
|
|
20
|
+
.ser(se_ListSessionLoggersCommand)
|
|
21
|
+
.de(de_ListSessionLoggersCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { UpdateSessionLoggerRequestFilterSensitiveLog, UpdateSessionLoggerResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_UpdateSessionLoggerCommand, se_UpdateSessionLoggerCommand } from "../protocols/Aws_restJson1";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class UpdateSessionLoggerCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("AWSErmineControlPlaneService", "UpdateSessionLogger", {})
|
|
18
|
+
.n("WorkSpacesWebClient", "UpdateSessionLoggerCommand")
|
|
19
|
+
.f(UpdateSessionLoggerRequestFilterSensitiveLog, UpdateSessionLoggerResponseFilterSensitiveLog)
|
|
20
|
+
.ser(se_UpdateSessionLoggerCommand)
|
|
21
|
+
.de(de_UpdateSessionLoggerCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -2,6 +2,7 @@ export * from "./AssociateBrowserSettingsCommand";
|
|
|
2
2
|
export * from "./AssociateDataProtectionSettingsCommand";
|
|
3
3
|
export * from "./AssociateIpAccessSettingsCommand";
|
|
4
4
|
export * from "./AssociateNetworkSettingsCommand";
|
|
5
|
+
export * from "./AssociateSessionLoggerCommand";
|
|
5
6
|
export * from "./AssociateTrustStoreCommand";
|
|
6
7
|
export * from "./AssociateUserAccessLoggingSettingsCommand";
|
|
7
8
|
export * from "./AssociateUserSettingsCommand";
|
|
@@ -11,6 +12,7 @@ export * from "./CreateIdentityProviderCommand";
|
|
|
11
12
|
export * from "./CreateIpAccessSettingsCommand";
|
|
12
13
|
export * from "./CreateNetworkSettingsCommand";
|
|
13
14
|
export * from "./CreatePortalCommand";
|
|
15
|
+
export * from "./CreateSessionLoggerCommand";
|
|
14
16
|
export * from "./CreateTrustStoreCommand";
|
|
15
17
|
export * from "./CreateUserAccessLoggingSettingsCommand";
|
|
16
18
|
export * from "./CreateUserSettingsCommand";
|
|
@@ -20,6 +22,7 @@ export * from "./DeleteIdentityProviderCommand";
|
|
|
20
22
|
export * from "./DeleteIpAccessSettingsCommand";
|
|
21
23
|
export * from "./DeleteNetworkSettingsCommand";
|
|
22
24
|
export * from "./DeletePortalCommand";
|
|
25
|
+
export * from "./DeleteSessionLoggerCommand";
|
|
23
26
|
export * from "./DeleteTrustStoreCommand";
|
|
24
27
|
export * from "./DeleteUserAccessLoggingSettingsCommand";
|
|
25
28
|
export * from "./DeleteUserSettingsCommand";
|
|
@@ -27,6 +30,7 @@ export * from "./DisassociateBrowserSettingsCommand";
|
|
|
27
30
|
export * from "./DisassociateDataProtectionSettingsCommand";
|
|
28
31
|
export * from "./DisassociateIpAccessSettingsCommand";
|
|
29
32
|
export * from "./DisassociateNetworkSettingsCommand";
|
|
33
|
+
export * from "./DisassociateSessionLoggerCommand";
|
|
30
34
|
export * from "./DisassociateTrustStoreCommand";
|
|
31
35
|
export * from "./DisassociateUserAccessLoggingSettingsCommand";
|
|
32
36
|
export * from "./DisassociateUserSettingsCommand";
|
|
@@ -39,6 +43,7 @@ export * from "./GetNetworkSettingsCommand";
|
|
|
39
43
|
export * from "./GetPortalCommand";
|
|
40
44
|
export * from "./GetPortalServiceProviderMetadataCommand";
|
|
41
45
|
export * from "./GetSessionCommand";
|
|
46
|
+
export * from "./GetSessionLoggerCommand";
|
|
42
47
|
export * from "./GetTrustStoreCertificateCommand";
|
|
43
48
|
export * from "./GetTrustStoreCommand";
|
|
44
49
|
export * from "./GetUserAccessLoggingSettingsCommand";
|
|
@@ -49,6 +54,7 @@ export * from "./ListIdentityProvidersCommand";
|
|
|
49
54
|
export * from "./ListIpAccessSettingsCommand";
|
|
50
55
|
export * from "./ListNetworkSettingsCommand";
|
|
51
56
|
export * from "./ListPortalsCommand";
|
|
57
|
+
export * from "./ListSessionLoggersCommand";
|
|
52
58
|
export * from "./ListSessionsCommand";
|
|
53
59
|
export * from "./ListTagsForResourceCommand";
|
|
54
60
|
export * from "./ListTrustStoreCertificatesCommand";
|
|
@@ -63,6 +69,7 @@ export * from "./UpdateIdentityProviderCommand";
|
|
|
63
69
|
export * from "./UpdateIpAccessSettingsCommand";
|
|
64
70
|
export * from "./UpdateNetworkSettingsCommand";
|
|
65
71
|
export * from "./UpdatePortalCommand";
|
|
72
|
+
export * from "./UpdateSessionLoggerCommand";
|
|
66
73
|
export * from "./UpdateTrustStoreCommand";
|
|
67
74
|
export * from "./UpdateUserAccessLoggingSettingsCommand";
|
|
68
75
|
export * from "./UpdateUserSettingsCommand";
|
|
@@ -157,6 +157,42 @@ export const PortalStatus = {
|
|
|
157
157
|
export const RendererType = {
|
|
158
158
|
APPSTREAM: "AppStream",
|
|
159
159
|
};
|
|
160
|
+
export const Event = {
|
|
161
|
+
CONTENT_COPY_FROM_WEBSITE: "ContentCopyFromWebsite",
|
|
162
|
+
CONTENT_PASTE_TO_WEBSITE: "ContentPasteToWebsite",
|
|
163
|
+
CONTENT_TRANSFER_FROM_LOCAL_TO_REMOTE_CLIPBOARD: "ContentTransferFromLocalToRemoteClipboard",
|
|
164
|
+
FILE_DOWNLOAD_FROM_SECURE_BROWSER_TO_REMOTE_DISK: "FileDownloadFromSecureBrowserToRemoteDisk",
|
|
165
|
+
FILE_TRANSFER_FROM_LOCAL_TO_REMOTE_DISK: "FileTransferFromLocalToRemoteDisk",
|
|
166
|
+
FILE_TRANSFER_FROM_REMOTE_TO_LOCAL_DISK: "FileTransferFromRemoteToLocalDisk",
|
|
167
|
+
FILE_UPLOAD_FROM_REMOTE_DISK_TO_SECURE_BROWSER: "FileUploadFromRemoteDiskToSecureBrowser",
|
|
168
|
+
PRINT_JOB_SUBMIT: "PrintJobSubmit",
|
|
169
|
+
SESSION_CONNECT: "SessionConnect",
|
|
170
|
+
SESSION_DISCONNECT: "SessionDisconnect",
|
|
171
|
+
SESSION_END: "SessionEnd",
|
|
172
|
+
SESSION_START: "SessionStart",
|
|
173
|
+
TAB_CLOSE: "TabClose",
|
|
174
|
+
TAB_OPEN: "TabOpen",
|
|
175
|
+
URL_LOAD: "UrlLoad",
|
|
176
|
+
WEBSITE_INTERACT: "WebsiteInteract",
|
|
177
|
+
};
|
|
178
|
+
export var EventFilter;
|
|
179
|
+
(function (EventFilter) {
|
|
180
|
+
EventFilter.visit = (value, visitor) => {
|
|
181
|
+
if (value.all !== undefined)
|
|
182
|
+
return visitor.all(value.all);
|
|
183
|
+
if (value.include !== undefined)
|
|
184
|
+
return visitor.include(value.include);
|
|
185
|
+
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
186
|
+
};
|
|
187
|
+
})(EventFilter || (EventFilter = {}));
|
|
188
|
+
export const FolderStructure = {
|
|
189
|
+
FLAT: "Flat",
|
|
190
|
+
NESTED_BY_DATE: "NestedByDate",
|
|
191
|
+
};
|
|
192
|
+
export const LogFileFormat = {
|
|
193
|
+
JSON: "Json",
|
|
194
|
+
JSON_LINES: "JSONLines",
|
|
195
|
+
};
|
|
160
196
|
export class TooManyTagsException extends __BaseException {
|
|
161
197
|
name = "TooManyTagsException";
|
|
162
198
|
$fault = "client";
|
|
@@ -438,6 +474,53 @@ export const UpdatePortalResponseFilterSensitiveLog = (obj) => ({
|
|
|
438
474
|
...obj,
|
|
439
475
|
...(obj.portal && { portal: PortalFilterSensitiveLog(obj.portal) }),
|
|
440
476
|
});
|
|
477
|
+
export const S3LogConfigurationFilterSensitiveLog = (obj) => ({
|
|
478
|
+
...obj,
|
|
479
|
+
...(obj.bucket && { bucket: SENSITIVE_STRING }),
|
|
480
|
+
...(obj.keyPrefix && { keyPrefix: SENSITIVE_STRING }),
|
|
481
|
+
});
|
|
482
|
+
export const LogConfigurationFilterSensitiveLog = (obj) => ({
|
|
483
|
+
...obj,
|
|
484
|
+
...(obj.s3 && { s3: S3LogConfigurationFilterSensitiveLog(obj.s3) }),
|
|
485
|
+
});
|
|
486
|
+
export const CreateSessionLoggerRequestFilterSensitiveLog = (obj) => ({
|
|
487
|
+
...obj,
|
|
488
|
+
...(obj.eventFilter && { eventFilter: obj.eventFilter }),
|
|
489
|
+
...(obj.logConfiguration && { logConfiguration: LogConfigurationFilterSensitiveLog(obj.logConfiguration) }),
|
|
490
|
+
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
491
|
+
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
492
|
+
});
|
|
493
|
+
export const SessionLoggerFilterSensitiveLog = (obj) => ({
|
|
494
|
+
...obj,
|
|
495
|
+
...(obj.eventFilter && { eventFilter: obj.eventFilter }),
|
|
496
|
+
...(obj.logConfiguration && { logConfiguration: LogConfigurationFilterSensitiveLog(obj.logConfiguration) }),
|
|
497
|
+
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
498
|
+
});
|
|
499
|
+
export const GetSessionLoggerResponseFilterSensitiveLog = (obj) => ({
|
|
500
|
+
...obj,
|
|
501
|
+
...(obj.sessionLogger && { sessionLogger: SessionLoggerFilterSensitiveLog(obj.sessionLogger) }),
|
|
502
|
+
});
|
|
503
|
+
export const SessionLoggerSummaryFilterSensitiveLog = (obj) => ({
|
|
504
|
+
...obj,
|
|
505
|
+
...(obj.logConfiguration && { logConfiguration: LogConfigurationFilterSensitiveLog(obj.logConfiguration) }),
|
|
506
|
+
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
507
|
+
});
|
|
508
|
+
export const ListSessionLoggersResponseFilterSensitiveLog = (obj) => ({
|
|
509
|
+
...obj,
|
|
510
|
+
...(obj.sessionLoggers && {
|
|
511
|
+
sessionLoggers: obj.sessionLoggers.map((item) => SessionLoggerSummaryFilterSensitiveLog(item)),
|
|
512
|
+
}),
|
|
513
|
+
});
|
|
514
|
+
export const UpdateSessionLoggerRequestFilterSensitiveLog = (obj) => ({
|
|
515
|
+
...obj,
|
|
516
|
+
...(obj.eventFilter && { eventFilter: obj.eventFilter }),
|
|
517
|
+
...(obj.logConfiguration && { logConfiguration: LogConfigurationFilterSensitiveLog(obj.logConfiguration) }),
|
|
518
|
+
...(obj.displayName && { displayName: SENSITIVE_STRING }),
|
|
519
|
+
});
|
|
520
|
+
export const UpdateSessionLoggerResponseFilterSensitiveLog = (obj) => ({
|
|
521
|
+
...obj,
|
|
522
|
+
...(obj.sessionLogger && { sessionLogger: SessionLoggerFilterSensitiveLog(obj.sessionLogger) }),
|
|
523
|
+
});
|
|
441
524
|
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
442
525
|
...obj,
|
|
443
526
|
...(obj.tags && { tags: SENSITIVE_STRING }),
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListSessionLoggersCommand, } from "../commands/ListSessionLoggersCommand";
|
|
3
|
+
import { WorkSpacesWebClient } from "../WorkSpacesWebClient";
|
|
4
|
+
export const paginateListSessionLoggers = createPaginator(WorkSpacesWebClient, ListSessionLoggersCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -5,6 +5,7 @@ export * from "./ListIdentityProvidersPaginator";
|
|
|
5
5
|
export * from "./ListIpAccessSettingsPaginator";
|
|
6
6
|
export * from "./ListNetworkSettingsPaginator";
|
|
7
7
|
export * from "./ListPortalsPaginator";
|
|
8
|
+
export * from "./ListSessionLoggersPaginator";
|
|
8
9
|
export * from "./ListSessionsPaginator";
|
|
9
10
|
export * from "./ListTrustStoreCertificatesPaginator";
|
|
10
11
|
export * from "./ListTrustStoresPaginator";
|