@aws-sdk/client-devops-agent 3.1049.0 → 3.1050.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 +1 -10
- package/dist-cjs/index.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +51 -12
- package/dist-es/models/enums.js +2 -0
- package/dist-es/schemas/schemas_0.js +47 -9
- package/dist-types/DevOpsAgent.d.ts +1 -11
- package/dist-types/DevOpsAgentClient.d.ts +1 -11
- package/dist-types/commands/AssociateServiceCommand.d.ts +20 -12
- package/dist-types/commands/CreateAgentSpaceCommand.d.ts +10 -12
- package/dist-types/commands/CreateBacklogTaskCommand.d.ts +10 -12
- package/dist-types/commands/CreateChatCommand.d.ts +10 -12
- package/dist-types/commands/CreatePrivateConnectionCommand.d.ts +10 -12
- package/dist-types/commands/DeleteAgentSpaceCommand.d.ts +10 -12
- package/dist-types/commands/DeletePrivateConnectionCommand.d.ts +10 -12
- package/dist-types/commands/DeregisterServiceCommand.d.ts +10 -12
- package/dist-types/commands/DescribePrivateConnectionCommand.d.ts +10 -12
- package/dist-types/commands/DisableOperatorAppCommand.d.ts +11 -13
- package/dist-types/commands/DisassociateServiceCommand.d.ts +10 -12
- package/dist-types/commands/EnableOperatorAppCommand.d.ts +11 -13
- package/dist-types/commands/GetAccountUsageCommand.d.ts +10 -12
- package/dist-types/commands/GetAgentSpaceCommand.d.ts +10 -12
- package/dist-types/commands/GetAssociationCommand.d.ts +15 -12
- package/dist-types/commands/GetBacklogTaskCommand.d.ts +10 -12
- package/dist-types/commands/GetOperatorAppCommand.d.ts +10 -12
- package/dist-types/commands/GetRecommendationCommand.d.ts +12 -12
- package/dist-types/commands/GetServiceCommand.d.ts +22 -13
- package/dist-types/commands/ListAgentSpacesCommand.d.ts +10 -12
- package/dist-types/commands/ListAssociationsCommand.d.ts +15 -12
- package/dist-types/commands/ListBacklogTasksCommand.d.ts +10 -12
- package/dist-types/commands/ListChatsCommand.d.ts +10 -12
- package/dist-types/commands/ListExecutionsCommand.d.ts +10 -12
- package/dist-types/commands/ListGoalsCommand.d.ts +10 -12
- package/dist-types/commands/ListJournalRecordsCommand.d.ts +10 -12
- package/dist-types/commands/ListPendingMessagesCommand.d.ts +10 -12
- package/dist-types/commands/ListPrivateConnectionsCommand.d.ts +10 -12
- package/dist-types/commands/ListRecommendationsCommand.d.ts +12 -12
- package/dist-types/commands/ListServicesCommand.d.ts +23 -14
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +10 -12
- package/dist-types/commands/ListWebhooksCommand.d.ts +10 -12
- package/dist-types/commands/RegisterServiceCommand.d.ts +24 -13
- package/dist-types/commands/SendMessageCommand.d.ts +10 -12
- package/dist-types/commands/TagResourceCommand.d.ts +10 -12
- package/dist-types/commands/UntagResourceCommand.d.ts +10 -12
- package/dist-types/commands/UpdateAgentSpaceCommand.d.ts +10 -12
- package/dist-types/commands/UpdateAssociationCommand.d.ts +20 -12
- package/dist-types/commands/UpdateBacklogTaskCommand.d.ts +10 -12
- package/dist-types/commands/UpdateGoalCommand.d.ts +10 -12
- package/dist-types/commands/UpdateOperatorAppIdpConfigCommand.d.ts +10 -12
- package/dist-types/commands/UpdatePrivateConnectionCertificateCommand.d.ts +10 -12
- package/dist-types/commands/UpdateRecommendationCommand.d.ts +12 -12
- package/dist-types/commands/ValidateAwsAssociationsCommand.d.ts +10 -12
- package/dist-types/index.d.ts +1 -11
- package/dist-types/models/enums.d.ts +87 -79
- package/dist-types/models/errors.d.ts +12 -15
- package/dist-types/models/models_0.d.ts +1021 -815
- package/dist-types/schemas/schemas_0.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +125 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
- package/package.json +1 -1
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
*/
|
|
5
5
|
export declare const GithubRepoOwnerType: {
|
|
6
6
|
/**
|
|
7
|
-
* Repository owned by a GitHub organization
|
|
7
|
+
* <p>Repository owned by a GitHub organization.</p>
|
|
8
8
|
*/
|
|
9
9
|
readonly ORGANIZATION: "organization";
|
|
10
10
|
/**
|
|
11
|
-
* Repository owned by an individual GitHub user
|
|
11
|
+
* <p>Repository owned by an individual GitHub user.</p>
|
|
12
12
|
*/
|
|
13
13
|
readonly USER: "user";
|
|
14
14
|
};
|
|
@@ -22,11 +22,11 @@ export type GithubRepoOwnerType = (typeof GithubRepoOwnerType)[keyof typeof Gith
|
|
|
22
22
|
*/
|
|
23
23
|
export declare const GitLabTokenType: {
|
|
24
24
|
/**
|
|
25
|
-
* Group access token
|
|
25
|
+
* <p>Group access token</p>
|
|
26
26
|
*/
|
|
27
27
|
readonly GROUP: "group";
|
|
28
28
|
/**
|
|
29
|
-
* Personal access token
|
|
29
|
+
* <p>Personal access token</p>
|
|
30
30
|
*/
|
|
31
31
|
readonly PERSONAL: "personal";
|
|
32
32
|
};
|
|
@@ -40,19 +40,19 @@ export type GitLabTokenType = (typeof GitLabTokenType)[keyof typeof GitLabTokenT
|
|
|
40
40
|
*/
|
|
41
41
|
export declare const MCPServerAuthorizationMethod: {
|
|
42
42
|
/**
|
|
43
|
-
* API key-based authentication
|
|
43
|
+
* <p>API key-based authentication.</p>
|
|
44
44
|
*/
|
|
45
45
|
readonly API_KEY: "api-key";
|
|
46
46
|
/**
|
|
47
|
-
* Bearer token authentication (RFC 6750)
|
|
47
|
+
* <p>Bearer token authentication (RFC 6750).</p>
|
|
48
48
|
*/
|
|
49
49
|
readonly BEARER_TOKEN: "bearer-token";
|
|
50
50
|
/**
|
|
51
|
-
* OAuth 2.0 three-legged authorization flow
|
|
51
|
+
* <p>OAuth 2.0 three-legged authorization flow.</p>
|
|
52
52
|
*/
|
|
53
53
|
readonly OAUTH_3LO: "oauth-3lo";
|
|
54
54
|
/**
|
|
55
|
-
* OAuth 2.0 client credentials flow
|
|
55
|
+
* <p>OAuth 2.0 client credentials flow.</p>
|
|
56
56
|
*/
|
|
57
57
|
readonly OAUTH_CLIENT_CREDENTIALS: "oauth-client-credentials";
|
|
58
58
|
};
|
|
@@ -66,11 +66,11 @@ export type MCPServerAuthorizationMethod = (typeof MCPServerAuthorizationMethod)
|
|
|
66
66
|
*/
|
|
67
67
|
export declare const NewRelicRegion: {
|
|
68
68
|
/**
|
|
69
|
-
* EU region
|
|
69
|
+
* <p>EU region</p>
|
|
70
70
|
*/
|
|
71
71
|
readonly EU: "EU";
|
|
72
72
|
/**
|
|
73
|
-
* US region
|
|
73
|
+
* <p>US region</p>
|
|
74
74
|
*/
|
|
75
75
|
readonly US: "US";
|
|
76
76
|
};
|
|
@@ -106,15 +106,15 @@ export type SourceAccountType = (typeof SourceAccountType)[keyof typeof SourceAc
|
|
|
106
106
|
*/
|
|
107
107
|
export declare const ValidationStatus: {
|
|
108
108
|
/**
|
|
109
|
-
* The association has failed validation and requires attention
|
|
109
|
+
* <p>The association has failed validation and requires attention.</p>
|
|
110
110
|
*/
|
|
111
111
|
readonly INVALID: "invalid";
|
|
112
112
|
/**
|
|
113
|
-
* The association is awaiting user confirmation before validation can be completed
|
|
113
|
+
* <p>The association is awaiting user confirmation before validation can be completed.</p>
|
|
114
114
|
*/
|
|
115
115
|
readonly PENDING_CONFIRMATION: "pending-confirmation";
|
|
116
116
|
/**
|
|
117
|
-
* The association has been validated and is functioning correctly
|
|
117
|
+
* <p>The association has been validated and is functioning correctly.</p>
|
|
118
118
|
*/
|
|
119
119
|
readonly VALID: "valid";
|
|
120
120
|
};
|
|
@@ -128,19 +128,19 @@ export type ValidationStatus = (typeof ValidationStatus)[keyof typeof Validation
|
|
|
128
128
|
*/
|
|
129
129
|
export declare const WebhookType: {
|
|
130
130
|
/**
|
|
131
|
-
* API key-based webhook authentication
|
|
131
|
+
* <p>API key-based webhook authentication</p>
|
|
132
132
|
*/
|
|
133
133
|
readonly API_KEY: "apikey";
|
|
134
134
|
/**
|
|
135
|
-
* GitLab-specific webhook authentication
|
|
135
|
+
* <p>GitLab-specific webhook authentication</p>
|
|
136
136
|
*/
|
|
137
137
|
readonly GITLAB: "gitlab";
|
|
138
138
|
/**
|
|
139
|
-
* HMAC-based webhook authentication
|
|
139
|
+
* <p>HMAC-based webhook authentication</p>
|
|
140
140
|
*/
|
|
141
141
|
readonly HMAC: "hmac";
|
|
142
142
|
/**
|
|
143
|
-
* pagerduty-specific webhook authentication
|
|
143
|
+
* <p>pagerduty-specific webhook authentication</p>
|
|
144
144
|
*/
|
|
145
145
|
readonly PAGERDUTY: "pagerduty";
|
|
146
146
|
};
|
|
@@ -154,15 +154,15 @@ export type WebhookType = (typeof WebhookType)[keyof typeof WebhookType];
|
|
|
154
154
|
*/
|
|
155
155
|
export declare const AuthFlow: {
|
|
156
156
|
/**
|
|
157
|
-
* IAM-based authentication flow
|
|
157
|
+
* <p>IAM-based authentication flow</p>
|
|
158
158
|
*/
|
|
159
159
|
readonly IAM: "iam";
|
|
160
160
|
/**
|
|
161
|
-
* Identity Center (IdC) authentication flow
|
|
161
|
+
* <p>Identity Center (IdC) authentication flow</p>
|
|
162
162
|
*/
|
|
163
163
|
readonly IDC: "idc";
|
|
164
164
|
/**
|
|
165
|
-
* Identity Provider (IdP) authentication flow
|
|
165
|
+
* <p>Identity Provider (IdP) authentication flow</p>
|
|
166
166
|
*/
|
|
167
167
|
readonly IDP: "idp";
|
|
168
168
|
};
|
|
@@ -176,23 +176,23 @@ export type AuthFlow = (typeof AuthFlow)[keyof typeof AuthFlow];
|
|
|
176
176
|
*/
|
|
177
177
|
export declare const Priority: {
|
|
178
178
|
/**
|
|
179
|
-
* Highest priority
|
|
179
|
+
* <p>Highest priority</p>
|
|
180
180
|
*/
|
|
181
181
|
readonly CRITICAL: "CRITICAL";
|
|
182
182
|
/**
|
|
183
|
-
* High priority
|
|
183
|
+
* <p>High priority</p>
|
|
184
184
|
*/
|
|
185
185
|
readonly HIGH: "HIGH";
|
|
186
186
|
/**
|
|
187
|
-
* Low priority
|
|
187
|
+
* <p>Low priority</p>
|
|
188
188
|
*/
|
|
189
189
|
readonly LOW: "LOW";
|
|
190
190
|
/**
|
|
191
|
-
* Medium priority
|
|
191
|
+
* <p>Medium priority</p>
|
|
192
192
|
*/
|
|
193
193
|
readonly MEDIUM: "MEDIUM";
|
|
194
194
|
/**
|
|
195
|
-
* Minimal priority
|
|
195
|
+
* <p>Minimal priority</p>
|
|
196
196
|
*/
|
|
197
197
|
readonly MINIMAL: "MINIMAL";
|
|
198
198
|
};
|
|
@@ -206,11 +206,11 @@ export type Priority = (typeof Priority)[keyof typeof Priority];
|
|
|
206
206
|
*/
|
|
207
207
|
export declare const TaskType: {
|
|
208
208
|
/**
|
|
209
|
-
* Task for evaluating options or solutions (not in use)
|
|
209
|
+
* <p>Task for evaluating options or solutions (not in use)</p>
|
|
210
210
|
*/
|
|
211
211
|
readonly EVALUATION: "EVALUATION";
|
|
212
212
|
/**
|
|
213
|
-
* Task for investigating issues or requirements
|
|
213
|
+
* <p>Task for investigating issues or requirements</p>
|
|
214
214
|
*/
|
|
215
215
|
readonly INVESTIGATION: "INVESTIGATION";
|
|
216
216
|
};
|
|
@@ -224,39 +224,39 @@ export type TaskType = (typeof TaskType)[keyof typeof TaskType];
|
|
|
224
224
|
*/
|
|
225
225
|
export declare const TaskStatus: {
|
|
226
226
|
/**
|
|
227
|
-
* Task has been canceled
|
|
227
|
+
* <p>Task has been canceled</p>
|
|
228
228
|
*/
|
|
229
229
|
readonly CANCELED: "CANCELED";
|
|
230
230
|
/**
|
|
231
|
-
* Task has been completed successfully
|
|
231
|
+
* <p>Task has been completed successfully</p>
|
|
232
232
|
*/
|
|
233
233
|
readonly COMPLETED: "COMPLETED";
|
|
234
234
|
/**
|
|
235
|
-
* Task has failed
|
|
235
|
+
* <p>Task has failed</p>
|
|
236
236
|
*/
|
|
237
237
|
readonly FAILED: "FAILED";
|
|
238
238
|
/**
|
|
239
|
-
* Task is currently being worked on
|
|
239
|
+
* <p>Task is currently being worked on</p>
|
|
240
240
|
*/
|
|
241
241
|
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
242
242
|
/**
|
|
243
|
-
* Task has been linked to another task
|
|
243
|
+
* <p>Task has been linked to another task</p>
|
|
244
244
|
*/
|
|
245
245
|
readonly LINKED: "LINKED";
|
|
246
246
|
/**
|
|
247
|
-
* Task is completed but awaiting customer approval (not in use)
|
|
247
|
+
* <p>Task is completed but awaiting customer approval (not in use)</p>
|
|
248
248
|
*/
|
|
249
249
|
readonly PENDING_CUSTOMER_APPROVAL: "PENDING_CUSTOMER_APPROVAL";
|
|
250
250
|
/**
|
|
251
|
-
* Task is created but not yet started
|
|
251
|
+
* <p>Task is created but not yet started</p>
|
|
252
252
|
*/
|
|
253
253
|
readonly PENDING_START: "PENDING_START";
|
|
254
254
|
/**
|
|
255
|
-
* Task is awaiting triage analysis
|
|
255
|
+
* <p>Task is awaiting triage analysis</p>
|
|
256
256
|
*/
|
|
257
257
|
readonly PENDING_TRIAGE: "PENDING_TRIAGE";
|
|
258
258
|
/**
|
|
259
|
-
* Task has exceeded its time limit
|
|
259
|
+
* <p>Task has exceeded its time limit</p>
|
|
260
260
|
*/
|
|
261
261
|
readonly TIMED_OUT: "TIMED_OUT";
|
|
262
262
|
};
|
|
@@ -270,15 +270,15 @@ export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
|
270
270
|
*/
|
|
271
271
|
export declare const UserType: {
|
|
272
272
|
/**
|
|
273
|
-
* AWS IAM user type
|
|
273
|
+
* <p>AWS IAM user type</p>
|
|
274
274
|
*/
|
|
275
275
|
readonly IAM: "IAM";
|
|
276
276
|
/**
|
|
277
|
-
* AWS IAM Identity Center user type
|
|
277
|
+
* <p>AWS IAM Identity Center user type</p>
|
|
278
278
|
*/
|
|
279
279
|
readonly IDC: "IDC";
|
|
280
280
|
/**
|
|
281
|
-
* External Identity Provider user type
|
|
281
|
+
* <p>External Identity Provider user type</p>
|
|
282
282
|
*/
|
|
283
283
|
readonly IDP: "IDP";
|
|
284
284
|
};
|
|
@@ -332,15 +332,15 @@ export type PrivateConnectionType = (typeof PrivateConnectionType)[keyof typeof
|
|
|
332
332
|
*/
|
|
333
333
|
export declare const RecommendationPriority: {
|
|
334
334
|
/**
|
|
335
|
-
* High priority recommendation requiring immediate attention
|
|
335
|
+
* <p>High priority recommendation requiring immediate attention</p>
|
|
336
336
|
*/
|
|
337
337
|
readonly HIGH: "HIGH";
|
|
338
338
|
/**
|
|
339
|
-
* Low priority recommendation that can be addressed later
|
|
339
|
+
* <p>Low priority recommendation that can be addressed later</p>
|
|
340
340
|
*/
|
|
341
341
|
readonly LOW: "LOW";
|
|
342
342
|
/**
|
|
343
|
-
* Medium priority recommendation for normal processing
|
|
343
|
+
* <p>Medium priority recommendation for normal processing</p>
|
|
344
344
|
*/
|
|
345
345
|
readonly MEDIUM: "MEDIUM";
|
|
346
346
|
};
|
|
@@ -354,27 +354,27 @@ export type RecommendationPriority = (typeof RecommendationPriority)[keyof typeo
|
|
|
354
354
|
*/
|
|
355
355
|
export declare const RecommendationStatus: {
|
|
356
356
|
/**
|
|
357
|
-
* Recommendation has been accepted by the user
|
|
357
|
+
* <p>Recommendation has been accepted by the user</p>
|
|
358
358
|
*/
|
|
359
359
|
readonly ACCEPTED: "ACCEPTED";
|
|
360
360
|
/**
|
|
361
|
-
* Recommendation has been closed and is no longer relevant
|
|
361
|
+
* <p>Recommendation has been closed and is no longer relevant</p>
|
|
362
362
|
*/
|
|
363
363
|
readonly CLOSED: "CLOSED";
|
|
364
364
|
/**
|
|
365
|
-
* Recommendation has been completed by the user
|
|
365
|
+
* <p>Recommendation has been completed by the user</p>
|
|
366
366
|
*/
|
|
367
367
|
readonly COMPLETED: "COMPLETED";
|
|
368
368
|
/**
|
|
369
|
-
* Recommendation has been generated but not yet acted upon
|
|
369
|
+
* <p>Recommendation has been generated but not yet acted upon</p>
|
|
370
370
|
*/
|
|
371
371
|
readonly PROPOSED: "PROPOSED";
|
|
372
372
|
/**
|
|
373
|
-
* Recommendation has been rejected by the user
|
|
373
|
+
* <p>Recommendation has been rejected by the user</p>
|
|
374
374
|
*/
|
|
375
375
|
readonly REJECTED: "REJECTED";
|
|
376
376
|
/**
|
|
377
|
-
* Recommendation is being actively updated
|
|
377
|
+
* <p>Recommendation is being actively updated</p>
|
|
378
378
|
*/
|
|
379
379
|
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
380
380
|
};
|
|
@@ -388,11 +388,11 @@ export type RecommendationStatus = (typeof RecommendationStatus)[keyof typeof Re
|
|
|
388
388
|
*/
|
|
389
389
|
export declare const TaskSortOrder: {
|
|
390
390
|
/**
|
|
391
|
-
* Ascending order
|
|
391
|
+
* <p>Ascending order</p>
|
|
392
392
|
*/
|
|
393
393
|
readonly ASC: "ASC";
|
|
394
394
|
/**
|
|
395
|
-
* Descending order
|
|
395
|
+
* <p>Descending order</p>
|
|
396
396
|
*/
|
|
397
397
|
readonly DESC: "DESC";
|
|
398
398
|
};
|
|
@@ -406,11 +406,11 @@ export type TaskSortOrder = (typeof TaskSortOrder)[keyof typeof TaskSortOrder];
|
|
|
406
406
|
*/
|
|
407
407
|
export declare const TaskSortField: {
|
|
408
408
|
/**
|
|
409
|
-
* Sort by task creation timestamp
|
|
409
|
+
* <p>Sort by task creation timestamp</p>
|
|
410
410
|
*/
|
|
411
411
|
readonly CREATED_AT: "CREATED_AT";
|
|
412
412
|
/**
|
|
413
|
-
* Sort by task priority level
|
|
413
|
+
* <p>Sort by task priority level</p>
|
|
414
414
|
*/
|
|
415
415
|
readonly PRIORITY: "PRIORITY";
|
|
416
416
|
};
|
|
@@ -424,23 +424,23 @@ export type TaskSortField = (typeof TaskSortField)[keyof typeof TaskSortField];
|
|
|
424
424
|
*/
|
|
425
425
|
export declare const ExecutionStatus: {
|
|
426
426
|
/**
|
|
427
|
-
* Execution has been canceled
|
|
427
|
+
* <p>Execution has been canceled</p>
|
|
428
428
|
*/
|
|
429
429
|
readonly CANCELED: "CANCELED";
|
|
430
430
|
/**
|
|
431
|
-
* Execution has failed
|
|
431
|
+
* <p>Execution has failed</p>
|
|
432
432
|
*/
|
|
433
433
|
readonly FAILED: "FAILED";
|
|
434
434
|
/**
|
|
435
|
-
* Execution is currently running
|
|
435
|
+
* <p>Execution is currently running</p>
|
|
436
436
|
*/
|
|
437
437
|
readonly RUNNING: "RUNNING";
|
|
438
438
|
/**
|
|
439
|
-
* Execution has been stopped
|
|
439
|
+
* <p>Execution has been stopped</p>
|
|
440
440
|
*/
|
|
441
441
|
readonly STOPPED: "STOPPED";
|
|
442
442
|
/**
|
|
443
|
-
* Unlike in the case of user-initiated Cancelation, a customer won't be billed
|
|
443
|
+
* <p>Unlike in the case of user-initiated Cancelation, a customer won't be billed</p>
|
|
444
444
|
*/
|
|
445
445
|
readonly TIMED_OUT: "TIMED_OUT";
|
|
446
446
|
};
|
|
@@ -454,11 +454,11 @@ export type ExecutionStatus = (typeof ExecutionStatus)[keyof typeof ExecutionSta
|
|
|
454
454
|
*/
|
|
455
455
|
export declare const GoalType: {
|
|
456
456
|
/**
|
|
457
|
-
* Goal defined by customer
|
|
457
|
+
* <p>Goal defined by customer</p>
|
|
458
458
|
*/
|
|
459
459
|
readonly CUSTOMER_DEFINED: "CUSTOMER_DEFINED";
|
|
460
460
|
/**
|
|
461
|
-
* Goal related to on-call reporting activities
|
|
461
|
+
* <p>Goal related to on-call reporting activities</p>
|
|
462
462
|
*/
|
|
463
463
|
readonly ONCALL_REPORT: "ONCALL_REPORT";
|
|
464
464
|
};
|
|
@@ -472,15 +472,15 @@ export type GoalType = (typeof GoalType)[keyof typeof GoalType];
|
|
|
472
472
|
*/
|
|
473
473
|
export declare const GoalStatus: {
|
|
474
474
|
/**
|
|
475
|
-
* Goal is active and being evaluated according to schedule
|
|
475
|
+
* <p>Goal is active and being evaluated according to schedule</p>
|
|
476
476
|
*/
|
|
477
477
|
readonly ACTIVE: "ACTIVE";
|
|
478
478
|
/**
|
|
479
|
-
* Goal has been marked as completed
|
|
479
|
+
* <p>Goal has been marked as completed</p>
|
|
480
480
|
*/
|
|
481
481
|
readonly COMPLETE: "COMPLETE";
|
|
482
482
|
/**
|
|
483
|
-
* Goal evaluations are temporarily paused
|
|
483
|
+
* <p>Goal evaluations are temporarily paused</p>
|
|
484
484
|
*/
|
|
485
485
|
readonly PAUSED: "PAUSED";
|
|
486
486
|
};
|
|
@@ -494,11 +494,11 @@ export type GoalStatus = (typeof GoalStatus)[keyof typeof GoalStatus];
|
|
|
494
494
|
*/
|
|
495
495
|
export declare const SchedulerState: {
|
|
496
496
|
/**
|
|
497
|
-
* Schedule is disabled and will not trigger goal evaluations
|
|
497
|
+
* <p>Schedule is disabled and will not trigger goal evaluations</p>
|
|
498
498
|
*/
|
|
499
499
|
readonly DISABLED: "DISABLED";
|
|
500
500
|
/**
|
|
501
|
-
* Schedule is enabled and will trigger goal evaluations
|
|
501
|
+
* <p>Schedule is enabled and will trigger goal evaluations</p>
|
|
502
502
|
*/
|
|
503
503
|
readonly ENABLED: "ENABLED";
|
|
504
504
|
};
|
|
@@ -512,11 +512,11 @@ export type SchedulerState = (typeof SchedulerState)[keyof typeof SchedulerState
|
|
|
512
512
|
*/
|
|
513
513
|
export declare const OrderType: {
|
|
514
514
|
/**
|
|
515
|
-
* Ascending order
|
|
515
|
+
* <p>Ascending order</p>
|
|
516
516
|
*/
|
|
517
517
|
readonly ASC: "ASC";
|
|
518
518
|
/**
|
|
519
|
-
* Descending order
|
|
519
|
+
* <p>Descending order</p>
|
|
520
520
|
*/
|
|
521
521
|
readonly DESC: "DESC";
|
|
522
522
|
};
|
|
@@ -532,7 +532,7 @@ export declare const Service: {
|
|
|
532
532
|
readonly AZURE: "azure";
|
|
533
533
|
readonly AZURE_DEVOPS: "azuredevops";
|
|
534
534
|
/**
|
|
535
|
-
* Azure Service with AWS Outbound Identity Federation
|
|
535
|
+
* <p>Azure Service with AWS Outbound Identity Federation.</p>
|
|
536
536
|
*/
|
|
537
537
|
readonly AZURE_IDENTITY: "azureidentity";
|
|
538
538
|
readonly DYNATRACE: "dynatrace";
|
|
@@ -540,23 +540,27 @@ export declare const Service: {
|
|
|
540
540
|
readonly GITHUB: "github";
|
|
541
541
|
readonly GITLAB: "gitlab";
|
|
542
542
|
/**
|
|
543
|
-
* Model Context Protocol server
|
|
543
|
+
* <p>Model Context Protocol server.</p>
|
|
544
544
|
*/
|
|
545
545
|
readonly MCP_SERVER: "mcpserver";
|
|
546
546
|
/**
|
|
547
|
-
* Datadog MCP server
|
|
547
|
+
* <p>Datadog MCP server.</p>
|
|
548
548
|
*/
|
|
549
549
|
readonly MCP_SERVER_DATADOG: "mcpserverdatadog";
|
|
550
550
|
/**
|
|
551
|
-
* Grafana MCP server
|
|
551
|
+
* <p>Grafana MCP server.</p>
|
|
552
552
|
*/
|
|
553
553
|
readonly MCP_SERVER_GRAFANA: "mcpservergrafana";
|
|
554
554
|
/**
|
|
555
|
-
* NewRelic MCP server
|
|
555
|
+
* <p>NewRelic MCP server.</p>
|
|
556
556
|
*/
|
|
557
557
|
readonly MCP_SERVER_NEWRELIC: "mcpservernewrelic";
|
|
558
558
|
/**
|
|
559
|
-
*
|
|
559
|
+
* <p>SigV4-authenticated MCP server.</p>
|
|
560
|
+
*/
|
|
561
|
+
readonly MCP_SERVER_SIGV4: "mcpserversigv4";
|
|
562
|
+
/**
|
|
563
|
+
* <p>Splunk MCP server.</p>
|
|
560
564
|
*/
|
|
561
565
|
readonly MCP_SERVER_SPLUNK: "mcpserversplunk";
|
|
562
566
|
readonly PAGERDUTY: "pagerduty";
|
|
@@ -573,30 +577,34 @@ export type Service = (typeof Service)[keyof typeof Service];
|
|
|
573
577
|
*/
|
|
574
578
|
export declare const PostRegisterServiceSupportedService: {
|
|
575
579
|
/**
|
|
576
|
-
* Azure Service with AWS Outbound Identity Federation
|
|
580
|
+
* <p>Azure Service with AWS Outbound Identity Federation.</p>
|
|
577
581
|
*/
|
|
578
582
|
readonly AZURE_IDENTITY: "azureidentity";
|
|
579
583
|
readonly DYNATRACE: "dynatrace";
|
|
580
584
|
readonly EVENTCHANNEL: "eventChannel";
|
|
581
585
|
readonly GITLAB: "gitlab";
|
|
582
586
|
/**
|
|
583
|
-
* Model Context Protocol server
|
|
587
|
+
* <p>Model Context Protocol server.</p>
|
|
584
588
|
*/
|
|
585
589
|
readonly MCP_SERVER: "mcpserver";
|
|
586
590
|
/**
|
|
587
|
-
* Datadog MCP server
|
|
591
|
+
* <p>Datadog MCP server.</p>
|
|
588
592
|
*/
|
|
589
593
|
readonly MCP_SERVER_DATADOG: "mcpserverdatadog";
|
|
590
594
|
/**
|
|
591
|
-
* Grafana MCP server
|
|
595
|
+
* <p>Grafana MCP server.</p>
|
|
592
596
|
*/
|
|
593
597
|
readonly MCP_SERVER_GRAFANA: "mcpservergrafana";
|
|
594
598
|
/**
|
|
595
|
-
* NewRelic MCP server
|
|
599
|
+
* <p>NewRelic MCP server.</p>
|
|
596
600
|
*/
|
|
597
601
|
readonly MCP_SERVER_NEWRELIC: "mcpservernewrelic";
|
|
598
602
|
/**
|
|
599
|
-
*
|
|
603
|
+
* <p>SigV4-authenticated MCP server.</p>
|
|
604
|
+
*/
|
|
605
|
+
readonly MCP_SERVER_SIGV4: "mcpserversigv4";
|
|
606
|
+
/**
|
|
607
|
+
* <p>Splunk MCP server.</p>
|
|
600
608
|
*/
|
|
601
609
|
readonly MCP_SERVER_SPLUNK: "mcpserversplunk";
|
|
602
610
|
readonly PAGERDUTY: "pagerduty";
|
|
@@ -612,7 +620,7 @@ export type PostRegisterServiceSupportedService = (typeof PostRegisterServiceSup
|
|
|
612
620
|
*/
|
|
613
621
|
export declare const EventChannelType: {
|
|
614
622
|
/**
|
|
615
|
-
* Webhook-based event channel
|
|
623
|
+
* <p>Webhook-based event channel</p>
|
|
616
624
|
*/
|
|
617
625
|
readonly WEBHOOK: "webhook";
|
|
618
626
|
};
|
|
@@ -2,7 +2,7 @@ import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/core/
|
|
|
2
2
|
import { DevOpsAgentServiceException as __BaseException } from "./DevOpsAgentServiceException";
|
|
3
3
|
import type { ValidationExceptionField } from "./models_0";
|
|
4
4
|
/**
|
|
5
|
-
* Access to the requested resource is denied due to insufficient permissions
|
|
5
|
+
* <p>Access to the requested resource is denied due to insufficient permissions.</p>
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
8
8
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -14,7 +14,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
14
14
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
|
-
* The request conflicts with the current state of the resource
|
|
17
|
+
* <p>The request conflicts with the current state of the resource.</p>
|
|
18
18
|
* @public
|
|
19
19
|
*/
|
|
20
20
|
export declare class ConflictException extends __BaseException {
|
|
@@ -26,7 +26,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
26
26
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
27
27
|
}
|
|
28
28
|
/**
|
|
29
|
-
* This exception is thrown when the content size exceeds the allowed limit
|
|
29
|
+
* <p>This exception is thrown when the content size exceeds the allowed limit.</p>
|
|
30
30
|
* @public
|
|
31
31
|
*/
|
|
32
32
|
export declare class ContentSizeExceededException extends __BaseException {
|
|
@@ -38,7 +38,7 @@ export declare class ContentSizeExceededException extends __BaseException {
|
|
|
38
38
|
constructor(opts: __ExceptionOptionType<ContentSizeExceededException, __BaseException>);
|
|
39
39
|
}
|
|
40
40
|
/**
|
|
41
|
-
* This exception is thrown when an unexpected error occurs in the processing of a request
|
|
41
|
+
* <p>This exception is thrown when an unexpected error occurs in the processing of a request.</p>
|
|
42
42
|
* @public
|
|
43
43
|
*/
|
|
44
44
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -51,7 +51,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
51
51
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
52
52
|
}
|
|
53
53
|
/**
|
|
54
|
-
* One or more parameters provided in the request are invalid
|
|
54
|
+
* <p>One or more parameters provided in the request are invalid.</p>
|
|
55
55
|
* @public
|
|
56
56
|
*/
|
|
57
57
|
export declare class InvalidParameterException extends __BaseException {
|
|
@@ -63,7 +63,7 @@ export declare class InvalidParameterException extends __BaseException {
|
|
|
63
63
|
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
64
64
|
}
|
|
65
65
|
/**
|
|
66
|
-
* The requested resource could not be found
|
|
66
|
+
* <p>The requested resource could not be found.</p>
|
|
67
67
|
* @public
|
|
68
68
|
*/
|
|
69
69
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -75,7 +75,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
75
75
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
76
76
|
}
|
|
77
77
|
/**
|
|
78
|
-
* The request would exceed the service quota limit
|
|
78
|
+
* <p>The request would exceed the service quota limit.</p>
|
|
79
79
|
* @public
|
|
80
80
|
*/
|
|
81
81
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
@@ -87,7 +87,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
87
87
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
88
88
|
}
|
|
89
89
|
/**
|
|
90
|
-
* The request was throttled due to too many requests. Please slow down and try again
|
|
90
|
+
* <p>The request was throttled due to too many requests. Please slow down and try again.</p>
|
|
91
91
|
* @public
|
|
92
92
|
*/
|
|
93
93
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -100,17 +100,14 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
100
100
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
101
101
|
}
|
|
102
102
|
/**
|
|
103
|
-
*
|
|
104
|
-
* This should be thrown by services when a member of the input structure
|
|
105
|
-
* falls outside of the modeled or documented constraints.
|
|
103
|
+
* <p>The input fails to satisfy the constraints specified by the service.</p>
|
|
106
104
|
* @public
|
|
107
105
|
*/
|
|
108
106
|
export declare class ValidationException extends __BaseException {
|
|
109
107
|
readonly name: "ValidationException";
|
|
110
108
|
readonly $fault: "client";
|
|
111
109
|
/**
|
|
112
|
-
* A list of specific failures encountered while validating the input.
|
|
113
|
-
* A member can appear in this list more than once if it failed to satisfy multiple constraints.
|
|
110
|
+
* <p>A list of specific failures encountered while validating the input. A member can appear in this list more than once if it failed to satisfy multiple constraints.</p>
|
|
114
111
|
* @public
|
|
115
112
|
*/
|
|
116
113
|
fieldList?: ValidationExceptionField[] | undefined;
|
|
@@ -120,14 +117,14 @@ export declare class ValidationException extends __BaseException {
|
|
|
120
117
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
121
118
|
}
|
|
122
119
|
/**
|
|
123
|
-
* Calls to the customer Identity Center have failed
|
|
120
|
+
* <p>Calls to the customer Identity Center have failed</p>
|
|
124
121
|
* @public
|
|
125
122
|
*/
|
|
126
123
|
export declare class IdentityCenterServiceException extends __BaseException {
|
|
127
124
|
readonly name: "IdentityCenterServiceException";
|
|
128
125
|
readonly $fault: "client";
|
|
129
126
|
/**
|
|
130
|
-
* The Idc error code
|
|
127
|
+
* <p>The Idc error code</p>
|
|
131
128
|
* @public
|
|
132
129
|
*/
|
|
133
130
|
underlyingErrorCode?: string | undefined;
|