@aws-sdk/client-apprunner 3.413.0 → 3.417.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/README.md +16 -0
- package/dist-cjs/AppRunner.js +4 -0
- package/dist-cjs/commands/ListServicesForAutoScalingConfigurationCommand.js +46 -0
- package/dist-cjs/commands/UpdateDefaultAutoScalingConfigurationCommand.js +46 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/pagination/ListServicesForAutoScalingConfigurationPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_0.js +128 -4
- package/dist-cjs/runtimeExtensions.js +3 -0
- package/dist-es/AppRunner.js +4 -0
- package/dist-es/commands/ListServicesForAutoScalingConfigurationCommand.js +42 -0
- package/dist-es/commands/UpdateDefaultAutoScalingConfigurationCommand.js +42 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/pagination/ListServicesForAutoScalingConfigurationPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_0.js +122 -2
- package/dist-es/runtimeExtensions.js +3 -0
- package/dist-types/AppRunner.d.ts +14 -0
- package/dist-types/AppRunnerClient.d.ts +4 -2
- package/dist-types/commands/CreateAutoScalingConfigurationCommand.d.ts +4 -2
- package/dist-types/commands/CreateServiceCommand.d.ts +4 -0
- package/dist-types/commands/DeleteAutoScalingConfigurationCommand.d.ts +6 -2
- package/dist-types/commands/DeleteServiceCommand.d.ts +4 -0
- package/dist-types/commands/DescribeAutoScalingConfigurationCommand.d.ts +2 -0
- package/dist-types/commands/DescribeServiceCommand.d.ts +4 -0
- package/dist-types/commands/ListAutoScalingConfigurationsCommand.d.ts +4 -0
- package/dist-types/commands/ListServicesForAutoScalingConfigurationCommand.d.ts +87 -0
- package/dist-types/commands/PauseServiceCommand.d.ts +4 -0
- package/dist-types/commands/ResumeServiceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateDefaultAutoScalingConfigurationCommand.d.ts +96 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +4 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +135 -6
- package/dist-types/pagination/ListServicesForAutoScalingConfigurationPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +18 -0
- package/dist-types/ts3.4/AppRunner.d.ts +46 -0
- package/dist-types/ts3.4/AppRunnerClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/ListServicesForAutoScalingConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateDefaultAutoScalingConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +22 -0
- package/dist-types/ts3.4/pagination/ListServicesForAutoScalingConfigurationPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +24 -0
- package/package.json +4 -3
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.
|
|
4
|
+
"version": "3.417.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",
|
|
@@ -21,13 +21,14 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.414.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.414.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.413.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.413.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.413.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.413.0",
|
|
30
30
|
"@aws-sdk/middleware-user-agent": "3.413.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.413.0",
|
|
31
32
|
"@aws-sdk/types": "3.413.0",
|
|
32
33
|
"@aws-sdk/util-endpoints": "3.413.0",
|
|
33
34
|
"@aws-sdk/util-user-agent-browser": "3.413.0",
|