@aws-sdk/client-amplifybackend 3.168.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 +16 -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,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
|
+
UpdateBackendAPIRequest,
|
|
15
|
+
UpdateBackendAPIResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateBackendAPICommandInput extends UpdateBackendAPIRequest {}
|
|
18
|
+
export interface UpdateBackendAPICommandOutput
|
|
19
|
+
extends UpdateBackendAPIResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class UpdateBackendAPICommand extends $Command<
|
|
23
|
+
UpdateBackendAPICommandInput,
|
|
24
|
+
UpdateBackendAPICommandOutput,
|
|
25
|
+
AmplifyBackendClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateBackendAPICommandInput;
|
|
28
|
+
constructor(input: UpdateBackendAPICommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: AmplifyBackendClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<UpdateBackendAPICommandInput, UpdateBackendAPICommandOutput>;
|
|
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
|
+
UpdateBackendAuthRequest,
|
|
15
|
+
UpdateBackendAuthResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateBackendAuthCommandInput
|
|
18
|
+
extends UpdateBackendAuthRequest {}
|
|
19
|
+
export interface UpdateBackendAuthCommandOutput
|
|
20
|
+
extends UpdateBackendAuthResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateBackendAuthCommand extends $Command<
|
|
24
|
+
UpdateBackendAuthCommandInput,
|
|
25
|
+
UpdateBackendAuthCommandOutput,
|
|
26
|
+
AmplifyBackendClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateBackendAuthCommandInput;
|
|
29
|
+
constructor(input: UpdateBackendAuthCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmplifyBackendClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<UpdateBackendAuthCommandInput, UpdateBackendAuthCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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
|
+
UpdateBackendConfigRequest,
|
|
15
|
+
UpdateBackendConfigResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateBackendConfigCommandInput
|
|
18
|
+
extends UpdateBackendConfigRequest {}
|
|
19
|
+
export interface UpdateBackendConfigCommandOutput
|
|
20
|
+
extends UpdateBackendConfigResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateBackendConfigCommand extends $Command<
|
|
24
|
+
UpdateBackendConfigCommandInput,
|
|
25
|
+
UpdateBackendConfigCommandOutput,
|
|
26
|
+
AmplifyBackendClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateBackendConfigCommandInput;
|
|
29
|
+
constructor(input: UpdateBackendConfigCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmplifyBackendClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<UpdateBackendConfigCommandInput, UpdateBackendConfigCommandOutput>;
|
|
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
|
+
UpdateBackendJobRequest,
|
|
15
|
+
UpdateBackendJobResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateBackendJobCommandInput extends UpdateBackendJobRequest {}
|
|
18
|
+
export interface UpdateBackendJobCommandOutput
|
|
19
|
+
extends UpdateBackendJobResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class UpdateBackendJobCommand extends $Command<
|
|
23
|
+
UpdateBackendJobCommandInput,
|
|
24
|
+
UpdateBackendJobCommandOutput,
|
|
25
|
+
AmplifyBackendClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateBackendJobCommandInput;
|
|
28
|
+
constructor(input: UpdateBackendJobCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: AmplifyBackendClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<UpdateBackendJobCommandInput, UpdateBackendJobCommandOutput>;
|
|
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
|
+
UpdateBackendStorageRequest,
|
|
15
|
+
UpdateBackendStorageResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateBackendStorageCommandInput
|
|
18
|
+
extends UpdateBackendStorageRequest {}
|
|
19
|
+
export interface UpdateBackendStorageCommandOutput
|
|
20
|
+
extends UpdateBackendStorageResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateBackendStorageCommand extends $Command<
|
|
24
|
+
UpdateBackendStorageCommandInput,
|
|
25
|
+
UpdateBackendStorageCommandOutput,
|
|
26
|
+
AmplifyBackendClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateBackendStorageCommandInput;
|
|
29
|
+
constructor(input: UpdateBackendStorageCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmplifyBackendClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
UpdateBackendStorageCommandInput,
|
|
37
|
+
UpdateBackendStorageCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
export * from "./CloneBackendCommand";
|
|
2
|
-
export * from "./CreateBackendAPICommand";
|
|
3
|
-
export * from "./CreateBackendAuthCommand";
|
|
4
|
-
export * from "./CreateBackendCommand";
|
|
5
|
-
export * from "./CreateBackendConfigCommand";
|
|
6
|
-
export * from "./CreateBackendStorageCommand";
|
|
7
|
-
export * from "./CreateTokenCommand";
|
|
8
|
-
export * from "./DeleteBackendAPICommand";
|
|
9
|
-
export * from "./DeleteBackendAuthCommand";
|
|
10
|
-
export * from "./DeleteBackendCommand";
|
|
11
|
-
export * from "./DeleteBackendStorageCommand";
|
|
12
|
-
export * from "./DeleteTokenCommand";
|
|
13
|
-
export * from "./GenerateBackendAPIModelsCommand";
|
|
14
|
-
export * from "./GetBackendAPICommand";
|
|
15
|
-
export * from "./GetBackendAPIModelsCommand";
|
|
16
|
-
export * from "./GetBackendAuthCommand";
|
|
17
|
-
export * from "./GetBackendCommand";
|
|
18
|
-
export * from "./GetBackendJobCommand";
|
|
19
|
-
export * from "./GetBackendStorageCommand";
|
|
20
|
-
export * from "./GetTokenCommand";
|
|
21
|
-
export * from "./ImportBackendAuthCommand";
|
|
22
|
-
export * from "./ImportBackendStorageCommand";
|
|
23
|
-
export * from "./ListBackendJobsCommand";
|
|
24
|
-
export * from "./ListS3BucketsCommand";
|
|
25
|
-
export * from "./RemoveAllBackendsCommand";
|
|
26
|
-
export * from "./RemoveBackendConfigCommand";
|
|
27
|
-
export * from "./UpdateBackendAPICommand";
|
|
28
|
-
export * from "./UpdateBackendAuthCommand";
|
|
29
|
-
export * from "./UpdateBackendConfigCommand";
|
|
30
|
-
export * from "./UpdateBackendJobCommand";
|
|
31
|
-
export * from "./UpdateBackendStorageCommand";
|
|
1
|
+
export * from "./CloneBackendCommand";
|
|
2
|
+
export * from "./CreateBackendAPICommand";
|
|
3
|
+
export * from "./CreateBackendAuthCommand";
|
|
4
|
+
export * from "./CreateBackendCommand";
|
|
5
|
+
export * from "./CreateBackendConfigCommand";
|
|
6
|
+
export * from "./CreateBackendStorageCommand";
|
|
7
|
+
export * from "./CreateTokenCommand";
|
|
8
|
+
export * from "./DeleteBackendAPICommand";
|
|
9
|
+
export * from "./DeleteBackendAuthCommand";
|
|
10
|
+
export * from "./DeleteBackendCommand";
|
|
11
|
+
export * from "./DeleteBackendStorageCommand";
|
|
12
|
+
export * from "./DeleteTokenCommand";
|
|
13
|
+
export * from "./GenerateBackendAPIModelsCommand";
|
|
14
|
+
export * from "./GetBackendAPICommand";
|
|
15
|
+
export * from "./GetBackendAPIModelsCommand";
|
|
16
|
+
export * from "./GetBackendAuthCommand";
|
|
17
|
+
export * from "./GetBackendCommand";
|
|
18
|
+
export * from "./GetBackendJobCommand";
|
|
19
|
+
export * from "./GetBackendStorageCommand";
|
|
20
|
+
export * from "./GetTokenCommand";
|
|
21
|
+
export * from "./ImportBackendAuthCommand";
|
|
22
|
+
export * from "./ImportBackendStorageCommand";
|
|
23
|
+
export * from "./ListBackendJobsCommand";
|
|
24
|
+
export * from "./ListS3BucketsCommand";
|
|
25
|
+
export * from "./RemoveAllBackendsCommand";
|
|
26
|
+
export * from "./RemoveBackendConfigCommand";
|
|
27
|
+
export * from "./UpdateBackendAPICommand";
|
|
28
|
+
export * from "./UpdateBackendAuthCommand";
|
|
29
|
+
export * from "./UpdateBackendConfigCommand";
|
|
30
|
+
export * from "./UpdateBackendJobCommand";
|
|
31
|
+
export * from "./UpdateBackendStorageCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from "./AmplifyBackend";
|
|
2
|
-
export * from "./AmplifyBackendClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export { AmplifyBackendServiceException } from "./models/AmplifyBackendServiceException";
|
|
1
|
+
export * from "./AmplifyBackend";
|
|
2
|
+
export * from "./AmplifyBackendClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export { AmplifyBackendServiceException } from "./models/AmplifyBackendServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class AmplifyBackendServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|