@aws-sdk/client-chime-sdk-identity 3.168.0 → 3.170.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 +16 -0
- package/dist-types/ts3.4/ChimeSDKIdentity.d.ts +442 -125
- package/dist-types/ts3.4/ChimeSDKIdentityClient.d.ts +274 -97
- package/dist-types/ts3.4/commands/CreateAppInstanceAdminCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateAppInstanceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateAppInstanceUserCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteAppInstanceAdminCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteAppInstanceCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/DeleteAppInstanceUserCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeregisterAppInstanceUserEndpointCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeAppInstanceAdminCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeAppInstanceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeAppInstanceUserCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeAppInstanceUserEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetAppInstanceRetentionSettingsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAppInstanceAdminsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAppInstanceUserEndpointsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAppInstanceUsersCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAppInstancesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutAppInstanceRetentionSettingsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/RegisterAppInstanceUserEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateAppInstanceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateAppInstanceUserCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateAppInstanceUserEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +24 -24
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/ChimeSDKIdentityServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +678 -616
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListAppInstanceAdminsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAppInstanceUserEndpointsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAppInstanceUsersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListAppInstancesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +293 -74
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { ChimeSDKIdentity } from "../ChimeSDKIdentity";
|
|
3
|
-
import { ChimeSDKIdentityClient } from "../ChimeSDKIdentityClient";
|
|
4
|
-
export interface ChimeSDKIdentityPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { ChimeSDKIdentity } from "../ChimeSDKIdentity";
|
|
3
|
+
import { ChimeSDKIdentityClient } from "../ChimeSDKIdentityClient";
|
|
4
|
+
export interface ChimeSDKIdentityPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: ChimeSDKIdentity | ChimeSDKIdentityClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAppInstanceAdminsCommandInput,
|
|
4
|
+
ListAppInstanceAdminsCommandOutput,
|
|
5
|
+
} from "../commands/ListAppInstanceAdminsCommand";
|
|
6
|
+
import { ChimeSDKIdentityPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListAppInstanceAdmins(
|
|
8
|
+
config: ChimeSDKIdentityPaginationConfiguration,
|
|
9
|
+
input: ListAppInstanceAdminsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListAppInstanceAdminsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAppInstanceUserEndpointsCommandInput,
|
|
4
|
+
ListAppInstanceUserEndpointsCommandOutput,
|
|
5
|
+
} from "../commands/ListAppInstanceUserEndpointsCommand";
|
|
6
|
+
import { ChimeSDKIdentityPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListAppInstanceUserEndpoints(
|
|
8
|
+
config: ChimeSDKIdentityPaginationConfiguration,
|
|
9
|
+
input: ListAppInstanceUserEndpointsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListAppInstanceUserEndpointsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAppInstanceUsersCommandInput,
|
|
4
|
+
ListAppInstanceUsersCommandOutput,
|
|
5
|
+
} from "../commands/ListAppInstanceUsersCommand";
|
|
6
|
+
import { ChimeSDKIdentityPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListAppInstanceUsers(
|
|
8
|
+
config: ChimeSDKIdentityPaginationConfiguration,
|
|
9
|
+
input: ListAppInstanceUsersCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListAppInstanceUsersCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAppInstancesCommandInput,
|
|
4
|
+
ListAppInstancesCommandOutput,
|
|
5
|
+
} from "../commands/ListAppInstancesCommand";
|
|
6
|
+
import { ChimeSDKIdentityPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListAppInstances(
|
|
8
|
+
config: ChimeSDKIdentityPaginationConfiguration,
|
|
9
|
+
input: ListAppInstancesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListAppInstancesCommandOutput>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListAppInstanceAdminsPaginator";
|
|
3
|
-
export * from "./ListAppInstanceUserEndpointsPaginator";
|
|
4
|
-
export * from "./ListAppInstanceUsersPaginator";
|
|
5
|
-
export * from "./ListAppInstancesPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListAppInstanceAdminsPaginator";
|
|
3
|
+
export * from "./ListAppInstanceUserEndpointsPaginator";
|
|
4
|
+
export * from "./ListAppInstanceUsersPaginator";
|
|
5
|
+
export * from "./ListAppInstancesPaginator";
|
|
@@ -1,74 +1,293 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateAppInstanceAdminCommandInput,
|
|
8
|
+
CreateAppInstanceAdminCommandOutput,
|
|
9
|
+
} from "../commands/CreateAppInstanceAdminCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateAppInstanceCommandInput,
|
|
12
|
+
CreateAppInstanceCommandOutput,
|
|
13
|
+
} from "../commands/CreateAppInstanceCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateAppInstanceUserCommandInput,
|
|
16
|
+
CreateAppInstanceUserCommandOutput,
|
|
17
|
+
} from "../commands/CreateAppInstanceUserCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteAppInstanceAdminCommandInput,
|
|
20
|
+
DeleteAppInstanceAdminCommandOutput,
|
|
21
|
+
} from "../commands/DeleteAppInstanceAdminCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteAppInstanceCommandInput,
|
|
24
|
+
DeleteAppInstanceCommandOutput,
|
|
25
|
+
} from "../commands/DeleteAppInstanceCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteAppInstanceUserCommandInput,
|
|
28
|
+
DeleteAppInstanceUserCommandOutput,
|
|
29
|
+
} from "../commands/DeleteAppInstanceUserCommand";
|
|
30
|
+
import {
|
|
31
|
+
DeregisterAppInstanceUserEndpointCommandInput,
|
|
32
|
+
DeregisterAppInstanceUserEndpointCommandOutput,
|
|
33
|
+
} from "../commands/DeregisterAppInstanceUserEndpointCommand";
|
|
34
|
+
import {
|
|
35
|
+
DescribeAppInstanceAdminCommandInput,
|
|
36
|
+
DescribeAppInstanceAdminCommandOutput,
|
|
37
|
+
} from "../commands/DescribeAppInstanceAdminCommand";
|
|
38
|
+
import {
|
|
39
|
+
DescribeAppInstanceCommandInput,
|
|
40
|
+
DescribeAppInstanceCommandOutput,
|
|
41
|
+
} from "../commands/DescribeAppInstanceCommand";
|
|
42
|
+
import {
|
|
43
|
+
DescribeAppInstanceUserCommandInput,
|
|
44
|
+
DescribeAppInstanceUserCommandOutput,
|
|
45
|
+
} from "../commands/DescribeAppInstanceUserCommand";
|
|
46
|
+
import {
|
|
47
|
+
DescribeAppInstanceUserEndpointCommandInput,
|
|
48
|
+
DescribeAppInstanceUserEndpointCommandOutput,
|
|
49
|
+
} from "../commands/DescribeAppInstanceUserEndpointCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetAppInstanceRetentionSettingsCommandInput,
|
|
52
|
+
GetAppInstanceRetentionSettingsCommandOutput,
|
|
53
|
+
} from "../commands/GetAppInstanceRetentionSettingsCommand";
|
|
54
|
+
import {
|
|
55
|
+
ListAppInstanceAdminsCommandInput,
|
|
56
|
+
ListAppInstanceAdminsCommandOutput,
|
|
57
|
+
} from "../commands/ListAppInstanceAdminsCommand";
|
|
58
|
+
import {
|
|
59
|
+
ListAppInstancesCommandInput,
|
|
60
|
+
ListAppInstancesCommandOutput,
|
|
61
|
+
} from "../commands/ListAppInstancesCommand";
|
|
62
|
+
import {
|
|
63
|
+
ListAppInstanceUserEndpointsCommandInput,
|
|
64
|
+
ListAppInstanceUserEndpointsCommandOutput,
|
|
65
|
+
} from "../commands/ListAppInstanceUserEndpointsCommand";
|
|
66
|
+
import {
|
|
67
|
+
ListAppInstanceUsersCommandInput,
|
|
68
|
+
ListAppInstanceUsersCommandOutput,
|
|
69
|
+
} from "../commands/ListAppInstanceUsersCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListTagsForResourceCommandInput,
|
|
72
|
+
ListTagsForResourceCommandOutput,
|
|
73
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
74
|
+
import {
|
|
75
|
+
PutAppInstanceRetentionSettingsCommandInput,
|
|
76
|
+
PutAppInstanceRetentionSettingsCommandOutput,
|
|
77
|
+
} from "../commands/PutAppInstanceRetentionSettingsCommand";
|
|
78
|
+
import {
|
|
79
|
+
RegisterAppInstanceUserEndpointCommandInput,
|
|
80
|
+
RegisterAppInstanceUserEndpointCommandOutput,
|
|
81
|
+
} from "../commands/RegisterAppInstanceUserEndpointCommand";
|
|
82
|
+
import {
|
|
83
|
+
TagResourceCommandInput,
|
|
84
|
+
TagResourceCommandOutput,
|
|
85
|
+
} from "../commands/TagResourceCommand";
|
|
86
|
+
import {
|
|
87
|
+
UntagResourceCommandInput,
|
|
88
|
+
UntagResourceCommandOutput,
|
|
89
|
+
} from "../commands/UntagResourceCommand";
|
|
90
|
+
import {
|
|
91
|
+
UpdateAppInstanceCommandInput,
|
|
92
|
+
UpdateAppInstanceCommandOutput,
|
|
93
|
+
} from "../commands/UpdateAppInstanceCommand";
|
|
94
|
+
import {
|
|
95
|
+
UpdateAppInstanceUserCommandInput,
|
|
96
|
+
UpdateAppInstanceUserCommandOutput,
|
|
97
|
+
} from "../commands/UpdateAppInstanceUserCommand";
|
|
98
|
+
import {
|
|
99
|
+
UpdateAppInstanceUserEndpointCommandInput,
|
|
100
|
+
UpdateAppInstanceUserEndpointCommandOutput,
|
|
101
|
+
} from "../commands/UpdateAppInstanceUserEndpointCommand";
|
|
102
|
+
export declare const serializeAws_restJson1CreateAppInstanceCommand: (
|
|
103
|
+
input: CreateAppInstanceCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const serializeAws_restJson1CreateAppInstanceAdminCommand: (
|
|
107
|
+
input: CreateAppInstanceAdminCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const serializeAws_restJson1CreateAppInstanceUserCommand: (
|
|
111
|
+
input: CreateAppInstanceUserCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_restJson1DeleteAppInstanceCommand: (
|
|
115
|
+
input: DeleteAppInstanceCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_restJson1DeleteAppInstanceAdminCommand: (
|
|
119
|
+
input: DeleteAppInstanceAdminCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const serializeAws_restJson1DeleteAppInstanceUserCommand: (
|
|
123
|
+
input: DeleteAppInstanceUserCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const serializeAws_restJson1DeregisterAppInstanceUserEndpointCommand: (
|
|
127
|
+
input: DeregisterAppInstanceUserEndpointCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_restJson1DescribeAppInstanceCommand: (
|
|
131
|
+
input: DescribeAppInstanceCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_restJson1DescribeAppInstanceAdminCommand: (
|
|
135
|
+
input: DescribeAppInstanceAdminCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_restJson1DescribeAppInstanceUserCommand: (
|
|
139
|
+
input: DescribeAppInstanceUserCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_restJson1DescribeAppInstanceUserEndpointCommand: (
|
|
143
|
+
input: DescribeAppInstanceUserEndpointCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_restJson1GetAppInstanceRetentionSettingsCommand: (
|
|
147
|
+
input: GetAppInstanceRetentionSettingsCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_restJson1ListAppInstanceAdminsCommand: (
|
|
151
|
+
input: ListAppInstanceAdminsCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const serializeAws_restJson1ListAppInstancesCommand: (
|
|
155
|
+
input: ListAppInstancesCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const serializeAws_restJson1ListAppInstanceUserEndpointsCommand: (
|
|
159
|
+
input: ListAppInstanceUserEndpointsCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const serializeAws_restJson1ListAppInstanceUsersCommand: (
|
|
163
|
+
input: ListAppInstanceUsersCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const serializeAws_restJson1ListTagsForResourceCommand: (
|
|
167
|
+
input: ListTagsForResourceCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_restJson1PutAppInstanceRetentionSettingsCommand: (
|
|
171
|
+
input: PutAppInstanceRetentionSettingsCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const serializeAws_restJson1RegisterAppInstanceUserEndpointCommand: (
|
|
175
|
+
input: RegisterAppInstanceUserEndpointCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const serializeAws_restJson1TagResourceCommand: (
|
|
179
|
+
input: TagResourceCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const serializeAws_restJson1UntagResourceCommand: (
|
|
183
|
+
input: UntagResourceCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const serializeAws_restJson1UpdateAppInstanceCommand: (
|
|
187
|
+
input: UpdateAppInstanceCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const serializeAws_restJson1UpdateAppInstanceUserCommand: (
|
|
191
|
+
input: UpdateAppInstanceUserCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const serializeAws_restJson1UpdateAppInstanceUserEndpointCommand: (
|
|
195
|
+
input: UpdateAppInstanceUserEndpointCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const deserializeAws_restJson1CreateAppInstanceCommand: (
|
|
199
|
+
output: __HttpResponse,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<CreateAppInstanceCommandOutput>;
|
|
202
|
+
export declare const deserializeAws_restJson1CreateAppInstanceAdminCommand: (
|
|
203
|
+
output: __HttpResponse,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<CreateAppInstanceAdminCommandOutput>;
|
|
206
|
+
export declare const deserializeAws_restJson1CreateAppInstanceUserCommand: (
|
|
207
|
+
output: __HttpResponse,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<CreateAppInstanceUserCommandOutput>;
|
|
210
|
+
export declare const deserializeAws_restJson1DeleteAppInstanceCommand: (
|
|
211
|
+
output: __HttpResponse,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<DeleteAppInstanceCommandOutput>;
|
|
214
|
+
export declare const deserializeAws_restJson1DeleteAppInstanceAdminCommand: (
|
|
215
|
+
output: __HttpResponse,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<DeleteAppInstanceAdminCommandOutput>;
|
|
218
|
+
export declare const deserializeAws_restJson1DeleteAppInstanceUserCommand: (
|
|
219
|
+
output: __HttpResponse,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<DeleteAppInstanceUserCommandOutput>;
|
|
222
|
+
export declare const deserializeAws_restJson1DeregisterAppInstanceUserEndpointCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<DeregisterAppInstanceUserEndpointCommandOutput>;
|
|
226
|
+
export declare const deserializeAws_restJson1DescribeAppInstanceCommand: (
|
|
227
|
+
output: __HttpResponse,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<DescribeAppInstanceCommandOutput>;
|
|
230
|
+
export declare const deserializeAws_restJson1DescribeAppInstanceAdminCommand: (
|
|
231
|
+
output: __HttpResponse,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<DescribeAppInstanceAdminCommandOutput>;
|
|
234
|
+
export declare const deserializeAws_restJson1DescribeAppInstanceUserCommand: (
|
|
235
|
+
output: __HttpResponse,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<DescribeAppInstanceUserCommandOutput>;
|
|
238
|
+
export declare const deserializeAws_restJson1DescribeAppInstanceUserEndpointCommand: (
|
|
239
|
+
output: __HttpResponse,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<DescribeAppInstanceUserEndpointCommandOutput>;
|
|
242
|
+
export declare const deserializeAws_restJson1GetAppInstanceRetentionSettingsCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<GetAppInstanceRetentionSettingsCommandOutput>;
|
|
246
|
+
export declare const deserializeAws_restJson1ListAppInstanceAdminsCommand: (
|
|
247
|
+
output: __HttpResponse,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<ListAppInstanceAdminsCommandOutput>;
|
|
250
|
+
export declare const deserializeAws_restJson1ListAppInstancesCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<ListAppInstancesCommandOutput>;
|
|
254
|
+
export declare const deserializeAws_restJson1ListAppInstanceUserEndpointsCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<ListAppInstanceUserEndpointsCommandOutput>;
|
|
258
|
+
export declare const deserializeAws_restJson1ListAppInstanceUsersCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<ListAppInstanceUsersCommandOutput>;
|
|
262
|
+
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
266
|
+
export declare const deserializeAws_restJson1PutAppInstanceRetentionSettingsCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<PutAppInstanceRetentionSettingsCommandOutput>;
|
|
270
|
+
export declare const deserializeAws_restJson1RegisterAppInstanceUserEndpointCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<RegisterAppInstanceUserEndpointCommandOutput>;
|
|
274
|
+
export declare const deserializeAws_restJson1TagResourceCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<TagResourceCommandOutput>;
|
|
278
|
+
export declare const deserializeAws_restJson1UntagResourceCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
282
|
+
export declare const deserializeAws_restJson1UpdateAppInstanceCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<UpdateAppInstanceCommandOutput>;
|
|
286
|
+
export declare const deserializeAws_restJson1UpdateAppInstanceUserCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<UpdateAppInstanceUserCommandOutput>;
|
|
290
|
+
export declare const deserializeAws_restJson1UpdateAppInstanceUserEndpointCommand: (
|
|
291
|
+
output: __HttpResponse,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<UpdateAppInstanceUserEndpointCommandOutput>;
|
|
@@ -1,38 +1,68 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { ChimeSDKIdentityClientConfig } from "./ChimeSDKIdentityClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { ChimeSDKIdentityClientConfig } from "./ChimeSDKIdentityClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (
|
|
5
|
+
config: ChimeSDKIdentityClientConfig
|
|
6
|
+
) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
9
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
10
|
+
>;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
14
|
+
credentialDefaultProvider: (
|
|
15
|
+
input: any
|
|
16
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
17
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
18
|
+
import("@aws-sdk/types").UserAgent
|
|
19
|
+
>;
|
|
20
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
21
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
22
|
+
requestHandler:
|
|
23
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
24
|
+
any,
|
|
25
|
+
any,
|
|
26
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
27
|
+
> &
|
|
28
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
29
|
+
| RequestHandler;
|
|
30
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
31
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
32
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
33
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
34
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
35
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
36
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
37
|
+
apiVersion: string;
|
|
38
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
39
|
+
disableHostPrefix: boolean;
|
|
40
|
+
logger: import("@aws-sdk/types").Logger;
|
|
41
|
+
serviceId: string;
|
|
42
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
43
|
+
endpoint?:
|
|
44
|
+
| string
|
|
45
|
+
| import("@aws-sdk/types").Endpoint
|
|
46
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
47
|
+
| undefined;
|
|
48
|
+
tls?: boolean | undefined;
|
|
49
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
50
|
+
credentials?:
|
|
51
|
+
| import("@aws-sdk/types").Credentials
|
|
52
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
53
|
+
| undefined;
|
|
54
|
+
signer?:
|
|
55
|
+
| import("@aws-sdk/types").RequestSigner
|
|
56
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
57
|
+
| undefined;
|
|
58
|
+
signingEscapePath?: boolean | undefined;
|
|
59
|
+
systemClockOffset?: number | undefined;
|
|
60
|
+
signingRegion?: string | undefined;
|
|
61
|
+
signerConstructor?:
|
|
62
|
+
| (new (
|
|
63
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
64
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
65
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
66
|
+
| undefined;
|
|
67
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
68
|
+
};
|