@aws-sdk/client-amplifybackend 3.169.0 → 3.170.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 +8 -0
- package/dist-types/ts3.4/AmplifyBackend.d.ts +562 -160
- package/dist-types/ts3.4/AmplifyBackendClient.d.ts +316 -104
- package/dist-types/ts3.4/commands/CloneBackendCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateBackendAPICommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateBackendAuthCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateBackendCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateBackendConfigCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateBackendStorageCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateTokenCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteBackendAPICommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteBackendAuthCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteBackendCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteBackendStorageCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteTokenCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GenerateBackendAPIModelsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetBackendAPICommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetBackendAPIModelsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetBackendAuthCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetBackendCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetBackendJobCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetBackendStorageCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetTokenCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ImportBackendAuthCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ImportBackendStorageCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListBackendJobsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListS3BucketsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/RemoveAllBackendsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/RemoveBackendConfigCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateBackendAPICommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateBackendAuthCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateBackendConfigCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateBackendJobCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateBackendStorageCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +31 -31
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/AmplifyBackendServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1398 -1300
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +377 -95
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyBackendClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyBackendClient";
|
|
13
|
+
import {
|
|
14
|
+
CreateBackendConfigRequest,
|
|
15
|
+
CreateBackendConfigResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateBackendConfigCommandInput
|
|
18
|
+
extends CreateBackendConfigRequest {}
|
|
19
|
+
export interface CreateBackendConfigCommandOutput
|
|
20
|
+
extends CreateBackendConfigResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateBackendConfigCommand extends $Command<
|
|
24
|
+
CreateBackendConfigCommandInput,
|
|
25
|
+
CreateBackendConfigCommandOutput,
|
|
26
|
+
AmplifyBackendClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateBackendConfigCommandInput;
|
|
29
|
+
constructor(input: CreateBackendConfigCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmplifyBackendClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateBackendConfigCommandInput, CreateBackendConfigCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyBackendClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyBackendClient";
|
|
13
|
+
import {
|
|
14
|
+
CreateBackendStorageRequest,
|
|
15
|
+
CreateBackendStorageResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateBackendStorageCommandInput
|
|
18
|
+
extends CreateBackendStorageRequest {}
|
|
19
|
+
export interface CreateBackendStorageCommandOutput
|
|
20
|
+
extends CreateBackendStorageResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateBackendStorageCommand extends $Command<
|
|
24
|
+
CreateBackendStorageCommandInput,
|
|
25
|
+
CreateBackendStorageCommandOutput,
|
|
26
|
+
AmplifyBackendClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateBackendStorageCommandInput;
|
|
29
|
+
constructor(input: CreateBackendStorageCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmplifyBackendClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateBackendStorageCommandInput,
|
|
37
|
+
CreateBackendStorageCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyBackendClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyBackendClient";
|
|
13
|
+
import { CreateTokenRequest, CreateTokenResponse } from "../models/models_0";
|
|
14
|
+
export interface CreateTokenCommandInput extends CreateTokenRequest {}
|
|
15
|
+
export interface CreateTokenCommandOutput
|
|
16
|
+
extends CreateTokenResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class CreateTokenCommand extends $Command<
|
|
20
|
+
CreateTokenCommandInput,
|
|
21
|
+
CreateTokenCommandOutput,
|
|
22
|
+
AmplifyBackendClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: CreateTokenCommandInput;
|
|
25
|
+
constructor(input: CreateTokenCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AmplifyBackendClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<CreateTokenCommandInput, CreateTokenCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyBackendClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyBackendClient";
|
|
13
|
+
import {
|
|
14
|
+
DeleteBackendAPIRequest,
|
|
15
|
+
DeleteBackendAPIResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteBackendAPICommandInput extends DeleteBackendAPIRequest {}
|
|
18
|
+
export interface DeleteBackendAPICommandOutput
|
|
19
|
+
extends DeleteBackendAPIResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DeleteBackendAPICommand extends $Command<
|
|
23
|
+
DeleteBackendAPICommandInput,
|
|
24
|
+
DeleteBackendAPICommandOutput,
|
|
25
|
+
AmplifyBackendClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteBackendAPICommandInput;
|
|
28
|
+
constructor(input: DeleteBackendAPICommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: AmplifyBackendClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DeleteBackendAPICommandInput, DeleteBackendAPICommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyBackendClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyBackendClient";
|
|
13
|
+
import {
|
|
14
|
+
DeleteBackendAuthRequest,
|
|
15
|
+
DeleteBackendAuthResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteBackendAuthCommandInput
|
|
18
|
+
extends DeleteBackendAuthRequest {}
|
|
19
|
+
export interface DeleteBackendAuthCommandOutput
|
|
20
|
+
extends DeleteBackendAuthResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteBackendAuthCommand extends $Command<
|
|
24
|
+
DeleteBackendAuthCommandInput,
|
|
25
|
+
DeleteBackendAuthCommandOutput,
|
|
26
|
+
AmplifyBackendClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteBackendAuthCommandInput;
|
|
29
|
+
constructor(input: DeleteBackendAuthCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmplifyBackendClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DeleteBackendAuthCommandInput, DeleteBackendAuthCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyBackendClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyBackendClient";
|
|
13
|
+
import {
|
|
14
|
+
DeleteBackendRequest,
|
|
15
|
+
DeleteBackendResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteBackendCommandInput extends DeleteBackendRequest {}
|
|
18
|
+
export interface DeleteBackendCommandOutput
|
|
19
|
+
extends DeleteBackendResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DeleteBackendCommand extends $Command<
|
|
23
|
+
DeleteBackendCommandInput,
|
|
24
|
+
DeleteBackendCommandOutput,
|
|
25
|
+
AmplifyBackendClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteBackendCommandInput;
|
|
28
|
+
constructor(input: DeleteBackendCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: AmplifyBackendClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DeleteBackendCommandInput, DeleteBackendCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyBackendClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyBackendClient";
|
|
13
|
+
import {
|
|
14
|
+
DeleteBackendStorageRequest,
|
|
15
|
+
DeleteBackendStorageResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteBackendStorageCommandInput
|
|
18
|
+
extends DeleteBackendStorageRequest {}
|
|
19
|
+
export interface DeleteBackendStorageCommandOutput
|
|
20
|
+
extends DeleteBackendStorageResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteBackendStorageCommand extends $Command<
|
|
24
|
+
DeleteBackendStorageCommandInput,
|
|
25
|
+
DeleteBackendStorageCommandOutput,
|
|
26
|
+
AmplifyBackendClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteBackendStorageCommandInput;
|
|
29
|
+
constructor(input: DeleteBackendStorageCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmplifyBackendClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteBackendStorageCommandInput,
|
|
37
|
+
DeleteBackendStorageCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyBackendClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyBackendClient";
|
|
13
|
+
import { DeleteTokenRequest, DeleteTokenResponse } from "../models/models_0";
|
|
14
|
+
export interface DeleteTokenCommandInput extends DeleteTokenRequest {}
|
|
15
|
+
export interface DeleteTokenCommandOutput
|
|
16
|
+
extends DeleteTokenResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteTokenCommand extends $Command<
|
|
20
|
+
DeleteTokenCommandInput,
|
|
21
|
+
DeleteTokenCommandOutput,
|
|
22
|
+
AmplifyBackendClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteTokenCommandInput;
|
|
25
|
+
constructor(input: DeleteTokenCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AmplifyBackendClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteTokenCommandInput, DeleteTokenCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyBackendClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyBackendClient";
|
|
13
|
+
import {
|
|
14
|
+
GenerateBackendAPIModelsRequest,
|
|
15
|
+
GenerateBackendAPIModelsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GenerateBackendAPIModelsCommandInput
|
|
18
|
+
extends GenerateBackendAPIModelsRequest {}
|
|
19
|
+
export interface GenerateBackendAPIModelsCommandOutput
|
|
20
|
+
extends GenerateBackendAPIModelsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GenerateBackendAPIModelsCommand extends $Command<
|
|
24
|
+
GenerateBackendAPIModelsCommandInput,
|
|
25
|
+
GenerateBackendAPIModelsCommandOutput,
|
|
26
|
+
AmplifyBackendClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GenerateBackendAPIModelsCommandInput;
|
|
29
|
+
constructor(input: GenerateBackendAPIModelsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmplifyBackendClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
GenerateBackendAPIModelsCommandInput,
|
|
37
|
+
GenerateBackendAPIModelsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyBackendClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyBackendClient";
|
|
13
|
+
import {
|
|
14
|
+
GetBackendAPIRequest,
|
|
15
|
+
GetBackendAPIResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetBackendAPICommandInput extends GetBackendAPIRequest {}
|
|
18
|
+
export interface GetBackendAPICommandOutput
|
|
19
|
+
extends GetBackendAPIResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class GetBackendAPICommand extends $Command<
|
|
23
|
+
GetBackendAPICommandInput,
|
|
24
|
+
GetBackendAPICommandOutput,
|
|
25
|
+
AmplifyBackendClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetBackendAPICommandInput;
|
|
28
|
+
constructor(input: GetBackendAPICommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: AmplifyBackendClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<GetBackendAPICommandInput, GetBackendAPICommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyBackendClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyBackendClient";
|
|
13
|
+
import {
|
|
14
|
+
GetBackendAPIModelsRequest,
|
|
15
|
+
GetBackendAPIModelsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetBackendAPIModelsCommandInput
|
|
18
|
+
extends GetBackendAPIModelsRequest {}
|
|
19
|
+
export interface GetBackendAPIModelsCommandOutput
|
|
20
|
+
extends GetBackendAPIModelsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class GetBackendAPIModelsCommand extends $Command<
|
|
24
|
+
GetBackendAPIModelsCommandInput,
|
|
25
|
+
GetBackendAPIModelsCommandOutput,
|
|
26
|
+
AmplifyBackendClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetBackendAPIModelsCommandInput;
|
|
29
|
+
constructor(input: GetBackendAPIModelsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmplifyBackendClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetBackendAPIModelsCommandInput, GetBackendAPIModelsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|