@aws-sdk/client-appsync 3.295.0 → 3.297.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/dist-types/AppSync.d.ts +52 -0
- package/dist-types/AppSyncClient.d.ts +24 -4
- package/dist-types/commands/AssociateApiCommand.d.ts +16 -0
- package/dist-types/commands/CreateApiCacheCommand.d.ts +16 -0
- package/dist-types/commands/CreateApiKeyCommand.d.ts +16 -0
- package/dist-types/commands/CreateDataSourceCommand.d.ts +16 -0
- package/dist-types/commands/CreateDomainNameCommand.d.ts +16 -0
- package/dist-types/commands/CreateFunctionCommand.d.ts +16 -0
- package/dist-types/commands/CreateGraphqlApiCommand.d.ts +16 -0
- package/dist-types/commands/CreateResolverCommand.d.ts +16 -0
- package/dist-types/commands/CreateTypeCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApiCacheCommand.d.ts +16 -0
- package/dist-types/commands/DeleteApiKeyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDataSourceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDomainNameCommand.d.ts +16 -0
- package/dist-types/commands/DeleteFunctionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteGraphqlApiCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResolverCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTypeCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateApiCommand.d.ts +16 -0
- package/dist-types/commands/EvaluateCodeCommand.d.ts +16 -0
- package/dist-types/commands/EvaluateMappingTemplateCommand.d.ts +16 -0
- package/dist-types/commands/FlushApiCacheCommand.d.ts +16 -0
- package/dist-types/commands/GetApiAssociationCommand.d.ts +16 -0
- package/dist-types/commands/GetApiCacheCommand.d.ts +16 -0
- package/dist-types/commands/GetDataSourceCommand.d.ts +16 -0
- package/dist-types/commands/GetDomainNameCommand.d.ts +16 -0
- package/dist-types/commands/GetFunctionCommand.d.ts +16 -0
- package/dist-types/commands/GetGraphqlApiCommand.d.ts +16 -0
- package/dist-types/commands/GetIntrospectionSchemaCommand.d.ts +16 -0
- package/dist-types/commands/GetResolverCommand.d.ts +16 -0
- package/dist-types/commands/GetSchemaCreationStatusCommand.d.ts +16 -0
- package/dist-types/commands/GetTypeCommand.d.ts +16 -0
- package/dist-types/commands/ListApiKeysCommand.d.ts +16 -0
- package/dist-types/commands/ListDataSourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListDomainNamesCommand.d.ts +16 -0
- package/dist-types/commands/ListFunctionsCommand.d.ts +16 -0
- package/dist-types/commands/ListGraphqlApisCommand.d.ts +16 -0
- package/dist-types/commands/ListResolversByFunctionCommand.d.ts +16 -0
- package/dist-types/commands/ListResolversCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListTypesCommand.d.ts +16 -0
- package/dist-types/commands/StartSchemaCreationCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApiCacheCommand.d.ts +16 -0
- package/dist-types/commands/UpdateApiKeyCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDomainNameCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFunctionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateGraphqlApiCommand.d.ts +16 -0
- package/dist-types/commands/UpdateResolverCommand.d.ts +16 -0
- package/dist-types/commands/UpdateTypeCommand.d.ts +16 -0
- package/dist-types/models/AppSyncServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +387 -0
- package/package.json +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { CreateDomainNameRequest, CreateDomainNameResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateDomainNameCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateDomainNameCommandInput extends CreateDomainNameRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateDomainNameCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateDomainNameCommandOutput extends CreateDomainNameResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a custom <code>DomainName</code> object.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateDomainNameCommandOutput extends CreateDomainNameResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateDomainNameCommandInput - {@link CreateDomainNameCommandInput}
|
|
34
|
+
* @returns {@link CreateDomainNameCommandOutput}
|
|
28
35
|
* @see {@link CreateDomainNameCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateDomainNameCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface CreateDomainNameCommandOutput extends CreateDomainNameResponse,
|
|
|
44
51
|
export declare class CreateDomainNameCommand extends $Command<CreateDomainNameCommandInput, CreateDomainNameCommandOutput, AppSyncClientResolvedConfig> {
|
|
45
52
|
readonly input: CreateDomainNameCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: CreateDomainNameCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDomainNameCommandInput, CreateDomainNameCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { CreateFunctionRequest, CreateFunctionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateFunctionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateFunctionCommandInput extends CreateFunctionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateFunctionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateFunctionCommandOutput extends CreateFunctionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a <code>Function</code> object.</p>
|
|
18
23
|
* <p>A function is a reusable entity. You can use multiple functions to compose the resolver logic.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateFunctionCommandOutput extends CreateFunctionResponse, __M
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateFunctionCommandInput - {@link CreateFunctionCommandInput}
|
|
35
|
+
* @returns {@link CreateFunctionCommandOutput}
|
|
29
36
|
* @see {@link CreateFunctionCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateFunctionCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface CreateFunctionCommandOutput extends CreateFunctionResponse, __M
|
|
|
48
55
|
export declare class CreateFunctionCommand extends $Command<CreateFunctionCommandInput, CreateFunctionCommandOutput, AppSyncClientResolvedConfig> {
|
|
49
56
|
readonly input: CreateFunctionCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: CreateFunctionCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateFunctionCommandInput, CreateFunctionCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { CreateGraphqlApiRequest, CreateGraphqlApiResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateGraphqlApiCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateGraphqlApiCommandInput extends CreateGraphqlApiRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateGraphqlApiCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateGraphqlApiCommandOutput extends CreateGraphqlApiResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a <code>GraphqlApi</code> object.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateGraphqlApiCommandOutput extends CreateGraphqlApiResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateGraphqlApiCommandInput - {@link CreateGraphqlApiCommandInput}
|
|
34
|
+
* @returns {@link CreateGraphqlApiCommandOutput}
|
|
28
35
|
* @see {@link CreateGraphqlApiCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateGraphqlApiCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface CreateGraphqlApiCommandOutput extends CreateGraphqlApiResponse,
|
|
|
54
61
|
export declare class CreateGraphqlApiCommand extends $Command<CreateGraphqlApiCommandInput, CreateGraphqlApiCommandOutput, AppSyncClientResolvedConfig> {
|
|
55
62
|
readonly input: CreateGraphqlApiCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: CreateGraphqlApiCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateGraphqlApiCommandInput, CreateGraphqlApiCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { CreateResolverRequest, CreateResolverResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateResolverCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateResolverCommandInput extends CreateResolverRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateResolverCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateResolverCommandOutput extends CreateResolverResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a <code>Resolver</code> object.</p>
|
|
18
23
|
* <p>A resolver converts incoming requests into a format that a data source can understand, and converts the data
|
|
19
24
|
* source's responses into GraphQL.</p>
|
|
@@ -27,6 +32,8 @@ export interface CreateResolverCommandOutput extends CreateResolverResponse, __M
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param CreateResolverCommandInput - {@link CreateResolverCommandInput}
|
|
36
|
+
* @returns {@link CreateResolverCommandOutput}
|
|
30
37
|
* @see {@link CreateResolverCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link CreateResolverCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface CreateResolverCommandOutput extends CreateResolverResponse, __M
|
|
|
53
60
|
export declare class CreateResolverCommand extends $Command<CreateResolverCommandInput, CreateResolverCommandOutput, AppSyncClientResolvedConfig> {
|
|
54
61
|
readonly input: CreateResolverCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: CreateResolverCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateResolverCommandInput, CreateResolverCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { CreateTypeRequest, CreateTypeResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateTypeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateTypeCommandInput extends CreateTypeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateTypeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateTypeCommandOutput extends CreateTypeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a <code>Type</code> object.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateTypeCommandOutput extends CreateTypeResponse, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateTypeCommandInput - {@link CreateTypeCommandInput}
|
|
34
|
+
* @returns {@link CreateTypeCommandOutput}
|
|
28
35
|
* @see {@link CreateTypeCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateTypeCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface CreateTypeCommandOutput extends CreateTypeResponse, __MetadataB
|
|
|
51
58
|
export declare class CreateTypeCommand extends $Command<CreateTypeCommandInput, CreateTypeCommandOutput, AppSyncClientResolvedConfig> {
|
|
52
59
|
readonly input: CreateTypeCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: CreateTypeCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateTypeCommandInput, CreateTypeCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { DeleteApiCacheRequest, DeleteApiCacheResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteApiCacheCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteApiCacheCommandInput extends DeleteApiCacheRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteApiCacheCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteApiCacheCommandOutput extends DeleteApiCacheResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an <code>ApiCache</code> object.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteApiCacheCommandOutput extends DeleteApiCacheResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteApiCacheCommandInput - {@link DeleteApiCacheCommandInput}
|
|
34
|
+
* @returns {@link DeleteApiCacheCommandOutput}
|
|
28
35
|
* @see {@link DeleteApiCacheCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteApiCacheCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DeleteApiCacheCommandOutput extends DeleteApiCacheResponse, __M
|
|
|
51
58
|
export declare class DeleteApiCacheCommand extends $Command<DeleteApiCacheCommandInput, DeleteApiCacheCommandOutput, AppSyncClientResolvedConfig> {
|
|
52
59
|
readonly input: DeleteApiCacheCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DeleteApiCacheCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApiCacheCommandInput, DeleteApiCacheCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { DeleteApiKeyRequest, DeleteApiKeyResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteApiKeyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteApiKeyCommandInput extends DeleteApiKeyRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteApiKeyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteApiKeyCommandOutput extends DeleteApiKeyResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an API key.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteApiKeyCommandOutput extends DeleteApiKeyResponse, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteApiKeyCommandInput - {@link DeleteApiKeyCommandInput}
|
|
34
|
+
* @returns {@link DeleteApiKeyCommandOutput}
|
|
28
35
|
* @see {@link DeleteApiKeyCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteApiKeyCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface DeleteApiKeyCommandOutput extends DeleteApiKeyResponse, __Metad
|
|
|
47
54
|
export declare class DeleteApiKeyCommand extends $Command<DeleteApiKeyCommandInput, DeleteApiKeyCommandOutput, AppSyncClientResolvedConfig> {
|
|
48
55
|
readonly input: DeleteApiKeyCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: DeleteApiKeyCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApiKeyCommandInput, DeleteApiKeyCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { DeleteDataSourceRequest, DeleteDataSourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteDataSourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteDataSourceCommandInput extends DeleteDataSourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteDataSourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteDataSourceCommandOutput extends DeleteDataSourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a <code>DataSource</code> object.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteDataSourceCommandOutput extends DeleteDataSourceResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteDataSourceCommandInput - {@link DeleteDataSourceCommandInput}
|
|
34
|
+
* @returns {@link DeleteDataSourceCommandOutput}
|
|
28
35
|
* @see {@link DeleteDataSourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteDataSourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DeleteDataSourceCommandOutput extends DeleteDataSourceResponse,
|
|
|
51
58
|
export declare class DeleteDataSourceCommand extends $Command<DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput, AppSyncClientResolvedConfig> {
|
|
52
59
|
readonly input: DeleteDataSourceCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DeleteDataSourceCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { DeleteDomainNameRequest, DeleteDomainNameResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteDomainNameCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteDomainNameCommandInput extends DeleteDomainNameRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteDomainNameCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteDomainNameCommandOutput extends DeleteDomainNameResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a custom <code>DomainName</code> object.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteDomainNameCommandOutput extends DeleteDomainNameResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteDomainNameCommandInput - {@link DeleteDomainNameCommandInput}
|
|
34
|
+
* @returns {@link DeleteDomainNameCommandOutput}
|
|
28
35
|
* @see {@link DeleteDomainNameCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteDomainNameCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DeleteDomainNameCommandOutput extends DeleteDomainNameResponse,
|
|
|
51
58
|
export declare class DeleteDomainNameCommand extends $Command<DeleteDomainNameCommandInput, DeleteDomainNameCommandOutput, AppSyncClientResolvedConfig> {
|
|
52
59
|
readonly input: DeleteDomainNameCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DeleteDomainNameCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDomainNameCommandInput, DeleteDomainNameCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { DeleteFunctionRequest, DeleteFunctionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteFunctionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteFunctionCommandInput extends DeleteFunctionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteFunctionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteFunctionCommandOutput extends DeleteFunctionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a <code>Function</code>.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteFunctionCommandOutput extends DeleteFunctionResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteFunctionCommandInput - {@link DeleteFunctionCommandInput}
|
|
34
|
+
* @returns {@link DeleteFunctionCommandOutput}
|
|
28
35
|
* @see {@link DeleteFunctionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteFunctionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface DeleteFunctionCommandOutput extends DeleteFunctionResponse, __M
|
|
|
47
54
|
export declare class DeleteFunctionCommand extends $Command<DeleteFunctionCommandInput, DeleteFunctionCommandOutput, AppSyncClientResolvedConfig> {
|
|
48
55
|
readonly input: DeleteFunctionCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: DeleteFunctionCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteFunctionCommandInput, DeleteFunctionCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { DeleteGraphqlApiRequest, DeleteGraphqlApiResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteGraphqlApiCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteGraphqlApiCommandInput extends DeleteGraphqlApiRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteGraphqlApiCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteGraphqlApiCommandOutput extends DeleteGraphqlApiResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a <code>GraphqlApi</code> object.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteGraphqlApiCommandOutput extends DeleteGraphqlApiResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteGraphqlApiCommandInput - {@link DeleteGraphqlApiCommandInput}
|
|
34
|
+
* @returns {@link DeleteGraphqlApiCommandOutput}
|
|
28
35
|
* @see {@link DeleteGraphqlApiCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteGraphqlApiCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
@@ -54,11 +61,20 @@ export interface DeleteGraphqlApiCommandOutput extends DeleteGraphqlApiResponse,
|
|
|
54
61
|
export declare class DeleteGraphqlApiCommand extends $Command<DeleteGraphqlApiCommandInput, DeleteGraphqlApiCommandOutput, AppSyncClientResolvedConfig> {
|
|
55
62
|
readonly input: DeleteGraphqlApiCommandInput;
|
|
56
63
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
57
67
|
constructor(input: DeleteGraphqlApiCommandInput);
|
|
58
68
|
/**
|
|
59
69
|
* @internal
|
|
60
70
|
*/
|
|
61
71
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteGraphqlApiCommandInput, DeleteGraphqlApiCommandOutput>;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
62
75
|
private serialize;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
63
79
|
private deserialize;
|
|
64
80
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { DeleteResolverRequest, DeleteResolverResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteResolverCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteResolverCommandInput extends DeleteResolverRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteResolverCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteResolverCommandOutput extends DeleteResolverResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a <code>Resolver</code> object.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteResolverCommandOutput extends DeleteResolverResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteResolverCommandInput - {@link DeleteResolverCommandInput}
|
|
34
|
+
* @returns {@link DeleteResolverCommandOutput}
|
|
28
35
|
* @see {@link DeleteResolverCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteResolverCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DeleteResolverCommandOutput extends DeleteResolverResponse, __M
|
|
|
51
58
|
export declare class DeleteResolverCommand extends $Command<DeleteResolverCommandInput, DeleteResolverCommandOutput, AppSyncClientResolvedConfig> {
|
|
52
59
|
readonly input: DeleteResolverCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DeleteResolverCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteResolverCommandInput, DeleteResolverCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
|
|
5
5
|
import { DeleteTypeRequest, DeleteTypeResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteTypeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteTypeCommandInput extends DeleteTypeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteTypeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteTypeCommandOutput extends DeleteTypeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a <code>Type</code> object.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteTypeCommandOutput extends DeleteTypeResponse, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteTypeCommandInput - {@link DeleteTypeCommandInput}
|
|
34
|
+
* @returns {@link DeleteTypeCommandOutput}
|
|
28
35
|
* @see {@link DeleteTypeCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteTypeCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DeleteTypeCommandOutput extends DeleteTypeResponse, __MetadataB
|
|
|
51
58
|
export declare class DeleteTypeCommand extends $Command<DeleteTypeCommandInput, DeleteTypeCommandOutput, AppSyncClientResolvedConfig> {
|
|
52
59
|
readonly input: DeleteTypeCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DeleteTypeCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteTypeCommandInput, DeleteTypeCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|