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