@aws-sdk/client-amplify 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/Amplify.d.ts +670 -190
- package/dist-types/ts3.4/AmplifyClient.d.ts +351 -110
- package/dist-types/ts3.4/commands/CreateAppCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateBackendEnvironmentCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateBranchCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateDomainAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateWebhookCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteBackendEnvironmentCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteBranchCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteDomainAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteWebhookCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GenerateAccessLogsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetAppCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetArtifactUrlCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetBackendEnvironmentCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetBranchCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetDomainAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetWebhookCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListArtifactsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListBackendEnvironmentsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListBranchesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListDomainAssociationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListWebhooksCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StartDeploymentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StartJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StopJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateAppCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateBranchCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateDomainAssociationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateWebhookCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +37 -37
- 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/AmplifyServiceException.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 +1277 -1196
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +449 -113
- 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,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
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import { UpdateWebhookRequest, UpdateWebhookResult } from "../models/models_0";
|
|
14
|
+
export interface UpdateWebhookCommandInput extends UpdateWebhookRequest {}
|
|
15
|
+
export interface UpdateWebhookCommandOutput
|
|
16
|
+
extends UpdateWebhookResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class UpdateWebhookCommand extends $Command<
|
|
20
|
+
UpdateWebhookCommandInput,
|
|
21
|
+
UpdateWebhookCommandOutput,
|
|
22
|
+
AmplifyClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UpdateWebhookCommandInput;
|
|
25
|
+
constructor(input: UpdateWebhookCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AmplifyClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UpdateWebhookCommandInput, UpdateWebhookCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,37 +1,37 @@
|
|
|
1
|
-
export * from "./CreateAppCommand";
|
|
2
|
-
export * from "./CreateBackendEnvironmentCommand";
|
|
3
|
-
export * from "./CreateBranchCommand";
|
|
4
|
-
export * from "./CreateDeploymentCommand";
|
|
5
|
-
export * from "./CreateDomainAssociationCommand";
|
|
6
|
-
export * from "./CreateWebhookCommand";
|
|
7
|
-
export * from "./DeleteAppCommand";
|
|
8
|
-
export * from "./DeleteBackendEnvironmentCommand";
|
|
9
|
-
export * from "./DeleteBranchCommand";
|
|
10
|
-
export * from "./DeleteDomainAssociationCommand";
|
|
11
|
-
export * from "./DeleteJobCommand";
|
|
12
|
-
export * from "./DeleteWebhookCommand";
|
|
13
|
-
export * from "./GenerateAccessLogsCommand";
|
|
14
|
-
export * from "./GetAppCommand";
|
|
15
|
-
export * from "./GetArtifactUrlCommand";
|
|
16
|
-
export * from "./GetBackendEnvironmentCommand";
|
|
17
|
-
export * from "./GetBranchCommand";
|
|
18
|
-
export * from "./GetDomainAssociationCommand";
|
|
19
|
-
export * from "./GetJobCommand";
|
|
20
|
-
export * from "./GetWebhookCommand";
|
|
21
|
-
export * from "./ListAppsCommand";
|
|
22
|
-
export * from "./ListArtifactsCommand";
|
|
23
|
-
export * from "./ListBackendEnvironmentsCommand";
|
|
24
|
-
export * from "./ListBranchesCommand";
|
|
25
|
-
export * from "./ListDomainAssociationsCommand";
|
|
26
|
-
export * from "./ListJobsCommand";
|
|
27
|
-
export * from "./ListTagsForResourceCommand";
|
|
28
|
-
export * from "./ListWebhooksCommand";
|
|
29
|
-
export * from "./StartDeploymentCommand";
|
|
30
|
-
export * from "./StartJobCommand";
|
|
31
|
-
export * from "./StopJobCommand";
|
|
32
|
-
export * from "./TagResourceCommand";
|
|
33
|
-
export * from "./UntagResourceCommand";
|
|
34
|
-
export * from "./UpdateAppCommand";
|
|
35
|
-
export * from "./UpdateBranchCommand";
|
|
36
|
-
export * from "./UpdateDomainAssociationCommand";
|
|
37
|
-
export * from "./UpdateWebhookCommand";
|
|
1
|
+
export * from "./CreateAppCommand";
|
|
2
|
+
export * from "./CreateBackendEnvironmentCommand";
|
|
3
|
+
export * from "./CreateBranchCommand";
|
|
4
|
+
export * from "./CreateDeploymentCommand";
|
|
5
|
+
export * from "./CreateDomainAssociationCommand";
|
|
6
|
+
export * from "./CreateWebhookCommand";
|
|
7
|
+
export * from "./DeleteAppCommand";
|
|
8
|
+
export * from "./DeleteBackendEnvironmentCommand";
|
|
9
|
+
export * from "./DeleteBranchCommand";
|
|
10
|
+
export * from "./DeleteDomainAssociationCommand";
|
|
11
|
+
export * from "./DeleteJobCommand";
|
|
12
|
+
export * from "./DeleteWebhookCommand";
|
|
13
|
+
export * from "./GenerateAccessLogsCommand";
|
|
14
|
+
export * from "./GetAppCommand";
|
|
15
|
+
export * from "./GetArtifactUrlCommand";
|
|
16
|
+
export * from "./GetBackendEnvironmentCommand";
|
|
17
|
+
export * from "./GetBranchCommand";
|
|
18
|
+
export * from "./GetDomainAssociationCommand";
|
|
19
|
+
export * from "./GetJobCommand";
|
|
20
|
+
export * from "./GetWebhookCommand";
|
|
21
|
+
export * from "./ListAppsCommand";
|
|
22
|
+
export * from "./ListArtifactsCommand";
|
|
23
|
+
export * from "./ListBackendEnvironmentsCommand";
|
|
24
|
+
export * from "./ListBranchesCommand";
|
|
25
|
+
export * from "./ListDomainAssociationsCommand";
|
|
26
|
+
export * from "./ListJobsCommand";
|
|
27
|
+
export * from "./ListTagsForResourceCommand";
|
|
28
|
+
export * from "./ListWebhooksCommand";
|
|
29
|
+
export * from "./StartDeploymentCommand";
|
|
30
|
+
export * from "./StartJobCommand";
|
|
31
|
+
export * from "./StopJobCommand";
|
|
32
|
+
export * from "./TagResourceCommand";
|
|
33
|
+
export * from "./UntagResourceCommand";
|
|
34
|
+
export * from "./UpdateAppCommand";
|
|
35
|
+
export * from "./UpdateBranchCommand";
|
|
36
|
+
export * from "./UpdateDomainAssociationCommand";
|
|
37
|
+
export * from "./UpdateWebhookCommand";
|
|
@@ -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 "./Amplify";
|
|
2
|
-
export * from "./AmplifyClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export { AmplifyServiceException } from "./models/AmplifyServiceException";
|
|
1
|
+
export * from "./Amplify";
|
|
2
|
+
export * from "./AmplifyClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export { AmplifyServiceException } from "./models/AmplifyServiceException";
|
|
@@ -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 AmplifyServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|