@aws-sdk/client-amplifybackend 3.296.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/AmplifyBackend.d.ts +32 -0
- package/dist-types/AmplifyBackendClient.d.ts +24 -4
- package/dist-types/commands/CloneBackendCommand.d.ts +16 -0
- package/dist-types/commands/CreateBackendAPICommand.d.ts +16 -0
- package/dist-types/commands/CreateBackendAuthCommand.d.ts +16 -0
- package/dist-types/commands/CreateBackendCommand.d.ts +16 -0
- package/dist-types/commands/CreateBackendConfigCommand.d.ts +16 -0
- package/dist-types/commands/CreateBackendStorageCommand.d.ts +16 -0
- package/dist-types/commands/CreateTokenCommand.d.ts +16 -0
- package/dist-types/commands/DeleteBackendAPICommand.d.ts +16 -0
- package/dist-types/commands/DeleteBackendAuthCommand.d.ts +16 -0
- package/dist-types/commands/DeleteBackendCommand.d.ts +16 -0
- package/dist-types/commands/DeleteBackendStorageCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTokenCommand.d.ts +16 -0
- package/dist-types/commands/GenerateBackendAPIModelsCommand.d.ts +16 -0
- package/dist-types/commands/GetBackendAPICommand.d.ts +16 -0
- package/dist-types/commands/GetBackendAPIModelsCommand.d.ts +16 -0
- package/dist-types/commands/GetBackendAuthCommand.d.ts +16 -0
- package/dist-types/commands/GetBackendCommand.d.ts +16 -0
- package/dist-types/commands/GetBackendJobCommand.d.ts +16 -0
- package/dist-types/commands/GetBackendStorageCommand.d.ts +16 -0
- package/dist-types/commands/GetTokenCommand.d.ts +16 -0
- package/dist-types/commands/ImportBackendAuthCommand.d.ts +16 -0
- package/dist-types/commands/ImportBackendStorageCommand.d.ts +16 -0
- package/dist-types/commands/ListBackendJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListS3BucketsCommand.d.ts +16 -0
- package/dist-types/commands/RemoveAllBackendsCommand.d.ts +16 -0
- package/dist-types/commands/RemoveBackendConfigCommand.d.ts +16 -0
- package/dist-types/commands/UpdateBackendAPICommand.d.ts +16 -0
- package/dist-types/commands/UpdateBackendAuthCommand.d.ts +16 -0
- package/dist-types/commands/UpdateBackendConfigCommand.d.ts +16 -0
- package/dist-types/commands/UpdateBackendJobCommand.d.ts +16 -0
- package/dist-types/commands/UpdateBackendStorageCommand.d.ts +16 -0
- package/dist-types/models/AmplifyBackendServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +222 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { DeleteBackendAPIRequest, DeleteBackendAPIResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteBackendAPICommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteBackendAPICommandInput extends DeleteBackendAPIRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteBackendAPICommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteBackendAPICommandOutput extends DeleteBackendAPIResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an existing backend API resource.</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 DeleteBackendAPICommandOutput extends DeleteBackendAPIResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteBackendAPICommandInput - {@link DeleteBackendAPICommandInput}
|
|
34
|
+
* @returns {@link DeleteBackendAPICommandOutput}
|
|
28
35
|
* @see {@link DeleteBackendAPICommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteBackendAPICommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DeleteBackendAPICommandOutput extends DeleteBackendAPIResponse,
|
|
|
46
53
|
export declare class DeleteBackendAPICommand extends $Command<DeleteBackendAPICommandInput, DeleteBackendAPICommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: DeleteBackendAPICommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DeleteBackendAPICommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteBackendAPICommandInput, DeleteBackendAPICommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { DeleteBackendAuthRequest, DeleteBackendAuthResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteBackendAuthCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteBackendAuthCommandInput extends DeleteBackendAuthRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteBackendAuthCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteBackendAuthCommandOutput extends DeleteBackendAuthResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an existing backend authentication resource.</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 DeleteBackendAuthCommandOutput extends DeleteBackendAuthRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteBackendAuthCommandInput - {@link DeleteBackendAuthCommandInput}
|
|
34
|
+
* @returns {@link DeleteBackendAuthCommandOutput}
|
|
28
35
|
* @see {@link DeleteBackendAuthCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteBackendAuthCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DeleteBackendAuthCommandOutput extends DeleteBackendAuthRespons
|
|
|
46
53
|
export declare class DeleteBackendAuthCommand extends $Command<DeleteBackendAuthCommandInput, DeleteBackendAuthCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: DeleteBackendAuthCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DeleteBackendAuthCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteBackendAuthCommandInput, DeleteBackendAuthCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { DeleteBackendRequest, DeleteBackendResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteBackendCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteBackendCommandInput extends DeleteBackendRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteBackendCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteBackendCommandOutput extends DeleteBackendResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes an existing environment from your Amplify project.</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 DeleteBackendCommandOutput extends DeleteBackendResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteBackendCommandInput - {@link DeleteBackendCommandInput}
|
|
34
|
+
* @returns {@link DeleteBackendCommandOutput}
|
|
28
35
|
* @see {@link DeleteBackendCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteBackendCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DeleteBackendCommandOutput extends DeleteBackendResponse, __Met
|
|
|
46
53
|
export declare class DeleteBackendCommand extends $Command<DeleteBackendCommandInput, DeleteBackendCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: DeleteBackendCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DeleteBackendCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteBackendCommandInput, DeleteBackendCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { DeleteBackendStorageRequest, DeleteBackendStorageResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteBackendStorageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteBackendStorageCommandInput extends DeleteBackendStorageRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteBackendStorageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteBackendStorageCommandOutput extends DeleteBackendStorageResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes the specified backend storage resource.</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 DeleteBackendStorageCommandOutput extends DeleteBackendStorageR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteBackendStorageCommandInput - {@link DeleteBackendStorageCommandInput}
|
|
34
|
+
* @returns {@link DeleteBackendStorageCommandOutput}
|
|
28
35
|
* @see {@link DeleteBackendStorageCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteBackendStorageCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DeleteBackendStorageCommandOutput extends DeleteBackendStorageR
|
|
|
46
53
|
export declare class DeleteBackendStorageCommand extends $Command<DeleteBackendStorageCommandInput, DeleteBackendStorageCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: DeleteBackendStorageCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DeleteBackendStorageCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteBackendStorageCommandInput, DeleteBackendStorageCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { DeleteTokenRequest, DeleteTokenResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteTokenCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteTokenCommandInput extends DeleteTokenRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteTokenCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteTokenCommandOutput extends DeleteTokenResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the challenge token based on the given appId and sessionId.</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 DeleteTokenCommandOutput extends DeleteTokenResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteTokenCommandInput - {@link DeleteTokenCommandInput}
|
|
34
|
+
* @returns {@link DeleteTokenCommandOutput}
|
|
28
35
|
* @see {@link DeleteTokenCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteTokenCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DeleteTokenCommandOutput extends DeleteTokenResponse, __Metadat
|
|
|
46
53
|
export declare class DeleteTokenCommand extends $Command<DeleteTokenCommandInput, DeleteTokenCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: DeleteTokenCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DeleteTokenCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteTokenCommandInput, DeleteTokenCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { GenerateBackendAPIModelsRequest, GenerateBackendAPIModelsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GenerateBackendAPIModelsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GenerateBackendAPIModelsCommandInput extends GenerateBackendAPIModelsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GenerateBackendAPIModelsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GenerateBackendAPIModelsCommandOutput extends GenerateBackendAPIModelsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Generates a model schema for an existing backend API resource.</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 GenerateBackendAPIModelsCommandOutput extends GenerateBackendAP
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GenerateBackendAPIModelsCommandInput - {@link GenerateBackendAPIModelsCommandInput}
|
|
34
|
+
* @returns {@link GenerateBackendAPIModelsCommandOutput}
|
|
28
35
|
* @see {@link GenerateBackendAPIModelsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GenerateBackendAPIModelsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GenerateBackendAPIModelsCommandOutput extends GenerateBackendAP
|
|
|
46
53
|
export declare class GenerateBackendAPIModelsCommand extends $Command<GenerateBackendAPIModelsCommandInput, GenerateBackendAPIModelsCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: GenerateBackendAPIModelsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GenerateBackendAPIModelsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GenerateBackendAPIModelsCommandInput, GenerateBackendAPIModelsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { GetBackendAPIRequest, GetBackendAPIResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetBackendAPICommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetBackendAPICommandInput extends GetBackendAPIRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetBackendAPICommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetBackendAPICommandOutput extends GetBackendAPIResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the details for a backend API.</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 GetBackendAPICommandOutput extends GetBackendAPIResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetBackendAPICommandInput - {@link GetBackendAPICommandInput}
|
|
34
|
+
* @returns {@link GetBackendAPICommandOutput}
|
|
28
35
|
* @see {@link GetBackendAPICommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetBackendAPICommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetBackendAPICommandOutput extends GetBackendAPIResponse, __Met
|
|
|
46
53
|
export declare class GetBackendAPICommand extends $Command<GetBackendAPICommandInput, GetBackendAPICommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: GetBackendAPICommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetBackendAPICommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetBackendAPICommandInput, GetBackendAPICommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { GetBackendAPIModelsRequest, GetBackendAPIModelsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetBackendAPIModelsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetBackendAPIModelsCommandInput extends GetBackendAPIModelsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetBackendAPIModelsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetBackendAPIModelsCommandOutput extends GetBackendAPIModelsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets a model introspection schema for an existing backend API resource.</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 GetBackendAPIModelsCommandOutput extends GetBackendAPIModelsRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetBackendAPIModelsCommandInput - {@link GetBackendAPIModelsCommandInput}
|
|
34
|
+
* @returns {@link GetBackendAPIModelsCommandOutput}
|
|
28
35
|
* @see {@link GetBackendAPIModelsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetBackendAPIModelsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetBackendAPIModelsCommandOutput extends GetBackendAPIModelsRes
|
|
|
46
53
|
export declare class GetBackendAPIModelsCommand extends $Command<GetBackendAPIModelsCommandInput, GetBackendAPIModelsCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: GetBackendAPIModelsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetBackendAPIModelsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetBackendAPIModelsCommandInput, GetBackendAPIModelsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { GetBackendAuthRequest, GetBackendAuthResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetBackendAuthCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetBackendAuthCommandInput extends GetBackendAuthRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetBackendAuthCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetBackendAuthCommandOutput extends GetBackendAuthResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets a backend auth details.</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 GetBackendAuthCommandOutput extends GetBackendAuthResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetBackendAuthCommandInput - {@link GetBackendAuthCommandInput}
|
|
34
|
+
* @returns {@link GetBackendAuthCommandOutput}
|
|
28
35
|
* @see {@link GetBackendAuthCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetBackendAuthCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetBackendAuthCommandOutput extends GetBackendAuthResponse, __M
|
|
|
46
53
|
export declare class GetBackendAuthCommand extends $Command<GetBackendAuthCommandInput, GetBackendAuthCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: GetBackendAuthCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetBackendAuthCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetBackendAuthCommandInput, GetBackendAuthCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { GetBackendRequest, GetBackendResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetBackendCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetBackendCommandInput extends GetBackendRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetBackendCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetBackendCommandOutput extends GetBackendResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides project-level details for your Amplify UI project.</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 GetBackendCommandOutput extends GetBackendResponse, __MetadataB
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetBackendCommandInput - {@link GetBackendCommandInput}
|
|
34
|
+
* @returns {@link GetBackendCommandOutput}
|
|
28
35
|
* @see {@link GetBackendCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetBackendCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetBackendCommandOutput extends GetBackendResponse, __MetadataB
|
|
|
46
53
|
export declare class GetBackendCommand extends $Command<GetBackendCommandInput, GetBackendCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: GetBackendCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetBackendCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetBackendCommandInput, GetBackendCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { GetBackendJobRequest, GetBackendJobResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetBackendJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetBackendJobCommandInput extends GetBackendJobRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetBackendJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetBackendJobCommandOutput extends GetBackendJobResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about a specific job.</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 GetBackendJobCommandOutput extends GetBackendJobResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetBackendJobCommandInput - {@link GetBackendJobCommandInput}
|
|
34
|
+
* @returns {@link GetBackendJobCommandOutput}
|
|
28
35
|
* @see {@link GetBackendJobCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetBackendJobCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetBackendJobCommandOutput extends GetBackendJobResponse, __Met
|
|
|
46
53
|
export declare class GetBackendJobCommand extends $Command<GetBackendJobCommandInput, GetBackendJobCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: GetBackendJobCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetBackendJobCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetBackendJobCommandInput, GetBackendJobCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { GetBackendStorageRequest, GetBackendStorageResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetBackendStorageCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetBackendStorageCommandInput extends GetBackendStorageRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetBackendStorageCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetBackendStorageCommandOutput extends GetBackendStorageResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets details for a backend storage resource.</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 GetBackendStorageCommandOutput extends GetBackendStorageRespons
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetBackendStorageCommandInput - {@link GetBackendStorageCommandInput}
|
|
34
|
+
* @returns {@link GetBackendStorageCommandOutput}
|
|
28
35
|
* @see {@link GetBackendStorageCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetBackendStorageCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetBackendStorageCommandOutput extends GetBackendStorageRespons
|
|
|
46
53
|
export declare class GetBackendStorageCommand extends $Command<GetBackendStorageCommandInput, GetBackendStorageCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: GetBackendStorageCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetBackendStorageCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetBackendStorageCommandInput, GetBackendStorageCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AmplifyBackendClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmplifyBackendClient";
|
|
5
5
|
import { GetTokenRequest, GetTokenResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetTokenCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetTokenCommandInput extends GetTokenRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetTokenCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetTokenCommandOutput extends GetTokenResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets the challenge token based on the given appId and sessionId.</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 GetTokenCommandOutput extends GetTokenResponse, __MetadataBeare
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetTokenCommandInput - {@link GetTokenCommandInput}
|
|
34
|
+
* @returns {@link GetTokenCommandOutput}
|
|
28
35
|
* @see {@link GetTokenCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetTokenCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link AmplifyBackendClientResolvedConfig | config} for AmplifyBackendClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetTokenCommandOutput extends GetTokenResponse, __MetadataBeare
|
|
|
46
53
|
export declare class GetTokenCommand extends $Command<GetTokenCommandInput, GetTokenCommandOutput, AmplifyBackendClientResolvedConfig> {
|
|
47
54
|
readonly input: GetTokenCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetTokenCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmplifyBackendClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTokenCommandInput, GetTokenCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|