@aws-sdk/client-appsync 3.42.0 → 3.47.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 +48 -0
- package/README.md +7 -7
- package/dist-cjs/AppSync.js +120 -0
- package/dist-cjs/commands/AssociateApiCommand.js +36 -0
- package/dist-cjs/commands/CreateDomainNameCommand.js +36 -0
- package/dist-cjs/commands/DeleteDomainNameCommand.js +36 -0
- package/dist-cjs/commands/DisassociateApiCommand.js +36 -0
- package/dist-cjs/commands/GetApiAssociationCommand.js +36 -0
- package/dist-cjs/commands/GetDomainNameCommand.js +36 -0
- package/dist-cjs/commands/ListDomainNamesCommand.js +36 -0
- package/dist-cjs/commands/UpdateDomainNameCommand.js +36 -0
- package/dist-cjs/commands/index.js +8 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +113 -65
- package/dist-cjs/protocols/Aws_restJson1.js +917 -93
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/AppSync.js +120 -0
- package/dist-es/commands/AssociateApiCommand.js +39 -0
- package/dist-es/commands/CreateDomainNameCommand.js +39 -0
- package/dist-es/commands/DeleteDomainNameCommand.js +39 -0
- package/dist-es/commands/DisassociateApiCommand.js +39 -0
- package/dist-es/commands/GetApiAssociationCommand.js +39 -0
- package/dist-es/commands/GetDomainNameCommand.js +39 -0
- package/dist-es/commands/ListDomainNamesCommand.js +39 -0
- package/dist-es/commands/UpdateDomainNameCommand.js +39 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +78 -44
- package/dist-es/protocols/Aws_restJson1.js +1048 -91
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/AppSync.d.ts +60 -5
- package/dist-types/AppSyncClient.d.ts +15 -3
- package/dist-types/commands/AssociateApiCommand.d.ts +35 -0
- package/dist-types/commands/CreateApiKeyCommand.d.ts +1 -2
- package/dist-types/commands/CreateDomainNameCommand.d.ts +35 -0
- package/dist-types/commands/CreateFunctionCommand.d.ts +1 -1
- package/dist-types/commands/CreateResolverCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDomainNameCommand.d.ts +35 -0
- package/dist-types/commands/DisassociateApiCommand.d.ts +35 -0
- package/dist-types/commands/GetApiAssociationCommand.d.ts +35 -0
- package/dist-types/commands/GetDomainNameCommand.d.ts +35 -0
- package/dist-types/commands/ListDomainNamesCommand.d.ts +35 -0
- package/dist-types/commands/UpdateApiKeyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDomainNameCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +556 -299
- package/dist-types/protocols/Aws_restJson1.d.ts +24 -0
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/AppSync.d.ts +40 -0
- package/dist-types/ts3.4/AppSyncClient.d.ts +13 -3
- package/dist-types/ts3.4/commands/AssociateApiCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateDomainNameCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteDomainNameCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisassociateApiCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetApiAssociationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetDomainNameCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListDomainNamesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateDomainNameCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +201 -60
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +38 -45
|
@@ -1,8 +1,4 @@
|
|
|
1
1
|
import { __assign } from "tslib";
|
|
2
|
-
export var AccessDeniedException;
|
|
3
|
-
(function (AccessDeniedException) {
|
|
4
|
-
AccessDeniedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
5
|
-
})(AccessDeniedException || (AccessDeniedException = {}));
|
|
6
2
|
export var AuthenticationType;
|
|
7
3
|
(function (AuthenticationType) {
|
|
8
4
|
AuthenticationType["AMAZON_COGNITO_USER_POOLS"] = "AMAZON_COGNITO_USER_POOLS";
|
|
@@ -27,6 +23,16 @@ export var AdditionalAuthenticationProvider;
|
|
|
27
23
|
(function (AdditionalAuthenticationProvider) {
|
|
28
24
|
AdditionalAuthenticationProvider.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
29
25
|
})(AdditionalAuthenticationProvider || (AdditionalAuthenticationProvider = {}));
|
|
26
|
+
export var AssociationStatus;
|
|
27
|
+
(function (AssociationStatus) {
|
|
28
|
+
AssociationStatus["Failed"] = "FAILED";
|
|
29
|
+
AssociationStatus["Processing"] = "PROCESSING";
|
|
30
|
+
AssociationStatus["Success"] = "SUCCESS";
|
|
31
|
+
})(AssociationStatus || (AssociationStatus = {}));
|
|
32
|
+
export var ApiAssociation;
|
|
33
|
+
(function (ApiAssociation) {
|
|
34
|
+
ApiAssociation.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
35
|
+
})(ApiAssociation || (ApiAssociation = {}));
|
|
30
36
|
export var ApiCachingBehavior;
|
|
31
37
|
(function (ApiCachingBehavior) {
|
|
32
38
|
ApiCachingBehavior["FULL_REQUEST_CACHING"] = "FULL_REQUEST_CACHING";
|
|
@@ -66,18 +72,14 @@ export var ApiKey;
|
|
|
66
72
|
(function (ApiKey) {
|
|
67
73
|
ApiKey.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
68
74
|
})(ApiKey || (ApiKey = {}));
|
|
69
|
-
export var
|
|
70
|
-
(function (
|
|
71
|
-
|
|
72
|
-
})(
|
|
73
|
-
export var
|
|
74
|
-
(function (
|
|
75
|
-
|
|
76
|
-
})(
|
|
77
|
-
export var ApiLimitExceededException;
|
|
78
|
-
(function (ApiLimitExceededException) {
|
|
79
|
-
ApiLimitExceededException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
80
|
-
})(ApiLimitExceededException || (ApiLimitExceededException = {}));
|
|
75
|
+
export var AssociateApiRequest;
|
|
76
|
+
(function (AssociateApiRequest) {
|
|
77
|
+
AssociateApiRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
78
|
+
})(AssociateApiRequest || (AssociateApiRequest = {}));
|
|
79
|
+
export var AssociateApiResponse;
|
|
80
|
+
(function (AssociateApiResponse) {
|
|
81
|
+
AssociateApiResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
82
|
+
})(AssociateApiResponse || (AssociateApiResponse = {}));
|
|
81
83
|
export var AuthorizationType;
|
|
82
84
|
(function (AuthorizationType) {
|
|
83
85
|
AuthorizationType["AWS_IAM"] = "AWS_IAM";
|
|
@@ -90,14 +92,6 @@ export var AuthorizationConfig;
|
|
|
90
92
|
(function (AuthorizationConfig) {
|
|
91
93
|
AuthorizationConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
92
94
|
})(AuthorizationConfig || (AuthorizationConfig = {}));
|
|
93
|
-
export var BadRequestException;
|
|
94
|
-
(function (BadRequestException) {
|
|
95
|
-
BadRequestException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
96
|
-
})(BadRequestException || (BadRequestException = {}));
|
|
97
|
-
export var ConcurrentModificationException;
|
|
98
|
-
(function (ConcurrentModificationException) {
|
|
99
|
-
ConcurrentModificationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
100
|
-
})(ConcurrentModificationException || (ConcurrentModificationException = {}));
|
|
101
95
|
export var CreateApiCacheRequest;
|
|
102
96
|
(function (CreateApiCacheRequest) {
|
|
103
97
|
CreateApiCacheRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -106,18 +100,6 @@ export var CreateApiCacheResponse;
|
|
|
106
100
|
(function (CreateApiCacheResponse) {
|
|
107
101
|
CreateApiCacheResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
108
102
|
})(CreateApiCacheResponse || (CreateApiCacheResponse = {}));
|
|
109
|
-
export var InternalFailureException;
|
|
110
|
-
(function (InternalFailureException) {
|
|
111
|
-
InternalFailureException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
112
|
-
})(InternalFailureException || (InternalFailureException = {}));
|
|
113
|
-
export var NotFoundException;
|
|
114
|
-
(function (NotFoundException) {
|
|
115
|
-
NotFoundException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
116
|
-
})(NotFoundException || (NotFoundException = {}));
|
|
117
|
-
export var UnauthorizedException;
|
|
118
|
-
(function (UnauthorizedException) {
|
|
119
|
-
UnauthorizedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
120
|
-
})(UnauthorizedException || (UnauthorizedException = {}));
|
|
121
103
|
export var CreateApiKeyRequest;
|
|
122
104
|
(function (CreateApiKeyRequest) {
|
|
123
105
|
CreateApiKeyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -126,10 +108,6 @@ export var CreateApiKeyResponse;
|
|
|
126
108
|
(function (CreateApiKeyResponse) {
|
|
127
109
|
CreateApiKeyResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
128
110
|
})(CreateApiKeyResponse || (CreateApiKeyResponse = {}));
|
|
129
|
-
export var LimitExceededException;
|
|
130
|
-
(function (LimitExceededException) {
|
|
131
|
-
LimitExceededException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
132
|
-
})(LimitExceededException || (LimitExceededException = {}));
|
|
133
111
|
export var DeltaSyncConfig;
|
|
134
112
|
(function (DeltaSyncConfig) {
|
|
135
113
|
DeltaSyncConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -188,6 +166,18 @@ export var CreateDataSourceResponse;
|
|
|
188
166
|
(function (CreateDataSourceResponse) {
|
|
189
167
|
CreateDataSourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
190
168
|
})(CreateDataSourceResponse || (CreateDataSourceResponse = {}));
|
|
169
|
+
export var CreateDomainNameRequest;
|
|
170
|
+
(function (CreateDomainNameRequest) {
|
|
171
|
+
CreateDomainNameRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
172
|
+
})(CreateDomainNameRequest || (CreateDomainNameRequest = {}));
|
|
173
|
+
export var DomainNameConfig;
|
|
174
|
+
(function (DomainNameConfig) {
|
|
175
|
+
DomainNameConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
176
|
+
})(DomainNameConfig || (DomainNameConfig = {}));
|
|
177
|
+
export var CreateDomainNameResponse;
|
|
178
|
+
(function (CreateDomainNameResponse) {
|
|
179
|
+
CreateDomainNameResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
180
|
+
})(CreateDomainNameResponse || (CreateDomainNameResponse = {}));
|
|
191
181
|
export var ConflictDetectionType;
|
|
192
182
|
(function (ConflictDetectionType) {
|
|
193
183
|
ConflictDetectionType["NONE"] = "NONE";
|
|
@@ -317,6 +307,14 @@ export var DeleteDataSourceResponse;
|
|
|
317
307
|
(function (DeleteDataSourceResponse) {
|
|
318
308
|
DeleteDataSourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
319
309
|
})(DeleteDataSourceResponse || (DeleteDataSourceResponse = {}));
|
|
310
|
+
export var DeleteDomainNameRequest;
|
|
311
|
+
(function (DeleteDomainNameRequest) {
|
|
312
|
+
DeleteDomainNameRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
313
|
+
})(DeleteDomainNameRequest || (DeleteDomainNameRequest = {}));
|
|
314
|
+
export var DeleteDomainNameResponse;
|
|
315
|
+
(function (DeleteDomainNameResponse) {
|
|
316
|
+
DeleteDomainNameResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
317
|
+
})(DeleteDomainNameResponse || (DeleteDomainNameResponse = {}));
|
|
320
318
|
export var DeleteFunctionRequest;
|
|
321
319
|
(function (DeleteFunctionRequest) {
|
|
322
320
|
DeleteFunctionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -349,6 +347,14 @@ export var DeleteTypeResponse;
|
|
|
349
347
|
(function (DeleteTypeResponse) {
|
|
350
348
|
DeleteTypeResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
351
349
|
})(DeleteTypeResponse || (DeleteTypeResponse = {}));
|
|
350
|
+
export var DisassociateApiRequest;
|
|
351
|
+
(function (DisassociateApiRequest) {
|
|
352
|
+
DisassociateApiRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
353
|
+
})(DisassociateApiRequest || (DisassociateApiRequest = {}));
|
|
354
|
+
export var DisassociateApiResponse;
|
|
355
|
+
(function (DisassociateApiResponse) {
|
|
356
|
+
DisassociateApiResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
357
|
+
})(DisassociateApiResponse || (DisassociateApiResponse = {}));
|
|
352
358
|
export var FlushApiCacheRequest;
|
|
353
359
|
(function (FlushApiCacheRequest) {
|
|
354
360
|
FlushApiCacheRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -357,6 +363,14 @@ export var FlushApiCacheResponse;
|
|
|
357
363
|
(function (FlushApiCacheResponse) {
|
|
358
364
|
FlushApiCacheResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
359
365
|
})(FlushApiCacheResponse || (FlushApiCacheResponse = {}));
|
|
366
|
+
export var GetApiAssociationRequest;
|
|
367
|
+
(function (GetApiAssociationRequest) {
|
|
368
|
+
GetApiAssociationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
369
|
+
})(GetApiAssociationRequest || (GetApiAssociationRequest = {}));
|
|
370
|
+
export var GetApiAssociationResponse;
|
|
371
|
+
(function (GetApiAssociationResponse) {
|
|
372
|
+
GetApiAssociationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
373
|
+
})(GetApiAssociationResponse || (GetApiAssociationResponse = {}));
|
|
360
374
|
export var GetApiCacheRequest;
|
|
361
375
|
(function (GetApiCacheRequest) {
|
|
362
376
|
GetApiCacheRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -373,6 +387,14 @@ export var GetDataSourceResponse;
|
|
|
373
387
|
(function (GetDataSourceResponse) {
|
|
374
388
|
GetDataSourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
375
389
|
})(GetDataSourceResponse || (GetDataSourceResponse = {}));
|
|
390
|
+
export var GetDomainNameRequest;
|
|
391
|
+
(function (GetDomainNameRequest) {
|
|
392
|
+
GetDomainNameRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
393
|
+
})(GetDomainNameRequest || (GetDomainNameRequest = {}));
|
|
394
|
+
export var GetDomainNameResponse;
|
|
395
|
+
(function (GetDomainNameResponse) {
|
|
396
|
+
GetDomainNameResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
397
|
+
})(GetDomainNameResponse || (GetDomainNameResponse = {}));
|
|
376
398
|
export var GetFunctionRequest;
|
|
377
399
|
(function (GetFunctionRequest) {
|
|
378
400
|
GetFunctionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -402,10 +424,6 @@ export var GetIntrospectionSchemaResponse;
|
|
|
402
424
|
(function (GetIntrospectionSchemaResponse) {
|
|
403
425
|
GetIntrospectionSchemaResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
404
426
|
})(GetIntrospectionSchemaResponse || (GetIntrospectionSchemaResponse = {}));
|
|
405
|
-
export var GraphQLSchemaException;
|
|
406
|
-
(function (GraphQLSchemaException) {
|
|
407
|
-
GraphQLSchemaException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
408
|
-
})(GraphQLSchemaException || (GraphQLSchemaException = {}));
|
|
409
427
|
export var GetResolverRequest;
|
|
410
428
|
(function (GetResolverRequest) {
|
|
411
429
|
GetResolverRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -455,6 +473,14 @@ export var ListDataSourcesResponse;
|
|
|
455
473
|
(function (ListDataSourcesResponse) {
|
|
456
474
|
ListDataSourcesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
457
475
|
})(ListDataSourcesResponse || (ListDataSourcesResponse = {}));
|
|
476
|
+
export var ListDomainNamesRequest;
|
|
477
|
+
(function (ListDomainNamesRequest) {
|
|
478
|
+
ListDomainNamesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
479
|
+
})(ListDomainNamesRequest || (ListDomainNamesRequest = {}));
|
|
480
|
+
export var ListDomainNamesResponse;
|
|
481
|
+
(function (ListDomainNamesResponse) {
|
|
482
|
+
ListDomainNamesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
483
|
+
})(ListDomainNamesResponse || (ListDomainNamesResponse = {}));
|
|
458
484
|
export var ListFunctionsRequest;
|
|
459
485
|
(function (ListFunctionsRequest) {
|
|
460
486
|
ListFunctionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -551,6 +577,14 @@ export var UpdateDataSourceResponse;
|
|
|
551
577
|
(function (UpdateDataSourceResponse) {
|
|
552
578
|
UpdateDataSourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
553
579
|
})(UpdateDataSourceResponse || (UpdateDataSourceResponse = {}));
|
|
580
|
+
export var UpdateDomainNameRequest;
|
|
581
|
+
(function (UpdateDomainNameRequest) {
|
|
582
|
+
UpdateDomainNameRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
583
|
+
})(UpdateDomainNameRequest || (UpdateDomainNameRequest = {}));
|
|
584
|
+
export var UpdateDomainNameResponse;
|
|
585
|
+
(function (UpdateDomainNameResponse) {
|
|
586
|
+
UpdateDomainNameResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
587
|
+
})(UpdateDomainNameResponse || (UpdateDomainNameResponse = {}));
|
|
554
588
|
export var UpdateFunctionRequest;
|
|
555
589
|
(function (UpdateFunctionRequest) {
|
|
556
590
|
UpdateFunctionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|