@aws-sdk/client-workspaces-web 3.342.0 → 3.344.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +56 -0
- package/dist-cjs/WorkSpacesWeb.js +14 -0
- package/dist-cjs/commands/AssociateIpAccessSettingsCommand.js +46 -0
- package/dist-cjs/commands/CreateIpAccessSettingsCommand.js +47 -0
- package/dist-cjs/commands/DeleteIpAccessSettingsCommand.js +46 -0
- package/dist-cjs/commands/DisassociateIpAccessSettingsCommand.js +46 -0
- package/dist-cjs/commands/GetIpAccessSettingsCommand.js +47 -0
- package/dist-cjs/commands/ListIpAccessSettingsCommand.js +47 -0
- package/dist-cjs/commands/UpdateIpAccessSettingsCommand.js +47 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +52 -1
- package/dist-cjs/pagination/ListIpAccessSettingsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +498 -3
- package/dist-es/WorkSpacesWeb.js +14 -0
- package/dist-es/commands/AssociateIpAccessSettingsCommand.js +42 -0
- package/dist-es/commands/CreateIpAccessSettingsCommand.js +43 -0
- package/dist-es/commands/DeleteIpAccessSettingsCommand.js +42 -0
- package/dist-es/commands/DisassociateIpAccessSettingsCommand.js +42 -0
- package/dist-es/commands/GetIpAccessSettingsCommand.js +43 -0
- package/dist-es/commands/ListIpAccessSettingsCommand.js +43 -0
- package/dist-es/commands/UpdateIpAccessSettingsCommand.js +43 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +43 -0
- package/dist-es/pagination/ListIpAccessSettingsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +481 -0
- package/dist-types/WorkSpacesWeb.d.ts +49 -0
- package/dist-types/WorkSpacesWebClient.d.ts +9 -2
- package/dist-types/commands/AssociateIpAccessSettingsCommand.d.ts +93 -0
- package/dist-types/commands/CreateIpAccessSettingsCommand.d.ts +109 -0
- package/dist-types/commands/DeleteIpAccessSettingsCommand.d.ts +86 -0
- package/dist-types/commands/DisassociateIpAccessSettingsCommand.d.ts +86 -0
- package/dist-types/commands/GetIpAccessSettingsCommand.d.ts +102 -0
- package/dist-types/commands/GetPortalCommand.d.ts +1 -0
- package/dist-types/commands/ListIpAccessSettingsCommand.d.ts +94 -0
- package/dist-types/commands/ListPortalsCommand.d.ts +1 -0
- package/dist-types/commands/UpdateIpAccessSettingsCommand.d.ts +111 -0
- package/dist-types/commands/UpdatePortalCommand.d.ts +4 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +290 -0
- package/dist-types/pagination/ListIpAccessSettingsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
- package/dist-types/ts3.4/WorkSpacesWeb.d.ts +119 -0
- package/dist-types/ts3.4/WorkSpacesWebClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/AssociateIpAccessSettingsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateIpAccessSettingsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteIpAccessSettingsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DisassociateIpAccessSettingsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetIpAccessSettingsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListIpAccessSettingsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateIpAccessSettingsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +94 -0
- package/dist-types/ts3.4/pagination/ListIpAccessSettingsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
- package/package.json +6 -6
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { GetIpAccessSettingsRequest, GetIpAccessSettingsResponse } from "../models/models_0";
|
|
5
|
+
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetIpAccessSettingsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetIpAccessSettingsCommandInput extends GetIpAccessSettingsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetIpAccessSettingsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetIpAccessSettingsCommandOutput extends GetIpAccessSettingsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Gets the IP access settings.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { WorkSpacesWebClient, GetIpAccessSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
31
|
+
* // const { WorkSpacesWebClient, GetIpAccessSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
32
|
+
* const client = new WorkSpacesWebClient(config);
|
|
33
|
+
* const input = { // GetIpAccessSettingsRequest
|
|
34
|
+
* ipAccessSettingsArn: "STRING_VALUE", // required
|
|
35
|
+
* };
|
|
36
|
+
* const command = new GetIpAccessSettingsCommand(input);
|
|
37
|
+
* const response = await client.send(command);
|
|
38
|
+
* // { // GetIpAccessSettingsResponse
|
|
39
|
+
* // ipAccessSettings: { // IpAccessSettings
|
|
40
|
+
* // ipAccessSettingsArn: "STRING_VALUE", // required
|
|
41
|
+
* // associatedPortalArns: [ // ArnList
|
|
42
|
+
* // "STRING_VALUE",
|
|
43
|
+
* // ],
|
|
44
|
+
* // ipRules: [ // IpRuleList
|
|
45
|
+
* // { // IpRule
|
|
46
|
+
* // ipRange: "STRING_VALUE", // required
|
|
47
|
+
* // description: "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // displayName: "STRING_VALUE",
|
|
51
|
+
* // description: "STRING_VALUE",
|
|
52
|
+
* // creationDate: new Date("TIMESTAMP"),
|
|
53
|
+
* // },
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
56
|
+
* ```
|
|
57
|
+
*
|
|
58
|
+
* @param GetIpAccessSettingsCommandInput - {@link GetIpAccessSettingsCommandInput}
|
|
59
|
+
* @returns {@link GetIpAccessSettingsCommandOutput}
|
|
60
|
+
* @see {@link GetIpAccessSettingsCommandInput} for command's `input` shape.
|
|
61
|
+
* @see {@link GetIpAccessSettingsCommandOutput} for command's `response` shape.
|
|
62
|
+
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
65
|
+
* <p>Access is denied.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link InternalServerException} (server fault)
|
|
68
|
+
* <p>There is an internal server error.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
71
|
+
* <p>The resource cannot be found.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
74
|
+
* <p>There is a throttling error.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link ValidationException} (client fault)
|
|
77
|
+
* <p>There is a validation error.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
81
|
+
*
|
|
82
|
+
*/
|
|
83
|
+
export declare class GetIpAccessSettingsCommand extends $Command<GetIpAccessSettingsCommandInput, GetIpAccessSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
84
|
+
readonly input: GetIpAccessSettingsCommandInput;
|
|
85
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
86
|
+
/**
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
constructor(input: GetIpAccessSettingsCommandInput);
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
93
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetIpAccessSettingsCommandInput, GetIpAccessSettingsCommandOutput>;
|
|
94
|
+
/**
|
|
95
|
+
* @internal
|
|
96
|
+
*/
|
|
97
|
+
private serialize;
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
101
|
+
private deserialize;
|
|
102
|
+
}
|
|
@@ -51,6 +51,7 @@ export interface GetPortalCommandOutput extends GetPortalResponse, __MetadataBea
|
|
|
51
51
|
* // statusReason: "STRING_VALUE",
|
|
52
52
|
* // userAccessLoggingSettingsArn: "STRING_VALUE",
|
|
53
53
|
* // authenticationType: "STRING_VALUE",
|
|
54
|
+
* // ipAccessSettingsArn: "STRING_VALUE",
|
|
54
55
|
* // },
|
|
55
56
|
* // };
|
|
56
57
|
*
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { ListIpAccessSettingsRequest, ListIpAccessSettingsResponse } from "../models/models_0";
|
|
5
|
+
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListIpAccessSettingsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListIpAccessSettingsCommandInput extends ListIpAccessSettingsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListIpAccessSettingsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListIpAccessSettingsCommandOutput extends ListIpAccessSettingsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Retrieves a list of IP access settings.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { WorkSpacesWebClient, ListIpAccessSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
31
|
+
* // const { WorkSpacesWebClient, ListIpAccessSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
32
|
+
* const client = new WorkSpacesWebClient(config);
|
|
33
|
+
* const input = { // ListIpAccessSettingsRequest
|
|
34
|
+
* nextToken: "STRING_VALUE",
|
|
35
|
+
* maxResults: Number("int"),
|
|
36
|
+
* };
|
|
37
|
+
* const command = new ListIpAccessSettingsCommand(input);
|
|
38
|
+
* const response = await client.send(command);
|
|
39
|
+
* // { // ListIpAccessSettingsResponse
|
|
40
|
+
* // ipAccessSettings: [ // IpAccessSettingsList
|
|
41
|
+
* // { // IpAccessSettingsSummary
|
|
42
|
+
* // ipAccessSettingsArn: "STRING_VALUE",
|
|
43
|
+
* // displayName: "STRING_VALUE",
|
|
44
|
+
* // description: "STRING_VALUE",
|
|
45
|
+
* // creationDate: new Date("TIMESTAMP"),
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // nextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
51
|
+
* ```
|
|
52
|
+
*
|
|
53
|
+
* @param ListIpAccessSettingsCommandInput - {@link ListIpAccessSettingsCommandInput}
|
|
54
|
+
* @returns {@link ListIpAccessSettingsCommandOutput}
|
|
55
|
+
* @see {@link ListIpAccessSettingsCommandInput} for command's `input` shape.
|
|
56
|
+
* @see {@link ListIpAccessSettingsCommandOutput} for command's `response` shape.
|
|
57
|
+
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
60
|
+
* <p>Access is denied.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link InternalServerException} (server fault)
|
|
63
|
+
* <p>There is an internal server error.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
66
|
+
* <p>There is a throttling error.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ValidationException} (client fault)
|
|
69
|
+
* <p>There is a validation error.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
73
|
+
*
|
|
74
|
+
*/
|
|
75
|
+
export declare class ListIpAccessSettingsCommand extends $Command<ListIpAccessSettingsCommandInput, ListIpAccessSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
76
|
+
readonly input: ListIpAccessSettingsCommandInput;
|
|
77
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
constructor(input: ListIpAccessSettingsCommandInput);
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
85
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListIpAccessSettingsCommandInput, ListIpAccessSettingsCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
89
|
+
private serialize;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
93
|
+
private deserialize;
|
|
94
|
+
}
|
|
@@ -52,6 +52,7 @@ export interface ListPortalsCommandOutput extends ListPortalsResponse, __Metadat
|
|
|
52
52
|
* // trustStoreArn: "STRING_VALUE",
|
|
53
53
|
* // userAccessLoggingSettingsArn: "STRING_VALUE",
|
|
54
54
|
* // authenticationType: "STRING_VALUE",
|
|
55
|
+
* // ipAccessSettingsArn: "STRING_VALUE",
|
|
55
56
|
* // },
|
|
56
57
|
* // ],
|
|
57
58
|
* // nextToken: "STRING_VALUE",
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { UpdateIpAccessSettingsRequest, UpdateIpAccessSettingsResponse } from "../models/models_0";
|
|
5
|
+
import { ServiceInputTypes, ServiceOutputTypes, WorkSpacesWebClientResolvedConfig } from "../WorkSpacesWebClient";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateIpAccessSettingsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateIpAccessSettingsCommandInput extends UpdateIpAccessSettingsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateIpAccessSettingsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateIpAccessSettingsCommandOutput extends UpdateIpAccessSettingsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Updates IP access settings.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { WorkSpacesWebClient, UpdateIpAccessSettingsCommand } from "@aws-sdk/client-workspaces-web"; // ES Modules import
|
|
31
|
+
* // const { WorkSpacesWebClient, UpdateIpAccessSettingsCommand } = require("@aws-sdk/client-workspaces-web"); // CommonJS import
|
|
32
|
+
* const client = new WorkSpacesWebClient(config);
|
|
33
|
+
* const input = { // UpdateIpAccessSettingsRequest
|
|
34
|
+
* ipAccessSettingsArn: "STRING_VALUE", // required
|
|
35
|
+
* displayName: "STRING_VALUE",
|
|
36
|
+
* description: "STRING_VALUE",
|
|
37
|
+
* ipRules: [ // IpRuleList
|
|
38
|
+
* { // IpRule
|
|
39
|
+
* ipRange: "STRING_VALUE", // required
|
|
40
|
+
* description: "STRING_VALUE",
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* clientToken: "STRING_VALUE",
|
|
44
|
+
* };
|
|
45
|
+
* const command = new UpdateIpAccessSettingsCommand(input);
|
|
46
|
+
* const response = await client.send(command);
|
|
47
|
+
* // { // UpdateIpAccessSettingsResponse
|
|
48
|
+
* // ipAccessSettings: { // IpAccessSettings
|
|
49
|
+
* // ipAccessSettingsArn: "STRING_VALUE", // required
|
|
50
|
+
* // associatedPortalArns: [ // ArnList
|
|
51
|
+
* // "STRING_VALUE",
|
|
52
|
+
* // ],
|
|
53
|
+
* // ipRules: [ // IpRuleList
|
|
54
|
+
* // { // IpRule
|
|
55
|
+
* // ipRange: "STRING_VALUE", // required
|
|
56
|
+
* // description: "STRING_VALUE",
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // displayName: "STRING_VALUE",
|
|
60
|
+
* // description: "STRING_VALUE",
|
|
61
|
+
* // creationDate: new Date("TIMESTAMP"),
|
|
62
|
+
* // },
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
65
|
+
* ```
|
|
66
|
+
*
|
|
67
|
+
* @param UpdateIpAccessSettingsCommandInput - {@link UpdateIpAccessSettingsCommandInput}
|
|
68
|
+
* @returns {@link UpdateIpAccessSettingsCommandOutput}
|
|
69
|
+
* @see {@link UpdateIpAccessSettingsCommandInput} for command's `input` shape.
|
|
70
|
+
* @see {@link UpdateIpAccessSettingsCommandOutput} for command's `response` shape.
|
|
71
|
+
* @see {@link WorkSpacesWebClientResolvedConfig | config} for WorkSpacesWebClient's `config` shape.
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
74
|
+
* <p>Access is denied.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link InternalServerException} (server fault)
|
|
77
|
+
* <p>There is an internal server error.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
80
|
+
* <p>The resource cannot be found.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
83
|
+
* <p>There is a throttling error.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link ValidationException} (client fault)
|
|
86
|
+
* <p>There is a validation error.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link WorkSpacesWebServiceException}
|
|
89
|
+
* <p>Base exception class for all service exceptions from WorkSpacesWeb service.</p>
|
|
90
|
+
*
|
|
91
|
+
*/
|
|
92
|
+
export declare class UpdateIpAccessSettingsCommand extends $Command<UpdateIpAccessSettingsCommandInput, UpdateIpAccessSettingsCommandOutput, WorkSpacesWebClientResolvedConfig> {
|
|
93
|
+
readonly input: UpdateIpAccessSettingsCommandInput;
|
|
94
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
95
|
+
/**
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
constructor(input: UpdateIpAccessSettingsCommandInput);
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
102
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WorkSpacesWebClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateIpAccessSettingsCommandInput, UpdateIpAccessSettingsCommandOutput>;
|
|
103
|
+
/**
|
|
104
|
+
* @internal
|
|
105
|
+
*/
|
|
106
|
+
private serialize;
|
|
107
|
+
/**
|
|
108
|
+
* @internal
|
|
109
|
+
*/
|
|
110
|
+
private deserialize;
|
|
111
|
+
}
|
|
@@ -53,6 +53,7 @@ export interface UpdatePortalCommandOutput extends UpdatePortalResponse, __Metad
|
|
|
53
53
|
* // statusReason: "STRING_VALUE",
|
|
54
54
|
* // userAccessLoggingSettingsArn: "STRING_VALUE",
|
|
55
55
|
* // authenticationType: "STRING_VALUE",
|
|
56
|
+
* // ipAccessSettingsArn: "STRING_VALUE",
|
|
56
57
|
* // },
|
|
57
58
|
* // };
|
|
58
59
|
*
|
|
@@ -67,6 +68,9 @@ export interface UpdatePortalCommandOutput extends UpdatePortalResponse, __Metad
|
|
|
67
68
|
* @throws {@link AccessDeniedException} (client fault)
|
|
68
69
|
* <p>Access is denied.</p>
|
|
69
70
|
*
|
|
71
|
+
* @throws {@link ConflictException} (client fault)
|
|
72
|
+
* <p>There is a conflict.</p>
|
|
73
|
+
*
|
|
70
74
|
* @throws {@link InternalServerException} (server fault)
|
|
71
75
|
* <p>There is an internal server error.</p>
|
|
72
76
|
*
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
export * from "./AssociateBrowserSettingsCommand";
|
|
2
|
+
export * from "./AssociateIpAccessSettingsCommand";
|
|
2
3
|
export * from "./AssociateNetworkSettingsCommand";
|
|
3
4
|
export * from "./AssociateTrustStoreCommand";
|
|
4
5
|
export * from "./AssociateUserAccessLoggingSettingsCommand";
|
|
5
6
|
export * from "./AssociateUserSettingsCommand";
|
|
6
7
|
export * from "./CreateBrowserSettingsCommand";
|
|
7
8
|
export * from "./CreateIdentityProviderCommand";
|
|
9
|
+
export * from "./CreateIpAccessSettingsCommand";
|
|
8
10
|
export * from "./CreateNetworkSettingsCommand";
|
|
9
11
|
export * from "./CreatePortalCommand";
|
|
10
12
|
export * from "./CreateTrustStoreCommand";
|
|
@@ -12,18 +14,21 @@ export * from "./CreateUserAccessLoggingSettingsCommand";
|
|
|
12
14
|
export * from "./CreateUserSettingsCommand";
|
|
13
15
|
export * from "./DeleteBrowserSettingsCommand";
|
|
14
16
|
export * from "./DeleteIdentityProviderCommand";
|
|
17
|
+
export * from "./DeleteIpAccessSettingsCommand";
|
|
15
18
|
export * from "./DeleteNetworkSettingsCommand";
|
|
16
19
|
export * from "./DeletePortalCommand";
|
|
17
20
|
export * from "./DeleteTrustStoreCommand";
|
|
18
21
|
export * from "./DeleteUserAccessLoggingSettingsCommand";
|
|
19
22
|
export * from "./DeleteUserSettingsCommand";
|
|
20
23
|
export * from "./DisassociateBrowserSettingsCommand";
|
|
24
|
+
export * from "./DisassociateIpAccessSettingsCommand";
|
|
21
25
|
export * from "./DisassociateNetworkSettingsCommand";
|
|
22
26
|
export * from "./DisassociateTrustStoreCommand";
|
|
23
27
|
export * from "./DisassociateUserAccessLoggingSettingsCommand";
|
|
24
28
|
export * from "./DisassociateUserSettingsCommand";
|
|
25
29
|
export * from "./GetBrowserSettingsCommand";
|
|
26
30
|
export * from "./GetIdentityProviderCommand";
|
|
31
|
+
export * from "./GetIpAccessSettingsCommand";
|
|
27
32
|
export * from "./GetNetworkSettingsCommand";
|
|
28
33
|
export * from "./GetPortalCommand";
|
|
29
34
|
export * from "./GetPortalServiceProviderMetadataCommand";
|
|
@@ -33,6 +38,7 @@ export * from "./GetUserAccessLoggingSettingsCommand";
|
|
|
33
38
|
export * from "./GetUserSettingsCommand";
|
|
34
39
|
export * from "./ListBrowserSettingsCommand";
|
|
35
40
|
export * from "./ListIdentityProvidersCommand";
|
|
41
|
+
export * from "./ListIpAccessSettingsCommand";
|
|
36
42
|
export * from "./ListNetworkSettingsCommand";
|
|
37
43
|
export * from "./ListPortalsCommand";
|
|
38
44
|
export * from "./ListTagsForResourceCommand";
|
|
@@ -44,6 +50,7 @@ export * from "./TagResourceCommand";
|
|
|
44
50
|
export * from "./UntagResourceCommand";
|
|
45
51
|
export * from "./UpdateBrowserSettingsCommand";
|
|
46
52
|
export * from "./UpdateIdentityProviderCommand";
|
|
53
|
+
export * from "./UpdateIpAccessSettingsCommand";
|
|
47
54
|
export * from "./UpdateNetworkSettingsCommand";
|
|
48
55
|
export * from "./UpdatePortalCommand";
|
|
49
56
|
export * from "./UpdateTrustStoreCommand";
|
|
@@ -13,7 +13,7 @@ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInp
|
|
|
13
13
|
defaultSigningName: string;
|
|
14
14
|
};
|
|
15
15
|
export interface EndpointParameters extends __EndpointParameters {
|
|
16
|
-
Region
|
|
16
|
+
Region?: string;
|
|
17
17
|
UseDualStack?: boolean;
|
|
18
18
|
UseFIPS?: boolean;
|
|
19
19
|
Endpoint?: string;
|