@aws-sdk/client-amp 3.321.1 → 3.326.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/dist-types/commands/CreateAlertManagerDefinitionCommand.d.ts +9 -0
- package/dist-types/commands/CreateLoggingConfigurationCommand.d.ts +9 -0
- package/dist-types/commands/CreateRuleGroupsNamespaceCommand.d.ts +14 -0
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +13 -0
- package/dist-types/commands/DeleteAlertManagerDefinitionCommand.d.ts +4 -0
- package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteRuleGroupsNamespaceCommand.d.ts +4 -0
- package/dist-types/commands/DeleteWorkspaceCommand.d.ts +4 -0
- package/dist-types/commands/DescribeAlertManagerDefinitionCommand.d.ts +14 -0
- package/dist-types/commands/DescribeLoggingConfigurationCommand.d.ts +15 -0
- package/dist-types/commands/DescribeRuleGroupsNamespaceCommand.d.ts +19 -0
- package/dist-types/commands/DescribeWorkspaceCommand.d.ts +18 -0
- package/dist-types/commands/ListRuleGroupsNamespacesCommand.d.ts +21 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/ListWorkspacesCommand.d.ts +20 -0
- package/dist-types/commands/PutAlertManagerDefinitionCommand.d.ts +9 -0
- package/dist-types/commands/PutRuleGroupsNamespaceCommand.d.ts +14 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateLoggingConfigurationCommand.d.ts +9 -0
- package/dist-types/commands/UpdateWorkspaceAliasCommand.d.ts +4 -0
- package/package.json +16 -16
|
@@ -33,6 +33,13 @@ export interface CreateAlertManagerDefinitionCommandOutput extends CreateAlertMa
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new CreateAlertManagerDefinitionCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // CreateAlertManagerDefinitionResponse
|
|
37
|
+
* // status: { // AlertManagerDefinitionStatus
|
|
38
|
+
* // statusCode: "STRING_VALUE", // required
|
|
39
|
+
* // statusReason: "STRING_VALUE",
|
|
40
|
+
* // },
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
36
43
|
* ```
|
|
37
44
|
*
|
|
38
45
|
* @param CreateAlertManagerDefinitionCommandInput - {@link CreateAlertManagerDefinitionCommandInput}
|
|
@@ -62,6 +69,8 @@ export interface CreateAlertManagerDefinitionCommandOutput extends CreateAlertMa
|
|
|
62
69
|
* @throws {@link ValidationException} (client fault)
|
|
63
70
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
64
71
|
*
|
|
72
|
+
* @throws {@link AmpServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
65
74
|
*
|
|
66
75
|
*/
|
|
67
76
|
export declare class CreateAlertManagerDefinitionCommand extends $Command<CreateAlertManagerDefinitionCommandInput, CreateAlertManagerDefinitionCommandOutput, AmpClientResolvedConfig> {
|
|
@@ -33,6 +33,13 @@ export interface CreateLoggingConfigurationCommandOutput extends CreateLoggingCo
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new CreateLoggingConfigurationCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // CreateLoggingConfigurationResponse
|
|
37
|
+
* // status: { // LoggingConfigurationStatus
|
|
38
|
+
* // statusCode: "STRING_VALUE", // required
|
|
39
|
+
* // statusReason: "STRING_VALUE",
|
|
40
|
+
* // },
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
36
43
|
* ```
|
|
37
44
|
*
|
|
38
45
|
* @param CreateLoggingConfigurationCommandInput - {@link CreateLoggingConfigurationCommandInput}
|
|
@@ -53,6 +60,8 @@ export interface CreateLoggingConfigurationCommandOutput extends CreateLoggingCo
|
|
|
53
60
|
* @throws {@link ValidationException} (client fault)
|
|
54
61
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
55
62
|
*
|
|
63
|
+
* @throws {@link AmpServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
56
65
|
*
|
|
57
66
|
*/
|
|
58
67
|
export declare class CreateLoggingConfigurationCommand extends $Command<CreateLoggingConfigurationCommandInput, CreateLoggingConfigurationCommandOutput, AmpClientResolvedConfig> {
|
|
@@ -37,6 +37,18 @@ export interface CreateRuleGroupsNamespaceCommandOutput extends CreateRuleGroups
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new CreateRuleGroupsNamespaceCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // CreateRuleGroupsNamespaceResponse
|
|
41
|
+
* // name: "STRING_VALUE", // required
|
|
42
|
+
* // arn: "STRING_VALUE", // required
|
|
43
|
+
* // status: { // RuleGroupsNamespaceStatus
|
|
44
|
+
* // statusCode: "STRING_VALUE", // required
|
|
45
|
+
* // statusReason: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // tags: { // TagMap
|
|
48
|
+
* // "<keys>": "STRING_VALUE",
|
|
49
|
+
* // },
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
40
52
|
* ```
|
|
41
53
|
*
|
|
42
54
|
* @param CreateRuleGroupsNamespaceCommandInput - {@link CreateRuleGroupsNamespaceCommandInput}
|
|
@@ -66,6 +78,8 @@ export interface CreateRuleGroupsNamespaceCommandOutput extends CreateRuleGroups
|
|
|
66
78
|
* @throws {@link ValidationException} (client fault)
|
|
67
79
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
68
80
|
*
|
|
81
|
+
* @throws {@link AmpServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
69
83
|
*
|
|
70
84
|
*/
|
|
71
85
|
export declare class CreateRuleGroupsNamespaceCommand extends $Command<CreateRuleGroupsNamespaceCommandInput, CreateRuleGroupsNamespaceCommandOutput, AmpClientResolvedConfig> {
|
|
@@ -35,6 +35,17 @@ export interface CreateWorkspaceCommandOutput extends CreateWorkspaceResponse, _
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new CreateWorkspaceCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // CreateWorkspaceResponse
|
|
39
|
+
* // workspaceId: "STRING_VALUE", // required
|
|
40
|
+
* // arn: "STRING_VALUE", // required
|
|
41
|
+
* // status: { // WorkspaceStatus
|
|
42
|
+
* // statusCode: "STRING_VALUE", // required
|
|
43
|
+
* // },
|
|
44
|
+
* // tags: { // TagMap
|
|
45
|
+
* // "<keys>": "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
38
49
|
* ```
|
|
39
50
|
*
|
|
40
51
|
* @param CreateWorkspaceCommandInput - {@link CreateWorkspaceCommandInput}
|
|
@@ -61,6 +72,8 @@ export interface CreateWorkspaceCommandOutput extends CreateWorkspaceResponse, _
|
|
|
61
72
|
* @throws {@link ValidationException} (client fault)
|
|
62
73
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
63
74
|
*
|
|
75
|
+
* @throws {@link AmpServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
64
77
|
*
|
|
65
78
|
*/
|
|
66
79
|
export declare class CreateWorkspaceCommand extends $Command<CreateWorkspaceCommandInput, CreateWorkspaceCommandOutput, AmpClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteAlertManagerDefinitionCommandOutput extends __MetadataBea
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteAlertManagerDefinitionCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteAlertManagerDefinitionCommandInput - {@link DeleteAlertManagerDefinitionCommandInput}
|
|
@@ -58,6 +60,8 @@ export interface DeleteAlertManagerDefinitionCommandOutput extends __MetadataBea
|
|
|
58
60
|
* @throws {@link ValidationException} (client fault)
|
|
59
61
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
60
62
|
*
|
|
63
|
+
* @throws {@link AmpServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
61
65
|
*
|
|
62
66
|
*/
|
|
63
67
|
export declare class DeleteAlertManagerDefinitionCommand extends $Command<DeleteAlertManagerDefinitionCommandInput, DeleteAlertManagerDefinitionCommandOutput, AmpClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteLoggingConfigurationCommandOutput extends __MetadataBeare
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteLoggingConfigurationCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteLoggingConfigurationCommandInput - {@link DeleteLoggingConfigurationCommandInput}
|
|
@@ -55,6 +57,8 @@ export interface DeleteLoggingConfigurationCommandOutput extends __MetadataBeare
|
|
|
55
57
|
* @throws {@link ValidationException} (client fault)
|
|
56
58
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
57
59
|
*
|
|
60
|
+
* @throws {@link AmpServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
58
62
|
*
|
|
59
63
|
*/
|
|
60
64
|
export declare class DeleteLoggingConfigurationCommand extends $Command<DeleteLoggingConfigurationCommandInput, DeleteLoggingConfigurationCommandOutput, AmpClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface DeleteRuleGroupsNamespaceCommandOutput extends __MetadataBearer
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteRuleGroupsNamespaceCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DeleteRuleGroupsNamespaceCommandInput - {@link DeleteRuleGroupsNamespaceCommandInput}
|
|
@@ -59,6 +61,8 @@ export interface DeleteRuleGroupsNamespaceCommandOutput extends __MetadataBearer
|
|
|
59
61
|
* @throws {@link ValidationException} (client fault)
|
|
60
62
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
61
63
|
*
|
|
64
|
+
* @throws {@link AmpServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
62
66
|
*
|
|
63
67
|
*/
|
|
64
68
|
export declare class DeleteRuleGroupsNamespaceCommand extends $Command<DeleteRuleGroupsNamespaceCommandInput, DeleteRuleGroupsNamespaceCommandOutput, AmpClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteWorkspaceCommandOutput extends __MetadataBearer {
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteWorkspaceCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteWorkspaceCommandInput - {@link DeleteWorkspaceCommandInput}
|
|
@@ -58,6 +60,8 @@ export interface DeleteWorkspaceCommandOutput extends __MetadataBearer {
|
|
|
58
60
|
* @throws {@link ValidationException} (client fault)
|
|
59
61
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
60
62
|
*
|
|
63
|
+
* @throws {@link AmpServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
61
65
|
*
|
|
62
66
|
*/
|
|
63
67
|
export declare class DeleteWorkspaceCommand extends $Command<DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput, AmpClientResolvedConfig> {
|
|
@@ -31,6 +31,18 @@ export interface DescribeAlertManagerDefinitionCommandOutput extends DescribeAle
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeAlertManagerDefinitionCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeAlertManagerDefinitionResponse
|
|
35
|
+
* // alertManagerDefinition: { // AlertManagerDefinitionDescription
|
|
36
|
+
* // status: { // AlertManagerDefinitionStatus
|
|
37
|
+
* // statusCode: "STRING_VALUE", // required
|
|
38
|
+
* // statusReason: "STRING_VALUE",
|
|
39
|
+
* // },
|
|
40
|
+
* // data: "BLOB_VALUE", // required
|
|
41
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
42
|
+
* // modifiedAt: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // },
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
34
46
|
* ```
|
|
35
47
|
*
|
|
36
48
|
* @param DescribeAlertManagerDefinitionCommandInput - {@link DescribeAlertManagerDefinitionCommandInput}
|
|
@@ -54,6 +66,8 @@ export interface DescribeAlertManagerDefinitionCommandOutput extends DescribeAle
|
|
|
54
66
|
* @throws {@link ValidationException} (client fault)
|
|
55
67
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
56
68
|
*
|
|
69
|
+
* @throws {@link AmpServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
57
71
|
*
|
|
58
72
|
*/
|
|
59
73
|
export declare class DescribeAlertManagerDefinitionCommand extends $Command<DescribeAlertManagerDefinitionCommandInput, DescribeAlertManagerDefinitionCommandOutput, AmpClientResolvedConfig> {
|
|
@@ -31,6 +31,19 @@ export interface DescribeLoggingConfigurationCommandOutput extends DescribeLoggi
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeLoggingConfigurationCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeLoggingConfigurationResponse
|
|
35
|
+
* // loggingConfiguration: { // LoggingConfigurationMetadata
|
|
36
|
+
* // status: { // LoggingConfigurationStatus
|
|
37
|
+
* // statusCode: "STRING_VALUE", // required
|
|
38
|
+
* // statusReason: "STRING_VALUE",
|
|
39
|
+
* // },
|
|
40
|
+
* // workspace: "STRING_VALUE", // required
|
|
41
|
+
* // logGroupArn: "STRING_VALUE", // required
|
|
42
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // modifiedAt: new Date("TIMESTAMP"), // required
|
|
44
|
+
* // },
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
34
47
|
* ```
|
|
35
48
|
*
|
|
36
49
|
* @param DescribeLoggingConfigurationCommandInput - {@link DescribeLoggingConfigurationCommandInput}
|
|
@@ -51,6 +64,8 @@ export interface DescribeLoggingConfigurationCommandOutput extends DescribeLoggi
|
|
|
51
64
|
* @throws {@link ValidationException} (client fault)
|
|
52
65
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
53
66
|
*
|
|
67
|
+
* @throws {@link AmpServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
54
69
|
*
|
|
55
70
|
*/
|
|
56
71
|
export declare class DescribeLoggingConfigurationCommand extends $Command<DescribeLoggingConfigurationCommandInput, DescribeLoggingConfigurationCommandOutput, AmpClientResolvedConfig> {
|
|
@@ -32,6 +32,23 @@ export interface DescribeRuleGroupsNamespaceCommandOutput extends DescribeRuleGr
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeRuleGroupsNamespaceCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeRuleGroupsNamespaceResponse
|
|
36
|
+
* // ruleGroupsNamespace: { // RuleGroupsNamespaceDescription
|
|
37
|
+
* // arn: "STRING_VALUE", // required
|
|
38
|
+
* // name: "STRING_VALUE", // required
|
|
39
|
+
* // status: { // RuleGroupsNamespaceStatus
|
|
40
|
+
* // statusCode: "STRING_VALUE", // required
|
|
41
|
+
* // statusReason: "STRING_VALUE",
|
|
42
|
+
* // },
|
|
43
|
+
* // data: "BLOB_VALUE", // required
|
|
44
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
45
|
+
* // modifiedAt: new Date("TIMESTAMP"), // required
|
|
46
|
+
* // tags: { // TagMap
|
|
47
|
+
* // "<keys>": "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // },
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
35
52
|
* ```
|
|
36
53
|
*
|
|
37
54
|
* @param DescribeRuleGroupsNamespaceCommandInput - {@link DescribeRuleGroupsNamespaceCommandInput}
|
|
@@ -55,6 +72,8 @@ export interface DescribeRuleGroupsNamespaceCommandOutput extends DescribeRuleGr
|
|
|
55
72
|
* @throws {@link ValidationException} (client fault)
|
|
56
73
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
57
74
|
*
|
|
75
|
+
* @throws {@link AmpServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
58
77
|
*
|
|
59
78
|
*/
|
|
60
79
|
export declare class DescribeRuleGroupsNamespaceCommand extends $Command<DescribeRuleGroupsNamespaceCommandInput, DescribeRuleGroupsNamespaceCommandOutput, AmpClientResolvedConfig> {
|
|
@@ -31,6 +31,22 @@ export interface DescribeWorkspaceCommandOutput extends DescribeWorkspaceRespons
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeWorkspaceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeWorkspaceResponse
|
|
35
|
+
* // workspace: { // WorkspaceDescription
|
|
36
|
+
* // workspaceId: "STRING_VALUE", // required
|
|
37
|
+
* // alias: "STRING_VALUE",
|
|
38
|
+
* // arn: "STRING_VALUE", // required
|
|
39
|
+
* // status: { // WorkspaceStatus
|
|
40
|
+
* // statusCode: "STRING_VALUE", // required
|
|
41
|
+
* // },
|
|
42
|
+
* // prometheusEndpoint: "STRING_VALUE",
|
|
43
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
44
|
+
* // tags: { // TagMap
|
|
45
|
+
* // "<keys>": "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // },
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
34
50
|
* ```
|
|
35
51
|
*
|
|
36
52
|
* @param DescribeWorkspaceCommandInput - {@link DescribeWorkspaceCommandInput}
|
|
@@ -54,6 +70,8 @@ export interface DescribeWorkspaceCommandOutput extends DescribeWorkspaceRespons
|
|
|
54
70
|
* @throws {@link ValidationException} (client fault)
|
|
55
71
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
56
72
|
*
|
|
73
|
+
* @throws {@link AmpServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
57
75
|
*
|
|
58
76
|
*/
|
|
59
77
|
export declare class DescribeWorkspaceCommand extends $Command<DescribeWorkspaceCommandInput, DescribeWorkspaceCommandOutput, AmpClientResolvedConfig> {
|
|
@@ -34,6 +34,25 @@ export interface ListRuleGroupsNamespacesCommandOutput extends ListRuleGroupsNam
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListRuleGroupsNamespacesCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListRuleGroupsNamespacesResponse
|
|
38
|
+
* // ruleGroupsNamespaces: [ // RuleGroupsNamespaceSummaryList // required
|
|
39
|
+
* // { // RuleGroupsNamespaceSummary
|
|
40
|
+
* // arn: "STRING_VALUE", // required
|
|
41
|
+
* // name: "STRING_VALUE", // required
|
|
42
|
+
* // status: { // RuleGroupsNamespaceStatus
|
|
43
|
+
* // statusCode: "STRING_VALUE", // required
|
|
44
|
+
* // statusReason: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
47
|
+
* // modifiedAt: new Date("TIMESTAMP"), // required
|
|
48
|
+
* // tags: { // TagMap
|
|
49
|
+
* // "<keys>": "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // nextToken: "STRING_VALUE",
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
37
56
|
* ```
|
|
38
57
|
*
|
|
39
58
|
* @param ListRuleGroupsNamespacesCommandInput - {@link ListRuleGroupsNamespacesCommandInput}
|
|
@@ -57,6 +76,8 @@ export interface ListRuleGroupsNamespacesCommandOutput extends ListRuleGroupsNam
|
|
|
57
76
|
* @throws {@link ValidationException} (client fault)
|
|
58
77
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
59
78
|
*
|
|
79
|
+
* @throws {@link AmpServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
60
81
|
*
|
|
61
82
|
*/
|
|
62
83
|
export declare class ListRuleGroupsNamespacesCommand extends $Command<ListRuleGroupsNamespacesCommandInput, ListRuleGroupsNamespacesCommandOutput, AmpClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // tags: { // TagMap
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -54,6 +60,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
54
60
|
* @throws {@link ValidationException} (client fault)
|
|
55
61
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
56
62
|
*
|
|
63
|
+
* @throws {@link AmpServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
57
65
|
*
|
|
58
66
|
*/
|
|
59
67
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AmpClientResolvedConfig> {
|
|
@@ -33,6 +33,24 @@ export interface ListWorkspacesCommandOutput extends ListWorkspacesResponse, __M
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListWorkspacesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListWorkspacesResponse
|
|
37
|
+
* // workspaces: [ // WorkspaceSummaryList // required
|
|
38
|
+
* // { // WorkspaceSummary
|
|
39
|
+
* // workspaceId: "STRING_VALUE", // required
|
|
40
|
+
* // alias: "STRING_VALUE",
|
|
41
|
+
* // arn: "STRING_VALUE", // required
|
|
42
|
+
* // status: { // WorkspaceStatus
|
|
43
|
+
* // statusCode: "STRING_VALUE", // required
|
|
44
|
+
* // },
|
|
45
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
46
|
+
* // tags: { // TagMap
|
|
47
|
+
* // "<keys>": "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // nextToken: "STRING_VALUE",
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
36
54
|
* ```
|
|
37
55
|
*
|
|
38
56
|
* @param ListWorkspacesCommandInput - {@link ListWorkspacesCommandInput}
|
|
@@ -53,6 +71,8 @@ export interface ListWorkspacesCommandOutput extends ListWorkspacesResponse, __M
|
|
|
53
71
|
* @throws {@link ValidationException} (client fault)
|
|
54
72
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
55
73
|
*
|
|
74
|
+
* @throws {@link AmpServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
56
76
|
*
|
|
57
77
|
*/
|
|
58
78
|
export declare class ListWorkspacesCommand extends $Command<ListWorkspacesCommandInput, ListWorkspacesCommandOutput, AmpClientResolvedConfig> {
|
|
@@ -33,6 +33,13 @@ export interface PutAlertManagerDefinitionCommandOutput extends PutAlertManagerD
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new PutAlertManagerDefinitionCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // PutAlertManagerDefinitionResponse
|
|
37
|
+
* // status: { // AlertManagerDefinitionStatus
|
|
38
|
+
* // statusCode: "STRING_VALUE", // required
|
|
39
|
+
* // statusReason: "STRING_VALUE",
|
|
40
|
+
* // },
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
36
43
|
* ```
|
|
37
44
|
*
|
|
38
45
|
* @param PutAlertManagerDefinitionCommandInput - {@link PutAlertManagerDefinitionCommandInput}
|
|
@@ -62,6 +69,8 @@ export interface PutAlertManagerDefinitionCommandOutput extends PutAlertManagerD
|
|
|
62
69
|
* @throws {@link ValidationException} (client fault)
|
|
63
70
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
64
71
|
*
|
|
72
|
+
* @throws {@link AmpServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
65
74
|
*
|
|
66
75
|
*/
|
|
67
76
|
export declare class PutAlertManagerDefinitionCommand extends $Command<PutAlertManagerDefinitionCommandInput, PutAlertManagerDefinitionCommandOutput, AmpClientResolvedConfig> {
|
|
@@ -34,6 +34,18 @@ export interface PutRuleGroupsNamespaceCommandOutput extends PutRuleGroupsNamesp
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new PutRuleGroupsNamespaceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // PutRuleGroupsNamespaceResponse
|
|
38
|
+
* // name: "STRING_VALUE", // required
|
|
39
|
+
* // arn: "STRING_VALUE", // required
|
|
40
|
+
* // status: { // RuleGroupsNamespaceStatus
|
|
41
|
+
* // statusCode: "STRING_VALUE", // required
|
|
42
|
+
* // statusReason: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // tags: { // TagMap
|
|
45
|
+
* // "<keys>": "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
37
49
|
* ```
|
|
38
50
|
*
|
|
39
51
|
* @param PutRuleGroupsNamespaceCommandInput - {@link PutRuleGroupsNamespaceCommandInput}
|
|
@@ -63,6 +75,8 @@ export interface PutRuleGroupsNamespaceCommandOutput extends PutRuleGroupsNamesp
|
|
|
63
75
|
* @throws {@link ValidationException} (client fault)
|
|
64
76
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
65
77
|
*
|
|
78
|
+
* @throws {@link AmpServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
66
80
|
*
|
|
67
81
|
*/
|
|
68
82
|
export declare class PutRuleGroupsNamespaceCommand extends $Command<PutRuleGroupsNamespaceCommandInput, PutRuleGroupsNamespaceCommandOutput, AmpClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
57
59
|
* @throws {@link ValidationException} (client fault)
|
|
58
60
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link AmpServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, AmpClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -57,6 +59,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
57
59
|
* @throws {@link ValidationException} (client fault)
|
|
58
60
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
59
61
|
*
|
|
62
|
+
* @throws {@link AmpServiceException}
|
|
63
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
60
64
|
*
|
|
61
65
|
*/
|
|
62
66
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, AmpClientResolvedConfig> {
|
|
@@ -33,6 +33,13 @@ export interface UpdateLoggingConfigurationCommandOutput extends UpdateLoggingCo
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new UpdateLoggingConfigurationCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // UpdateLoggingConfigurationResponse
|
|
37
|
+
* // status: { // LoggingConfigurationStatus
|
|
38
|
+
* // statusCode: "STRING_VALUE", // required
|
|
39
|
+
* // statusReason: "STRING_VALUE",
|
|
40
|
+
* // },
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
36
43
|
* ```
|
|
37
44
|
*
|
|
38
45
|
* @param UpdateLoggingConfigurationCommandInput - {@link UpdateLoggingConfigurationCommandInput}
|
|
@@ -56,6 +63,8 @@ export interface UpdateLoggingConfigurationCommandOutput extends UpdateLoggingCo
|
|
|
56
63
|
* @throws {@link ValidationException} (client fault)
|
|
57
64
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
58
65
|
*
|
|
66
|
+
* @throws {@link AmpServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
59
68
|
*
|
|
60
69
|
*/
|
|
61
70
|
export declare class UpdateLoggingConfigurationCommand extends $Command<UpdateLoggingConfigurationCommandInput, UpdateLoggingConfigurationCommandOutput, AmpClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface UpdateWorkspaceAliasCommandOutput extends __MetadataBearer {
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new UpdateWorkspaceAliasCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param UpdateWorkspaceAliasCommandInput - {@link UpdateWorkspaceAliasCommandInput}
|
|
@@ -62,6 +64,8 @@ export interface UpdateWorkspaceAliasCommandOutput extends __MetadataBearer {
|
|
|
62
64
|
* @throws {@link ValidationException} (client fault)
|
|
63
65
|
* The input fails to satisfy the constraints specified by an AWS service.
|
|
64
66
|
*
|
|
67
|
+
* @throws {@link AmpServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from Amp service.</p>
|
|
65
69
|
*
|
|
66
70
|
*/
|
|
67
71
|
export declare class UpdateWorkspaceAliasCommand extends $Command<UpdateWorkspaceAliasCommandInput, UpdateWorkspaceAliasCommandOutput, AmpClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-amp",
|
|
3
3
|
"description": "AWS SDK for JavaScript Amp Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.326.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,33 +21,33 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|