@aws-sdk/client-amp 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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Amp.d.ts +361 -110
- package/dist-types/ts3.4/AmpClient.d.ts +229 -94
- package/dist-types/ts3.4/commands/CreateAlertManagerDefinitionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateLoggingConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateRuleGroupsNamespaceCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteAlertManagerDefinitionCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteLoggingConfigurationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteRuleGroupsNamespaceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/DescribeAlertManagerDefinitionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeLoggingConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeRuleGroupsNamespaceCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeWorkspaceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListRuleGroupsNamespacesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/PutAlertManagerDefinitionCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/PutRuleGroupsNamespaceCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateLoggingConfigurationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateWorkspaceAliasCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +21 -21
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +7 -7
- package/dist-types/ts3.4/models/AmpServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +462 -619
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/ListRuleGroupsNamespacesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListWorkspacesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +257 -65
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/dist-types/ts3.4/waiters/index.d.ts +2 -2
- package/dist-types/ts3.4/waiters/waitForWorkspaceActive.d.ts +11 -7
- package/dist-types/ts3.4/waiters/waitForWorkspaceDeleted.d.ts +11 -7
- package/package.json +35 -35
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { Amp } from "../Amp";
|
|
3
|
-
import { AmpClient } from "../AmpClient";
|
|
4
|
-
export interface AmpPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
-
|
|
6
|
-
}
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { Amp } from "../Amp";
|
|
3
|
+
import { AmpClient } from "../AmpClient";
|
|
4
|
+
export interface AmpPaginationConfiguration extends PaginationConfiguration {
|
|
5
|
+
client: Amp | AmpClient;
|
|
6
|
+
}
|
|
@@ -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
|
+
ListRuleGroupsNamespacesCommandInput,
|
|
4
|
+
ListRuleGroupsNamespacesCommandOutput,
|
|
5
|
+
} from "../commands/ListRuleGroupsNamespacesCommand";
|
|
6
|
+
import { AmpPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListRuleGroupsNamespaces(
|
|
8
|
+
config: AmpPaginationConfiguration,
|
|
9
|
+
input: ListRuleGroupsNamespacesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListRuleGroupsNamespacesCommandOutput>;
|
|
@@ -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
|
+
ListWorkspacesCommandInput,
|
|
4
|
+
ListWorkspacesCommandOutput,
|
|
5
|
+
} from "../commands/ListWorkspacesCommand";
|
|
6
|
+
import { AmpPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListWorkspaces(
|
|
8
|
+
config: AmpPaginationConfiguration,
|
|
9
|
+
input: ListWorkspacesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListWorkspacesCommandOutput>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListRuleGroupsNamespacesPaginator";
|
|
3
|
-
export * from "./ListWorkspacesPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListRuleGroupsNamespacesPaginator";
|
|
3
|
+
export * from "./ListWorkspacesPaginator";
|
|
@@ -1,65 +1,257 @@
|
|
|
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
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
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
|
-
|
|
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
|
+
CreateAlertManagerDefinitionCommandInput,
|
|
8
|
+
CreateAlertManagerDefinitionCommandOutput,
|
|
9
|
+
} from "../commands/CreateAlertManagerDefinitionCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateLoggingConfigurationCommandInput,
|
|
12
|
+
CreateLoggingConfigurationCommandOutput,
|
|
13
|
+
} from "../commands/CreateLoggingConfigurationCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateRuleGroupsNamespaceCommandInput,
|
|
16
|
+
CreateRuleGroupsNamespaceCommandOutput,
|
|
17
|
+
} from "../commands/CreateRuleGroupsNamespaceCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateWorkspaceCommandInput,
|
|
20
|
+
CreateWorkspaceCommandOutput,
|
|
21
|
+
} from "../commands/CreateWorkspaceCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteAlertManagerDefinitionCommandInput,
|
|
24
|
+
DeleteAlertManagerDefinitionCommandOutput,
|
|
25
|
+
} from "../commands/DeleteAlertManagerDefinitionCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteLoggingConfigurationCommandInput,
|
|
28
|
+
DeleteLoggingConfigurationCommandOutput,
|
|
29
|
+
} from "../commands/DeleteLoggingConfigurationCommand";
|
|
30
|
+
import {
|
|
31
|
+
DeleteRuleGroupsNamespaceCommandInput,
|
|
32
|
+
DeleteRuleGroupsNamespaceCommandOutput,
|
|
33
|
+
} from "../commands/DeleteRuleGroupsNamespaceCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteWorkspaceCommandInput,
|
|
36
|
+
DeleteWorkspaceCommandOutput,
|
|
37
|
+
} from "../commands/DeleteWorkspaceCommand";
|
|
38
|
+
import {
|
|
39
|
+
DescribeAlertManagerDefinitionCommandInput,
|
|
40
|
+
DescribeAlertManagerDefinitionCommandOutput,
|
|
41
|
+
} from "../commands/DescribeAlertManagerDefinitionCommand";
|
|
42
|
+
import {
|
|
43
|
+
DescribeLoggingConfigurationCommandInput,
|
|
44
|
+
DescribeLoggingConfigurationCommandOutput,
|
|
45
|
+
} from "../commands/DescribeLoggingConfigurationCommand";
|
|
46
|
+
import {
|
|
47
|
+
DescribeRuleGroupsNamespaceCommandInput,
|
|
48
|
+
DescribeRuleGroupsNamespaceCommandOutput,
|
|
49
|
+
} from "../commands/DescribeRuleGroupsNamespaceCommand";
|
|
50
|
+
import {
|
|
51
|
+
DescribeWorkspaceCommandInput,
|
|
52
|
+
DescribeWorkspaceCommandOutput,
|
|
53
|
+
} from "../commands/DescribeWorkspaceCommand";
|
|
54
|
+
import {
|
|
55
|
+
ListRuleGroupsNamespacesCommandInput,
|
|
56
|
+
ListRuleGroupsNamespacesCommandOutput,
|
|
57
|
+
} from "../commands/ListRuleGroupsNamespacesCommand";
|
|
58
|
+
import {
|
|
59
|
+
ListTagsForResourceCommandInput,
|
|
60
|
+
ListTagsForResourceCommandOutput,
|
|
61
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
62
|
+
import {
|
|
63
|
+
ListWorkspacesCommandInput,
|
|
64
|
+
ListWorkspacesCommandOutput,
|
|
65
|
+
} from "../commands/ListWorkspacesCommand";
|
|
66
|
+
import {
|
|
67
|
+
PutAlertManagerDefinitionCommandInput,
|
|
68
|
+
PutAlertManagerDefinitionCommandOutput,
|
|
69
|
+
} from "../commands/PutAlertManagerDefinitionCommand";
|
|
70
|
+
import {
|
|
71
|
+
PutRuleGroupsNamespaceCommandInput,
|
|
72
|
+
PutRuleGroupsNamespaceCommandOutput,
|
|
73
|
+
} from "../commands/PutRuleGroupsNamespaceCommand";
|
|
74
|
+
import {
|
|
75
|
+
TagResourceCommandInput,
|
|
76
|
+
TagResourceCommandOutput,
|
|
77
|
+
} from "../commands/TagResourceCommand";
|
|
78
|
+
import {
|
|
79
|
+
UntagResourceCommandInput,
|
|
80
|
+
UntagResourceCommandOutput,
|
|
81
|
+
} from "../commands/UntagResourceCommand";
|
|
82
|
+
import {
|
|
83
|
+
UpdateLoggingConfigurationCommandInput,
|
|
84
|
+
UpdateLoggingConfigurationCommandOutput,
|
|
85
|
+
} from "../commands/UpdateLoggingConfigurationCommand";
|
|
86
|
+
import {
|
|
87
|
+
UpdateWorkspaceAliasCommandInput,
|
|
88
|
+
UpdateWorkspaceAliasCommandOutput,
|
|
89
|
+
} from "../commands/UpdateWorkspaceAliasCommand";
|
|
90
|
+
export declare const serializeAws_restJson1CreateAlertManagerDefinitionCommand: (
|
|
91
|
+
input: CreateAlertManagerDefinitionCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const serializeAws_restJson1CreateLoggingConfigurationCommand: (
|
|
95
|
+
input: CreateLoggingConfigurationCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const serializeAws_restJson1CreateRuleGroupsNamespaceCommand: (
|
|
99
|
+
input: CreateRuleGroupsNamespaceCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const serializeAws_restJson1CreateWorkspaceCommand: (
|
|
103
|
+
input: CreateWorkspaceCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const serializeAws_restJson1DeleteAlertManagerDefinitionCommand: (
|
|
107
|
+
input: DeleteAlertManagerDefinitionCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const serializeAws_restJson1DeleteLoggingConfigurationCommand: (
|
|
111
|
+
input: DeleteLoggingConfigurationCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_restJson1DeleteRuleGroupsNamespaceCommand: (
|
|
115
|
+
input: DeleteRuleGroupsNamespaceCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_restJson1DeleteWorkspaceCommand: (
|
|
119
|
+
input: DeleteWorkspaceCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const serializeAws_restJson1DescribeAlertManagerDefinitionCommand: (
|
|
123
|
+
input: DescribeAlertManagerDefinitionCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const serializeAws_restJson1DescribeLoggingConfigurationCommand: (
|
|
127
|
+
input: DescribeLoggingConfigurationCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_restJson1DescribeRuleGroupsNamespaceCommand: (
|
|
131
|
+
input: DescribeRuleGroupsNamespaceCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_restJson1DescribeWorkspaceCommand: (
|
|
135
|
+
input: DescribeWorkspaceCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_restJson1ListRuleGroupsNamespacesCommand: (
|
|
139
|
+
input: ListRuleGroupsNamespacesCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_restJson1ListTagsForResourceCommand: (
|
|
143
|
+
input: ListTagsForResourceCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_restJson1ListWorkspacesCommand: (
|
|
147
|
+
input: ListWorkspacesCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_restJson1PutAlertManagerDefinitionCommand: (
|
|
151
|
+
input: PutAlertManagerDefinitionCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const serializeAws_restJson1PutRuleGroupsNamespaceCommand: (
|
|
155
|
+
input: PutRuleGroupsNamespaceCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const serializeAws_restJson1TagResourceCommand: (
|
|
159
|
+
input: TagResourceCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const serializeAws_restJson1UntagResourceCommand: (
|
|
163
|
+
input: UntagResourceCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const serializeAws_restJson1UpdateLoggingConfigurationCommand: (
|
|
167
|
+
input: UpdateLoggingConfigurationCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_restJson1UpdateWorkspaceAliasCommand: (
|
|
171
|
+
input: UpdateWorkspaceAliasCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const deserializeAws_restJson1CreateAlertManagerDefinitionCommand: (
|
|
175
|
+
output: __HttpResponse,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<CreateAlertManagerDefinitionCommandOutput>;
|
|
178
|
+
export declare const deserializeAws_restJson1CreateLoggingConfigurationCommand: (
|
|
179
|
+
output: __HttpResponse,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<CreateLoggingConfigurationCommandOutput>;
|
|
182
|
+
export declare const deserializeAws_restJson1CreateRuleGroupsNamespaceCommand: (
|
|
183
|
+
output: __HttpResponse,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<CreateRuleGroupsNamespaceCommandOutput>;
|
|
186
|
+
export declare const deserializeAws_restJson1CreateWorkspaceCommand: (
|
|
187
|
+
output: __HttpResponse,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<CreateWorkspaceCommandOutput>;
|
|
190
|
+
export declare const deserializeAws_restJson1DeleteAlertManagerDefinitionCommand: (
|
|
191
|
+
output: __HttpResponse,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<DeleteAlertManagerDefinitionCommandOutput>;
|
|
194
|
+
export declare const deserializeAws_restJson1DeleteLoggingConfigurationCommand: (
|
|
195
|
+
output: __HttpResponse,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<DeleteLoggingConfigurationCommandOutput>;
|
|
198
|
+
export declare const deserializeAws_restJson1DeleteRuleGroupsNamespaceCommand: (
|
|
199
|
+
output: __HttpResponse,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<DeleteRuleGroupsNamespaceCommandOutput>;
|
|
202
|
+
export declare const deserializeAws_restJson1DeleteWorkspaceCommand: (
|
|
203
|
+
output: __HttpResponse,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<DeleteWorkspaceCommandOutput>;
|
|
206
|
+
export declare const deserializeAws_restJson1DescribeAlertManagerDefinitionCommand: (
|
|
207
|
+
output: __HttpResponse,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<DescribeAlertManagerDefinitionCommandOutput>;
|
|
210
|
+
export declare const deserializeAws_restJson1DescribeLoggingConfigurationCommand: (
|
|
211
|
+
output: __HttpResponse,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<DescribeLoggingConfigurationCommandOutput>;
|
|
214
|
+
export declare const deserializeAws_restJson1DescribeRuleGroupsNamespaceCommand: (
|
|
215
|
+
output: __HttpResponse,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<DescribeRuleGroupsNamespaceCommandOutput>;
|
|
218
|
+
export declare const deserializeAws_restJson1DescribeWorkspaceCommand: (
|
|
219
|
+
output: __HttpResponse,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<DescribeWorkspaceCommandOutput>;
|
|
222
|
+
export declare const deserializeAws_restJson1ListRuleGroupsNamespacesCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<ListRuleGroupsNamespacesCommandOutput>;
|
|
226
|
+
export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
|
|
227
|
+
output: __HttpResponse,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
230
|
+
export declare const deserializeAws_restJson1ListWorkspacesCommand: (
|
|
231
|
+
output: __HttpResponse,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<ListWorkspacesCommandOutput>;
|
|
234
|
+
export declare const deserializeAws_restJson1PutAlertManagerDefinitionCommand: (
|
|
235
|
+
output: __HttpResponse,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<PutAlertManagerDefinitionCommandOutput>;
|
|
238
|
+
export declare const deserializeAws_restJson1PutRuleGroupsNamespaceCommand: (
|
|
239
|
+
output: __HttpResponse,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<PutRuleGroupsNamespaceCommandOutput>;
|
|
242
|
+
export declare const deserializeAws_restJson1TagResourceCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<TagResourceCommandOutput>;
|
|
246
|
+
export declare const deserializeAws_restJson1UntagResourceCommand: (
|
|
247
|
+
output: __HttpResponse,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
250
|
+
export declare const deserializeAws_restJson1UpdateLoggingConfigurationCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<UpdateLoggingConfigurationCommandOutput>;
|
|
254
|
+
export declare const deserializeAws_restJson1UpdateWorkspaceAliasCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<UpdateWorkspaceAliasCommandOutput>;
|
|
@@ -1,38 +1,65 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { AmpClientConfig } from "./AmpClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { AmpClientConfig } from "./AmpClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: AmpClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
6
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
15
|
+
import("@aws-sdk/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
18
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
21
|
+
any,
|
|
22
|
+
any,
|
|
23
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
24
|
+
> &
|
|
25
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
26
|
+
| RequestHandler;
|
|
27
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
28
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
29
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
30
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
31
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
33
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
34
|
+
apiVersion: string;
|
|
35
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
36
|
+
disableHostPrefix: boolean;
|
|
37
|
+
logger: import("@aws-sdk/types").Logger;
|
|
38
|
+
serviceId: string;
|
|
39
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
40
|
+
endpoint?:
|
|
41
|
+
| string
|
|
42
|
+
| import("@aws-sdk/types").Endpoint
|
|
43
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
44
|
+
| undefined;
|
|
45
|
+
tls?: boolean | undefined;
|
|
46
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
47
|
+
credentials?:
|
|
48
|
+
| import("@aws-sdk/types").Credentials
|
|
49
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
50
|
+
| undefined;
|
|
51
|
+
signer?:
|
|
52
|
+
| import("@aws-sdk/types").RequestSigner
|
|
53
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
54
|
+
| undefined;
|
|
55
|
+
signingEscapePath?: boolean | undefined;
|
|
56
|
+
systemClockOffset?: number | undefined;
|
|
57
|
+
signingRegion?: string | undefined;
|
|
58
|
+
signerConstructor?:
|
|
59
|
+
| (new (
|
|
60
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
61
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
62
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
63
|
+
| undefined;
|
|
64
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
65
|
+
};
|
|
@@ -1,38 +1,65 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { AmpClientConfig } from "./AmpClient";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { AmpClientConfig } from "./AmpClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: AmpClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
6
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
9
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
10
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
14
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
15
|
+
import("@aws-sdk/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
18
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
21
|
+
any,
|
|
22
|
+
any,
|
|
23
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
24
|
+
> &
|
|
25
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
26
|
+
| RequestHandler;
|
|
27
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
28
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
29
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
30
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
31
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
33
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
34
|
+
apiVersion: string;
|
|
35
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
36
|
+
disableHostPrefix: boolean;
|
|
37
|
+
logger: import("@aws-sdk/types").Logger;
|
|
38
|
+
serviceId: string;
|
|
39
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
40
|
+
endpoint?:
|
|
41
|
+
| string
|
|
42
|
+
| import("@aws-sdk/types").Endpoint
|
|
43
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
44
|
+
| undefined;
|
|
45
|
+
tls?: boolean | undefined;
|
|
46
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
47
|
+
credentials?:
|
|
48
|
+
| import("@aws-sdk/types").Credentials
|
|
49
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
50
|
+
| undefined;
|
|
51
|
+
signer?:
|
|
52
|
+
| import("@aws-sdk/types").RequestSigner
|
|
53
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
54
|
+
| undefined;
|
|
55
|
+
signingEscapePath?: boolean | undefined;
|
|
56
|
+
systemClockOffset?: number | undefined;
|
|
57
|
+
signingRegion?: string | undefined;
|
|
58
|
+
signerConstructor?:
|
|
59
|
+
| (new (
|
|
60
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
61
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
62
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
63
|
+
| undefined;
|
|
64
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
65
|
+
};
|