@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.
Files changed (43) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Amp.d.ts +361 -110
  3. package/dist-types/ts3.4/AmpClient.d.ts +229 -94
  4. package/dist-types/ts3.4/commands/CreateAlertManagerDefinitionCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/CreateLoggingConfigurationCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/CreateRuleGroupsNamespaceCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +35 -17
  8. package/dist-types/ts3.4/commands/DeleteAlertManagerDefinitionCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DeleteLoggingConfigurationCommand.d.ts +35 -17
  10. package/dist-types/ts3.4/commands/DeleteRuleGroupsNamespaceCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +30 -17
  12. package/dist-types/ts3.4/commands/DescribeAlertManagerDefinitionCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/DescribeLoggingConfigurationCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/DescribeRuleGroupsNamespaceCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/DescribeWorkspaceCommand.d.ts +36 -17
  16. package/dist-types/ts3.4/commands/ListRuleGroupsNamespacesCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  18. package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/PutAlertManagerDefinitionCommand.d.ts +39 -17
  20. package/dist-types/ts3.4/commands/PutRuleGroupsNamespaceCommand.d.ts +39 -17
  21. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  23. package/dist-types/ts3.4/commands/UpdateLoggingConfigurationCommand.d.ts +39 -17
  24. package/dist-types/ts3.4/commands/UpdateWorkspaceAliasCommand.d.ts +34 -17
  25. package/dist-types/ts3.4/commands/index.d.ts +21 -21
  26. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  27. package/dist-types/ts3.4/index.d.ts +7 -7
  28. package/dist-types/ts3.4/models/AmpServiceException.d.ts +7 -6
  29. package/dist-types/ts3.4/models/index.d.ts +1 -1
  30. package/dist-types/ts3.4/models/models_0.d.ts +462 -619
  31. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  32. package/dist-types/ts3.4/pagination/ListRuleGroupsNamespacesPaginator.d.ts +11 -4
  33. package/dist-types/ts3.4/pagination/ListWorkspacesPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  35. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +257 -65
  36. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  37. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  38. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  39. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  40. package/dist-types/ts3.4/waiters/index.d.ts +2 -2
  41. package/dist-types/ts3.4/waiters/waitForWorkspaceActive.d.ts +11 -7
  42. package/dist-types/ts3.4/waiters/waitForWorkspaceDeleted.d.ts +11 -7
  43. 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
