@aws-sdk/client-appsync 3.682.0 → 3.683.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 +90 -10
- package/dist-cjs/index.js +572 -0
- package/dist-es/AppSync.js +20 -0
- package/dist-es/commands/CreateApiCommand.js +22 -0
- package/dist-es/commands/CreateChannelNamespaceCommand.js +22 -0
- package/dist-es/commands/DeleteApiCommand.js +22 -0
- package/dist-es/commands/DeleteChannelNamespaceCommand.js +22 -0
- package/dist-es/commands/GetApiCommand.js +22 -0
- package/dist-es/commands/GetChannelNamespaceCommand.js +22 -0
- package/dist-es/commands/ListApisCommand.js +22 -0
- package/dist-es/commands/ListChannelNamespacesCommand.js +22 -0
- package/dist-es/commands/UpdateApiCommand.js +22 -0
- package/dist-es/commands/UpdateChannelNamespaceCommand.js +22 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/models/models_0.js +31 -0
- package/dist-es/pagination/ListApisPaginator.js +4 -0
- package/dist-es/pagination/ListChannelNamespacesPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +341 -2
- package/dist-types/AppSync.d.ts +73 -2
- package/dist-types/AppSyncClient.d.ts +14 -4
- package/dist-types/commands/AssociateApiCommand.d.ts +4 -3
- package/dist-types/commands/AssociateMergedGraphqlApiCommand.d.ts +8 -6
- package/dist-types/commands/AssociateSourceGraphqlApiCommand.d.ts +8 -6
- package/dist-types/commands/CreateApiCacheCommand.d.ts +6 -5
- package/dist-types/commands/CreateApiCommand.d.ts +192 -0
- package/dist-types/commands/CreateApiKeyCommand.d.ts +4 -3
- package/dist-types/commands/CreateChannelNamespaceCommand.d.ts +133 -0
- package/dist-types/commands/CreateDataSourceCommand.d.ts +6 -5
- package/dist-types/commands/CreateDomainNameCommand.d.ts +2 -2
- package/dist-types/commands/CreateFunctionCommand.d.ts +8 -6
- package/dist-types/commands/CreateGraphqlApiCommand.d.ts +5 -5
- package/dist-types/commands/CreateResolverCommand.d.ts +8 -7
- package/dist-types/commands/CreateTypeCommand.d.ts +6 -5
- package/dist-types/commands/DeleteApiCacheCommand.d.ts +6 -5
- package/dist-types/commands/DeleteApiCommand.d.ts +90 -0
- package/dist-types/commands/DeleteApiKeyCommand.d.ts +4 -3
- package/dist-types/commands/DeleteChannelNamespaceCommand.d.ts +91 -0
- package/dist-types/commands/DeleteDataSourceCommand.d.ts +6 -5
- package/dist-types/commands/DeleteDomainNameCommand.d.ts +6 -5
- package/dist-types/commands/DeleteFunctionCommand.d.ts +6 -5
- package/dist-types/commands/DeleteGraphqlApiCommand.d.ts +6 -5
- package/dist-types/commands/DeleteResolverCommand.d.ts +6 -5
- package/dist-types/commands/DeleteTypeCommand.d.ts +6 -5
- package/dist-types/commands/DisassociateApiCommand.d.ts +6 -5
- package/dist-types/commands/DisassociateMergedGraphqlApiCommand.d.ts +8 -7
- package/dist-types/commands/DisassociateSourceGraphqlApiCommand.d.ts +8 -7
- package/dist-types/commands/EvaluateCodeCommand.d.ts +8 -7
- package/dist-types/commands/EvaluateMappingTemplateCommand.d.ts +8 -7
- package/dist-types/commands/FlushApiCacheCommand.d.ts +6 -5
- package/dist-types/commands/GetApiAssociationCommand.d.ts +4 -3
- package/dist-types/commands/GetApiCacheCommand.d.ts +6 -5
- package/dist-types/commands/GetApiCommand.d.ts +144 -0
- package/dist-types/commands/GetChannelNamespaceCommand.d.ts +109 -0
- package/dist-types/commands/GetDataSourceCommand.d.ts +6 -5
- package/dist-types/commands/GetDataSourceIntrospectionCommand.d.ts +7 -6
- package/dist-types/commands/GetDomainNameCommand.d.ts +4 -3
- package/dist-types/commands/GetFunctionCommand.d.ts +4 -3
- package/dist-types/commands/GetGraphqlApiCommand.d.ts +4 -3
- package/dist-types/commands/GetGraphqlApiEnvironmentVariablesCommand.d.ts +6 -4
- package/dist-types/commands/GetIntrospectionSchemaCommand.d.ts +2 -1
- package/dist-types/commands/GetResolverCommand.d.ts +4 -3
- package/dist-types/commands/GetSchemaCreationStatusCommand.d.ts +4 -3
- package/dist-types/commands/GetSourceApiAssociationCommand.d.ts +4 -3
- package/dist-types/commands/GetTypeCommand.d.ts +6 -5
- package/dist-types/commands/ListApiKeysCommand.d.ts +8 -6
- package/dist-types/commands/ListApisCommand.d.ts +144 -0
- package/dist-types/commands/ListChannelNamespacesCommand.d.ts +114 -0
- package/dist-types/commands/ListDataSourcesCommand.d.ts +4 -3
- package/dist-types/commands/ListDomainNamesCommand.d.ts +2 -2
- package/dist-types/commands/ListFunctionsCommand.d.ts +4 -3
- package/dist-types/commands/ListGraphqlApisCommand.d.ts +2 -2
- package/dist-types/commands/ListResolversByFunctionCommand.d.ts +4 -3
- package/dist-types/commands/ListResolversCommand.d.ts +4 -3
- package/dist-types/commands/ListSourceApiAssociationsCommand.d.ts +4 -3
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -3
- package/dist-types/commands/ListTypesByAssociationCommand.d.ts +6 -5
- package/dist-types/commands/ListTypesCommand.d.ts +6 -5
- package/dist-types/commands/PutGraphqlApiEnvironmentVariablesCommand.d.ts +21 -17
- package/dist-types/commands/StartDataSourceIntrospectionCommand.d.ts +6 -5
- package/dist-types/commands/StartSchemaCreationCommand.d.ts +8 -7
- package/dist-types/commands/StartSchemaMergeCommand.d.ts +8 -6
- package/dist-types/commands/TagResourceCommand.d.ts +4 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -3
- package/dist-types/commands/UpdateApiCacheCommand.d.ts +6 -5
- package/dist-types/commands/UpdateApiCommand.d.ts +192 -0
- package/dist-types/commands/UpdateApiKeyCommand.d.ts +4 -3
- package/dist-types/commands/UpdateChannelNamespaceCommand.d.ts +124 -0
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +6 -5
- package/dist-types/commands/UpdateDomainNameCommand.d.ts +6 -5
- package/dist-types/commands/UpdateFunctionCommand.d.ts +6 -5
- package/dist-types/commands/UpdateGraphqlApiCommand.d.ts +7 -6
- package/dist-types/commands/UpdateResolverCommand.d.ts +6 -5
- package/dist-types/commands/UpdateSourceApiAssociationCommand.d.ts +6 -5
- package/dist-types/commands/UpdateTypeCommand.d.ts +6 -5
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/index.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +1305 -629
- package/dist-types/pagination/ListApisPaginator.d.ts +7 -0
- package/dist-types/pagination/ListChannelNamespacesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +90 -0
- package/dist-types/ts3.4/AppSync.d.ts +171 -0
- package/dist-types/ts3.4/AppSyncClient.d.ts +60 -0
- package/dist-types/ts3.4/commands/CreateApiCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateChannelNamespaceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteApiCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteChannelNamespaceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetApiCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetChannelNamespaceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListApisCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListChannelNamespacesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateApiCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateChannelNamespaceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +148 -2
- package/dist-types/ts3.4/pagination/ListApisPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListChannelNamespacesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +120 -0
- package/package.json +1 -1
|
@@ -61,10 +61,18 @@ import {
|
|
|
61
61
|
CreateApiCacheCommandInput,
|
|
62
62
|
CreateApiCacheCommandOutput,
|
|
63
63
|
} from "./commands/CreateApiCacheCommand";
|
|
64
|
+
import {
|
|
65
|
+
CreateApiCommandInput,
|
|
66
|
+
CreateApiCommandOutput,
|
|
67
|
+
} from "./commands/CreateApiCommand";
|
|
64
68
|
import {
|
|
65
69
|
CreateApiKeyCommandInput,
|
|
66
70
|
CreateApiKeyCommandOutput,
|
|
67
71
|
} from "./commands/CreateApiKeyCommand";
|
|
72
|
+
import {
|
|
73
|
+
CreateChannelNamespaceCommandInput,
|
|
74
|
+
CreateChannelNamespaceCommandOutput,
|
|
75
|
+
} from "./commands/CreateChannelNamespaceCommand";
|
|
68
76
|
import {
|
|
69
77
|
CreateDataSourceCommandInput,
|
|
70
78
|
CreateDataSourceCommandOutput,
|
|
@@ -93,10 +101,18 @@ import {
|
|
|
93
101
|
DeleteApiCacheCommandInput,
|
|
94
102
|
DeleteApiCacheCommandOutput,
|
|
95
103
|
} from "./commands/DeleteApiCacheCommand";
|
|
104
|
+
import {
|
|
105
|
+
DeleteApiCommandInput,
|
|
106
|
+
DeleteApiCommandOutput,
|
|
107
|
+
} from "./commands/DeleteApiCommand";
|
|
96
108
|
import {
|
|
97
109
|
DeleteApiKeyCommandInput,
|
|
98
110
|
DeleteApiKeyCommandOutput,
|
|
99
111
|
} from "./commands/DeleteApiKeyCommand";
|
|
112
|
+
import {
|
|
113
|
+
DeleteChannelNamespaceCommandInput,
|
|
114
|
+
DeleteChannelNamespaceCommandOutput,
|
|
115
|
+
} from "./commands/DeleteChannelNamespaceCommand";
|
|
100
116
|
import {
|
|
101
117
|
DeleteDataSourceCommandInput,
|
|
102
118
|
DeleteDataSourceCommandOutput,
|
|
@@ -153,6 +169,14 @@ import {
|
|
|
153
169
|
GetApiCacheCommandInput,
|
|
154
170
|
GetApiCacheCommandOutput,
|
|
155
171
|
} from "./commands/GetApiCacheCommand";
|
|
172
|
+
import {
|
|
173
|
+
GetApiCommandInput,
|
|
174
|
+
GetApiCommandOutput,
|
|
175
|
+
} from "./commands/GetApiCommand";
|
|
176
|
+
import {
|
|
177
|
+
GetChannelNamespaceCommandInput,
|
|
178
|
+
GetChannelNamespaceCommandOutput,
|
|
179
|
+
} from "./commands/GetChannelNamespaceCommand";
|
|
156
180
|
import {
|
|
157
181
|
GetDataSourceCommandInput,
|
|
158
182
|
GetDataSourceCommandOutput,
|
|
@@ -201,6 +225,14 @@ import {
|
|
|
201
225
|
ListApiKeysCommandInput,
|
|
202
226
|
ListApiKeysCommandOutput,
|
|
203
227
|
} from "./commands/ListApiKeysCommand";
|
|
228
|
+
import {
|
|
229
|
+
ListApisCommandInput,
|
|
230
|
+
ListApisCommandOutput,
|
|
231
|
+
} from "./commands/ListApisCommand";
|
|
232
|
+
import {
|
|
233
|
+
ListChannelNamespacesCommandInput,
|
|
234
|
+
ListChannelNamespacesCommandOutput,
|
|
235
|
+
} from "./commands/ListChannelNamespacesCommand";
|
|
204
236
|
import {
|
|
205
237
|
ListDataSourcesCommandInput,
|
|
206
238
|
ListDataSourcesCommandOutput,
|
|
@@ -269,10 +301,18 @@ import {
|
|
|
269
301
|
UpdateApiCacheCommandInput,
|
|
270
302
|
UpdateApiCacheCommandOutput,
|
|
271
303
|
} from "./commands/UpdateApiCacheCommand";
|
|
304
|
+
import {
|
|
305
|
+
UpdateApiCommandInput,
|
|
306
|
+
UpdateApiCommandOutput,
|
|
307
|
+
} from "./commands/UpdateApiCommand";
|
|
272
308
|
import {
|
|
273
309
|
UpdateApiKeyCommandInput,
|
|
274
310
|
UpdateApiKeyCommandOutput,
|
|
275
311
|
} from "./commands/UpdateApiKeyCommand";
|
|
312
|
+
import {
|
|
313
|
+
UpdateChannelNamespaceCommandInput,
|
|
314
|
+
UpdateChannelNamespaceCommandOutput,
|
|
315
|
+
} from "./commands/UpdateChannelNamespaceCommand";
|
|
276
316
|
import {
|
|
277
317
|
UpdateDataSourceCommandInput,
|
|
278
318
|
UpdateDataSourceCommandOutput,
|
|
@@ -313,7 +353,9 @@ export type ServiceInputTypes =
|
|
|
313
353
|
| AssociateMergedGraphqlApiCommandInput
|
|
314
354
|
| AssociateSourceGraphqlApiCommandInput
|
|
315
355
|
| CreateApiCacheCommandInput
|
|
356
|
+
| CreateApiCommandInput
|
|
316
357
|
| CreateApiKeyCommandInput
|
|
358
|
+
| CreateChannelNamespaceCommandInput
|
|
317
359
|
| CreateDataSourceCommandInput
|
|
318
360
|
| CreateDomainNameCommandInput
|
|
319
361
|
| CreateFunctionCommandInput
|
|
@@ -321,7 +363,9 @@ export type ServiceInputTypes =
|
|
|
321
363
|
| CreateResolverCommandInput
|
|
322
364
|
| CreateTypeCommandInput
|
|
323
365
|
| DeleteApiCacheCommandInput
|
|
366
|
+
| DeleteApiCommandInput
|
|
324
367
|
| DeleteApiKeyCommandInput
|
|
368
|
+
| DeleteChannelNamespaceCommandInput
|
|
325
369
|
| DeleteDataSourceCommandInput
|
|
326
370
|
| DeleteDomainNameCommandInput
|
|
327
371
|
| DeleteFunctionCommandInput
|
|
@@ -336,6 +380,8 @@ export type ServiceInputTypes =
|
|
|
336
380
|
| FlushApiCacheCommandInput
|
|
337
381
|
| GetApiAssociationCommandInput
|
|
338
382
|
| GetApiCacheCommandInput
|
|
383
|
+
| GetApiCommandInput
|
|
384
|
+
| GetChannelNamespaceCommandInput
|
|
339
385
|
| GetDataSourceCommandInput
|
|
340
386
|
| GetDataSourceIntrospectionCommandInput
|
|
341
387
|
| GetDomainNameCommandInput
|
|
@@ -348,6 +394,8 @@ export type ServiceInputTypes =
|
|
|
348
394
|
| GetSourceApiAssociationCommandInput
|
|
349
395
|
| GetTypeCommandInput
|
|
350
396
|
| ListApiKeysCommandInput
|
|
397
|
+
| ListApisCommandInput
|
|
398
|
+
| ListChannelNamespacesCommandInput
|
|
351
399
|
| ListDataSourcesCommandInput
|
|
352
400
|
| ListDomainNamesCommandInput
|
|
353
401
|
| ListFunctionsCommandInput
|
|
@@ -365,7 +413,9 @@ export type ServiceInputTypes =
|
|
|
365
413
|
| TagResourceCommandInput
|
|
366
414
|
| UntagResourceCommandInput
|
|
367
415
|
| UpdateApiCacheCommandInput
|
|
416
|
+
| UpdateApiCommandInput
|
|
368
417
|
| UpdateApiKeyCommandInput
|
|
418
|
+
| UpdateChannelNamespaceCommandInput
|
|
369
419
|
| UpdateDataSourceCommandInput
|
|
370
420
|
| UpdateDomainNameCommandInput
|
|
371
421
|
| UpdateFunctionCommandInput
|
|
@@ -378,7 +428,9 @@ export type ServiceOutputTypes =
|
|
|
378
428
|
| AssociateMergedGraphqlApiCommandOutput
|
|
379
429
|
| AssociateSourceGraphqlApiCommandOutput
|
|
380
430
|
| CreateApiCacheCommandOutput
|
|
431
|
+
| CreateApiCommandOutput
|
|
381
432
|
| CreateApiKeyCommandOutput
|
|
433
|
+
| CreateChannelNamespaceCommandOutput
|
|
382
434
|
| CreateDataSourceCommandOutput
|
|
383
435
|
| CreateDomainNameCommandOutput
|
|
384
436
|
| CreateFunctionCommandOutput
|
|
@@ -386,7 +438,9 @@ export type ServiceOutputTypes =
|
|
|
386
438
|
| CreateResolverCommandOutput
|
|
387
439
|
| CreateTypeCommandOutput
|
|
388
440
|
| DeleteApiCacheCommandOutput
|
|
441
|
+
| DeleteApiCommandOutput
|
|
389
442
|
| DeleteApiKeyCommandOutput
|
|
443
|
+
| DeleteChannelNamespaceCommandOutput
|
|
390
444
|
| DeleteDataSourceCommandOutput
|
|
391
445
|
| DeleteDomainNameCommandOutput
|
|
392
446
|
| DeleteFunctionCommandOutput
|
|
@@ -401,6 +455,8 @@ export type ServiceOutputTypes =
|
|
|
401
455
|
| FlushApiCacheCommandOutput
|
|
402
456
|
| GetApiAssociationCommandOutput
|
|
403
457
|
| GetApiCacheCommandOutput
|
|
458
|
+
| GetApiCommandOutput
|
|
459
|
+
| GetChannelNamespaceCommandOutput
|
|
404
460
|
| GetDataSourceCommandOutput
|
|
405
461
|
| GetDataSourceIntrospectionCommandOutput
|
|
406
462
|
| GetDomainNameCommandOutput
|
|
@@ -413,6 +469,8 @@ export type ServiceOutputTypes =
|
|
|
413
469
|
| GetSourceApiAssociationCommandOutput
|
|
414
470
|
| GetTypeCommandOutput
|
|
415
471
|
| ListApiKeysCommandOutput
|
|
472
|
+
| ListApisCommandOutput
|
|
473
|
+
| ListChannelNamespacesCommandOutput
|
|
416
474
|
| ListDataSourcesCommandOutput
|
|
417
475
|
| ListDomainNamesCommandOutput
|
|
418
476
|
| ListFunctionsCommandOutput
|
|
@@ -430,7 +488,9 @@ export type ServiceOutputTypes =
|
|
|
430
488
|
| TagResourceCommandOutput
|
|
431
489
|
| UntagResourceCommandOutput
|
|
432
490
|
| UpdateApiCacheCommandOutput
|
|
491
|
+
| UpdateApiCommandOutput
|
|
433
492
|
| UpdateApiKeyCommandOutput
|
|
493
|
+
| UpdateChannelNamespaceCommandOutput
|
|
434
494
|
| UpdateDataSourceCommandOutput
|
|
435
495
|
| UpdateDomainNameCommandOutput
|
|
436
496
|
| UpdateFunctionCommandOutput
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AppSyncClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AppSyncClient";
|
|
8
|
+
import { CreateApiRequest, CreateApiResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface CreateApiCommandInput extends CreateApiRequest {}
|
|
12
|
+
export interface CreateApiCommandOutput
|
|
13
|
+
extends CreateApiResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const CreateApiCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: CreateApiCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
CreateApiCommandInput,
|
|
20
|
+
CreateApiCommandOutput,
|
|
21
|
+
AppSyncClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: CreateApiCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
CreateApiCommandInput,
|
|
29
|
+
CreateApiCommandOutput,
|
|
30
|
+
AppSyncClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class CreateApiCommand extends CreateApiCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: CreateApiRequest;
|
|
40
|
+
output: CreateApiResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: CreateApiCommandInput;
|
|
44
|
+
output: CreateApiCommandOutput;
|
|
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
|
+
AppSyncClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AppSyncClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateChannelNamespaceRequest,
|
|
10
|
+
CreateChannelNamespaceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateChannelNamespaceCommandInput
|
|
15
|
+
extends CreateChannelNamespaceRequest {}
|
|
16
|
+
export interface CreateChannelNamespaceCommandOutput
|
|
17
|
+
extends CreateChannelNamespaceResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateChannelNamespaceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateChannelNamespaceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateChannelNamespaceCommandInput,
|
|
24
|
+
CreateChannelNamespaceCommandOutput,
|
|
25
|
+
AppSyncClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreateChannelNamespaceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateChannelNamespaceCommandInput,
|
|
33
|
+
CreateChannelNamespaceCommandOutput,
|
|
34
|
+
AppSyncClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateChannelNamespaceCommand extends CreateChannelNamespaceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateChannelNamespaceRequest;
|
|
44
|
+
output: CreateChannelNamespaceResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateChannelNamespaceCommandInput;
|
|
48
|
+
output: CreateChannelNamespaceCommandOutput;
|
|
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 {
|
|
4
|
+
AppSyncClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AppSyncClient";
|
|
8
|
+
import { DeleteApiRequest, DeleteApiResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteApiCommandInput extends DeleteApiRequest {}
|
|
12
|
+
export interface DeleteApiCommandOutput
|
|
13
|
+
extends DeleteApiResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const DeleteApiCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteApiCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
DeleteApiCommandInput,
|
|
20
|
+
DeleteApiCommandOutput,
|
|
21
|
+
AppSyncClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: DeleteApiCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
DeleteApiCommandInput,
|
|
29
|
+
DeleteApiCommandOutput,
|
|
30
|
+
AppSyncClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class DeleteApiCommand extends DeleteApiCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: DeleteApiRequest;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: DeleteApiCommandInput;
|
|
44
|
+
output: DeleteApiCommandOutput;
|
|
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
|
+
AppSyncClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AppSyncClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteChannelNamespaceRequest,
|
|
10
|
+
DeleteChannelNamespaceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteChannelNamespaceCommandInput
|
|
15
|
+
extends DeleteChannelNamespaceRequest {}
|
|
16
|
+
export interface DeleteChannelNamespaceCommandOutput
|
|
17
|
+
extends DeleteChannelNamespaceResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteChannelNamespaceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteChannelNamespaceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteChannelNamespaceCommandInput,
|
|
24
|
+
DeleteChannelNamespaceCommandOutput,
|
|
25
|
+
AppSyncClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DeleteChannelNamespaceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteChannelNamespaceCommandInput,
|
|
33
|
+
DeleteChannelNamespaceCommandOutput,
|
|
34
|
+
AppSyncClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteChannelNamespaceCommand extends DeleteChannelNamespaceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteChannelNamespaceRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteChannelNamespaceCommandInput;
|
|
48
|
+
output: DeleteChannelNamespaceCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AppSyncClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AppSyncClient";
|
|
8
|
+
import { GetApiRequest, GetApiResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetApiCommandInput extends GetApiRequest {}
|
|
12
|
+
export interface GetApiCommandOutput extends GetApiResponse, __MetadataBearer {}
|
|
13
|
+
declare const GetApiCommand_base: {
|
|
14
|
+
new (input: GetApiCommandInput): import("@smithy/smithy-client").CommandImpl<
|
|
15
|
+
GetApiCommandInput,
|
|
16
|
+
GetApiCommandOutput,
|
|
17
|
+
AppSyncClientResolvedConfig,
|
|
18
|
+
ServiceInputTypes,
|
|
19
|
+
ServiceOutputTypes
|
|
20
|
+
>;
|
|
21
|
+
new (__0_0: GetApiCommandInput): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetApiCommandInput,
|
|
23
|
+
GetApiCommandOutput,
|
|
24
|
+
AppSyncClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
29
|
+
};
|
|
30
|
+
export declare class GetApiCommand extends GetApiCommand_base {
|
|
31
|
+
protected static __types: {
|
|
32
|
+
api: {
|
|
33
|
+
input: GetApiRequest;
|
|
34
|
+
output: GetApiResponse;
|
|
35
|
+
};
|
|
36
|
+
sdk: {
|
|
37
|
+
input: GetApiCommandInput;
|
|
38
|
+
output: GetApiCommandOutput;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AppSyncClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AppSyncClient";
|
|
8
|
+
import {
|
|
9
|
+
GetChannelNamespaceRequest,
|
|
10
|
+
GetChannelNamespaceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetChannelNamespaceCommandInput
|
|
15
|
+
extends GetChannelNamespaceRequest {}
|
|
16
|
+
export interface GetChannelNamespaceCommandOutput
|
|
17
|
+
extends GetChannelNamespaceResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetChannelNamespaceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetChannelNamespaceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetChannelNamespaceCommandInput,
|
|
24
|
+
GetChannelNamespaceCommandOutput,
|
|
25
|
+
AppSyncClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: GetChannelNamespaceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetChannelNamespaceCommandInput,
|
|
33
|
+
GetChannelNamespaceCommandOutput,
|
|
34
|
+
AppSyncClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetChannelNamespaceCommand extends GetChannelNamespaceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetChannelNamespaceRequest;
|
|
44
|
+
output: GetChannelNamespaceResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetChannelNamespaceCommandInput;
|
|
48
|
+
output: GetChannelNamespaceCommandOutput;
|
|
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 {
|
|
4
|
+
AppSyncClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AppSyncClient";
|
|
8
|
+
import { ListApisRequest, ListApisResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListApisCommandInput extends ListApisRequest {}
|
|
12
|
+
export interface ListApisCommandOutput
|
|
13
|
+
extends ListApisResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListApisCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListApisCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
ListApisCommandInput,
|
|
20
|
+
ListApisCommandOutput,
|
|
21
|
+
AppSyncClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [ListApisCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
ListApisCommandInput,
|
|
29
|
+
ListApisCommandOutput,
|
|
30
|
+
AppSyncClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class ListApisCommand extends ListApisCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ListApisRequest;
|
|
40
|
+
output: ListApisResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListApisCommandInput;
|
|
44
|
+
output: ListApisCommandOutput;
|
|
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
|
+
AppSyncClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AppSyncClient";
|
|
8
|
+
import {
|
|
9
|
+
ListChannelNamespacesRequest,
|
|
10
|
+
ListChannelNamespacesResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListChannelNamespacesCommandInput
|
|
15
|
+
extends ListChannelNamespacesRequest {}
|
|
16
|
+
export interface ListChannelNamespacesCommandOutput
|
|
17
|
+
extends ListChannelNamespacesResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListChannelNamespacesCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListChannelNamespacesCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListChannelNamespacesCommandInput,
|
|
24
|
+
ListChannelNamespacesCommandOutput,
|
|
25
|
+
AppSyncClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListChannelNamespacesCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListChannelNamespacesCommandInput,
|
|
33
|
+
ListChannelNamespacesCommandOutput,
|
|
34
|
+
AppSyncClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListChannelNamespacesCommand extends ListChannelNamespacesCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListChannelNamespacesRequest;
|
|
44
|
+
output: ListChannelNamespacesResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListChannelNamespacesCommandInput;
|
|
48
|
+
output: ListChannelNamespacesCommandOutput;
|
|
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 {
|
|
4
|
+
AppSyncClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AppSyncClient";
|
|
8
|
+
import { UpdateApiRequest, UpdateApiResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface UpdateApiCommandInput extends UpdateApiRequest {}
|
|
12
|
+
export interface UpdateApiCommandOutput
|
|
13
|
+
extends UpdateApiResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const UpdateApiCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: UpdateApiCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
UpdateApiCommandInput,
|
|
20
|
+
UpdateApiCommandOutput,
|
|
21
|
+
AppSyncClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: UpdateApiCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
UpdateApiCommandInput,
|
|
29
|
+
UpdateApiCommandOutput,
|
|
30
|
+
AppSyncClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class UpdateApiCommand extends UpdateApiCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: UpdateApiRequest;
|
|
40
|
+
output: UpdateApiResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: UpdateApiCommandInput;
|
|
44
|
+
output: UpdateApiCommandOutput;
|
|
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
|
+
AppSyncClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../AppSyncClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateChannelNamespaceRequest,
|
|
10
|
+
UpdateChannelNamespaceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateChannelNamespaceCommandInput
|
|
15
|
+
extends UpdateChannelNamespaceRequest {}
|
|
16
|
+
export interface UpdateChannelNamespaceCommandOutput
|
|
17
|
+
extends UpdateChannelNamespaceResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateChannelNamespaceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateChannelNamespaceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateChannelNamespaceCommandInput,
|
|
24
|
+
UpdateChannelNamespaceCommandOutput,
|
|
25
|
+
AppSyncClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdateChannelNamespaceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateChannelNamespaceCommandInput,
|
|
33
|
+
UpdateChannelNamespaceCommandOutput,
|
|
34
|
+
AppSyncClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateChannelNamespaceCommand extends UpdateChannelNamespaceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateChannelNamespaceRequest;
|
|
44
|
+
output: UpdateChannelNamespaceResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateChannelNamespaceCommandInput;
|
|
48
|
+
output: UpdateChannelNamespaceCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|