@aws-sdk/client-devops-agent 3.1067.0 → 3.1069.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.
Files changed (47) hide show
  1. package/README.md +35 -0
  2. package/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
  3. package/dist-cjs/endpoint/bdd.js +2 -5
  4. package/dist-cjs/endpoint/endpointResolver.js +7 -11
  5. package/dist-cjs/index.js +298 -244
  6. package/dist-cjs/models/DevOpsAgentServiceException.js +4 -8
  7. package/dist-cjs/models/errors.js +21 -34
  8. package/dist-cjs/runtimeConfig.browser.js +24 -28
  9. package/dist-cjs/runtimeConfig.js +32 -36
  10. package/dist-cjs/runtimeConfig.native.js +4 -7
  11. package/dist-cjs/runtimeConfig.shared.js +20 -24
  12. package/dist-cjs/schemas/schemas_0.js +776 -423
  13. package/dist-es/DevOpsAgent.js +12 -0
  14. package/dist-es/commands/CreateTriggerCommand.js +16 -0
  15. package/dist-es/commands/DeleteTriggerCommand.js +16 -0
  16. package/dist-es/commands/GetTriggerCommand.js +16 -0
  17. package/dist-es/commands/ListTriggersCommand.js +16 -0
  18. package/dist-es/commands/UpdateTriggerCommand.js +16 -0
  19. package/dist-es/commands/index.js +5 -0
  20. package/dist-es/pagination/ListTriggersPaginator.js +4 -0
  21. package/dist-es/pagination/index.js +1 -0
  22. package/dist-es/schemas/schemas_0.js +118 -11
  23. package/dist-types/DevOpsAgent.d.ts +42 -0
  24. package/dist-types/DevOpsAgentClient.d.ts +7 -2
  25. package/dist-types/commands/CreateTriggerCommand.d.ts +125 -0
  26. package/dist-types/commands/DeleteTriggerCommand.d.ts +102 -0
  27. package/dist-types/commands/GetTriggerCommand.d.ts +117 -0
  28. package/dist-types/commands/ListTriggersCommand.d.ts +122 -0
  29. package/dist-types/commands/UpdateTriggerCommand.d.ts +119 -0
  30. package/dist-types/commands/index.d.ts +5 -0
  31. package/dist-types/models/models_0.d.ts +255 -0
  32. package/dist-types/pagination/ListTriggersPaginator.d.ts +7 -0
  33. package/dist-types/pagination/index.d.ts +1 -0
  34. package/dist-types/schemas/schemas_0.d.ts +18 -0
  35. package/dist-types/ts3.4/DevOpsAgent.d.ts +92 -0
  36. package/dist-types/ts3.4/DevOpsAgentClient.d.ts +30 -0
  37. package/dist-types/ts3.4/commands/CreateTriggerCommand.d.ts +52 -0
  38. package/dist-types/ts3.4/commands/DeleteTriggerCommand.d.ts +52 -0
  39. package/dist-types/ts3.4/commands/GetTriggerCommand.d.ts +49 -0
  40. package/dist-types/ts3.4/commands/ListTriggersCommand.d.ts +49 -0
  41. package/dist-types/ts3.4/commands/UpdateTriggerCommand.d.ts +52 -0
  42. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  43. package/dist-types/ts3.4/models/models_0.d.ts +72 -0
  44. package/dist-types/ts3.4/pagination/ListTriggersPaginator.d.ts +11 -0
  45. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  46. package/dist-types/ts3.4/schemas/schemas_0.d.ts +18 -0
  47. package/package.json +8 -8
@@ -6,10 +6,12 @@ import { CreateAssetFileCommand, } from "./commands/CreateAssetFileCommand";
6
6
  import { CreateBacklogTaskCommand, } from "./commands/CreateBacklogTaskCommand";
7
7
  import { CreateChatCommand, } from "./commands/CreateChatCommand";
8
8
  import { CreatePrivateConnectionCommand, } from "./commands/CreatePrivateConnectionCommand";
9
+ import { CreateTriggerCommand, } from "./commands/CreateTriggerCommand";
9
10
  import { DeleteAgentSpaceCommand, } from "./commands/DeleteAgentSpaceCommand";
10
11
  import { DeleteAssetCommand, } from "./commands/DeleteAssetCommand";
11
12
  import { DeleteAssetFileCommand, } from "./commands/DeleteAssetFileCommand";
12
13
  import { DeletePrivateConnectionCommand, } from "./commands/DeletePrivateConnectionCommand";
14
+ import { DeleteTriggerCommand, } from "./commands/DeleteTriggerCommand";
13
15
  import { DeregisterServiceCommand, } from "./commands/DeregisterServiceCommand";
