@aws-sdk/client-amp 3.288.0 → 3.290.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 +22 -0
- package/dist-types/commands/CreateLoggingConfigurationCommand.d.ts +13 -0
- package/dist-types/commands/CreateRuleGroupsNamespaceCommand.d.ts +22 -0
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +19 -0
- package/dist-types/commands/DeleteAlertManagerDefinitionCommand.d.ts +19 -0
- package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRuleGroupsNamespaceCommand.d.ts +19 -0
- package/dist-types/commands/DeleteWorkspaceCommand.d.ts +19 -0
- package/dist-types/commands/DescribeAlertManagerDefinitionCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLoggingConfigurationCommand.d.ts +13 -0
- package/dist-types/commands/DescribeRuleGroupsNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/DescribeWorkspaceCommand.d.ts +16 -0
- package/dist-types/commands/ListRuleGroupsNamespacesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkspacesCommand.d.ts +13 -0
- package/dist-types/commands/PutAlertManagerDefinitionCommand.d.ts +22 -0
- package/dist-types/commands/PutRuleGroupsNamespaceCommand.d.ts +22 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateLoggingConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWorkspaceAliasCommand.d.ts +22 -0
- package/package.json +30 -30
|
@@ -29,6 +29,28 @@ export interface CreateAlertManagerDefinitionCommandOutput extends CreateAlertMa
|
|
|
29
29
|
* @see {@link CreateAlertManagerDefinitionCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* Updating or deleting a resource can cause an inconsistent state.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Unexpected error during processing of request.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* Request references a resource which does not exist.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
45
|
+
* Request would cause a service quota to be exceeded.
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* Request was denied due to request throttling.
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
52
|
+
*
|
|
53
|
+
*
|
|
32
54
|
*/
|
|
33
55
|
export declare class CreateAlertManagerDefinitionCommand extends $Command<CreateAlertManagerDefinitionCommandInput, CreateAlertManagerDefinitionCommandOutput, AmpClientResolvedConfig> {
|
|
34
56
|
readonly input: CreateAlertManagerDefinitionCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface CreateLoggingConfigurationCommandOutput extends CreateLoggingCo
|
|
|
29
29
|
* @see {@link CreateLoggingConfigurationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Unexpected error during processing of request.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* Request references a resource which does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class CreateLoggingConfigurationCommand extends $Command<CreateLoggingConfigurationCommandInput, CreateLoggingConfigurationCommandOutput, AmpClientResolvedConfig> {
|
|
34
47
|
readonly input: CreateLoggingConfigurationCommandInput;
|
|
@@ -29,6 +29,28 @@ export interface CreateRuleGroupsNamespaceCommandOutput extends CreateRuleGroups
|
|
|
29
29
|
* @see {@link CreateRuleGroupsNamespaceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* Updating or deleting a resource can cause an inconsistent state.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Unexpected error during processing of request.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* Request references a resource which does not exist.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
45
|
+
* Request would cause a service quota to be exceeded.
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* Request was denied due to request throttling.
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
52
|
+
*
|
|
53
|
+
*
|
|
32
54
|
*/
|
|
33
55
|
export declare class CreateRuleGroupsNamespaceCommand extends $Command<CreateRuleGroupsNamespaceCommandInput, CreateRuleGroupsNamespaceCommandOutput, AmpClientResolvedConfig> {
|
|
34
56
|
readonly input: CreateRuleGroupsNamespaceCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface CreateWorkspaceCommandOutput extends CreateWorkspaceResponse, _
|
|
|
29
29
|
* @see {@link CreateWorkspaceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* Updating or deleting a resource can cause an inconsistent state.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Unexpected error during processing of request.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
42
|
+
* Request would cause a service quota to be exceeded.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* Request was denied due to request throttling.
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class CreateWorkspaceCommand extends $Command<CreateWorkspaceCommandInput, CreateWorkspaceCommandOutput, AmpClientResolvedConfig> {
|
|
34
53
|
readonly input: CreateWorkspaceCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface DeleteAlertManagerDefinitionCommandOutput extends __MetadataBea
|
|
|
29
29
|
* @see {@link DeleteAlertManagerDefinitionCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* Updating or deleting a resource can cause an inconsistent state.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Unexpected error during processing of request.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* Request references a resource which does not exist.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* Request was denied due to request throttling.
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class DeleteAlertManagerDefinitionCommand extends $Command<DeleteAlertManagerDefinitionCommandInput, DeleteAlertManagerDefinitionCommandOutput, AmpClientResolvedConfig> {
|
|
34
53
|
readonly input: DeleteAlertManagerDefinitionCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface DeleteLoggingConfigurationCommandOutput extends __MetadataBeare
|
|
|
29
29
|
* @see {@link DeleteLoggingConfigurationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* Updating or deleting a resource can cause an inconsistent state.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Unexpected error during processing of request.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* Request references a resource which does not exist.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class DeleteLoggingConfigurationCommand extends $Command<DeleteLoggingConfigurationCommandInput, DeleteLoggingConfigurationCommandOutput, AmpClientResolvedConfig> {
|
|
34
50
|
readonly input: DeleteLoggingConfigurationCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface DeleteRuleGroupsNamespaceCommandOutput extends __MetadataBearer
|
|
|
29
29
|
* @see {@link DeleteRuleGroupsNamespaceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* Updating or deleting a resource can cause an inconsistent state.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Unexpected error during processing of request.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* Request references a resource which does not exist.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* Request was denied due to request throttling.
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class DeleteRuleGroupsNamespaceCommand extends $Command<DeleteRuleGroupsNamespaceCommandInput, DeleteRuleGroupsNamespaceCommandOutput, AmpClientResolvedConfig> {
|
|
34
53
|
readonly input: DeleteRuleGroupsNamespaceCommandInput;
|
|
@@ -29,6 +29,25 @@ export interface DeleteWorkspaceCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link DeleteWorkspaceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* Updating or deleting a resource can cause an inconsistent state.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Unexpected error during processing of request.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* Request references a resource which does not exist.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
45
|
+
* Request was denied due to request throttling.
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
49
|
+
*
|
|
50
|
+
*
|
|
32
51
|
*/
|
|
33
52
|
export declare class DeleteWorkspaceCommand extends $Command<DeleteWorkspaceCommandInput, DeleteWorkspaceCommandOutput, AmpClientResolvedConfig> {
|
|
34
53
|
readonly input: DeleteWorkspaceCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface DescribeAlertManagerDefinitionCommandOutput extends DescribeAle
|
|
|
29
29
|
* @see {@link DescribeAlertManagerDefinitionCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Unexpected error during processing of request.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* Request references a resource which does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class DescribeAlertManagerDefinitionCommand extends $Command<DescribeAlertManagerDefinitionCommandInput, DescribeAlertManagerDefinitionCommandOutput, AmpClientResolvedConfig> {
|
|
34
50
|
readonly input: DescribeAlertManagerDefinitionCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface DescribeLoggingConfigurationCommandOutput extends DescribeLoggi
|
|
|
29
29
|
* @see {@link DescribeLoggingConfigurationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Unexpected error during processing of request.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* Request references a resource which does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class DescribeLoggingConfigurationCommand extends $Command<DescribeLoggingConfigurationCommandInput, DescribeLoggingConfigurationCommandOutput, AmpClientResolvedConfig> {
|
|
34
47
|
readonly input: DescribeLoggingConfigurationCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface DescribeRuleGroupsNamespaceCommandOutput extends DescribeRuleGr
|
|
|
29
29
|
* @see {@link DescribeRuleGroupsNamespaceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Unexpected error during processing of request.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* Request references a resource which does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class DescribeRuleGroupsNamespaceCommand extends $Command<DescribeRuleGroupsNamespaceCommandInput, DescribeRuleGroupsNamespaceCommandOutput, AmpClientResolvedConfig> {
|
|
34
50
|
readonly input: DescribeRuleGroupsNamespaceCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface DescribeWorkspaceCommandOutput extends DescribeWorkspaceRespons
|
|
|
29
29
|
* @see {@link DescribeWorkspaceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Unexpected error during processing of request.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* Request references a resource which does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class DescribeWorkspaceCommand extends $Command<DescribeWorkspaceCommandInput, DescribeWorkspaceCommandOutput, AmpClientResolvedConfig> {
|
|
34
50
|
readonly input: DescribeWorkspaceCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface ListRuleGroupsNamespacesCommandOutput extends ListRuleGroupsNam
|
|
|
29
29
|
* @see {@link ListRuleGroupsNamespacesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Unexpected error during processing of request.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* Request references a resource which does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class ListRuleGroupsNamespacesCommand extends $Command<ListRuleGroupsNamespacesCommandInput, ListRuleGroupsNamespacesCommandOutput, AmpClientResolvedConfig> {
|
|
34
50
|
readonly input: ListRuleGroupsNamespacesCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
29
29
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Unexpected error during processing of request.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* Request references a resource which does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AmpClientResolvedConfig> {
|
|
34
50
|
readonly input: ListTagsForResourceCommandInput;
|
|
@@ -29,6 +29,19 @@ export interface ListWorkspacesCommandOutput extends ListWorkspacesResponse, __M
|
|
|
29
29
|
* @see {@link ListWorkspacesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Unexpected error during processing of request.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
39
|
+
* Request was denied due to request throttling.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ValidationException} (client fault)
|
|
42
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
43
|
+
*
|
|
44
|
+
*
|
|
32
45
|
*/
|
|
33
46
|
export declare class ListWorkspacesCommand extends $Command<ListWorkspacesCommandInput, ListWorkspacesCommandOutput, AmpClientResolvedConfig> {
|
|
34
47
|
readonly input: ListWorkspacesCommandInput;
|
|
@@ -29,6 +29,28 @@ export interface PutAlertManagerDefinitionCommandOutput extends PutAlertManagerD
|
|
|
29
29
|
* @see {@link PutAlertManagerDefinitionCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* Updating or deleting a resource can cause an inconsistent state.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Unexpected error during processing of request.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* Request references a resource which does not exist.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
45
|
+
* Request would cause a service quota to be exceeded.
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* Request was denied due to request throttling.
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
52
|
+
*
|
|
53
|
+
*
|
|
32
54
|
*/
|
|
33
55
|
export declare class PutAlertManagerDefinitionCommand extends $Command<PutAlertManagerDefinitionCommandInput, PutAlertManagerDefinitionCommandOutput, AmpClientResolvedConfig> {
|
|
34
56
|
readonly input: PutAlertManagerDefinitionCommandInput;
|
|
@@ -29,6 +29,28 @@ export interface PutRuleGroupsNamespaceCommandOutput extends PutRuleGroupsNamesp
|
|
|
29
29
|
* @see {@link PutRuleGroupsNamespaceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* Updating or deleting a resource can cause an inconsistent state.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Unexpected error during processing of request.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* Request references a resource which does not exist.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
45
|
+
* Request would cause a service quota to be exceeded.
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* Request was denied due to request throttling.
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
52
|
+
*
|
|
53
|
+
*
|
|
32
54
|
*/
|
|
33
55
|
export declare class PutRuleGroupsNamespaceCommand extends $Command<PutRuleGroupsNamespaceCommandInput, PutRuleGroupsNamespaceCommandOutput, AmpClientResolvedConfig> {
|
|
34
56
|
readonly input: PutRuleGroupsNamespaceCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
29
29
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Unexpected error during processing of request.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* Request references a resource which does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, AmpClientResolvedConfig> {
|
|
34
50
|
readonly input: TagResourceCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
29
29
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerException} (server fault)
|
|
36
|
+
* Unexpected error during processing of request.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
39
|
+
* Request references a resource which does not exist.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
42
|
+
* Request was denied due to request throttling.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, AmpClientResolvedConfig> {
|
|
34
50
|
readonly input: UntagResourceCommandInput;
|
|
@@ -29,6 +29,22 @@ export interface UpdateLoggingConfigurationCommandOutput extends UpdateLoggingCo
|
|
|
29
29
|
* @see {@link UpdateLoggingConfigurationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* Updating or deleting a resource can cause an inconsistent state.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Unexpected error during processing of request.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* Request references a resource which does not exist.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ValidationException} (client fault)
|
|
45
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
46
|
+
*
|
|
47
|
+
*
|
|
32
48
|
*/
|
|
33
49
|
export declare class UpdateLoggingConfigurationCommand extends $Command<UpdateLoggingConfigurationCommandInput, UpdateLoggingConfigurationCommandOutput, AmpClientResolvedConfig> {
|
|
34
50
|
readonly input: UpdateLoggingConfigurationCommandInput;
|
|
@@ -29,6 +29,28 @@ export interface UpdateWorkspaceAliasCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* @see {@link UpdateWorkspaceAliasCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link AmpClientResolvedConfig | config} for AmpClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* User does not have sufficient access to perform this action.
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link ConflictException} (client fault)
|
|
36
|
+
* Updating or deleting a resource can cause an inconsistent state.
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServerException} (server fault)
|
|
39
|
+
* Unexpected error during processing of request.
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
42
|
+
* Request references a resource which does not exist.
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
45
|
+
* Request would cause a service quota to be exceeded.
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
48
|
+
* Request was denied due to request throttling.
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* The input fails to satisfy the constraints specified by an AWS service.
|
|
52
|
+
*
|
|
53
|
+
*
|
|
32
54
|
*/
|
|
33
55
|
export declare class UpdateWorkspaceAliasCommand extends $Command<UpdateWorkspaceAliasCommandInput, UpdateWorkspaceAliasCommandOutput, AmpClientResolvedConfig> {
|
|
34
56
|
readonly input: UpdateWorkspaceAliasCommandInput;
|
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.290.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",
|
|
@@ -20,39 +20,39 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
|
-
"@aws-sdk/util-waiter": "3.
|
|
55
|
+
"@aws-sdk/util-waiter": "3.290.0",
|
|
56
56
|
"tslib": "^2.3.1",
|
|
57
57
|
"uuid": "^8.3.2"
|
|
58
58
|
},
|