@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,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient";
4
- import { PutRuleGroupsNamespaceRequest, PutRuleGroupsNamespaceResponse } from "../models/models_0";
5
- export interface PutRuleGroupsNamespaceCommandInput extends PutRuleGroupsNamespaceRequest {
6
- }
7
- export interface PutRuleGroupsNamespaceCommandOutput extends PutRuleGroupsNamespaceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class PutRuleGroupsNamespaceCommand extends $Command<PutRuleGroupsNamespaceCommandInput, PutRuleGroupsNamespaceCommandOutput, AmpClientResolvedConfig> {
11
- readonly input: PutRuleGroupsNamespaceCommandInput;
12
- constructor(input: PutRuleGroupsNamespaceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmpClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutRuleGroupsNamespaceCommandInput, PutRuleGroupsNamespaceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmpClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmpClient";
13
+ import {
14
+ PutRuleGroupsNamespaceRequest,
15
+ PutRuleGroupsNamespaceResponse,
16
+ } from "../models/models_0";
17
+ export interface PutRuleGroupsNamespaceCommandInput
18
+ extends PutRuleGroupsNamespaceRequest {}
19
+ export interface PutRuleGroupsNamespaceCommandOutput
20
+ extends PutRuleGroupsNamespaceResponse,
21
+ __MetadataBearer {}
22
+ export declare class PutRuleGroupsNamespaceCommand extends $Command<
23
+ PutRuleGroupsNamespaceCommandInput,
24
+ PutRuleGroupsNamespaceCommandOutput,
25
+ AmpClientResolvedConfig
26
+ > {
27
+ readonly input: PutRuleGroupsNamespaceCommandInput;
28
+ constructor(input: PutRuleGroupsNamespaceCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: AmpClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ PutRuleGroupsNamespaceCommandInput,
35
+ PutRuleGroupsNamespaceCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,32 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient";
4
- import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, AmpClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmpClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmpClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmpClient";
13
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+ export declare class TagResourceCommand extends $Command<
19
+ TagResourceCommandInput,
20
+ TagResourceCommandOutput,
21
+ AmpClientResolvedConfig
22
+ > {
23
+ readonly input: TagResourceCommandInput;
24
+ constructor(input: TagResourceCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: AmpClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient";
4
- import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, AmpClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmpClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmpClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmpClient";
13
+ import {
14
+ UntagResourceRequest,
15
+ UntagResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+ export declare class UntagResourceCommand extends $Command<
22
+ UntagResourceCommandInput,
23
+ UntagResourceCommandOutput,
24
+ AmpClientResolvedConfig
25
+ > {
26
+ readonly input: UntagResourceCommandInput;
27
+ constructor(input: UntagResourceCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: AmpClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,39 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient";
4
- import { UpdateLoggingConfigurationRequest, UpdateLoggingConfigurationResponse } from "../models/models_0";
5
- export interface UpdateLoggingConfigurationCommandInput extends UpdateLoggingConfigurationRequest {
6
- }
7
- export interface UpdateLoggingConfigurationCommandOutput extends UpdateLoggingConfigurationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateLoggingConfigurationCommand extends $Command<UpdateLoggingConfigurationCommandInput, UpdateLoggingConfigurationCommandOutput, AmpClientResolvedConfig> {
11
- readonly input: UpdateLoggingConfigurationCommandInput;
12
- constructor(input: UpdateLoggingConfigurationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmpClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateLoggingConfigurationCommandInput, UpdateLoggingConfigurationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmpClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmpClient";
13
+ import {
14
+ UpdateLoggingConfigurationRequest,
15
+ UpdateLoggingConfigurationResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateLoggingConfigurationCommandInput
18
+ extends UpdateLoggingConfigurationRequest {}
19
+ export interface UpdateLoggingConfigurationCommandOutput
20
+ extends UpdateLoggingConfigurationResponse,
21
+ __MetadataBearer {}
22
+ export declare class UpdateLoggingConfigurationCommand extends $Command<
23
+ UpdateLoggingConfigurationCommandInput,
24
+ UpdateLoggingConfigurationCommandOutput,
25
+ AmpClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateLoggingConfigurationCommandInput;
28
+ constructor(input: UpdateLoggingConfigurationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: AmpClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ UpdateLoggingConfigurationCommandInput,
35
+ UpdateLoggingConfigurationCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { AmpClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AmpClient";
4
- import { UpdateWorkspaceAliasRequest } from "../models/models_0";
5
- export interface UpdateWorkspaceAliasCommandInput extends UpdateWorkspaceAliasRequest {
6
- }
7
- export interface UpdateWorkspaceAliasCommandOutput extends __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateWorkspaceAliasCommand extends $Command<UpdateWorkspaceAliasCommandInput, UpdateWorkspaceAliasCommandOutput, AmpClientResolvedConfig> {
11
- readonly input: UpdateWorkspaceAliasCommandInput;
12
- constructor(input: UpdateWorkspaceAliasCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AmpClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateWorkspaceAliasCommandInput, UpdateWorkspaceAliasCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ AmpClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../AmpClient";
13
+ import { UpdateWorkspaceAliasRequest } from "../models/models_0";
14
+ export interface UpdateWorkspaceAliasCommandInput
15
+ extends UpdateWorkspaceAliasRequest {}
16
+ export interface UpdateWorkspaceAliasCommandOutput extends __MetadataBearer {}
17
+ export declare class UpdateWorkspaceAliasCommand extends $Command<
18
+ UpdateWorkspaceAliasCommandInput,
19
+ UpdateWorkspaceAliasCommandOutput,
20
+ AmpClientResolvedConfig
21
+ > {
22
+ readonly input: UpdateWorkspaceAliasCommandInput;
23
+ constructor(input: UpdateWorkspaceAliasCommandInput);
24
+ resolveMiddleware(
25
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
26
+ configuration: AmpClientResolvedConfig,
27
+ options?: __HttpHandlerOptions
28
+ ): Handler<
29
+ UpdateWorkspaceAliasCommandInput,
30
+ UpdateWorkspaceAliasCommandOutput
31
+ >;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,21 +1,21 @@
1
- export * from "./CreateAlertManagerDefinitionCommand";
2
- export * from "./CreateLoggingConfigurationCommand";
3
- export * from "./CreateRuleGroupsNamespaceCommand";
4
- export * from "./CreateWorkspaceCommand";
5
- export * from "./DeleteAlertManagerDefinitionCommand";
6
- export * from "./DeleteLoggingConfigurationCommand";
7
- export * from "./DeleteRuleGroupsNamespaceCommand";
8
- export * from "./DeleteWorkspaceCommand";
9
- export * from "./DescribeAlertManagerDefinitionCommand";
10
- export * from "./DescribeLoggingConfigurationCommand";
11
- export * from "./DescribeRuleGroupsNamespaceCommand";
12
- export * from "./DescribeWorkspaceCommand";
13
- export * from "./ListRuleGroupsNamespacesCommand";
14
- export * from "./ListTagsForResourceCommand";
15
- export * from "./ListWorkspacesCommand";
16
- export * from "./PutAlertManagerDefinitionCommand";
17
- export * from "./PutRuleGroupsNamespaceCommand";
18
- export * from "./TagResourceCommand";
19
- export * from "./UntagResourceCommand";
20
- export * from "./UpdateLoggingConfigurationCommand";
21
- export * from "./UpdateWorkspaceAliasCommand";
1
+ export * from "./CreateAlertManagerDefinitionCommand";
2
+ export * from "./CreateLoggingConfigurationCommand";
3
+ export * from "./CreateRuleGroupsNamespaceCommand";
4
+ export * from "./CreateWorkspaceCommand";
5
+ export * from "./DeleteAlertManagerDefinitionCommand";
6
+ export * from "./DeleteLoggingConfigurationCommand";
7
+ export * from "./DeleteRuleGroupsNamespaceCommand";
8
+ export * from "./DeleteWorkspaceCommand";
9
+ export * from "./DescribeAlertManagerDefinitionCommand";
10
+ export * from "./DescribeLoggingConfigurationCommand";
11
+ export * from "./DescribeRuleGroupsNamespaceCommand";
12
+ export * from "./DescribeWorkspaceCommand";
13
+ export * from "./ListRuleGroupsNamespacesCommand";
14
+ export * from "./ListTagsForResourceCommand";
15
+ export * from "./ListWorkspacesCommand";
16
+ export * from "./PutAlertManagerDefinitionCommand";
17
+ export * from "./PutRuleGroupsNamespaceCommand";
18
+ export * from "./TagResourceCommand";
19
+ export * from "./UntagResourceCommand";
20
+ export * from "./UpdateLoggingConfigurationCommand";
21
+ export * from "./UpdateWorkspaceAliasCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,7 +1,7 @@
1
- export * from "./Amp";
2
- export * from "./AmpClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export * from "./waiters";
7
- export { AmpServiceException } from "./models/AmpServiceException";
1
+ export * from "./Amp";
2
+ export * from "./AmpClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export * from "./waiters";
7
+ export { AmpServiceException } from "./models/AmpServiceException";
@@ -1,6 +1,7 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class AmpServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+ export declare class AmpServiceException extends __ServiceException {
6
+ constructor(options: __ServiceExceptionOptions);
7
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";