14
16
  import { DescribePrivateConnectionCommand, } from "./commands/DescribePrivateConnectionCommand";
15
17
  import { DisableOperatorAppCommand, } from "./commands/DisableOperatorAppCommand";
@@ -25,6 +27,7 @@ import { GetBacklogTaskCommand, } from "./commands/GetBacklogTaskCommand";
25
27
  import { GetOperatorAppCommand, } from "./commands/GetOperatorAppCommand";
26
28
  import { GetRecommendationCommand, } from "./commands/GetRecommendationCommand";
27
29
  import { GetServiceCommand, } from "./commands/GetServiceCommand";
30
+ import { GetTriggerCommand, } from "./commands/GetTriggerCommand";
28
31
  import { ListAgentSpacesCommand, } from "./commands/ListAgentSpacesCommand";
29
32
  import { ListAssetFilesCommand, } from "./commands/ListAssetFilesCommand";
30
33
  import { ListAssetsCommand, } from "./commands/ListAssetsCommand";
@@ -41,6 +44,7 @@ import { ListPrivateConnectionsCommand, } from "./commands/ListPrivateConnection
41
44
  import { ListRecommendationsCommand, } from "./commands/ListRecommendationsCommand";
42
45
  import { ListServicesCommand, } from "./commands/ListServicesCommand";
43
46
  import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
47
+ import { ListTriggersCommand, } from "./commands/ListTriggersCommand";
44
48
  import { ListWebhooksCommand, } from "./commands/ListWebhooksCommand";
45
49
  import { RegisterServiceCommand, } from "./commands/RegisterServiceCommand";
46
50
  import { SendMessageCommand, } from "./commands/SendMessageCommand";
@@ -55,6 +59,7 @@ import { UpdateGoalCommand, } from "./commands/UpdateGoalCommand";
55
59
  import { UpdateOperatorAppIdpConfigCommand, } from "./commands/UpdateOperatorAppIdpConfigCommand";
56
60
  import { UpdatePrivateConnectionCertificateCommand, } from "./commands/UpdatePrivateConnectionCertificateCommand";
57
61
  import { UpdateRecommendationCommand, } from "./commands/UpdateRecommendationCommand";
62
+ import { UpdateTriggerCommand, } from "./commands/UpdateTriggerCommand";
58
63
  import { ValidateAwsAssociationsCommand, } from "./commands/ValidateAwsAssociationsCommand";
59
64
  import { DevOpsAgentClient } from "./DevOpsAgentClient";
60
65
  import { paginateListAgentSpaces } from "./pagination/ListAgentSpacesPaginator";
@@ -68,6 +73,7 @@ import { paginateListExecutions } from "./pagination/ListExecutionsPaginator";
68
73
  import { paginateListGoals } from "./pagination/ListGoalsPaginator";
69
74
  import { paginateListJournalRecords } from "./pagination/ListJournalRecordsPaginator";
70
75
  import { paginateListServices } from "./pagination/ListServicesPaginator";
