@aws-sdk/client-apprunner 3.169.0 → 3.170.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 (54) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/AppRunner.d.ts +550 -155
  3. package/dist-types/ts3.4/AppRunnerClient.d.ts +309 -103
  4. package/dist-types/ts3.4/commands/AssociateCustomDomainCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/CreateAutoScalingConfigurationCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/CreateObservabilityConfigurationCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/CreateVpcConnectorCommand.d.ts +38 -17
  10. package/dist-types/ts3.4/commands/DeleteAutoScalingConfigurationCommand.d.ts +41 -17
  11. package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/DeleteObservabilityConfigurationCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/DeleteVpcConnectorCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/DescribeAutoScalingConfigurationCommand.d.ts +41 -17
  16. package/dist-types/ts3.4/commands/DescribeCustomDomainsCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/DescribeObservabilityConfigurationCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/DescribeServiceCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/DescribeVpcConnectorCommand.d.ts +41 -17
  20. package/dist-types/ts3.4/commands/DisassociateCustomDomainCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/ListAutoScalingConfigurationsCommand.d.ts +41 -17
  22. package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +37 -17
  23. package/dist-types/ts3.4/commands/ListObservabilityConfigurationsCommand.d.ts +41 -17
  24. package/dist-types/ts3.4/commands/ListOperationsCommand.d.ts +37 -17
  25. package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  27. package/dist-types/ts3.4/commands/ListVpcConnectorsCommand.d.ts +38 -17
  28. package/dist-types/ts3.4/commands/PauseServiceCommand.d.ts +34 -17
  29. package/dist-types/ts3.4/commands/ResumeServiceCommand.d.ts +37 -17
  30. package/dist-types/ts3.4/commands/StartDeploymentCommand.d.ts +37 -17
  31. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  32. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  33. package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +37 -17
  34. package/dist-types/ts3.4/commands/index.d.ts +30 -30
  35. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  36. package/dist-types/ts3.4/index.d.ts +6 -6
  37. package/dist-types/ts3.4/models/AppRunnerServiceException.d.ts +8 -6
  38. package/dist-types/ts3.4/models/index.d.ts +1 -1
  39. package/dist-types/ts3.4/models/models_0.d.ts +1084 -992
  40. package/dist-types/ts3.4/pagination/DescribeCustomDomainsPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  42. package/dist-types/ts3.4/pagination/ListAutoScalingConfigurationsPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListConnectionsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListObservabilityConfigurationsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/ListOperationsPaginator.d.ts +11 -4
  46. package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +11 -4
  47. package/dist-types/ts3.4/pagination/ListVpcConnectorsPaginator.d.ts +11 -4
  48. package/dist-types/ts3.4/pagination/index.d.ts +8 -8
  49. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +365 -92
  50. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  51. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  52. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  53. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  54. package/package.json +34 -34
