@aws-sdk/client-workspaces-web 3.296.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 +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetPortalServiceProviderMetadataRequest, GetPortalServiceProviderMetadataResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetPortalServiceProviderMetadataCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetPortalServiceProviderMetadataCommandInput extends GetPortalServiceProviderMetadataRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetPortalServiceProviderMetadataCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetPortalServiceProviderMetadataCommandOutput extends GetPortalServiceProviderMetadataResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the service provider metadata.</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 GetPortalServiceProviderMetadataCommandOutput extends GetPortal
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetPortalServiceProviderMetadataCommandInput - {@link GetPortalServiceProviderMetadataCommandInput}
|
|
34
|
+
* @returns {@link GetPortalServiceProviderMetadataCommandOutput}
|
|
28
35
|
* @see {@link GetPortalServiceProviderMetadataCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetPortalServiceProviderMetadataCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetPortalServiceProviderMetadataCommandOutput extends GetPortal
|
|
|
49
56
|
export declare class GetPortalServiceProviderMetadataCommand extends $Command<GetPortalServiceProviderMetadataCommandInput, GetPortalServiceProviderMetadataCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
50
57
|
readonly input: GetPortalServiceProviderMetadataCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetPortalServiceProviderMetadataCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPortalServiceProviderMetadataCommandInput, GetPortalServiceProviderMetadataCommandOutput>;
|
|
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 { GetTrustStoreCertificateRequest, GetTrustStoreCertificateResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetTrustStoreCertificateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetTrustStoreCertificateCommandInput extends GetTrustStoreCertificateRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetTrustStoreCertificateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetTrustStoreCertificateCommandOutput extends GetTrustStoreCertificateResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the trust store certificate.</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 GetTrustStoreCertificateCommandOutput extends GetTrustStoreCert
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetTrustStoreCertificateCommandInput - {@link GetTrustStoreCertificateCommandInput}
|
|
34
|
+
* @returns {@link GetTrustStoreCertificateCommandOutput}
|
|
28
35
|
* @see {@link GetTrustStoreCertificateCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetTrustStoreCertificateCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetTrustStoreCertificateCommandOutput extends GetTrustStoreCert
|
|
|
49
56
|
export declare class GetTrustStoreCertificateCommand extends $Command<GetTrustStoreCertificateCommandInput, GetTrustStoreCertificateCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
50
57
|
readonly input: GetTrustStoreCertificateCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetTrustStoreCertificateCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTrustStoreCertificateCommandInput, GetTrustStoreCertificateCommandOutput>;
|
|
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 { GetTrustStoreRequest, GetTrustStoreResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetTrustStoreCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetTrustStoreCommandInput extends GetTrustStoreRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetTrustStoreCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetTrustStoreCommandOutput extends GetTrustStoreResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the trust store.</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 GetTrustStoreCommandOutput extends GetTrustStoreResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetTrustStoreCommandInput - {@link GetTrustStoreCommandInput}
|
|
34
|
+
* @returns {@link GetTrustStoreCommandOutput}
|
|
28
35
|
* @see {@link GetTrustStoreCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetTrustStoreCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetTrustStoreCommandOutput extends GetTrustStoreResponse, __Met
|
|
|
49
56
|
export declare class GetTrustStoreCommand extends $Command<GetTrustStoreCommandInput, GetTrustStoreCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
50
57
|
readonly input: GetTrustStoreCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetTrustStoreCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTrustStoreCommandInput, GetTrustStoreCommandOutput>;
|
|
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 { GetUserAccessLoggingSettingsRequest, GetUserAccessLoggingSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetUserAccessLoggingSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetUserAccessLoggingSettingsCommandInput extends GetUserAccessLoggingSettingsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetUserAccessLoggingSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetUserAccessLoggingSettingsCommandOutput extends GetUserAccessLoggingSettingsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets user access logging 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 GetUserAccessLoggingSettingsCommandOutput extends GetUserAccess
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetUserAccessLoggingSettingsCommandInput - {@link GetUserAccessLoggingSettingsCommandInput}
|
|
34
|
+
* @returns {@link GetUserAccessLoggingSettingsCommandOutput}
|
|
28
35
|
* @see {@link GetUserAccessLoggingSettingsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetUserAccessLoggingSettingsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetUserAccessLoggingSettingsCommandOutput extends GetUserAccess
|
|
|
49
56
|
export declare class GetUserAccessLoggingSettingsCommand extends $Command<GetUserAccessLoggingSettingsCommandInput, GetUserAccessLoggingSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
50
57
|
readonly input: GetUserAccessLoggingSettingsCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetUserAccessLoggingSettingsCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetUserAccessLoggingSettingsCommandInput, GetUserAccessLoggingSettingsCommandOutput>;
|
|
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 { GetUserSettingsRequest, GetUserSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetUserSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetUserSettingsCommandInput extends GetUserSettingsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetUserSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetUserSettingsCommandOutput extends GetUserSettingsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets user 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 GetUserSettingsCommandOutput extends GetUserSettingsResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetUserSettingsCommandInput - {@link GetUserSettingsCommandInput}
|
|
34
|
+
* @returns {@link GetUserSettingsCommandOutput}
|
|
28
35
|
* @see {@link GetUserSettingsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetUserSettingsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetUserSettingsCommandOutput extends GetUserSettingsResponse, _
|
|
|
49
56
|
export declare class GetUserSettingsCommand extends $Command<GetUserSettingsCommandInput, GetUserSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
50
57
|
readonly input: GetUserSettingsCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetUserSettingsCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetUserSettingsCommandInput, GetUserSettingsCommandOutput>;
|
|
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 { ListBrowserSettingsRequest, ListBrowserSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListBrowserSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListBrowserSettingsCommandInput extends ListBrowserSettingsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListBrowserSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListBrowserSettingsCommandOutput extends ListBrowserSettingsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of 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 ListBrowserSettingsCommandOutput extends ListBrowserSettingsRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListBrowserSettingsCommandInput - {@link ListBrowserSettingsCommandInput}
|
|
34
|
+
* @returns {@link ListBrowserSettingsCommandOutput}
|
|
28
35
|
* @see {@link ListBrowserSettingsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListBrowserSettingsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListBrowserSettingsCommandOutput extends ListBrowserSettingsRes
|
|
|
46
53
|
export declare class ListBrowserSettingsCommand extends $Command<ListBrowserSettingsCommandInput, ListBrowserSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
47
54
|
readonly input: ListBrowserSettingsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListBrowserSettingsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListBrowserSettingsCommandInput, ListBrowserSettingsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListIdentityProvidersRequest, ListIdentityProvidersResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListIdentityProvidersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListIdentityProvidersCommandInput extends ListIdentityProvidersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListIdentityProvidersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListIdentityProvidersCommandOutput extends ListIdentityProvidersResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of identity providers for a specific 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 ListIdentityProvidersCommandOutput extends ListIdentityProvider
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListIdentityProvidersCommandInput - {@link ListIdentityProvidersCommandInput}
|
|
34
|
+
* @returns {@link ListIdentityProvidersCommandOutput}
|
|
28
35
|
* @see {@link ListIdentityProvidersCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListIdentityProvidersCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListIdentityProvidersCommandOutput extends ListIdentityProvider
|
|
|
46
53
|
export declare class ListIdentityProvidersCommand extends $Command<ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
47
54
|
readonly input: ListIdentityProvidersCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListIdentityProvidersCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListIdentityProvidersCommandInput, ListIdentityProvidersCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListNetworkSettingsRequest, ListNetworkSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListNetworkSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListNetworkSettingsCommandInput extends ListNetworkSettingsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListNetworkSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListNetworkSettingsCommandOutput extends ListNetworkSettingsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of 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 ListNetworkSettingsCommandOutput extends ListNetworkSettingsRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListNetworkSettingsCommandInput - {@link ListNetworkSettingsCommandInput}
|
|
34
|
+
* @returns {@link ListNetworkSettingsCommandOutput}
|
|
28
35
|
* @see {@link ListNetworkSettingsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListNetworkSettingsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListNetworkSettingsCommandOutput extends ListNetworkSettingsRes
|
|
|
46
53
|
export declare class ListNetworkSettingsCommand extends $Command<ListNetworkSettingsCommandInput, ListNetworkSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
47
54
|
readonly input: ListNetworkSettingsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListNetworkSettingsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListNetworkSettingsCommandInput, ListNetworkSettingsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListPortalsRequest, ListPortalsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListPortalsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListPortalsCommandInput extends ListPortalsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListPortalsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListPortalsCommandOutput extends ListPortalsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list or web portals.</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 ListPortalsCommandOutput extends ListPortalsResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListPortalsCommandInput - {@link ListPortalsCommandInput}
|
|
34
|
+
* @returns {@link ListPortalsCommandOutput}
|
|
28
35
|
* @see {@link ListPortalsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListPortalsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListPortalsCommandOutput extends ListPortalsResponse, __Metadat
|
|
|
46
53
|
export declare class ListPortalsCommand extends $Command<ListPortalsCommandInput, ListPortalsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
47
54
|
readonly input: ListPortalsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListPortalsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPortalsCommandInput, ListPortalsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of tags for a resource.</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 ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
34
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
28
35
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
49
56
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
50
57
|
readonly input: ListTagsForResourceCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListTagsForResourceCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
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 { ListTrustStoreCertificatesRequest, ListTrustStoreCertificatesResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTrustStoreCertificatesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTrustStoreCertificatesCommandInput extends ListTrustStoreCertificatesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTrustStoreCertificatesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTrustStoreCertificatesCommandOutput extends ListTrustStoreCertificatesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of trust store certificates.</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 ListTrustStoreCertificatesCommandOutput extends ListTrustStoreC
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTrustStoreCertificatesCommandInput - {@link ListTrustStoreCertificatesCommandInput}
|
|
34
|
+
* @returns {@link ListTrustStoreCertificatesCommandOutput}
|
|
28
35
|
* @see {@link ListTrustStoreCertificatesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTrustStoreCertificatesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListTrustStoreCertificatesCommandOutput extends ListTrustStoreC
|
|
|
49
56
|
export declare class ListTrustStoreCertificatesCommand extends $Command<ListTrustStoreCertificatesCommandInput, ListTrustStoreCertificatesCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
50
57
|
readonly input: ListTrustStoreCertificatesCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListTrustStoreCertificatesCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTrustStoreCertificatesCommandInput, ListTrustStoreCertificatesCommandOutput>;
|
|
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 { ListTrustStoresRequest, ListTrustStoresResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTrustStoresCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTrustStoresCommandInput extends ListTrustStoresRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTrustStoresCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTrustStoresCommandOutput extends ListTrustStoresResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of trust stores.</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 ListTrustStoresCommandOutput extends ListTrustStoresResponse, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListTrustStoresCommandInput - {@link ListTrustStoresCommandInput}
|
|
34
|
+
* @returns {@link ListTrustStoresCommandOutput}
|
|
28
35
|
* @see {@link ListTrustStoresCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListTrustStoresCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListTrustStoresCommandOutput extends ListTrustStoresResponse, _
|
|
|
46
53
|
export declare class ListTrustStoresCommand extends $Command<ListTrustStoresCommandInput, ListTrustStoresCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
47
54
|
readonly input: ListTrustStoresCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListTrustStoresCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTrustStoresCommandInput, ListTrustStoresCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ListUserAccessLoggingSettingsRequest, ListUserAccessLoggingSettingsResponse } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListUserAccessLoggingSettingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListUserAccessLoggingSettingsCommandInput extends ListUserAccessLoggingSettingsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListUserAccessLoggingSettingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListUserAccessLoggingSettingsCommandOutput extends ListUserAccessLoggingSettingsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Retrieves a list of user access logging 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 ListUserAccessLoggingSettingsCommandOutput extends ListUserAcce
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListUserAccessLoggingSettingsCommandInput - {@link ListUserAccessLoggingSettingsCommandInput}
|
|
34
|
+
* @returns {@link ListUserAccessLoggingSettingsCommandOutput}
|
|
28
35
|
* @see {@link ListUserAccessLoggingSettingsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListUserAccessLoggingSettingsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListUserAccessLoggingSettingsCommandOutput extends ListUserAcce
|
|
|
46
53
|
export declare class ListUserAccessLoggingSettingsCommand extends $Command<ListUserAccessLoggingSettingsCommandInput, ListUserAccessLoggingSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
47
54
|
readonly input: ListUserAccessLoggingSettingsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListUserAccessLoggingSettingsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListUserAccessLoggingSettingsCommandInput, ListUserAccessLoggingSettingsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|