@aws-sdk/client-workspaces-web 3.315.0 → 3.319.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/WorkSpacesWeb.js +55 -714
- package/dist-cjs/protocols/Aws_restJson1.js +14 -14
- package/dist-es/WorkSpacesWeb.js +55 -714
- package/dist-es/protocols/Aws_restJson1.js +14 -14
- package/dist-types/WorkSpacesWeb.d.ts +63 -122
- package/dist-types/ts3.4/WorkSpacesWeb.d.ts +4 -1
- package/package.json +8 -8
|
@@ -117,7 +117,7 @@ export const se_CreateBrowserSettingsCommand = async (input, context) => {
|
|
|
117
117
|
body = JSON.stringify(take(input, {
|
|
118
118
|
additionalEncryptionContext: (_) => _json(_),
|
|
119
119
|
browserPolicy: [],
|
|
120
|
-
clientToken: (_) => _ ?? generateIdempotencyToken(),
|
|
120
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
121
121
|
customerManagedKey: [],
|
|
122
122
|
tags: (_) => _json(_),
|
|
123
123
|
}));
|
|
@@ -139,7 +139,7 @@ export const se_CreateIdentityProviderCommand = async (input, context) => {
|
|
|
139
139
|
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/identityProviders";
|
|
140
140
|
let body;
|
|
141
141
|
body = JSON.stringify(take(input, {
|
|
142
|
-
clientToken: (_) => _ ?? generateIdempotencyToken(),
|
|
142
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
143
143
|
identityProviderDetails: (_) => _json(_),
|
|
144
144
|
identityProviderName: [],
|
|
145
145
|
identityProviderType: [],
|
|
@@ -163,7 +163,7 @@ export const se_CreateNetworkSettingsCommand = async (input, context) => {
|
|
|
163
163
|
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/networkSettings";
|
|
164
164
|
let body;
|
|
165
165
|
body = JSON.stringify(take(input, {
|
|
166
|
-
clientToken: (_) => _ ?? generateIdempotencyToken(),
|
|
166
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
167
167
|
securityGroupIds: (_) => _json(_),
|
|
168
168
|
subnetIds: (_) => _json(_),
|
|
169
169
|
tags: (_) => _json(_),
|
|
@@ -189,7 +189,7 @@ export const se_CreatePortalCommand = async (input, context) => {
|
|
|
189
189
|
body = JSON.stringify(take(input, {
|
|
190
190
|
additionalEncryptionContext: (_) => _json(_),
|
|
191
191
|
authenticationType: [],
|
|
192
|
-
clientToken: (_) => _ ?? generateIdempotencyToken(),
|
|
192
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
193
193
|
customerManagedKey: [],
|
|
194
194
|
displayName: [],
|
|
195
195
|
tags: (_) => _json(_),
|
|
@@ -213,7 +213,7 @@ export const se_CreateTrustStoreCommand = async (input, context) => {
|
|
|
213
213
|
let body;
|
|
214
214
|
body = JSON.stringify(take(input, {
|
|
215
215
|
certificateList: (_) => se_CertificateList(_, context),
|
|
216
|
-
clientToken: (_) => _ ?? generateIdempotencyToken(),
|
|
216
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
217
217
|
tags: (_) => _json(_),
|
|
218
218
|
}));
|
|
219
219
|
return new __HttpRequest({
|
|
@@ -234,7 +234,7 @@ export const se_CreateUserAccessLoggingSettingsCommand = async (input, context)
|
|
|
234
234
|
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/userAccessLoggingSettings";
|
|
235
235
|
let body;
|
|
236
236
|
body = JSON.stringify(take(input, {
|
|
237
|
-
clientToken: (_) => _ ?? generateIdempotencyToken(),
|
|
237
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
238
238
|
kinesisStreamArn: [],
|
|
239
239
|
tags: (_) => _json(_),
|
|
240
240
|
}));
|
|
@@ -256,7 +256,7 @@ export const se_CreateUserSettingsCommand = async (input, context) => {
|
|
|
256
256
|
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/userSettings";
|
|
257
257
|
let body;
|
|
258
258
|
body = JSON.stringify(take(input, {
|
|
259
|
-
clientToken: (_) => _ ?? generateIdempotencyToken(),
|
|
259
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
260
260
|
copyAllowed: [],
|
|
261
261
|
disconnectTimeoutInMinutes: [],
|
|
262
262
|
downloadAllowed: [],
|
|
@@ -807,7 +807,7 @@ export const se_TagResourceCommand = async (input, context) => {
|
|
|
807
807
|
resolvedPath = __resolvedPath(resolvedPath, input, "resourceArn", () => input.resourceArn, "{resourceArn+}", true);
|
|
808
808
|
let body;
|
|
809
809
|
body = JSON.stringify(take(input, {
|
|
810
|
-
clientToken: (_) => _ ?? generateIdempotencyToken(),
|
|
810
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
811
811
|
tags: (_) => _json(_),
|
|
812
812
|
}));
|
|
813
813
|
return new __HttpRequest({
|
|
@@ -853,7 +853,7 @@ export const se_UpdateBrowserSettingsCommand = async (input, context) => {
|
|
|
853
853
|
let body;
|
|
854
854
|
body = JSON.stringify(take(input, {
|
|
855
855
|
browserPolicy: [],
|
|
856
|
-
clientToken: (_) => _ ?? generateIdempotencyToken(),
|
|
856
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
857
857
|
}));
|
|
858
858
|
return new __HttpRequest({
|
|
859
859
|
protocol,
|
|
@@ -874,7 +874,7 @@ export const se_UpdateIdentityProviderCommand = async (input, context) => {
|
|
|
874
874
|
resolvedPath = __resolvedPath(resolvedPath, input, "identityProviderArn", () => input.identityProviderArn, "{identityProviderArn+}", true);
|
|
875
875
|
let body;
|
|
876
876
|
body = JSON.stringify(take(input, {
|
|
877
|
-
clientToken: (_) => _ ?? generateIdempotencyToken(),
|
|
877
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
878
878
|
identityProviderDetails: (_) => _json(_),
|
|
879
879
|
identityProviderName: [],
|
|
880
880
|
identityProviderType: [],
|
|
@@ -898,7 +898,7 @@ export const se_UpdateNetworkSettingsCommand = async (input, context) => {
|
|
|
898
898
|
resolvedPath = __resolvedPath(resolvedPath, input, "networkSettingsArn", () => input.networkSettingsArn, "{networkSettingsArn+}", true);
|
|
899
899
|
let body;
|
|
900
900
|
body = JSON.stringify(take(input, {
|
|
901
|
-
clientToken: (_) => _ ?? generateIdempotencyToken(),
|
|
901
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
902
902
|
securityGroupIds: (_) => _json(_),
|
|
903
903
|
subnetIds: (_) => _json(_),
|
|
904
904
|
vpcId: [],
|
|
@@ -946,7 +946,7 @@ export const se_UpdateTrustStoreCommand = async (input, context) => {
|
|
|
946
946
|
body = JSON.stringify(take(input, {
|
|
947
947
|
certificatesToAdd: (_) => se_CertificateList(_, context),
|
|
948
948
|
certificatesToDelete: (_) => _json(_),
|
|
949
|
-
clientToken: (_) => _ ?? generateIdempotencyToken(),
|
|
949
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
950
950
|
}));
|
|
951
951
|
return new __HttpRequest({
|
|
952
952
|
protocol,
|
|
@@ -968,7 +968,7 @@ export const se_UpdateUserAccessLoggingSettingsCommand = async (input, context)
|
|
|
968
968
|
resolvedPath = __resolvedPath(resolvedPath, input, "userAccessLoggingSettingsArn", () => input.userAccessLoggingSettingsArn, "{userAccessLoggingSettingsArn+}", true);
|
|
969
969
|
let body;
|
|
970
970
|
body = JSON.stringify(take(input, {
|
|
971
|
-
clientToken: (_) => _ ?? generateIdempotencyToken(),
|
|
971
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
972
972
|
kinesisStreamArn: [],
|
|
973
973
|
}));
|
|
974
974
|
return new __HttpRequest({
|
|
@@ -990,7 +990,7 @@ export const se_UpdateUserSettingsCommand = async (input, context) => {
|
|
|
990
990
|
resolvedPath = __resolvedPath(resolvedPath, input, "userSettingsArn", () => input.userSettingsArn, "{userSettingsArn+}", true);
|
|
991
991
|
let body;
|
|
992
992
|
body = JSON.stringify(take(input, {
|
|
993
|
-
clientToken: (_) => _ ?? generateIdempotencyToken(),
|
|
993
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
994
994
|
copyAllowed: [],
|
|
995
995
|
disconnectTimeoutInMinutes: [],
|
|
996
996
|
downloadAllowed: [],
|
|
@@ -51,381 +51,322 @@ import { UpdateTrustStoreCommandInput, UpdateTrustStoreCommandOutput } from "./c
|
|
|
51
51
|
import { UpdateUserAccessLoggingSettingsCommandInput, UpdateUserAccessLoggingSettingsCommandOutput } from "./commands/UpdateUserAccessLoggingSettingsCommand";
|
|
52
52
|
import { UpdateUserSettingsCommandInput, UpdateUserSettingsCommandOutput } from "./commands/UpdateUserSettingsCommand";
|
|
53
53
|
import { WorkSpacesWebClient } from "./WorkSpacesWebClient";
|
|
54
|
-
|
|
55
|
-
* @public
|
|
56
|
-
* <p>WorkSpaces Web is a low cost, fully managed WorkSpace built specifically to facilitate
|
|
57
|
-
* secure, web-based workloads. WorkSpaces Web makes it easy for customers to safely provide
|
|
58
|
-
* their employees with access to internal websites and SaaS web applications without the
|
|
59
|
-
* administrative burden of appliances or specialized client software. WorkSpaces Web provides
|
|
60
|
-
* simple policy tools tailored for user interactions, while offloading common tasks like
|
|
61
|
-
* capacity management, scaling, and maintaining browser images.</p>
|
|
62
|
-
*/
|
|
63
|
-
export declare class WorkSpacesWeb extends WorkSpacesWebClient {
|
|
54
|
+
export interface WorkSpacesWeb {
|
|
64
55
|
/**
|
|
65
|
-
* @
|
|
66
|
-
* <p>Associates a browser settings resource with a web portal.</p>
|
|
56
|
+
* @see {@link AssociateBrowserSettingsCommand}
|
|
67
57
|
*/
|
|
68
58
|
associateBrowserSettings(args: AssociateBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<AssociateBrowserSettingsCommandOutput>;
|
|
69
59
|
associateBrowserSettings(args: AssociateBrowserSettingsCommandInput, cb: (err: any, data?: AssociateBrowserSettingsCommandOutput) => void): void;
|
|
70
60
|
associateBrowserSettings(args: AssociateBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateBrowserSettingsCommandOutput) => void): void;
|
|
71
61
|
/**
|
|
72
|
-
* @
|
|
73
|
-
* <p>Associates a network settings resource with a web portal.</p>
|
|
62
|
+
* @see {@link AssociateNetworkSettingsCommand}
|
|
74
63
|
*/
|
|
75
64
|
associateNetworkSettings(args: AssociateNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<AssociateNetworkSettingsCommandOutput>;
|
|
76
65
|
associateNetworkSettings(args: AssociateNetworkSettingsCommandInput, cb: (err: any, data?: AssociateNetworkSettingsCommandOutput) => void): void;
|
|
77
66
|
associateNetworkSettings(args: AssociateNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateNetworkSettingsCommandOutput) => void): void;
|
|
78
67
|
/**
|
|
79
|
-
* @
|
|
80
|
-
* <p>Associates a trust store with a web portal.</p>
|
|
68
|
+
* @see {@link AssociateTrustStoreCommand}
|
|
81
69
|
*/
|
|
82
70
|
associateTrustStore(args: AssociateTrustStoreCommandInput, options?: __HttpHandlerOptions): Promise<AssociateTrustStoreCommandOutput>;
|
|
83
71
|
associateTrustStore(args: AssociateTrustStoreCommandInput, cb: (err: any, data?: AssociateTrustStoreCommandOutput) => void): void;
|
|
84
72
|
associateTrustStore(args: AssociateTrustStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateTrustStoreCommandOutput) => void): void;
|
|
85
73
|
/**
|
|
86
|
-
* @
|
|
87
|
-
* <p>Associates a user access logging settings resource with a web portal.</p>
|
|
74
|
+
* @see {@link AssociateUserAccessLoggingSettingsCommand}
|
|
88
75
|
*/
|
|
89
76
|
associateUserAccessLoggingSettings(args: AssociateUserAccessLoggingSettingsCommandInput, options?: __HttpHandlerOptions): Promise<AssociateUserAccessLoggingSettingsCommandOutput>;
|
|
90
77
|
associateUserAccessLoggingSettings(args: AssociateUserAccessLoggingSettingsCommandInput, cb: (err: any, data?: AssociateUserAccessLoggingSettingsCommandOutput) => void): void;
|
|
91
78
|
associateUserAccessLoggingSettings(args: AssociateUserAccessLoggingSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateUserAccessLoggingSettingsCommandOutput) => void): void;
|
|
92
79
|
/**
|
|
93
|
-
* @
|
|
94
|
-
* <p>Associates a user settings resource with a web portal.</p>
|
|
80
|
+
* @see {@link AssociateUserSettingsCommand}
|
|
95
81
|
*/
|
|
96
82
|
associateUserSettings(args: AssociateUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<AssociateUserSettingsCommandOutput>;
|
|
97
83
|
associateUserSettings(args: AssociateUserSettingsCommandInput, cb: (err: any, data?: AssociateUserSettingsCommandOutput) => void): void;
|
|
98
84
|
associateUserSettings(args: AssociateUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateUserSettingsCommandOutput) => void): void;
|
|
99
85
|
/**
|
|
100
|
-
* @
|
|
101
|
-
* <p>Creates a browser settings resource that can be associated with a web portal. Once
|
|
102
|
-
* associated with a web portal, browser settings control how the browser will behave once a
|
|
103
|
-
* user starts a streaming session for the web portal. </p>
|
|
86
|
+
* @see {@link CreateBrowserSettingsCommand}
|
|
104
87
|
*/
|
|
105
88
|
createBrowserSettings(args: CreateBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<CreateBrowserSettingsCommandOutput>;
|
|
106
89
|
createBrowserSettings(args: CreateBrowserSettingsCommandInput, cb: (err: any, data?: CreateBrowserSettingsCommandOutput) => void): void;
|
|
107
90
|
createBrowserSettings(args: CreateBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBrowserSettingsCommandOutput) => void): void;
|
|
108
91
|
/**
|
|
109
|
-
* @
|
|
110
|
-
* <p>Creates an identity provider resource that is then associated with a web portal.</p>
|
|
92
|
+
* @see {@link CreateIdentityProviderCommand}
|
|
111
93
|
*/
|
|
112
94
|
createIdentityProvider(args: CreateIdentityProviderCommandInput, options?: __HttpHandlerOptions): Promise<CreateIdentityProviderCommandOutput>;
|
|
113
95
|
createIdentityProvider(args: CreateIdentityProviderCommandInput, cb: (err: any, data?: CreateIdentityProviderCommandOutput) => void): void;
|
|
114
96
|
createIdentityProvider(args: CreateIdentityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateIdentityProviderCommandOutput) => void): void;
|
|
115
97
|
/**
|
|
116
|
-
* @
|
|
117
|
-
* <p>Creates a network settings resource that can be associated with a web portal. Once
|
|
118
|
-
* associated with a web portal, network settings define how streaming instances will connect
|
|
119
|
-
* with your specified VPC. </p>
|
|
98
|
+
* @see {@link CreateNetworkSettingsCommand}
|
|
120
99
|
*/
|
|
121
100
|
createNetworkSettings(args: CreateNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<CreateNetworkSettingsCommandOutput>;
|
|
122
101
|
createNetworkSettings(args: CreateNetworkSettingsCommandInput, cb: (err: any, data?: CreateNetworkSettingsCommandOutput) => void): void;
|
|
123
102
|
createNetworkSettings(args: CreateNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNetworkSettingsCommandOutput) => void): void;
|
|
124
103
|
/**
|
|
125
|
-
* @
|
|
126
|
-
* <p>Creates a web portal.</p>
|
|
104
|
+
* @see {@link CreatePortalCommand}
|
|
127
105
|
*/
|
|
128
106
|
createPortal(args: CreatePortalCommandInput, options?: __HttpHandlerOptions): Promise<CreatePortalCommandOutput>;
|
|
129
107
|
createPortal(args: CreatePortalCommandInput, cb: (err: any, data?: CreatePortalCommandOutput) => void): void;
|
|
130
108
|
createPortal(args: CreatePortalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePortalCommandOutput) => void): void;
|
|
131
109
|
/**
|
|
132
|
-
* @
|
|
133
|
-
* <p>Creates a trust store that can be associated with a web portal. A trust store contains
|
|
134
|
-
* certificate authority (CA) certificates. Once associated with a web portal, the browser in
|
|
135
|
-
* a streaming session will recognize certificates that have been issued using any of the CAs
|
|
136
|
-
* in the trust store. If your organization has internal websites that use certificates issued
|
|
137
|
-
* by private CAs, you should add the private CA certificate to the trust store. </p>
|
|
110
|
+
* @see {@link CreateTrustStoreCommand}
|
|
138
111
|
*/
|
|
139
112
|
createTrustStore(args: CreateTrustStoreCommandInput, options?: __HttpHandlerOptions): Promise<CreateTrustStoreCommandOutput>;
|
|
140
113
|
createTrustStore(args: CreateTrustStoreCommandInput, cb: (err: any, data?: CreateTrustStoreCommandOutput) => void): void;
|
|
141
114
|
createTrustStore(args: CreateTrustStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateTrustStoreCommandOutput) => void): void;
|
|
142
115
|
/**
|
|
143
|
-
* @
|
|
144
|
-
* <p>Creates a user access logging settings resource that can be associated with a web portal.</p>
|
|
116
|
+
* @see {@link CreateUserAccessLoggingSettingsCommand}
|
|
145
117
|
*/
|
|
146
118
|
createUserAccessLoggingSettings(args: CreateUserAccessLoggingSettingsCommandInput, options?: __HttpHandlerOptions): Promise<CreateUserAccessLoggingSettingsCommandOutput>;
|
|
147
119
|
createUserAccessLoggingSettings(args: CreateUserAccessLoggingSettingsCommandInput, cb: (err: any, data?: CreateUserAccessLoggingSettingsCommandOutput) => void): void;
|
|
148
120
|
createUserAccessLoggingSettings(args: CreateUserAccessLoggingSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUserAccessLoggingSettingsCommandOutput) => void): void;
|
|
149
121
|
/**
|
|
150
|
-
* @
|
|
151
|
-
* <p>Creates a user settings resource that can be associated with a web portal. Once
|
|
152
|
-
* associated with a web portal, user settings control how users can transfer data between a
|
|
153
|
-
* streaming session and the their local devices. </p>
|
|
122
|
+
* @see {@link CreateUserSettingsCommand}
|
|
154
123
|
*/
|
|
155
124
|
createUserSettings(args: CreateUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<CreateUserSettingsCommandOutput>;
|
|
156
125
|
createUserSettings(args: CreateUserSettingsCommandInput, cb: (err: any, data?: CreateUserSettingsCommandOutput) => void): void;
|
|
157
126
|
createUserSettings(args: CreateUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateUserSettingsCommandOutput) => void): void;
|
|
158
127
|
/**
|
|
159
|
-
* @
|
|
160
|
-
* <p>Deletes browser settings.</p>
|
|
128
|
+
* @see {@link DeleteBrowserSettingsCommand}
|
|
161
129
|
*/
|
|
162
130
|
deleteBrowserSettings(args: DeleteBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteBrowserSettingsCommandOutput>;
|
|
163
131
|
deleteBrowserSettings(args: DeleteBrowserSettingsCommandInput, cb: (err: any, data?: DeleteBrowserSettingsCommandOutput) => void): void;
|
|
164
132
|
deleteBrowserSettings(args: DeleteBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBrowserSettingsCommandOutput) => void): void;
|
|
165
133
|
/**
|
|
166
|
-
* @
|
|
167
|
-
* <p>Deletes the identity provider.</p>
|
|
134
|
+
* @see {@link DeleteIdentityProviderCommand}
|
|
168
135
|
*/
|
|
169
136
|
deleteIdentityProvider(args: DeleteIdentityProviderCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIdentityProviderCommandOutput>;
|
|
170
137
|
deleteIdentityProvider(args: DeleteIdentityProviderCommandInput, cb: (err: any, data?: DeleteIdentityProviderCommandOutput) => void): void;
|
|
171
138
|
deleteIdentityProvider(args: DeleteIdentityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteIdentityProviderCommandOutput) => void): void;
|
|
172
139
|
/**
|
|
173
|
-
* @
|
|
174
|
-
* <p>Deletes network settings.</p>
|
|
140
|
+
* @see {@link DeleteNetworkSettingsCommand}
|
|
175
141
|
*/
|
|
176
142
|
deleteNetworkSettings(args: DeleteNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNetworkSettingsCommandOutput>;
|
|
177
143
|
deleteNetworkSettings(args: DeleteNetworkSettingsCommandInput, cb: (err: any, data?: DeleteNetworkSettingsCommandOutput) => void): void;
|
|
178
144
|
deleteNetworkSettings(args: DeleteNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNetworkSettingsCommandOutput) => void): void;
|
|
179
145
|
/**
|
|
180
|
-
* @
|
|
181
|
-
* <p>Deletes a web portal.</p>
|
|
146
|
+
* @see {@link DeletePortalCommand}
|
|
182
147
|
*/
|
|
183
148
|
deletePortal(args: DeletePortalCommandInput, options?: __HttpHandlerOptions): Promise<DeletePortalCommandOutput>;
|
|
184
149
|
deletePortal(args: DeletePortalCommandInput, cb: (err: any, data?: DeletePortalCommandOutput) => void): void;
|
|
185
150
|
deletePortal(args: DeletePortalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePortalCommandOutput) => void): void;
|
|
186
151
|
/**
|
|
187
|
-
* @
|
|
188
|
-
* <p>Deletes the trust store.</p>
|
|
152
|
+
* @see {@link DeleteTrustStoreCommand}
|
|
189
153
|
*/
|
|
190
154
|
deleteTrustStore(args: DeleteTrustStoreCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTrustStoreCommandOutput>;
|
|
191
155
|
deleteTrustStore(args: DeleteTrustStoreCommandInput, cb: (err: any, data?: DeleteTrustStoreCommandOutput) => void): void;
|
|
192
156
|
deleteTrustStore(args: DeleteTrustStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTrustStoreCommandOutput) => void): void;
|
|
193
157
|
/**
|
|
194
|
-
* @
|
|
195
|
-
* <p>Deletes user access logging settings.</p>
|
|
158
|
+
* @see {@link DeleteUserAccessLoggingSettingsCommand}
|
|
196
159
|
*/
|
|
197
160
|
deleteUserAccessLoggingSettings(args: DeleteUserAccessLoggingSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUserAccessLoggingSettingsCommandOutput>;
|
|
198
161
|
deleteUserAccessLoggingSettings(args: DeleteUserAccessLoggingSettingsCommandInput, cb: (err: any, data?: DeleteUserAccessLoggingSettingsCommandOutput) => void): void;
|
|
199
162
|
deleteUserAccessLoggingSettings(args: DeleteUserAccessLoggingSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUserAccessLoggingSettingsCommandOutput) => void): void;
|
|
200
163
|
/**
|
|
201
|
-
* @
|
|
202
|
-
* <p>Deletes user settings.</p>
|
|
164
|
+
* @see {@link DeleteUserSettingsCommand}
|
|
203
165
|
*/
|
|
204
166
|
deleteUserSettings(args: DeleteUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DeleteUserSettingsCommandOutput>;
|
|
205
167
|
deleteUserSettings(args: DeleteUserSettingsCommandInput, cb: (err: any, data?: DeleteUserSettingsCommandOutput) => void): void;
|
|
206
168
|
deleteUserSettings(args: DeleteUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteUserSettingsCommandOutput) => void): void;
|
|
207
169
|
/**
|
|
208
|
-
* @
|
|
209
|
-
* <p>Disassociates browser settings from a web portal.</p>
|
|
170
|
+
* @see {@link DisassociateBrowserSettingsCommand}
|
|
210
171
|
*/
|
|
211
172
|
disassociateBrowserSettings(args: DisassociateBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateBrowserSettingsCommandOutput>;
|
|
212
173
|
disassociateBrowserSettings(args: DisassociateBrowserSettingsCommandInput, cb: (err: any, data?: DisassociateBrowserSettingsCommandOutput) => void): void;
|
|
213
174
|
disassociateBrowserSettings(args: DisassociateBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateBrowserSettingsCommandOutput) => void): void;
|
|
214
175
|
/**
|
|
215
|
-
* @
|
|
216
|
-
* <p>Disassociates network settings from a web portal.</p>
|
|
176
|
+
* @see {@link DisassociateNetworkSettingsCommand}
|
|
217
177
|
*/
|
|
218
178
|
disassociateNetworkSettings(args: DisassociateNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateNetworkSettingsCommandOutput>;
|
|
219
179
|
disassociateNetworkSettings(args: DisassociateNetworkSettingsCommandInput, cb: (err: any, data?: DisassociateNetworkSettingsCommandOutput) => void): void;
|
|
220
180
|
disassociateNetworkSettings(args: DisassociateNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateNetworkSettingsCommandOutput) => void): void;
|
|
221
181
|
/**
|
|
222
|
-
* @
|
|
223
|
-
* <p>Disassociates a trust store from a web portal.</p>
|
|
182
|
+
* @see {@link DisassociateTrustStoreCommand}
|
|
224
183
|
*/
|
|
225
184
|
disassociateTrustStore(args: DisassociateTrustStoreCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateTrustStoreCommandOutput>;
|
|
226
185
|
disassociateTrustStore(args: DisassociateTrustStoreCommandInput, cb: (err: any, data?: DisassociateTrustStoreCommandOutput) => void): void;
|
|
227
186
|
disassociateTrustStore(args: DisassociateTrustStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateTrustStoreCommandOutput) => void): void;
|
|
228
187
|
/**
|
|
229
|
-
* @
|
|
230
|
-
* <p>Disassociates user access logging settings from a web portal.</p>
|
|
188
|
+
* @see {@link DisassociateUserAccessLoggingSettingsCommand}
|
|
231
189
|
*/
|
|
232
190
|
disassociateUserAccessLoggingSettings(args: DisassociateUserAccessLoggingSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateUserAccessLoggingSettingsCommandOutput>;
|
|
233
191
|
disassociateUserAccessLoggingSettings(args: DisassociateUserAccessLoggingSettingsCommandInput, cb: (err: any, data?: DisassociateUserAccessLoggingSettingsCommandOutput) => void): void;
|
|
234
192
|
disassociateUserAccessLoggingSettings(args: DisassociateUserAccessLoggingSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateUserAccessLoggingSettingsCommandOutput) => void): void;
|
|
235
193
|
/**
|
|
236
|
-
* @
|
|
237
|
-
* <p>Disassociates user settings from a web portal.</p>
|
|
194
|
+
* @see {@link DisassociateUserSettingsCommand}
|
|
238
195
|
*/
|
|
239
196
|
disassociateUserSettings(args: DisassociateUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateUserSettingsCommandOutput>;
|
|
240
197
|
disassociateUserSettings(args: DisassociateUserSettingsCommandInput, cb: (err: any, data?: DisassociateUserSettingsCommandOutput) => void): void;
|
|
241
198
|
disassociateUserSettings(args: DisassociateUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateUserSettingsCommandOutput) => void): void;
|
|
242
199
|
/**
|
|
243
|
-
* @
|
|
244
|
-
* <p>Gets browser settings.</p>
|
|
200
|
+
* @see {@link GetBrowserSettingsCommand}
|
|
245
201
|
*/
|
|
246
202
|
getBrowserSettings(args: GetBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetBrowserSettingsCommandOutput>;
|
|
247
203
|
getBrowserSettings(args: GetBrowserSettingsCommandInput, cb: (err: any, data?: GetBrowserSettingsCommandOutput) => void): void;
|
|
248
204
|
getBrowserSettings(args: GetBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBrowserSettingsCommandOutput) => void): void;
|
|
249
205
|
/**
|
|
250
|
-
* @
|
|
251
|
-
* <p>Gets the identity provider.</p>
|
|
206
|
+
* @see {@link GetIdentityProviderCommand}
|
|
252
207
|
*/
|
|
253
208
|
getIdentityProvider(args: GetIdentityProviderCommandInput, options?: __HttpHandlerOptions): Promise<GetIdentityProviderCommandOutput>;
|
|
254
209
|
getIdentityProvider(args: GetIdentityProviderCommandInput, cb: (err: any, data?: GetIdentityProviderCommandOutput) => void): void;
|
|
255
210
|
getIdentityProvider(args: GetIdentityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetIdentityProviderCommandOutput) => void): void;
|
|
256
211
|
/**
|
|
257
|
-
* @
|
|
258
|
-
* <p>Gets the network settings.</p>
|
|
212
|
+
* @see {@link GetNetworkSettingsCommand}
|
|
259
213
|
*/
|
|
260
214
|
getNetworkSettings(args: GetNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetNetworkSettingsCommandOutput>;
|
|
261
215
|
getNetworkSettings(args: GetNetworkSettingsCommandInput, cb: (err: any, data?: GetNetworkSettingsCommandOutput) => void): void;
|
|
262
216
|
getNetworkSettings(args: GetNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetNetworkSettingsCommandOutput) => void): void;
|
|
263
217
|
/**
|
|
264
|
-
* @
|
|
265
|
-
* <p>Gets the web portal.</p>
|
|
218
|
+
* @see {@link GetPortalCommand}
|
|
266
219
|
*/
|
|
267
220
|
getPortal(args: GetPortalCommandInput, options?: __HttpHandlerOptions): Promise<GetPortalCommandOutput>;
|
|
268
221
|
getPortal(args: GetPortalCommandInput, cb: (err: any, data?: GetPortalCommandOutput) => void): void;
|
|
269
222
|
getPortal(args: GetPortalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPortalCommandOutput) => void): void;
|
|
270
223
|
/**
|
|
271
|
-
* @
|
|
272
|
-
* <p>Gets the service provider metadata.</p>
|
|
224
|
+
* @see {@link GetPortalServiceProviderMetadataCommand}
|
|
273
225
|
*/
|
|
274
226
|
getPortalServiceProviderMetadata(args: GetPortalServiceProviderMetadataCommandInput, options?: __HttpHandlerOptions): Promise<GetPortalServiceProviderMetadataCommandOutput>;
|
|
275
227
|
getPortalServiceProviderMetadata(args: GetPortalServiceProviderMetadataCommandInput, cb: (err: any, data?: GetPortalServiceProviderMetadataCommandOutput) => void): void;
|
|
276
228
|
getPortalServiceProviderMetadata(args: GetPortalServiceProviderMetadataCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPortalServiceProviderMetadataCommandOutput) => void): void;
|
|
277
229
|
/**
|
|
278
|
-
* @
|
|
279
|
-
* <p>Gets the trust store.</p>
|
|
230
|
+
* @see {@link GetTrustStoreCommand}
|
|
280
231
|
*/
|
|
281
232
|
getTrustStore(args: GetTrustStoreCommandInput, options?: __HttpHandlerOptions): Promise<GetTrustStoreCommandOutput>;
|
|
282
233
|
getTrustStore(args: GetTrustStoreCommandInput, cb: (err: any, data?: GetTrustStoreCommandOutput) => void): void;
|
|
283
234
|
getTrustStore(args: GetTrustStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTrustStoreCommandOutput) => void): void;
|
|
284
235
|
/**
|
|
285
|
-
* @
|
|
286
|
-
* <p>Gets the trust store certificate.</p>
|
|
236
|
+
* @see {@link GetTrustStoreCertificateCommand}
|
|
287
237
|
*/
|
|
288
238
|
getTrustStoreCertificate(args: GetTrustStoreCertificateCommandInput, options?: __HttpHandlerOptions): Promise<GetTrustStoreCertificateCommandOutput>;
|
|
289
239
|
getTrustStoreCertificate(args: GetTrustStoreCertificateCommandInput, cb: (err: any, data?: GetTrustStoreCertificateCommandOutput) => void): void;
|
|
290
240
|
getTrustStoreCertificate(args: GetTrustStoreCertificateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTrustStoreCertificateCommandOutput) => void): void;
|
|
291
241
|
/**
|
|
292
|
-
* @
|
|
293
|
-
* <p>Gets user access logging settings.</p>
|
|
242
|
+
* @see {@link GetUserAccessLoggingSettingsCommand}
|
|
294
243
|
*/
|
|
295
244
|
getUserAccessLoggingSettings(args: GetUserAccessLoggingSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetUserAccessLoggingSettingsCommandOutput>;
|
|
296
245
|
getUserAccessLoggingSettings(args: GetUserAccessLoggingSettingsCommandInput, cb: (err: any, data?: GetUserAccessLoggingSettingsCommandOutput) => void): void;
|
|
297
246
|
getUserAccessLoggingSettings(args: GetUserAccessLoggingSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUserAccessLoggingSettingsCommandOutput) => void): void;
|
|
298
247
|
/**
|
|
299
|
-
* @
|
|
300
|
-
* <p>Gets user settings.</p>
|
|
248
|
+
* @see {@link GetUserSettingsCommand}
|
|
301
249
|
*/
|
|
302
250
|
getUserSettings(args: GetUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetUserSettingsCommandOutput>;
|
|
303
251
|
getUserSettings(args: GetUserSettingsCommandInput, cb: (err: any, data?: GetUserSettingsCommandOutput) => void): void;
|
|
304
252
|
getUserSettings(args: GetUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetUserSettingsCommandOutput) => void): void;
|
|
305
253
|
/**
|
|
306
|
-
* @
|
|
307
|
-
* <p>Retrieves a list of browser settings.</p>
|
|
254
|
+
* @see {@link ListBrowserSettingsCommand}
|
|
308
255
|
*/
|
|
309
256
|
listBrowserSettings(args: ListBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<ListBrowserSettingsCommandOutput>;
|
|
310
257
|
listBrowserSettings(args: ListBrowserSettingsCommandInput, cb: (err: any, data?: ListBrowserSettingsCommandOutput) => void): void;
|
|
311
258
|
listBrowserSettings(args: ListBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBrowserSettingsCommandOutput) => void): void;
|
|
312
259
|
/**
|
|
313
|
-
* @
|
|
314
|
-
* <p>Retrieves a list of identity providers for a specific web portal.</p>
|
|
260
|
+
* @see {@link ListIdentityProvidersCommand}
|
|
315
261
|
*/
|
|
316
262
|
listIdentityProviders(args: ListIdentityProvidersCommandInput, options?: __HttpHandlerOptions): Promise<ListIdentityProvidersCommandOutput>;
|
|
317
263
|
listIdentityProviders(args: ListIdentityProvidersCommandInput, cb: (err: any, data?: ListIdentityProvidersCommandOutput) => void): void;
|
|
318
264
|
listIdentityProviders(args: ListIdentityProvidersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListIdentityProvidersCommandOutput) => void): void;
|
|
319
265
|
/**
|
|
320
|
-
* @
|
|
321
|
-
* <p>Retrieves a list of network settings.</p>
|
|
266
|
+
* @see {@link ListNetworkSettingsCommand}
|
|
322
267
|
*/
|
|
323
268
|
listNetworkSettings(args: ListNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<ListNetworkSettingsCommandOutput>;
|
|
324
269
|
listNetworkSettings(args: ListNetworkSettingsCommandInput, cb: (err: any, data?: ListNetworkSettingsCommandOutput) => void): void;
|
|
325
270
|
listNetworkSettings(args: ListNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNetworkSettingsCommandOutput) => void): void;
|
|
326
271
|
/**
|
|
327
|
-
* @
|
|
328
|
-
* <p>Retrieves a list or web portals.</p>
|
|
272
|
+
* @see {@link ListPortalsCommand}
|
|
329
273
|
*/
|
|
330
274
|
listPortals(args: ListPortalsCommandInput, options?: __HttpHandlerOptions): Promise<ListPortalsCommandOutput>;
|
|
331
275
|
listPortals(args: ListPortalsCommandInput, cb: (err: any, data?: ListPortalsCommandOutput) => void): void;
|
|
332
276
|
listPortals(args: ListPortalsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPortalsCommandOutput) => void): void;
|
|
333
277
|
/**
|
|
334
|
-
* @
|
|
335
|
-
* <p>Retrieves a list of tags for a resource.</p>
|
|
278
|
+
* @see {@link ListTagsForResourceCommand}
|
|
336
279
|
*/
|
|
337
280
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
338
281
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
339
282
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
340
283
|
/**
|
|
341
|
-
* @
|
|
342
|
-
* <p>Retrieves a list of trust store certificates.</p>
|
|
284
|
+
* @see {@link ListTrustStoreCertificatesCommand}
|
|
343
285
|
*/
|
|
344
286
|
listTrustStoreCertificates(args: ListTrustStoreCertificatesCommandInput, options?: __HttpHandlerOptions): Promise<ListTrustStoreCertificatesCommandOutput>;
|
|
345
287
|
listTrustStoreCertificates(args: ListTrustStoreCertificatesCommandInput, cb: (err: any, data?: ListTrustStoreCertificatesCommandOutput) => void): void;
|
|
346
288
|
listTrustStoreCertificates(args: ListTrustStoreCertificatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrustStoreCertificatesCommandOutput) => void): void;
|
|
347
289
|
/**
|
|
348
|
-
* @
|
|
349
|
-
* <p>Retrieves a list of trust stores.</p>
|
|
290
|
+
* @see {@link ListTrustStoresCommand}
|
|
350
291
|
*/
|
|
351
292
|
listTrustStores(args: ListTrustStoresCommandInput, options?: __HttpHandlerOptions): Promise<ListTrustStoresCommandOutput>;
|
|
352
293
|
listTrustStores(args: ListTrustStoresCommandInput, cb: (err: any, data?: ListTrustStoresCommandOutput) => void): void;
|
|
353
294
|
listTrustStores(args: ListTrustStoresCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTrustStoresCommandOutput) => void): void;
|
|
354
295
|
/**
|
|
355
|
-
* @
|
|
356
|
-
* <p>Retrieves a list of user access logging settings.</p>
|
|
296
|
+
* @see {@link ListUserAccessLoggingSettingsCommand}
|
|
357
297
|
*/
|
|
358
298
|
listUserAccessLoggingSettings(args: ListUserAccessLoggingSettingsCommandInput, options?: __HttpHandlerOptions): Promise<ListUserAccessLoggingSettingsCommandOutput>;
|
|
359
299
|
listUserAccessLoggingSettings(args: ListUserAccessLoggingSettingsCommandInput, cb: (err: any, data?: ListUserAccessLoggingSettingsCommandOutput) => void): void;
|
|
360
300
|
listUserAccessLoggingSettings(args: ListUserAccessLoggingSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUserAccessLoggingSettingsCommandOutput) => void): void;
|
|
361
301
|
/**
|
|
362
|
-
* @
|
|
363
|
-
* <p>Retrieves a list of user settings.</p>
|
|
302
|
+
* @see {@link ListUserSettingsCommand}
|
|
364
303
|
*/
|
|
365
304
|
listUserSettings(args: ListUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<ListUserSettingsCommandOutput>;
|
|
366
305
|
listUserSettings(args: ListUserSettingsCommandInput, cb: (err: any, data?: ListUserSettingsCommandOutput) => void): void;
|
|
367
306
|
listUserSettings(args: ListUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListUserSettingsCommandOutput) => void): void;
|
|
368
307
|
/**
|
|
369
|
-
* @
|
|
370
|
-
* <p>Adds or overwrites one or more tags for the specified resource.</p>
|
|
308
|
+
* @see {@link TagResourceCommand}
|
|
371
309
|
*/
|
|
372
310
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
373
311
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
374
312
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
375
313
|
/**
|
|
376
|
-
* @
|
|
377
|
-
* <p>Removes one or more tags from the specified resource.</p>
|
|
314
|
+
* @see {@link UntagResourceCommand}
|
|
378
315
|
*/
|
|
379
316
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
380
317
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
381
318
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
382
319
|
/**
|
|
383
|
-
* @
|
|
384
|
-
* <p>Updates browser settings.</p>
|
|
320
|
+
* @see {@link UpdateBrowserSettingsCommand}
|
|
385
321
|
*/
|
|
386
322
|
updateBrowserSettings(args: UpdateBrowserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateBrowserSettingsCommandOutput>;
|
|
387
323
|
updateBrowserSettings(args: UpdateBrowserSettingsCommandInput, cb: (err: any, data?: UpdateBrowserSettingsCommandOutput) => void): void;
|
|
388
324
|
updateBrowserSettings(args: UpdateBrowserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateBrowserSettingsCommandOutput) => void): void;
|
|
389
325
|
/**
|
|
390
|
-
* @
|
|
391
|
-
* <p>Updates the identity provider. </p>
|
|
326
|
+
* @see {@link UpdateIdentityProviderCommand}
|
|
392
327
|
*/
|
|
393
328
|
updateIdentityProvider(args: UpdateIdentityProviderCommandInput, options?: __HttpHandlerOptions): Promise<UpdateIdentityProviderCommandOutput>;
|
|
394
329
|
updateIdentityProvider(args: UpdateIdentityProviderCommandInput, cb: (err: any, data?: UpdateIdentityProviderCommandOutput) => void): void;
|
|
395
330
|
updateIdentityProvider(args: UpdateIdentityProviderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateIdentityProviderCommandOutput) => void): void;
|
|
396
331
|
/**
|
|
397
|
-
* @
|
|
398
|
-
* <p>Updates network settings.</p>
|
|
332
|
+
* @see {@link UpdateNetworkSettingsCommand}
|
|
399
333
|
*/
|
|
400
334
|
updateNetworkSettings(args: UpdateNetworkSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNetworkSettingsCommandOutput>;
|
|
401
335
|
updateNetworkSettings(args: UpdateNetworkSettingsCommandInput, cb: (err: any, data?: UpdateNetworkSettingsCommandOutput) => void): void;
|
|
402
336
|
updateNetworkSettings(args: UpdateNetworkSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNetworkSettingsCommandOutput) => void): void;
|
|
403
337
|
/**
|
|
404
|
-
* @
|
|
405
|
-
* <p>Updates a web portal.</p>
|
|
338
|
+
* @see {@link UpdatePortalCommand}
|
|
406
339
|
*/
|
|
407
340
|
updatePortal(args: UpdatePortalCommandInput, options?: __HttpHandlerOptions): Promise<UpdatePortalCommandOutput>;
|
|
408
341
|
updatePortal(args: UpdatePortalCommandInput, cb: (err: any, data?: UpdatePortalCommandOutput) => void): void;
|
|
409
342
|
updatePortal(args: UpdatePortalCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdatePortalCommandOutput) => void): void;
|
|
410
343
|
/**
|
|
411
|
-
* @
|
|
412
|
-
* <p>Updates the trust store.</p>
|
|
344
|
+
* @see {@link UpdateTrustStoreCommand}
|
|
413
345
|
*/
|
|
414
346
|
updateTrustStore(args: UpdateTrustStoreCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTrustStoreCommandOutput>;
|
|
415
347
|
updateTrustStore(args: UpdateTrustStoreCommandInput, cb: (err: any, data?: UpdateTrustStoreCommandOutput) => void): void;
|
|
416
348
|
updateTrustStore(args: UpdateTrustStoreCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTrustStoreCommandOutput) => void): void;
|
|
417
349
|
/**
|
|
418
|
-
* @
|
|
419
|
-
* <p>Updates the user access logging settings.</p>
|
|
350
|
+
* @see {@link UpdateUserAccessLoggingSettingsCommand}
|
|
420
351
|
*/
|
|
421
352
|
updateUserAccessLoggingSettings(args: UpdateUserAccessLoggingSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserAccessLoggingSettingsCommandOutput>;
|
|
422
353
|
updateUserAccessLoggingSettings(args: UpdateUserAccessLoggingSettingsCommandInput, cb: (err: any, data?: UpdateUserAccessLoggingSettingsCommandOutput) => void): void;
|
|
423
354
|
updateUserAccessLoggingSettings(args: UpdateUserAccessLoggingSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserAccessLoggingSettingsCommandOutput) => void): void;
|
|
424
355
|
/**
|
|
425
|
-
* @
|
|
426
|
-
* <p>Updates the user settings.</p>
|
|
356
|
+
* @see {@link UpdateUserSettingsCommand}
|
|
427
357
|
*/
|
|
428
358
|
updateUserSettings(args: UpdateUserSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateUserSettingsCommandOutput>;
|
|
429
359
|
updateUserSettings(args: UpdateUserSettingsCommandInput, cb: (err: any, data?: UpdateUserSettingsCommandOutput) => void): void;
|
|
430
360
|
updateUserSettings(args: UpdateUserSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateUserSettingsCommandOutput) => void): void;
|
|
431
361
|
}
|
|
362
|
+
/**
|
|
363
|
+
* @public
|
|
364
|
+
* <p>WorkSpaces Web is a low cost, fully managed WorkSpace built specifically to facilitate
|
|
365
|
+
* secure, web-based workloads. WorkSpaces Web makes it easy for customers to safely provide
|
|
366
|
+
* their employees with access to internal websites and SaaS web applications without the
|
|
367
|
+
* administrative burden of appliances or specialized client software. WorkSpaces Web provides
|
|
368
|
+
* simple policy tools tailored for user interactions, while offloading common tasks like
|
|
369
|
+
* capacity management, scaling, and maintaining browser images.</p>
|
|
370
|
+
*/
|
|
371
|
+
export declare class WorkSpacesWeb extends WorkSpacesWebClient implements WorkSpacesWeb {
|
|
372
|
+
}
|
|
@@ -204,7 +204,7 @@ import {
|
|
|
204
204
|
UpdateUserSettingsCommandOutput,
|
|
205
205
|
} from "./commands/UpdateUserSettingsCommand";
|
|
206
206
|
import { WorkSpacesWebClient } from "./WorkSpacesWebClient";
|
|
207
|
-
export
|
|
207
|
+
export interface WorkSpacesWeb {
|
|
208
208
|
associateBrowserSettings(
|
|
209
209
|
args: AssociateBrowserSettingsCommandInput,
|
|
210
210
|
options?: __HttpHandlerOptions
|
|
@@ -881,3 +881,6 @@ export declare class WorkSpacesWeb extends WorkSpacesWebClient {
|
|
|
881
881
|
cb: (err: any, data?: UpdateUserSettingsCommandOutput) => void
|
|
882
882
|
): void;
|
|
883
883
|
}
|
|
884
|
+
export declare class WorkSpacesWeb
|
|
885
|
+
extends WorkSpacesWebClient
|
|
886
|
+
implements WorkSpacesWeb {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-workspaces-web",
|
|
3
3
|
"description": "AWS SDK for JavaScript Workspaces Web Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.319.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.319.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.319.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -36,19 +36,19 @@
|
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.310.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.310.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.310.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.319.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.310.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.316.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.316.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.316.0",
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|