@aws-sdk/client-apprunner 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.
Files changed (49) hide show
  1. package/dist-types/AppRunner.d.ts +36 -0
  2. package/dist-types/AppRunnerClient.d.ts +24 -4
  3. package/dist-types/commands/AssociateCustomDomainCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateAutoScalingConfigurationCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateConnectionCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateObservabilityConfigurationCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateServiceCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateVpcConnectorCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateVpcIngressConnectionCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteAutoScalingConfigurationCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteConnectionCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteObservabilityConfigurationCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteServiceCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteVpcConnectorCommand.d.ts +16 -0
  15. package/dist-types/commands/DeleteVpcIngressConnectionCommand.d.ts +16 -0
  16. package/dist-types/commands/DescribeAutoScalingConfigurationCommand.d.ts +16 -0
  17. package/dist-types/commands/DescribeCustomDomainsCommand.d.ts +16 -0
  18. package/dist-types/commands/DescribeObservabilityConfigurationCommand.d.ts +16 -0
  19. package/dist-types/commands/DescribeServiceCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeVpcConnectorCommand.d.ts +16 -0
  21. package/dist-types/commands/DescribeVpcIngressConnectionCommand.d.ts +16 -0
  22. package/dist-types/commands/DisassociateCustomDomainCommand.d.ts +16 -0
  23. package/dist-types/commands/ListAutoScalingConfigurationsCommand.d.ts +16 -0
  24. package/dist-types/commands/ListConnectionsCommand.d.ts +16 -0
  25. package/dist-types/commands/ListObservabilityConfigurationsCommand.d.ts +16 -0
  26. package/dist-types/commands/ListOperationsCommand.d.ts +16 -0
  27. package/dist-types/commands/ListServicesCommand.d.ts +16 -0
  28. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  29. package/dist-types/commands/ListVpcConnectorsCommand.d.ts +16 -0
  30. package/dist-types/commands/ListVpcIngressConnectionsCommand.d.ts +16 -0
  31. package/dist-types/commands/PauseServiceCommand.d.ts +16 -0
  32. package/dist-types/commands/ResumeServiceCommand.d.ts +16 -0
  33. package/dist-types/commands/StartDeploymentCommand.d.ts +16 -0
  34. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  35. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  36. package/dist-types/commands/UpdateServiceCommand.d.ts +16 -0
  37. package/dist-types/commands/UpdateVpcIngressConnectionCommand.d.ts +16 -0
  38. package/dist-types/models/AppRunnerServiceException.d.ts +2 -0
  39. package/dist-types/models/models_0.d.ts +303 -0
  40. package/dist-types/pagination/DescribeCustomDomainsPaginator.d.ts +3 -0
  41. package/dist-types/pagination/Interfaces.d.ts +3 -0
  42. package/dist-types/pagination/ListAutoScalingConfigurationsPaginator.d.ts +3 -0
  43. package/dist-types/pagination/ListConnectionsPaginator.d.ts +3 -0
  44. package/dist-types/pagination/ListObservabilityConfigurationsPaginator.d.ts +3 -0
  45. package/dist-types/pagination/ListOperationsPaginator.d.ts +3 -0
  46. package/dist-types/pagination/ListServicesPaginator.d.ts +3 -0
  47. package/dist-types/pagination/ListVpcConnectorsPaginator.d.ts +3 -0
  48. package/dist-types/pagination/ListVpcIngressConnectionsPaginator.d.ts +3 -0
  49. package/package.json +3 -3
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { DescribeCustomDomainsCommandInput, DescribeCustomDomainsCommandOutput } from "../commands/DescribeCustomDomainsCommand";
3
3
  import { AppRunnerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateDescribeCustomDomains(config: AppRunnerPaginationConfiguration, input: DescribeCustomDomainsCommandInput, ...additionalArguments: any): Paginator<DescribeCustomDomainsCommandOutput>;
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { AppRunnerClient } from "../AppRunnerClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface AppRunnerPaginationConfiguration extends PaginationConfiguration {
4
7
  client: AppRunnerClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListAutoScalingConfigurationsCommandInput, ListAutoScalingConfigurationsCommandOutput } from "../commands/ListAutoScalingConfigurationsCommand";
3
3
  import { AppRunnerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListAutoScalingConfigurations(config: AppRunnerPaginationConfiguration, input: ListAutoScalingConfigurationsCommandInput, ...additionalArguments: any): Paginator<ListAutoScalingConfigurationsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListConnectionsCommandInput, ListConnectionsCommandOutput } from "../commands/ListConnectionsCommand";
3
3
  import { AppRunnerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListConnections(config: AppRunnerPaginationConfiguration, input: ListConnectionsCommandInput, ...additionalArguments: any): Paginator<ListConnectionsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListObservabilityConfigurationsCommandInput, ListObservabilityConfigurationsCommandOutput } from "../commands/ListObservabilityConfigurationsCommand";
3
3
  import { AppRunnerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListObservabilityConfigurations(config: AppRunnerPaginationConfiguration, input: ListObservabilityConfigurationsCommandInput, ...additionalArguments: any): Paginator<ListObservabilityConfigurationsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListOperationsCommandInput, ListOperationsCommandOutput } from "../commands/ListOperationsCommand";
3
3
  import { AppRunnerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListOperations(config: AppRunnerPaginationConfiguration, input: ListOperationsCommandInput, ...additionalArguments: any): Paginator<ListOperationsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListServicesCommandInput, ListServicesCommandOutput } from "../commands/ListServicesCommand";
3
3
  import { AppRunnerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListServices(config: AppRunnerPaginationConfiguration, input: ListServicesCommandInput, ...additionalArguments: any): Paginator<ListServicesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListVpcConnectorsCommandInput, ListVpcConnectorsCommandOutput } from "../commands/ListVpcConnectorsCommand";
3
3
  import { AppRunnerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListVpcConnectors(config: AppRunnerPaginationConfiguration, input: ListVpcConnectorsCommandInput, ...additionalArguments: any): Paginator<ListVpcConnectorsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListVpcIngressConnectionsCommandInput, ListVpcIngressConnectionsCommandOutput } from "../commands/ListVpcIngressConnectionsCommand";
3
3
  import { AppRunnerPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListVpcIngressConnections(config: AppRunnerPaginationConfiguration, input: ListVpcIngressConnectionsCommandInput, ...additionalArguments: any): Paginator<ListVpcIngressConnectionsCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-apprunner",
3
3
  "description": "AWS SDK for JavaScript Apprunner Client for Node.js, Browser and React Native",
4
- "version": "3.296.0",
4
+ "version": "3.297.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.296.0",
23
+ "@aws-sdk/client-sts": "3.297.0",
24
24
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
25
+ "@aws-sdk/credential-provider-node": "3.297.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
27
  "@aws-sdk/hash-node": "3.296.0",
28
28
  "@aws-sdk/invalid-dependency": "3.296.0",