@aws-sdk/client-chime-sdk-identity 3.169.0 → 3.171.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.
Files changed (45) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ChimeSDKIdentity.d.ts +418 -125
  3. package/dist-types/ts3.4/ChimeSDKIdentityClient.d.ts +249 -97
  4. package/dist-types/ts3.4/commands/CreateAppInstanceAdminCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/CreateAppInstanceCommand.d.ts +36 -17
  6. package/dist-types/ts3.4/commands/CreateAppInstanceUserCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/DeleteAppInstanceAdminCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/DeleteAppInstanceCommand.d.ts +31 -17
  9. package/dist-types/ts3.4/commands/DeleteAppInstanceUserCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DeregisterAppInstanceUserEndpointCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/DescribeAppInstanceAdminCommand.d.ts +39 -17
  12. package/dist-types/ts3.4/commands/DescribeAppInstanceCommand.d.ts +36 -17
  13. package/dist-types/ts3.4/commands/DescribeAppInstanceUserCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/DescribeAppInstanceUserEndpointCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/GetAppInstanceRetentionSettingsCommand.d.ts +39 -17
  16. package/dist-types/ts3.4/commands/ListAppInstanceAdminsCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/ListAppInstanceUserEndpointsCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/ListAppInstanceUsersCommand.d.ts +39 -17
  19. package/dist-types/ts3.4/commands/ListAppInstancesCommand.d.ts +35 -17
  20. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  21. package/dist-types/ts3.4/commands/PutAppInstanceRetentionSettingsCommand.d.ts +39 -17
  22. package/dist-types/ts3.4/commands/RegisterAppInstanceUserEndpointCommand.d.ts +39 -17
  23. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +30 -17
  24. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +30 -17
  25. package/dist-types/ts3.4/commands/UpdateAppInstanceCommand.d.ts +36 -17
  26. package/dist-types/ts3.4/commands/UpdateAppInstanceUserCommand.d.ts +39 -17
  27. package/dist-types/ts3.4/commands/UpdateAppInstanceUserEndpointCommand.d.ts +39 -17
  28. package/dist-types/ts3.4/commands/index.d.ts +24 -24
  29. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  30. package/dist-types/ts3.4/index.d.ts +6 -6
  31. package/dist-types/ts3.4/models/ChimeSDKIdentityServiceException.d.ts +7 -6
  32. package/dist-types/ts3.4/models/index.d.ts +1 -1
  33. package/dist-types/ts3.4/models/models_0.d.ts +513 -616
  34. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  35. package/dist-types/ts3.4/pagination/ListAppInstanceAdminsPaginator.d.ts +11 -4
  36. package/dist-types/ts3.4/pagination/ListAppInstanceUserEndpointsPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/ListAppInstanceUsersPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/ListAppInstancesPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  40. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +293 -74
  41. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
  42. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  43. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  44. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  45. 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 extends PaginationConfiguration {
5
- client: ChimeSDKIdentity | ChimeSDKIdentityClient;
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 { ListAppInstanceAdminsCommandInput, ListAppInstanceAdminsCommandOutput } from "../commands/ListAppInstanceAdminsCommand";
3
- import { ChimeSDKIdentityPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListAppInstanceAdmins(config: ChimeSDKIdentityPaginationConfiguration, input: ListAppInstanceAdminsCommandInput, ...additionalArguments: any): Paginator<ListAppInstanceAdminsCommandOutput>;
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 { ListAppInstanceUserEndpointsCommandInput, ListAppInstanceUserEndpointsCommandOutput } from "../commands/ListAppInstanceUserEndpointsCommand";
3
- import { ChimeSDKIdentityPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListAppInstanceUserEndpoints(config: ChimeSDKIdentityPaginationConfiguration, input: ListAppInstanceUserEndpointsCommandInput, ...additionalArguments: any): Paginator<ListAppInstanceUserEndpointsCommandOutput>;
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 { ListAppInstanceUsersCommandInput, ListAppInstanceUsersCommandOutput } from "../commands/ListAppInstanceUsersCommand";
3
- import { ChimeSDKIdentityPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListAppInstanceUsers(config: ChimeSDKIdentityPaginationConfiguration, input: ListAppInstanceUsersCommandInput, ...additionalArguments: any): Paginator<ListAppInstanceUsersCommandOutput>;
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 { ListAppInstancesCommandInput, ListAppInstancesCommandOutput } from "../commands/ListAppInstancesCommand";
3
- import { ChimeSDKIdentityPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListAppInstances(config: ChimeSDKIdentityPaginationConfiguration, input: ListAppInstancesCommandInput, ...additionalArguments: any): Paginator<ListAppInstancesCommandOutput>;
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 { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { CreateAppInstanceAdminCommandInput, CreateAppInstanceAdminCommandOutput } from "../commands/CreateAppInstanceAdminCommand";
4
- import { CreateAppInstanceCommandInput, CreateAppInstanceCommandOutput } from "../commands/CreateAppInstanceCommand";
5
- import { CreateAppInstanceUserCommandInput, CreateAppInstanceUserCommandOutput } from "../commands/CreateAppInstanceUserCommand";
6
- import { DeleteAppInstanceAdminCommandInput, DeleteAppInstanceAdminCommandOutput } from "../commands/DeleteAppInstanceAdminCommand";
7
- import { DeleteAppInstanceCommandInput, DeleteAppInstanceCommandOutput } from "../commands/DeleteAppInstanceCommand";
8
- import { DeleteAppInstanceUserCommandInput, DeleteAppInstanceUserCommandOutput } from "../commands/DeleteAppInstanceUserCommand";
9
- import { DeregisterAppInstanceUserEndpointCommandInput, DeregisterAppInstanceUserEndpointCommandOutput } from "../commands/DeregisterAppInstanceUserEndpointCommand";
10
- import { DescribeAppInstanceAdminCommandInput, DescribeAppInstanceAdminCommandOutput } from "../commands/DescribeAppInstanceAdminCommand";
11
- import { DescribeAppInstanceCommandInput, DescribeAppInstanceCommandOutput } from "../commands/DescribeAppInstanceCommand";
12
- import { DescribeAppInstanceUserCommandInput, DescribeAppInstanceUserCommandOutput } from "../commands/DescribeAppInstanceUserCommand";
13
- import { DescribeAppInstanceUserEndpointCommandInput, DescribeAppInstanceUserEndpointCommandOutput } from "../commands/DescribeAppInstanceUserEndpointCommand";
14
- import { GetAppInstanceRetentionSettingsCommandInput, GetAppInstanceRetentionSettingsCommandOutput } from "../commands/GetAppInstanceRetentionSettingsCommand";
15
- import { ListAppInstanceAdminsCommandInput, ListAppInstanceAdminsCommandOutput } from "../commands/ListAppInstanceAdminsCommand";
16
- import { ListAppInstancesCommandInput, ListAppInstancesCommandOutput } from "../commands/ListAppInstancesCommand";
17
- import { ListAppInstanceUserEndpointsCommandInput, ListAppInstanceUserEndpointsCommandOutput } from "../commands/ListAppInstanceUserEndpointsCommand";
18
- import { ListAppInstanceUsersCommandInput, ListAppInstanceUsersCommandOutput } from "../commands/ListAppInstanceUsersCommand";
19
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
20
- import { PutAppInstanceRetentionSettingsCommandInput, PutAppInstanceRetentionSettingsCommandOutput } from "../commands/PutAppInstanceRetentionSettingsCommand";
21
- import { RegisterAppInstanceUserEndpointCommandInput, RegisterAppInstanceUserEndpointCommandOutput } from "../commands/RegisterAppInstanceUserEndpointCommand";
22
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
23
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
24
- import { UpdateAppInstanceCommandInput, UpdateAppInstanceCommandOutput } from "../commands/UpdateAppInstanceCommand";
25
- import { UpdateAppInstanceUserCommandInput, UpdateAppInstanceUserCommandOutput } from "../commands/UpdateAppInstanceUserCommand";
26
- import { UpdateAppInstanceUserEndpointCommandInput, UpdateAppInstanceUserEndpointCommandOutput } from "../commands/UpdateAppInstanceUserEndpointCommand";
27
- export declare const serializeAws_restJson1CreateAppInstanceCommand: (input: CreateAppInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_restJson1CreateAppInstanceAdminCommand: (input: CreateAppInstanceAdminCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const serializeAws_restJson1CreateAppInstanceUserCommand: (input: CreateAppInstanceUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- export declare const serializeAws_restJson1DeleteAppInstanceCommand: (input: DeleteAppInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const serializeAws_restJson1DeleteAppInstanceAdminCommand: (input: DeleteAppInstanceAdminCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_restJson1DeleteAppInstanceUserCommand: (input: DeleteAppInstanceUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_restJson1DeregisterAppInstanceUserEndpointCommand: (input: DeregisterAppInstanceUserEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_restJson1DescribeAppInstanceCommand: (input: DescribeAppInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_restJson1DescribeAppInstanceAdminCommand: (input: DescribeAppInstanceAdminCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_restJson1DescribeAppInstanceUserCommand: (input: DescribeAppInstanceUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_restJson1DescribeAppInstanceUserEndpointCommand: (input: DescribeAppInstanceUserEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_restJson1GetAppInstanceRetentionSettingsCommand: (input: GetAppInstanceRetentionSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_restJson1ListAppInstanceAdminsCommand: (input: ListAppInstanceAdminsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_restJson1ListAppInstancesCommand: (input: ListAppInstancesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_restJson1ListAppInstanceUserEndpointsCommand: (input: ListAppInstanceUserEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_restJson1ListAppInstanceUsersCommand: (input: ListAppInstanceUsersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_restJson1PutAppInstanceRetentionSettingsCommand: (input: PutAppInstanceRetentionSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const serializeAws_restJson1RegisterAppInstanceUserEndpointCommand: (input: RegisterAppInstanceUserEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
- export declare const serializeAws_restJson1UpdateAppInstanceCommand: (input: UpdateAppInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
- export declare const serializeAws_restJson1UpdateAppInstanceUserCommand: (input: UpdateAppInstanceUserCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
- export declare const serializeAws_restJson1UpdateAppInstanceUserEndpointCommand: (input: UpdateAppInstanceUserEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
- export declare const deserializeAws_restJson1CreateAppInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAppInstanceCommandOutput>;
52
- export declare const deserializeAws_restJson1CreateAppInstanceAdminCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAppInstanceAdminCommandOutput>;
53
- export declare const deserializeAws_restJson1CreateAppInstanceUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAppInstanceUserCommandOutput>;
54
- export declare const deserializeAws_restJson1DeleteAppInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAppInstanceCommandOutput>;
55
- export declare const deserializeAws_restJson1DeleteAppInstanceAdminCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAppInstanceAdminCommandOutput>;
56
- export declare const deserializeAws_restJson1DeleteAppInstanceUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAppInstanceUserCommandOutput>;
57
- export declare const deserializeAws_restJson1DeregisterAppInstanceUserEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeregisterAppInstanceUserEndpointCommandOutput>;
58
- export declare const deserializeAws_restJson1DescribeAppInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAppInstanceCommandOutput>;
59
- export declare const deserializeAws_restJson1DescribeAppInstanceAdminCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAppInstanceAdminCommandOutput>;
60
- export declare const deserializeAws_restJson1DescribeAppInstanceUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAppInstanceUserCommandOutput>;
61
- export declare const deserializeAws_restJson1DescribeAppInstanceUserEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAppInstanceUserEndpointCommandOutput>;
62
- export declare const deserializeAws_restJson1GetAppInstanceRetentionSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAppInstanceRetentionSettingsCommandOutput>;
63
- export declare const deserializeAws_restJson1ListAppInstanceAdminsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAppInstanceAdminsCommandOutput>;
64
- export declare const deserializeAws_restJson1ListAppInstancesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAppInstancesCommandOutput>;
65
- export declare const deserializeAws_restJson1ListAppInstanceUserEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAppInstanceUserEndpointsCommandOutput>;
66
- export declare const deserializeAws_restJson1ListAppInstanceUsersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAppInstanceUsersCommandOutput>;
67
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
68
- export declare const deserializeAws_restJson1PutAppInstanceRetentionSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutAppInstanceRetentionSettingsCommandOutput>;
69
- export declare const deserializeAws_restJson1RegisterAppInstanceUserEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RegisterAppInstanceUserEndpointCommandOutput>;
70
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
71
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
72
- export declare const deserializeAws_restJson1UpdateAppInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAppInstanceCommandOutput>;
73
- export declare const deserializeAws_restJson1UpdateAppInstanceUserCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAppInstanceUserCommandOutput>;
74
- export declare const deserializeAws_restJson1UpdateAppInstanceUserEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAppInstanceUserEndpointCommandOutput>;
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,67 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { ChimeSDKIdentityClientConfig } from "./ChimeSDKIdentityClient";
3
-
4
- export declare const getRuntimeConfig: (config: ChimeSDKIdentityClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { ChimeSDKIdentityClientConfig } from "./ChimeSDKIdentityClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: ChimeSDKIdentityClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@aws-sdk/types").Provider<
8
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ base64Decoder: import("@aws-sdk/types").Decoder;
11
+ base64Encoder: import("@aws-sdk/types").Encoder;
12
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
13
+ credentialDefaultProvider: (
14
+ input: any
15
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
16
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
17
+ import("@aws-sdk/types").UserAgent
18
+ >;
19
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
20
+ region: string | import("@aws-sdk/types").Provider<any>;
21
+ requestHandler:
22
+ | (import("@aws-sdk/types").RequestHandler<
23
+ any,
24
+ any,
25
+ import("@aws-sdk/types").HttpHandlerOptions
26
+ > &
27
+ import("@aws-sdk/protocol-http").HttpHandler)
28
+ | RequestHandler;
29
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
30
+ sha256: import("@aws-sdk/types").HashConstructor;
31
+ streamCollector: import("@aws-sdk/types").StreamCollector;
32
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
34
+ utf8Decoder: import("@aws-sdk/types").Decoder;
35
+ utf8Encoder: import("@aws-sdk/types").Encoder;
36
+ apiVersion: string;
37
+ urlParser: import("@aws-sdk/types").UrlParser;
38
+ disableHostPrefix: boolean;
39
+ logger: import("@aws-sdk/types").Logger;
40
+ serviceId: string;
41
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
42
+ endpoint?:
43
+ | string
44
+ | import("@aws-sdk/types").Endpoint
45
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
46
+ | undefined;
47
+ tls?: boolean | undefined;
48
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
49
+ credentials?:
50
+ | import("@aws-sdk/types").Credentials
51
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
52
+ | undefined;
53
+ signer?:
54
+ | import("@aws-sdk/types").RequestSigner
55
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
56
+ | undefined;
57
+ signingEscapePath?: boolean | undefined;
58
+ systemClockOffset?: number | undefined;
59
+ signingRegion?: string | undefined;
60
+ signerConstructor?:
61
+ | (new (
62
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
63
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
64
+ ) => import("@aws-sdk/types").RequestSigner)
65
+ | undefined;
66
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
67
+ };