@aws-sdk/client-workspaces-web 3.295.0 → 3.297.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-types/WorkSpacesWeb.d.ts +52 -0
- package/dist-types/WorkSpacesWebClient.d.ts +24 -4
- package/dist-types/commands/AssociateBrowserSettingsCommand.d.ts +16 -0
- package/dist-types/commands/AssociateNetworkSettingsCommand.d.ts +16 -0
- package/dist-types/commands/AssociateTrustStoreCommand.d.ts +16 -0
- package/dist-types/commands/AssociateUserAccessLoggingSettingsCommand.d.ts +16 -0
- package/dist-types/commands/AssociateUserSettingsCommand.d.ts +16 -0
- package/dist-types/commands/CreateBrowserSettingsCommand.d.ts +16 -0
- package/dist-types/commands/CreateIdentityProviderCommand.d.ts +16 -0
- package/dist-types/commands/CreateNetworkSettingsCommand.d.ts +16 -0
- package/dist-types/commands/CreatePortalCommand.d.ts +16 -0
- package/dist-types/commands/CreateTrustStoreCommand.d.ts +16 -0
- package/dist-types/commands/CreateUserAccessLoggingSettingsCommand.d.ts +16 -0
- package/dist-types/commands/CreateUserSettingsCommand.d.ts +16 -0
- package/dist-types/commands/DeleteBrowserSettingsCommand.d.ts +16 -0
- package/dist-types/commands/DeleteIdentityProviderCommand.d.ts +16 -0
- package/dist-types/commands/DeleteNetworkSettingsCommand.d.ts +16 -0
- package/dist-types/commands/DeletePortalCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTrustStoreCommand.d.ts +16 -0
- package/dist-types/commands/DeleteUserAccessLoggingSettingsCommand.d.ts +16 -0
- package/dist-types/commands/DeleteUserSettingsCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateBrowserSettingsCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateNetworkSettingsCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateTrustStoreCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateUserAccessLoggingSettingsCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateUserSettingsCommand.d.ts +16 -0
- package/dist-types/commands/GetBrowserSettingsCommand.d.ts +16 -0
- package/dist-types/commands/GetIdentityProviderCommand.d.ts +16 -0
- package/dist-types/commands/GetNetworkSettingsCommand.d.ts +16 -0
- package/dist-types/commands/GetPortalCommand.d.ts +16 -0
- package/dist-types/commands/GetPortalServiceProviderMetadataCommand.d.ts +16 -0
- package/dist-types/commands/GetTrustStoreCertificateCommand.d.ts +16 -0
- package/dist-types/commands/GetTrustStoreCommand.d.ts +16 -0
- package/dist-types/commands/GetUserAccessLoggingSettingsCommand.d.ts +16 -0
- package/dist-types/commands/GetUserSettingsCommand.d.ts +16 -0
- package/dist-types/commands/ListBrowserSettingsCommand.d.ts +16 -0
- package/dist-types/commands/ListIdentityProvidersCommand.d.ts +16 -0
- package/dist-types/commands/ListNetworkSettingsCommand.d.ts +16 -0
- package/dist-types/commands/ListPortalsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListTrustStoreCertificatesCommand.d.ts +16 -0
- package/dist-types/commands/ListTrustStoresCommand.d.ts +16 -0
- package/dist-types/commands/ListUserAccessLoggingSettingsCommand.d.ts +16 -0
- package/dist-types/commands/ListUserSettingsCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateBrowserSettingsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateIdentityProviderCommand.d.ts +16 -0
- package/dist-types/commands/UpdateNetworkSettingsCommand.d.ts +16 -0
- package/dist-types/commands/UpdatePortalCommand.d.ts +16 -0
- package/dist-types/commands/UpdateTrustStoreCommand.d.ts +16 -0
- package/dist-types/commands/UpdateUserAccessLoggingSettingsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateUserSettingsCommand.d.ts +16 -0
- package/dist-types/models/WorkSpacesWebServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +353 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListBrowserSettingsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListIdentityProvidersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListNetworkSettingsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPortalsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTrustStoreCertificatesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTrustStoresPaginator.d.ts +3 -0
- package/dist-types/pagination/ListUserAccessLoggingSettingsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListUserSettingsPaginator.d.ts +3 -0
- package/package.json +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AssociateUserAccessLoggingSettingsRequest, AssociateUserAccessLoggingSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AssociateUserAccessLoggingSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AssociateUserAccessLoggingSettingsCommandInput extends AssociateUserAccessLoggingSettingsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AssociateUserAccessLoggingSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AssociateUserAccessLoggingSettingsCommandOutput extends AssociateUserAccessLoggingSettingsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Associates a user access logging settings resource with a web portal.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface AssociateUserAccessLoggingSettingsCommandOutput extends Associa
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param AssociateUserAccessLoggingSettingsCommandInput - {@link AssociateUserAccessLoggingSettingsCommandInput}
|
|
34
|
+
* @returns {@link AssociateUserAccessLoggingSettingsCommandOutput}
|
|
28
35
|
* @see {@link AssociateUserAccessLoggingSettingsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link AssociateUserAccessLoggingSettingsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface AssociateUserAccessLoggingSettingsCommandOutput extends Associa
|
|
|
52
59
|
export declare class AssociateUserAccessLoggingSettingsCommand extends $Command<AssociateUserAccessLoggingSettingsCommandInput, AssociateUserAccessLoggingSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
53
60
|
readonly input: AssociateUserAccessLoggingSettingsCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: AssociateUserAccessLoggingSettingsCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateUserAccessLoggingSettingsCommandInput, AssociateUserAccessLoggingSettingsCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AssociateUserSettingsRequest, AssociateUserSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AssociateUserSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AssociateUserSettingsCommandInput extends AssociateUserSettingsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AssociateUserSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AssociateUserSettingsCommandOutput extends AssociateUserSettingsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Associates a user settings resource with a web portal.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface AssociateUserSettingsCommandOutput extends AssociateUserSetting
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param AssociateUserSettingsCommandInput - {@link AssociateUserSettingsCommandInput}
|
|
34
|
+
* @returns {@link AssociateUserSettingsCommandOutput}
|
|
28
35
|
* @see {@link AssociateUserSettingsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link AssociateUserSettingsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface AssociateUserSettingsCommandOutput extends AssociateUserSetting
|
|
|
52
59
|
export declare class AssociateUserSettingsCommand extends $Command<AssociateUserSettingsCommandInput, AssociateUserSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
53
60
|
readonly input: AssociateUserSettingsCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: AssociateUserSettingsCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateUserSettingsCommandInput, AssociateUserSettingsCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateBrowserSettingsRequest, CreateBrowserSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateBrowserSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateBrowserSettingsCommandInput extends CreateBrowserSettingsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateBrowserSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateBrowserSettingsCommandOutput extends CreateBrowserSettingsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a browser settings resource that can be associated with a web portal. Once
|
|
18
23
|
* associated with a web portal, browser settings control how the browser will behave once a
|
|
19
24
|
* user starts a streaming session for the web portal. </p>
|
|
@@ -27,6 +32,8 @@ export interface CreateBrowserSettingsCommandOutput extends CreateBrowserSetting
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param CreateBrowserSettingsCommandInput - {@link CreateBrowserSettingsCommandInput}
|
|
36
|
+
* @returns {@link CreateBrowserSettingsCommandOutput}
|
|
30
37
|
* @see {@link CreateBrowserSettingsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link CreateBrowserSettingsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface CreateBrowserSettingsCommandOutput extends CreateBrowserSetting
|
|
|
57
64
|
export declare class CreateBrowserSettingsCommand extends $Command<CreateBrowserSettingsCommandInput, CreateBrowserSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
58
65
|
readonly input: CreateBrowserSettingsCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: CreateBrowserSettingsCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateBrowserSettingsCommandInput, CreateBrowserSettingsCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateIdentityProviderRequest, CreateIdentityProviderResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateIdentityProviderCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateIdentityProviderCommandInput extends CreateIdentityProviderRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateIdentityProviderCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateIdentityProviderCommandOutput extends CreateIdentityProviderResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an identity provider resource that is then associated with a web portal.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateIdentityProviderCommandOutput extends CreateIdentityProvi
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateIdentityProviderCommandInput - {@link CreateIdentityProviderCommandInput}
|
|
34
|
+
* @returns {@link CreateIdentityProviderCommandOutput}
|
|
28
35
|
* @see {@link CreateIdentityProviderCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateIdentityProviderCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface CreateIdentityProviderCommandOutput extends CreateIdentityProvi
|
|
|
55
62
|
export declare class CreateIdentityProviderCommand extends $Command<CreateIdentityProviderCommandInput, CreateIdentityProviderCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
56
63
|
readonly input: CreateIdentityProviderCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: CreateIdentityProviderCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateIdentityProviderCommandInput, CreateIdentityProviderCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateNetworkSettingsRequest, CreateNetworkSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateNetworkSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateNetworkSettingsCommandInput extends CreateNetworkSettingsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateNetworkSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateNetworkSettingsCommandOutput extends CreateNetworkSettingsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a network settings resource that can be associated with a web portal. Once
|
|
18
23
|
* associated with a web portal, network settings define how streaming instances will connect
|
|
19
24
|
* with your specified VPC. </p>
|
|
@@ -27,6 +32,8 @@ export interface CreateNetworkSettingsCommandOutput extends CreateNetworkSetting
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param CreateNetworkSettingsCommandInput - {@link CreateNetworkSettingsCommandInput}
|
|
36
|
+
* @returns {@link CreateNetworkSettingsCommandOutput}
|
|
30
37
|
* @see {@link CreateNetworkSettingsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link CreateNetworkSettingsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface CreateNetworkSettingsCommandOutput extends CreateNetworkSetting
|
|
|
54
61
|
export declare class CreateNetworkSettingsCommand extends $Command<CreateNetworkSettingsCommandInput, CreateNetworkSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
55
62
|
readonly input: CreateNetworkSettingsCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: CreateNetworkSettingsCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateNetworkSettingsCommandInput, CreateNetworkSettingsCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreatePortalRequest, CreatePortalResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreatePortalCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreatePortalCommandInput extends CreatePortalRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreatePortalCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreatePortalCommandOutput extends CreatePortalResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a web portal.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreatePortalCommandOutput extends CreatePortalResponse, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreatePortalCommandInput - {@link CreatePortalCommandInput}
|
|
34
|
+
* @returns {@link CreatePortalCommandOutput}
|
|
28
35
|
* @see {@link CreatePortalCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreatePortalCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface CreatePortalCommandOutput extends CreatePortalResponse, __Metad
|
|
|
55
62
|
export declare class CreatePortalCommand extends $Command<CreatePortalCommandInput, CreatePortalCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
56
63
|
readonly input: CreatePortalCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: CreatePortalCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreatePortalCommandInput, CreatePortalCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateTrustStoreRequest, CreateTrustStoreResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateTrustStoreCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateTrustStoreCommandInput extends CreateTrustStoreRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateTrustStoreCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateTrustStoreCommandOutput extends CreateTrustStoreResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a trust store that can be associated with a web portal. A trust store contains
|
|
18
23
|
* certificate authority (CA) certificates. Once associated with a web portal, the browser in
|
|
19
24
|
* a streaming session will recognize certificates that have been issued using any of the CAs
|
|
@@ -29,6 +34,8 @@ export interface CreateTrustStoreCommandOutput extends CreateTrustStoreResponse,
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param CreateTrustStoreCommandInput - {@link CreateTrustStoreCommandInput}
|
|
38
|
+
* @returns {@link CreateTrustStoreCommandOutput}
|
|
32
39
|
* @see {@link CreateTrustStoreCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link CreateTrustStoreCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface CreateTrustStoreCommandOutput extends CreateTrustStoreResponse,
|
|
|
56
63
|
export declare class CreateTrustStoreCommand extends $Command<CreateTrustStoreCommandInput, CreateTrustStoreCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
57
64
|
readonly input: CreateTrustStoreCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: CreateTrustStoreCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateTrustStoreCommandInput, CreateTrustStoreCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateUserAccessLoggingSettingsRequest, CreateUserAccessLoggingSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateUserAccessLoggingSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateUserAccessLoggingSettingsCommandInput extends CreateUserAccessLoggingSettingsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateUserAccessLoggingSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateUserAccessLoggingSettingsCommandOutput extends CreateUserAccessLoggingSettingsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a user access logging settings resource that can be associated with a web portal.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateUserAccessLoggingSettingsCommandOutput extends CreateUser
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateUserAccessLoggingSettingsCommandInput - {@link CreateUserAccessLoggingSettingsCommandInput}
|
|
34
|
+
* @returns {@link CreateUserAccessLoggingSettingsCommandOutput}
|
|
28
35
|
* @see {@link CreateUserAccessLoggingSettingsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateUserAccessLoggingSettingsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface CreateUserAccessLoggingSettingsCommandOutput extends CreateUser
|
|
|
52
59
|
export declare class CreateUserAccessLoggingSettingsCommand extends $Command<CreateUserAccessLoggingSettingsCommandInput, CreateUserAccessLoggingSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
53
60
|
readonly input: CreateUserAccessLoggingSettingsCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: CreateUserAccessLoggingSettingsCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateUserAccessLoggingSettingsCommandInput, CreateUserAccessLoggingSettingsCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateUserSettingsRequest, CreateUserSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateUserSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateUserSettingsCommandInput extends CreateUserSettingsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateUserSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateUserSettingsCommandOutput extends CreateUserSettingsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a user settings resource that can be associated with a web portal. Once
|
|
18
23
|
* associated with a web portal, user settings control how users can transfer data between a
|
|
19
24
|
* streaming session and the their local devices. </p>
|
|
@@ -27,6 +32,8 @@ export interface CreateUserSettingsCommandOutput extends CreateUserSettingsRespo
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param CreateUserSettingsCommandInput - {@link CreateUserSettingsCommandInput}
|
|
36
|
+
* @returns {@link CreateUserSettingsCommandOutput}
|
|
30
37
|
* @see {@link CreateUserSettingsCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link CreateUserSettingsCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface CreateUserSettingsCommandOutput extends CreateUserSettingsRespo
|
|
|
54
61
|
export declare class CreateUserSettingsCommand extends $Command<CreateUserSettingsCommandInput, CreateUserSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
55
62
|
readonly input: CreateUserSettingsCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: CreateUserSettingsCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateUserSettingsCommandInput, CreateUserSettingsCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteBrowserSettingsRequest, DeleteBrowserSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteBrowserSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteBrowserSettingsCommandInput extends DeleteBrowserSettingsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteBrowserSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteBrowserSettingsCommandOutput extends DeleteBrowserSettingsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes browser settings.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteBrowserSettingsCommandOutput extends DeleteBrowserSetting
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteBrowserSettingsCommandInput - {@link DeleteBrowserSettingsCommandInput}
|
|
34
|
+
* @returns {@link DeleteBrowserSettingsCommandOutput}
|
|
28
35
|
* @see {@link DeleteBrowserSettingsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteBrowserSettingsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface DeleteBrowserSettingsCommandOutput extends DeleteBrowserSetting
|
|
|
49
56
|
export declare class DeleteBrowserSettingsCommand extends $Command<DeleteBrowserSettingsCommandInput, DeleteBrowserSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
50
57
|
readonly input: DeleteBrowserSettingsCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: DeleteBrowserSettingsCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteBrowserSettingsCommandInput, DeleteBrowserSettingsCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteIdentityProviderRequest, DeleteIdentityProviderResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteIdentityProviderCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteIdentityProviderCommandInput extends DeleteIdentityProviderRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteIdentityProviderCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteIdentityProviderCommandOutput extends DeleteIdentityProviderResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the identity provider.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteIdentityProviderCommandOutput extends DeleteIdentityProvi
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteIdentityProviderCommandInput - {@link DeleteIdentityProviderCommandInput}
|
|
34
|
+
* @returns {@link DeleteIdentityProviderCommandOutput}
|
|
28
35
|
* @see {@link DeleteIdentityProviderCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteIdentityProviderCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface DeleteIdentityProviderCommandOutput extends DeleteIdentityProvi
|
|
|
49
56
|
export declare class DeleteIdentityProviderCommand extends $Command<DeleteIdentityProviderCommandInput, DeleteIdentityProviderCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
50
57
|
readonly input: DeleteIdentityProviderCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: DeleteIdentityProviderCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteIdentityProviderCommandInput, DeleteIdentityProviderCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteNetworkSettingsRequest, DeleteNetworkSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteNetworkSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteNetworkSettingsCommandInput extends DeleteNetworkSettingsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteNetworkSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteNetworkSettingsCommandOutput extends DeleteNetworkSettingsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes network settings.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteNetworkSettingsCommandOutput extends DeleteNetworkSetting
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteNetworkSettingsCommandInput - {@link DeleteNetworkSettingsCommandInput}
|
|
34
|
+
* @returns {@link DeleteNetworkSettingsCommandOutput}
|
|
28
35
|
* @see {@link DeleteNetworkSettingsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteNetworkSettingsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface DeleteNetworkSettingsCommandOutput extends DeleteNetworkSetting
|
|
|
49
56
|
export declare class DeleteNetworkSettingsCommand extends $Command<DeleteNetworkSettingsCommandInput, DeleteNetworkSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
50
57
|
readonly input: DeleteNetworkSettingsCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: DeleteNetworkSettingsCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteNetworkSettingsCommandInput, DeleteNetworkSettingsCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|