@aws-sdk/client-apprunner 3.325.0 → 3.327.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/dist-types/commands/AssociateCustomDomainCommand.d.ts +27 -0
- package/dist-types/commands/CreateAutoScalingConfigurationCommand.d.ts +17 -0
- package/dist-types/commands/CreateConnectionCommand.d.ts +12 -0
- package/dist-types/commands/CreateObservabilityConfigurationCommand.d.ts +17 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +93 -0
- package/dist-types/commands/CreateVpcConnectorCommand.d.ts +19 -0
- package/dist-types/commands/CreateVpcIngressConnectionCommand.d.ts +19 -0
- package/dist-types/commands/DeleteAutoScalingConfigurationCommand.d.ts +17 -0
- package/dist-types/commands/DeleteConnectionCommand.d.ts +12 -0
- package/dist-types/commands/DeleteObservabilityConfigurationCommand.d.ts +17 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +93 -0
- package/dist-types/commands/DeleteVpcConnectorCommand.d.ts +19 -0
- package/dist-types/commands/DeleteVpcIngressConnectionCommand.d.ts +19 -0
- package/dist-types/commands/DescribeAutoScalingConfigurationCommand.d.ts +17 -0
- package/dist-types/commands/DescribeCustomDomainsCommand.d.ts +30 -0
- package/dist-types/commands/DescribeObservabilityConfigurationCommand.d.ts +17 -0
- package/dist-types/commands/DescribeServiceCommand.d.ts +92 -0
- package/dist-types/commands/DescribeVpcConnectorCommand.d.ts +19 -0
- package/dist-types/commands/DescribeVpcIngressConnectionCommand.d.ts +19 -0
- package/dist-types/commands/DisassociateCustomDomainCommand.d.ts +27 -0
- package/dist-types/commands/ListAutoScalingConfigurationsCommand.d.ts +13 -0
- package/dist-types/commands/ListConnectionsCommand.d.ts +15 -0
- package/dist-types/commands/ListObservabilityConfigurationsCommand.d.ts +13 -0
- package/dist-types/commands/ListOperationsCommand.d.ts +17 -0
- package/dist-types/commands/ListServicesCommand.d.ts +17 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/ListVpcConnectorsCommand.d.ts +22 -0
- package/dist-types/commands/ListVpcIngressConnectionsCommand.d.ts +12 -0
- package/dist-types/commands/PauseServiceCommand.d.ts +93 -0
- package/dist-types/commands/ResumeServiceCommand.d.ts +93 -0
- package/dist-types/commands/StartDeploymentCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +93 -0
- package/dist-types/commands/UpdateVpcIngressConnectionCommand.d.ts +19 -0
- package/package.json +7 -7
|
@@ -33,6 +33,97 @@ export interface ResumeServiceCommandOutput extends ResumeServiceResponse, __Met
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ResumeServiceCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ResumeServiceResponse
|
|
37
|
+
* // Service: { // Service
|
|
38
|
+
* // ServiceName: "STRING_VALUE", // required
|
|
39
|
+
* // ServiceId: "STRING_VALUE", // required
|
|
40
|
+
* // ServiceArn: "STRING_VALUE", // required
|
|
41
|
+
* // ServiceUrl: "STRING_VALUE",
|
|
42
|
+
* // CreatedAt: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // UpdatedAt: new Date("TIMESTAMP"), // required
|
|
44
|
+
* // DeletedAt: new Date("TIMESTAMP"),
|
|
45
|
+
* // Status: "CREATE_FAILED" || "RUNNING" || "DELETED" || "DELETE_FAILED" || "PAUSED" || "OPERATION_IN_PROGRESS", // required
|
|
46
|
+
* // SourceConfiguration: { // SourceConfiguration
|
|
47
|
+
* // CodeRepository: { // CodeRepository
|
|
48
|
+
* // RepositoryUrl: "STRING_VALUE", // required
|
|
49
|
+
* // SourceCodeVersion: { // SourceCodeVersion
|
|
50
|
+
* // Type: "BRANCH", // required
|
|
51
|
+
* // Value: "STRING_VALUE", // required
|
|
52
|
+
* // },
|
|
53
|
+
* // CodeConfiguration: { // CodeConfiguration
|
|
54
|
+
* // ConfigurationSource: "REPOSITORY" || "API", // required
|
|
55
|
+
* // CodeConfigurationValues: { // CodeConfigurationValues
|
|
56
|
+
* // Runtime: "PYTHON_3" || "NODEJS_12" || "NODEJS_14" || "CORRETTO_8" || "CORRETTO_11" || "NODEJS_16" || "GO_1" || "DOTNET_6" || "PHP_81" || "RUBY_31", // required
|
|
57
|
+
* // BuildCommand: "STRING_VALUE",
|
|
58
|
+
* // StartCommand: "STRING_VALUE",
|
|
59
|
+
* // Port: "STRING_VALUE",
|
|
60
|
+
* // RuntimeEnvironmentVariables: { // RuntimeEnvironmentVariables
|
|
61
|
+
* // "<keys>": "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // RuntimeEnvironmentSecrets: { // RuntimeEnvironmentSecrets
|
|
64
|
+
* // "<keys>": "STRING_VALUE",
|
|
65
|
+
* // },
|
|
66
|
+
* // },
|
|
67
|
+
* // },
|
|
68
|
+
* // },
|
|
69
|
+
* // ImageRepository: { // ImageRepository
|
|
70
|
+
* // ImageIdentifier: "STRING_VALUE", // required
|
|
71
|
+
* // ImageConfiguration: { // ImageConfiguration
|
|
72
|
+
* // RuntimeEnvironmentVariables: {
|
|
73
|
+
* // "<keys>": "STRING_VALUE",
|
|
74
|
+
* // },
|
|
75
|
+
* // StartCommand: "STRING_VALUE",
|
|
76
|
+
* // Port: "STRING_VALUE",
|
|
77
|
+
* // RuntimeEnvironmentSecrets: {
|
|
78
|
+
* // "<keys>": "STRING_VALUE",
|
|
79
|
+
* // },
|
|
80
|
+
* // },
|
|
81
|
+
* // ImageRepositoryType: "ECR" || "ECR_PUBLIC", // required
|
|
82
|
+
* // },
|
|
83
|
+
* // AutoDeploymentsEnabled: true || false,
|
|
84
|
+
* // AuthenticationConfiguration: { // AuthenticationConfiguration
|
|
85
|
+
* // ConnectionArn: "STRING_VALUE",
|
|
86
|
+
* // AccessRoleArn: "STRING_VALUE",
|
|
87
|
+
* // },
|
|
88
|
+
* // },
|
|
89
|
+
* // InstanceConfiguration: { // InstanceConfiguration
|
|
90
|
+
* // Cpu: "STRING_VALUE",
|
|
91
|
+
* // Memory: "STRING_VALUE",
|
|
92
|
+
* // InstanceRoleArn: "STRING_VALUE",
|
|
93
|
+
* // },
|
|
94
|
+
* // EncryptionConfiguration: { // EncryptionConfiguration
|
|
95
|
+
* // KmsKey: "STRING_VALUE", // required
|
|
96
|
+
* // },
|
|
97
|
+
* // HealthCheckConfiguration: { // HealthCheckConfiguration
|
|
98
|
+
* // Protocol: "TCP" || "HTTP",
|
|
99
|
+
* // Path: "STRING_VALUE",
|
|
100
|
+
* // Interval: Number("int"),
|
|
101
|
+
* // Timeout: Number("int"),
|
|
102
|
+
* // HealthyThreshold: Number("int"),
|
|
103
|
+
* // UnhealthyThreshold: Number("int"),
|
|
104
|
+
* // },
|
|
105
|
+
* // AutoScalingConfigurationSummary: { // AutoScalingConfigurationSummary
|
|
106
|
+
* // AutoScalingConfigurationArn: "STRING_VALUE",
|
|
107
|
+
* // AutoScalingConfigurationName: "STRING_VALUE",
|
|
108
|
+
* // AutoScalingConfigurationRevision: Number("int"),
|
|
109
|
+
* // },
|
|
110
|
+
* // NetworkConfiguration: { // NetworkConfiguration
|
|
111
|
+
* // EgressConfiguration: { // EgressConfiguration
|
|
112
|
+
* // EgressType: "DEFAULT" || "VPC",
|
|
113
|
+
* // VpcConnectorArn: "STRING_VALUE",
|
|
114
|
+
* // },
|
|
115
|
+
* // IngressConfiguration: { // IngressConfiguration
|
|
116
|
+
* // IsPubliclyAccessible: true || false,
|
|
117
|
+
* // },
|
|
118
|
+
* // },
|
|
119
|
+
* // ObservabilityConfiguration: { // ServiceObservabilityConfiguration
|
|
120
|
+
* // ObservabilityEnabled: true || false, // required
|
|
121
|
+
* // ObservabilityConfigurationArn: "STRING_VALUE",
|
|
122
|
+
* // },
|
|
123
|
+
* // },
|
|
124
|
+
* // OperationId: "STRING_VALUE",
|
|
125
|
+
* // };
|
|
126
|
+
*
|
|
36
127
|
* ```
|
|
37
128
|
*
|
|
38
129
|
* @param ResumeServiceCommandInput - {@link ResumeServiceCommandInput}
|
|
@@ -53,6 +144,8 @@ export interface ResumeServiceCommandOutput extends ResumeServiceResponse, __Met
|
|
|
53
144
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
54
145
|
* <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
|
|
55
146
|
*
|
|
147
|
+
* @throws {@link AppRunnerServiceException}
|
|
148
|
+
* <p>Base exception class for all service exceptions from AppRunner service.</p>
|
|
56
149
|
*
|
|
57
150
|
*/
|
|
58
151
|
export declare class ResumeServiceCommand extends $Command<ResumeServiceCommandInput, ResumeServiceCommandOutput, AppRunnerClientResolvedConfig> {
|
|
@@ -36,6 +36,10 @@ export interface StartDeploymentCommandOutput extends StartDeploymentResponse, _
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new StartDeploymentCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // StartDeploymentResponse
|
|
40
|
+
* // OperationId: "STRING_VALUE", // required
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
39
43
|
* ```
|
|
40
44
|
*
|
|
41
45
|
* @param StartDeploymentCommandInput - {@link StartDeploymentCommandInput}
|
|
@@ -53,6 +57,8 @@ export interface StartDeploymentCommandOutput extends StartDeploymentResponse, _
|
|
|
53
57
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
54
58
|
* <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
|
|
55
59
|
*
|
|
60
|
+
* @throws {@link AppRunnerServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from AppRunner service.</p>
|
|
56
62
|
*
|
|
57
63
|
*/
|
|
58
64
|
export declare class StartDeploymentCommand extends $Command<StartDeploymentCommandInput, StartDeploymentCommandOutput, AppRunnerClientResolvedConfig> {
|
|
@@ -37,6 +37,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new TagResourceCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // {};
|
|
41
|
+
*
|
|
40
42
|
* ```
|
|
41
43
|
*
|
|
42
44
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
57
59
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
58
60
|
* <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link AppRunnerServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from AppRunner service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, AppRunnerClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -54,6 +56,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
54
56
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
55
57
|
* <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
|
|
56
58
|
*
|
|
59
|
+
* @throws {@link AppRunnerServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from AppRunner service.</p>
|
|
57
61
|
*
|
|
58
62
|
*/
|
|
59
63
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, AppRunnerClientResolvedConfig> {
|
|
@@ -106,6 +106,97 @@ export interface UpdateServiceCommandOutput extends UpdateServiceResponse, __Met
|
|
|
106
106
|
* };
|
|
107
107
|
* const command = new UpdateServiceCommand(input);
|
|
108
108
|
* const response = await client.send(command);
|
|
109
|
+
* // { // UpdateServiceResponse
|
|
110
|
+
* // Service: { // Service
|
|
111
|
+
* // ServiceName: "STRING_VALUE", // required
|
|
112
|
+
* // ServiceId: "STRING_VALUE", // required
|
|
113
|
+
* // ServiceArn: "STRING_VALUE", // required
|
|
114
|
+
* // ServiceUrl: "STRING_VALUE",
|
|
115
|
+
* // CreatedAt: new Date("TIMESTAMP"), // required
|
|
116
|
+
* // UpdatedAt: new Date("TIMESTAMP"), // required
|
|
117
|
+
* // DeletedAt: new Date("TIMESTAMP"),
|
|
118
|
+
* // Status: "CREATE_FAILED" || "RUNNING" || "DELETED" || "DELETE_FAILED" || "PAUSED" || "OPERATION_IN_PROGRESS", // required
|
|
119
|
+
* // SourceConfiguration: { // SourceConfiguration
|
|
120
|
+
* // CodeRepository: { // CodeRepository
|
|
121
|
+
* // RepositoryUrl: "STRING_VALUE", // required
|
|
122
|
+
* // SourceCodeVersion: { // SourceCodeVersion
|
|
123
|
+
* // Type: "BRANCH", // required
|
|
124
|
+
* // Value: "STRING_VALUE", // required
|
|
125
|
+
* // },
|
|
126
|
+
* // CodeConfiguration: { // CodeConfiguration
|
|
127
|
+
* // ConfigurationSource: "REPOSITORY" || "API", // required
|
|
128
|
+
* // CodeConfigurationValues: { // CodeConfigurationValues
|
|
129
|
+
* // Runtime: "PYTHON_3" || "NODEJS_12" || "NODEJS_14" || "CORRETTO_8" || "CORRETTO_11" || "NODEJS_16" || "GO_1" || "DOTNET_6" || "PHP_81" || "RUBY_31", // required
|
|
130
|
+
* // BuildCommand: "STRING_VALUE",
|
|
131
|
+
* // StartCommand: "STRING_VALUE",
|
|
132
|
+
* // Port: "STRING_VALUE",
|
|
133
|
+
* // RuntimeEnvironmentVariables: { // RuntimeEnvironmentVariables
|
|
134
|
+
* // "<keys>": "STRING_VALUE",
|
|
135
|
+
* // },
|
|
136
|
+
* // RuntimeEnvironmentSecrets: { // RuntimeEnvironmentSecrets
|
|
137
|
+
* // "<keys>": "STRING_VALUE",
|
|
138
|
+
* // },
|
|
139
|
+
* // },
|
|
140
|
+
* // },
|
|
141
|
+
* // },
|
|
142
|
+
* // ImageRepository: { // ImageRepository
|
|
143
|
+
* // ImageIdentifier: "STRING_VALUE", // required
|
|
144
|
+
* // ImageConfiguration: { // ImageConfiguration
|
|
145
|
+
* // RuntimeEnvironmentVariables: {
|
|
146
|
+
* // "<keys>": "STRING_VALUE",
|
|
147
|
+
* // },
|
|
148
|
+
* // StartCommand: "STRING_VALUE",
|
|
149
|
+
* // Port: "STRING_VALUE",
|
|
150
|
+
* // RuntimeEnvironmentSecrets: {
|
|
151
|
+
* // "<keys>": "STRING_VALUE",
|
|
152
|
+
* // },
|
|
153
|
+
* // },
|
|
154
|
+
* // ImageRepositoryType: "ECR" || "ECR_PUBLIC", // required
|
|
155
|
+
* // },
|
|
156
|
+
* // AutoDeploymentsEnabled: true || false,
|
|
157
|
+
* // AuthenticationConfiguration: { // AuthenticationConfiguration
|
|
158
|
+
* // ConnectionArn: "STRING_VALUE",
|
|
159
|
+
* // AccessRoleArn: "STRING_VALUE",
|
|
160
|
+
* // },
|
|
161
|
+
* // },
|
|
162
|
+
* // InstanceConfiguration: { // InstanceConfiguration
|
|
163
|
+
* // Cpu: "STRING_VALUE",
|
|
164
|
+
* // Memory: "STRING_VALUE",
|
|
165
|
+
* // InstanceRoleArn: "STRING_VALUE",
|
|
166
|
+
* // },
|
|
167
|
+
* // EncryptionConfiguration: { // EncryptionConfiguration
|
|
168
|
+
* // KmsKey: "STRING_VALUE", // required
|
|
169
|
+
* // },
|
|
170
|
+
* // HealthCheckConfiguration: { // HealthCheckConfiguration
|
|
171
|
+
* // Protocol: "TCP" || "HTTP",
|
|
172
|
+
* // Path: "STRING_VALUE",
|
|
173
|
+
* // Interval: Number("int"),
|
|
174
|
+
* // Timeout: Number("int"),
|
|
175
|
+
* // HealthyThreshold: Number("int"),
|
|
176
|
+
* // UnhealthyThreshold: Number("int"),
|
|
177
|
+
* // },
|
|
178
|
+
* // AutoScalingConfigurationSummary: { // AutoScalingConfigurationSummary
|
|
179
|
+
* // AutoScalingConfigurationArn: "STRING_VALUE",
|
|
180
|
+
* // AutoScalingConfigurationName: "STRING_VALUE",
|
|
181
|
+
* // AutoScalingConfigurationRevision: Number("int"),
|
|
182
|
+
* // },
|
|
183
|
+
* // NetworkConfiguration: { // NetworkConfiguration
|
|
184
|
+
* // EgressConfiguration: { // EgressConfiguration
|
|
185
|
+
* // EgressType: "DEFAULT" || "VPC",
|
|
186
|
+
* // VpcConnectorArn: "STRING_VALUE",
|
|
187
|
+
* // },
|
|
188
|
+
* // IngressConfiguration: { // IngressConfiguration
|
|
189
|
+
* // IsPubliclyAccessible: true || false,
|
|
190
|
+
* // },
|
|
191
|
+
* // },
|
|
192
|
+
* // ObservabilityConfiguration: { // ServiceObservabilityConfiguration
|
|
193
|
+
* // ObservabilityEnabled: true || false, // required
|
|
194
|
+
* // ObservabilityConfigurationArn: "STRING_VALUE",
|
|
195
|
+
* // },
|
|
196
|
+
* // },
|
|
197
|
+
* // OperationId: "STRING_VALUE", // required
|
|
198
|
+
* // };
|
|
199
|
+
*
|
|
109
200
|
* ```
|
|
110
201
|
*
|
|
111
202
|
* @param UpdateServiceCommandInput - {@link UpdateServiceCommandInput}
|
|
@@ -126,6 +217,8 @@ export interface UpdateServiceCommandOutput extends UpdateServiceResponse, __Met
|
|
|
126
217
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
127
218
|
* <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
|
|
128
219
|
*
|
|
220
|
+
* @throws {@link AppRunnerServiceException}
|
|
221
|
+
* <p>Base exception class for all service exceptions from AppRunner service.</p>
|
|
129
222
|
*
|
|
130
223
|
*/
|
|
131
224
|
export declare class UpdateServiceCommand extends $Command<UpdateServiceCommandInput, UpdateServiceCommandOutput, AppRunnerClientResolvedConfig> {
|
|
@@ -52,6 +52,23 @@ export interface UpdateVpcIngressConnectionCommandOutput extends UpdateVpcIngres
|
|
|
52
52
|
* };
|
|
53
53
|
* const command = new UpdateVpcIngressConnectionCommand(input);
|
|
54
54
|
* const response = await client.send(command);
|
|
55
|
+
* // { // UpdateVpcIngressConnectionResponse
|
|
56
|
+
* // VpcIngressConnection: { // VpcIngressConnection
|
|
57
|
+
* // VpcIngressConnectionArn: "STRING_VALUE",
|
|
58
|
+
* // VpcIngressConnectionName: "STRING_VALUE",
|
|
59
|
+
* // ServiceArn: "STRING_VALUE",
|
|
60
|
+
* // Status: "AVAILABLE" || "PENDING_CREATION" || "PENDING_UPDATE" || "PENDING_DELETION" || "FAILED_CREATION" || "FAILED_UPDATE" || "FAILED_DELETION" || "DELETED",
|
|
61
|
+
* // AccountId: "STRING_VALUE",
|
|
62
|
+
* // DomainName: "STRING_VALUE",
|
|
63
|
+
* // IngressVpcConfiguration: { // IngressVpcConfiguration
|
|
64
|
+
* // VpcId: "STRING_VALUE",
|
|
65
|
+
* // VpcEndpointId: "STRING_VALUE",
|
|
66
|
+
* // },
|
|
67
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
68
|
+
* // DeletedAt: new Date("TIMESTAMP"),
|
|
69
|
+
* // },
|
|
70
|
+
* // };
|
|
71
|
+
*
|
|
55
72
|
* ```
|
|
56
73
|
*
|
|
57
74
|
* @param UpdateVpcIngressConnectionCommandInput - {@link UpdateVpcIngressConnectionCommandInput}
|
|
@@ -72,6 +89,8 @@ export interface UpdateVpcIngressConnectionCommandOutput extends UpdateVpcIngres
|
|
|
72
89
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
73
90
|
* <p>A resource doesn't exist for the specified Amazon Resource Name (ARN) in your Amazon Web Services account.</p>
|
|
74
91
|
*
|
|
92
|
+
* @throws {@link AppRunnerServiceException}
|
|
93
|
+
* <p>Base exception class for all service exceptions from AppRunner service.</p>
|
|
75
94
|
*
|
|
76
95
|
*/
|
|
77
96
|
export declare class UpdateVpcIngressConnectionCommand extends $Command<UpdateVpcIngressConnectionCommandInput, UpdateVpcIngressConnectionCommandOutput, AppRunnerClientResolvedConfig> {
|
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.327.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,9 +21,9 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.327.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.327.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.327.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.327.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.327.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.327.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.310.0",
|