@aws-sdk/client-devops-agent 3.1117.0 → 3.1119.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/README.md +7 -0
- package/dist-cjs/index.js +230 -106
- package/dist-es/DevOpsAgent.js +2 -0
- package/dist-es/commands/UpdateApprovalActionCommand.js +4 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +29 -3
- package/dist-es/schemas/schemas_0.js +186 -102
- package/dist-types/DevOpsAgent.d.ts +7 -0
- package/dist-types/DevOpsAgentClient.d.ts +3 -2
- package/dist-types/commands/AssociateServiceCommand.d.ts +84 -2
- package/dist-types/commands/CreateAgentSpaceCommand.d.ts +6 -0
- package/dist-types/commands/CreateBacklogTaskCommand.d.ts +1 -1
- package/dist-types/commands/CreatePrivateConnectionCommand.d.ts +3 -3
- package/dist-types/commands/GetAgentSpaceCommand.d.ts +3 -0
- package/dist-types/commands/GetAssociationCommand.d.ts +42 -1
- package/dist-types/commands/GetBacklogTaskCommand.d.ts +1 -1
- package/dist-types/commands/GetServiceCommand.d.ts +3 -1
- package/dist-types/commands/ListAgentSpacesCommand.d.ts +3 -0
- package/dist-types/commands/ListAssociationsCommand.d.ts +42 -1
- package/dist-types/commands/ListBacklogTasksCommand.d.ts +2 -2
- package/dist-types/commands/ListExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/ListServicesCommand.d.ts +3 -1
- package/dist-types/commands/RegisterServiceCommand.d.ts +1 -1
- package/dist-types/commands/SendMessageCommand.d.ts +8 -0
- package/dist-types/commands/UpdateAgentSpaceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateApprovalActionCommand.d.ts +111 -0
- package/dist-types/commands/UpdateAssociationCommand.d.ts +84 -2
- package/dist-types/commands/UpdateBacklogTaskCommand.d.ts +2 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +99 -6
- package/dist-types/models/models_0.d.ts +243 -7
- package/dist-types/schemas/schemas_0.d.ts +8 -0
- package/dist-types/ts3.4/DevOpsAgent.d.ts +17 -0
- package/dist-types/ts3.4/DevOpsAgentClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/UpdateApprovalActionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +36 -4
- package/dist-types/ts3.4/models/models_0.d.ts +59 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -0
- package/package.json +1 -1
|
@@ -51,6 +51,7 @@ import { type SendMessageCommandInput, type SendMessageCommandOutput } from "./c
|
|
|
51
51
|
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
52
52
|
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
53
53
|
import { type UpdateAgentSpaceCommandInput, type UpdateAgentSpaceCommandOutput } from "./commands/UpdateAgentSpaceCommand";
|
|
54
|
+
import { type UpdateApprovalActionCommandInput, type UpdateApprovalActionCommandOutput } from "./commands/UpdateApprovalActionCommand";
|
|
54
55
|
import { type UpdateAssetCommandInput, type UpdateAssetCommandOutput } from "./commands/UpdateAssetCommand";
|
|
55
56
|
import { type UpdateAssetFileCommandInput, type UpdateAssetFileCommandOutput } from "./commands/UpdateAssetFileCommand";
|
|
56
57
|
import { type UpdateAssociationCommandInput, type UpdateAssociationCommandOutput } from "./commands/UpdateAssociationCommand";
|
|
@@ -380,6 +381,12 @@ export interface DevOpsAgent {
|
|
|
380
381
|
updateAgentSpace(args: UpdateAgentSpaceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateAgentSpaceCommandOutput>;
|
|
381
382
|
updateAgentSpace(args: UpdateAgentSpaceCommandInput, cb: (err: any, data?: UpdateAgentSpaceCommandOutput) => void): void;
|
|
382
383
|
updateAgentSpace(args: UpdateAgentSpaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateAgentSpaceCommandOutput) => void): void;
|
|
384
|
+
/**
|
|
385
|
+
* @see {@link UpdateApprovalActionCommand}
|
|
386
|
+
*/
|
|
387
|
+
updateApprovalAction(args: UpdateApprovalActionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApprovalActionCommandOutput>;
|
|
388
|
+
updateApprovalAction(args: UpdateApprovalActionCommandInput, cb: (err: any, data?: UpdateApprovalActionCommandOutput) => void): void;
|
|
389
|
+
updateApprovalAction(args: UpdateApprovalActionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApprovalActionCommandOutput) => void): void;
|
|
383
390
|
/**
|
|
384
391
|
* @see {@link UpdateAssetCommand}
|
|
385
392
|
*/
|
|
@@ -59,6 +59,7 @@ import type { SendMessageCommandInput, SendMessageCommandOutput } from "./comman
|
|
|
59
59
|
import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
60
60
|
import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
61
61
|
import type { UpdateAgentSpaceCommandInput, UpdateAgentSpaceCommandOutput } from "./commands/UpdateAgentSpaceCommand";
|
|
62
|
+
import type { UpdateApprovalActionCommandInput, UpdateApprovalActionCommandOutput } from "./commands/UpdateApprovalActionCommand";
|
|
62
63
|
import type { UpdateAssetCommandInput, UpdateAssetCommandOutput } from "./commands/UpdateAssetCommand";
|
|
63
64
|
import type { UpdateAssetFileCommandInput, UpdateAssetFileCommandOutput } from "./commands/UpdateAssetFileCommand";
|
|
64
65
|
import type { UpdateAssociationCommandInput, UpdateAssociationCommandOutput } from "./commands/UpdateAssociationCommand";
|
|
@@ -75,11 +76,11 @@ export { __Client };
|
|
|
75
76
|
/**
|
|
76
77
|
* @public
|
|
77
78
|
*/
|
|
78
|
-
export type ServiceInputTypes = AssociateServiceCommandInput | CreateAgentSpaceCommandInput | CreateAssetCommandInput | CreateAssetFileCommandInput | CreateBacklogTaskCommandInput | CreateChatCommandInput | CreatePrivateConnectionCommandInput | CreateTriggerCommandInput | DeleteAgentSpaceCommandInput | DeleteAssetCommandInput | DeleteAssetFileCommandInput | DeletePrivateConnectionCommandInput | DeleteTriggerCommandInput | DeregisterServiceCommandInput | DescribePrivateConnectionCommandInput | DisableOperatorAppCommandInput | DisassociateServiceCommandInput | EnableOperatorAppCommandInput | GetAccountUsageCommandInput | GetAgentSpaceCommandInput | GetAssetCommandInput | GetAssetContentCommandInput | GetAssetFileCommandInput | GetAssociationCommandInput | GetBacklogTaskCommandInput | GetOperatorAppCommandInput | GetRecommendationCommandInput | GetServiceCommandInput | GetTriggerCommandInput | ListAgentSpacesCommandInput | ListAssetFilesCommandInput | ListAssetTypesCommandInput | ListAssetVersionsCommandInput | ListAssetsCommandInput | ListAssociationsCommandInput | ListBacklogTasksCommandInput | ListChatsCommandInput | ListExecutionsCommandInput | ListGoalsCommandInput | ListJournalRecordsCommandInput | ListPendingMessagesCommandInput | ListPrivateConnectionsCommandInput | ListRecommendationsCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | ListTriggersCommandInput | ListWebhooksCommandInput | RegisterServiceCommandInput | SendMessageCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentSpaceCommandInput | UpdateAssetCommandInput | UpdateAssetFileCommandInput | UpdateAssociationCommandInput | UpdateBacklogTaskCommandInput | UpdateGoalCommandInput | UpdateOperatorAppIdpConfigCommandInput | UpdatePrivateConnectionCertificateCommandInput | UpdateRecommendationCommandInput | UpdateTriggerCommandInput | ValidateAwsAssociationsCommandInput;
|
|
79
|
+
export type ServiceInputTypes = AssociateServiceCommandInput | CreateAgentSpaceCommandInput | CreateAssetCommandInput | CreateAssetFileCommandInput | CreateBacklogTaskCommandInput | CreateChatCommandInput | CreatePrivateConnectionCommandInput | CreateTriggerCommandInput | DeleteAgentSpaceCommandInput | DeleteAssetCommandInput | DeleteAssetFileCommandInput | DeletePrivateConnectionCommandInput | DeleteTriggerCommandInput | DeregisterServiceCommandInput | DescribePrivateConnectionCommandInput | DisableOperatorAppCommandInput | DisassociateServiceCommandInput | EnableOperatorAppCommandInput | GetAccountUsageCommandInput | GetAgentSpaceCommandInput | GetAssetCommandInput | GetAssetContentCommandInput | GetAssetFileCommandInput | GetAssociationCommandInput | GetBacklogTaskCommandInput | GetOperatorAppCommandInput | GetRecommendationCommandInput | GetServiceCommandInput | GetTriggerCommandInput | ListAgentSpacesCommandInput | ListAssetFilesCommandInput | ListAssetTypesCommandInput | ListAssetVersionsCommandInput | ListAssetsCommandInput | ListAssociationsCommandInput | ListBacklogTasksCommandInput | ListChatsCommandInput | ListExecutionsCommandInput | ListGoalsCommandInput | ListJournalRecordsCommandInput | ListPendingMessagesCommandInput | ListPrivateConnectionsCommandInput | ListRecommendationsCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | ListTriggersCommandInput | ListWebhooksCommandInput | RegisterServiceCommandInput | SendMessageCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAgentSpaceCommandInput | UpdateApprovalActionCommandInput | UpdateAssetCommandInput | UpdateAssetFileCommandInput | UpdateAssociationCommandInput | UpdateBacklogTaskCommandInput | UpdateGoalCommandInput | UpdateOperatorAppIdpConfigCommandInput | UpdatePrivateConnectionCertificateCommandInput | UpdateRecommendationCommandInput | UpdateTriggerCommandInput | ValidateAwsAssociationsCommandInput;
|
|
79
80
|
/**
|
|
80
81
|
* @public
|
|
81
82
|
*/
|
|
82
|
-
export type ServiceOutputTypes = AssociateServiceCommandOutput | CreateAgentSpaceCommandOutput | CreateAssetCommandOutput | CreateAssetFileCommandOutput | CreateBacklogTaskCommandOutput | CreateChatCommandOutput | CreatePrivateConnectionCommandOutput | CreateTriggerCommandOutput | DeleteAgentSpaceCommandOutput | DeleteAssetCommandOutput | DeleteAssetFileCommandOutput | DeletePrivateConnectionCommandOutput | DeleteTriggerCommandOutput | DeregisterServiceCommandOutput | DescribePrivateConnectionCommandOutput | DisableOperatorAppCommandOutput | DisassociateServiceCommandOutput | EnableOperatorAppCommandOutput | GetAccountUsageCommandOutput | GetAgentSpaceCommandOutput | GetAssetCommandOutput | GetAssetContentCommandOutput | GetAssetFileCommandOutput | GetAssociationCommandOutput | GetBacklogTaskCommandOutput | GetOperatorAppCommandOutput | GetRecommendationCommandOutput | GetServiceCommandOutput | GetTriggerCommandOutput | ListAgentSpacesCommandOutput | ListAssetFilesCommandOutput | ListAssetTypesCommandOutput | ListAssetVersionsCommandOutput | ListAssetsCommandOutput | ListAssociationsCommandOutput | ListBacklogTasksCommandOutput | ListChatsCommandOutput | ListExecutionsCommandOutput | ListGoalsCommandOutput | ListJournalRecordsCommandOutput | ListPendingMessagesCommandOutput | ListPrivateConnectionsCommandOutput | ListRecommendationsCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | ListTriggersCommandOutput | ListWebhooksCommandOutput | RegisterServiceCommandOutput | SendMessageCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentSpaceCommandOutput | UpdateAssetCommandOutput | UpdateAssetFileCommandOutput | UpdateAssociationCommandOutput | UpdateBacklogTaskCommandOutput | UpdateGoalCommandOutput | UpdateOperatorAppIdpConfigCommandOutput | UpdatePrivateConnectionCertificateCommandOutput | UpdateRecommendationCommandOutput | UpdateTriggerCommandOutput | ValidateAwsAssociationsCommandOutput;
|
|
83
|
+
export type ServiceOutputTypes = AssociateServiceCommandOutput | CreateAgentSpaceCommandOutput | CreateAssetCommandOutput | CreateAssetFileCommandOutput | CreateBacklogTaskCommandOutput | CreateChatCommandOutput | CreatePrivateConnectionCommandOutput | CreateTriggerCommandOutput | DeleteAgentSpaceCommandOutput | DeleteAssetCommandOutput | DeleteAssetFileCommandOutput | DeletePrivateConnectionCommandOutput | DeleteTriggerCommandOutput | DeregisterServiceCommandOutput | DescribePrivateConnectionCommandOutput | DisableOperatorAppCommandOutput | DisassociateServiceCommandOutput | EnableOperatorAppCommandOutput | GetAccountUsageCommandOutput | GetAgentSpaceCommandOutput | GetAssetCommandOutput | GetAssetContentCommandOutput | GetAssetFileCommandOutput | GetAssociationCommandOutput | GetBacklogTaskCommandOutput | GetOperatorAppCommandOutput | GetRecommendationCommandOutput | GetServiceCommandOutput | GetTriggerCommandOutput | ListAgentSpacesCommandOutput | ListAssetFilesCommandOutput | ListAssetTypesCommandOutput | ListAssetVersionsCommandOutput | ListAssetsCommandOutput | ListAssociationsCommandOutput | ListBacklogTasksCommandOutput | ListChatsCommandOutput | ListExecutionsCommandOutput | ListGoalsCommandOutput | ListJournalRecordsCommandOutput | ListPendingMessagesCommandOutput | ListPrivateConnectionsCommandOutput | ListRecommendationsCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | ListTriggersCommandOutput | ListWebhooksCommandOutput | RegisterServiceCommandOutput | SendMessageCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAgentSpaceCommandOutput | UpdateApprovalActionCommandOutput | UpdateAssetCommandOutput | UpdateAssetFileCommandOutput | UpdateAssociationCommandOutput | UpdateBacklogTaskCommandOutput | UpdateGoalCommandOutput | UpdateOperatorAppIdpConfigCommandOutput | UpdatePrivateConnectionCertificateCommandOutput | UpdateRecommendationCommandOutput | UpdateTriggerCommandOutput | ValidateAwsAssociationsCommandOutput;
|
|
83
84
|
/**
|
|
84
85
|
* @public
|
|
85
86
|
*/
|
|
@@ -42,11 +42,15 @@ declare const AssociateServiceCommand_base: {
|
|
|
42
42
|
* accountType: "source", // required
|
|
43
43
|
* assumableRoleArn: "STRING_VALUE", // required
|
|
44
44
|
* externalId: "STRING_VALUE",
|
|
45
|
+
* agentElevatedRoleArn: "STRING_VALUE",
|
|
46
|
+
* agentElevatedRoleArnStatus: "valid" || "invalid" || "pending-confirmation",
|
|
45
47
|
* },
|
|
46
48
|
* aws: { // AWSConfiguration
|
|
47
49
|
* assumableRoleArn: "STRING_VALUE", // required
|
|
48
50
|
* accountId: "STRING_VALUE", // required
|
|
49
51
|
* accountType: "monitor", // required
|
|
52
|
+
* agentElevatedRoleArn: "STRING_VALUE",
|
|
53
|
+
* agentElevatedRoleArnStatus: "valid" || "invalid" || "pending-confirmation",
|
|
50
54
|
* },
|
|
51
55
|
* github: { // GitHubConfiguration
|
|
52
56
|
* repoName: "STRING_VALUE", // required
|
|
@@ -86,11 +90,24 @@ declare const AssociateServiceCommand_base: {
|
|
|
86
90
|
* accountId: "STRING_VALUE", // required
|
|
87
91
|
* endpoint: "STRING_VALUE", // required
|
|
88
92
|
* },
|
|
89
|
-
* mcpserverdatadog: {
|
|
93
|
+
* mcpserverdatadog: { // MCPServerDatadogConfiguration
|
|
94
|
+
* enabledElevatedTools: [ // MCPToolDetailsList
|
|
95
|
+
* { // MCPToolDetail
|
|
96
|
+
* name: "STRING_VALUE", // required
|
|
97
|
+
* toolClassification: "READ_ONLY" || "MUTATIVE" || "DESTRUCTIVE",
|
|
98
|
+
* },
|
|
99
|
+
* ],
|
|
100
|
+
* },
|
|
90
101
|
* mcpserver: { // MCPServerConfiguration
|
|
91
102
|
* tools: [ // MCPToolsList // required
|
|
92
103
|
* "STRING_VALUE",
|
|
93
104
|
* ],
|
|
105
|
+
* toolDetails: [
|
|
106
|
+
* {
|
|
107
|
+
* name: "STRING_VALUE", // required
|
|
108
|
+
* toolClassification: "READ_ONLY" || "MUTATIVE" || "DESTRUCTIVE",
|
|
109
|
+
* },
|
|
110
|
+
* ],
|
|
94
111
|
* },
|
|
95
112
|
* gitlab: { // GitLabConfiguration
|
|
96
113
|
* projectId: "STRING_VALUE", // required
|
|
@@ -114,6 +131,12 @@ declare const AssociateServiceCommand_base: {
|
|
|
114
131
|
* tools: [
|
|
115
132
|
* "STRING_VALUE",
|
|
116
133
|
* ],
|
|
134
|
+
* enabledElevatedTools: [
|
|
135
|
+
* {
|
|
136
|
+
* name: "STRING_VALUE", // required
|
|
137
|
+
* toolClassification: "READ_ONLY" || "MUTATIVE" || "DESTRUCTIVE",
|
|
138
|
+
* },
|
|
139
|
+
* ],
|
|
117
140
|
* },
|
|
118
141
|
* pagerduty: { // PagerDutyConfiguration
|
|
119
142
|
* services: [ // PagerDutyServicesList // required
|
|
@@ -125,6 +148,12 @@ declare const AssociateServiceCommand_base: {
|
|
|
125
148
|
* tools: [ // required
|
|
126
149
|
* "STRING_VALUE",
|
|
127
150
|
* ],
|
|
151
|
+
* toolDetails: [
|
|
152
|
+
* {
|
|
153
|
+
* name: "STRING_VALUE", // required
|
|
154
|
+
* toolClassification: "READ_ONLY" || "MUTATIVE" || "DESTRUCTIVE",
|
|
155
|
+
* },
|
|
156
|
+
* ],
|
|
128
157
|
* },
|
|
129
158
|
* remoteagent: {},
|
|
130
159
|
* remoteagentsigv4: {},
|
|
@@ -132,6 +161,18 @@ declare const AssociateServiceCommand_base: {
|
|
|
132
161
|
* capabilities: { // AssociationCapabilities
|
|
133
162
|
* "<keys>": { // CapabilityConfiguration
|
|
134
163
|
* enabled: true || false,
|
|
164
|
+
* triggerFilterGroups: [ // TriggerFilterGroups
|
|
165
|
+
* { // TriggerFilterGroup
|
|
166
|
+
* events: [ // TriggerEventList
|
|
167
|
+
* "PULL_REQUEST_READY_FOR_REVIEW" || "PULL_REQUEST_DRAFT",
|
|
168
|
+
* ],
|
|
169
|
+
* targetBranches: { // PatternFilter
|
|
170
|
+
* patterns: [ // TriggerRegexPatternList // required
|
|
171
|
+
* "STRING_VALUE",
|
|
172
|
+
* ],
|
|
173
|
+
* },
|
|
174
|
+
* },
|
|
175
|
+
* ],
|
|
135
176
|
* },
|
|
136
177
|
* },
|
|
137
178
|
* };
|
|
@@ -151,11 +192,15 @@ declare const AssociateServiceCommand_base: {
|
|
|
151
192
|
* // accountType: "source", // required
|
|
152
193
|
* // assumableRoleArn: "STRING_VALUE", // required
|
|
153
194
|
* // externalId: "STRING_VALUE",
|
|
195
|
+
* // agentElevatedRoleArn: "STRING_VALUE",
|
|
196
|
+
* // agentElevatedRoleArnStatus: "valid" || "invalid" || "pending-confirmation",
|
|
154
197
|
* // },
|
|
155
198
|
* // aws: { // AWSConfiguration
|
|
156
199
|
* // assumableRoleArn: "STRING_VALUE", // required
|
|
157
200
|
* // accountId: "STRING_VALUE", // required
|
|
158
201
|
* // accountType: "monitor", // required
|
|
202
|
+
* // agentElevatedRoleArn: "STRING_VALUE",
|
|
203
|
+
* // agentElevatedRoleArnStatus: "valid" || "invalid" || "pending-confirmation",
|
|
159
204
|
* // },
|
|
160
205
|
* // github: { // GitHubConfiguration
|
|
161
206
|
* // repoName: "STRING_VALUE", // required
|
|
@@ -195,11 +240,24 @@ declare const AssociateServiceCommand_base: {
|
|
|
195
240
|
* // accountId: "STRING_VALUE", // required
|
|
196
241
|
* // endpoint: "STRING_VALUE", // required
|
|
197
242
|
* // },
|
|
198
|
-
* // mcpserverdatadog: {
|
|
243
|
+
* // mcpserverdatadog: { // MCPServerDatadogConfiguration
|
|
244
|
+
* // enabledElevatedTools: [ // MCPToolDetailsList
|
|
245
|
+
* // { // MCPToolDetail
|
|
246
|
+
* // name: "STRING_VALUE", // required
|
|
247
|
+
* // toolClassification: "READ_ONLY" || "MUTATIVE" || "DESTRUCTIVE",
|
|
248
|
+
* // },
|
|
249
|
+
* // ],
|
|
250
|
+
* // },
|
|
199
251
|
* // mcpserver: { // MCPServerConfiguration
|
|
200
252
|
* // tools: [ // MCPToolsList // required
|
|
201
253
|
* // "STRING_VALUE",
|
|
202
254
|
* // ],
|
|
255
|
+
* // toolDetails: [
|
|
256
|
+
* // {
|
|
257
|
+
* // name: "STRING_VALUE", // required
|
|
258
|
+
* // toolClassification: "READ_ONLY" || "MUTATIVE" || "DESTRUCTIVE",
|
|
259
|
+
* // },
|
|
260
|
+
* // ],
|
|
203
261
|
* // },
|
|
204
262
|
* // gitlab: { // GitLabConfiguration
|
|
205
263
|
* // projectId: "STRING_VALUE", // required
|
|
@@ -223,6 +281,12 @@ declare const AssociateServiceCommand_base: {
|
|
|
223
281
|
* // tools: [
|
|
224
282
|
* // "STRING_VALUE",
|
|
225
283
|
* // ],
|
|
284
|
+
* // enabledElevatedTools: [
|
|
285
|
+
* // {
|
|
286
|
+
* // name: "STRING_VALUE", // required
|
|
287
|
+
* // toolClassification: "READ_ONLY" || "MUTATIVE" || "DESTRUCTIVE",
|
|
288
|
+
* // },
|
|
289
|
+
* // ],
|
|
226
290
|
* // },
|
|
227
291
|
* // pagerduty: { // PagerDutyConfiguration
|
|
228
292
|
* // services: [ // PagerDutyServicesList // required
|
|
@@ -234,6 +298,12 @@ declare const AssociateServiceCommand_base: {
|
|
|
234
298
|
* // tools: [ // required
|
|
235
299
|
* // "STRING_VALUE",
|
|
236
300
|
* // ],
|
|
301
|
+
* // toolDetails: [
|
|
302
|
+
* // {
|
|
303
|
+
* // name: "STRING_VALUE", // required
|
|
304
|
+
* // toolClassification: "READ_ONLY" || "MUTATIVE" || "DESTRUCTIVE",
|
|
305
|
+
* // },
|
|
306
|
+
* // ],
|
|
237
307
|
* // },
|
|
238
308
|
* // remoteagent: {},
|
|
239
309
|
* // remoteagentsigv4: {},
|
|
@@ -241,6 +311,18 @@ declare const AssociateServiceCommand_base: {
|
|
|
241
311
|
* // capabilities: { // AssociationCapabilities
|
|
242
312
|
* // "<keys>": { // CapabilityConfiguration
|
|
243
313
|
* // enabled: true || false,
|
|
314
|
+
* // triggerFilterGroups: [ // TriggerFilterGroups
|
|
315
|
+
* // { // TriggerFilterGroup
|
|
316
|
+
* // events: [ // TriggerEventList
|
|
317
|
+
* // "PULL_REQUEST_READY_FOR_REVIEW" || "PULL_REQUEST_DRAFT",
|
|
318
|
+
* // ],
|
|
319
|
+
* // targetBranches: { // PatternFilter
|
|
320
|
+
* // patterns: [ // TriggerRegexPatternList // required
|
|
321
|
+
* // "STRING_VALUE",
|
|
322
|
+
* // ],
|
|
323
|
+
* // },
|
|
324
|
+
* // },
|
|
325
|
+
* // ],
|
|
244
326
|
* // },
|
|
245
327
|
* // },
|
|
246
328
|
* // },
|
|
@@ -42,6 +42,9 @@ declare const CreateAgentSpaceCommand_base: {
|
|
|
42
42
|
* tags: { // Tags
|
|
43
43
|
* "<keys>": "STRING_VALUE",
|
|
44
44
|
* },
|
|
45
|
+
* preferences: { // AgentSpacePreferences
|
|
46
|
+
* "<keys>": true || false,
|
|
47
|
+
* },
|
|
45
48
|
* };
|
|
46
49
|
* const command = new CreateAgentSpaceCommand(input);
|
|
47
50
|
* const response = await client.send(command);
|
|
@@ -54,6 +57,9 @@ declare const CreateAgentSpaceCommand_base: {
|
|
|
54
57
|
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
55
58
|
* // kmsKeyArn: "STRING_VALUE",
|
|
56
59
|
* // agentSpaceId: "STRING_VALUE", // required
|
|
60
|
+
* // preferences: { // AgentSpacePreferences
|
|
61
|
+
* // "<keys>": true || false,
|
|
62
|
+
* // },
|
|
57
63
|
* // },
|
|
58
64
|
* // tags: { // Tags
|
|
59
65
|
* // "<keys>": "STRING_VALUE",
|
|
@@ -66,7 +66,7 @@ declare const CreateBacklogTaskCommand_base: {
|
|
|
66
66
|
* // },
|
|
67
67
|
* // taskType: "INVESTIGATION" || "EVALUATION" || "RELEASE_READINESS_REVIEW" || "RELEASE_TESTING", // required
|
|
68
68
|
* // priority: "CRITICAL" || "HIGH" || "MEDIUM" || "LOW" || "MINIMAL", // required
|
|
69
|
-
* // status: "PENDING_TRIAGE" || "LINKED" || "PENDING_START" || "IN_PROGRESS" || "PENDING_CUSTOMER_APPROVAL" || "COMPLETED" || "FAILED" || "TIMED_OUT" || "CANCELED" || "SKIPPED", // required
|
|
69
|
+
* // status: "PENDING_TRIAGE" || "LINKED" || "PENDING_START" || "IN_PROGRESS" || "PENDING_CUSTOMER_APPROVAL" || "COMPLETED" || "FAILED" || "TIMED_OUT" || "CANCELED" || "SKIPPED" || "WAITING", // required
|
|
70
70
|
* // createdAt: new Date("TIMESTAMP"), // required
|
|
71
71
|
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
72
72
|
* // version: Number("int"), // required
|
|
@@ -94,6 +94,9 @@ declare const CreatePrivateConnectionCommand_base: {
|
|
|
94
94
|
* @throws {@link InternalServerException} (server fault)
|
|
95
95
|
* <p>This exception is thrown when an unexpected error occurs in the processing of a request.</p>
|
|
96
96
|
*
|
|
97
|
+
* @throws {@link InvalidParameterException} (client fault)
|
|
98
|
+
* <p>One or more parameters provided in the request are invalid.</p>
|
|
99
|
+
*
|
|
97
100
|
* @throws {@link ThrottlingException} (client fault)
|
|
98
101
|
* <p>The request was throttled due to too many requests. Please slow down and try again.</p>
|
|
99
102
|
*
|
|
@@ -106,9 +109,6 @@ declare const CreatePrivateConnectionCommand_base: {
|
|
|
106
109
|
* @throws {@link ContentSizeExceededException} (client fault)
|
|
107
110
|
* <p>This exception is thrown when the content size exceeds the allowed limit.</p>
|
|
108
111
|
*
|
|
109
|
-
* @throws {@link InvalidParameterException} (client fault)
|
|
110
|
-
* <p>One or more parameters provided in the request are invalid.</p>
|
|
111
|
-
*
|
|
112
112
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
113
113
|
* <p>The requested resource could not be found.</p>
|
|
114
114
|
*
|
|
@@ -47,6 +47,9 @@ declare const GetAgentSpaceCommand_base: {
|
|
|
47
47
|
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
48
48
|
* // kmsKeyArn: "STRING_VALUE",
|
|
49
49
|
* // agentSpaceId: "STRING_VALUE", // required
|
|
50
|
+
* // preferences: { // AgentSpacePreferences
|
|
51
|
+
* // "<keys>": true || false,
|
|
52
|
+
* // },
|
|
50
53
|
* // },
|
|
51
54
|
* // tags: { // Tags
|
|
52
55
|
* // "<keys>": "STRING_VALUE",
|
|
@@ -53,11 +53,15 @@ declare const GetAssociationCommand_base: {
|
|
|
53
53
|
* // accountType: "source", // required
|
|
54
54
|
* // assumableRoleArn: "STRING_VALUE", // required
|
|
55
55
|
* // externalId: "STRING_VALUE",
|
|
56
|
+
* // agentElevatedRoleArn: "STRING_VALUE",
|
|
57
|
+
* // agentElevatedRoleArnStatus: "valid" || "invalid" || "pending-confirmation",
|
|
56
58
|
* // },
|
|
57
59
|
* // aws: { // AWSConfiguration
|
|
58
60
|
* // assumableRoleArn: "STRING_VALUE", // required
|
|
59
61
|
* // accountId: "STRING_VALUE", // required
|
|
60
62
|
* // accountType: "monitor", // required
|
|
63
|
+
* // agentElevatedRoleArn: "STRING_VALUE",
|
|
64
|
+
* // agentElevatedRoleArnStatus: "valid" || "invalid" || "pending-confirmation",
|
|
61
65
|
* // },
|
|
62
66
|
* // github: { // GitHubConfiguration
|
|
63
67
|
* // repoName: "STRING_VALUE", // required
|
|
@@ -97,11 +101,24 @@ declare const GetAssociationCommand_base: {
|
|
|
97
101
|
* // accountId: "STRING_VALUE", // required
|
|
98
102
|
* // endpoint: "STRING_VALUE", // required
|
|
99
103
|
* // },
|
|
100
|
-
* // mcpserverdatadog: {
|
|
104
|
+
* // mcpserverdatadog: { // MCPServerDatadogConfiguration
|
|
105
|
+
* // enabledElevatedTools: [ // MCPToolDetailsList
|
|
106
|
+
* // { // MCPToolDetail
|
|
107
|
+
* // name: "STRING_VALUE", // required
|
|
108
|
+
* // toolClassification: "READ_ONLY" || "MUTATIVE" || "DESTRUCTIVE",
|
|
109
|
+
* // },
|
|
110
|
+
* // ],
|
|
111
|
+
* // },
|
|
101
112
|
* // mcpserver: { // MCPServerConfiguration
|
|
102
113
|
* // tools: [ // MCPToolsList // required
|
|
103
114
|
* // "STRING_VALUE",
|
|
104
115
|
* // ],
|
|
116
|
+
* // toolDetails: [
|
|
117
|
+
* // {
|
|
118
|
+
* // name: "STRING_VALUE", // required
|
|
119
|
+
* // toolClassification: "READ_ONLY" || "MUTATIVE" || "DESTRUCTIVE",
|
|
120
|
+
* // },
|
|
121
|
+
* // ],
|
|
105
122
|
* // },
|
|
106
123
|
* // gitlab: { // GitLabConfiguration
|
|
107
124
|
* // projectId: "STRING_VALUE", // required
|
|
@@ -125,6 +142,12 @@ declare const GetAssociationCommand_base: {
|
|
|
125
142
|
* // tools: [
|
|
126
143
|
* // "STRING_VALUE",
|
|
127
144
|
* // ],
|
|
145
|
+
* // enabledElevatedTools: [
|
|
146
|
+
* // {
|
|
147
|
+
* // name: "STRING_VALUE", // required
|
|
148
|
+
* // toolClassification: "READ_ONLY" || "MUTATIVE" || "DESTRUCTIVE",
|
|
149
|
+
* // },
|
|
150
|
+
* // ],
|
|
128
151
|
* // },
|
|
129
152
|
* // pagerduty: { // PagerDutyConfiguration
|
|
130
153
|
* // services: [ // PagerDutyServicesList // required
|
|
@@ -136,6 +159,12 @@ declare const GetAssociationCommand_base: {
|
|
|
136
159
|
* // tools: [ // required
|
|
137
160
|
* // "STRING_VALUE",
|
|
138
161
|
* // ],
|
|
162
|
+
* // toolDetails: [
|
|
163
|
+
* // {
|
|
164
|
+
* // name: "STRING_VALUE", // required
|
|
165
|
+
* // toolClassification: "READ_ONLY" || "MUTATIVE" || "DESTRUCTIVE",
|
|
166
|
+
* // },
|
|
167
|
+
* // ],
|
|
139
168
|
* // },
|
|
140
169
|
* // remoteagent: {},
|
|
141
170
|
* // remoteagentsigv4: {},
|
|
@@ -143,6 +172,18 @@ declare const GetAssociationCommand_base: {
|
|
|
143
172
|
* // capabilities: { // AssociationCapabilities
|
|
144
173
|
* // "<keys>": { // CapabilityConfiguration
|
|
145
174
|
* // enabled: true || false,
|
|
175
|
+
* // triggerFilterGroups: [ // TriggerFilterGroups
|
|
176
|
+
* // { // TriggerFilterGroup
|
|
177
|
+
* // events: [ // TriggerEventList
|
|
178
|
+
* // "PULL_REQUEST_READY_FOR_REVIEW" || "PULL_REQUEST_DRAFT",
|
|
179
|
+
* // ],
|
|
180
|
+
* // targetBranches: { // PatternFilter
|
|
181
|
+
* // patterns: [ // TriggerRegexPatternList // required
|
|
182
|
+
* // "STRING_VALUE",
|
|
183
|
+
* // ],
|
|
184
|
+
* // },
|
|
185
|
+
* // },
|
|
186
|
+
* // ],
|
|
146
187
|
* // },
|
|
147
188
|
* // },
|
|
148
189
|
* // },
|
|
@@ -55,7 +55,7 @@ declare const GetBacklogTaskCommand_base: {
|
|
|
55
55
|
* // },
|
|
56
56
|
* // taskType: "INVESTIGATION" || "EVALUATION" || "RELEASE_READINESS_REVIEW" || "RELEASE_TESTING", // required
|
|
57
57
|
* // priority: "CRITICAL" || "HIGH" || "MEDIUM" || "LOW" || "MINIMAL", // required
|
|
58
|
-
* // status: "PENDING_TRIAGE" || "LINKED" || "PENDING_START" || "IN_PROGRESS" || "PENDING_CUSTOMER_APPROVAL" || "COMPLETED" || "FAILED" || "TIMED_OUT" || "CANCELED" || "SKIPPED", // required
|
|
58
|
+
* // status: "PENDING_TRIAGE" || "LINKED" || "PENDING_START" || "IN_PROGRESS" || "PENDING_CUSTOMER_APPROVAL" || "COMPLETED" || "FAILED" || "TIMED_OUT" || "CANCELED" || "SKIPPED" || "WAITING", // required
|
|
59
59
|
* // createdAt: new Date("TIMESTAMP"), // required
|
|
60
60
|
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
61
61
|
* // version: Number("int"), // required
|
|
@@ -87,7 +87,7 @@ declare const GetServiceCommand_base: {
|
|
|
87
87
|
* // },
|
|
88
88
|
* // mcpservernewrelic: { // RegisteredNewRelicDetails
|
|
89
89
|
* // accountId: "STRING_VALUE", // required
|
|
90
|
-
* // region: "US" || "EU", // required
|
|
90
|
+
* // region: "US" || "EU" || "JP", // required
|
|
91
91
|
* // description: "STRING_VALUE",
|
|
92
92
|
* // },
|
|
93
93
|
* // azuredevops: { // RegisteredAzureDevOpsServiceDetails
|
|
@@ -140,6 +140,8 @@ declare const GetServiceCommand_base: {
|
|
|
140
140
|
* // },
|
|
141
141
|
* // kmsKeyArn: "STRING_VALUE",
|
|
142
142
|
* // privateConnectionName: "STRING_VALUE",
|
|
143
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
144
|
+
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
143
145
|
* // },
|
|
144
146
|
* // tags: { // Tags
|
|
145
147
|
* // "<keys>": "STRING_VALUE",
|
|
@@ -50,6 +50,9 @@ declare const ListAgentSpacesCommand_base: {
|
|
|
50
50
|
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
51
51
|
* // kmsKeyArn: "STRING_VALUE",
|
|
52
52
|
* // agentSpaceId: "STRING_VALUE", // required
|
|
53
|
+
* // preferences: { // AgentSpacePreferences
|
|
54
|
+
* // "<keys>": true || false,
|
|
55
|
+
* // },
|
|
53
56
|
* // },
|
|
54
57
|
* // ],
|
|
55
58
|
* // };
|
|
@@ -57,11 +57,15 @@ declare const ListAssociationsCommand_base: {
|
|
|
57
57
|
* // accountType: "source", // required
|
|
58
58
|
* // assumableRoleArn: "STRING_VALUE", // required
|
|
59
59
|
* // externalId: "STRING_VALUE",
|
|
60
|
+
* // agentElevatedRoleArn: "STRING_VALUE",
|
|
61
|
+
* // agentElevatedRoleArnStatus: "valid" || "invalid" || "pending-confirmation",
|
|
60
62
|
* // },
|
|
61
63
|
* // aws: { // AWSConfiguration
|
|
62
64
|
* // assumableRoleArn: "STRING_VALUE", // required
|
|
63
65
|
* // accountId: "STRING_VALUE", // required
|
|
64
66
|
* // accountType: "monitor", // required
|
|
67
|
+
* // agentElevatedRoleArn: "STRING_VALUE",
|
|
68
|
+
* // agentElevatedRoleArnStatus: "valid" || "invalid" || "pending-confirmation",
|
|
65
69
|
* // },
|
|
66
70
|
* // github: { // GitHubConfiguration
|
|
67
71
|
* // repoName: "STRING_VALUE", // required
|
|
@@ -101,11 +105,24 @@ declare const ListAssociationsCommand_base: {
|
|
|
101
105
|
* // accountId: "STRING_VALUE", // required
|
|
102
106
|
* // endpoint: "STRING_VALUE", // required
|
|
103
107
|
* // },
|
|
104
|
-
* // mcpserverdatadog: {
|
|
108
|
+
* // mcpserverdatadog: { // MCPServerDatadogConfiguration
|
|
109
|
+
* // enabledElevatedTools: [ // MCPToolDetailsList
|
|
110
|
+
* // { // MCPToolDetail
|
|
111
|
+
* // name: "STRING_VALUE", // required
|
|
112
|
+
* // toolClassification: "READ_ONLY" || "MUTATIVE" || "DESTRUCTIVE",
|
|
113
|
+
* // },
|
|
114
|
+
* // ],
|
|
115
|
+
* // },
|
|
105
116
|
* // mcpserver: { // MCPServerConfiguration
|
|
106
117
|
* // tools: [ // MCPToolsList // required
|
|
107
118
|
* // "STRING_VALUE",
|
|
108
119
|
* // ],
|
|
120
|
+
* // toolDetails: [
|
|
121
|
+
* // {
|
|
122
|
+
* // name: "STRING_VALUE", // required
|
|
123
|
+
* // toolClassification: "READ_ONLY" || "MUTATIVE" || "DESTRUCTIVE",
|
|
124
|
+
* // },
|
|
125
|
+
* // ],
|
|
109
126
|
* // },
|
|
110
127
|
* // gitlab: { // GitLabConfiguration
|
|
111
128
|
* // projectId: "STRING_VALUE", // required
|
|
@@ -129,6 +146,12 @@ declare const ListAssociationsCommand_base: {
|
|
|
129
146
|
* // tools: [
|
|
130
147
|
* // "STRING_VALUE",
|
|
131
148
|
* // ],
|
|
149
|
+
* // enabledElevatedTools: [
|
|
150
|
+
* // {
|
|
151
|
+
* // name: "STRING_VALUE", // required
|
|
152
|
+
* // toolClassification: "READ_ONLY" || "MUTATIVE" || "DESTRUCTIVE",
|
|
153
|
+
* // },
|
|
154
|
+
* // ],
|
|
132
155
|
* // },
|
|
133
156
|
* // pagerduty: { // PagerDutyConfiguration
|
|
134
157
|
* // services: [ // PagerDutyServicesList // required
|
|
@@ -140,6 +163,12 @@ declare const ListAssociationsCommand_base: {
|
|
|
140
163
|
* // tools: [ // required
|
|
141
164
|
* // "STRING_VALUE",
|
|
142
165
|
* // ],
|
|
166
|
+
* // toolDetails: [
|
|
167
|
+
* // {
|
|
168
|
+
* // name: "STRING_VALUE", // required
|
|
169
|
+
* // toolClassification: "READ_ONLY" || "MUTATIVE" || "DESTRUCTIVE",
|
|
170
|
+
* // },
|
|
171
|
+
* // ],
|
|
143
172
|
* // },
|
|
144
173
|
* // remoteagent: {},
|
|
145
174
|
* // remoteagentsigv4: {},
|
|
@@ -147,6 +176,18 @@ declare const ListAssociationsCommand_base: {
|
|
|
147
176
|
* // capabilities: { // AssociationCapabilities
|
|
148
177
|
* // "<keys>": { // CapabilityConfiguration
|
|
149
178
|
* // enabled: true || false,
|
|
179
|
+
* // triggerFilterGroups: [ // TriggerFilterGroups
|
|
180
|
+
* // { // TriggerFilterGroup
|
|
181
|
+
* // events: [ // TriggerEventList
|
|
182
|
+
* // "PULL_REQUEST_READY_FOR_REVIEW" || "PULL_REQUEST_DRAFT",
|
|
183
|
+
* // ],
|
|
184
|
+
* // targetBranches: { // PatternFilter
|
|
185
|
+
* // patterns: [ // TriggerRegexPatternList // required
|
|
186
|
+
* // "STRING_VALUE",
|
|
187
|
+
* // ],
|
|
188
|
+
* // },
|
|
189
|
+
* // },
|
|
190
|
+
* // ],
|
|
150
191
|
* // },
|
|
151
192
|
* // },
|
|
152
193
|
* // },
|
|
@@ -42,7 +42,7 @@ declare const ListBacklogTasksCommand_base: {
|
|
|
42
42
|
* "CRITICAL" || "HIGH" || "MEDIUM" || "LOW" || "MINIMAL",
|
|
43
43
|
* ],
|
|
44
44
|
* status: [ // TaskStatusList
|
|
45
|
-
* "PENDING_TRIAGE" || "LINKED" || "PENDING_START" || "IN_PROGRESS" || "PENDING_CUSTOMER_APPROVAL" || "COMPLETED" || "FAILED" || "TIMED_OUT" || "CANCELED" || "SKIPPED",
|
|
45
|
+
* "PENDING_TRIAGE" || "LINKED" || "PENDING_START" || "IN_PROGRESS" || "PENDING_CUSTOMER_APPROVAL" || "COMPLETED" || "FAILED" || "TIMED_OUT" || "CANCELED" || "SKIPPED" || "WAITING",
|
|
46
46
|
* ],
|
|
47
47
|
* taskType: [ // TaskTypeList
|
|
48
48
|
* "INVESTIGATION" || "EVALUATION" || "RELEASE_READINESS_REVIEW" || "RELEASE_TESTING",
|
|
@@ -73,7 +73,7 @@ declare const ListBacklogTasksCommand_base: {
|
|
|
73
73
|
* // },
|
|
74
74
|
* // taskType: "INVESTIGATION" || "EVALUATION" || "RELEASE_READINESS_REVIEW" || "RELEASE_TESTING", // required
|
|
75
75
|
* // priority: "CRITICAL" || "HIGH" || "MEDIUM" || "LOW" || "MINIMAL", // required
|
|
76
|
-
* // status: "PENDING_TRIAGE" || "LINKED" || "PENDING_START" || "IN_PROGRESS" || "PENDING_CUSTOMER_APPROVAL" || "COMPLETED" || "FAILED" || "TIMED_OUT" || "CANCELED" || "SKIPPED", // required
|
|
76
|
+
* // status: "PENDING_TRIAGE" || "LINKED" || "PENDING_START" || "IN_PROGRESS" || "PENDING_CUSTOMER_APPROVAL" || "COMPLETED" || "FAILED" || "TIMED_OUT" || "CANCELED" || "SKIPPED" || "WAITING", // required
|
|
77
77
|
* // createdAt: new Date("TIMESTAMP"), // required
|
|
78
78
|
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
79
79
|
* // version: Number("int"), // required
|
|
@@ -50,7 +50,7 @@ declare const ListExecutionsCommand_base: {
|
|
|
50
50
|
* // agentSubTask: "STRING_VALUE", // required
|
|
51
51
|
* // createdAt: new Date("TIMESTAMP"), // required
|
|
52
52
|
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
53
|
-
* // executionStatus: "FAILED" || "RUNNING" || "STOPPED" || "CANCELED" || "TIMED_OUT", // required
|
|
53
|
+
* // executionStatus: "FAILED" || "RUNNING" || "STOPPED" || "CANCELED" || "TIMED_OUT" || "WAITING", // required
|
|
54
54
|
* // agentType: "STRING_VALUE",
|
|
55
55
|
* // uid: "STRING_VALUE",
|
|
56
56
|
* // },
|
|
@@ -91,7 +91,7 @@ declare const ListServicesCommand_base: {
|
|
|
91
91
|
* // },
|
|
92
92
|
* // mcpservernewrelic: { // RegisteredNewRelicDetails
|
|
93
93
|
* // accountId: "STRING_VALUE", // required
|
|
94
|
-
* // region: "US" || "EU", // required
|
|
94
|
+
* // region: "US" || "EU" || "JP", // required
|
|
95
95
|
* // description: "STRING_VALUE",
|
|
96
96
|
* // },
|
|
97
97
|
* // azuredevops: { // RegisteredAzureDevOpsServiceDetails
|
|
@@ -144,6 +144,8 @@ declare const ListServicesCommand_base: {
|
|
|
144
144
|
* // },
|
|
145
145
|
* // kmsKeyArn: "STRING_VALUE",
|
|
146
146
|
* // privateConnectionName: "STRING_VALUE",
|
|
147
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
148
|
+
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
147
149
|
* // },
|
|
148
150
|
* // ],
|
|
149
151
|
* // };
|
|
@@ -175,7 +175,7 @@ declare const RegisterServiceCommand_base: {
|
|
|
175
175
|
* apiKey: { // NewRelicApiKeyConfig
|
|
176
176
|
* apiKey: "STRING_VALUE", // required
|
|
177
177
|
* accountId: "STRING_VALUE", // required
|
|
178
|
-
* region: "US" || "EU", // required
|
|
178
|
+
* region: "US" || "EU" || "JP", // required
|
|
179
179
|
* applicationIds: [ // NewRelicApplicationIds
|
|
180
180
|
* "STRING_VALUE",
|
|
181
181
|
* ],
|
|
@@ -41,11 +41,19 @@ declare const SendMessageCommand_base: {
|
|
|
41
41
|
* currentPage: "STRING_VALUE",
|
|
42
42
|
* lastMessage: "STRING_VALUE",
|
|
43
43
|
* userActionResponse: "STRING_VALUE",
|
|
44
|
+
* approvalAction: { // ApprovalAction
|
|
45
|
+
* toolUseId: "STRING_VALUE",
|
|
46
|
+
* interruptId: "STRING_VALUE",
|
|
47
|
+
* approvalId: "STRING_VALUE",
|
|
48
|
+
* buttonText: "STRING_VALUE",
|
|
49
|
+
* action: "APPROVED" || "REJECTED",
|
|
50
|
+
* },
|
|
44
51
|
* },
|
|
45
52
|
* userId: "STRING_VALUE",
|
|
46
53
|
* assetIds: [ // AssetIdList
|
|
47
54
|
* "STRING_VALUE",
|
|
48
55
|
* ],
|
|
56
|
+
* modelTier: "STRING_VALUE",
|
|
49
57
|
* };
|
|
50
58
|
* const command = new SendMessageCommand(input);
|
|
51
59
|
* const response = await client.send(command);
|
|
@@ -38,6 +38,9 @@ declare const UpdateAgentSpaceCommand_base: {
|
|
|
38
38
|
* name: "STRING_VALUE",
|
|
39
39
|
* description: "STRING_VALUE",
|
|
40
40
|
* locale: "STRING_VALUE",
|
|
41
|
+
* preferences: { // AgentSpacePreferences
|
|
42
|
+
* "<keys>": true || false,
|
|
43
|
+
* },
|
|
41
44
|
* };
|
|
42
45
|
* const command = new UpdateAgentSpaceCommand(input);
|
|
43
46
|
* const response = await client.send(command);
|
|
@@ -50,6 +53,9 @@ declare const UpdateAgentSpaceCommand_base: {
|
|
|
50
53
|
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
51
54
|
* // kmsKeyArn: "STRING_VALUE",
|
|
52
55
|
* // agentSpaceId: "STRING_VALUE", // required
|
|
56
|
+
* // preferences: { // AgentSpacePreferences
|
|
57
|
+
* // "<keys>": true || false,
|
|
58
|
+
* // },
|
|
53
59
|
* // },
|
|
54
60
|
* // };
|
|
55
61
|
*
|