@aws-sdk/client-transfer 3.696.0 → 3.703.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 +64 -0
- package/dist-cjs/index.js +377 -5
- package/dist-es/Transfer.js +16 -0
- package/dist-es/commands/CreateWebAppCommand.js +22 -0
- package/dist-es/commands/DeleteWebAppCommand.js +22 -0
- package/dist-es/commands/DeleteWebAppCustomizationCommand.js +22 -0
- package/dist-es/commands/DescribeWebAppCommand.js +22 -0
- package/dist-es/commands/DescribeWebAppCustomizationCommand.js +23 -0
- package/dist-es/commands/ListWebAppsCommand.js +22 -0
- package/dist-es/commands/UpdateWebAppCommand.js +22 -0
- package/dist-es/commands/UpdateWebAppCustomizationCommand.js +23 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/models/models_0.js +48 -0
- package/dist-es/pagination/ListWebAppsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +171 -3
- package/dist-types/Transfer.d.ts +57 -0
- package/dist-types/TransferClient.d.ts +10 -2
- package/dist-types/commands/CreateWebAppCommand.d.ts +102 -0
- package/dist-types/commands/DeleteWebAppCommand.d.ts +85 -0
- package/dist-types/commands/DeleteWebAppCustomizationCommand.d.ts +90 -0
- package/dist-types/commands/DescribeWebAppCommand.d.ts +108 -0
- package/dist-types/commands/DescribeWebAppCustomizationCommand.d.ts +93 -0
- package/dist-types/commands/ListWebAppsCommand.d.ts +92 -0
- package/dist-types/commands/UpdateWebAppCommand.d.ts +101 -0
- package/dist-types/commands/UpdateWebAppCustomizationCommand.d.ts +95 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +490 -12
- package/dist-types/pagination/ListWebAppsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +72 -0
- package/dist-types/ts3.4/Transfer.d.ts +137 -0
- package/dist-types/ts3.4/TransferClient.d.ts +50 -2
- package/dist-types/ts3.4/commands/CreateWebAppCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteWebAppCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DeleteWebAppCustomizationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DescribeWebAppCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeWebAppCustomizationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWebAppsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateWebAppCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateWebAppCustomizationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +179 -0
- package/dist-types/ts3.4/pagination/ListWebAppsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +96 -0
- package/package.json +4 -4
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DescribeWebAppRequest,
|
|
5
|
+
DescribeWebAppResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
TransferClientResolvedConfig,
|
|
11
|
+
} from "../TransferClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeWebAppCommandInput extends DescribeWebAppRequest {}
|
|
15
|
+
export interface DescribeWebAppCommandOutput
|
|
16
|
+
extends DescribeWebAppResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DescribeWebAppCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DescribeWebAppCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DescribeWebAppCommandInput,
|
|
23
|
+
DescribeWebAppCommandOutput,
|
|
24
|
+
TransferClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DescribeWebAppCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeWebAppCommandInput,
|
|
32
|
+
DescribeWebAppCommandOutput,
|
|
33
|
+
TransferClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class DescribeWebAppCommand extends DescribeWebAppCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: DescribeWebAppRequest;
|
|
43
|
+
output: DescribeWebAppResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: DescribeWebAppCommandInput;
|
|
47
|
+
output: DescribeWebAppCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DescribeWebAppCustomizationRequest,
|
|
5
|
+
DescribeWebAppCustomizationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
TransferClientResolvedConfig,
|
|
11
|
+
} from "../TransferClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeWebAppCustomizationCommandInput
|
|
15
|
+
extends DescribeWebAppCustomizationRequest {}
|
|
16
|
+
export interface DescribeWebAppCustomizationCommandOutput
|
|
17
|
+
extends DescribeWebAppCustomizationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeWebAppCustomizationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeWebAppCustomizationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeWebAppCustomizationCommandInput,
|
|
24
|
+
DescribeWebAppCustomizationCommandOutput,
|
|
25
|
+
TransferClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DescribeWebAppCustomizationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeWebAppCustomizationCommandInput,
|
|
33
|
+
DescribeWebAppCustomizationCommandOutput,
|
|
34
|
+
TransferClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeWebAppCustomizationCommand extends DescribeWebAppCustomizationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeWebAppCustomizationRequest;
|
|
44
|
+
output: DescribeWebAppCustomizationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeWebAppCustomizationCommandInput;
|
|
48
|
+
output: DescribeWebAppCustomizationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ListWebAppsRequest, ListWebAppsResponse } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
TransferClientResolvedConfig,
|
|
8
|
+
} from "../TransferClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListWebAppsCommandInput extends ListWebAppsRequest {}
|
|
12
|
+
export interface ListWebAppsCommandOutput
|
|
13
|
+
extends ListWebAppsResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListWebAppsCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListWebAppsCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
ListWebAppsCommandInput,
|
|
20
|
+
ListWebAppsCommandOutput,
|
|
21
|
+
TransferClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [ListWebAppsCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
ListWebAppsCommandInput,
|
|
29
|
+
ListWebAppsCommandOutput,
|
|
30
|
+
TransferClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class ListWebAppsCommand extends ListWebAppsCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ListWebAppsRequest;
|
|
40
|
+
output: ListWebAppsResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListWebAppsCommandInput;
|
|
44
|
+
output: ListWebAppsCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { UpdateWebAppRequest, UpdateWebAppResponse } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
TransferClientResolvedConfig,
|
|
8
|
+
} from "../TransferClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface UpdateWebAppCommandInput extends UpdateWebAppRequest {}
|
|
12
|
+
export interface UpdateWebAppCommandOutput
|
|
13
|
+
extends UpdateWebAppResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const UpdateWebAppCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: UpdateWebAppCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
UpdateWebAppCommandInput,
|
|
20
|
+
UpdateWebAppCommandOutput,
|
|
21
|
+
TransferClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: UpdateWebAppCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
UpdateWebAppCommandInput,
|
|
29
|
+
UpdateWebAppCommandOutput,
|
|
30
|
+
TransferClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class UpdateWebAppCommand extends UpdateWebAppCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: UpdateWebAppRequest;
|
|
40
|
+
output: UpdateWebAppResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: UpdateWebAppCommandInput;
|
|
44
|
+
output: UpdateWebAppCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
UpdateWebAppCustomizationRequest,
|
|
5
|
+
UpdateWebAppCustomizationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
TransferClientResolvedConfig,
|
|
11
|
+
} from "../TransferClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateWebAppCustomizationCommandInput
|
|
15
|
+
extends UpdateWebAppCustomizationRequest {}
|
|
16
|
+
export interface UpdateWebAppCustomizationCommandOutput
|
|
17
|
+
extends UpdateWebAppCustomizationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateWebAppCustomizationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateWebAppCustomizationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateWebAppCustomizationCommandInput,
|
|
24
|
+
UpdateWebAppCustomizationCommandOutput,
|
|
25
|
+
TransferClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdateWebAppCustomizationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateWebAppCustomizationCommandInput,
|
|
33
|
+
UpdateWebAppCustomizationCommandOutput,
|
|
34
|
+
TransferClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateWebAppCustomizationCommand extends UpdateWebAppCustomizationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateWebAppCustomizationRequest;
|
|
44
|
+
output: UpdateWebAppCustomizationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateWebAppCustomizationCommandInput;
|
|
48
|
+
output: UpdateWebAppCustomizationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -4,6 +4,7 @@ export * from "./CreateConnectorCommand";
|
|
|
4
4
|
export * from "./CreateProfileCommand";
|
|
5
5
|
export * from "./CreateServerCommand";
|
|
6
6
|
export * from "./CreateUserCommand";
|
|
7
|
+
export * from "./CreateWebAppCommand";
|
|
7
8
|
export * from "./CreateWorkflowCommand";
|
|
8
9
|
export * from "./DeleteAccessCommand";
|
|
9
10
|
export * from "./DeleteAgreementCommand";
|
|
@@ -14,6 +15,8 @@ export * from "./DeleteProfileCommand";
|
|
|
14
15
|
export * from "./DeleteServerCommand";
|
|
15
16
|
export * from "./DeleteSshPublicKeyCommand";
|
|
16
17
|
export * from "./DeleteUserCommand";
|
|
18
|
+
export * from "./DeleteWebAppCommand";
|
|
19
|
+
export * from "./DeleteWebAppCustomizationCommand";
|
|
17
20
|
export * from "./DeleteWorkflowCommand";
|
|
18
21
|
export * from "./DescribeAccessCommand";
|
|
19
22
|
export * from "./DescribeAgreementCommand";
|
|
@@ -25,6 +28,8 @@ export * from "./DescribeProfileCommand";
|
|
|
25
28
|
export * from "./DescribeSecurityPolicyCommand";
|
|
26
29
|
export * from "./DescribeServerCommand";
|
|
27
30
|
export * from "./DescribeUserCommand";
|
|
31
|
+
export * from "./DescribeWebAppCommand";
|
|
32
|
+
export * from "./DescribeWebAppCustomizationCommand";
|
|
28
33
|
export * from "./DescribeWorkflowCommand";
|
|
29
34
|
export * from "./ImportCertificateCommand";
|
|
30
35
|
export * from "./ImportHostKeyCommand";
|
|
@@ -41,6 +46,7 @@ export * from "./ListSecurityPoliciesCommand";
|
|
|
41
46
|
export * from "./ListServersCommand";
|
|
42
47
|
export * from "./ListTagsForResourceCommand";
|
|
43
48
|
export * from "./ListUsersCommand";
|
|
49
|
+
export * from "./ListWebAppsCommand";
|
|
44
50
|
export * from "./ListWorkflowsCommand";
|
|
45
51
|
export * from "./SendWorkflowStepStateCommand";
|
|
46
52
|
export * from "./StartDirectoryListingCommand";
|
|
@@ -59,3 +65,5 @@ export * from "./UpdateHostKeyCommand";
|
|
|
59
65
|
export * from "./UpdateProfileCommand";
|
|
60
66
|
export * from "./UpdateServerCommand";
|
|
61
67
|
export * from "./UpdateUserCommand";
|
|
68
|
+
export * from "./UpdateWebAppCommand";
|
|
69
|
+
export * from "./UpdateWebAppCustomizationCommand";
|
|
@@ -557,6 +557,58 @@ export interface CreateUserResponse {
|
|
|
557
557
|
ServerId: string | undefined;
|
|
558
558
|
UserName: string | undefined;
|
|
559
559
|
}
|
|
560
|
+
export interface IdentityCenterConfig {
|
|
561
|
+
InstanceArn?: string | undefined;
|
|
562
|
+
Role?: string | undefined;
|
|
563
|
+
}
|
|
564
|
+
export type WebAppIdentityProviderDetails =
|
|
565
|
+
| WebAppIdentityProviderDetails.IdentityCenterConfigMember
|
|
566
|
+
| WebAppIdentityProviderDetails.$UnknownMember;
|
|
567
|
+
export declare namespace WebAppIdentityProviderDetails {
|
|
568
|
+
interface IdentityCenterConfigMember {
|
|
569
|
+
IdentityCenterConfig: IdentityCenterConfig;
|
|
570
|
+
$unknown?: never;
|
|
571
|
+
}
|
|
572
|
+
interface $UnknownMember {
|
|
573
|
+
IdentityCenterConfig?: never;
|
|
574
|
+
$unknown: [string, any];
|
|
575
|
+
}
|
|
576
|
+
interface Visitor<T> {
|
|
577
|
+
IdentityCenterConfig: (value: IdentityCenterConfig) => T;
|
|
578
|
+
_: (name: string, value: any) => T;
|
|
579
|
+
}
|
|
580
|
+
const visit: <T>(
|
|
581
|
+
value: WebAppIdentityProviderDetails,
|
|
582
|
+
visitor: Visitor<T>
|
|
583
|
+
) => T;
|
|
584
|
+
}
|
|
585
|
+
export type WebAppUnits =
|
|
586
|
+
| WebAppUnits.ProvisionedMember
|
|
587
|
+
| WebAppUnits.$UnknownMember;
|
|
588
|
+
export declare namespace WebAppUnits {
|
|
589
|
+
interface ProvisionedMember {
|
|
590
|
+
Provisioned: number;
|
|
591
|
+
$unknown?: never;
|
|
592
|
+
}
|
|
593
|
+
interface $UnknownMember {
|
|
594
|
+
Provisioned?: never;
|
|
595
|
+
$unknown: [string, any];
|
|
596
|
+
}
|
|
597
|
+
interface Visitor<T> {
|
|
598
|
+
Provisioned: (value: number) => T;
|
|
599
|
+
_: (name: string, value: any) => T;
|
|
600
|
+
}
|
|
601
|
+
const visit: <T>(value: WebAppUnits, visitor: Visitor<T>) => T;
|
|
602
|
+
}
|
|
603
|
+
export interface CreateWebAppRequest {
|
|
604
|
+
IdentityProviderDetails: WebAppIdentityProviderDetails | undefined;
|
|
605
|
+
AccessEndpoint?: string | undefined;
|
|
606
|
+
WebAppUnits?: WebAppUnits | undefined;
|
|
607
|
+
Tags?: Tag[] | undefined;
|
|
608
|
+
}
|
|
609
|
+
export interface CreateWebAppResponse {
|
|
610
|
+
WebAppId: string | undefined;
|
|
611
|
+
}
|
|
560
612
|
export interface CustomStepDetails {
|
|
561
613
|
Name?: string | undefined;
|
|
562
614
|
Target?: string | undefined;
|
|
@@ -643,6 +695,12 @@ export interface DeleteUserRequest {
|
|
|
643
695
|
ServerId: string | undefined;
|
|
644
696
|
UserName: string | undefined;
|
|
645
697
|
}
|
|
698
|
+
export interface DeleteWebAppRequest {
|
|
699
|
+
WebAppId: string | undefined;
|
|
700
|
+
}
|
|
701
|
+
export interface DeleteWebAppCustomizationRequest {
|
|
702
|
+
WebAppId: string | undefined;
|
|
703
|
+
}
|
|
646
704
|
export interface DeleteWorkflowRequest {
|
|
647
705
|
WorkflowId: string | undefined;
|
|
648
706
|
}
|
|
@@ -737,6 +795,11 @@ export interface DescribedHostKey {
|
|
|
737
795
|
DateImported?: Date | undefined;
|
|
738
796
|
Tags?: Tag[] | undefined;
|
|
739
797
|
}
|
|
798
|
+
export interface DescribedIdentityCenterConfig {
|
|
799
|
+
ApplicationArn?: string | undefined;
|
|
800
|
+
InstanceArn?: string | undefined;
|
|
801
|
+
Role?: string | undefined;
|
|
802
|
+
}
|
|
740
803
|
export interface DescribedProfile {
|
|
741
804
|
Arn: string | undefined;
|
|
742
805
|
ProfileId?: string | undefined;
|
|
@@ -818,6 +881,45 @@ export interface DescribedUser {
|
|
|
818
881
|
Tags?: Tag[] | undefined;
|
|
819
882
|
UserName?: string | undefined;
|
|
820
883
|
}
|
|
884
|
+
export type DescribedWebAppIdentityProviderDetails =
|
|
885
|
+
| DescribedWebAppIdentityProviderDetails.IdentityCenterConfigMember
|
|
886
|
+
| DescribedWebAppIdentityProviderDetails.$UnknownMember;
|
|
887
|
+
export declare namespace DescribedWebAppIdentityProviderDetails {
|
|
888
|
+
interface IdentityCenterConfigMember {
|
|
889
|
+
IdentityCenterConfig: DescribedIdentityCenterConfig;
|
|
890
|
+
$unknown?: never;
|
|
891
|
+
}
|
|
892
|
+
interface $UnknownMember {
|
|
893
|
+
IdentityCenterConfig?: never;
|
|
894
|
+
$unknown: [string, any];
|
|
895
|
+
}
|
|
896
|
+
interface Visitor<T> {
|
|
897
|
+
IdentityCenterConfig: (value: DescribedIdentityCenterConfig) => T;
|
|
898
|
+
_: (name: string, value: any) => T;
|
|
899
|
+
}
|
|
900
|
+
const visit: <T>(
|
|
901
|
+
value: DescribedWebAppIdentityProviderDetails,
|
|
902
|
+
visitor: Visitor<T>
|
|
903
|
+
) => T;
|
|
904
|
+
}
|
|
905
|
+
export interface DescribedWebApp {
|
|
906
|
+
Arn: string | undefined;
|
|
907
|
+
WebAppId: string | undefined;
|
|
908
|
+
DescribedIdentityProviderDetails?:
|
|
909
|
+
| DescribedWebAppIdentityProviderDetails
|
|
910
|
+
| undefined;
|
|
911
|
+
AccessEndpoint?: string | undefined;
|
|
912
|
+
WebAppEndpoint?: string | undefined;
|
|
913
|
+
WebAppUnits?: WebAppUnits | undefined;
|
|
914
|
+
Tags?: Tag[] | undefined;
|
|
915
|
+
}
|
|
916
|
+
export interface DescribedWebAppCustomization {
|
|
917
|
+
Arn: string | undefined;
|
|
918
|
+
WebAppId: string | undefined;
|
|
919
|
+
Title?: string | undefined;
|
|
920
|
+
LogoFile?: Uint8Array | undefined;
|
|
921
|
+
FaviconFile?: Uint8Array | undefined;
|
|
922
|
+
}
|
|
821
923
|
export interface DescribedWorkflow {
|
|
822
924
|
Arn: string | undefined;
|
|
823
925
|
Description?: string | undefined;
|
|
@@ -867,6 +969,18 @@ export interface DescribeUserResponse {
|
|
|
867
969
|
ServerId: string | undefined;
|
|
868
970
|
User: DescribedUser | undefined;
|
|
869
971
|
}
|
|
972
|
+
export interface DescribeWebAppRequest {
|
|
973
|
+
WebAppId: string | undefined;
|
|
974
|
+
}
|
|
975
|
+
export interface DescribeWebAppResponse {
|
|
976
|
+
WebApp: DescribedWebApp | undefined;
|
|
977
|
+
}
|
|
978
|
+
export interface DescribeWebAppCustomizationRequest {
|
|
979
|
+
WebAppId: string | undefined;
|
|
980
|
+
}
|
|
981
|
+
export interface DescribeWebAppCustomizationResponse {
|
|
982
|
+
WebAppCustomization: DescribedWebAppCustomization | undefined;
|
|
983
|
+
}
|
|
870
984
|
export interface DescribeWorkflowRequest {
|
|
871
985
|
WorkflowId: string | undefined;
|
|
872
986
|
}
|
|
@@ -947,6 +1061,12 @@ export interface ListedUser {
|
|
|
947
1061
|
SshPublicKeyCount?: number | undefined;
|
|
948
1062
|
UserName?: string | undefined;
|
|
949
1063
|
}
|
|
1064
|
+
export interface ListedWebApp {
|
|
1065
|
+
Arn: string | undefined;
|
|
1066
|
+
WebAppId: string | undefined;
|
|
1067
|
+
AccessEndpoint?: string | undefined;
|
|
1068
|
+
WebAppEndpoint?: string | undefined;
|
|
1069
|
+
}
|
|
950
1070
|
export interface ListedWorkflow {
|
|
951
1071
|
WorkflowId?: string | undefined;
|
|
952
1072
|
Description?: string | undefined;
|
|
@@ -1027,6 +1147,14 @@ export interface ListUsersResponse {
|
|
|
1027
1147
|
ServerId: string | undefined;
|
|
1028
1148
|
Users: ListedUser[] | undefined;
|
|
1029
1149
|
}
|
|
1150
|
+
export interface ListWebAppsRequest {
|
|
1151
|
+
MaxResults?: number | undefined;
|
|
1152
|
+
NextToken?: string | undefined;
|
|
1153
|
+
}
|
|
1154
|
+
export interface ListWebAppsResponse {
|
|
1155
|
+
NextToken?: string | undefined;
|
|
1156
|
+
WebApps: ListedWebApp[] | undefined;
|
|
1157
|
+
}
|
|
1030
1158
|
export interface ListWorkflowsRequest {
|
|
1031
1159
|
MaxResults?: number | undefined;
|
|
1032
1160
|
NextToken?: string | undefined;
|
|
@@ -1161,6 +1289,48 @@ export interface UpdateUserResponse {
|
|
|
1161
1289
|
ServerId: string | undefined;
|
|
1162
1290
|
UserName: string | undefined;
|
|
1163
1291
|
}
|
|
1292
|
+
export interface UpdateWebAppCustomizationRequest {
|
|
1293
|
+
WebAppId: string | undefined;
|
|
1294
|
+
Title?: string | undefined;
|
|
1295
|
+
LogoFile?: Uint8Array | undefined;
|
|
1296
|
+
FaviconFile?: Uint8Array | undefined;
|
|
1297
|
+
}
|
|
1298
|
+
export interface UpdateWebAppCustomizationResponse {
|
|
1299
|
+
WebAppId: string | undefined;
|
|
1300
|
+
}
|
|
1301
|
+
export interface UpdateWebAppIdentityCenterConfig {
|
|
1302
|
+
Role?: string | undefined;
|
|
1303
|
+
}
|
|
1304
|
+
export type UpdateWebAppIdentityProviderDetails =
|
|
1305
|
+
| UpdateWebAppIdentityProviderDetails.IdentityCenterConfigMember
|
|
1306
|
+
| UpdateWebAppIdentityProviderDetails.$UnknownMember;
|
|
1307
|
+
export declare namespace UpdateWebAppIdentityProviderDetails {
|
|
1308
|
+
interface IdentityCenterConfigMember {
|
|
1309
|
+
IdentityCenterConfig: UpdateWebAppIdentityCenterConfig;
|
|
1310
|
+
$unknown?: never;
|
|
1311
|
+
}
|
|
1312
|
+
interface $UnknownMember {
|
|
1313
|
+
IdentityCenterConfig?: never;
|
|
1314
|
+
$unknown: [string, any];
|
|
1315
|
+
}
|
|
1316
|
+
interface Visitor<T> {
|
|
1317
|
+
IdentityCenterConfig: (value: UpdateWebAppIdentityCenterConfig) => T;
|
|
1318
|
+
_: (name: string, value: any) => T;
|
|
1319
|
+
}
|
|
1320
|
+
const visit: <T>(
|
|
1321
|
+
value: UpdateWebAppIdentityProviderDetails,
|
|
1322
|
+
visitor: Visitor<T>
|
|
1323
|
+
) => T;
|
|
1324
|
+
}
|
|
1325
|
+
export interface UpdateWebAppRequest {
|
|
1326
|
+
WebAppId: string | undefined;
|
|
1327
|
+
IdentityProviderDetails?: UpdateWebAppIdentityProviderDetails | undefined;
|
|
1328
|
+
AccessEndpoint?: string | undefined;
|
|
1329
|
+
WebAppUnits?: WebAppUnits | undefined;
|
|
1330
|
+
}
|
|
1331
|
+
export interface UpdateWebAppResponse {
|
|
1332
|
+
WebAppId: string | undefined;
|
|
1333
|
+
}
|
|
1164
1334
|
export declare const DescribedCertificateFilterSensitiveLog: (
|
|
1165
1335
|
obj: DescribedCertificate
|
|
1166
1336
|
) => any;
|
|
@@ -1173,6 +1343,12 @@ export declare const ImportCertificateRequestFilterSensitiveLog: (
|
|
|
1173
1343
|
export declare const CreateServerRequestFilterSensitiveLog: (
|
|
1174
1344
|
obj: CreateServerRequest
|
|
1175
1345
|
) => any;
|
|
1346
|
+
export declare const DescribedWebAppCustomizationFilterSensitiveLog: (
|
|
1347
|
+
obj: DescribedWebAppCustomization
|
|
1348
|
+
) => any;
|
|
1349
|
+
export declare const DescribeWebAppCustomizationResponseFilterSensitiveLog: (
|
|
1350
|
+
obj: DescribeWebAppCustomizationResponse
|
|
1351
|
+
) => any;
|
|
1176
1352
|
export declare const ImportHostKeyRequestFilterSensitiveLog: (
|
|
1177
1353
|
obj: ImportHostKeyRequest
|
|
1178
1354
|
) => any;
|
|
@@ -1182,3 +1358,6 @@ export declare const UpdateServerRequestFilterSensitiveLog: (
|
|
|
1182
1358
|
export declare const TestIdentityProviderRequestFilterSensitiveLog: (
|
|
1183
1359
|
obj: TestIdentityProviderRequest
|
|
1184
1360
|
) => any;
|
|
1361
|
+
export declare const UpdateWebAppCustomizationRequestFilterSensitiveLog: (
|
|
1362
|
+
obj: UpdateWebAppCustomizationRequest
|
|
1363
|
+
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListWebAppsCommandInput,
|
|
4
|
+
ListWebAppsCommandOutput,
|
|
5
|
+
} from "../commands/ListWebAppsCommand";
|
|
6
|
+
import { TransferPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListWebApps: (
|
|
8
|
+
config: TransferPaginationConfiguration,
|
|
9
|
+
input: ListWebAppsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListWebAppsCommandOutput>;
|
|
@@ -10,4 +10,5 @@ export * from "./ListSecurityPoliciesPaginator";
|
|
|
10
10
|
export * from "./ListServersPaginator";
|
|
11
11
|
export * from "./ListTagsForResourcePaginator";
|
|
12
12
|
export * from "./ListUsersPaginator";
|
|
13
|
+
export * from "./ListWebAppsPaginator";
|
|
13
14
|
export * from "./ListWorkflowsPaginator";
|