@aws-sdk/client-appstream 3.476.0 → 3.478.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/pagination/DescribeAppBlockBuilderAppBlockAssociationsPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeAppBlockBuildersPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeImagePermissionsPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeImagesPaginator.js +2 -24
- package/dist-cjs/protocols/Aws_json1_1.js +3 -0
- package/dist-es/pagination/DescribeAppBlockBuilderAppBlockAssociationsPaginator.js +2 -23
- package/dist-es/pagination/DescribeAppBlockBuildersPaginator.js +2 -23
- package/dist-es/pagination/DescribeImagePermissionsPaginator.js +2 -23
- package/dist-es/pagination/DescribeImagesPaginator.js +2 -23
- package/dist-es/protocols/Aws_json1_1.js +3 -0
- package/dist-types/commands/CreateStackCommand.d.ts +5 -0
- package/dist-types/commands/DescribeStacksCommand.d.ts +1 -0
- package/dist-types/commands/UpdateStackCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +9 -0
- package/dist-types/pagination/DescribeAppBlockBuilderAppBlockAssociationsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeAppBlockBuildersPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeImagePermissionsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeImagesPaginator.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/pagination/DescribeAppBlockBuilderAppBlockAssociationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeAppBlockBuildersPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeImagePermissionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeImagesPaginator.d.ts +3 -3
- package/package.json +7 -6
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeAppBlockBuilderAppBlockAssociations = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const AppStreamClient_1 = require("../AppStreamClient");
|
|
5
6
|
const DescribeAppBlockBuilderAppBlockAssociationsCommand_1 = require("../commands/DescribeAppBlockBuilderAppBlockAssociationsCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeAppBlockBuilderAppBlockAssociationsCommand_1.DescribeAppBlockBuilderAppBlockAssociationsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeAppBlockBuilderAppBlockAssociations(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof AppStreamClient_1.AppStreamClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected AppStream | AppStreamClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateDescribeAppBlockBuilderAppBlockAssociations = paginateDescribeAppBlockBuilderAppBlockAssociations;
|
|
7
|
+
exports.paginateDescribeAppBlockBuilderAppBlockAssociations = (0, core_1.createPaginator)(AppStreamClient_1.AppStreamClient, DescribeAppBlockBuilderAppBlockAssociationsCommand_1.DescribeAppBlockBuilderAppBlockAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeAppBlockBuilders = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const AppStreamClient_1 = require("../AppStreamClient");
|
|
5
6
|
const DescribeAppBlockBuildersCommand_1 = require("../commands/DescribeAppBlockBuildersCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeAppBlockBuildersCommand_1.DescribeAppBlockBuildersCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeAppBlockBuilders(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof AppStreamClient_1.AppStreamClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected AppStream | AppStreamClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateDescribeAppBlockBuilders = paginateDescribeAppBlockBuilders;
|
|
7
|
+
exports.paginateDescribeAppBlockBuilders = (0, core_1.createPaginator)(AppStreamClient_1.AppStreamClient, DescribeAppBlockBuildersCommand_1.DescribeAppBlockBuildersCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeImagePermissions = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const AppStreamClient_1 = require("../AppStreamClient");
|
|
5
6
|
const DescribeImagePermissionsCommand_1 = require("../commands/DescribeImagePermissionsCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeImagePermissionsCommand_1.DescribeImagePermissionsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeImagePermissions(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof AppStreamClient_1.AppStreamClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected AppStream | AppStreamClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateDescribeImagePermissions = paginateDescribeImagePermissions;
|
|
7
|
+
exports.paginateDescribeImagePermissions = (0, core_1.createPaginator)(AppStreamClient_1.AppStreamClient, DescribeImagePermissionsCommand_1.DescribeImagePermissionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateDescribeImages = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const AppStreamClient_1 = require("../AppStreamClient");
|
|
5
6
|
const DescribeImagesCommand_1 = require("../commands/DescribeImagesCommand");
|
|
6
|
-
|
|
7
|
-
return await client.send(new DescribeImagesCommand_1.DescribeImagesCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateDescribeImages(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof AppStreamClient_1.AppStreamClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected AppStream | AppStreamClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateDescribeImages = paginateDescribeImages;
|
|
7
|
+
exports.paginateDescribeImages = (0, core_1.createPaginator)(AppStreamClient_1.AppStreamClient, DescribeImagesCommand_1.DescribeImagesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1303,6 +1303,9 @@ const de_CreateStackCommandError = async (output, context) => {
|
|
|
1303
1303
|
case "LimitExceededException":
|
|
1304
1304
|
case "com.amazonaws.appstream#LimitExceededException":
|
|
1305
1305
|
throw await de_LimitExceededExceptionRes(parsedOutput, context);
|
|
1306
|
+
case "OperationNotPermittedException":
|
|
1307
|
+
case "com.amazonaws.appstream#OperationNotPermittedException":
|
|
1308
|
+
throw await de_OperationNotPermittedExceptionRes(parsedOutput, context);
|
|
1306
1309
|
case "ResourceAlreadyExistsException":
|
|
1307
1310
|
case "com.amazonaws.appstream#ResourceAlreadyExistsException":
|
|
1308
1311
|
throw await de_ResourceAlreadyExistsExceptionRes(parsedOutput, context);
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AppStreamClient } from "../AppStreamClient";
|
|
2
3
|
import { DescribeAppBlockBuilderAppBlockAssociationsCommand, } from "../commands/DescribeAppBlockBuilderAppBlockAssociationsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeAppBlockBuilderAppBlockAssociationsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeAppBlockBuilderAppBlockAssociations(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AppStreamClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected AppStream | AppStreamClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeAppBlockBuilderAppBlockAssociations = createPaginator(AppStreamClient, DescribeAppBlockBuilderAppBlockAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AppStreamClient } from "../AppStreamClient";
|
|
2
3
|
import { DescribeAppBlockBuildersCommand, } from "../commands/DescribeAppBlockBuildersCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeAppBlockBuildersCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeAppBlockBuilders(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AppStreamClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected AppStream | AppStreamClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeAppBlockBuilders = createPaginator(AppStreamClient, DescribeAppBlockBuildersCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AppStreamClient } from "../AppStreamClient";
|
|
2
3
|
import { DescribeImagePermissionsCommand, } from "../commands/DescribeImagePermissionsCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeImagePermissionsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeImagePermissions(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AppStreamClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected AppStream | AppStreamClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeImagePermissions = createPaginator(AppStreamClient, DescribeImagePermissionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { AppStreamClient } from "../AppStreamClient";
|
|
2
3
|
import { DescribeImagesCommand, } from "../commands/DescribeImagesCommand";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeImagesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeImages(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof AppStreamClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected AppStream | AppStreamClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeImages = createPaginator(AppStreamClient, DescribeImagesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1206,6 +1206,9 @@ const de_CreateStackCommandError = async (output, context) => {
|
|
|
1206
1206
|
case "LimitExceededException":
|
|
1207
1207
|
case "com.amazonaws.appstream#LimitExceededException":
|
|
1208
1208
|
throw await de_LimitExceededExceptionRes(parsedOutput, context);
|
|
1209
|
+
case "OperationNotPermittedException":
|
|
1210
|
+
case "com.amazonaws.appstream#OperationNotPermittedException":
|
|
1211
|
+
throw await de_OperationNotPermittedExceptionRes(parsedOutput, context);
|
|
1209
1212
|
case "ResourceAlreadyExistsException":
|
|
1210
1213
|
case "com.amazonaws.appstream#ResourceAlreadyExistsException":
|
|
1211
1214
|
throw await de_ResourceAlreadyExistsExceptionRes(parsedOutput, context);
|
|
@@ -49,6 +49,7 @@ export interface CreateStackCommandOutput extends CreateStackResult, __MetadataB
|
|
|
49
49
|
* { // UserSetting
|
|
50
50
|
* Action: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE" || "CLIPBOARD_COPY_TO_LOCAL_DEVICE" || "FILE_UPLOAD" || "FILE_DOWNLOAD" || "PRINTING_TO_LOCAL_DEVICE" || "DOMAIN_PASSWORD_SIGNIN" || "DOMAIN_SMART_CARD_SIGNIN", // required
|
|
51
51
|
* Permission: "ENABLED" || "DISABLED", // required
|
|
52
|
+
* MaximumLength: Number("int"),
|
|
52
53
|
* },
|
|
53
54
|
* ],
|
|
54
55
|
* ApplicationSettings: { // ApplicationSettings
|
|
@@ -101,6 +102,7 @@ export interface CreateStackCommandOutput extends CreateStackResult, __MetadataB
|
|
|
101
102
|
* // { // UserSetting
|
|
102
103
|
* // Action: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE" || "CLIPBOARD_COPY_TO_LOCAL_DEVICE" || "FILE_UPLOAD" || "FILE_DOWNLOAD" || "PRINTING_TO_LOCAL_DEVICE" || "DOMAIN_PASSWORD_SIGNIN" || "DOMAIN_SMART_CARD_SIGNIN", // required
|
|
103
104
|
* // Permission: "ENABLED" || "DISABLED", // required
|
|
105
|
+
* // MaximumLength: Number("int"),
|
|
104
106
|
* // },
|
|
105
107
|
* // ],
|
|
106
108
|
* // ApplicationSettings: { // ApplicationSettingsResponse
|
|
@@ -146,6 +148,9 @@ export interface CreateStackCommandOutput extends CreateStackResult, __MetadataB
|
|
|
146
148
|
* @throws {@link LimitExceededException} (client fault)
|
|
147
149
|
* <p>The requested limit exceeds the permitted limit for an account.</p>
|
|
148
150
|
*
|
|
151
|
+
* @throws {@link OperationNotPermittedException} (client fault)
|
|
152
|
+
* <p>The attempted operation is not permitted.</p>
|
|
153
|
+
*
|
|
149
154
|
* @throws {@link ResourceAlreadyExistsException} (client fault)
|
|
150
155
|
* <p>The specified resource already exists.</p>
|
|
151
156
|
*
|
|
@@ -67,6 +67,7 @@ export interface DescribeStacksCommandOutput extends DescribeStacksResult, __Met
|
|
|
67
67
|
* // { // UserSetting
|
|
68
68
|
* // Action: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE" || "CLIPBOARD_COPY_TO_LOCAL_DEVICE" || "FILE_UPLOAD" || "FILE_DOWNLOAD" || "PRINTING_TO_LOCAL_DEVICE" || "DOMAIN_PASSWORD_SIGNIN" || "DOMAIN_SMART_CARD_SIGNIN", // required
|
|
69
69
|
* // Permission: "ENABLED" || "DISABLED", // required
|
|
70
|
+
* // MaximumLength: Number("int"),
|
|
70
71
|
* // },
|
|
71
72
|
* // ],
|
|
72
73
|
* // ApplicationSettings: { // ApplicationSettingsResponse
|
|
@@ -53,6 +53,7 @@ export interface UpdateStackCommandOutput extends UpdateStackResult, __MetadataB
|
|
|
53
53
|
* { // UserSetting
|
|
54
54
|
* Action: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE" || "CLIPBOARD_COPY_TO_LOCAL_DEVICE" || "FILE_UPLOAD" || "FILE_DOWNLOAD" || "PRINTING_TO_LOCAL_DEVICE" || "DOMAIN_PASSWORD_SIGNIN" || "DOMAIN_SMART_CARD_SIGNIN", // required
|
|
55
55
|
* Permission: "ENABLED" || "DISABLED", // required
|
|
56
|
+
* MaximumLength: Number("int"),
|
|
56
57
|
* },
|
|
57
58
|
* ],
|
|
58
59
|
* ApplicationSettings: { // ApplicationSettings
|
|
@@ -102,6 +103,7 @@ export interface UpdateStackCommandOutput extends UpdateStackResult, __MetadataB
|
|
|
102
103
|
* // { // UserSetting
|
|
103
104
|
* // Action: "CLIPBOARD_COPY_FROM_LOCAL_DEVICE" || "CLIPBOARD_COPY_TO_LOCAL_DEVICE" || "FILE_UPLOAD" || "FILE_DOWNLOAD" || "PRINTING_TO_LOCAL_DEVICE" || "DOMAIN_PASSWORD_SIGNIN" || "DOMAIN_SMART_CARD_SIGNIN", // required
|
|
104
105
|
* // Permission: "ENABLED" || "DISABLED", // required
|
|
106
|
+
* // MaximumLength: Number("int"),
|
|
105
107
|
* // },
|
|
106
108
|
* // ],
|
|
107
109
|
* // ApplicationSettings: { // ApplicationSettingsResponse
|
|
@@ -2875,6 +2875,15 @@ export interface UserSetting {
|
|
|
2875
2875
|
* <p>Indicates whether the action is enabled or disabled.</p>
|
|
2876
2876
|
*/
|
|
2877
2877
|
Permission: Permission | undefined;
|
|
2878
|
+
/**
|
|
2879
|
+
* @public
|
|
2880
|
+
* <p>Specifies the number of characters that can be copied by end users from the local device to the remote session, and to the local device from the remote session.</p>
|
|
2881
|
+
* <p>This can be specified only for the <code>CLIPBOARD_COPY_FROM_LOCAL_DEVICE</code> and <code>CLIPBOARD_COPY_TO_LOCAL_DEVICE</code> actions.</p>
|
|
2882
|
+
* <p>This defaults to 20,971,520 (20 MB) when unspecified and the permission is <code>ENABLED</code>. This can't be specified when the permission is <code>DISABLED</code>. </p>
|
|
2883
|
+
* <p>This can only be specified for AlwaysOn and OnDemand fleets. The attribute is not supported on Elastic fleets.</p>
|
|
2884
|
+
* <p>The value can be between 1 and 20,971,520 (20 MB).</p>
|
|
2885
|
+
*/
|
|
2886
|
+
MaximumLength?: number;
|
|
2878
2887
|
}
|
|
2879
2888
|
/**
|
|
2880
2889
|
* @public
|
|
@@ -4,4 +4,4 @@ import { AppStreamPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeAppBlockBuilderAppBlockAssociations: (config: AppStreamPaginationConfiguration, input: DescribeAppBlockBuilderAppBlockAssociationsCommandInput, ...rest: any[]) => Paginator<DescribeAppBlockBuilderAppBlockAssociationsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AppStreamPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeAppBlockBuilders: (config: AppStreamPaginationConfiguration, input: DescribeAppBlockBuildersCommandInput, ...rest: any[]) => Paginator<DescribeAppBlockBuildersCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AppStreamPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeImagePermissions: (config: AppStreamPaginationConfiguration, input: DescribeImagePermissionsCommandInput, ...rest: any[]) => Paginator<DescribeImagePermissionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { AppStreamPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeImages: (config: AppStreamPaginationConfiguration, input: DescribeImagesCommandInput, ...rest: any[]) => Paginator<DescribeImagesCommandOutput>;
|
|
@@ -687,6 +687,7 @@ export type Permission = (typeof Permission)[keyof typeof Permission];
|
|
|
687
687
|
export interface UserSetting {
|
|
688
688
|
Action: Action | undefined;
|
|
689
689
|
Permission: Permission | undefined;
|
|
690
|
+
MaximumLength?: number;
|
|
690
691
|
}
|
|
691
692
|
export interface CreateStackRequest {
|
|
692
693
|
Name: string | undefined;
|
package/dist-types/ts3.4/pagination/DescribeAppBlockBuilderAppBlockAssociationsPaginator.d.ts
CHANGED
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeAppBlockBuilderAppBlockAssociationsCommandOutput,
|
|
5
5
|
} from "../commands/DescribeAppBlockBuilderAppBlockAssociationsCommand";
|
|
6
6
|
import { AppStreamPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeAppBlockBuilderAppBlockAssociations: (
|
|
8
8
|
config: AppStreamPaginationConfiguration,
|
|
9
9
|
input: DescribeAppBlockBuilderAppBlockAssociationsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeAppBlockBuilderAppBlockAssociationsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeAppBlockBuildersCommandOutput,
|
|
5
5
|
} from "../commands/DescribeAppBlockBuildersCommand";
|
|
6
6
|
import { AppStreamPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeAppBlockBuilders: (
|
|
8
8
|
config: AppStreamPaginationConfiguration,
|
|
9
9
|
input: DescribeAppBlockBuildersCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeAppBlockBuildersCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeImagePermissionsCommandOutput,
|
|
5
5
|
} from "../commands/DescribeImagePermissionsCommand";
|
|
6
6
|
import { AppStreamPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeImagePermissions: (
|
|
8
8
|
config: AppStreamPaginationConfiguration,
|
|
9
9
|
input: DescribeImagePermissionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeImagePermissionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeImagesCommandOutput,
|
|
5
5
|
} from "../commands/DescribeImagesCommand";
|
|
6
6
|
import { AppStreamPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeImages: (
|
|
8
8
|
config: AppStreamPaginationConfiguration,
|
|
9
9
|
input: DescribeImagesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeImagesCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appstream",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appstream Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.478.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,20 +20,21 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/core": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.478.0",
|
|
24
|
+
"@aws-sdk/core": "3.477.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.478.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.468.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.468.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.468.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.468.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.478.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.470.0",
|
|
32
32
|
"@aws-sdk/types": "3.468.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.478.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.468.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.470.0",
|
|
36
36
|
"@smithy/config-resolver": "^2.0.21",
|
|
37
|
+
"@smithy/core": "^1.2.0",
|
|
37
38
|
"@smithy/fetch-http-handler": "^2.3.1",
|
|
38
39
|
"@smithy/hash-node": "^2.0.17",
|
|
39
40
|
"@smithy/invalid-dependency": "^2.0.15",
|