@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,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 { DeleteLoggingConfigurationRequest } from "../models/models_0";
|
|
14
|
+
export interface DeleteLoggingConfigurationCommandInput
|
|
15
|
+
extends DeleteLoggingConfigurationRequest {}
|
|
16
|
+
export interface DeleteLoggingConfigurationCommandOutput
|
|
17
|
+
extends __MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteLoggingConfigurationCommand extends $Command<
|
|
20
|
+
DeleteLoggingConfigurationCommandInput,
|
|
21
|
+
DeleteLoggingConfigurationCommandOutput,
|
|
22
|
+
AmpClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteLoggingConfigurationCommandInput;
|
|
25
|
+
constructor(input: DeleteLoggingConfigurationCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AmpClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
DeleteLoggingConfigurationCommandInput,
|
|
33
|
+
DeleteLoggingConfigurationCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -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 { DeleteRuleGroupsNamespaceRequest } from "../models/models_0";
|
|
14
|
+
export interface DeleteRuleGroupsNamespaceCommandInput
|
|
15
|
+
extends DeleteRuleGroupsNamespaceRequest {}
|
|
16
|
+
export interface DeleteRuleGroupsNamespaceCommandOutput
|
|
17
|
+
extends __MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteRuleGroupsNamespaceCommand extends $Command<
|
|
20
|
+
DeleteRuleGroupsNamespaceCommandInput,
|
|
21
|
+
DeleteRuleGroupsNamespaceCommandOutput,
|
|
22
|
+
AmpClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteRuleGroupsNamespaceCommandInput;
|
|
25
|
+
constructor(input: DeleteRuleGroupsNamespaceCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: AmpClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
DeleteRuleGroupsNamespaceCommandInput,
|
|
33
|
+
DeleteRuleGroupsNamespaceCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
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 { DeleteWorkspaceRequest } from "../models/models_0";
|
|
14
|
+
export interface DeleteWorkspaceCommandInput extends DeleteWorkspaceRequest {}
|
|
15
|
+
export interface DeleteWorkspaceCommandOutput extends __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class DeleteWorkspaceCommand extends $Command<
|
|
18
|
+
DeleteWorkspaceCommandInput,
|
|
19
|
+
DeleteWorkspaceCommandOutput,
|
|
20
|
+
AmpClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: DeleteWorkspaceCommandInput;
|
|
23
|
+
constructor(input: DeleteWorkspaceCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: AmpClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -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
|
+
DescribeAlertManagerDefinitionRequest,
|
|
15
|
+
DescribeAlertManagerDefinitionResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeAlertManagerDefinitionCommandInput
|
|
18
|
+
extends DescribeAlertManagerDefinitionRequest {}
|
|
19
|
+
export interface DescribeAlertManagerDefinitionCommandOutput
|
|
20
|
+
extends DescribeAlertManagerDefinitionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeAlertManagerDefinitionCommand extends $Command<
|
|
24
|
+
DescribeAlertManagerDefinitionCommandInput,
|
|
25
|
+
DescribeAlertManagerDefinitionCommandOutput,
|
|
26
|
+
AmpClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeAlertManagerDefinitionCommandInput;
|
|
29
|
+
constructor(input: DescribeAlertManagerDefinitionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmpClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeAlertManagerDefinitionCommandInput,
|
|
37
|
+
DescribeAlertManagerDefinitionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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
|
+
DescribeLoggingConfigurationRequest,
|
|
15
|
+
DescribeLoggingConfigurationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeLoggingConfigurationCommandInput
|
|
18
|
+
extends DescribeLoggingConfigurationRequest {}
|
|
19
|
+
export interface DescribeLoggingConfigurationCommandOutput
|
|
20
|
+
extends DescribeLoggingConfigurationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeLoggingConfigurationCommand extends $Command<
|
|
24
|
+
DescribeLoggingConfigurationCommandInput,
|
|
25
|
+
DescribeLoggingConfigurationCommandOutput,
|
|
26
|
+
AmpClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeLoggingConfigurationCommandInput;
|
|
29
|
+
constructor(input: DescribeLoggingConfigurationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmpClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeLoggingConfigurationCommandInput,
|
|
37
|
+
DescribeLoggingConfigurationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -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
|
+
DescribeRuleGroupsNamespaceRequest,
|
|
15
|
+
DescribeRuleGroupsNamespaceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeRuleGroupsNamespaceCommandInput
|
|
18
|
+
extends DescribeRuleGroupsNamespaceRequest {}
|
|
19
|
+
export interface DescribeRuleGroupsNamespaceCommandOutput
|
|
20
|
+
extends DescribeRuleGroupsNamespaceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeRuleGroupsNamespaceCommand extends $Command<
|
|
24
|
+
DescribeRuleGroupsNamespaceCommandInput,
|
|
25
|
+
DescribeRuleGroupsNamespaceCommandOutput,
|
|
26
|
+
AmpClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeRuleGroupsNamespaceCommandInput;
|
|
29
|
+
constructor(input: DescribeRuleGroupsNamespaceCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmpClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeRuleGroupsNamespaceCommandInput,
|
|
37
|
+
DescribeRuleGroupsNamespaceCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
DescribeWorkspaceRequest,
|
|
15
|
+
DescribeWorkspaceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeWorkspaceCommandInput
|
|
18
|
+
extends DescribeWorkspaceRequest {}
|
|
19
|
+
export interface DescribeWorkspaceCommandOutput
|
|
20
|
+
extends DescribeWorkspaceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DescribeWorkspaceCommand extends $Command<
|
|
24
|
+
DescribeWorkspaceCommandInput,
|
|
25
|
+
DescribeWorkspaceCommandOutput,
|
|
26
|
+
AmpClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeWorkspaceCommandInput;
|
|
29
|
+
constructor(input: DescribeWorkspaceCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmpClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DescribeWorkspaceCommandInput, DescribeWorkspaceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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
|
+
ListRuleGroupsNamespacesRequest,
|
|
15
|
+
ListRuleGroupsNamespacesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListRuleGroupsNamespacesCommandInput
|
|
18
|
+
extends ListRuleGroupsNamespacesRequest {}
|
|
19
|
+
export interface ListRuleGroupsNamespacesCommandOutput
|
|
20
|
+
extends ListRuleGroupsNamespacesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListRuleGroupsNamespacesCommand extends $Command<
|
|
24
|
+
ListRuleGroupsNamespacesCommandInput,
|
|
25
|
+
ListRuleGroupsNamespacesCommandOutput,
|
|
26
|
+
AmpClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListRuleGroupsNamespacesCommandInput;
|
|
29
|
+
constructor(input: ListRuleGroupsNamespacesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmpClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListRuleGroupsNamespacesCommandInput,
|
|
37
|
+
ListRuleGroupsNamespacesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
24
|
+
ListTagsForResourceCommandInput,
|
|
25
|
+
ListTagsForResourceCommandOutput,
|
|
26
|
+
AmpClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmpClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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
|
+
ListWorkspacesRequest,
|
|
15
|
+
ListWorkspacesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListWorkspacesCommandInput extends ListWorkspacesRequest {}
|
|
18
|
+
export interface ListWorkspacesCommandOutput
|
|
19
|
+
extends ListWorkspacesResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class ListWorkspacesCommand extends $Command<
|
|
23
|
+
ListWorkspacesCommandInput,
|
|
24
|
+
ListWorkspacesCommandOutput,
|
|
25
|
+
AmpClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListWorkspacesCommandInput;
|
|
28
|
+
constructor(input: ListWorkspacesCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: AmpClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListWorkspacesCommandInput, ListWorkspacesCommandOutput>;
|
|
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
|
+
PutAlertManagerDefinitionRequest,
|
|
15
|
+
PutAlertManagerDefinitionResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface PutAlertManagerDefinitionCommandInput
|
|
18
|
+
extends PutAlertManagerDefinitionRequest {}
|
|
19
|
+
export interface PutAlertManagerDefinitionCommandOutput
|
|
20
|
+
extends PutAlertManagerDefinitionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class PutAlertManagerDefinitionCommand extends $Command<
|
|
24
|
+
PutAlertManagerDefinitionCommandInput,
|
|
25
|
+
PutAlertManagerDefinitionCommandOutput,
|
|
26
|
+
AmpClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: PutAlertManagerDefinitionCommandInput;
|
|
29
|
+
constructor(input: PutAlertManagerDefinitionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: AmpClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
PutAlertManagerDefinitionCommandInput,
|
|
37
|
+
PutAlertManagerDefinitionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|