@aws-sdk/client-devops-agent 3.1020.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/LICENSE +201 -0
- package/README.md +526 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +1045 -0
- package/dist-cjs/models/DevOpsAgentServiceException.js +12 -0
- package/dist-cjs/models/errors.js +140 -0
- package/dist-cjs/runtimeConfig.browser.js +40 -0
- package/dist-cjs/runtimeConfig.js +56 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +43 -0
- package/dist-cjs/schemas/schemas_0.js +1891 -0
- package/dist-es/DevOpsAgent.js +119 -0
- package/dist-es/DevOpsAgentClient.js +52 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/dist-es/commands/AllowVendedLogDeliveryForResourceCommand.js +16 -0
- package/dist-es/commands/AssociateServiceCommand.js +16 -0
- package/dist-es/commands/CreateAgentSpaceCommand.js +16 -0
- package/dist-es/commands/CreateBacklogTaskCommand.js +16 -0
- package/dist-es/commands/CreateChatCommand.js +16 -0
- package/dist-es/commands/CreatePrivateConnectionCommand.js +16 -0
- package/dist-es/commands/DeleteAgentSpaceCommand.js +16 -0
- package/dist-es/commands/DeletePrivateConnectionCommand.js +16 -0
- package/dist-es/commands/DeregisterServiceCommand.js +16 -0
- package/dist-es/commands/DescribePrivateConnectionCommand.js +16 -0
- package/dist-es/commands/DescribeSupportLevelCommand.js +16 -0
- package/dist-es/commands/DisableOperatorAppCommand.js +16 -0
- package/dist-es/commands/DisassociateServiceCommand.js +16 -0
- package/dist-es/commands/EnableOperatorAppCommand.js +16 -0
- package/dist-es/commands/EndChatForCaseCommand.js +16 -0
- package/dist-es/commands/GetAccountUsageCommand.js +16 -0
- package/dist-es/commands/GetAgentSpaceCommand.js +16 -0
- package/dist-es/commands/GetAssociationCommand.js +16 -0
- package/dist-es/commands/GetBacklogTaskCommand.js +16 -0
- package/dist-es/commands/GetOperatorAppCommand.js +16 -0
- package/dist-es/commands/GetRecommendationCommand.js +16 -0
- package/dist-es/commands/GetServiceCommand.js +16 -0
- package/dist-es/commands/InitiateChatForCaseCommand.js +16 -0
- package/dist-es/commands/ListAgentSpacesCommand.js +16 -0
- package/dist-es/commands/ListAssociationsCommand.js +16 -0
- package/dist-es/commands/ListBacklogTasksCommand.js +16 -0
- package/dist-es/commands/ListChatsCommand.js +16 -0
- package/dist-es/commands/ListExecutionsCommand.js +16 -0
- package/dist-es/commands/ListGoalsCommand.js +16 -0
- package/dist-es/commands/ListJournalRecordsCommand.js +16 -0
- package/dist-es/commands/ListPendingMessagesCommand.js +16 -0
- package/dist-es/commands/ListPrivateConnectionsCommand.js +16 -0
- package/dist-es/commands/ListRecommendationsCommand.js +16 -0
- package/dist-es/commands/ListServicesCommand.js +16 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/dist-es/commands/ListWebhooksCommand.js +16 -0
- package/dist-es/commands/RegisterServiceCommand.js +16 -0
- package/dist-es/commands/SendMessageCommand.js +20 -0
- package/dist-es/commands/TagResourceCommand.js +16 -0
- package/dist-es/commands/UntagResourceCommand.js +16 -0
- package/dist-es/commands/UpdateAgentSpaceCommand.js +16 -0
- package/dist-es/commands/UpdateAssociationCommand.js +16 -0
- package/dist-es/commands/UpdateBacklogTaskCommand.js +16 -0
- package/dist-es/commands/UpdateGoalCommand.js +16 -0
- package/dist-es/commands/UpdateOperatorAppIdpConfigCommand.js +16 -0
- package/dist-es/commands/UpdatePrivateConnectionCertificateCommand.js +16 -0
- package/dist-es/commands/UpdateRecommendationCommand.js +16 -0
- package/dist-es/commands/ValidateAwsAssociationsCommand.js +16 -0
- package/dist-es/commands/index.js +48 -0
- package/dist-es/endpoint/EndpointParameters.js +11 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +9 -0
- package/dist-es/models/DevOpsAgentServiceException.js +8 -0
- package/dist-es/models/enums.js +164 -0
- package/dist-es/models/errors.js +127 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAgentSpacesPaginator.js +4 -0
- package/dist-es/pagination/ListAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListBacklogTasksPaginator.js +4 -0
- package/dist-es/pagination/ListExecutionsPaginator.js +4 -0
- package/dist-es/pagination/ListGoalsPaginator.js +4 -0
- package/dist-es/pagination/ListJournalRecordsPaginator.js +4 -0
- package/dist-es/pagination/ListServicesPaginator.js +4 -0
- package/dist-es/pagination/index.js +8 -0
- package/dist-es/runtimeConfig.browser.js +35 -0
- package/dist-es/runtimeConfig.js +51 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +39 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +1883 -0
- package/dist-types/DevOpsAgent.d.ts +409 -0
- package/dist-types/DevOpsAgentClient.d.ts +250 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/AllowVendedLogDeliveryForResourceCommand.d.ts +100 -0
- package/dist-types/commands/AssociateServiceCommand.d.ts +300 -0
- package/dist-types/commands/CreateAgentSpaceCommand.d.ts +121 -0
- package/dist-types/commands/CreateBacklogTaskCommand.d.ts +139 -0
- package/dist-types/commands/CreateChatCommand.d.ts +106 -0
- package/dist-types/commands/CreatePrivateConnectionCommand.d.ts +138 -0
- package/dist-types/commands/DeleteAgentSpaceCommand.d.ts +101 -0
- package/dist-types/commands/DeletePrivateConnectionCommand.d.ts +104 -0
- package/dist-types/commands/DeregisterServiceCommand.d.ts +101 -0
- package/dist-types/commands/DescribePrivateConnectionCommand.d.ts +113 -0
- package/dist-types/commands/DescribeSupportLevelCommand.d.ts +112 -0
- package/dist-types/commands/DisableOperatorAppCommand.d.ts +105 -0
- package/dist-types/commands/DisassociateServiceCommand.d.ts +102 -0
- package/dist-types/commands/EnableOperatorAppCommand.d.ts +133 -0
- package/dist-types/commands/EndChatForCaseCommand.d.ts +109 -0
- package/dist-types/commands/GetAccountUsageCommand.d.ts +114 -0
- package/dist-types/commands/GetAgentSpaceCommand.d.ts +114 -0
- package/dist-types/commands/GetAssociationCommand.d.ts +202 -0
- package/dist-types/commands/GetBacklogTaskCommand.d.ts +128 -0
- package/dist-types/commands/GetOperatorAppCommand.d.ts +122 -0
- package/dist-types/commands/GetRecommendationCommand.d.ts +122 -0
- package/dist-types/commands/GetServiceCommand.d.ts +188 -0
- package/dist-types/commands/InitiateChatForCaseCommand.d.ts +109 -0
- package/dist-types/commands/ListAgentSpacesCommand.d.ts +115 -0
- package/dist-types/commands/ListAssociationsCommand.d.ts +207 -0
- package/dist-types/commands/ListBacklogTasksCommand.d.ts +148 -0
- package/dist-types/commands/ListChatsCommand.d.ts +114 -0
- package/dist-types/commands/ListExecutionsCommand.d.ts +119 -0
- package/dist-types/commands/ListGoalsCommand.d.ts +130 -0
- package/dist-types/commands/ListJournalRecordsCommand.d.ts +122 -0
- package/dist-types/commands/ListPendingMessagesCommand.d.ts +125 -0
- package/dist-types/commands/ListPrivateConnectionsCommand.d.ts +112 -0
- package/dist-types/commands/ListRecommendationsCommand.d.ts +129 -0
- package/dist-types/commands/ListServicesCommand.d.ts +190 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +105 -0
- package/dist-types/commands/ListWebhooksCommand.d.ts +110 -0
- package/dist-types/commands/RegisterServiceCommand.d.ts +347 -0
- package/dist-types/commands/SendMessageCommand.d.ts +166 -0
- package/dist-types/commands/TagResourceCommand.d.ts +104 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +104 -0
- package/dist-types/commands/UpdateAgentSpaceCommand.d.ts +114 -0
- package/dist-types/commands/UpdateAssociationCommand.d.ts +300 -0
- package/dist-types/commands/UpdateBacklogTaskCommand.d.ts +130 -0
- package/dist-types/commands/UpdateGoalCommand.d.ts +128 -0
- package/dist-types/commands/UpdateOperatorAppIdpConfigCommand.d.ts +112 -0
- package/dist-types/commands/UpdatePrivateConnectionCertificateCommand.d.ts +111 -0
- package/dist-types/commands/UpdateRecommendationCommand.d.ts +124 -0
- package/dist-types/commands/ValidateAwsAssociationsCommand.d.ts +101 -0
- package/dist-types/commands/index.d.ts +48 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +44 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +27 -0
- package/dist-types/models/DevOpsAgentServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +631 -0
- package/dist-types/models/errors.d.ts +138 -0
- package/dist-types/models/models_0.d.ts +5708 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListAgentSpacesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListBacklogTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListExecutionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGoalsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListJournalRecordsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListServicesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +8 -0
- package/dist-types/runtimeConfig.browser.d.ts +56 -0
- package/dist-types/runtimeConfig.d.ts +56 -0
- package/dist-types/runtimeConfig.native.d.ts +55 -0
- package/dist-types/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +271 -0
- package/dist-types/ts3.4/DevOpsAgent.d.ts +892 -0
- package/dist-types/ts3.4/DevOpsAgentClient.d.ts +414 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/AllowVendedLogDeliveryForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/AssociateServiceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateAgentSpaceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateBacklogTaskCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateChatCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreatePrivateConnectionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteAgentSpaceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeletePrivateConnectionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeregisterServiceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribePrivateConnectionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeSupportLevelCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisableOperatorAppCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/DisassociateServiceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/EnableOperatorAppCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/EndChatForCaseCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetAccountUsageCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetAgentSpaceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetAssociationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetBacklogTaskCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetOperatorAppCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetRecommendationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/InitiateChatForCaseCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAgentSpacesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListBacklogTasksCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListChatsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListGoalsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListJournalRecordsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPendingMessagesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPrivateConnectionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWebhooksCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/RegisterServiceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateAgentSpaceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateAssociationCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateBacklogTaskCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateGoalCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateOperatorAppIdpConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdatePrivateConnectionCertificateCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateRecommendationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ValidateAwsAssociationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +48 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +12 -0
- package/dist-types/ts3.4/models/DevOpsAgentServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +207 -0
- package/dist-types/ts3.4/models/errors.d.ts +75 -0
- package/dist-types/ts3.4/models/models_0.d.ts +2202 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAgentSpacesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListBacklogTasksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListExecutionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGoalsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListJournalRecordsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +8 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +101 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +96 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +105 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +271 -0
- package/package.json +103 -0
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsAgentClient";
|
|
4
|
+
import type { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link TagResourceCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link TagResourceCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const TagResourceCommand_base: {
|
|
25
|
+
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Adds or overwrites tags for the specified AWS DevOps Agent resource.
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { DevOpsAgentClient, TagResourceCommand } from "@aws-sdk/client-devops-agent"; // ES Modules import
|
|
35
|
+
* // const { DevOpsAgentClient, TagResourceCommand } = require("@aws-sdk/client-devops-agent"); // CommonJS import
|
|
36
|
+
* // import type { DevOpsAgentClientConfig } from "@aws-sdk/client-devops-agent";
|
|
37
|
+
* const config = {}; // type is DevOpsAgentClientConfig
|
|
38
|
+
* const client = new DevOpsAgentClient(config);
|
|
39
|
+
* const input = { // TagResourceRequest
|
|
40
|
+
* resourceArn: "STRING_VALUE", // required
|
|
41
|
+
* tags: { // Tags // required
|
|
42
|
+
* "<keys>": "STRING_VALUE",
|
|
43
|
+
* },
|
|
44
|
+
* };
|
|
45
|
+
* const command = new TagResourceCommand(input);
|
|
46
|
+
* const response = await client.send(command);
|
|
47
|
+
* // {};
|
|
48
|
+
*
|
|
49
|
+
* ```
|
|
50
|
+
*
|
|
51
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
52
|
+
* @returns {@link TagResourceCommandOutput}
|
|
53
|
+
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
54
|
+
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
55
|
+
* @see {@link DevOpsAgentClientResolvedConfig | config} for DevOpsAgentClient's `config` shape.
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
58
|
+
* Access to the requested resource is denied due to insufficient permissions.
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link InternalServerException} (server fault)
|
|
61
|
+
* This exception is thrown when an unexpected error occurs in the processing of a request.
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
64
|
+
* The requested resource could not be found.
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ValidationException} (client fault)
|
|
67
|
+
* A standard error for input validation failures.
|
|
68
|
+
* This should be thrown by services when a member of the input structure
|
|
69
|
+
* falls outside of the modeled or documented constraints.
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ConflictException} (client fault)
|
|
72
|
+
* The request conflicts with the current state of the resource.
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ContentSizeExceededException} (client fault)
|
|
75
|
+
* This exception is thrown when the content size exceeds the allowed limit.
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
78
|
+
* One or more parameters provided in the request are invalid.
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
81
|
+
* The request would exceed the service quota limit.
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
84
|
+
* The request was throttled due to too many requests. Please slow down and try again.
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link DevOpsAgentServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from DevOpsAgent service.</p>
|
|
88
|
+
*
|
|
89
|
+
*
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
93
|
+
/** @internal type navigation helper, not in runtime. */
|
|
94
|
+
protected static __types: {
|
|
95
|
+
api: {
|
|
96
|
+
input: TagResourceRequest;
|
|
97
|
+
output: {};
|
|
98
|
+
};
|
|
99
|
+
sdk: {
|
|
100
|
+
input: TagResourceCommandInput;
|
|
101
|
+
output: TagResourceCommandOutput;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsAgentClient";
|
|
4
|
+
import type { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UntagResourceCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UntagResourceCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UntagResourceCommand_base: {
|
|
25
|
+
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Removes tags from the specified AWS DevOps Agent resource.
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { DevOpsAgentClient, UntagResourceCommand } from "@aws-sdk/client-devops-agent"; // ES Modules import
|
|
35
|
+
* // const { DevOpsAgentClient, UntagResourceCommand } = require("@aws-sdk/client-devops-agent"); // CommonJS import
|
|
36
|
+
* // import type { DevOpsAgentClientConfig } from "@aws-sdk/client-devops-agent";
|
|
37
|
+
* const config = {}; // type is DevOpsAgentClientConfig
|
|
38
|
+
* const client = new DevOpsAgentClient(config);
|
|
39
|
+
* const input = { // UntagResourceRequest
|
|
40
|
+
* resourceArn: "STRING_VALUE", // required
|
|
41
|
+
* tagKeys: [ // TagKeyList // required
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* };
|
|
45
|
+
* const command = new UntagResourceCommand(input);
|
|
46
|
+
* const response = await client.send(command);
|
|
47
|
+
* // {};
|
|
48
|
+
*
|
|
49
|
+
* ```
|
|
50
|
+
*
|
|
51
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
52
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
53
|
+
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
54
|
+
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
55
|
+
* @see {@link DevOpsAgentClientResolvedConfig | config} for DevOpsAgentClient's `config` shape.
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
58
|
+
* Access to the requested resource is denied due to insufficient permissions.
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link InternalServerException} (server fault)
|
|
61
|
+
* This exception is thrown when an unexpected error occurs in the processing of a request.
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
64
|
+
* The requested resource could not be found.
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ValidationException} (client fault)
|
|
67
|
+
* A standard error for input validation failures.
|
|
68
|
+
* This should be thrown by services when a member of the input structure
|
|
69
|
+
* falls outside of the modeled or documented constraints.
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ConflictException} (client fault)
|
|
72
|
+
* The request conflicts with the current state of the resource.
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ContentSizeExceededException} (client fault)
|
|
75
|
+
* This exception is thrown when the content size exceeds the allowed limit.
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
78
|
+
* One or more parameters provided in the request are invalid.
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
81
|
+
* The request would exceed the service quota limit.
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
84
|
+
* The request was throttled due to too many requests. Please slow down and try again.
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link DevOpsAgentServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from DevOpsAgent service.</p>
|
|
88
|
+
*
|
|
89
|
+
*
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
93
|
+
/** @internal type navigation helper, not in runtime. */
|
|
94
|
+
protected static __types: {
|
|
95
|
+
api: {
|
|
96
|
+
input: UntagResourceRequest;
|
|
97
|
+
output: {};
|
|
98
|
+
};
|
|
99
|
+
sdk: {
|
|
100
|
+
input: UntagResourceCommandInput;
|
|
101
|
+
output: UntagResourceCommandOutput;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsAgentClient";
|
|
4
|
+
import type { UpdateAgentSpaceInput, UpdateAgentSpaceOutput } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateAgentSpaceCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateAgentSpaceCommandInput extends UpdateAgentSpaceInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateAgentSpaceCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateAgentSpaceCommandOutput extends UpdateAgentSpaceOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateAgentSpaceCommand_base: {
|
|
25
|
+
new (input: UpdateAgentSpaceCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateAgentSpaceCommandInput, UpdateAgentSpaceCommandOutput, DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateAgentSpaceCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateAgentSpaceCommandInput, UpdateAgentSpaceCommandOutput, DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Updates the information of an existing AgentSpace.
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { DevOpsAgentClient, UpdateAgentSpaceCommand } from "@aws-sdk/client-devops-agent"; // ES Modules import
|
|
35
|
+
* // const { DevOpsAgentClient, UpdateAgentSpaceCommand } = require("@aws-sdk/client-devops-agent"); // CommonJS import
|
|
36
|
+
* // import type { DevOpsAgentClientConfig } from "@aws-sdk/client-devops-agent";
|
|
37
|
+
* const config = {}; // type is DevOpsAgentClientConfig
|
|
38
|
+
* const client = new DevOpsAgentClient(config);
|
|
39
|
+
* const input = { // UpdateAgentSpaceInput
|
|
40
|
+
* agentSpaceId: "STRING_VALUE", // required
|
|
41
|
+
* name: "STRING_VALUE",
|
|
42
|
+
* description: "STRING_VALUE",
|
|
43
|
+
* locale: "STRING_VALUE",
|
|
44
|
+
* };
|
|
45
|
+
* const command = new UpdateAgentSpaceCommand(input);
|
|
46
|
+
* const response = await client.send(command);
|
|
47
|
+
* // { // UpdateAgentSpaceOutput
|
|
48
|
+
* // agentSpace: { // AgentSpace
|
|
49
|
+
* // name: "STRING_VALUE", // required
|
|
50
|
+
* // description: "STRING_VALUE",
|
|
51
|
+
* // locale: "STRING_VALUE",
|
|
52
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
53
|
+
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
54
|
+
* // kmsKeyArn: "STRING_VALUE",
|
|
55
|
+
* // agentSpaceId: "STRING_VALUE", // required
|
|
56
|
+
* // },
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
61
|
+
* @param UpdateAgentSpaceCommandInput - {@link UpdateAgentSpaceCommandInput}
|
|
62
|
+
* @returns {@link UpdateAgentSpaceCommandOutput}
|
|
63
|
+
* @see {@link UpdateAgentSpaceCommandInput} for command's `input` shape.
|
|
64
|
+
* @see {@link UpdateAgentSpaceCommandOutput} for command's `response` shape.
|
|
65
|
+
* @see {@link DevOpsAgentClientResolvedConfig | config} for DevOpsAgentClient's `config` shape.
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ConflictException} (client fault)
|
|
68
|
+
* The request conflicts with the current state of the resource.
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link InternalServerException} (server fault)
|
|
71
|
+
* This exception is thrown when an unexpected error occurs in the processing of a request.
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
74
|
+
* The requested resource could not be found.
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
77
|
+
* The request was throttled due to too many requests. Please slow down and try again.
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ValidationException} (client fault)
|
|
80
|
+
* A standard error for input validation failures.
|
|
81
|
+
* This should be thrown by services when a member of the input structure
|
|
82
|
+
* falls outside of the modeled or documented constraints.
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
85
|
+
* Access to the requested resource is denied due to insufficient permissions.
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link ContentSizeExceededException} (client fault)
|
|
88
|
+
* This exception is thrown when the content size exceeds the allowed limit.
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
91
|
+
* One or more parameters provided in the request are invalid.
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
94
|
+
* The request would exceed the service quota limit.
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link DevOpsAgentServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from DevOpsAgent service.</p>
|
|
98
|
+
*
|
|
99
|
+
*
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
export declare class UpdateAgentSpaceCommand extends UpdateAgentSpaceCommand_base {
|
|
103
|
+
/** @internal type navigation helper, not in runtime. */
|
|
104
|
+
protected static __types: {
|
|
105
|
+
api: {
|
|
106
|
+
input: UpdateAgentSpaceInput;
|
|
107
|
+
output: UpdateAgentSpaceOutput;
|
|
108
|
+
};
|
|
109
|
+
sdk: {
|
|
110
|
+
input: UpdateAgentSpaceCommandInput;
|
|
111
|
+
output: UpdateAgentSpaceCommandOutput;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
}
|
|
@@ -0,0 +1,300 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsAgentClient";
|
|
4
|
+
import type { UpdateAssociationInput, UpdateAssociationOutput } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateAssociationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateAssociationCommandInput extends UpdateAssociationInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateAssociationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateAssociationCommandOutput extends UpdateAssociationOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateAssociationCommand_base: {
|
|
25
|
+
new (input: UpdateAssociationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateAssociationCommandInput, UpdateAssociationCommandOutput, DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateAssociationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateAssociationCommandInput, UpdateAssociationCommandOutput, DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Partially updates the configuration of an existing service association for an AgentSpace. Present fields are fully replaced; absent fields are left unchanged. Returns 200 OK on success.
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { DevOpsAgentClient, UpdateAssociationCommand } from "@aws-sdk/client-devops-agent"; // ES Modules import
|
|
35
|
+
* // const { DevOpsAgentClient, UpdateAssociationCommand } = require("@aws-sdk/client-devops-agent"); // CommonJS import
|
|
36
|
+
* // import type { DevOpsAgentClientConfig } from "@aws-sdk/client-devops-agent";
|
|
37
|
+
* const config = {}; // type is DevOpsAgentClientConfig
|
|
38
|
+
* const client = new DevOpsAgentClient(config);
|
|
39
|
+
* const input = { // UpdateAssociationInput
|
|
40
|
+
* agentSpaceId: "STRING_VALUE", // required
|
|
41
|
+
* associationId: "STRING_VALUE", // required
|
|
42
|
+
* configuration: { // ServiceConfiguration Union: only one key present
|
|
43
|
+
* sourceAws: { // SourceAwsConfiguration
|
|
44
|
+
* accountId: "STRING_VALUE", // required
|
|
45
|
+
* accountType: "source", // required
|
|
46
|
+
* assumableRoleArn: "STRING_VALUE", // required
|
|
47
|
+
* externalId: "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* aws: { // AWSConfiguration
|
|
50
|
+
* assumableRoleArn: "STRING_VALUE", // required
|
|
51
|
+
* accountId: "STRING_VALUE", // required
|
|
52
|
+
* accountType: "monitor", // required
|
|
53
|
+
* },
|
|
54
|
+
* github: { // GitHubConfiguration
|
|
55
|
+
* repoName: "STRING_VALUE", // required
|
|
56
|
+
* repoId: "STRING_VALUE", // required
|
|
57
|
+
* owner: "STRING_VALUE", // required
|
|
58
|
+
* ownerType: "organization" || "user", // required
|
|
59
|
+
* instanceIdentifier: "STRING_VALUE",
|
|
60
|
+
* },
|
|
61
|
+
* slack: { // SlackConfiguration
|
|
62
|
+
* workspaceId: "STRING_VALUE", // required
|
|
63
|
+
* workspaceName: "STRING_VALUE", // required
|
|
64
|
+
* transmissionTarget: { // SlackTransmissionTarget
|
|
65
|
+
* opsOncallTarget: { // SlackChannel
|
|
66
|
+
* channelName: "STRING_VALUE",
|
|
67
|
+
* channelId: "STRING_VALUE", // required
|
|
68
|
+
* },
|
|
69
|
+
* opsSRETarget: {
|
|
70
|
+
* channelName: "STRING_VALUE",
|
|
71
|
+
* channelId: "STRING_VALUE", // required
|
|
72
|
+
* },
|
|
73
|
+
* },
|
|
74
|
+
* },
|
|
75
|
+
* dynatrace: { // DynatraceConfiguration
|
|
76
|
+
* envId: "STRING_VALUE", // required
|
|
77
|
+
* resources: [ // DynatraceResourceList
|
|
78
|
+
* "STRING_VALUE",
|
|
79
|
+
* ],
|
|
80
|
+
* },
|
|
81
|
+
* servicenow: { // ServiceNowConfiguration
|
|
82
|
+
* instanceId: "STRING_VALUE",
|
|
83
|
+
* authScopes: [ // ServiceNowAuthenticationScopeList
|
|
84
|
+
* "STRING_VALUE",
|
|
85
|
+
* ],
|
|
86
|
+
* },
|
|
87
|
+
* mcpservernewrelic: { // MCPServerNewRelicConfiguration
|
|
88
|
+
* accountId: "STRING_VALUE", // required
|
|
89
|
+
* endpoint: "STRING_VALUE", // required
|
|
90
|
+
* },
|
|
91
|
+
* gitlab: { // GitLabConfiguration
|
|
92
|
+
* projectId: "STRING_VALUE", // required
|
|
93
|
+
* projectPath: "STRING_VALUE", // required
|
|
94
|
+
* instanceIdentifier: "STRING_VALUE",
|
|
95
|
+
* },
|
|
96
|
+
* eventChannel: {},
|
|
97
|
+
* azure: { // AzureConfiguration
|
|
98
|
+
* subscriptionId: "STRING_VALUE", // required
|
|
99
|
+
* },
|
|
100
|
+
* azuredevops: { // AzureDevOpsConfiguration
|
|
101
|
+
* organizationName: "STRING_VALUE", // required
|
|
102
|
+
* projectId: "STRING_VALUE", // required
|
|
103
|
+
* projectName: "STRING_VALUE", // required
|
|
104
|
+
* },
|
|
105
|
+
* mcpservergrafana: { // MCPServerGrafanaConfiguration
|
|
106
|
+
* endpoint: "STRING_VALUE", // required
|
|
107
|
+
* organizationId: "STRING_VALUE",
|
|
108
|
+
* tools: [ // MCPToolsList
|
|
109
|
+
* "STRING_VALUE",
|
|
110
|
+
* ],
|
|
111
|
+
* },
|
|
112
|
+
* pagerduty: { // PagerDutyConfiguration
|
|
113
|
+
* services: [ // PagerDutyServicesList // required
|
|
114
|
+
* "STRING_VALUE",
|
|
115
|
+
* ],
|
|
116
|
+
* customerEmail: "STRING_VALUE", // required
|
|
117
|
+
* },
|
|
118
|
+
* msteams: { // MSTeamsConfiguration
|
|
119
|
+
* teamId: "STRING_VALUE", // required
|
|
120
|
+
* teamName: "STRING_VALUE", // required
|
|
121
|
+
* transmissionTarget: { // MSTeamsTransmissionTarget
|
|
122
|
+
* opsOncallTarget: { // MSTeamsChannel
|
|
123
|
+
* channelName: "STRING_VALUE", // required
|
|
124
|
+
* channelId: "STRING_VALUE", // required
|
|
125
|
+
* },
|
|
126
|
+
* opsSRETarget: {
|
|
127
|
+
* channelName: "STRING_VALUE", // required
|
|
128
|
+
* channelId: "STRING_VALUE", // required
|
|
129
|
+
* },
|
|
130
|
+
* },
|
|
131
|
+
* },
|
|
132
|
+
* },
|
|
133
|
+
* };
|
|
134
|
+
* const command = new UpdateAssociationCommand(input);
|
|
135
|
+
* const response = await client.send(command);
|
|
136
|
+
* // { // UpdateAssociationOutput
|
|
137
|
+
* // association: { // Association
|
|
138
|
+
* // agentSpaceId: "STRING_VALUE", // required
|
|
139
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
140
|
+
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
141
|
+
* // status: "valid" || "invalid" || "pending-confirmation",
|
|
142
|
+
* // associationId: "STRING_VALUE", // required
|
|
143
|
+
* // serviceId: "STRING_VALUE", // required
|
|
144
|
+
* // configuration: { // ServiceConfiguration Union: only one key present
|
|
145
|
+
* // sourceAws: { // SourceAwsConfiguration
|
|
146
|
+
* // accountId: "STRING_VALUE", // required
|
|
147
|
+
* // accountType: "source", // required
|
|
148
|
+
* // assumableRoleArn: "STRING_VALUE", // required
|
|
149
|
+
* // externalId: "STRING_VALUE",
|
|
150
|
+
* // },
|
|
151
|
+
* // aws: { // AWSConfiguration
|
|
152
|
+
* // assumableRoleArn: "STRING_VALUE", // required
|
|
153
|
+
* // accountId: "STRING_VALUE", // required
|
|
154
|
+
* // accountType: "monitor", // required
|
|
155
|
+
* // },
|
|
156
|
+
* // github: { // GitHubConfiguration
|
|
157
|
+
* // repoName: "STRING_VALUE", // required
|
|
158
|
+
* // repoId: "STRING_VALUE", // required
|
|
159
|
+
* // owner: "STRING_VALUE", // required
|
|
160
|
+
* // ownerType: "organization" || "user", // required
|
|
161
|
+
* // instanceIdentifier: "STRING_VALUE",
|
|
162
|
+
* // },
|
|
163
|
+
* // slack: { // SlackConfiguration
|
|
164
|
+
* // workspaceId: "STRING_VALUE", // required
|
|
165
|
+
* // workspaceName: "STRING_VALUE", // required
|
|
166
|
+
* // transmissionTarget: { // SlackTransmissionTarget
|
|
167
|
+
* // opsOncallTarget: { // SlackChannel
|
|
168
|
+
* // channelName: "STRING_VALUE",
|
|
169
|
+
* // channelId: "STRING_VALUE", // required
|
|
170
|
+
* // },
|
|
171
|
+
* // opsSRETarget: {
|
|
172
|
+
* // channelName: "STRING_VALUE",
|
|
173
|
+
* // channelId: "STRING_VALUE", // required
|
|
174
|
+
* // },
|
|
175
|
+
* // },
|
|
176
|
+
* // },
|
|
177
|
+
* // dynatrace: { // DynatraceConfiguration
|
|
178
|
+
* // envId: "STRING_VALUE", // required
|
|
179
|
+
* // resources: [ // DynatraceResourceList
|
|
180
|
+
* // "STRING_VALUE",
|
|
181
|
+
* // ],
|
|
182
|
+
* // },
|
|
183
|
+
* // servicenow: { // ServiceNowConfiguration
|
|
184
|
+
* // instanceId: "STRING_VALUE",
|
|
185
|
+
* // authScopes: [ // ServiceNowAuthenticationScopeList
|
|
186
|
+
* // "STRING_VALUE",
|
|
187
|
+
* // ],
|
|
188
|
+
* // },
|
|
189
|
+
* // mcpservernewrelic: { // MCPServerNewRelicConfiguration
|
|
190
|
+
* // accountId: "STRING_VALUE", // required
|
|
191
|
+
* // endpoint: "STRING_VALUE", // required
|
|
192
|
+
* // },
|
|
193
|
+
* // gitlab: { // GitLabConfiguration
|
|
194
|
+
* // projectId: "STRING_VALUE", // required
|
|
195
|
+
* // projectPath: "STRING_VALUE", // required
|
|
196
|
+
* // instanceIdentifier: "STRING_VALUE",
|
|
197
|
+
* // },
|
|
198
|
+
* // eventChannel: {},
|
|
199
|
+
* // azure: { // AzureConfiguration
|
|
200
|
+
* // subscriptionId: "STRING_VALUE", // required
|
|
201
|
+
* // },
|
|
202
|
+
* // azuredevops: { // AzureDevOpsConfiguration
|
|
203
|
+
* // organizationName: "STRING_VALUE", // required
|
|
204
|
+
* // projectId: "STRING_VALUE", // required
|
|
205
|
+
* // projectName: "STRING_VALUE", // required
|
|
206
|
+
* // },
|
|
207
|
+
* // mcpservergrafana: { // MCPServerGrafanaConfiguration
|
|
208
|
+
* // endpoint: "STRING_VALUE", // required
|
|
209
|
+
* // organizationId: "STRING_VALUE",
|
|
210
|
+
* // tools: [ // MCPToolsList
|
|
211
|
+
* // "STRING_VALUE",
|
|
212
|
+
* // ],
|
|
213
|
+
* // },
|
|
214
|
+
* // pagerduty: { // PagerDutyConfiguration
|
|
215
|
+
* // services: [ // PagerDutyServicesList // required
|
|
216
|
+
* // "STRING_VALUE",
|
|
217
|
+
* // ],
|
|
218
|
+
* // customerEmail: "STRING_VALUE", // required
|
|
219
|
+
* // },
|
|
220
|
+
* // msteams: { // MSTeamsConfiguration
|
|
221
|
+
* // teamId: "STRING_VALUE", // required
|
|
222
|
+
* // teamName: "STRING_VALUE", // required
|
|
223
|
+
* // transmissionTarget: { // MSTeamsTransmissionTarget
|
|
224
|
+
* // opsOncallTarget: { // MSTeamsChannel
|
|
225
|
+
* // channelName: "STRING_VALUE", // required
|
|
226
|
+
* // channelId: "STRING_VALUE", // required
|
|
227
|
+
* // },
|
|
228
|
+
* // opsSRETarget: {
|
|
229
|
+
* // channelName: "STRING_VALUE", // required
|
|
230
|
+
* // channelId: "STRING_VALUE", // required
|
|
231
|
+
* // },
|
|
232
|
+
* // },
|
|
233
|
+
* // },
|
|
234
|
+
* // },
|
|
235
|
+
* // },
|
|
236
|
+
* // webhook: { // GenericWebhook
|
|
237
|
+
* // webhookUrl: "STRING_VALUE",
|
|
238
|
+
* // webhookId: "STRING_VALUE",
|
|
239
|
+
* // webhookType: "hmac" || "apikey" || "gitlab" || "pagerduty",
|
|
240
|
+
* // webhookSecret: "STRING_VALUE",
|
|
241
|
+
* // apiKey: "STRING_VALUE",
|
|
242
|
+
* // },
|
|
243
|
+
* // };
|
|
244
|
+
*
|
|
245
|
+
* ```
|
|
246
|
+
*
|
|
247
|
+
* @param UpdateAssociationCommandInput - {@link UpdateAssociationCommandInput}
|
|
248
|
+
* @returns {@link UpdateAssociationCommandOutput}
|
|
249
|
+
* @see {@link UpdateAssociationCommandInput} for command's `input` shape.
|
|
250
|
+
* @see {@link UpdateAssociationCommandOutput} for command's `response` shape.
|
|
251
|
+
* @see {@link DevOpsAgentClientResolvedConfig | config} for DevOpsAgentClient's `config` shape.
|
|
252
|
+
*
|
|
253
|
+
* @throws {@link InternalServerException} (server fault)
|
|
254
|
+
* This exception is thrown when an unexpected error occurs in the processing of a request.
|
|
255
|
+
*
|
|
256
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
257
|
+
* The requested resource could not be found.
|
|
258
|
+
*
|
|
259
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
260
|
+
* The request was throttled due to too many requests. Please slow down and try again.
|
|
261
|
+
*
|
|
262
|
+
* @throws {@link ValidationException} (client fault)
|
|
263
|
+
* A standard error for input validation failures.
|
|
264
|
+
* This should be thrown by services when a member of the input structure
|
|
265
|
+
* falls outside of the modeled or documented constraints.
|
|
266
|
+
*
|
|
267
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
268
|
+
* Access to the requested resource is denied due to insufficient permissions.
|
|
269
|
+
*
|
|
270
|
+
* @throws {@link ConflictException} (client fault)
|
|
271
|
+
* The request conflicts with the current state of the resource.
|
|
272
|
+
*
|
|
273
|
+
* @throws {@link ContentSizeExceededException} (client fault)
|
|
274
|
+
* This exception is thrown when the content size exceeds the allowed limit.
|
|
275
|
+
*
|
|
276
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
277
|
+
* One or more parameters provided in the request are invalid.
|
|
278
|
+
*
|
|
279
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
280
|
+
* The request would exceed the service quota limit.
|
|
281
|
+
*
|
|
282
|
+
* @throws {@link DevOpsAgentServiceException}
|
|
283
|
+
* <p>Base exception class for all service exceptions from DevOpsAgent service.</p>
|
|
284
|
+
*
|
|
285
|
+
*
|
|
286
|
+
* @public
|
|
287
|
+
*/
|
|
288
|
+
export declare class UpdateAssociationCommand extends UpdateAssociationCommand_base {
|
|
289
|
+
/** @internal type navigation helper, not in runtime. */
|
|
290
|
+
protected static __types: {
|
|
291
|
+
api: {
|
|
292
|
+
input: UpdateAssociationInput;
|
|
293
|
+
output: UpdateAssociationOutput;
|
|
294
|
+
};
|
|
295
|
+
sdk: {
|
|
296
|
+
input: UpdateAssociationCommandInput;
|
|
297
|
+
output: UpdateAssociationCommandOutput;
|
|
298
|
+
};
|
|
299
|
+
};
|
|
300
|
+
}
|