@aws-sdk/client-appstream 3.51.0 → 3.54.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/AppStreamServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +202 -4
- package/dist-cjs/protocols/Aws_json1_1.js +592 -2096
- package/dist-es/index.js +1 -0
- package/dist-es/models/AppStreamServiceException.js +12 -0
- package/dist-es/models/models_0.js +184 -1
- package/dist-es/protocols/Aws_json1_1.js +1325 -2308
- package/dist-types/AppStreamClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/AppStreamServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +100 -43
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/AppStreamClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/AppStreamServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +72 -43
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +34 -34
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AssociateApplicationFleetCommandInput, AssociateApplicationFleetCommandOutput } from "./commands/AssociateApplicationFleetCommand";
|
|
10
10
|
import { AssociateApplicationToEntitlementCommandInput, AssociateApplicationToEntitlementCommandOutput } from "./commands/AssociateApplicationToEntitlementCommand";
|
|
11
11
|
import { AssociateFleetCommandInput, AssociateFleetCommandOutput } from "./commands/AssociateFleetCommand";
|
|
@@ -93,7 +93,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
93
93
|
* A function that can calculate the length of a request body.
|
|
94
94
|
* @internal
|
|
95
95
|
*/
|
|
96
|
-
bodyLengthChecker?:
|
|
96
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
97
97
|
/**
|
|
98
98
|
* A function that converts a stream into an array of bytes.
|
|
99
99
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from AppStream service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class AppStreamServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { AppStreamServiceException as __BaseException } from "./AppStreamServiceException";
|
|
2
3
|
export declare enum AccessEndpointType {
|
|
3
4
|
STREAMING = "STREAMING"
|
|
4
5
|
}
|
|
@@ -298,57 +299,77 @@ export declare namespace AssociateApplicationFleetResult {
|
|
|
298
299
|
/**
|
|
299
300
|
* <p>An API error occurred. Wait a few minutes and try again.</p>
|
|
300
301
|
*/
|
|
301
|
-
export
|
|
302
|
-
name: "ConcurrentModificationException";
|
|
303
|
-
$fault: "client";
|
|
302
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
303
|
+
readonly name: "ConcurrentModificationException";
|
|
304
|
+
readonly $fault: "client";
|
|
304
305
|
/**
|
|
305
306
|
* <p>The error message in the exception.</p>
|
|
306
307
|
*/
|
|
307
308
|
Message?: string;
|
|
309
|
+
/**
|
|
310
|
+
* @internal
|
|
311
|
+
*/
|
|
312
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
308
313
|
}
|
|
309
314
|
/**
|
|
310
315
|
* <p>Indicates an incorrect combination of parameters, or a missing parameter.</p>
|
|
311
316
|
*/
|
|
312
|
-
export
|
|
313
|
-
name: "InvalidParameterCombinationException";
|
|
314
|
-
$fault: "client";
|
|
317
|
+
export declare class InvalidParameterCombinationException extends __BaseException {
|
|
318
|
+
readonly name: "InvalidParameterCombinationException";
|
|
319
|
+
readonly $fault: "client";
|
|
315
320
|
/**
|
|
316
321
|
* <p>The error message in the exception.</p>
|
|
317
322
|
*/
|
|
318
323
|
Message?: string;
|
|
324
|
+
/**
|
|
325
|
+
* @internal
|
|
326
|
+
*/
|
|
327
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterCombinationException, __BaseException>);
|
|
319
328
|
}
|
|
320
329
|
/**
|
|
321
330
|
* <p>The requested limit exceeds the permitted limit for an account.</p>
|
|
322
331
|
*/
|
|
323
|
-
export
|
|
324
|
-
name: "LimitExceededException";
|
|
325
|
-
$fault: "client";
|
|
332
|
+
export declare class LimitExceededException extends __BaseException {
|
|
333
|
+
readonly name: "LimitExceededException";
|
|
334
|
+
readonly $fault: "client";
|
|
326
335
|
/**
|
|
327
336
|
* <p>The error message in the exception.</p>
|
|
328
337
|
*/
|
|
329
338
|
Message?: string;
|
|
339
|
+
/**
|
|
340
|
+
* @internal
|
|
341
|
+
*/
|
|
342
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
330
343
|
}
|
|
331
344
|
/**
|
|
332
345
|
* <p>The attempted operation is not permitted.</p>
|
|
333
346
|
*/
|
|
334
|
-
export
|
|
335
|
-
name: "OperationNotPermittedException";
|
|
336
|
-
$fault: "client";
|
|
347
|
+
export declare class OperationNotPermittedException extends __BaseException {
|
|
348
|
+
readonly name: "OperationNotPermittedException";
|
|
349
|
+
readonly $fault: "client";
|
|
337
350
|
/**
|
|
338
351
|
* <p>The error message in the exception.</p>
|
|
339
352
|
*/
|
|
340
353
|
Message?: string;
|
|
354
|
+
/**
|
|
355
|
+
* @internal
|
|
356
|
+
*/
|
|
357
|
+
constructor(opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>);
|
|
341
358
|
}
|
|
342
359
|
/**
|
|
343
360
|
* <p>The specified resource was not found.</p>
|
|
344
361
|
*/
|
|
345
|
-
export
|
|
346
|
-
name: "ResourceNotFoundException";
|
|
347
|
-
$fault: "client";
|
|
362
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
363
|
+
readonly name: "ResourceNotFoundException";
|
|
364
|
+
readonly $fault: "client";
|
|
348
365
|
/**
|
|
349
366
|
* <p>The error message in the exception.</p>
|
|
350
367
|
*/
|
|
351
368
|
Message?: string;
|
|
369
|
+
/**
|
|
370
|
+
* @internal
|
|
371
|
+
*/
|
|
372
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
352
373
|
}
|
|
353
374
|
export interface AssociateApplicationToEntitlementRequest {
|
|
354
375
|
/**
|
|
@@ -381,13 +402,17 @@ export declare namespace AssociateApplicationToEntitlementResult {
|
|
|
381
402
|
/**
|
|
382
403
|
* <p>The entitlement can't be found.</p>
|
|
383
404
|
*/
|
|
384
|
-
export
|
|
385
|
-
name: "EntitlementNotFoundException";
|
|
386
|
-
$fault: "client";
|
|
405
|
+
export declare class EntitlementNotFoundException extends __BaseException {
|
|
406
|
+
readonly name: "EntitlementNotFoundException";
|
|
407
|
+
readonly $fault: "client";
|
|
387
408
|
/**
|
|
388
409
|
* <p>The error message in the exception.</p>
|
|
389
410
|
*/
|
|
390
411
|
Message?: string;
|
|
412
|
+
/**
|
|
413
|
+
* @internal
|
|
414
|
+
*/
|
|
415
|
+
constructor(opts: __ExceptionOptionType<EntitlementNotFoundException, __BaseException>);
|
|
391
416
|
}
|
|
392
417
|
export interface AssociateFleetRequest {
|
|
393
418
|
/**
|
|
@@ -416,24 +441,32 @@ export declare namespace AssociateFleetResult {
|
|
|
416
441
|
/**
|
|
417
442
|
* <p>The image can't be updated because it's not compatible for updates.</p>
|
|
418
443
|
*/
|
|
419
|
-
export
|
|
420
|
-
name: "IncompatibleImageException";
|
|
421
|
-
$fault: "client";
|
|
444
|
+
export declare class IncompatibleImageException extends __BaseException {
|
|
445
|
+
readonly name: "IncompatibleImageException";
|
|
446
|
+
readonly $fault: "client";
|
|
422
447
|
/**
|
|
423
448
|
* <p>The error message in the exception.</p>
|
|
424
449
|
*/
|
|
425
450
|
Message?: string;
|
|
451
|
+
/**
|
|
452
|
+
* @internal
|
|
453
|
+
*/
|
|
454
|
+
constructor(opts: __ExceptionOptionType<IncompatibleImageException, __BaseException>);
|
|
426
455
|
}
|
|
427
456
|
/**
|
|
428
457
|
* <p>The resource cannot be created because your AWS account is suspended. For assistance, contact AWS Support. </p>
|
|
429
458
|
*/
|
|
430
|
-
export
|
|
431
|
-
name: "InvalidAccountStatusException";
|
|
432
|
-
$fault: "client";
|
|
459
|
+
export declare class InvalidAccountStatusException extends __BaseException {
|
|
460
|
+
readonly name: "InvalidAccountStatusException";
|
|
461
|
+
readonly $fault: "client";
|
|
433
462
|
/**
|
|
434
463
|
* <p>The error message in the exception.</p>
|
|
435
464
|
*/
|
|
436
465
|
Message?: string;
|
|
466
|
+
/**
|
|
467
|
+
* @internal
|
|
468
|
+
*/
|
|
469
|
+
constructor(opts: __ExceptionOptionType<InvalidAccountStatusException, __BaseException>);
|
|
437
470
|
}
|
|
438
471
|
export declare enum AuthenticationType {
|
|
439
472
|
API = "API",
|
|
@@ -630,24 +663,32 @@ export declare namespace CopyImageResponse {
|
|
|
630
663
|
/**
|
|
631
664
|
* <p>The specified resource already exists.</p>
|
|
632
665
|
*/
|
|
633
|
-
export
|
|
634
|
-
name: "ResourceAlreadyExistsException";
|
|
635
|
-
$fault: "client";
|
|
666
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
667
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
668
|
+
readonly $fault: "client";
|
|
636
669
|
/**
|
|
637
670
|
* <p>The error message in the exception.</p>
|
|
638
671
|
*/
|
|
639
672
|
Message?: string;
|
|
673
|
+
/**
|
|
674
|
+
* @internal
|
|
675
|
+
*/
|
|
676
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
640
677
|
}
|
|
641
678
|
/**
|
|
642
679
|
* <p>The specified resource exists and is not in use, but isn't available.</p>
|
|
643
680
|
*/
|
|
644
|
-
export
|
|
645
|
-
name: "ResourceNotAvailableException";
|
|
646
|
-
$fault: "client";
|
|
681
|
+
export declare class ResourceNotAvailableException extends __BaseException {
|
|
682
|
+
readonly name: "ResourceNotAvailableException";
|
|
683
|
+
readonly $fault: "client";
|
|
647
684
|
/**
|
|
648
685
|
* <p>The error message in the exception.</p>
|
|
649
686
|
*/
|
|
650
687
|
Message?: string;
|
|
688
|
+
/**
|
|
689
|
+
* @internal
|
|
690
|
+
*/
|
|
691
|
+
constructor(opts: __ExceptionOptionType<ResourceNotAvailableException, __BaseException>);
|
|
651
692
|
}
|
|
652
693
|
export interface CreateAppBlockRequest {
|
|
653
694
|
/**
|
|
@@ -844,13 +885,17 @@ export declare namespace CreateDirectoryConfigResult {
|
|
|
844
885
|
/**
|
|
845
886
|
* <p>The specified role is invalid.</p>
|
|
846
887
|
*/
|
|
847
|
-
export
|
|
848
|
-
name: "InvalidRoleException";
|
|
849
|
-
$fault: "client";
|
|
888
|
+
export declare class InvalidRoleException extends __BaseException {
|
|
889
|
+
readonly name: "InvalidRoleException";
|
|
890
|
+
readonly $fault: "client";
|
|
850
891
|
/**
|
|
851
892
|
* <p>The error message in the exception.</p>
|
|
852
893
|
*/
|
|
853
894
|
Message?: string;
|
|
895
|
+
/**
|
|
896
|
+
* @internal
|
|
897
|
+
*/
|
|
898
|
+
constructor(opts: __ExceptionOptionType<InvalidRoleException, __BaseException>);
|
|
854
899
|
}
|
|
855
900
|
/**
|
|
856
901
|
* <p>An attribute associated with an entitlement. Application entitlements work by matching
|
|
@@ -988,13 +1033,17 @@ export declare namespace CreateEntitlementResult {
|
|
|
988
1033
|
/**
|
|
989
1034
|
* <p>The entitlement already exists.</p>
|
|
990
1035
|
*/
|
|
991
|
-
export
|
|
992
|
-
name: "EntitlementAlreadyExistsException";
|
|
993
|
-
$fault: "client";
|
|
1036
|
+
export declare class EntitlementAlreadyExistsException extends __BaseException {
|
|
1037
|
+
readonly name: "EntitlementAlreadyExistsException";
|
|
1038
|
+
readonly $fault: "client";
|
|
994
1039
|
/**
|
|
995
1040
|
* <p>The error message in the exception.</p>
|
|
996
1041
|
*/
|
|
997
1042
|
Message?: string;
|
|
1043
|
+
/**
|
|
1044
|
+
* @internal
|
|
1045
|
+
*/
|
|
1046
|
+
constructor(opts: __ExceptionOptionType<EntitlementAlreadyExistsException, __BaseException>);
|
|
998
1047
|
}
|
|
999
1048
|
/**
|
|
1000
1049
|
* <p>Describes the configuration information required to join fleets and image builders to Microsoft Active Directory domains.</p>
|
|
@@ -1593,13 +1642,17 @@ export declare namespace CreateFleetResult {
|
|
|
1593
1642
|
/**
|
|
1594
1643
|
* <p>AppStream 2.0 can’t process the request right now because the Describe calls from your AWS account are being throttled by Amazon EC2. Try again later.</p>
|
|
1595
1644
|
*/
|
|
1596
|
-
export
|
|
1597
|
-
name: "RequestLimitExceededException";
|
|
1598
|
-
$fault: "client";
|
|
1645
|
+
export declare class RequestLimitExceededException extends __BaseException {
|
|
1646
|
+
readonly name: "RequestLimitExceededException";
|
|
1647
|
+
readonly $fault: "client";
|
|
1599
1648
|
/**
|
|
1600
1649
|
* <p>The error message in the exception.</p>
|
|
1601
1650
|
*/
|
|
1602
1651
|
Message?: string;
|
|
1652
|
+
/**
|
|
1653
|
+
* @internal
|
|
1654
|
+
*/
|
|
1655
|
+
constructor(opts: __ExceptionOptionType<RequestLimitExceededException, __BaseException>);
|
|
1603
1656
|
}
|
|
1604
1657
|
export interface CreateImageBuilderRequest {
|
|
1605
1658
|
/**
|
|
@@ -2638,13 +2691,17 @@ export declare namespace DeleteAppBlockResult {
|
|
|
2638
2691
|
/**
|
|
2639
2692
|
* <p>The specified resource is in use.</p>
|
|
2640
2693
|
*/
|
|
2641
|
-
export
|
|
2642
|
-
name: "ResourceInUseException";
|
|
2643
|
-
$fault: "client";
|
|
2694
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
2695
|
+
readonly name: "ResourceInUseException";
|
|
2696
|
+
readonly $fault: "client";
|
|
2644
2697
|
/**
|
|
2645
2698
|
* <p>The error message in the exception.</p>
|
|
2646
2699
|
*/
|
|
2647
2700
|
Message?: string;
|
|
2701
|
+
/**
|
|
2702
|
+
* @internal
|
|
2703
|
+
*/
|
|
2704
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
2648
2705
|
}
|
|
2649
2706
|
export interface DeleteApplicationRequest {
|
|
2650
2707
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: AppStreamClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: AppStreamClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: AppStreamClientConfig) => {
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AssociateApplicationFleetCommandInput, AssociateApplicationFleetCommandOutput } from "./commands/AssociateApplicationFleetCommand";
|
|
10
10
|
import { AssociateApplicationToEntitlementCommandInput, AssociateApplicationToEntitlementCommandOutput } from "./commands/AssociateApplicationToEntitlementCommand";
|
|
11
11
|
import { AssociateFleetCommandInput, AssociateFleetCommandOutput } from "./commands/AssociateFleetCommand";
|
|
@@ -81,7 +81,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
81
81
|
|
|
82
82
|
urlParser?: __UrlParser;
|
|
83
83
|
|
|
84
|
-
bodyLengthChecker?:
|
|
84
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
85
85
|
|
|
86
86
|
streamCollector?: __StreamCollector;
|
|
87
87
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class AppStreamServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { AppStreamServiceException as __BaseException } from "./AppStreamServiceException";
|
|
2
3
|
export declare enum AccessEndpointType {
|
|
3
4
|
STREAMING = "STREAMING"
|
|
4
5
|
}
|
|
@@ -171,39 +172,49 @@ export declare namespace AssociateApplicationFleetResult {
|
|
|
171
172
|
const filterSensitiveLog: (obj: AssociateApplicationFleetResult) => any;
|
|
172
173
|
}
|
|
173
174
|
|
|
174
|
-
export
|
|
175
|
-
name: "ConcurrentModificationException";
|
|
176
|
-
$fault: "client";
|
|
175
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
176
|
+
readonly name: "ConcurrentModificationException";
|
|
177
|
+
readonly $fault: "client";
|
|
177
178
|
|
|
178
179
|
Message?: string;
|
|
180
|
+
|
|
181
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
179
182
|
}
|
|
180
183
|
|
|
181
|
-
export
|
|
182
|
-
name: "InvalidParameterCombinationException";
|
|
183
|
-
$fault: "client";
|
|
184
|
+
export declare class InvalidParameterCombinationException extends __BaseException {
|
|
185
|
+
readonly name: "InvalidParameterCombinationException";
|
|
186
|
+
readonly $fault: "client";
|
|
184
187
|
|
|
185
188
|
Message?: string;
|
|
189
|
+
|
|
190
|
+
constructor(opts: __ExceptionOptionType<InvalidParameterCombinationException, __BaseException>);
|
|
186
191
|
}
|
|
187
192
|
|
|
188
|
-
export
|
|
189
|
-
name: "LimitExceededException";
|
|
190
|
-
$fault: "client";
|
|
193
|
+
export declare class LimitExceededException extends __BaseException {
|
|
194
|
+
readonly name: "LimitExceededException";
|
|
195
|
+
readonly $fault: "client";
|
|
191
196
|
|
|
192
197
|
Message?: string;
|
|
198
|
+
|
|
199
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
193
200
|
}
|
|
194
201
|
|
|
195
|
-
export
|
|
196
|
-
name: "OperationNotPermittedException";
|
|
197
|
-
$fault: "client";
|
|
202
|
+
export declare class OperationNotPermittedException extends __BaseException {
|
|
203
|
+
readonly name: "OperationNotPermittedException";
|
|
204
|
+
readonly $fault: "client";
|
|
198
205
|
|
|
199
206
|
Message?: string;
|
|
207
|
+
|
|
208
|
+
constructor(opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>);
|
|
200
209
|
}
|
|
201
210
|
|
|
202
|
-
export
|
|
203
|
-
name: "ResourceNotFoundException";
|
|
204
|
-
$fault: "client";
|
|
211
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
212
|
+
readonly name: "ResourceNotFoundException";
|
|
213
|
+
readonly $fault: "client";
|
|
205
214
|
|
|
206
215
|
Message?: string;
|
|
216
|
+
|
|
217
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
207
218
|
}
|
|
208
219
|
export interface AssociateApplicationToEntitlementRequest {
|
|
209
220
|
|
|
@@ -224,11 +235,13 @@ export declare namespace AssociateApplicationToEntitlementResult {
|
|
|
224
235
|
const filterSensitiveLog: (obj: AssociateApplicationToEntitlementResult) => any;
|
|
225
236
|
}
|
|
226
237
|
|
|
227
|
-
export
|
|
228
|
-
name: "EntitlementNotFoundException";
|
|
229
|
-
$fault: "client";
|
|
238
|
+
export declare class EntitlementNotFoundException extends __BaseException {
|
|
239
|
+
readonly name: "EntitlementNotFoundException";
|
|
240
|
+
readonly $fault: "client";
|
|
230
241
|
|
|
231
242
|
Message?: string;
|
|
243
|
+
|
|
244
|
+
constructor(opts: __ExceptionOptionType<EntitlementNotFoundException, __BaseException>);
|
|
232
245
|
}
|
|
233
246
|
export interface AssociateFleetRequest {
|
|
234
247
|
|
|
@@ -247,18 +260,22 @@ export declare namespace AssociateFleetResult {
|
|
|
247
260
|
const filterSensitiveLog: (obj: AssociateFleetResult) => any;
|
|
248
261
|
}
|
|
249
262
|
|
|
250
|
-
export
|
|
251
|
-
name: "IncompatibleImageException";
|
|
252
|
-
$fault: "client";
|
|
263
|
+
export declare class IncompatibleImageException extends __BaseException {
|
|
264
|
+
readonly name: "IncompatibleImageException";
|
|
265
|
+
readonly $fault: "client";
|
|
253
266
|
|
|
254
267
|
Message?: string;
|
|
268
|
+
|
|
269
|
+
constructor(opts: __ExceptionOptionType<IncompatibleImageException, __BaseException>);
|
|
255
270
|
}
|
|
256
271
|
|
|
257
|
-
export
|
|
258
|
-
name: "InvalidAccountStatusException";
|
|
259
|
-
$fault: "client";
|
|
272
|
+
export declare class InvalidAccountStatusException extends __BaseException {
|
|
273
|
+
readonly name: "InvalidAccountStatusException";
|
|
274
|
+
readonly $fault: "client";
|
|
260
275
|
|
|
261
276
|
Message?: string;
|
|
277
|
+
|
|
278
|
+
constructor(opts: __ExceptionOptionType<InvalidAccountStatusException, __BaseException>);
|
|
262
279
|
}
|
|
263
280
|
export declare enum AuthenticationType {
|
|
264
281
|
API = "API",
|
|
@@ -378,18 +395,22 @@ export declare namespace CopyImageResponse {
|
|
|
378
395
|
const filterSensitiveLog: (obj: CopyImageResponse) => any;
|
|
379
396
|
}
|
|
380
397
|
|
|
381
|
-
export
|
|
382
|
-
name: "ResourceAlreadyExistsException";
|
|
383
|
-
$fault: "client";
|
|
398
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
399
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
400
|
+
readonly $fault: "client";
|
|
384
401
|
|
|
385
402
|
Message?: string;
|
|
403
|
+
|
|
404
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
386
405
|
}
|
|
387
406
|
|
|
388
|
-
export
|
|
389
|
-
name: "ResourceNotAvailableException";
|
|
390
|
-
$fault: "client";
|
|
407
|
+
export declare class ResourceNotAvailableException extends __BaseException {
|
|
408
|
+
readonly name: "ResourceNotAvailableException";
|
|
409
|
+
readonly $fault: "client";
|
|
391
410
|
|
|
392
411
|
Message?: string;
|
|
412
|
+
|
|
413
|
+
constructor(opts: __ExceptionOptionType<ResourceNotAvailableException, __BaseException>);
|
|
393
414
|
}
|
|
394
415
|
export interface CreateAppBlockRequest {
|
|
395
416
|
|
|
@@ -504,11 +525,13 @@ export declare namespace CreateDirectoryConfigResult {
|
|
|
504
525
|
const filterSensitiveLog: (obj: CreateDirectoryConfigResult) => any;
|
|
505
526
|
}
|
|
506
527
|
|
|
507
|
-
export
|
|
508
|
-
name: "InvalidRoleException";
|
|
509
|
-
$fault: "client";
|
|
528
|
+
export declare class InvalidRoleException extends __BaseException {
|
|
529
|
+
readonly name: "InvalidRoleException";
|
|
530
|
+
readonly $fault: "client";
|
|
510
531
|
|
|
511
532
|
Message?: string;
|
|
533
|
+
|
|
534
|
+
constructor(opts: __ExceptionOptionType<InvalidRoleException, __BaseException>);
|
|
512
535
|
}
|
|
513
536
|
|
|
514
537
|
export interface EntitlementAttribute {
|
|
@@ -567,11 +590,13 @@ export declare namespace CreateEntitlementResult {
|
|
|
567
590
|
const filterSensitiveLog: (obj: CreateEntitlementResult) => any;
|
|
568
591
|
}
|
|
569
592
|
|
|
570
|
-
export
|
|
571
|
-
name: "EntitlementAlreadyExistsException";
|
|
572
|
-
$fault: "client";
|
|
593
|
+
export declare class EntitlementAlreadyExistsException extends __BaseException {
|
|
594
|
+
readonly name: "EntitlementAlreadyExistsException";
|
|
595
|
+
readonly $fault: "client";
|
|
573
596
|
|
|
574
597
|
Message?: string;
|
|
598
|
+
|
|
599
|
+
constructor(opts: __ExceptionOptionType<EntitlementAlreadyExistsException, __BaseException>);
|
|
575
600
|
}
|
|
576
601
|
|
|
577
602
|
export interface DomainJoinInfo {
|
|
@@ -763,11 +788,13 @@ export declare namespace CreateFleetResult {
|
|
|
763
788
|
const filterSensitiveLog: (obj: CreateFleetResult) => any;
|
|
764
789
|
}
|
|
765
790
|
|
|
766
|
-
export
|
|
767
|
-
name: "RequestLimitExceededException";
|
|
768
|
-
$fault: "client";
|
|
791
|
+
export declare class RequestLimitExceededException extends __BaseException {
|
|
792
|
+
readonly name: "RequestLimitExceededException";
|
|
793
|
+
readonly $fault: "client";
|
|
769
794
|
|
|
770
795
|
Message?: string;
|
|
796
|
+
|
|
797
|
+
constructor(opts: __ExceptionOptionType<RequestLimitExceededException, __BaseException>);
|
|
771
798
|
}
|
|
772
799
|
export interface CreateImageBuilderRequest {
|
|
773
800
|
|
|
@@ -1245,11 +1272,13 @@ export declare namespace DeleteAppBlockResult {
|
|
|
1245
1272
|
const filterSensitiveLog: (obj: DeleteAppBlockResult) => any;
|
|
1246
1273
|
}
|
|
1247
1274
|
|
|
1248
|
-
export
|
|
1249
|
-
name: "ResourceInUseException";
|
|
1250
|
-
$fault: "client";
|
|
1275
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
1276
|
+
readonly name: "ResourceInUseException";
|
|
1277
|
+
readonly $fault: "client";
|
|
1251
1278
|
|
|
1252
1279
|
Message?: string;
|
|
1280
|
+
|
|
1281
|
+
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
1253
1282
|
}
|
|
1254
1283
|
export interface DeleteApplicationRequest {
|
|
1255
1284
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: AppStreamClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: AppStreamClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: AppStreamClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|