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