76
+ import { paginateListTriggers } from "./pagination/ListTriggersPaginator";
71
77
  const commands = {
72
78
  AssociateServiceCommand,
73
79
  CreateAgentSpaceCommand,
@@ -76,10 +82,12 @@ const commands = {
76
82
  CreateBacklogTaskCommand,
77
83
  CreateChatCommand,
78
84
  CreatePrivateConnectionCommand,
85
+ CreateTriggerCommand,
79
86
  DeleteAgentSpaceCommand,
80
87
  DeleteAssetCommand,
81
88
  DeleteAssetFileCommand,
82
89
  DeletePrivateConnectionCommand,
90
+ DeleteTriggerCommand,
83
91
  DeregisterServiceCommand,
84
92
  DescribePrivateConnectionCommand,
85
93
  DisableOperatorAppCommand,
@@ -95,6 +103,7 @@ const commands = {
95
103
  GetOperatorAppCommand,
96
104
  GetRecommendationCommand,
97
105
  GetServiceCommand,
106
+ GetTriggerCommand,
98
107
  ListAgentSpacesCommand,
99
108
  ListAssetFilesCommand,
100
109
  ListAssetsCommand,
@@ -111,6 +120,7 @@ const commands = {
111
120
  ListRecommendationsCommand,
112
121
  ListServicesCommand,
113
122
  ListTagsForResourceCommand,
123
+ ListTriggersCommand,
114
124
  ListWebhooksCommand,
115
125
  RegisterServiceCommand,
116
126
  SendMessageCommand,
@@ -125,6 +135,7 @@ const commands = {
125
135
  UpdateOperatorAppIdpConfigCommand,
126
136
  UpdatePrivateConnectionCertificateCommand,
127
137
  UpdateRecommendationCommand,
138
+ UpdateTriggerCommand,
128
139
  ValidateAwsAssociationsCommand,
129
140
  };
130
141
  const paginators = {
@@ -139,6 +150,7 @@ const paginators = {
139
150
  paginateListGoals,
140
151
  paginateListJournalRecords,
141
152
  paginateListServices,
153
+ paginateListTriggers,
142
154
  };
143
155
  export class DevOpsAgent extends DevOpsAgentClient {
144
156
  }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { CreateTrigger$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class CreateTriggerCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("DevOpsAgent", "CreateTrigger", {})
13
+ .n("DevOpsAgentClient", "CreateTriggerCommand")
14
+ .sc(CreateTrigger$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { DeleteTrigger$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class DeleteTriggerCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("DevOpsAgent", "DeleteTrigger", {})
13
+ .n("DevOpsAgentClient", "DeleteTriggerCommand")
14
+ .sc(DeleteTrigger$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { GetTrigger$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class GetTriggerCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("DevOpsAgent", "GetTrigger", {})
13
+ .n("DevOpsAgentClient", "GetTriggerCommand")
14
+ .sc(GetTrigger$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { ListTriggers$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class ListTriggersCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("DevOpsAgent", "ListTriggers", {})
13
+ .n("DevOpsAgentClient", "ListTriggersCommand")
14
+ .sc(ListTriggers$)
15
+ .build() {
16
+ }
@@ -0,0 +1,16 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "../endpoint/EndpointParameters";
4
+ import { UpdateTrigger$ } from "../schemas/schemas_0";
5
+ export { $Command };
6
+ export class UpdateTriggerCommand extends $Command
7
+ .classBuilder()
8
+ .ep(commonParams)
9
+ .m(function (Command, cs, config, o) {
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
+ })
12
+ .s("DevOpsAgent", "UpdateTrigger", {})
13
+ .n("DevOpsAgentClient", "UpdateTriggerCommand")
14
+ .sc(UpdateTrigger$)
15
+ .build() {
16
+ }
@@ -5,10 +5,12 @@ export * from "./CreateAssetFileCommand";
5
5
  export * from "./CreateBacklogTaskCommand";
6
6
  export * from "./CreateChatCommand";
7
7
  export * from "./CreatePrivateConnectionCommand";
8
+ export * from "./CreateTriggerCommand";
8
9
  export * from "./DeleteAgentSpaceCommand";
9
10
  export * from "./DeleteAssetCommand";
10
11
  export * from "./DeleteAssetFileCommand";
11
12
  export * from "./DeletePrivateConnectionCommand";
13
+ export * from "./DeleteTriggerCommand";
12
14
  export * from "./DeregisterServiceCommand";
13
15
  export * from "./DescribePrivateConnectionCommand";
14
16
  export * from "./DisableOperatorAppCommand";
@@ -24,6 +26,7 @@ export * from "./GetBacklogTaskCommand";
24
26
  export * from "./GetOperatorAppCommand";
25
27
  export * from "./GetRecommendationCommand";
26
28
  export * from "./GetServiceCommand";
29
+ export * from "./GetTriggerCommand";
27
30
  export * from "./ListAgentSpacesCommand";
28
31
  export * from "./ListAssetFilesCommand";
29
32
  export * from "./ListAssetTypesCommand";
@@ -40,6 +43,7 @@ export * from "./ListPrivateConnectionsCommand";
40
43
  export * from "./ListRecommendationsCommand";
41
44
  export * from "./ListServicesCommand";
42
45
  export * from "./ListTagsForResourceCommand";
46
+ export * from "./ListTriggersCommand";
43
47
  export * from "./ListWebhooksCommand";
44
48
  export * from "./RegisterServiceCommand";
45
49
  export * from "./SendMessageCommand";
@@ -54,4 +58,5 @@ export * from "./UpdateGoalCommand";
54
58
  export * from "./UpdateOperatorAppIdpConfigCommand";
55
59
  export * from "./UpdatePrivateConnectionCertificateCommand";
56
60
  export * from "./UpdateRecommendationCommand";
61
+ export * from "./UpdateTriggerCommand";
57
62
  export * from "./ValidateAwsAssociationsCommand";
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListTriggersCommand, } from "../commands/ListTriggersCommand";
3
+ import { DevOpsAgentClient } from "../DevOpsAgentClient";
4
+ export const paginateListTriggers = createPaginator(DevOpsAgentClient, ListTriggersCommand, "nextToken", "nextToken", "maxResults");
@@ -10,3 +10,4 @@ export * from "./ListExecutionsPaginator";
10
10
  export * from "./ListGoalsPaginator";
11
11
  export * from "./ListJournalRecordsPaginator";
12
12
  export * from "./ListServicesPaginator";
13
+ export * from "./ListTriggersPaginator";
@@ -53,6 +53,9 @@ const _CPCI = "CreatePrivateConnectionInput";
53
53
  const _CPCO = "CreatePrivateConnectionOutput";
54
54
  const _CS = "ClientSecret";
55
55
  const _CSEE = "ContentSizeExceededException";
56
+ const _CT = "CreateTrigger";
57
+ const _CTR = "CreateTriggerRequest";
58
+ const _CTRr = "CreateTriggerResponse";
56
59
  const _D = "Description";
57
60
  const _DA = "DeleteAsset";
58
61
  const _DAC = "DatadogAuthorizationConfig";
@@ -83,6 +86,9 @@ const _DSIi = "DisassociateServiceInput";
83
86
  const _DSO = "DeregisterServiceOutput";
84
87
  const _DSOi = "DisassociateServiceOutput";
85
88
  const _DSi = "DisassociateService";
89
+ const _DT = "DeleteTrigger";
90
+ const _DTR = "DeleteTriggerRequest";
91
+ const _DTRe = "DeleteTriggerResponse";
86
92
  const _E = "Execution";
87
93
  const _EA = "EmailAddress";
88
94
  const _ECC = "EventChannelConfiguration";
@@ -132,6 +138,9 @@ const _GSI = "GetServiceInput";
132
138
  const _GSIo = "GoalScheduleInput";
133
139
  const _GSO = "GetServiceOutput";
134
140
  const _GSe = "GetService";
141
+ const _GT = "GetTrigger";
142
+ const _GTR = "GetTriggerRequest";
143
+ const _GTRe = "GetTriggerResponse";
135
144
  const _GW = "GenericWebhook";
136
145
  const _IAC = "IamAuthConfiguration";
137
146
  const _IACd = "IdcAuthConfiguration";
@@ -187,9 +196,12 @@ const _LRRi = "ListRecommendationsResponse";
187
196
  const _LS = "ListServices";
188
197
  const _LSI = "ListServicesInput";
189
198
  const _LSO = "ListServicesOutput";
199
+ const _LT = "ListTriggers";
190
200
  const _LTFR = "ListTagsForResource";
191
201
  const _LTFRR = "ListTagsForResourceRequest";
192
202
  const _LTFRRi = "ListTagsForResourceResponse";
203
+ const _LTR = "ListTriggersRequest";
204
+ const _LTRi = "ListTriggersResponse";
193
205
  const _LW = "ListWebhooks";
194
206
  const _LWI = "ListWebhooksInput";
195
207
  const _LWO = "ListWebhooksOutput";
@@ -245,9 +257,10 @@ const _RSO = "RegisterServiceOutput";
245
257
  const _RSSD = "RegisteredSlackServiceDetails";
246
258
  const _RSe = "RegisterService";
247
259
  const _SAC = "SourceAwsConfiguration";
248
- const _SC = "SlackChannel";
260
+ const _SC = "ScheduleCondition";
249
261
  const _SCe = "ServiceConfiguration";
250
- const _SCl = "SlackConfiguration";
262
+ const _SCl = "SlackChannel";
263
+ const _SCla = "SlackConfiguration";
251
264
  const _SD = "ServiceDetails";
252
265
  const _SM = "SendMessage";
253
266
  const _SMC = "SendMessageContext";
@@ -276,13 +289,16 @@ const _SNSD = "ServiceNowServiceDetails";
276
289
  const _SQEE = "ServiceQuotaExceededException";
277
290
  const _STT = "SlackTransmissionTarget";
278
291
  const _T = "Task";
292
+ const _TC = "TriggerCondition";
279
293
  const _TE = "ThrottlingException";
280
294
  const _TF = "TaskFilter";
281
295
  const _TL = "TaskList";
296
+ const _TLr = "TriggerList";
282
297
  const _TR = "TagResource";
283
298
  const _TRR = "TagResourceRequest";
284
299
  const _TRRa = "TagResourceResponse";
285
300
  const _TV = "TokenValue";
301
+ const _Tr = "Trigger";
286
302
  const _UA = "UpdateAsset";
287
303
  const _UAF = "UpdateAssetFile";
288
304
  const _UAFR = "UpdateAssetFileRequest";
@@ -317,6 +333,9 @@ const _URRp = "UpdateRecommendationRequest";
317
333
  const _URRpd = "UpdateRecommendationResponse";
318
334
  const _URn = "UntagResource";
319
335
  const _URp = "UpdateRecommendation";
336
+ const _UT = "UpdateTrigger";
337
+ const _UTR = "UpdateTriggerRequest";
338
+ const _UTRp = "UpdateTriggerResponse";
320
339
  const _VAA = "ValidateAwsAssociations";
321
340
  const _VAAI = "ValidateAwsAssociationsInput";
322
341
  const _VAAO = "ValidateAwsAssociationsOutput";
@@ -360,6 +379,7 @@ const _aTg = "agentType";
360
379
  const _aU = "accountUrn";
361
380
  const _aUu = "authorizationUrl";
362
381
  const _aV = "assetVersion";
382
+ const _ac = "action";
363
383
  const _as = "asset";
364
384
  const _ass = "associations";
365
385
  const _aw = "aws";
@@ -389,6 +409,7 @@ const _cT = "clientToken";
389
409
  const _ce = "certificate";
390
410
  const _co = "content";
391
411
  const _con = "configuration";
412
+ const _cond = "condition";
392
413
  const _cont = "context";
393
414
  const _d = "description";
394
415
  const _dR = "dnsResolution";
@@ -547,6 +568,7 @@ const _sN = "sequenceNumber";
547
568
  const _sR = "statusReason";
548
569
  const _sT = "serviceType";
549
570
  const _sc = "scopes";
571
+ const _sch = "schedule";
550
572
  const _se = "server";
551
573
  const _ser = "service";
552
574
  const _serv = "services";
@@ -560,7 +582,8 @@ const _su = "summary";
560
582
  const _sy = "system";
561
583
  const _t = "tags";
562
584
  const _tD = "textDelta";
563
- const _tI = "taskId";
585
+ const _tI = "triggerId";
586
+ const _tIa = "taskId";
564
587
  const _tIe = "tenantId";
565
588
  const _tIea = "teamId";
566
589
  const _tK = "tagKeys";
@@ -581,6 +604,7 @@ const _tas = "tasks";
581
604
  const _te = "text";
582
605
  const _ti = "title";
583
606
  const _to = "tools";
607
+ const _tr = "trigger";
584
608
  const _ty = "type";
585
609
  const _u = "uid";
586
610
  const _uA = "updatedAt";
@@ -827,6 +851,16 @@ export var CreatePrivateConnectionOutput$ = [3, n0, _CPCO,
827
851
  [_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _dR, _fM, _t],
828
852
  [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 128 | 0], 3
829
853
  ];
854
+ export var CreateTriggerRequest$ = [3, n0, _CTR,
855
+ 0,
856
+ [_aSI, _ty, _cond, _ac, _st, _cT],
857
+ [[0, 1], 0, () => TriggerCondition$, 15, 0, [0, 4]], 4
858
+ ];
859
+ export var CreateTriggerResponse$ = [3, n0, _CTRr,
860
+ 0,
861
+ [_tr],
862
+ [() => Trigger$], 1
863
+ ];
830
864
  export var DatadogServiceDetails$ = [3, n0, _DSD,
831
865
  0,
832
866
  [_n, _en, _aC, _d],
@@ -872,6 +906,16 @@ export var DeletePrivateConnectionOutput$ = [3, n0, _DPCO,
872
906
  [_n, _st],
873
907
  [0, 0], 2
874
908
  ];
909
+ export var DeleteTriggerRequest$ = [3, n0, _DTR,
910
+ 0,
911
+ [_aSI, _tI],
912
+ [[0, 1], [0, 1]], 2
913
+ ];
914
+ export var DeleteTriggerResponse$ = [3, n0, _DTRe,
915
+ 0,
916
+ [],
917
+ []
918
+ ];
875
919
  export var DeregisterServiceInput$ = [3, n0, _DSI,
876
920
  0,
877
921
  [_sI],
@@ -1014,7 +1058,7 @@ export var GetAssociationOutput$ = [3, n0, _GAO,
1014
1058
  ];
1015
1059
  export var GetBacklogTaskRequest$ = [3, n0, _GBTR,
1016
1060
  0,
1017
- [_aSI, _tI],
1061
+ [_aSI, _tIa],
1018
1062
  [[0, 1], [0, 1]], 2
1019
1063
  ];
1020
1064
  export var GetBacklogTaskResponse$ = [3, n0, _GBTRe,
@@ -1052,6 +1096,16 @@ export var GetServiceOutput$ = [3, n0, _GSO,
1052
1096
  [_ser, _t],
1053
1097
  [[() => RegisteredService$, 0], 128 | 0], 1
1054
1098
  ];
1099
+ export var GetTriggerRequest$ = [3, n0, _GTR,
1100
+ 0,
1101
+ [_aSI, _tI],
1102
+ [[0, 1], [0, 1]], 2
1103
+ ];
1104
+ export var GetTriggerResponse$ = [3, n0, _GTRe,
1105
+ 0,
1106
+ [_tr],
1107
+ [() => Trigger$], 1
1108
+ ];
1055
1109
  export var GitHubConfiguration$ = [3, n0, _GHC,
1056
1110
  0,
1057
1111
  [_rN, _rIe, _o, _oT, _iI],
@@ -1194,7 +1248,7 @@ export var ListChatsResponse$ = [3, n0, _LCRi,
1194
1248
  ];
1195
1249
  export var ListExecutionsRequest$ = [3, n0, _LER,
1196
1250
  0,
1197
- [_aSI, _tI, _li, _nT],
1251
+ [_aSI, _tIa, _li, _nT],
1198
1252
  [[0, 1], 0, 1, 0], 2
1199
1253
  ];
1200
1254
  export var ListExecutionsResponse$ = [3, n0, _LERi,
@@ -1244,7 +1298,7 @@ export var ListPrivateConnectionsOutput$ = [3, n0, _LPCO,
1244
1298
  ];
1245
1299
  export var ListRecommendationsRequest$ = [3, n0, _LRR,
1246
1300
  0,
1247
- [_aSI, _tI, _gIo, _st, _pr, _li, _nT],
1301
+ [_aSI, _tIa, _gIo, _st, _pr, _li, _nT],
1248
1302
  [[0, 1], 0, 0, 0, 0, 1, 0], 1
1249
1303
  ];
1250
1304
  export var ListRecommendationsResponse$ = [3, n0, _LRRi,
@@ -1272,6 +1326,16 @@ export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
1272
1326
  [_t],
1273
1327
  [128 | 0], 1
1274
1328
  ];
1329
+ export var ListTriggersRequest$ = [3, n0, _LTR,
1330
+ 0,
1331
+ [_aSI, _st, _nT, _mR],
1332
+ [[0, 1], [0, { [_hQ]: _st }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
1333
+ ];
1334
+ export var ListTriggersResponse$ = [3, n0, _LTRi,
1335
+ 0,
1336
+ [_it, _nT],
1337
+ [() => TriggerList, 0], 1
1338
+ ];
1275
1339
  export var ListWebhooksInput$ = [3, n0, _LWI,
1276
1340
  0,
1277
1341
  [_aSI, _aIs],
@@ -1394,7 +1458,7 @@ export var PrivateConnectionSummary$ = [3, n0, _PCS,
1394
1458
  ];
1395
1459
  export var Recommendation$ = [3, n0, _R,
1396
1460
  0,
1397
- [_aSA, _rI, _tI, _ti, _co, _st, _pr, _cA, _uA, _v, _gIo, _gV, _aCd, _rP, _rAa],
1461
+ [_aSA, _rI, _tIa, _ti, _co, _st, _pr, _cA, _uA, _v, _gIo, _gV, _aCd, _rP, _rAa],
1398
1462
  [0, 0, 0, 0, () => RecommendationContent$, 0, 0, 5, 5, 1, 0, 1, 0, 1, 5], 10
1399
1463
  ];
1400
1464
  export var RecommendationContent$ = [3, n0, _RC,
@@ -1482,6 +1546,11 @@ export var RegisterServiceOutput$ = [3, n0, _RSO,
1482
1546
  [_sI, _aSd, _kKA, _t],
1483
1547
  [0, () => AdditionalServiceRegistrationStep$, 0, 128 | 0]
1484
1548
  ];
1549
+ export var ScheduleCondition$ = [3, n0, _SC,
1550
+ 0,
1551
+ [_ex],
1552
+ [0], 1
1553
+ ];
1485
1554
  export var SelfManagedInput$ = [3, n0, _SMI,
1486
1555
  0,
1487
1556
  [_rCI, _ce],
@@ -1582,12 +1651,12 @@ export var ServiceNowServiceDetails$ = [3, n0, _SNSD,
1582
1651
  [_iUn, _aC],
1583
1652
  [0, [() => ServiceNowServiceAuthorizationConfig$, 0]], 1
1584
1653
  ];
1585
- export var SlackChannel$ = [3, n0, _SC,
1654
+ export var SlackChannel$ = [3, n0, _SCl,
1586
1655
  0,
1587
1656
  [_cIh, _cNh],
1588
1657
  [0, 0], 1
1589
1658
  ];
1590
- export var SlackConfiguration$ = [3, n0, _SCl,
1659
+ export var SlackConfiguration$ = [3, n0, _SCla,
1591
1660
  0,
1592
1661
  [_wIo, _wN, _tTr],
1593
1662
  [0, 0, () => SlackTransmissionTarget$], 3
@@ -1614,7 +1683,7 @@ export var TagResourceResponse$ = [3, n0, _TRRa,
1614
1683
  ];
1615
1684
  export var Task$ = [3, n0, _T,
1616
1685
  0,
1617
- [_aSI, _tI, _ti, _tT, _pr, _st, _cA, _uA, _v, _eI, _d, _r, _sM, _me, _pTI, _sR, _hLT],
1686
+ [_aSI, _tIa, _ti, _tT, _pr, _st, _cA, _uA, _v, _eI, _d, _r, _sM, _me, _pTI, _sR, _hLT],
1618
1687
  [0, 0, 0, 0, 0, 0, 5, 5, 1, 0, 0, () => ReferenceOutput$, 15, 15, 0, 0, 2], 9
1619
1688
  ];
1620
1689
  export var TaskFilter$ = [3, n0, _TF,
@@ -1622,6 +1691,11 @@ export var TaskFilter$ = [3, n0, _TF,
1622
1691
  [_cAr, _cB, _pr, _st, _tT, _pTI],
1623
1692
  [5, 5, 64 | 0, 64 | 0, 64 | 0, 0]
1624
1693
  ];
1694
+ export var Trigger$ = [3, n0, _Tr,
1695
+ 0,
1696
+ [_tI, _aSI, _ty, _cond, _ac, _st, _cA, _uA],
1697
+ [0, 0, 0, () => TriggerCondition$, 15, 0, 4, 4], 8
1698
+ ];
1625
1699
  export var UntagResourceRequest$ = [3, n0, _URR,
1626
1700
  0,
1627
1701
  [_rA, _tK],
@@ -1674,7 +1748,7 @@ export var UpdateAssociationOutput$ = [3, n0, _UAO,
1674
1748
  ];
1675
1749
  export var UpdateBacklogTaskRequest$ = [3, n0, _UBTR,
1676
1750
  0,
1677
- [_aSI, _tI, _tS, _cT],
1751
+ [_aSI, _tIa, _tS, _cT],
1678
1752
  [[0, 1], [0, 1], 0, [0, 4]], 2
1679
1753
  ];
1680
1754
  export var UpdateBacklogTaskResponse$ = [3, n0, _UBTRp,
@@ -1722,6 +1796,16 @@ export var UpdateRecommendationResponse$ = [3, n0, _URRpd,
1722
1796
  [_rec],
1723
1797
  [() => Recommendation$], 1
1724
1798
  ];
1799
+ export var UpdateTriggerRequest$ = [3, n0, _UTR,
1800
+ 0,
1801
+ [_aSI, _tI, _st, _cT],
1802
+ [[0, 1], [0, 1], 0, [0, 4]], 2
1803
+ ];
1804
+ export var UpdateTriggerResponse$ = [3, n0, _UTRp,
1805
+ 0,
1806
+ [_tr],
1807
+ [() => Trigger$], 1
1808
+ ];
1725
1809
  export var UsageMetric$ = [3, n0, _UM,
1726
1810
  0,
1727
1811
  [_li, _us],
@@ -1823,6 +1907,9 @@ var TaskList = [1, n0, _TL,
1823
1907
  ];
1824
1908
  var TaskStatusList = 64 | 0;
1825
1909
  var TaskTypeList = 64 | 0;
1910
+ var TriggerList = [1, n0, _TLr,
1911
+ 0, () => Trigger$
1912
+ ];
1826
1913
  var UserMessage = [1, n0, _UMs,
1827
1914
  0, () => UserMessageBlock$
1828
1915
  ];
@@ -1931,6 +2018,11 @@ export var ServiceNowServiceAuthorizationConfig$ = [4, n0, _SNSAC,
1931
2018
  [_oACC],
1932
2019
  [[() => ServiceNowOAuthClientCredentialsConfig$, 0]]
1933
2020
  ];
2021
+ export var TriggerCondition$ = [4, n0, _TC,
2022
+ 0,
2023
+ [_sch],
2024
+ [() => ScheduleCondition$]
2025
+ ];
1934
2026
  export var UserMessageBlock$ = [4, n0, _UMB,
1935
2027
  0,
1936
2028
  [_te, _tR],
@@ -1957,6 +2049,9 @@ export var CreateChat$ = [9, n0, _CC,
1957
2049
  export var CreatePrivateConnection$ = [9, n0, _CPC,
1958
2050
  { [_en]: ["cp."], [_ht]: ["POST", "/v1/private-connections", 200] }, () => CreatePrivateConnectionInput$, () => CreatePrivateConnectionOutput$
1959
2051
  ];
2052
+ export var CreateTrigger$ = [9, n0, _CT,
2053
+ { [_en]: ["dp."], [_ht]: ["POST", "/trigger/agent-space/{agentSpaceId}/triggers", 201] }, () => CreateTriggerRequest$, () => CreateTriggerResponse$
2054
+ ];
1960
2055
  export var DeleteAgentSpace$ = [9, n0, _DAS,
1961
2056
  { [_en]: ["cp."], [_ht]: ["DELETE", "/v1/agentspaces/{agentSpaceId}", 204] }, () => DeleteAgentSpaceInput$, () => DeleteAgentSpaceOutput$
1962
2057
  ];
@@ -1969,6 +2064,9 @@ export var DeleteAssetFile$ = [9, n0, _DAF,
1969
2064
  export var DeletePrivateConnection$ = [9, n0, _DPC,
1970
2065
  { [_en]: ["cp."], [_ht]: ["DELETE", "/v1/private-connections/{name}", 200] }, () => DeletePrivateConnectionInput$, () => DeletePrivateConnectionOutput$
1971
2066
  ];
2067
+ export var DeleteTrigger$ = [9, n0, _DT,
2068
+ { [_en]: ["dp."], [_ht]: ["DELETE", "/trigger/agent-space/{agentSpaceId}/triggers/{triggerId}", 200] }, () => DeleteTriggerRequest$, () => DeleteTriggerResponse$
2069
+ ];
1972
2070
  export var DeregisterService$ = [9, n0, _DS,
1973
2071
  { [_en]: ["cp."], [_ht]: ["DELETE", "/v1/services/{serviceId}", 200] }, () => DeregisterServiceInput$, () => DeregisterServiceOutput$
1974
2072
  ];
@@ -2014,6 +2112,9 @@ export var GetRecommendation$ = [9, n0, _GR,
2014
2112
  export var GetService$ = [9, n0, _GSe,
2015
2113
  { [_en]: ["cp."], [_ht]: ["GET", "/v1/services/{serviceId}", 200] }, () => GetServiceInput$, () => GetServiceOutput$
2016
2114
  ];
2115
+ export var GetTrigger$ = [9, n0, _GT,
2116
+ { [_en]: ["dp."], [_ht]: ["GET", "/trigger/agent-space/{agentSpaceId}/triggers/{triggerId}", 200] }, () => GetTriggerRequest$, () => GetTriggerResponse$
2117
+ ];
2017
2118
  export var ListAgentSpaces$ = [9, n0, _LAS,
2018
2119
  { [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/list", 200] }, () => ListAgentSpacesInput$, () => ListAgentSpacesOutput$
2019
2120
  ];
@@ -2062,6 +2163,9 @@ export var ListServices$ = [9, n0, _LS,
2062
2163
  export var ListTagsForResource$ = [9, n0, _LTFR,
2063
2164
  { [_en]: ["cp."], [_ht]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
2064
2165
  ];
2166
+ export var ListTriggers$ = [9, n0, _LT,
2167
+ { [_en]: ["dp."], [_ht]: ["GET", "/trigger/agent-space/{agentSpaceId}/triggers", 200] }, () => ListTriggersRequest$, () => ListTriggersResponse$
2168
+ ];
2065
2169
  export var ListWebhooks$ = [9, n0, _LW,
2066
2170
  { [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/{agentSpaceId}/associations/{associationId}/webhooks/list", 200] }, () => ListWebhooksInput$, () => ListWebhooksOutput$
2067
2171
  ];
@@ -2104,6 +2208,9 @@ export var UpdatePrivateConnectionCertificate$ = [9, n0, _UPCC,
2104
2208
  export var UpdateRecommendation$ = [9, n0, _URp,
2105
2209
  { [_en]: ["dp."], [_ht]: ["PATCH", "/backlog/agent-space/{agentSpaceId}/recommendations/{recommendationId}", 200] }, () => UpdateRecommendationRequest$, () => UpdateRecommendationResponse$
2106
2210
  ];
2211
+ export var UpdateTrigger$ = [9, n0, _UT,
2212
+ { [_en]: ["dp."], [_ht]: ["PATCH", "/trigger/agent-space/{agentSpaceId}/triggers/{triggerId}", 200] }, () => UpdateTriggerRequest$, () => UpdateTriggerResponse$
2213
+ ];
2107
2214
  export var ValidateAwsAssociations$ = [9, n0, _VAA,
2108
2215
  { [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/{agentSpaceId}/associations/validate", 204] }, () => ValidateAwsAssociationsInput$, () => ValidateAwsAssociationsOutput$
2109
2216
  ];