@aws-sdk/client-amp 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/Amp.d.ts +382 -110
- package/dist-types/ts3.4/AmpClient.d.ts +254 -94
- package/dist-types/ts3.4/commands/CreateAlertManagerDefinitionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateLoggingConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateRuleGroupsNamespaceCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteAlertManagerDefinitionCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteLoggingConfigurationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteRuleGroupsNamespaceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DescribeAlertManagerDefinitionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeLoggingConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeRuleGroupsNamespaceCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeWorkspaceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListRuleGroupsNamespacesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/PutAlertManagerDefinitionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/PutRuleGroupsNamespaceCommand.d.ts +41 -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/UpdateLoggingConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateWorkspaceAliasCommand.d.ts +36 -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 +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +675 -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 +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/dist-types/ts3.4/waiters/index.d.ts +2 -2
- package/dist-types/ts3.4/waiters/waitForWorkspaceActive.d.ts +13 -7
- package/dist-types/ts3.4/waiters/waitForWorkspaceDeleted.d.ts +13 -7
- package/package.json +35 -35
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
|
|
23
|
+
export declare class PutRuleGroupsNamespaceCommand extends $Command<
|
|
24
|
+
PutRuleGroupsNamespaceCommandInput,
|
|
25
|
+
PutRuleGroupsNamespaceCommandOutput,
|
|
26
|
+
AmpClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: PutRuleGroupsNamespaceCommandInput;
|
|
29
|
+
constructor(input: PutRuleGroupsNamespaceCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmpClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
PutRuleGroupsNamespaceCommandInput,
|
|
37
|
+
PutRuleGroupsNamespaceCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
|
|
19
|
+
export declare class TagResourceCommand extends $Command<
|
|
20
|
+
TagResourceCommandInput,
|
|
21
|
+
TagResourceCommandOutput,
|
|
22
|
+
AmpClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: TagResourceCommandInput;
|
|
25
|
+
constructor(input: TagResourceCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AmpClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
|
|
22
|
+
export declare class UntagResourceCommand extends $Command<
|
|
23
|
+
UntagResourceCommandInput,
|
|
24
|
+
UntagResourceCommandOutput,
|
|
25
|
+
AmpClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UntagResourceCommandInput;
|
|
28
|
+
constructor(input: UntagResourceCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: AmpClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
|
|
23
|
+
export declare class UpdateLoggingConfigurationCommand extends $Command<
|
|
24
|
+
UpdateLoggingConfigurationCommandInput,
|
|
25
|
+
UpdateLoggingConfigurationCommandOutput,
|
|
26
|
+
AmpClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateLoggingConfigurationCommandInput;
|
|
29
|
+
constructor(input: UpdateLoggingConfigurationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmpClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
UpdateLoggingConfigurationCommandInput,
|
|
37
|
+
UpdateLoggingConfigurationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
|
|
18
|
+
export declare class UpdateWorkspaceAliasCommand extends $Command<
|
|
19
|
+
UpdateWorkspaceAliasCommandInput,
|
|
20
|
+
UpdateWorkspaceAliasCommandOutput,
|
|
21
|
+
AmpClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: UpdateWorkspaceAliasCommandInput;
|
|
24
|
+
constructor(input: UpdateWorkspaceAliasCommandInput);
|
|
25
|
+
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: AmpClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<
|
|
31
|
+
UpdateWorkspaceAliasCommandInput,
|
|
32
|
+
UpdateWorkspaceAliasCommandOutput
|
|
33
|
+
>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -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,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class AmpServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|