@aws-sdk/client-appsync 3.40.0 → 3.45.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 +38 -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 +9 -0
- package/dist-cjs/models/models_0.js +136 -21
- package/dist-cjs/protocols/Aws_restJson1.js +911 -93
- 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 +9 -0
- package/dist-es/models/models_0.js +90 -12
- package/dist-es/protocols/Aws_restJson1.js +1039 -84
- package/dist-types/AppSync.d.ts +60 -5
- package/dist-types/AppSyncClient.d.ts +10 -2
- package/dist-types/commands/AssociateApiCommand.d.ts +35 -0
- package/dist-types/commands/CreateApiCacheCommand.d.ts +1 -1
- package/dist-types/commands/CreateApiKeyCommand.d.ts +2 -3
- package/dist-types/commands/CreateDataSourceCommand.d.ts +1 -1
- package/dist-types/commands/CreateDomainNameCommand.d.ts +35 -0
- package/dist-types/commands/CreateFunctionCommand.d.ts +2 -2
- package/dist-types/commands/CreateGraphqlApiCommand.d.ts +1 -1
- package/dist-types/commands/CreateResolverCommand.d.ts +2 -2
- package/dist-types/commands/CreateTypeCommand.d.ts +1 -1
- package/dist-types/commands/DeleteApiCacheCommand.d.ts +1 -1
- package/dist-types/commands/DeleteApiKeyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDataSourceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDomainNameCommand.d.ts +35 -0
- package/dist-types/commands/DeleteFunctionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteGraphqlApiCommand.d.ts +1 -1
- package/dist-types/commands/DeleteResolverCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTypeCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateApiCommand.d.ts +35 -0
- package/dist-types/commands/FlushApiCacheCommand.d.ts +1 -1
- package/dist-types/commands/GetApiAssociationCommand.d.ts +35 -0
- package/dist-types/commands/GetApiCacheCommand.d.ts +1 -1
- package/dist-types/commands/GetDataSourceCommand.d.ts +1 -1
- package/dist-types/commands/GetDomainNameCommand.d.ts +35 -0
- package/dist-types/commands/GetFunctionCommand.d.ts +1 -1
- package/dist-types/commands/GetGraphqlApiCommand.d.ts +1 -1
- package/dist-types/commands/GetIntrospectionSchemaCommand.d.ts +1 -1
- package/dist-types/commands/GetResolverCommand.d.ts +1 -1
- package/dist-types/commands/GetSchemaCreationStatusCommand.d.ts +1 -1
- package/dist-types/commands/GetTypeCommand.d.ts +1 -1
- package/dist-types/commands/ListApiKeysCommand.d.ts +1 -1
- package/dist-types/commands/ListDataSourcesCommand.d.ts +1 -1
- package/dist-types/commands/ListDomainNamesCommand.d.ts +35 -0
- package/dist-types/commands/ListFunctionsCommand.d.ts +1 -1
- package/dist-types/commands/ListGraphqlApisCommand.d.ts +1 -1
- package/dist-types/commands/ListResolversByFunctionCommand.d.ts +1 -1
- package/dist-types/commands/ListResolversCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListTypesCommand.d.ts +1 -1
- package/dist-types/commands/StartSchemaCreationCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateApiCacheCommand.d.ts +1 -1
- package/dist-types/commands/UpdateApiKeyCommand.d.ts +2 -2
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDomainNameCommand.d.ts +35 -0
- package/dist-types/commands/UpdateFunctionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateGraphqlApiCommand.d.ts +1 -1
- package/dist-types/commands/UpdateResolverCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTypeCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +554 -255
- package/dist-types/protocols/Aws_restJson1.d.ts +24 -0
- package/dist-types/ts3.4/AppSync.d.ts +40 -0
- package/dist-types/ts3.4/AppSyncClient.d.ts +10 -2
- 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 +203 -30
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +6 -6
|
@@ -27,6 +27,16 @@ export var AdditionalAuthenticationProvider;
|
|
|
27
27
|
(function (AdditionalAuthenticationProvider) {
|
|
28
28
|
AdditionalAuthenticationProvider.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
29
29
|
})(AdditionalAuthenticationProvider || (AdditionalAuthenticationProvider = {}));
|
|
30
|
+
export var AssociationStatus;
|
|
31
|
+
(function (AssociationStatus) {
|
|
32
|
+
AssociationStatus["Failed"] = "FAILED";
|
|
33
|
+
AssociationStatus["Processing"] = "PROCESSING";
|
|
34
|
+
AssociationStatus["Success"] = "SUCCESS";
|
|
35
|
+
})(AssociationStatus || (AssociationStatus = {}));
|
|
36
|
+
export var ApiAssociation;
|
|
37
|
+
(function (ApiAssociation) {
|
|
38
|
+
ApiAssociation.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
39
|
+
})(ApiAssociation || (ApiAssociation = {}));
|
|
30
40
|
export var ApiCachingBehavior;
|
|
31
41
|
(function (ApiCachingBehavior) {
|
|
32
42
|
ApiCachingBehavior["FULL_REQUEST_CACHING"] = "FULL_REQUEST_CACHING";
|
|
@@ -78,6 +88,26 @@ export var ApiLimitExceededException;
|
|
|
78
88
|
(function (ApiLimitExceededException) {
|
|
79
89
|
ApiLimitExceededException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
80
90
|
})(ApiLimitExceededException || (ApiLimitExceededException = {}));
|
|
91
|
+
export var AssociateApiRequest;
|
|
92
|
+
(function (AssociateApiRequest) {
|
|
93
|
+
AssociateApiRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
94
|
+
})(AssociateApiRequest || (AssociateApiRequest = {}));
|
|
95
|
+
export var AssociateApiResponse;
|
|
96
|
+
(function (AssociateApiResponse) {
|
|
97
|
+
AssociateApiResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
98
|
+
})(AssociateApiResponse || (AssociateApiResponse = {}));
|
|
99
|
+
export var BadRequestException;
|
|
100
|
+
(function (BadRequestException) {
|
|
101
|
+
BadRequestException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
102
|
+
})(BadRequestException || (BadRequestException = {}));
|
|
103
|
+
export var InternalFailureException;
|
|
104
|
+
(function (InternalFailureException) {
|
|
105
|
+
InternalFailureException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
106
|
+
})(InternalFailureException || (InternalFailureException = {}));
|
|
107
|
+
export var NotFoundException;
|
|
108
|
+
(function (NotFoundException) {
|
|
109
|
+
NotFoundException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
110
|
+
})(NotFoundException || (NotFoundException = {}));
|
|
81
111
|
export var AuthorizationType;
|
|
82
112
|
(function (AuthorizationType) {
|
|
83
113
|
AuthorizationType["AWS_IAM"] = "AWS_IAM";
|
|
@@ -90,10 +120,6 @@ export var AuthorizationConfig;
|
|
|
90
120
|
(function (AuthorizationConfig) {
|
|
91
121
|
AuthorizationConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
92
122
|
})(AuthorizationConfig || (AuthorizationConfig = {}));
|
|
93
|
-
export var BadRequestException;
|
|
94
|
-
(function (BadRequestException) {
|
|
95
|
-
BadRequestException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
96
|
-
})(BadRequestException || (BadRequestException = {}));
|
|
97
123
|
export var ConcurrentModificationException;
|
|
98
124
|
(function (ConcurrentModificationException) {
|
|
99
125
|
ConcurrentModificationException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -106,14 +132,6 @@ export var CreateApiCacheResponse;
|
|
|
106
132
|
(function (CreateApiCacheResponse) {
|
|
107
133
|
CreateApiCacheResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
108
134
|
})(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
135
|
export var UnauthorizedException;
|
|
118
136
|
(function (UnauthorizedException) {
|
|
119
137
|
UnauthorizedException.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -188,6 +206,18 @@ export var CreateDataSourceResponse;
|
|
|
188
206
|
(function (CreateDataSourceResponse) {
|
|
189
207
|
CreateDataSourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
190
208
|
})(CreateDataSourceResponse || (CreateDataSourceResponse = {}));
|
|
209
|
+
export var CreateDomainNameRequest;
|
|
210
|
+
(function (CreateDomainNameRequest) {
|
|
211
|
+
CreateDomainNameRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
212
|
+
})(CreateDomainNameRequest || (CreateDomainNameRequest = {}));
|
|
213
|
+
export var DomainNameConfig;
|
|
214
|
+
(function (DomainNameConfig) {
|
|
215
|
+
DomainNameConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
216
|
+
})(DomainNameConfig || (DomainNameConfig = {}));
|
|
217
|
+
export var CreateDomainNameResponse;
|
|
218
|
+
(function (CreateDomainNameResponse) {
|
|
219
|
+
CreateDomainNameResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
220
|
+
})(CreateDomainNameResponse || (CreateDomainNameResponse = {}));
|
|
191
221
|
export var ConflictDetectionType;
|
|
192
222
|
(function (ConflictDetectionType) {
|
|
193
223
|
ConflictDetectionType["NONE"] = "NONE";
|
|
@@ -317,6 +347,14 @@ export var DeleteDataSourceResponse;
|
|
|
317
347
|
(function (DeleteDataSourceResponse) {
|
|
318
348
|
DeleteDataSourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
319
349
|
})(DeleteDataSourceResponse || (DeleteDataSourceResponse = {}));
|
|
350
|
+
export var DeleteDomainNameRequest;
|
|
351
|
+
(function (DeleteDomainNameRequest) {
|
|
352
|
+
DeleteDomainNameRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
353
|
+
})(DeleteDomainNameRequest || (DeleteDomainNameRequest = {}));
|
|
354
|
+
export var DeleteDomainNameResponse;
|
|
355
|
+
(function (DeleteDomainNameResponse) {
|
|
356
|
+
DeleteDomainNameResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
357
|
+
})(DeleteDomainNameResponse || (DeleteDomainNameResponse = {}));
|
|
320
358
|
export var DeleteFunctionRequest;
|
|
321
359
|
(function (DeleteFunctionRequest) {
|
|
322
360
|
DeleteFunctionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -349,6 +387,14 @@ export var DeleteTypeResponse;
|
|
|
349
387
|
(function (DeleteTypeResponse) {
|
|
350
388
|
DeleteTypeResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
351
389
|
})(DeleteTypeResponse || (DeleteTypeResponse = {}));
|
|
390
|
+
export var DisassociateApiRequest;
|
|
391
|
+
(function (DisassociateApiRequest) {
|
|
392
|
+
DisassociateApiRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
393
|
+
})(DisassociateApiRequest || (DisassociateApiRequest = {}));
|
|
394
|
+
export var DisassociateApiResponse;
|
|
395
|
+
(function (DisassociateApiResponse) {
|
|
396
|
+
DisassociateApiResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
397
|
+
})(DisassociateApiResponse || (DisassociateApiResponse = {}));
|
|
352
398
|
export var FlushApiCacheRequest;
|
|
353
399
|
(function (FlushApiCacheRequest) {
|
|
354
400
|
FlushApiCacheRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -357,6 +403,14 @@ export var FlushApiCacheResponse;
|
|
|
357
403
|
(function (FlushApiCacheResponse) {
|
|
358
404
|
FlushApiCacheResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
359
405
|
})(FlushApiCacheResponse || (FlushApiCacheResponse = {}));
|
|
406
|
+
export var GetApiAssociationRequest;
|
|
407
|
+
(function (GetApiAssociationRequest) {
|
|
408
|
+
GetApiAssociationRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
409
|
+
})(GetApiAssociationRequest || (GetApiAssociationRequest = {}));
|
|
410
|
+
export var GetApiAssociationResponse;
|
|
411
|
+
(function (GetApiAssociationResponse) {
|
|
412
|
+
GetApiAssociationResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
413
|
+
})(GetApiAssociationResponse || (GetApiAssociationResponse = {}));
|
|
360
414
|
export var GetApiCacheRequest;
|
|
361
415
|
(function (GetApiCacheRequest) {
|
|
362
416
|
GetApiCacheRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -373,6 +427,14 @@ export var GetDataSourceResponse;
|
|
|
373
427
|
(function (GetDataSourceResponse) {
|
|
374
428
|
GetDataSourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
375
429
|
})(GetDataSourceResponse || (GetDataSourceResponse = {}));
|
|
430
|
+
export var GetDomainNameRequest;
|
|
431
|
+
(function (GetDomainNameRequest) {
|
|
432
|
+
GetDomainNameRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
433
|
+
})(GetDomainNameRequest || (GetDomainNameRequest = {}));
|
|
434
|
+
export var GetDomainNameResponse;
|
|
435
|
+
(function (GetDomainNameResponse) {
|
|
436
|
+
GetDomainNameResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
437
|
+
})(GetDomainNameResponse || (GetDomainNameResponse = {}));
|
|
376
438
|
export var GetFunctionRequest;
|
|
377
439
|
(function (GetFunctionRequest) {
|
|
378
440
|
GetFunctionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -455,6 +517,14 @@ export var ListDataSourcesResponse;
|
|
|
455
517
|
(function (ListDataSourcesResponse) {
|
|
456
518
|
ListDataSourcesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
457
519
|
})(ListDataSourcesResponse || (ListDataSourcesResponse = {}));
|
|
520
|
+
export var ListDomainNamesRequest;
|
|
521
|
+
(function (ListDomainNamesRequest) {
|
|
522
|
+
ListDomainNamesRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
523
|
+
})(ListDomainNamesRequest || (ListDomainNamesRequest = {}));
|
|
524
|
+
export var ListDomainNamesResponse;
|
|
525
|
+
(function (ListDomainNamesResponse) {
|
|
526
|
+
ListDomainNamesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
527
|
+
})(ListDomainNamesResponse || (ListDomainNamesResponse = {}));
|
|
458
528
|
export var ListFunctionsRequest;
|
|
459
529
|
(function (ListFunctionsRequest) {
|
|
460
530
|
ListFunctionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -551,6 +621,14 @@ export var UpdateDataSourceResponse;
|
|
|
551
621
|
(function (UpdateDataSourceResponse) {
|
|
552
622
|
UpdateDataSourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
553
623
|
})(UpdateDataSourceResponse || (UpdateDataSourceResponse = {}));
|
|
624
|
+
export var UpdateDomainNameRequest;
|
|
625
|
+
(function (UpdateDomainNameRequest) {
|
|
626
|
+
UpdateDomainNameRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
627
|
+
})(UpdateDomainNameRequest || (UpdateDomainNameRequest = {}));
|
|
628
|
+
export var UpdateDomainNameResponse;
|
|
629
|
+
(function (UpdateDomainNameResponse) {
|
|
630
|
+
UpdateDomainNameResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
631
|
+
})(UpdateDomainNameResponse || (UpdateDomainNameResponse = {}));
|
|
554
632
|
export var UpdateFunctionRequest;
|
|
555
633
|
(function (UpdateFunctionRequest) {
|
|
556
634
|
UpdateFunctionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|