@@ -1,155 +1,550 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { AppRunnerClient } from "./AppRunnerClient";
3
- import { AssociateCustomDomainCommandInput, AssociateCustomDomainCommandOutput } from "./commands/AssociateCustomDomainCommand";
4
- import { CreateAutoScalingConfigurationCommandInput, CreateAutoScalingConfigurationCommandOutput } from "./commands/CreateAutoScalingConfigurationCommand";
5
- import { CreateConnectionCommandInput, CreateConnectionCommandOutput } from "./commands/CreateConnectionCommand";
6
- import { CreateObservabilityConfigurationCommandInput, CreateObservabilityConfigurationCommandOutput } from "./commands/CreateObservabilityConfigurationCommand";
7
- import { CreateServiceCommandInput, CreateServiceCommandOutput } from "./commands/CreateServiceCommand";
8
- import { CreateVpcConnectorCommandInput, CreateVpcConnectorCommandOutput } from "./commands/CreateVpcConnectorCommand";
9
- import { DeleteAutoScalingConfigurationCommandInput, DeleteAutoScalingConfigurationCommandOutput } from "./commands/DeleteAutoScalingConfigurationCommand";
10
- import { DeleteConnectionCommandInput, DeleteConnectionCommandOutput } from "./commands/DeleteConnectionCommand";
11
- import { DeleteObservabilityConfigurationCommandInput, DeleteObservabilityConfigurationCommandOutput } from "./commands/DeleteObservabilityConfigurationCommand";
12
- import { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "./commands/DeleteServiceCommand";
13
- import { DeleteVpcConnectorCommandInput, DeleteVpcConnectorCommandOutput } from "./commands/DeleteVpcConnectorCommand";
14
- import { DescribeAutoScalingConfigurationCommandInput, DescribeAutoScalingConfigurationCommandOutput } from "./commands/DescribeAutoScalingConfigurationCommand";
15
- import { DescribeCustomDomainsCommandInput, DescribeCustomDomainsCommandOutput } from "./commands/DescribeCustomDomainsCommand";
16
- import { DescribeObservabilityConfigurationCommandInput, DescribeObservabilityConfigurationCommandOutput } from "./commands/DescribeObservabilityConfigurationCommand";
17
- import { DescribeServiceCommandInput, DescribeServiceCommandOutput } from "./commands/DescribeServiceCommand";
18
- import { DescribeVpcConnectorCommandInput, DescribeVpcConnectorCommandOutput } from "./commands/DescribeVpcConnectorCommand";
19
- import { DisassociateCustomDomainCommandInput, DisassociateCustomDomainCommandOutput } from "./commands/DisassociateCustomDomainCommand";
20
- import { ListAutoScalingConfigurationsCommandInput, ListAutoScalingConfigurationsCommandOutput } from "./commands/ListAutoScalingConfigurationsCommand";
21
- import { ListConnectionsCommandInput, ListConnectionsCommandOutput } from "./commands/ListConnectionsCommand";
22
- import { ListObservabilityConfigurationsCommandInput, ListObservabilityConfigurationsCommandOutput } from "./commands/ListObservabilityConfigurationsCommand";
23
- import { ListOperationsCommandInput, ListOperationsCommandOutput } from "./commands/ListOperationsCommand";
24
- import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
25
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
26
- import { ListVpcConnectorsCommandInput, ListVpcConnectorsCommandOutput } from "./commands/ListVpcConnectorsCommand";
27
- import { PauseServiceCommandInput, PauseServiceCommandOutput } from "./commands/PauseServiceCommand";
28
- import { ResumeServiceCommandInput, ResumeServiceCommandOutput } from "./commands/ResumeServiceCommand";
29
- import { StartDeploymentCommandInput, StartDeploymentCommandOutput } from "./commands/StartDeploymentCommand";
30
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
31
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
32
- import { UpdateServiceCommandInput, UpdateServiceCommandOutput } from "./commands/UpdateServiceCommand";
33
-
34
- export declare class AppRunner extends AppRunnerClient {
35
-
36
- associateCustomDomain(args: AssociateCustomDomainCommandInput, options?: __HttpHandlerOptions): Promise<AssociateCustomDomainCommandOutput>;
37
- associateCustomDomain(args: AssociateCustomDomainCommandInput, cb: (err: any, data?: AssociateCustomDomainCommandOutput) => void): void;
38
- associateCustomDomain(args: AssociateCustomDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateCustomDomainCommandOutput) => void): void;
39
-
40
- createAutoScalingConfiguration(args: CreateAutoScalingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateAutoScalingConfigurationCommandOutput>;
41
- createAutoScalingConfiguration(args: CreateAutoScalingConfigurationCommandInput, cb: (err: any, data?: CreateAutoScalingConfigurationCommandOutput) => void): void;
42
- createAutoScalingConfiguration(args: CreateAutoScalingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateAutoScalingConfigurationCommandOutput) => void): void;
43
-
44
- createConnection(args: CreateConnectionCommandInput, options?: __HttpHandlerOptions): Promise<CreateConnectionCommandOutput>;
45
- createConnection(args: CreateConnectionCommandInput, cb: (err: any, data?: CreateConnectionCommandOutput) => void): void;
46
- createConnection(args: CreateConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConnectionCommandOutput) => void): void;
47
-
48
- createObservabilityConfiguration(args: CreateObservabilityConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateObservabilityConfigurationCommandOutput>;
49
- createObservabilityConfiguration(args: CreateObservabilityConfigurationCommandInput, cb: (err: any, data?: CreateObservabilityConfigurationCommandOutput) => void): void;
50
- createObservabilityConfiguration(args: CreateObservabilityConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateObservabilityConfigurationCommandOutput) => void): void;
51
-
52
- createService(args: CreateServiceCommandInput, options?: __HttpHandlerOptions): Promise<CreateServiceCommandOutput>;
53
- createService(args: CreateServiceCommandInput, cb: (err: any, data?: CreateServiceCommandOutput) => void): void;
54
- createService(args: CreateServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateServiceCommandOutput) => void): void;
55
-
56
- createVpcConnector(args: CreateVpcConnectorCommandInput, options?: __HttpHandlerOptions): Promise<CreateVpcConnectorCommandOutput>;
57
- createVpcConnector(args: CreateVpcConnectorCommandInput, cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void): void;
58
- createVpcConnector(args: CreateVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void): void;
59
-
60
- deleteAutoScalingConfiguration(args: DeleteAutoScalingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAutoScalingConfigurationCommandOutput>;
61
- deleteAutoScalingConfiguration(args: DeleteAutoScalingConfigurationCommandInput, cb: (err: any, data?: DeleteAutoScalingConfigurationCommandOutput) => void): void;
62
- deleteAutoScalingConfiguration(args: DeleteAutoScalingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAutoScalingConfigurationCommandOutput) => void): void;
63
-
64
- deleteConnection(args: DeleteConnectionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConnectionCommandOutput>;
65
- deleteConnection(args: DeleteConnectionCommandInput, cb: (err: any, data?: DeleteConnectionCommandOutput) => void): void;
66
- deleteConnection(args: DeleteConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectionCommandOutput) => void): void;
67
-
68
- deleteObservabilityConfiguration(args: DeleteObservabilityConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteObservabilityConfigurationCommandOutput>;
69
- deleteObservabilityConfiguration(args: DeleteObservabilityConfigurationCommandInput, cb: (err: any, data?: DeleteObservabilityConfigurationCommandOutput) => void): void;
70
- deleteObservabilityConfiguration(args: DeleteObservabilityConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteObservabilityConfigurationCommandOutput) => void): void;
71
-
72
- deleteService(args: DeleteServiceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServiceCommandOutput>;
73
- deleteService(args: DeleteServiceCommandInput, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
74
- deleteService(args: DeleteServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
75
-
76
- deleteVpcConnector(args: DeleteVpcConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVpcConnectorCommandOutput>;
77
- deleteVpcConnector(args: DeleteVpcConnectorCommandInput, cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void): void;
78
- deleteVpcConnector(args: DeleteVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void): void;
79
-
80
- describeAutoScalingConfiguration(args: DescribeAutoScalingConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeAutoScalingConfigurationCommandOutput>;
81
- describeAutoScalingConfiguration(args: DescribeAutoScalingConfigurationCommandInput, cb: (err: any, data?: DescribeAutoScalingConfigurationCommandOutput) => void): void;
82
- describeAutoScalingConfiguration(args: DescribeAutoScalingConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAutoScalingConfigurationCommandOutput) => void): void;
83
-
84
- describeCustomDomains(args: DescribeCustomDomainsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeCustomDomainsCommandOutput>;
85
- describeCustomDomains(args: DescribeCustomDomainsCommandInput, cb: (err: any, data?: DescribeCustomDomainsCommandOutput) => void): void;
86
- describeCustomDomains(args: DescribeCustomDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCustomDomainsCommandOutput) => void): void;
87
-
88
- describeObservabilityConfiguration(args: DescribeObservabilityConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeObservabilityConfigurationCommandOutput>;
89
- describeObservabilityConfiguration(args: DescribeObservabilityConfigurationCommandInput, cb: (err: any, data?: DescribeObservabilityConfigurationCommandOutput) => void): void;
90
- describeObservabilityConfiguration(args: DescribeObservabilityConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeObservabilityConfigurationCommandOutput) => void): void;
91
-
92
- describeService(args: DescribeServiceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeServiceCommandOutput>;
93
- describeService(args: DescribeServiceCommandInput, cb: (err: any, data?: DescribeServiceCommandOutput) => void): void;
94
- describeService(args: DescribeServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeServiceCommandOutput) => void): void;
95
-
96
- describeVpcConnector(args: DescribeVpcConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DescribeVpcConnectorCommandOutput>;
97
- describeVpcConnector(args: DescribeVpcConnectorCommandInput, cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void): void;
98
- describeVpcConnector(args: DescribeVpcConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void): void;
99
-
100
- disassociateCustomDomain(args: DisassociateCustomDomainCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateCustomDomainCommandOutput>;
101
- disassociateCustomDomain(args: DisassociateCustomDomainCommandInput, cb: (err: any, data?: DisassociateCustomDomainCommandOutput) => void): void;
102
- disassociateCustomDomain(args: DisassociateCustomDomainCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateCustomDomainCommandOutput) => void): void;
103
-
104
- listAutoScalingConfigurations(args: ListAutoScalingConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListAutoScalingConfigurationsCommandOutput>;
105
- listAutoScalingConfigurations(args: ListAutoScalingConfigurationsCommandInput, cb: (err: any, data?: ListAutoScalingConfigurationsCommandOutput) => void): void;
106
- listAutoScalingConfigurations(args: ListAutoScalingConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAutoScalingConfigurationsCommandOutput) => void): void;
107
-
108
- listConnections(args: ListConnectionsCommandInput, options?: __HttpHandlerOptions): Promise<ListConnectionsCommandOutput>;
109
- listConnections(args: ListConnectionsCommandInput, cb: (err: any, data?: ListConnectionsCommandOutput) => void): void;
110
- listConnections(args: ListConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectionsCommandOutput) => void): void;
111
-
112
- listObservabilityConfigurations(args: ListObservabilityConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListObservabilityConfigurationsCommandOutput>;
113
- listObservabilityConfigurations(args: ListObservabilityConfigurationsCommandInput, cb: (err: any, data?: ListObservabilityConfigurationsCommandOutput) => void): void;
114
- listObservabilityConfigurations(args: ListObservabilityConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListObservabilityConfigurationsCommandOutput) => void): void;
115
-
116
- listOperations(args: ListOperationsCommandInput, options?: __HttpHandlerOptions): Promise<ListOperationsCommandOutput>;
117
- listOperations(args: ListOperationsCommandInput, cb: (err: any, data?: ListOperationsCommandOutput) => void): void;
118
- listOperations(args: ListOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOperationsCommandOutput) => void): void;
119
-
120
- listServices(args: ListServicesCommandInput, options?: __HttpHandlerOptions): Promise<ListServicesCommandOutput>;
121
- listServices(args: ListServicesCommandInput, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
122
- listServices(args: ListServicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListServicesCommandOutput) => void): void;
123
-
124
- listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
125
- listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
126
- listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
127
-
128
- listVpcConnectors(args: ListVpcConnectorsCommandInput, options?: __HttpHandlerOptions): Promise<ListVpcConnectorsCommandOutput>;
129
- listVpcConnectors(args: ListVpcConnectorsCommandInput, cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void): void;
130
- listVpcConnectors(args: ListVpcConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void): void;
131
-
132
- pauseService(args: PauseServiceCommandInput, options?: __HttpHandlerOptions): Promise<PauseServiceCommandOutput>;
133
- pauseService(args: PauseServiceCommandInput, cb: (err: any, data?: PauseServiceCommandOutput) => void): void;
134
- pauseService(args: PauseServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PauseServiceCommandOutput) => void): void;
135
-
136
- resumeService(args: ResumeServiceCommandInput, options?: __HttpHandlerOptions): Promise<ResumeServiceCommandOutput>;
137
- resumeService(args: ResumeServiceCommandInput, cb: (err: any, data?: ResumeServiceCommandOutput) => void): void;
138
- resumeService(args: ResumeServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResumeServiceCommandOutput) => void): void;
139
-
140
- startDeployment(args: StartDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<StartDeploymentCommandOutput>;
141
- startDeployment(args: StartDeploymentCommandInput, cb: (err: any, data?: StartDeploymentCommandOutput) => void): void;
142
- startDeployment(args: StartDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartDeploymentCommandOutput) => void): void;
143
-
144
- tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
145
- tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
146
- tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
147
-
148
- untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
149
- untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
150
- untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
151
-
152
- updateService(args: UpdateServiceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateServiceCommandOutput>;
153
- updateService(args: UpdateServiceCommandInput, cb: (err: any, data?: UpdateServiceCommandOutput) => void): void;
154
- updateService(args: UpdateServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServiceCommandOutput) => void): void;
155
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { AppRunnerClient } from "./AppRunnerClient";
3
+ import {
4
+ AssociateCustomDomainCommandInput,
5
+ AssociateCustomDomainCommandOutput,
6
+ } from "./commands/AssociateCustomDomainCommand";
7
+ import {
8
+ CreateAutoScalingConfigurationCommandInput,
9
+ CreateAutoScalingConfigurationCommandOutput,
10
+ } from "./commands/CreateAutoScalingConfigurationCommand";
11
+ import {
12
+ CreateConnectionCommandInput,
13
+ CreateConnectionCommandOutput,
14
+ } from "./commands/CreateConnectionCommand";
15
+ import {
16
+ CreateObservabilityConfigurationCommandInput,
17
+ CreateObservabilityConfigurationCommandOutput,
18
+ } from "./commands/CreateObservabilityConfigurationCommand";
19
+ import {
20
+ CreateServiceCommandInput,
21
+ CreateServiceCommandOutput,
22
+ } from "./commands/CreateServiceCommand";
23
+ import {
24
+ CreateVpcConnectorCommandInput,
25
+ CreateVpcConnectorCommandOutput,
26
+ } from "./commands/CreateVpcConnectorCommand";
27
+ import {
28
+ DeleteAutoScalingConfigurationCommandInput,
29
+ DeleteAutoScalingConfigurationCommandOutput,
30
+ } from "./commands/DeleteAutoScalingConfigurationCommand";
31
+ import {
32
+ DeleteConnectionCommandInput,
33
+ DeleteConnectionCommandOutput,
34
+ } from "./commands/DeleteConnectionCommand";
35
+ import {
36
+ DeleteObservabilityConfigurationCommandInput,
37
+ DeleteObservabilityConfigurationCommandOutput,
38
+ } from "./commands/DeleteObservabilityConfigurationCommand";
39
+ import {
40
+ DeleteServiceCommandInput,
41
+ DeleteServiceCommandOutput,
42
+ } from "./commands/DeleteServiceCommand";
43
+ import {
44
+ DeleteVpcConnectorCommandInput,
45
+ DeleteVpcConnectorCommandOutput,
46
+ } from "./commands/DeleteVpcConnectorCommand";
47
+ import {
48
+ DescribeAutoScalingConfigurationCommandInput,
49
+ DescribeAutoScalingConfigurationCommandOutput,
50
+ } from "./commands/DescribeAutoScalingConfigurationCommand";
51
+ import {
52
+ DescribeCustomDomainsCommandInput,
53
+ DescribeCustomDomainsCommandOutput,
54
+ } from "./commands/DescribeCustomDomainsCommand";
55
+ import {
56
+ DescribeObservabilityConfigurationCommandInput,
57
+ DescribeObservabilityConfigurationCommandOutput,
58
+ } from "./commands/DescribeObservabilityConfigurationCommand";
59
+ import {
60
+ DescribeServiceCommandInput,
61
+ DescribeServiceCommandOutput,
62
+ } from "./commands/DescribeServiceCommand";
63
+ import {
64
+ DescribeVpcConnectorCommandInput,
65
+ DescribeVpcConnectorCommandOutput,
66
+ } from "./commands/DescribeVpcConnectorCommand";
67
+ import {
68
+ DisassociateCustomDomainCommandInput,
69
+ DisassociateCustomDomainCommandOutput,
70
+ } from "./commands/DisassociateCustomDomainCommand";
71
+ import {
72
+ ListAutoScalingConfigurationsCommandInput,
73
+ ListAutoScalingConfigurationsCommandOutput,
74
+ } from "./commands/ListAutoScalingConfigurationsCommand";
75
+ import {
76
+ ListConnectionsCommandInput,
77
+ ListConnectionsCommandOutput,
78
+ } from "./commands/ListConnectionsCommand";
79
+ import {
80
+ ListObservabilityConfigurationsCommandInput,
81
+ ListObservabilityConfigurationsCommandOutput,
82
+ } from "./commands/ListObservabilityConfigurationsCommand";
83
+ import {
84
+ ListOperationsCommandInput,
85
+ ListOperationsCommandOutput,
86
+ } from "./commands/ListOperationsCommand";
87
+ import {
88
+ ListServicesCommandInput,
89
+ ListServicesCommandOutput,
90
+ } from "./commands/ListServicesCommand";
91
+ import {
92
+ ListTagsForResourceCommandInput,
93
+ ListTagsForResourceCommandOutput,
94
+ } from "./commands/ListTagsForResourceCommand";
95
+ import {
96
+ ListVpcConnectorsCommandInput,
97
+ ListVpcConnectorsCommandOutput,
98
+ } from "./commands/ListVpcConnectorsCommand";
99
+ import {
100
+ PauseServiceCommandInput,
101
+ PauseServiceCommandOutput,
102
+ } from "./commands/PauseServiceCommand";
103
+ import {
104
+ ResumeServiceCommandInput,
105
+ ResumeServiceCommandOutput,
106
+ } from "./commands/ResumeServiceCommand";
107
+ import {
108
+ StartDeploymentCommandInput,
109
+ StartDeploymentCommandOutput,
110
+ } from "./commands/StartDeploymentCommand";
111
+ import {
112
+ TagResourceCommandInput,
113
+ TagResourceCommandOutput,
114
+ } from "./commands/TagResourceCommand";
115
+ import {
116
+ UntagResourceCommandInput,
117
+ UntagResourceCommandOutput,
118
+ } from "./commands/UntagResourceCommand";
119
+ import {
120
+ UpdateServiceCommandInput,
121
+ UpdateServiceCommandOutput,
122
+ } from "./commands/UpdateServiceCommand";
123
+
124
+ export declare class AppRunner extends AppRunnerClient {
125
+ associateCustomDomain(
126
+ args: AssociateCustomDomainCommandInput,
127
+ options?: __HttpHandlerOptions
128
+ ): Promise<AssociateCustomDomainCommandOutput>;
129
+ associateCustomDomain(
130
+ args: AssociateCustomDomainCommandInput,
131
+ cb: (err: any, data?: AssociateCustomDomainCommandOutput) => void
132
+ ): void;
133
+ associateCustomDomain(
134
+ args: AssociateCustomDomainCommandInput,
135
+ options: __HttpHandlerOptions,
136
+ cb: (err: any, data?: AssociateCustomDomainCommandOutput) => void
137
+ ): void;
138
+
139
+ createAutoScalingConfiguration(
140
+ args: CreateAutoScalingConfigurationCommandInput,
141
+ options?: __HttpHandlerOptions
142
+ ): Promise<CreateAutoScalingConfigurationCommandOutput>;
143
+ createAutoScalingConfiguration(
144
+ args: CreateAutoScalingConfigurationCommandInput,
145
+ cb: (err: any, data?: CreateAutoScalingConfigurationCommandOutput) => void
146
+ ): void;
147
+ createAutoScalingConfiguration(
148
+ args: CreateAutoScalingConfigurationCommandInput,
149
+ options: __HttpHandlerOptions,
150
+ cb: (err: any, data?: CreateAutoScalingConfigurationCommandOutput) => void
151
+ ): void;
152
+
153
+ createConnection(
154
+ args: CreateConnectionCommandInput,
155
+ options?: __HttpHandlerOptions
156
+ ): Promise<CreateConnectionCommandOutput>;
157
+ createConnection(
158
+ args: CreateConnectionCommandInput,
159
+ cb: (err: any, data?: CreateConnectionCommandOutput) => void
160
+ ): void;
161
+ createConnection(
162
+ args: CreateConnectionCommandInput,
163
+ options: __HttpHandlerOptions,
164
+ cb: (err: any, data?: CreateConnectionCommandOutput) => void
165
+ ): void;
166
+
167
+ createObservabilityConfiguration(
168
+ args: CreateObservabilityConfigurationCommandInput,
169
+ options?: __HttpHandlerOptions
170
+ ): Promise<CreateObservabilityConfigurationCommandOutput>;
171
+ createObservabilityConfiguration(
172
+ args: CreateObservabilityConfigurationCommandInput,
173
+ cb: (err: any, data?: CreateObservabilityConfigurationCommandOutput) => void
174
+ ): void;
175
+ createObservabilityConfiguration(
176
+ args: CreateObservabilityConfigurationCommandInput,
177
+ options: __HttpHandlerOptions,
178
+ cb: (err: any, data?: CreateObservabilityConfigurationCommandOutput) => void
179
+ ): void;
180
+
181
+ createService(
182
+ args: CreateServiceCommandInput,
183
+ options?: __HttpHandlerOptions
184
+ ): Promise<CreateServiceCommandOutput>;
185
+ createService(
186
+ args: CreateServiceCommandInput,
187
+ cb: (err: any, data?: CreateServiceCommandOutput) => void
188
+ ): void;
189
+ createService(
190
+ args: CreateServiceCommandInput,
191
+ options: __HttpHandlerOptions,
192
+ cb: (err: any, data?: CreateServiceCommandOutput) => void
193
+ ): void;
194
+
195
+ createVpcConnector(
196
+ args: CreateVpcConnectorCommandInput,
197
+ options?: __HttpHandlerOptions
198
+ ): Promise<CreateVpcConnectorCommandOutput>;
199
+ createVpcConnector(
200
+ args: CreateVpcConnectorCommandInput,
201
+ cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void
202
+ ): void;
203
+ createVpcConnector(
204
+ args: CreateVpcConnectorCommandInput,
205
+ options: __HttpHandlerOptions,
206
+ cb: (err: any, data?: CreateVpcConnectorCommandOutput) => void
207
+ ): void;
208
+
209
+ deleteAutoScalingConfiguration(
210
+ args: DeleteAutoScalingConfigurationCommandInput,
211
+ options?: __HttpHandlerOptions
212
+ ): Promise<DeleteAutoScalingConfigurationCommandOutput>;
213
+ deleteAutoScalingConfiguration(
214
+ args: DeleteAutoScalingConfigurationCommandInput,
215
+ cb: (err: any, data?: DeleteAutoScalingConfigurationCommandOutput) => void
216
+ ): void;
217
+ deleteAutoScalingConfiguration(
218
+ args: DeleteAutoScalingConfigurationCommandInput,
219
+ options: __HttpHandlerOptions,
220
+ cb: (err: any, data?: DeleteAutoScalingConfigurationCommandOutput) => void
221
+ ): void;
222
+
223
+ deleteConnection(
224
+ args: DeleteConnectionCommandInput,
225
+ options?: __HttpHandlerOptions
226
+ ): Promise<DeleteConnectionCommandOutput>;
227
+ deleteConnection(
228
+ args: DeleteConnectionCommandInput,
229
+ cb: (err: any, data?: DeleteConnectionCommandOutput) => void
230
+ ): void;
231
+ deleteConnection(
232
+ args: DeleteConnectionCommandInput,
233
+ options: __HttpHandlerOptions,
234
+ cb: (err: any, data?: DeleteConnectionCommandOutput) => void
235
+ ): void;
236
+
237
+ deleteObservabilityConfiguration(
238
+ args: DeleteObservabilityConfigurationCommandInput,
239
+ options?: __HttpHandlerOptions
240
+ ): Promise<DeleteObservabilityConfigurationCommandOutput>;
241
+ deleteObservabilityConfiguration(
242
+ args: DeleteObservabilityConfigurationCommandInput,
243
+ cb: (err: any, data?: DeleteObservabilityConfigurationCommandOutput) => void
244
+ ): void;
245
+ deleteObservabilityConfiguration(
246
+ args: DeleteObservabilityConfigurationCommandInput,
247
+ options: __HttpHandlerOptions,
248
+ cb: (err: any, data?: DeleteObservabilityConfigurationCommandOutput) => void
249
+ ): void;
250
+
251
+ deleteService(
252
+ args: DeleteServiceCommandInput,
253
+ options?: __HttpHandlerOptions
254
+ ): Promise<DeleteServiceCommandOutput>;
255
+ deleteService(
256
+ args: DeleteServiceCommandInput,
257
+ cb: (err: any, data?: DeleteServiceCommandOutput) => void
258
+ ): void;
259
+ deleteService(
260
+ args: DeleteServiceCommandInput,
261
+ options: __HttpHandlerOptions,
262
+ cb: (err: any, data?: DeleteServiceCommandOutput) => void
263
+ ): void;
264
+
265
+ deleteVpcConnector(
266
+ args: DeleteVpcConnectorCommandInput,
267
+ options?: __HttpHandlerOptions
268
+ ): Promise<DeleteVpcConnectorCommandOutput>;
269
+ deleteVpcConnector(
270
+ args: DeleteVpcConnectorCommandInput,
271
+ cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void
272
+ ): void;
273
+ deleteVpcConnector(
274
+ args: DeleteVpcConnectorCommandInput,
275
+ options: __HttpHandlerOptions,
276
+ cb: (err: any, data?: DeleteVpcConnectorCommandOutput) => void
277
+ ): void;
278
+
279
+ describeAutoScalingConfiguration(
280
+ args: DescribeAutoScalingConfigurationCommandInput,
281
+ options?: __HttpHandlerOptions
282
+ ): Promise<DescribeAutoScalingConfigurationCommandOutput>;
283
+ describeAutoScalingConfiguration(
284
+ args: DescribeAutoScalingConfigurationCommandInput,
285
+ cb: (err: any, data?: DescribeAutoScalingConfigurationCommandOutput) => void
286
+ ): void;
287
+ describeAutoScalingConfiguration(
288
+ args: DescribeAutoScalingConfigurationCommandInput,
289
+ options: __HttpHandlerOptions,
290
+ cb: (err: any, data?: DescribeAutoScalingConfigurationCommandOutput) => void
291
+ ): void;
292
+
293
+ describeCustomDomains(
294
+ args: DescribeCustomDomainsCommandInput,
295
+ options?: __HttpHandlerOptions
296
+ ): Promise<DescribeCustomDomainsCommandOutput>;
297
+ describeCustomDomains(
298
+ args: DescribeCustomDomainsCommandInput,
299
+ cb: (err: any, data?: DescribeCustomDomainsCommandOutput) => void
300
+ ): void;
301
+ describeCustomDomains(
302
+ args: DescribeCustomDomainsCommandInput,
303
+ options: __HttpHandlerOptions,
304
+ cb: (err: any, data?: DescribeCustomDomainsCommandOutput) => void
305
+ ): void;
306
+
307
+ describeObservabilityConfiguration(
308
+ args: DescribeObservabilityConfigurationCommandInput,
309
+ options?: __HttpHandlerOptions
310
+ ): Promise<DescribeObservabilityConfigurationCommandOutput>;
311
+ describeObservabilityConfiguration(
312
+ args: DescribeObservabilityConfigurationCommandInput,
313
+ cb: (
314
+ err: any,
315
+ data?: DescribeObservabilityConfigurationCommandOutput
316
+ ) => void
317
+ ): void;
318
+ describeObservabilityConfiguration(
319
+ args: DescribeObservabilityConfigurationCommandInput,
320
+ options: __HttpHandlerOptions,
321
+ cb: (
322
+ err: any,
323
+ data?: DescribeObservabilityConfigurationCommandOutput
324
+ ) => void
325
+ ): void;
326
+
327
+ describeService(
328
+ args: DescribeServiceCommandInput,
329
+ options?: __HttpHandlerOptions
330
+ ): Promise<DescribeServiceCommandOutput>;
331
+ describeService(
332
+ args: DescribeServiceCommandInput,
333
+ cb: (err: any, data?: DescribeServiceCommandOutput) => void
334
+ ): void;
335
+ describeService(
336
+ args: DescribeServiceCommandInput,
337
+ options: __HttpHandlerOptions,
338
+ cb: (err: any, data?: DescribeServiceCommandOutput) => void
339
+ ): void;
340
+
341
+ describeVpcConnector(
342
+ args: DescribeVpcConnectorCommandInput,
343
+ options?: __HttpHandlerOptions
344
+ ): Promise<DescribeVpcConnectorCommandOutput>;
345
+ describeVpcConnector(
346
+ args: DescribeVpcConnectorCommandInput,
347
+ cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void
348
+ ): void;
349
+ describeVpcConnector(
350
+ args: DescribeVpcConnectorCommandInput,
351
+ options: __HttpHandlerOptions,
352
+ cb: (err: any, data?: DescribeVpcConnectorCommandOutput) => void
353
+ ): void;
354
+
355
+ disassociateCustomDomain(
356
+ args: DisassociateCustomDomainCommandInput,
357
+ options?: __HttpHandlerOptions
358
+ ): Promise<DisassociateCustomDomainCommandOutput>;
359
+ disassociateCustomDomain(
360
+ args: DisassociateCustomDomainCommandInput,
361
+ cb: (err: any, data?: DisassociateCustomDomainCommandOutput) => void
362
+ ): void;
363
+ disassociateCustomDomain(
364
+ args: DisassociateCustomDomainCommandInput,
365
+ options: __HttpHandlerOptions,
366
+ cb: (err: any, data?: DisassociateCustomDomainCommandOutput) => void
367
+ ): void;
368
+
369
+ listAutoScalingConfigurations(
370
+ args: ListAutoScalingConfigurationsCommandInput,
371
+ options?: __HttpHandlerOptions
372
+ ): Promise<ListAutoScalingConfigurationsCommandOutput>;
373
+ listAutoScalingConfigurations(
374
+ args: ListAutoScalingConfigurationsCommandInput,
375
+ cb: (err: any, data?: ListAutoScalingConfigurationsCommandOutput) => void
376
+ ): void;
377
+ listAutoScalingConfigurations(
378
+ args: ListAutoScalingConfigurationsCommandInput,
379
+ options: __HttpHandlerOptions,
380
+ cb: (err: any, data?: ListAutoScalingConfigurationsCommandOutput) => void
381
+ ): void;
382
+
383
+ listConnections(
384
+ args: ListConnectionsCommandInput,
385
+ options?: __HttpHandlerOptions
386
+ ): Promise<ListConnectionsCommandOutput>;
387
+ listConnections(
388
+ args: ListConnectionsCommandInput,
389
+ cb: (err: any, data?: ListConnectionsCommandOutput) => void
390
+ ): void;
391
+ listConnections(
392
+ args: ListConnectionsCommandInput,
393
+ options: __HttpHandlerOptions,
394
+ cb: (err: any, data?: ListConnectionsCommandOutput) => void
395
+ ): void;
396
+
397
+ listObservabilityConfigurations(
398
+ args: ListObservabilityConfigurationsCommandInput,
399
+ options?: __HttpHandlerOptions
400
+ ): Promise<ListObservabilityConfigurationsCommandOutput>;
401
+ listObservabilityConfigurations(
402
+ args: ListObservabilityConfigurationsCommandInput,
403
+ cb: (err: any, data?: ListObservabilityConfigurationsCommandOutput) => void
404
+ ): void;
405
+ listObservabilityConfigurations(
406
+ args: ListObservabilityConfigurationsCommandInput,
407
+ options: __HttpHandlerOptions,
408
+ cb: (err: any, data?: ListObservabilityConfigurationsCommandOutput) => void
409
+ ): void;
410
+
411
+ listOperations(
412
+ args: ListOperationsCommandInput,
413
+ options?: __HttpHandlerOptions
414
+ ): Promise<ListOperationsCommandOutput>;
415
+ listOperations(
416
+ args: ListOperationsCommandInput,
417
+ cb: (err: any, data?: ListOperationsCommandOutput) => void
418
+ ): void;
419
+ listOperations(
420
+ args: ListOperationsCommandInput,
421
+ options: __HttpHandlerOptions,
422
+ cb: (err: any, data?: ListOperationsCommandOutput) => void
423
+ ): void;
424
+
425
+ listServices(
426
+ args: ListServicesCommandInput,
427
+ options?: __HttpHandlerOptions
428
+ ): Promise<ListServicesCommandOutput>;
429
+ listServices(
430
+ args: ListServicesCommandInput,
431
+ cb: (err: any, data?: ListServicesCommandOutput) => void
432
+ ): void;
433
+ listServices(
434
+ args: ListServicesCommandInput,
435
+ options: __HttpHandlerOptions,
436
+ cb: (err: any, data?: ListServicesCommandOutput) => void
437
+ ): void;
438
+
439
+ listTagsForResource(
440
+ args: ListTagsForResourceCommandInput,
441
+ options?: __HttpHandlerOptions
442
+ ): Promise<ListTagsForResourceCommandOutput>;
443
+ listTagsForResource(
444
+ args: ListTagsForResourceCommandInput,
445
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
446
+ ): void;
447
+ listTagsForResource(
448
+ args: ListTagsForResourceCommandInput,
449
+ options: __HttpHandlerOptions,
450
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
451
+ ): void;
452
+
453
+ listVpcConnectors(
454
+ args: ListVpcConnectorsCommandInput,
455
+ options?: __HttpHandlerOptions
456
+ ): Promise<ListVpcConnectorsCommandOutput>;
457
+ listVpcConnectors(
458
+ args: ListVpcConnectorsCommandInput,
459
+ cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void
460
+ ): void;
461
+ listVpcConnectors(
462
+ args: ListVpcConnectorsCommandInput,
463
+ options: __HttpHandlerOptions,
464
+ cb: (err: any, data?: ListVpcConnectorsCommandOutput) => void
465
+ ): void;
466
+
467
+ pauseService(
468
+ args: PauseServiceCommandInput,
469
+ options?: __HttpHandlerOptions
470
+ ): Promise<PauseServiceCommandOutput>;
471
+ pauseService(
472
+ args: PauseServiceCommandInput,
473
+ cb: (err: any, data?: PauseServiceCommandOutput) => void
474
+ ): void;
475
+ pauseService(
476
+ args: PauseServiceCommandInput,
477
+ options: __HttpHandlerOptions,
478
+ cb: (err: any, data?: PauseServiceCommandOutput) => void
479
+ ): void;
480
+
481
+ resumeService(
482
+ args: ResumeServiceCommandInput,
483
+ options?: __HttpHandlerOptions
484
+ ): Promise<ResumeServiceCommandOutput>;
485
+ resumeService(
486
+ args: ResumeServiceCommandInput,
487
+ cb: (err: any, data?: ResumeServiceCommandOutput) => void
488
+ ): void;
489
+ resumeService(
490
+ args: ResumeServiceCommandInput,
491
+ options: __HttpHandlerOptions,
492
+ cb: (err: any, data?: ResumeServiceCommandOutput) => void
493
+ ): void;
494
+
495
+ startDeployment(
496
+ args: StartDeploymentCommandInput,
497
+ options?: __HttpHandlerOptions
498
+ ): Promise<StartDeploymentCommandOutput>;
499
+ startDeployment(
500
+ args: StartDeploymentCommandInput,
501
+ cb: (err: any, data?: StartDeploymentCommandOutput) => void
502
+ ): void;
503
+ startDeployment(
504
+ args: StartDeploymentCommandInput,
505
+ options: __HttpHandlerOptions,
506
+ cb: (err: any, data?: StartDeploymentCommandOutput) => void
507
+ ): void;
508
+
509
+ tagResource(
510
+ args: TagResourceCommandInput,
511
+ options?: __HttpHandlerOptions
512
+ ): Promise<TagResourceCommandOutput>;
513
+ tagResource(
514
+ args: TagResourceCommandInput,
515
+ cb: (err: any, data?: TagResourceCommandOutput) => void
516
+ ): void;
517
+ tagResource(
518
+ args: TagResourceCommandInput,
519
+ options: __HttpHandlerOptions,
520
+ cb: (err: any, data?: TagResourceCommandOutput) => void
521
+ ): void;
522
+
523
+ untagResource(
524
+ args: UntagResourceCommandInput,
525
+ options?: __HttpHandlerOptions
526
+ ): Promise<UntagResourceCommandOutput>;
527
+ untagResource(
528
+ args: UntagResourceCommandInput,
529
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
530
+ ): void;
531
+ untagResource(
532
+ args: UntagResourceCommandInput,
533
+ options: __HttpHandlerOptions,
534
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
535
+ ): void;
536
+
537
+ updateService(
538
+ args: UpdateServiceCommandInput,
539
+ options?: __HttpHandlerOptions
540
+ ): Promise<UpdateServiceCommandOutput>;
541
+ updateService(
542
+ args: UpdateServiceCommandInput,
543
+ cb: (err: any, data?: UpdateServiceCommandOutput) => void
544
+ ): void;
545
+ updateService(
546
+ args: UpdateServiceCommandInput,
547
+ options: __HttpHandlerOptions,
548
+ cb: (err: any, data?: UpdateServiceCommandOutput) => void
549
+ ): void;
550
+ }