@aws-sdk/client-apprunner 3.168.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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/AppRunner.d.ts +550 -155
- package/dist-types/ts3.4/AppRunnerClient.d.ts +309 -103
- package/dist-types/ts3.4/commands/AssociateCustomDomainCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateAutoScalingConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateObservabilityConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateServiceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateVpcConnectorCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteAutoScalingConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteObservabilityConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteServiceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteVpcConnectorCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeAutoScalingConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeCustomDomainsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeObservabilityConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeServiceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeVpcConnectorCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DisassociateCustomDomainCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListAutoScalingConfigurationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListObservabilityConfigurationsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListOperationsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListVpcConnectorsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PauseServiceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ResumeServiceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StartDeploymentCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateServiceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +30 -30
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/AppRunnerServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1084 -992
- package/dist-types/ts3.4/pagination/DescribeCustomDomainsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListAutoScalingConfigurationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListConnectionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListObservabilityConfigurationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListOperationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListVpcConnectorsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +8 -8
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +365 -92
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeCustomDomainsCommandInput,
|
|
4
|
+
DescribeCustomDomainsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeCustomDomainsCommand";
|
|
6
|
+
import { AppRunnerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeCustomDomains(
|
|
8
|
+
config: AppRunnerPaginationConfiguration,
|
|
9
|
+
input: DescribeCustomDomainsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeCustomDomainsCommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { AppRunner } from "../AppRunner";
|
|
3
|
-
import { AppRunnerClient } from "../AppRunnerClient";
|
|
4
|
-
export interface AppRunnerPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { AppRunner } from "../AppRunner";
|
|
3
|
+
import { AppRunnerClient } from "../AppRunnerClient";
|
|
4
|
+
export interface AppRunnerPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: AppRunner | AppRunnerClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListAutoScalingConfigurationsCommandInput,
|
|
4
|
+
ListAutoScalingConfigurationsCommandOutput,
|
|
5
|
+
} from "../commands/ListAutoScalingConfigurationsCommand";
|
|
6
|
+
import { AppRunnerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListAutoScalingConfigurations(
|
|
8
|
+
config: AppRunnerPaginationConfiguration,
|
|
9
|
+
input: ListAutoScalingConfigurationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListAutoScalingConfigurationsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListConnectionsCommandInput,
|
|
4
|
+
ListConnectionsCommandOutput,
|
|
5
|
+
} from "../commands/ListConnectionsCommand";
|
|
6
|
+
import { AppRunnerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListConnections(
|
|
8
|
+
config: AppRunnerPaginationConfiguration,
|
|
9
|
+
input: ListConnectionsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListConnectionsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListObservabilityConfigurationsCommandInput,
|
|
4
|
+
ListObservabilityConfigurationsCommandOutput,
|
|
5
|
+
} from "../commands/ListObservabilityConfigurationsCommand";
|
|
6
|
+
import { AppRunnerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListObservabilityConfigurations(
|
|
8
|
+
config: AppRunnerPaginationConfiguration,
|
|
9
|
+
input: ListObservabilityConfigurationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListObservabilityConfigurationsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListOperationsCommandInput,
|
|
4
|
+
ListOperationsCommandOutput,
|
|
5
|
+
} from "../commands/ListOperationsCommand";
|
|
6
|
+
import { AppRunnerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListOperations(
|
|
8
|
+
config: AppRunnerPaginationConfiguration,
|
|
9
|
+
input: ListOperationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListOperationsCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListServicesCommandInput,
|
|
4
|
+
ListServicesCommandOutput,
|
|
5
|
+
} from "../commands/ListServicesCommand";
|
|
6
|
+
import { AppRunnerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListServices(
|
|
8
|
+
config: AppRunnerPaginationConfiguration,
|
|
9
|
+
input: ListServicesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListServicesCommandOutput>;
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListVpcConnectorsCommandInput,
|
|
4
|
+
ListVpcConnectorsCommandOutput,
|
|
5
|
+
} from "../commands/ListVpcConnectorsCommand";
|
|
6
|
+
import { AppRunnerPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListVpcConnectors(
|
|
8
|
+
config: AppRunnerPaginationConfiguration,
|
|
9
|
+
input: ListVpcConnectorsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListVpcConnectorsCommandOutput>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
export * from "./DescribeCustomDomainsPaginator";
|
|
2
|
-
export * from "./Interfaces";
|
|
3
|
-
export * from "./ListAutoScalingConfigurationsPaginator";
|
|
4
|
-
export * from "./ListConnectionsPaginator";
|
|
5
|
-
export * from "./ListObservabilityConfigurationsPaginator";
|
|
6
|
-
export * from "./ListOperationsPaginator";
|
|
7
|
-
export * from "./ListServicesPaginator";
|
|
8
|
-
export * from "./ListVpcConnectorsPaginator";
|
|
1
|
+
export * from "./DescribeCustomDomainsPaginator";
|
|
2
|
+
export * from "./Interfaces";
|
|
3
|
+
export * from "./ListAutoScalingConfigurationsPaginator";
|
|
4
|
+
export * from "./ListConnectionsPaginator";
|
|
5
|
+
export * from "./ListObservabilityConfigurationsPaginator";
|
|
6
|
+
export * from "./ListOperationsPaginator";
|
|
7
|
+
export * from "./ListServicesPaginator";
|
|
8
|
+
export * from "./ListVpcConnectorsPaginator";
|
|
@@ -1,92 +1,365 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
import {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
import {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
AssociateCustomDomainCommandInput,
|
|
8
|
+
AssociateCustomDomainCommandOutput,
|
|
9
|
+
} from "../commands/AssociateCustomDomainCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateAutoScalingConfigurationCommandInput,
|
|
12
|
+
CreateAutoScalingConfigurationCommandOutput,
|
|
13
|
+
} from "../commands/CreateAutoScalingConfigurationCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateConnectionCommandInput,
|
|
16
|
+
CreateConnectionCommandOutput,
|
|
17
|
+
} from "../commands/CreateConnectionCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateObservabilityConfigurationCommandInput,
|
|
20
|
+
CreateObservabilityConfigurationCommandOutput,
|
|
21
|
+
} from "../commands/CreateObservabilityConfigurationCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateServiceCommandInput,
|
|
24
|
+
CreateServiceCommandOutput,
|
|
25
|
+
} from "../commands/CreateServiceCommand";
|
|
26
|
+
import {
|
|
27
|
+
CreateVpcConnectorCommandInput,
|
|
28
|
+
CreateVpcConnectorCommandOutput,
|
|
29
|
+
} from "../commands/CreateVpcConnectorCommand";
|
|
30
|
+
import {
|
|
31
|
+
DeleteAutoScalingConfigurationCommandInput,
|
|
32
|
+
DeleteAutoScalingConfigurationCommandOutput,
|
|
33
|
+
} from "../commands/DeleteAutoScalingConfigurationCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteConnectionCommandInput,
|
|
36
|
+
DeleteConnectionCommandOutput,
|
|
37
|
+
} from "../commands/DeleteConnectionCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeleteObservabilityConfigurationCommandInput,
|
|
40
|
+
DeleteObservabilityConfigurationCommandOutput,
|
|
41
|
+
} from "../commands/DeleteObservabilityConfigurationCommand";
|
|
42
|
+
import {
|
|
43
|
+
DeleteServiceCommandInput,
|
|
44
|
+
DeleteServiceCommandOutput,
|
|
45
|
+
} from "../commands/DeleteServiceCommand";
|
|
46
|
+
import {
|
|
47
|
+
DeleteVpcConnectorCommandInput,
|
|
48
|
+
DeleteVpcConnectorCommandOutput,
|
|
49
|
+
} from "../commands/DeleteVpcConnectorCommand";
|
|
50
|
+
import {
|
|
51
|
+
DescribeAutoScalingConfigurationCommandInput,
|
|
52
|
+
DescribeAutoScalingConfigurationCommandOutput,
|
|
53
|
+
} from "../commands/DescribeAutoScalingConfigurationCommand";
|
|
54
|
+
import {
|
|
55
|
+
DescribeCustomDomainsCommandInput,
|
|
56
|
+
DescribeCustomDomainsCommandOutput,
|
|
57
|
+
} from "../commands/DescribeCustomDomainsCommand";
|
|
58
|
+
import {
|
|
59
|
+
DescribeObservabilityConfigurationCommandInput,
|
|
60
|
+
DescribeObservabilityConfigurationCommandOutput,
|
|
61
|
+
} from "../commands/DescribeObservabilityConfigurationCommand";
|
|
62
|
+
import {
|
|
63
|
+
DescribeServiceCommandInput,
|
|
64
|
+
DescribeServiceCommandOutput,
|
|
65
|
+
} from "../commands/DescribeServiceCommand";
|
|
66
|
+
import {
|
|
67
|
+
DescribeVpcConnectorCommandInput,
|
|
68
|
+
DescribeVpcConnectorCommandOutput,
|
|
69
|
+
} from "../commands/DescribeVpcConnectorCommand";
|
|
70
|
+
import {
|
|
71
|
+
DisassociateCustomDomainCommandInput,
|
|
72
|
+
DisassociateCustomDomainCommandOutput,
|
|
73
|
+
} from "../commands/DisassociateCustomDomainCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListAutoScalingConfigurationsCommandInput,
|
|
76
|
+
ListAutoScalingConfigurationsCommandOutput,
|
|
77
|
+
} from "../commands/ListAutoScalingConfigurationsCommand";
|
|
78
|
+
import {
|
|
79
|
+
ListConnectionsCommandInput,
|
|
80
|
+
ListConnectionsCommandOutput,
|
|
81
|
+
} from "../commands/ListConnectionsCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListObservabilityConfigurationsCommandInput,
|
|
84
|
+
ListObservabilityConfigurationsCommandOutput,
|
|
85
|
+
} from "../commands/ListObservabilityConfigurationsCommand";
|
|
86
|
+
import {
|
|
87
|
+
ListOperationsCommandInput,
|
|
88
|
+
ListOperationsCommandOutput,
|
|
89
|
+
} from "../commands/ListOperationsCommand";
|
|
90
|
+
import {
|
|
91
|
+
ListServicesCommandInput,
|
|
92
|
+
ListServicesCommandOutput,
|
|
93
|
+
} from "../commands/ListServicesCommand";
|
|
94
|
+
import {
|
|
95
|
+
ListTagsForResourceCommandInput,
|
|
96
|
+
ListTagsForResourceCommandOutput,
|
|
97
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
98
|
+
import {
|
|
99
|
+
ListVpcConnectorsCommandInput,
|
|
100
|
+
ListVpcConnectorsCommandOutput,
|
|
101
|
+
} from "../commands/ListVpcConnectorsCommand";
|
|
102
|
+
import {
|
|
103
|
+
PauseServiceCommandInput,
|
|
104
|
+
PauseServiceCommandOutput,
|
|
105
|
+
} from "../commands/PauseServiceCommand";
|
|
106
|
+
import {
|
|
107
|
+
ResumeServiceCommandInput,
|
|
108
|
+
ResumeServiceCommandOutput,
|
|
109
|
+
} from "../commands/ResumeServiceCommand";
|
|
110
|
+
import {
|
|
111
|
+
StartDeploymentCommandInput,
|
|
112
|
+
StartDeploymentCommandOutput,
|
|
113
|
+
} from "../commands/StartDeploymentCommand";
|
|
114
|
+
import {
|
|
115
|
+
TagResourceCommandInput,
|
|
116
|
+
TagResourceCommandOutput,
|
|
117
|
+
} from "../commands/TagResourceCommand";
|
|
118
|
+
import {
|
|
119
|
+
UntagResourceCommandInput,
|
|
120
|
+
UntagResourceCommandOutput,
|
|
121
|
+
} from "../commands/UntagResourceCommand";
|
|
122
|
+
import {
|
|
123
|
+
UpdateServiceCommandInput,
|
|
124
|
+
UpdateServiceCommandOutput,
|
|
125
|
+
} from "../commands/UpdateServiceCommand";
|
|
126
|
+
export declare const serializeAws_json1_0AssociateCustomDomainCommand: (
|
|
127
|
+
input: AssociateCustomDomainCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_json1_0CreateAutoScalingConfigurationCommand: (
|
|
131
|
+
input: CreateAutoScalingConfigurationCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_json1_0CreateConnectionCommand: (
|
|
135
|
+
input: CreateConnectionCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_json1_0CreateObservabilityConfigurationCommand: (
|
|
139
|
+
input: CreateObservabilityConfigurationCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_json1_0CreateServiceCommand: (
|
|
143
|
+
input: CreateServiceCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_json1_0CreateVpcConnectorCommand: (
|
|
147
|
+
input: CreateVpcConnectorCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_json1_0DeleteAutoScalingConfigurationCommand: (
|
|
151
|
+
input: DeleteAutoScalingConfigurationCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const serializeAws_json1_0DeleteConnectionCommand: (
|
|
155
|
+
input: DeleteConnectionCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const serializeAws_json1_0DeleteObservabilityConfigurationCommand: (
|
|
159
|
+
input: DeleteObservabilityConfigurationCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const serializeAws_json1_0DeleteServiceCommand: (
|
|
163
|
+
input: DeleteServiceCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const serializeAws_json1_0DeleteVpcConnectorCommand: (
|
|
167
|
+
input: DeleteVpcConnectorCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_json1_0DescribeAutoScalingConfigurationCommand: (
|
|
171
|
+
input: DescribeAutoScalingConfigurationCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const serializeAws_json1_0DescribeCustomDomainsCommand: (
|
|
175
|
+
input: DescribeCustomDomainsCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const serializeAws_json1_0DescribeObservabilityConfigurationCommand: (
|
|
179
|
+
input: DescribeObservabilityConfigurationCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const serializeAws_json1_0DescribeServiceCommand: (
|
|
183
|
+
input: DescribeServiceCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const serializeAws_json1_0DescribeVpcConnectorCommand: (
|
|
187
|
+
input: DescribeVpcConnectorCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const serializeAws_json1_0DisassociateCustomDomainCommand: (
|
|
191
|
+
input: DisassociateCustomDomainCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const serializeAws_json1_0ListAutoScalingConfigurationsCommand: (
|
|
195
|
+
input: ListAutoScalingConfigurationsCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const serializeAws_json1_0ListConnectionsCommand: (
|
|
199
|
+
input: ListConnectionsCommandInput,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const serializeAws_json1_0ListObservabilityConfigurationsCommand: (
|
|
203
|
+
input: ListObservabilityConfigurationsCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
206
|
+
export declare const serializeAws_json1_0ListOperationsCommand: (
|
|
207
|
+
input: ListOperationsCommandInput,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<__HttpRequest>;
|
|
210
|
+
export declare const serializeAws_json1_0ListServicesCommand: (
|
|
211
|
+
input: ListServicesCommandInput,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<__HttpRequest>;
|
|
214
|
+
export declare const serializeAws_json1_0ListTagsForResourceCommand: (
|
|
215
|
+
input: ListTagsForResourceCommandInput,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<__HttpRequest>;
|
|
218
|
+
export declare const serializeAws_json1_0ListVpcConnectorsCommand: (
|
|
219
|
+
input: ListVpcConnectorsCommandInput,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<__HttpRequest>;
|
|
222
|
+
export declare const serializeAws_json1_0PauseServiceCommand: (
|
|
223
|
+
input: PauseServiceCommandInput,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<__HttpRequest>;
|
|
226
|
+
export declare const serializeAws_json1_0ResumeServiceCommand: (
|
|
227
|
+
input: ResumeServiceCommandInput,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<__HttpRequest>;
|
|
230
|
+
export declare const serializeAws_json1_0StartDeploymentCommand: (
|
|
231
|
+
input: StartDeploymentCommandInput,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<__HttpRequest>;
|
|
234
|
+
export declare const serializeAws_json1_0TagResourceCommand: (
|
|
235
|
+
input: TagResourceCommandInput,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<__HttpRequest>;
|
|
238
|
+
export declare const serializeAws_json1_0UntagResourceCommand: (
|
|
239
|
+
input: UntagResourceCommandInput,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<__HttpRequest>;
|
|
242
|
+
export declare const serializeAws_json1_0UpdateServiceCommand: (
|
|
243
|
+
input: UpdateServiceCommandInput,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<__HttpRequest>;
|
|
246
|
+
export declare const deserializeAws_json1_0AssociateCustomDomainCommand: (
|
|
247
|
+
output: __HttpResponse,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<AssociateCustomDomainCommandOutput>;
|
|
250
|
+
export declare const deserializeAws_json1_0CreateAutoScalingConfigurationCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<CreateAutoScalingConfigurationCommandOutput>;
|
|
254
|
+
export declare const deserializeAws_json1_0CreateConnectionCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<CreateConnectionCommandOutput>;
|
|
258
|
+
export declare const deserializeAws_json1_0CreateObservabilityConfigurationCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<CreateObservabilityConfigurationCommandOutput>;
|
|
262
|
+
export declare const deserializeAws_json1_0CreateServiceCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<CreateServiceCommandOutput>;
|
|
266
|
+
export declare const deserializeAws_json1_0CreateVpcConnectorCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<CreateVpcConnectorCommandOutput>;
|
|
270
|
+
export declare const deserializeAws_json1_0DeleteAutoScalingConfigurationCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<DeleteAutoScalingConfigurationCommandOutput>;
|
|
274
|
+
export declare const deserializeAws_json1_0DeleteConnectionCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<DeleteConnectionCommandOutput>;
|
|
278
|
+
export declare const deserializeAws_json1_0DeleteObservabilityConfigurationCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<DeleteObservabilityConfigurationCommandOutput>;
|
|
282
|
+
export declare const deserializeAws_json1_0DeleteServiceCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<DeleteServiceCommandOutput>;
|
|
286
|
+
export declare const deserializeAws_json1_0DeleteVpcConnectorCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<DeleteVpcConnectorCommandOutput>;
|
|
290
|
+
export declare const deserializeAws_json1_0DescribeAutoScalingConfigurationCommand: (
|
|
291
|
+
output: __HttpResponse,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<DescribeAutoScalingConfigurationCommandOutput>;
|
|
294
|
+
export declare const deserializeAws_json1_0DescribeCustomDomainsCommand: (
|
|
295
|
+
output: __HttpResponse,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<DescribeCustomDomainsCommandOutput>;
|
|
298
|
+
export declare const deserializeAws_json1_0DescribeObservabilityConfigurationCommand: (
|
|
299
|
+
output: __HttpResponse,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<DescribeObservabilityConfigurationCommandOutput>;
|
|
302
|
+
export declare const deserializeAws_json1_0DescribeServiceCommand: (
|
|
303
|
+
output: __HttpResponse,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<DescribeServiceCommandOutput>;
|
|
306
|
+
export declare const deserializeAws_json1_0DescribeVpcConnectorCommand: (
|
|
307
|
+
output: __HttpResponse,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<DescribeVpcConnectorCommandOutput>;
|
|
310
|
+
export declare const deserializeAws_json1_0DisassociateCustomDomainCommand: (
|
|
311
|
+
output: __HttpResponse,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<DisassociateCustomDomainCommandOutput>;
|
|
314
|
+
export declare const deserializeAws_json1_0ListAutoScalingConfigurationsCommand: (
|
|
315
|
+
output: __HttpResponse,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<ListAutoScalingConfigurationsCommandOutput>;
|
|
318
|
+
export declare const deserializeAws_json1_0ListConnectionsCommand: (
|
|
319
|
+
output: __HttpResponse,
|
|
320
|
+
context: __SerdeContext
|
|
321
|
+
) => Promise<ListConnectionsCommandOutput>;
|
|
322
|
+
export declare const deserializeAws_json1_0ListObservabilityConfigurationsCommand: (
|
|
323
|
+
output: __HttpResponse,
|
|
324
|
+
context: __SerdeContext
|
|
325
|
+
) => Promise<ListObservabilityConfigurationsCommandOutput>;
|
|
326
|
+
export declare const deserializeAws_json1_0ListOperationsCommand: (
|
|
327
|
+
output: __HttpResponse,
|
|
328
|
+
context: __SerdeContext
|
|
329
|
+
) => Promise<ListOperationsCommandOutput>;
|
|
330
|
+
export declare const deserializeAws_json1_0ListServicesCommand: (
|
|
331
|
+
output: __HttpResponse,
|
|
332
|
+
context: __SerdeContext
|
|
333
|
+
) => Promise<ListServicesCommandOutput>;
|
|
334
|
+
export declare const deserializeAws_json1_0ListTagsForResourceCommand: (
|
|
335
|
+
output: __HttpResponse,
|
|
336
|
+
context: __SerdeContext
|
|
337
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
338
|
+
export declare const deserializeAws_json1_0ListVpcConnectorsCommand: (
|
|
339
|
+
output: __HttpResponse,
|
|
340
|
+
context: __SerdeContext
|
|
341
|
+
) => Promise<ListVpcConnectorsCommandOutput>;
|
|
342
|
+
export declare const deserializeAws_json1_0PauseServiceCommand: (
|
|
343
|
+
output: __HttpResponse,
|
|
344
|
+
context: __SerdeContext
|
|
345
|
+
) => Promise<PauseServiceCommandOutput>;
|
|
346
|
+
export declare const deserializeAws_json1_0ResumeServiceCommand: (
|
|
347
|
+
output: __HttpResponse,
|
|
348
|
+
context: __SerdeContext
|
|
349
|
+
) => Promise<ResumeServiceCommandOutput>;
|
|
350
|
+
export declare const deserializeAws_json1_0StartDeploymentCommand: (
|
|
351
|
+
output: __HttpResponse,
|
|
352
|
+
context: __SerdeContext
|
|
353
|
+
) => Promise<StartDeploymentCommandOutput>;
|
|
354
|
+
export declare const deserializeAws_json1_0TagResourceCommand: (
|
|
355
|
+
output: __HttpResponse,
|
|
356
|
+
context: __SerdeContext
|
|
357
|
+
) => Promise<TagResourceCommandOutput>;
|
|
358
|
+
export declare const deserializeAws_json1_0UntagResourceCommand: (
|
|
359
|
+
output: __HttpResponse,
|
|
360
|
+
context: __SerdeContext
|
|
361
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
362
|
+
export declare const deserializeAws_json1_0UpdateServiceCommand: (
|
|
363
|
+
output: __HttpResponse,
|
|
364
|
+
context: __SerdeContext
|
|
365
|
+
) => Promise<UpdateServiceCommandOutput>;
|