@aws-sdk/client-apprunner 3.50.0 → 3.51.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 (43) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/AppRunner.d.ts +115 -0
  3. package/dist-types/ts3.4/AppRunnerClient.d.ts +95 -0
  4. package/dist-types/ts3.4/commands/AssociateCustomDomainCommand.d.ts +17 -0
  5. package/dist-types/ts3.4/commands/CreateAutoScalingConfigurationCommand.d.ts +17 -0
  6. package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +17 -0
  7. package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +17 -0
  8. package/dist-types/ts3.4/commands/DeleteAutoScalingConfigurationCommand.d.ts +17 -0
  9. package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +17 -0
  10. package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +17 -0
  11. package/dist-types/ts3.4/commands/DescribeAutoScalingConfigurationCommand.d.ts +17 -0
  12. package/dist-types/ts3.4/commands/DescribeCustomDomainsCommand.d.ts +17 -0
  13. package/dist-types/ts3.4/commands/DescribeServiceCommand.d.ts +17 -0
  14. package/dist-types/ts3.4/commands/DisassociateCustomDomainCommand.d.ts +17 -0
  15. package/dist-types/ts3.4/commands/ListAutoScalingConfigurationsCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/ListOperationsCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/PauseServiceCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/ResumeServiceCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/StartDeploymentCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/index.d.ts +22 -0
  27. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  28. package/dist-types/ts3.4/index.d.ts +5 -0
  29. package/dist-types/ts3.4/models/index.d.ts +1 -0
  30. package/dist-types/ts3.4/models/models_0.d.ts +882 -0
  31. package/dist-types/ts3.4/pagination/DescribeCustomDomainsPaginator.d.ts +4 -0
  32. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  33. package/dist-types/ts3.4/pagination/ListAutoScalingConfigurationsPaginator.d.ts +4 -0
  34. package/dist-types/ts3.4/pagination/ListConnectionsPaginator.d.ts +4 -0
  35. package/dist-types/ts3.4/pagination/ListOperationsPaginator.d.ts +4 -0
  36. package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +4 -0
  37. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  38. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +68 -0
  39. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  40. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  41. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  42. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  43. package/package.json +8 -8
@@ -0,0 +1,17 @@
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 { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
4
+ import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
+ export interface UntagResourceCommandInput extends UntagResourceRequest {
6
+ }
7
+ export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, AppRunnerClientResolvedConfig> {
11
+ readonly input: UntagResourceCommandInput;
12
+ constructor(input: UntagResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
4
+ import { UpdateServiceRequest, UpdateServiceResponse } from "../models/models_0";
5
+ export interface UpdateServiceCommandInput extends UpdateServiceRequest {
6
+ }
7
+ export interface UpdateServiceCommandOutput extends UpdateServiceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateServiceCommand extends $Command<UpdateServiceCommandInput, UpdateServiceCommandOutput, AppRunnerClientResolvedConfig> {
11
+ readonly input: UpdateServiceCommandInput;
12
+ constructor(input: UpdateServiceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateServiceCommandInput, UpdateServiceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,22 @@
1
+ export * from "./AssociateCustomDomainCommand";
2
+ export * from "./CreateAutoScalingConfigurationCommand";
3
+ export * from "./CreateConnectionCommand";
4
+ export * from "./CreateServiceCommand";
5
+ export * from "./DeleteAutoScalingConfigurationCommand";
6
+ export * from "./DeleteConnectionCommand";
7
+ export * from "./DeleteServiceCommand";
8
+ export * from "./DescribeAutoScalingConfigurationCommand";
9
+ export * from "./DescribeCustomDomainsCommand";
10
+ export * from "./DescribeServiceCommand";
11
+ export * from "./DisassociateCustomDomainCommand";
12
+ export * from "./ListAutoScalingConfigurationsCommand";
13
+ export * from "./ListConnectionsCommand";
14
+ export * from "./ListOperationsCommand";
15
+ export * from "./ListServicesCommand";
16
+ export * from "./ListTagsForResourceCommand";
17
+ export * from "./PauseServiceCommand";
18
+ export * from "./ResumeServiceCommand";
19
+ export * from "./StartDeploymentCommand";
20
+ export * from "./TagResourceCommand";
21
+ export * from "./UntagResourceCommand";
22
+ export * from "./UpdateServiceCommand";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -0,0 +1,5 @@
1
+ export * from "./AppRunner";
2
+ export * from "./AppRunnerClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
@@ -0,0 +1 @@
1
+ export * from "./models_0";