- client: Amp | AmpClient;
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 { ListRuleGroupsNamespacesCommandInput, ListRuleGroupsNamespacesCommandOutput } from "../commands/ListRuleGroupsNamespacesCommand";
3
- import { AmpPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListRuleGroupsNamespaces(config: AmpPaginationConfiguration, input: ListRuleGroupsNamespacesCommandInput, ...additionalArguments: any): Paginator<ListRuleGroupsNamespacesCommandOutput>;
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 { ListWorkspacesCommandInput, ListWorkspacesCommandOutput } from "../commands/ListWorkspacesCommand";
3
- import { AmpPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListWorkspaces(config: AmpPaginationConfiguration, input: ListWorkspacesCommandInput, ...additionalArguments: any): Paginator<ListWorkspacesCommandOutput>;
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 { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { CreateAlertManagerDefinitionCommandInput, CreateAlertManagerDefinitionCommandOutput } from "../commands/CreateAlertManagerDefinitionCommand";
4
- import { CreateLoggingConfigurationCommandInput, CreateLoggingConfigurationCommandOutput } from "../commands/CreateLoggingConfigurationCommand";
5
- import { CreateRuleGroupsNamespaceCommandInput, CreateRuleGroupsNamespaceCommandOutput } from "../commands/CreateRuleGroupsNamespaceCommand";
6
- import { CreateWorkspaceCommandInput, CreateWorkspaceCommandOutput } from "../commands/CreateWorkspaceCommand";
7
- import { DeleteAlertManagerDefinitionCommandInput, DeleteAlertManagerDefinitionCommandOutput } from "../commands/DeleteAlertManagerDefinitionCommand";
8
- import { DeleteLoggingConfigurationCommandInput, DeleteLoggingConfigurationCommandOutput } from "../commands/DeleteLoggingConfigurationCommand";
9
- import { DeleteRuleGroupsNamespaceCommandInput, DeleteRuleGroupsNamespaceCommandOutput } from "../commands/DeleteRuleGroupsNamespaceCommand";
10
- import { DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput } from "../commands/DeleteWorkspaceCommand";
11
- import { DescribeAlertManagerDefinitionCommandInput, DescribeAlertManagerDefinitionCommandOutput } from "../commands/DescribeAlertManagerDefinitionCommand";
12
- import { DescribeLoggingConfigurationCommandInput, DescribeLoggingConfigurationCommandOutput } from "../commands/DescribeLoggingConfigurationCommand";
13
- import { DescribeRuleGroupsNamespaceCommandInput, DescribeRuleGroupsNamespaceCommandOutput } from "../commands/DescribeRuleGroupsNamespaceCommand";
14
- import { DescribeWorkspaceCommandInput, DescribeWorkspaceCommandOutput } from "../commands/DescribeWorkspaceCommand";
15
- import { ListRuleGroupsNamespacesCommandInput, ListRuleGroupsNamespacesCommandOutput } from "../commands/ListRuleGroupsNamespacesCommand";
16
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
17
- import { ListWorkspacesCommandInput, ListWorkspacesCommandOutput } from "../commands/ListWorkspacesCommand";
18
- import { PutAlertManagerDefinitionCommandInput, PutAlertManagerDefinitionCommandOutput } from "../commands/PutAlertManagerDefinitionCommand";
19
- import { PutRuleGroupsNamespaceCommandInput, PutRuleGroupsNamespaceCommandOutput } from "../commands/PutRuleGroupsNamespaceCommand";
20
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
21
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
22
- import { UpdateLoggingConfigurationCommandInput, UpdateLoggingConfigurationCommandOutput } from "../commands/UpdateLoggingConfigurationCommand";
23
- import { UpdateWorkspaceAliasCommandInput, UpdateWorkspaceAliasCommandOutput } from "../commands/UpdateWorkspaceAliasCommand";
24
- export declare const serializeAws_restJson1CreateAlertManagerDefinitionCommand: (input: CreateAlertManagerDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
- export declare const serializeAws_restJson1CreateLoggingConfigurationCommand: (input: CreateLoggingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
- export declare const serializeAws_restJson1CreateRuleGroupsNamespaceCommand: (input: CreateRuleGroupsNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
- export declare const serializeAws_restJson1CreateWorkspaceCommand: (input: CreateWorkspaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_restJson1DeleteAlertManagerDefinitionCommand: (input: DeleteAlertManagerDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const serializeAws_restJson1DeleteLoggingConfigurationCommand: (input: DeleteLoggingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- export declare const serializeAws_restJson1DeleteRuleGroupsNamespaceCommand: (input: DeleteRuleGroupsNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const serializeAws_restJson1DeleteWorkspaceCommand: (input: DeleteWorkspaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_restJson1DescribeAlertManagerDefinitionCommand: (input: DescribeAlertManagerDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_restJson1DescribeLoggingConfigurationCommand: (input: DescribeLoggingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_restJson1DescribeRuleGroupsNamespaceCommand: (input: DescribeRuleGroupsNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_restJson1DescribeWorkspaceCommand: (input: DescribeWorkspaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_restJson1ListRuleGroupsNamespacesCommand: (input: ListRuleGroupsNamespacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_restJson1ListWorkspacesCommand: (input: ListWorkspacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_restJson1PutAlertManagerDefinitionCommand: (input: PutAlertManagerDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_restJson1PutRuleGroupsNamespaceCommand: (input: PutRuleGroupsNamespaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_restJson1UpdateLoggingConfigurationCommand: (input: UpdateLoggingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_restJson1UpdateWorkspaceAliasCommand: (input: UpdateWorkspaceAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const deserializeAws_restJson1CreateAlertManagerDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAlertManagerDefinitionCommandOutput>;
46
- export declare const deserializeAws_restJson1CreateLoggingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateLoggingConfigurationCommandOutput>;
47
- export declare const deserializeAws_restJson1CreateRuleGroupsNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateRuleGroupsNamespaceCommandOutput>;
48
- export declare const deserializeAws_restJson1CreateWorkspaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateWorkspaceCommandOutput>;
49
- export declare const deserializeAws_restJson1DeleteAlertManagerDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAlertManagerDefinitionCommandOutput>;
50
- export declare const deserializeAws_restJson1DeleteLoggingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteLoggingConfigurationCommandOutput>;
51
- export declare const deserializeAws_restJson1DeleteRuleGroupsNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRuleGroupsNamespaceCommandOutput>;
52
- export declare const deserializeAws_restJson1DeleteWorkspaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteWorkspaceCommandOutput>;
53
- export declare const deserializeAws_restJson1DescribeAlertManagerDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAlertManagerDefinitionCommandOutput>;
54
- export declare const deserializeAws_restJson1DescribeLoggingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeLoggingConfigurationCommandOutput>;
55
- export declare const deserializeAws_restJson1DescribeRuleGroupsNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeRuleGroupsNamespaceCommandOutput>;
56
- export declare const deserializeAws_restJson1DescribeWorkspaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeWorkspaceCommandOutput>;
57
- export declare const deserializeAws_restJson1ListRuleGroupsNamespacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRuleGroupsNamespacesCommandOutput>;
58
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
59
- export declare const deserializeAws_restJson1ListWorkspacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWorkspacesCommandOutput>;
60
- export declare const deserializeAws_restJson1PutAlertManagerDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutAlertManagerDefinitionCommandOutput>;
61
- export declare const deserializeAws_restJson1PutRuleGroupsNamespaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutRuleGroupsNamespaceCommandOutput>;
62
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
63
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
64
- export declare const deserializeAws_restJson1UpdateLoggingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateLoggingConfigurationCommandOutput>;
65
- export declare const deserializeAws_restJson1UpdateWorkspaceAliasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateWorkspaceAliasCommandOutput>;
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
- export declare const getRuntimeConfig: (config: AmpClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
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
- export declare const getRuntimeConfig: (config: AmpClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<string>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
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
+ };