@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.
- package/dist-types/AppRunner.d.ts +36 -0
- package/dist-types/AppRunnerClient.d.ts +24 -4
- package/dist-types/commands/AssociateCustomDomainCommand.d.ts +16 -0
- package/dist-types/commands/CreateAutoScalingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/CreateConnectionCommand.d.ts +16 -0
- package/dist-types/commands/CreateObservabilityConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +16 -0
- package/dist-types/commands/CreateVpcConnectorCommand.d.ts +16 -0
- package/dist-types/commands/CreateVpcIngressConnectionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAutoScalingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConnectionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteObservabilityConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteVpcConnectorCommand.d.ts +16 -0
- package/dist-types/commands/DeleteVpcIngressConnectionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAutoScalingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCustomDomainsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeObservabilityConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeServiceCommand.d.ts +16 -0
- package/dist-types/commands/DescribeVpcConnectorCommand.d.ts +16 -0
- package/dist-types/commands/DescribeVpcIngressConnectionCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateCustomDomainCommand.d.ts +16 -0
- package/dist-types/commands/ListAutoScalingConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListConnectionsCommand.d.ts +16 -0
- package/dist-types/commands/ListObservabilityConfigurationsCommand.d.ts +16 -0
- package/dist-types/commands/ListOperationsCommand.d.ts +16 -0
- package/dist-types/commands/ListServicesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListVpcConnectorsCommand.d.ts +16 -0
- package/dist-types/commands/ListVpcIngressConnectionsCommand.d.ts +16 -0
- package/dist-types/commands/PauseServiceCommand.d.ts +16 -0
- package/dist-types/commands/ResumeServiceCommand.d.ts +16 -0
- package/dist-types/commands/StartDeploymentCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateVpcIngressConnectionCommand.d.ts +16 -0
- package/dist-types/models/AppRunnerServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +303 -0
- package/dist-types/pagination/DescribeCustomDomainsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAutoScalingConfigurationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListConnectionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListObservabilityConfigurationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListOperationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListServicesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListVpcConnectorsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListVpcIngressConnectionsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -36,6 +36,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
36
36
|
import { UpdateServiceCommandInput, UpdateServiceCommandOutput } from "./commands/UpdateServiceCommand";
|
|
37
37
|
import { UpdateVpcIngressConnectionCommandInput, UpdateVpcIngressConnectionCommandOutput } from "./commands/UpdateVpcIngressConnectionCommand";
|
|
38
38
|
/**
|
|
39
|
+
* @public
|
|
39
40
|
* <fullname>App Runner</fullname>
|
|
40
41
|
* <p>App Runner is an application service that provides a fast, simple, and cost-effective way to go directly from an existing container image or source code
|
|
41
42
|
* to a running service in the Amazon Web Services Cloud in seconds. You don't need to learn new technologies, decide which compute service to use, or understand how to
|
|
@@ -56,6 +57,7 @@ import { UpdateVpcIngressConnectionCommandInput, UpdateVpcIngressConnectionComma
|
|
|
56
57
|
*/
|
|
57
58
|
export declare class AppRunner extends AppRunnerClient {
|
|
58
59
|
/**
|
|
60
|
+
* @public
|
|
59
61
|
* <p>Associate your own domain name with the App Runner subdomain URL of your App Runner service.</p>
|
|
60
62
|
* <p>After you call <code>AssociateCustomDomain</code> and receive a successful response, use the information in the <a>CustomDomain</a> record
|
|
61
63
|
* that's returned to add CNAME records to your Domain Name System (DNS). For each mapped domain name, add a mapping to the target App Runner subdomain and one or
|
|
@@ -66,6 +68,7 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
66
68
|
associateCustomDomain(args: AssociateCustomDomainCommandInput, cb: (err: any, data?: AssociateCustomDomainCommandOutput) => void): void;
|
|
67
69
|
associateCustomDomain(args: AssociateCustomDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateCustomDomainCommandOutput) => void): void;
|
|
68
70
|
/**
|
|
71
|
+
* @public
|
|
69
72
|
* <p>Create an App Runner automatic scaling configuration resource. App Runner requires this resource when you create or update App Runner services and you require
|
|
70
73
|
* non-default auto scaling settings. You can share an auto scaling configuration across multiple services.</p>
|
|
71
74
|
* <p>Create multiple revisions of a configuration by calling this action multiple times using the same <code>AutoScalingConfigurationName</code>. The call
|
|
@@ -80,6 +83,7 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
80
83
|
createAutoScalingConfiguration(args: CreateAutoScalingConfigurationCommandInput, cb: (err: any, data?: CreateAutoScalingConfigurationCommandOutput) => void): void;
|
|
81
84
|
createAutoScalingConfiguration(args: CreateAutoScalingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAutoScalingConfigurationCommandOutput) => void): void;
|
|
82
85
|
/**
|
|
86
|
+
* @public
|
|
83
87
|
* <p>Create an App Runner connection resource. App Runner requires a connection resource when you create App Runner services that access private repositories from
|
|
84
88
|
* certain third-party providers. You can share a connection across multiple services.</p>
|
|
85
89
|
* <p>A connection resource is needed to access GitHub repositories. GitHub requires a user interface approval process through the App Runner console before you
|
|
@@ -89,6 +93,7 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
89
93
|
createConnection(args: CreateConnectionCommandInput, cb: (err: any, data?: CreateConnectionCommandOutput) => void): void;
|
|
90
94
|
createConnection(args: CreateConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConnectionCommandOutput) => void): void;
|
|
91
95
|
/**
|
|
96
|
+
* @public
|
|
92
97
|
* <p>Create an App Runner observability configuration resource. App Runner requires this resource when you create or update App Runner services and you want to enable
|
|
93
98
|
* non-default observability features. You can share an observability configuration across multiple services.</p>
|
|
94
99
|
* <p>Create multiple revisions of a configuration by calling this action multiple times using the same <code>ObservabilityConfigurationName</code>. The
|
|
@@ -103,6 +108,7 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
103
108
|
createObservabilityConfiguration(args: CreateObservabilityConfigurationCommandInput, cb: (err: any, data?: CreateObservabilityConfigurationCommandOutput) => void): void;
|
|
104
109
|
createObservabilityConfiguration(args: CreateObservabilityConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateObservabilityConfigurationCommandOutput) => void): void;
|
|
105
110
|
/**
|
|
111
|
+
* @public
|
|
106
112
|
* <p>Create an App Runner service. After the service is created, the action also automatically starts a deployment.</p>
|
|
107
113
|
* <p>This is an asynchronous operation. On a successful call, you can use the returned <code>OperationId</code> and the <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_ListOperations.html">ListOperations</a> call to track the operation's progress.</p>
|
|
108
114
|
*/
|
|
@@ -110,6 +116,7 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
110
116
|
createService(args: CreateServiceCommandInput, cb: (err: any, data?: CreateServiceCommandOutput) => void): void;
|
|
111
117
|
createService(args: CreateServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateServiceCommandOutput) => void): void;
|
|
112
118
|
/**
|
|
119
|
+
* @public
|
|
113
120
|
* <p>Create an App Runner VPC connector resource. App Runner requires this resource when you want to associate your App Runner service to a custom Amazon Virtual Private Cloud
|
|
114
121
|
* (Amazon VPC).</p>
|
|
115
122
|
*/
|
|
@@ -117,12 +124,14 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
117
124
|
createVpcConnector(args: CreateVpcConnectorCommandInput, cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void): void;
|
|
118
125
|
createVpcConnector(args: CreateVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void): void;
|
|
119
126
|
/**
|
|
127
|
+
* @public
|
|
120
128
|
* <p>Create an App Runner VPC Ingress Connection resource. App Runner requires this resource when you want to associate your App Runner service with an Amazon VPC endpoint.</p>
|
|
121
129
|
*/
|
|
122
130
|
createVpcIngressConnection(args: CreateVpcIngressConnectionCommandInput, options?: __HttpHandlerOptions): Promise<CreateVpcIngressConnectionCommandOutput>;
|
|
123
131
|
createVpcIngressConnection(args: CreateVpcIngressConnectionCommandInput, cb: (err: any, data?: CreateVpcIngressConnectionCommandOutput) => void): void;
|
|
124
132
|
createVpcIngressConnection(args: CreateVpcIngressConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpcIngressConnectionCommandOutput) => void): void;
|
|
125
133
|
/**
|
|
134
|
+
* @public
|
|
126
135
|
* <p>Delete an App Runner automatic scaling configuration resource. You can delete a specific revision or the latest active revision. You can't delete a
|
|
127
136
|
* configuration that's used by one or more App Runner services.</p>
|
|
128
137
|
*/
|
|
@@ -130,6 +139,7 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
130
139
|
deleteAutoScalingConfiguration(args: DeleteAutoScalingConfigurationCommandInput, cb: (err: any, data?: DeleteAutoScalingConfigurationCommandOutput) => void): void;
|
|
131
140
|
deleteAutoScalingConfiguration(args: DeleteAutoScalingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAutoScalingConfigurationCommandOutput) => void): void;
|
|
132
141
|
/**
|
|
142
|
+
* @public
|
|
133
143
|
* <p>Delete an App Runner connection. You must first ensure that there are no running App Runner services that use this connection. If there are any, the
|
|
134
144
|
* <code>DeleteConnection</code> action fails.</p>
|
|
135
145
|
*/
|
|
@@ -137,6 +147,7 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
137
147
|
deleteConnection(args: DeleteConnectionCommandInput, cb: (err: any, data?: DeleteConnectionCommandOutput) => void): void;
|
|
138
148
|
deleteConnection(args: DeleteConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectionCommandOutput) => void): void;
|
|
139
149
|
/**
|
|
150
|
+
* @public
|
|
140
151
|
* <p>Delete an App Runner observability configuration resource. You can delete a specific revision or the latest active revision. You can't delete a
|
|
141
152
|
* configuration that's used by one or more App Runner services.</p>
|
|
142
153
|
*/
|
|
@@ -144,6 +155,7 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
144
155
|
deleteObservabilityConfiguration(args: DeleteObservabilityConfigurationCommandInput, cb: (err: any, data?: DeleteObservabilityConfigurationCommandOutput) => void): void;
|
|
145
156
|
deleteObservabilityConfiguration(args: DeleteObservabilityConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteObservabilityConfigurationCommandOutput) => void): void;
|
|
146
157
|
/**
|
|
158
|
+
* @public
|
|
147
159
|
* <p>Delete an App Runner service.</p>
|
|
148
160
|
* <p>This is an asynchronous operation. On a successful call, you can use the returned <code>OperationId</code> and the <a>ListOperations</a>
|
|
149
161
|
* call to track the operation's progress.</p>
|
|
@@ -156,6 +168,7 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
156
168
|
deleteService(args: DeleteServiceCommandInput, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
|
|
157
169
|
deleteService(args: DeleteServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
|
|
158
170
|
/**
|
|
171
|
+
* @public
|
|
159
172
|
* <p>Delete an App Runner VPC connector resource. You can't delete a
|
|
160
173
|
* connector that's used by one or more App Runner services.</p>
|
|
161
174
|
*/
|
|
@@ -163,6 +176,7 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
163
176
|
deleteVpcConnector(args: DeleteVpcConnectorCommandInput, cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void): void;
|
|
164
177
|
deleteVpcConnector(args: DeleteVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void): void;
|
|
165
178
|
/**
|
|
179
|
+
* @public
|
|
166
180
|
* <p>Delete an App Runner VPC Ingress Connection resource that's associated with an App Runner service. The VPC Ingress Connection must be in one of the following states to be deleted:
|
|
167
181
|
* </p>
|
|
168
182
|
* <ul>
|
|
@@ -192,42 +206,49 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
192
206
|
deleteVpcIngressConnection(args: DeleteVpcIngressConnectionCommandInput, cb: (err: any, data?: DeleteVpcIngressConnectionCommandOutput) => void): void;
|
|
193
207
|
deleteVpcIngressConnection(args: DeleteVpcIngressConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpcIngressConnectionCommandOutput) => void): void;
|
|
194
208
|
/**
|
|
209
|
+
* @public
|
|
195
210
|
* <p>Return a full description of an App Runner automatic scaling configuration resource.</p>
|
|
196
211
|
*/
|
|
197
212
|
describeAutoScalingConfiguration(args: DescribeAutoScalingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAutoScalingConfigurationCommandOutput>;
|
|
198
213
|
describeAutoScalingConfiguration(args: DescribeAutoScalingConfigurationCommandInput, cb: (err: any, data?: DescribeAutoScalingConfigurationCommandOutput) => void): void;
|
|
199
214
|
describeAutoScalingConfiguration(args: DescribeAutoScalingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAutoScalingConfigurationCommandOutput) => void): void;
|
|
200
215
|
/**
|
|
216
|
+
* @public
|
|
201
217
|
* <p>Return a description of custom domain names that are associated with an App Runner service.</p>
|
|
202
218
|
*/
|
|
203
219
|
describeCustomDomains(args: DescribeCustomDomainsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCustomDomainsCommandOutput>;
|
|
204
220
|
describeCustomDomains(args: DescribeCustomDomainsCommandInput, cb: (err: any, data?: DescribeCustomDomainsCommandOutput) => void): void;
|
|
205
221
|
describeCustomDomains(args: DescribeCustomDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCustomDomainsCommandOutput) => void): void;
|
|
206
222
|
/**
|
|
223
|
+
* @public
|
|
207
224
|
* <p>Return a full description of an App Runner observability configuration resource.</p>
|
|
208
225
|
*/
|
|
209
226
|
describeObservabilityConfiguration(args: DescribeObservabilityConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeObservabilityConfigurationCommandOutput>;
|
|
210
227
|
describeObservabilityConfiguration(args: DescribeObservabilityConfigurationCommandInput, cb: (err: any, data?: DescribeObservabilityConfigurationCommandOutput) => void): void;
|
|
211
228
|
describeObservabilityConfiguration(args: DescribeObservabilityConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeObservabilityConfigurationCommandOutput) => void): void;
|
|
212
229
|
/**
|
|
230
|
+
* @public
|
|
213
231
|
* <p>Return a full description of an App Runner service.</p>
|
|
214
232
|
*/
|
|
215
233
|
describeService(args: DescribeServiceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeServiceCommandOutput>;
|
|
216
234
|
describeService(args: DescribeServiceCommandInput, cb: (err: any, data?: DescribeServiceCommandOutput) => void): void;
|
|
217
235
|
describeService(args: DescribeServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeServiceCommandOutput) => void): void;
|
|
218
236
|
/**
|
|
237
|
+
* @public
|
|
219
238
|
* <p>Return a description of an App Runner VPC connector resource.</p>
|
|
220
239
|
*/
|
|
221
240
|
describeVpcConnector(args: DescribeVpcConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcConnectorCommandOutput>;
|
|
222
241
|
describeVpcConnector(args: DescribeVpcConnectorCommandInput, cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void): void;
|
|
223
242
|
describeVpcConnector(args: DescribeVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void): void;
|
|
224
243
|
/**
|
|
244
|
+
* @public
|
|
225
245
|
* <p>Return a full description of an App Runner VPC Ingress Connection resource.</p>
|
|
226
246
|
*/
|
|
227
247
|
describeVpcIngressConnection(args: DescribeVpcIngressConnectionCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcIngressConnectionCommandOutput>;
|
|
228
248
|
describeVpcIngressConnection(args: DescribeVpcIngressConnectionCommandInput, cb: (err: any, data?: DescribeVpcIngressConnectionCommandOutput) => void): void;
|
|
229
249
|
describeVpcIngressConnection(args: DescribeVpcIngressConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcIngressConnectionCommandOutput) => void): void;
|
|
230
250
|
/**
|
|
251
|
+
* @public
|
|
231
252
|
* <p>Disassociate a custom domain name from an App Runner service.</p>
|
|
232
253
|
* <p>Certificates tracking domain validity are associated with a custom domain and are stored in <a href="https://docs.aws.amazon.com/acm/latest/userguide">AWS
|
|
233
254
|
* Certificate Manager (ACM)</a>. These certificates aren't deleted as part of this action. App Runner delays certificate deletion for
|
|
@@ -237,6 +258,7 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
237
258
|
disassociateCustomDomain(args: DisassociateCustomDomainCommandInput, cb: (err: any, data?: DisassociateCustomDomainCommandOutput) => void): void;
|
|
238
259
|
disassociateCustomDomain(args: DisassociateCustomDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateCustomDomainCommandOutput) => void): void;
|
|
239
260
|
/**
|
|
261
|
+
* @public
|
|
240
262
|
* <p>Returns a list of active App Runner automatic scaling configurations in your Amazon Web Services account. You can query the revisions for a specific
|
|
241
263
|
* configuration name or the revisions for all active configurations in your account. You can optionally query only the latest revision of each requested
|
|
242
264
|
* name.</p>
|
|
@@ -247,12 +269,14 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
247
269
|
listAutoScalingConfigurations(args: ListAutoScalingConfigurationsCommandInput, cb: (err: any, data?: ListAutoScalingConfigurationsCommandOutput) => void): void;
|
|
248
270
|
listAutoScalingConfigurations(args: ListAutoScalingConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAutoScalingConfigurationsCommandOutput) => void): void;
|
|
249
271
|
/**
|
|
272
|
+
* @public
|
|
250
273
|
* <p>Returns a list of App Runner connections that are associated with your Amazon Web Services account.</p>
|
|
251
274
|
*/
|
|
252
275
|
listConnections(args: ListConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<ListConnectionsCommandOutput>;
|
|
253
276
|
listConnections(args: ListConnectionsCommandInput, cb: (err: any, data?: ListConnectionsCommandOutput) => void): void;
|
|
254
277
|
listConnections(args: ListConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectionsCommandOutput) => void): void;
|
|
255
278
|
/**
|
|
279
|
+
* @public
|
|
256
280
|
* <p>Returns a list of active App Runner observability configurations in your Amazon Web Services account. You can query the revisions for a specific
|
|
257
281
|
* configuration name or the revisions for all active configurations in your account. You can optionally query only the latest revision of each requested
|
|
258
282
|
* name.</p>
|
|
@@ -263,6 +287,7 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
263
287
|
listObservabilityConfigurations(args: ListObservabilityConfigurationsCommandInput, cb: (err: any, data?: ListObservabilityConfigurationsCommandOutput) => void): void;
|
|
264
288
|
listObservabilityConfigurations(args: ListObservabilityConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListObservabilityConfigurationsCommandOutput) => void): void;
|
|
265
289
|
/**
|
|
290
|
+
* @public
|
|
266
291
|
* <p>Return a list of operations that occurred on an App Runner service.</p>
|
|
267
292
|
* <p>The resulting list of <a>OperationSummary</a> objects is sorted in reverse chronological order. The first object on the list represents the
|
|
268
293
|
* last started operation.</p>
|
|
@@ -271,30 +296,35 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
271
296
|
listOperations(args: ListOperationsCommandInput, cb: (err: any, data?: ListOperationsCommandOutput) => void): void;
|
|
272
297
|
listOperations(args: ListOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOperationsCommandOutput) => void): void;
|
|
273
298
|
/**
|
|
299
|
+
* @public
|
|
274
300
|
* <p>Returns a list of running App Runner services in your Amazon Web Services account.</p>
|
|
275
301
|
*/
|
|
276
302
|
listServices(args: ListServicesCommandInput, options?: __HttpHandlerOptions): Promise<ListServicesCommandOutput>;
|
|
277
303
|
listServices(args: ListServicesCommandInput, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
|
|
278
304
|
listServices(args: ListServicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
|
|
279
305
|
/**
|
|
306
|
+
* @public
|
|
280
307
|
* <p>List tags that are associated with for an App Runner resource. The response contains a list of tag key-value pairs.</p>
|
|
281
308
|
*/
|
|
282
309
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
283
310
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
284
311
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
285
312
|
/**
|
|
313
|
+
* @public
|
|
286
314
|
* <p>Returns a list of App Runner VPC connectors in your Amazon Web Services account.</p>
|
|
287
315
|
*/
|
|
288
316
|
listVpcConnectors(args: ListVpcConnectorsCommandInput, options?: __HttpHandlerOptions): Promise<ListVpcConnectorsCommandOutput>;
|
|
289
317
|
listVpcConnectors(args: ListVpcConnectorsCommandInput, cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void): void;
|
|
290
318
|
listVpcConnectors(args: ListVpcConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void): void;
|
|
291
319
|
/**
|
|
320
|
+
* @public
|
|
292
321
|
* <p>Return a list of App Runner VPC Ingress Connections in your Amazon Web Services account.</p>
|
|
293
322
|
*/
|
|
294
323
|
listVpcIngressConnections(args: ListVpcIngressConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<ListVpcIngressConnectionsCommandOutput>;
|
|
295
324
|
listVpcIngressConnections(args: ListVpcIngressConnectionsCommandInput, cb: (err: any, data?: ListVpcIngressConnectionsCommandOutput) => void): void;
|
|
296
325
|
listVpcIngressConnections(args: ListVpcIngressConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVpcIngressConnectionsCommandOutput) => void): void;
|
|
297
326
|
/**
|
|
327
|
+
* @public
|
|
298
328
|
* <p>Pause an active App Runner service. App Runner reduces compute capacity for the service to zero and loses state (for example, ephemeral storage is
|
|
299
329
|
* removed).</p>
|
|
300
330
|
* <p>This is an asynchronous operation. On a successful call, you can use the returned <code>OperationId</code> and the <a>ListOperations</a>
|
|
@@ -304,6 +334,7 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
304
334
|
pauseService(args: PauseServiceCommandInput, cb: (err: any, data?: PauseServiceCommandOutput) => void): void;
|
|
305
335
|
pauseService(args: PauseServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PauseServiceCommandOutput) => void): void;
|
|
306
336
|
/**
|
|
337
|
+
* @public
|
|
307
338
|
* <p>Resume an active App Runner service. App Runner provisions compute capacity for the service.</p>
|
|
308
339
|
* <p>This is an asynchronous operation. On a successful call, you can use the returned <code>OperationId</code> and the <a>ListOperations</a>
|
|
309
340
|
* call to track the operation's progress.</p>
|
|
@@ -312,6 +343,7 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
312
343
|
resumeService(args: ResumeServiceCommandInput, cb: (err: any, data?: ResumeServiceCommandOutput) => void): void;
|
|
313
344
|
resumeService(args: ResumeServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResumeServiceCommandOutput) => void): void;
|
|
314
345
|
/**
|
|
346
|
+
* @public
|
|
315
347
|
* <p>Initiate a manual deployment of the latest commit in a source code repository or the latest image in a source image repository to an App Runner
|
|
316
348
|
* service.</p>
|
|
317
349
|
* <p>For a source code repository, App Runner retrieves the commit and builds a Docker image. For a source image repository, App Runner retrieves the latest Docker
|
|
@@ -323,18 +355,21 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
323
355
|
startDeployment(args: StartDeploymentCommandInput, cb: (err: any, data?: StartDeploymentCommandOutput) => void): void;
|
|
324
356
|
startDeployment(args: StartDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartDeploymentCommandOutput) => void): void;
|
|
325
357
|
/**
|
|
358
|
+
* @public
|
|
326
359
|
* <p>Add tags to, or update the tag values of, an App Runner resource. A tag is a key-value pair.</p>
|
|
327
360
|
*/
|
|
328
361
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
329
362
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
330
363
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
331
364
|
/**
|
|
365
|
+
* @public
|
|
332
366
|
* <p>Remove tags from an App Runner resource.</p>
|
|
333
367
|
*/
|
|
334
368
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
335
369
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
336
370
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
337
371
|
/**
|
|
372
|
+
* @public
|
|
338
373
|
* <p>Update an App Runner service. You can update the source configuration and instance configuration of the service. You can also update the ARN of the auto
|
|
339
374
|
* scaling configuration resource that's associated with the service. However, you can't change the name or the encryption configuration of the service.
|
|
340
375
|
* These can be set only when you create the service.</p>
|
|
@@ -346,6 +381,7 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
346
381
|
updateService(args: UpdateServiceCommandInput, cb: (err: any, data?: UpdateServiceCommandOutput) => void): void;
|
|
347
382
|
updateService(args: UpdateServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServiceCommandOutput) => void): void;
|
|
348
383
|
/**
|
|
384
|
+
* @public
|
|
349
385
|
* <p>Update an existing App Runner VPC Ingress Connection resource. The VPC Ingress Connection must be in one of the following states to be updated:</p>
|
|
350
386
|
* <ul>
|
|
351
387
|
* <li>
|
|
@@ -43,15 +43,24 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
43
43
|
import { UpdateServiceCommandInput, UpdateServiceCommandOutput } from "./commands/UpdateServiceCommand";
|
|
44
44
|
import { UpdateVpcIngressConnectionCommandInput, UpdateVpcIngressConnectionCommandOutput } from "./commands/UpdateVpcIngressConnectionCommand";
|
|
45
45
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
46
49
|
export type ServiceInputTypes = AssociateCustomDomainCommandInput | CreateAutoScalingConfigurationCommandInput | CreateConnectionCommandInput | CreateObservabilityConfigurationCommandInput | CreateServiceCommandInput | CreateVpcConnectorCommandInput | CreateVpcIngressConnectionCommandInput | DeleteAutoScalingConfigurationCommandInput | DeleteConnectionCommandInput | DeleteObservabilityConfigurationCommandInput | DeleteServiceCommandInput | DeleteVpcConnectorCommandInput | DeleteVpcIngressConnectionCommandInput | DescribeAutoScalingConfigurationCommandInput | DescribeCustomDomainsCommandInput | DescribeObservabilityConfigurationCommandInput | DescribeServiceCommandInput | DescribeVpcConnectorCommandInput | DescribeVpcIngressConnectionCommandInput | DisassociateCustomDomainCommandInput | ListAutoScalingConfigurationsCommandInput | ListConnectionsCommandInput | ListObservabilityConfigurationsCommandInput | ListOperationsCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | ListVpcConnectorsCommandInput | ListVpcIngressConnectionsCommandInput | PauseServiceCommandInput | ResumeServiceCommandInput | StartDeploymentCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateServiceCommandInput | UpdateVpcIngressConnectionCommandInput;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
47
53
|
export type ServiceOutputTypes = AssociateCustomDomainCommandOutput | CreateAutoScalingConfigurationCommandOutput | CreateConnectionCommandOutput | CreateObservabilityConfigurationCommandOutput | CreateServiceCommandOutput | CreateVpcConnectorCommandOutput | CreateVpcIngressConnectionCommandOutput | DeleteAutoScalingConfigurationCommandOutput | DeleteConnectionCommandOutput | DeleteObservabilityConfigurationCommandOutput | DeleteServiceCommandOutput | DeleteVpcConnectorCommandOutput | DeleteVpcIngressConnectionCommandOutput | DescribeAutoScalingConfigurationCommandOutput | DescribeCustomDomainsCommandOutput | DescribeObservabilityConfigurationCommandOutput | DescribeServiceCommandOutput | DescribeVpcConnectorCommandOutput | DescribeVpcIngressConnectionCommandOutput | DisassociateCustomDomainCommandOutput | ListAutoScalingConfigurationsCommandOutput | ListConnectionsCommandOutput | ListObservabilityConfigurationsCommandOutput | ListOperationsCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | ListVpcConnectorsCommandOutput | ListVpcIngressConnectionsCommandOutput | PauseServiceCommandOutput | ResumeServiceCommandOutput | StartDeploymentCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateServiceCommandOutput | UpdateVpcIngressConnectionCommandOutput;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
48
57
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
49
58
|
/**
|
|
50
59
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
51
60
|
*/
|
|
52
61
|
requestHandler?: __HttpHandler;
|
|
53
62
|
/**
|
|
54
|
-
* A constructor for a class implementing the {@link
|
|
63
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
55
64
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
56
65
|
* @internal
|
|
57
66
|
*/
|
|
@@ -141,23 +150,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
141
150
|
*/
|
|
142
151
|
logger?: __Logger;
|
|
143
152
|
/**
|
|
144
|
-
* The {@link
|
|
153
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
145
154
|
*/
|
|
146
155
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
147
156
|
}
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
148
160
|
type AppRunnerClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
149
161
|
/**
|
|
150
|
-
*
|
|
162
|
+
* @public
|
|
163
|
+
*
|
|
164
|
+
* The configuration interface of AppRunnerClient class constructor that set the region, credentials and other options.
|
|
151
165
|
*/
|
|
152
166
|
export interface AppRunnerClientConfig extends AppRunnerClientConfigType {
|
|
153
167
|
}
|
|
168
|
+
/**
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
154
171
|
type AppRunnerClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
155
172
|
/**
|
|
156
|
-
*
|
|
173
|
+
* @public
|
|
174
|
+
*
|
|
175
|
+
* The resolved configuration interface of AppRunnerClient class. This is resolved and normalized from the {@link AppRunnerClientConfig | constructor configuration interface}.
|
|
157
176
|
*/
|
|
158
177
|
export interface AppRunnerClientResolvedConfig extends AppRunnerClientResolvedConfigType {
|
|
159
178
|
}
|
|
160
179
|
/**
|
|
180
|
+
* @public
|
|
161
181
|
* <fullname>App Runner</fullname>
|
|
162
182
|
* <p>App Runner is an application service that provides a fast, simple, and cost-effective way to go directly from an existing container image or source code
|
|
163
183
|
* to a running service in the Amazon Web Services Cloud in seconds. You don't need to learn new technologies, decide which compute service to use, or understand how to
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
5
|
import { AssociateCustomDomainRequest, AssociateCustomDomainResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AssociateCustomDomainCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AssociateCustomDomainCommandInput extends AssociateCustomDomainRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AssociateCustomDomainCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AssociateCustomDomainCommandOutput extends AssociateCustomDomainResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Associate your own domain name with the App Runner subdomain URL of your App Runner service.</p>
|
|
18
23
|
* <p>After you call <code>AssociateCustomDomain</code> and receive a successful response, use the information in the <a>CustomDomain</a> record
|
|
19
24
|
* that's returned to add CNAME records to your Domain Name System (DNS). For each mapped domain name, add a mapping to the target App Runner subdomain and one or
|
|
@@ -29,6 +34,8 @@ export interface AssociateCustomDomainCommandOutput extends AssociateCustomDomai
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param AssociateCustomDomainCommandInput - {@link AssociateCustomDomainCommandInput}
|
|
38
|
+
* @returns {@link AssociateCustomDomainCommandOutput}
|
|
32
39
|
* @see {@link AssociateCustomDomainCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link AssociateCustomDomainCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface AssociateCustomDomainCommandOutput extends AssociateCustomDomai
|
|
|
47
54
|
export declare class AssociateCustomDomainCommand extends $Command<AssociateCustomDomainCommandInput, AssociateCustomDomainCommandOutput, AppRunnerClientResolvedConfig> {
|
|
48
55
|
readonly input: AssociateCustomDomainCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: AssociateCustomDomainCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateCustomDomainCommandInput, AssociateCustomDomainCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
5
|
import { CreateAutoScalingConfigurationRequest, CreateAutoScalingConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateAutoScalingConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateAutoScalingConfigurationCommandInput extends CreateAutoScalingConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateAutoScalingConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateAutoScalingConfigurationCommandOutput extends CreateAutoScalingConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Create an App Runner automatic scaling configuration resource. App Runner requires this resource when you create or update App Runner services and you require
|
|
18
23
|
* non-default auto scaling settings. You can share an auto scaling configuration across multiple services.</p>
|
|
19
24
|
* <p>Create multiple revisions of a configuration by calling this action multiple times using the same <code>AutoScalingConfigurationName</code>. The call
|
|
@@ -33,6 +38,8 @@ export interface CreateAutoScalingConfigurationCommandOutput extends CreateAutoS
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param CreateAutoScalingConfigurationCommandInput - {@link CreateAutoScalingConfigurationCommandInput}
|
|
42
|
+
* @returns {@link CreateAutoScalingConfigurationCommandOutput}
|
|
36
43
|
* @see {@link CreateAutoScalingConfigurationCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link CreateAutoScalingConfigurationCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface CreateAutoScalingConfigurationCommandOutput extends CreateAutoS
|
|
|
53
60
|
export declare class CreateAutoScalingConfigurationCommand extends $Command<CreateAutoScalingConfigurationCommandInput, CreateAutoScalingConfigurationCommandOutput, AppRunnerClientResolvedConfig> {
|
|
54
61
|
readonly input: CreateAutoScalingConfigurationCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: CreateAutoScalingConfigurationCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateAutoScalingConfigurationCommandInput, CreateAutoScalingConfigurationCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
5
|
import { CreateConnectionRequest, CreateConnectionResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateConnectionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateConnectionCommandInput extends CreateConnectionRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateConnectionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateConnectionCommandOutput extends CreateConnectionResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Create an App Runner connection resource. App Runner requires a connection resource when you create App Runner services that access private repositories from
|
|
18
23
|
* certain third-party providers. You can share a connection across multiple services.</p>
|
|
19
24
|
* <p>A connection resource is needed to access GitHub repositories. GitHub requires a user interface approval process through the App Runner console before you
|
|
@@ -28,6 +33,8 @@ export interface CreateConnectionCommandOutput extends CreateConnectionResponse,
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param CreateConnectionCommandInput - {@link CreateConnectionCommandInput}
|
|
37
|
+
* @returns {@link CreateConnectionCommandOutput}
|
|
31
38
|
* @see {@link CreateConnectionCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link CreateConnectionCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface CreateConnectionCommandOutput extends CreateConnectionResponse,
|
|
|
48
55
|
export declare class CreateConnectionCommand extends $Command<CreateConnectionCommandInput, CreateConnectionCommandOutput, AppRunnerClientResolvedConfig> {
|
|
49
56
|
readonly input: CreateConnectionCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: CreateConnectionCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateConnectionCommandInput, CreateConnectionCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
5
|
import { CreateObservabilityConfigurationRequest, CreateObservabilityConfigurationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateObservabilityConfigurationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateObservabilityConfigurationCommandInput extends CreateObservabilityConfigurationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateObservabilityConfigurationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateObservabilityConfigurationCommandOutput extends CreateObservabilityConfigurationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Create an App Runner observability configuration resource. App Runner requires this resource when you create or update App Runner services and you want to enable
|
|
18
23
|
* non-default observability features. You can share an observability configuration across multiple services.</p>
|
|
19
24
|
* <p>Create multiple revisions of a configuration by calling this action multiple times using the same <code>ObservabilityConfigurationName</code>. The
|
|
@@ -33,6 +38,8 @@ export interface CreateObservabilityConfigurationCommandOutput extends CreateObs
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param CreateObservabilityConfigurationCommandInput - {@link CreateObservabilityConfigurationCommandInput}
|
|
42
|
+
* @returns {@link CreateObservabilityConfigurationCommandOutput}
|
|
36
43
|
* @see {@link CreateObservabilityConfigurationCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link CreateObservabilityConfigurationCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface CreateObservabilityConfigurationCommandOutput extends CreateObs
|
|
|
53
60
|
export declare class CreateObservabilityConfigurationCommand extends $Command<CreateObservabilityConfigurationCommandInput, CreateObservabilityConfigurationCommandOutput, AppRunnerClientResolvedConfig> {
|
|
54
61
|
readonly input: CreateObservabilityConfigurationCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: CreateObservabilityConfigurationCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateObservabilityConfigurationCommandInput, CreateObservabilityConfigurationCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
5
5
|
import { CreateServiceRequest, CreateServiceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateServiceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateServiceCommandInput extends CreateServiceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateServiceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateServiceCommandOutput extends CreateServiceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Create an App Runner service. After the service is created, the action also automatically starts a deployment.</p>
|
|
18
23
|
* <p>This is an asynchronous operation. On a successful call, you can use the returned <code>OperationId</code> and the <a href="https://docs.aws.amazon.com/apprunner/latest/api/API_ListOperations.html">ListOperations</a> call to track the operation's progress.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateServiceCommandInput - {@link CreateServiceCommandInput}
|
|
35
|
+
* @returns {@link CreateServiceCommandOutput}
|
|
29
36
|
* @see {@link CreateServiceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateServiceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link AppRunnerClientResolvedConfig | config} for AppRunnerClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface CreateServiceCommandOutput extends CreateServiceResponse, __Met
|
|
|
46
53
|
export declare class CreateServiceCommand extends $Command<CreateServiceCommandInput, CreateServiceCommandOutput, AppRunnerClientResolvedConfig> {
|
|
47
54
|
readonly input: CreateServiceCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: CreateServiceCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateServiceCommandInput, CreateServiceCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|