@aws-sdk/client-devops-agent 3.1063.0 → 3.1065.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 (89) hide show
  1. package/README.md +92 -1
  2. package/dist-cjs/index.js +204 -0
  3. package/dist-cjs/schemas/schemas_0.js +375 -77
  4. package/dist-es/DevOpsAgent.js +34 -0
  5. package/dist-es/commands/CreateAssetCommand.js +16 -0
  6. package/dist-es/commands/CreateAssetFileCommand.js +16 -0
  7. package/dist-es/commands/DeleteAssetCommand.js +16 -0
  8. package/dist-es/commands/DeleteAssetFileCommand.js +16 -0
  9. package/dist-es/commands/GetAssetCommand.js +16 -0
  10. package/dist-es/commands/GetAssetContentCommand.js +16 -0
  11. package/dist-es/commands/GetAssetFileCommand.js +16 -0
  12. package/dist-es/commands/ListAssetFilesCommand.js +16 -0
  13. package/dist-es/commands/ListAssetTypesCommand.js +16 -0
  14. package/dist-es/commands/ListAssetVersionsCommand.js +16 -0
  15. package/dist-es/commands/ListAssetsCommand.js +16 -0
  16. package/dist-es/commands/UpdateAssetCommand.js +16 -0
  17. package/dist-es/commands/UpdateAssetFileCommand.js +16 -0
  18. package/dist-es/commands/index.js +13 -0
  19. package/dist-es/models/enums.js +5 -0
  20. package/dist-es/pagination/ListAssetFilesPaginator.js +4 -0
  21. package/dist-es/pagination/ListAssetTypesPaginator.js +4 -0
  22. package/dist-es/pagination/ListAssetVersionsPaginator.js +4 -0
  23. package/dist-es/pagination/ListAssetsPaginator.js +4 -0
  24. package/dist-es/pagination/index.js +4 -0
  25. package/dist-es/schemas/schemas_0.js +369 -71
  26. package/dist-types/DevOpsAgent.d.ts +121 -1
  27. package/dist-types/DevOpsAgentClient.d.ts +16 -3
  28. package/dist-types/commands/CreateAssetCommand.d.ts +126 -0
  29. package/dist-types/commands/CreateAssetFileCommand.d.ts +121 -0
  30. package/dist-types/commands/CreateBacklogTaskCommand.d.ts +1 -1
  31. package/dist-types/commands/CreatePrivateConnectionCommand.d.ts +3 -0
  32. package/dist-types/commands/DeleteAssetCommand.d.ts +102 -0
  33. package/dist-types/commands/DeleteAssetFileCommand.d.ts +103 -0
  34. package/dist-types/commands/DescribePrivateConnectionCommand.d.ts +2 -0
  35. package/dist-types/commands/EnableOperatorAppCommand.d.ts +1 -0
  36. package/dist-types/commands/GetAssetCommand.d.ts +112 -0
  37. package/dist-types/commands/GetAssetContentCommand.d.ts +108 -0
  38. package/dist-types/commands/GetAssetFileCommand.d.ts +116 -0
  39. package/dist-types/commands/GetBacklogTaskCommand.d.ts +1 -1
  40. package/dist-types/commands/GetOperatorAppCommand.d.ts +1 -0
  41. package/dist-types/commands/GetServiceCommand.d.ts +1 -0
  42. package/dist-types/commands/ListAssetFilesCommand.d.ts +116 -0
  43. package/dist-types/commands/ListAssetTypesCommand.d.ts +110 -0
  44. package/dist-types/commands/ListAssetVersionsCommand.d.ts +113 -0
  45. package/dist-types/commands/ListAssetsCommand.d.ts +118 -0
  46. package/dist-types/commands/ListBacklogTasksCommand.d.ts +2 -2
  47. package/dist-types/commands/ListPrivateConnectionsCommand.d.ts +2 -0
  48. package/dist-types/commands/ListServicesCommand.d.ts +1 -0
  49. package/dist-types/commands/RegisterServiceCommand.d.ts +4 -1
  50. package/dist-types/commands/SendMessageCommand.d.ts +3 -0
  51. package/dist-types/commands/UpdateAssetCommand.d.ts +126 -0
  52. package/dist-types/commands/UpdateAssetFileCommand.d.ts +121 -0
  53. package/dist-types/commands/UpdateBacklogTaskCommand.d.ts +2 -2
  54. package/dist-types/commands/UpdatePrivateConnectionCertificateCommand.d.ts +2 -0
  55. package/dist-types/commands/index.d.ts +13 -0
  56. package/dist-types/index.d.ts +1 -1
  57. package/dist-types/models/enums.d.ts +22 -0
  58. package/dist-types/models/models_0.d.ts +879 -27
  59. package/dist-types/pagination/ListAssetFilesPaginator.d.ts +7 -0
  60. package/dist-types/pagination/ListAssetTypesPaginator.d.ts +7 -0
  61. package/dist-types/pagination/ListAssetVersionsPaginator.d.ts +7 -0
  62. package/dist-types/pagination/ListAssetsPaginator.d.ts +7 -0
  63. package/dist-types/pagination/index.d.ts +4 -0
  64. package/dist-types/schemas/schemas_0.d.ts +48 -0
  65. package/dist-types/ts3.4/DevOpsAgent.d.ts +250 -0
  66. package/dist-types/ts3.4/DevOpsAgentClient.d.ts +78 -0
  67. package/dist-types/ts3.4/commands/CreateAssetCommand.d.ts +49 -0
  68. package/dist-types/ts3.4/commands/CreateAssetFileCommand.d.ts +52 -0
  69. package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +49 -0
  70. package/dist-types/ts3.4/commands/DeleteAssetFileCommand.d.ts +52 -0
  71. package/dist-types/ts3.4/commands/GetAssetCommand.d.ts +45 -0
  72. package/dist-types/ts3.4/commands/GetAssetContentCommand.d.ts +52 -0
  73. package/dist-types/ts3.4/commands/GetAssetFileCommand.d.ts +49 -0
  74. package/dist-types/ts3.4/commands/ListAssetFilesCommand.d.ts +52 -0
  75. package/dist-types/ts3.4/commands/ListAssetTypesCommand.d.ts +52 -0
  76. package/dist-types/ts3.4/commands/ListAssetVersionsCommand.d.ts +53 -0
  77. package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +49 -0
  78. package/dist-types/ts3.4/commands/UpdateAssetCommand.d.ts +49 -0
  79. package/dist-types/ts3.4/commands/UpdateAssetFileCommand.d.ts +52 -0
  80. package/dist-types/ts3.4/commands/index.d.ts +13 -0
  81. package/dist-types/ts3.4/models/enums.d.ts +7 -0
  82. package/dist-types/ts3.4/models/models_0.d.ts +230 -1
  83. package/dist-types/ts3.4/pagination/ListAssetFilesPaginator.d.ts +11 -0
  84. package/dist-types/ts3.4/pagination/ListAssetTypesPaginator.d.ts +11 -0
  85. package/dist-types/ts3.4/pagination/ListAssetVersionsPaginator.d.ts +11 -0
  86. package/dist-types/ts3.4/pagination/ListAssetsPaginator.d.ts +11 -0
  87. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  88. package/dist-types/ts3.4/schemas/schemas_0.d.ts +48 -0
  89. package/package.json +5 -5
@@ -1,9 +1,16 @@
1
- const _A = "Association";
1
+ const _A = "Asset";
2
2
  const _AC = "AzureConfiguration";
3
+ const _ACs = "AssetContent";
3
4
  const _ADE = "AccessDeniedException";
4
5
  const _ADOC = "AzureDevOpsConfiguration";
6
+ const _AF = "AssetFile";
7
+ const _AFB = "AssetFileBody";
8
+ const _AFC = "AssetFileContent";
9
+ const _AFS = "AssetFileSummary";
10
+ const _AFSL = "AssetFileSummaryList";
5
11
  const _AKV = "ApiKeyValue";
6
- const _AL = "AssociationsList";
12
+ const _AL = "AssetList";
13
+ const _ALs = "AssociationsList";
7
14
  const _AM = "AssistantMessage";
8
15
  const _AMB = "AssistantMessageBlock";
9
16
  const _AS = "AgentSpace";
@@ -13,7 +20,19 @@ const _ASL = "AgentSpaceList";
13
20
  const _ASO = "AssociateServiceOutput";
14
21
  const _ASRS = "AdditionalServiceRegistrationStep";
15
22
  const _ASs = "AssociateService";
23
+ const _ATL = "AssetTypeList";
24
+ const _ATS = "AssetTypeSummary";
25
+ const _AVM = "AssetVersionMetadata";
26
+ const _AVML = "AssetVersionMetadataList";
16
27
  const _AWSC = "AWSConfiguration";
28
+ const _AZC = "AssetZipContent";
29
+ const _As = "Association";
30
+ const _CA = "CreateAsset";
31
+ const _CAF = "CreateAssetFile";
32
+ const _CAFR = "CreateAssetFileRequest";
33
+ const _CAFRr = "CreateAssetFileResponse";
34
+ const _CAR = "CreateAssetRequest";
35
+ const _CARr = "CreateAssetResponse";
17
36
  const _CAS = "CreateAgentSpace";
18
37
  const _CASI = "CreateAgentSpaceInput";
19
38
  const _CASO = "CreateAgentSpaceOutput";
@@ -35,7 +54,13 @@ const _CPCO = "CreatePrivateConnectionOutput";
35
54
  const _CS = "ClientSecret";
36
55
  const _CSEE = "ContentSizeExceededException";
37
56
  const _D = "Description";
57
+ const _DA = "DeleteAsset";
38
58
  const _DAC = "DatadogAuthorizationConfig";
59
+ const _DAF = "DeleteAssetFile";
60
+ const _DAFR = "DeleteAssetFileRequest";
61
+ const _DAFRe = "DeleteAssetFileResponse";
62
+ const _DAR = "DeleteAssetRequest";
63
+ const _DARe = "DeleteAssetResponse";
39
64
  const _DAS = "DeleteAgentSpace";
40
65
  const _DASI = "DeleteAgentSpaceInput";
41
66
  const _DASO = "DeleteAgentSpaceOutput";
@@ -69,15 +94,24 @@ const _EOAO = "EnableOperatorAppOutput";
69
94
  const _EP = "ExchangeParameters";
70
95
  const _EPV = "ExchangeParameterValue";
71
96
  const _G = "Goal";
72
- const _GA = "GetAssociation";
97
+ const _GA = "GetAsset";
98
+ const _GAC = "GetAssetContent";
99
+ const _GACR = "GetAssetContentRequest";
100
+ const _GACRe = "GetAssetContentResponse";
101
+ const _GAF = "GetAssetFile";
102
+ const _GAFR = "GetAssetFileRequest";
103
+ const _GAFRe = "GetAssetFileResponse";
73
104
  const _GAI = "GetAssociationInput";
74
105
  const _GAO = "GetAssociationOutput";
106
+ const _GAR = "GetAssetRequest";
107
+ const _GARe = "GetAssetResponse";
75
108
  const _GAS = "GetAgentSpace";
76
109
  const _GASI = "GetAgentSpaceInput";
77
110
  const _GASO = "GetAgentSpaceOutput";
78
111
  const _GAU = "GetAccountUsage";
79
112
  const _GAUI = "GetAccountUsageInput";
80
113
  const _GAUO = "GetAccountUsageOutput";
114
+ const _GAe = "GetAssociation";
81
115
  const _GBT = "GetBacklogTask";
82
116
  const _GBTR = "GetBacklogTaskRequest";
83
117
  const _GBTRe = "GetBacklogTaskResponse";
@@ -108,12 +142,24 @@ const _IPE = "InvalidParameterException";
108
142
  const _ISE = "InternalServerException";
109
143
  const _JR = "JournalRecord";
110
144
  const _JRL = "JournalRecordList";
111
- const _LA = "ListAssociations";
145
+ const _LA = "ListAssets";
146
+ const _LAF = "ListAssetFiles";
147
+ const _LAFR = "ListAssetFilesRequest";
148
+ const _LAFRi = "ListAssetFilesResponse";
112
149
  const _LAI = "ListAssociationsInput";
113
150
  const _LAO = "ListAssociationsOutput";
151
+ const _LAR = "ListAssetsRequest";
152
+ const _LARi = "ListAssetsResponse";
114
153
  const _LAS = "ListAgentSpaces";
115
154
  const _LASI = "ListAgentSpacesInput";
116
155
  const _LASO = "ListAgentSpacesOutput";
156
+ const _LAT = "ListAssetTypes";
157
+ const _LATR = "ListAssetTypesRequest";
158
+ const _LATRi = "ListAssetTypesResponse";
159
+ const _LAV = "ListAssetVersions";
160
+ const _LAVR = "ListAssetVersionsRequest";
161
+ const _LAVRi = "ListAssetVersionsResponse";
162
+ const _LAi = "ListAssociations";
117
163
  const _LBT = "ListBacklogTasks";
118
164
  const _LBTR = "ListBacklogTasksRequest";
119
165
  const _LBTRi = "ListBacklogTasksResponse";
@@ -237,12 +283,18 @@ const _TR = "TagResource";
237
283
  const _TRR = "TagResourceRequest";
238
284
  const _TRRa = "TagResourceResponse";
239
285
  const _TV = "TokenValue";
240
- const _UA = "UpdateAssociation";
286
+ const _UA = "UpdateAsset";
287
+ const _UAF = "UpdateAssetFile";
288
+ const _UAFR = "UpdateAssetFileRequest";
289
+ const _UAFRp = "UpdateAssetFileResponse";
241
290
  const _UAI = "UpdateAssociationInput";
242
291
  const _UAO = "UpdateAssociationOutput";
292
+ const _UAR = "UpdateAssetRequest";
293
+ const _UARp = "UpdateAssetResponse";
243
294
  const _UAS = "UpdateAgentSpace";
244
295
  const _UASI = "UpdateAgentSpaceInput";
245
296
  const _UASO = "UpdateAgentSpaceOutput";
297
+ const _UAp = "UpdateAssociation";
246
298
  const _UBT = "UpdateBacklogTask";
247
299
  const _UBTR = "UpdateBacklogTaskRequest";
248
300
  const _UBTRp = "UpdateBacklogTaskResponse";
@@ -280,9 +332,11 @@ const _aCd = "additionalContext";
280
332
  const _aD = "authorizationDiscovery";
281
333
  const _aF = "authFlow";
282
334
  const _aH = "authorizationHeader";
283
- const _aI = "associationId";
335
+ const _aI = "assetId";
284
336
  const _aIc = "accountId";
285
337
  const _aIp = "applicationIds";
338
+ const _aIs = "associationId";
339
+ const _aIss = "assetIds";
286
340
  const _aK = "apiKey";
287
341
  const _aKH = "apiKeyHeader";
288
342
  const _aKN = "apiKeyName";
@@ -300,16 +354,21 @@ const _aST = "agentSubTask";
300
354
  const _aSd = "additionalStep";
301
355
  const _aSg = "agentSpaces";
302
356
  const _aSu = "authScopes";
303
- const _aT = "accountType";
357
+ const _aT = "assetType";
358
+ const _aTc = "accountType";
304
359
  const _aTg = "agentType";
305
360
  const _aU = "accountUrn";
306
361
  const _aUu = "authorizationUrl";
307
- const _as = "associations";
362
+ const _aV = "assetVersion";
363
+ const _as = "asset";
364
+ const _ass = "associations";
308
365
  const _aw = "aws";
309
366
  const _az = "azuredevops";
310
367
  const _azu = "azureidentity";
311
368
  const _azur = "azure";
369
+ const _b = "body";
312
370
  const _bT = "bearerToken";
371
+ const _by = "bytes";
313
372
  const _c = "client";
314
373
  const _cA = "createdAt";
315
374
  const _cAr = "createdAfter";
@@ -328,10 +387,11 @@ const _cP = "currentPage";
328
387
  const _cS = "clientSecret";
329
388
  const _cT = "clientToken";
330
389
  const _ce = "certificate";
331
- const _co = "configuration";
332
- const _con = "content";
390
+ const _co = "content";
391
+ const _con = "configuration";
333
392
  const _cont = "context";
334
393
  const _d = "description";
394
+ const _dR = "dnsResolution";
335
395
  const _de = "delta";
336
396
  const _dy = "dynatrace";
337
397
  const _e = "error";
@@ -346,14 +406,17 @@ const _eP = "exchangeParameters";
346
406
  const _eS = "executionStatus";
347
407
  const _eSv = "evaluationSchedule";
348
408
  const _eU = "exchangeUrl";
409
+ const _eUPCN = "exchangeUrlPrivateConnectionName";
349
410
  const _en = "endpoint";
350
411
  const _ev = "events";
351
412
  const _ex = "expression";
352
413
  const _exe = "executions";
353
- const _f = "filter";
414
+ const _f = "file";
354
415
  const _fL = "fieldList";
416
+ const _fM = "failureMessage";
355
417
  const _fST = "filterServiceTypes";
356
418
  const _fSTi = "filterServiceType";
419
+ const _fi = "filter";
357
420
  const _g = "goals";
358
421
  const _gI = "groupId";
359
422
  const _gIo = "goalId";
@@ -385,6 +448,7 @@ const _id = "idc";
385
448
  const _id_ = "id";
386
449
  const _idp = "idp";
387
450
  const _in = "index";
451
+ const _it = "items";
388
452
  const _jD = "jsonDelta";
389
453
  const _kKA = "kmsKeyArn";
390
454
  const _l = "locale";
@@ -401,14 +465,15 @@ const _mAODH = "monthlyAccountOnDemandHours";
401
465
  const _mASLH = "monthlyAccountSystemLearningHours";
402
466
  const _mI = "messageId";
403
467
  const _mR = "maxResults";
468
+ const _mRA = "mcpRoleArn";
404
469
  const _mc = "mcpserverdatadog";
405
470
  const _mcp = "mcpserver";
406
471
  const _mcps = "mcpserversplunk";
407
472
  const _mcpse = "mcpservernewrelic";
408
473
  const _mcpser = "mcpservergrafana";
409
474
  const _mcpserv = "mcpserversigv4";
410
- const _me = "messages";
411
- const _met = "metadata";
475
+ const _me = "metadata";
476
+ const _mes = "messages";
412
477
  const _mo = "mode";
413
478
  const _n = "name";
414
479
  const _nT = "nextToken";
@@ -416,6 +481,7 @@ const _o = "owner";
416
481
  const _oACC = "oAuthClientCredentials";
417
482
  const _oALO = "oAuth3LO";
418
483
  const _oARA = "operatorAppRoleArn";
484
+ const _oAU = "operatorAppUrl";
419
485
  const _oI = "organizationId";
420
486
  const _oN = "organizationName";
421
487
  const _oOT = "opsOncallTarget";
@@ -425,7 +491,7 @@ const _oTu = "outputTokens";
425
491
  const _oa = "oauth";
426
492
  const _ob = "objectives";
427
493
  const _or = "order";
428
- const _p = "priority";
494
+ const _p = "path";
429
495
  const _pC = "privateConnections";
430
496
  const _pCN = "privateConnectionName";
431
497
  const _pEI = "parentExecutionId";
@@ -436,9 +502,9 @@ const _pN = "projectName";
436
502
  const _pP = "projectPath";
437
503
  const _pR = "portRanges";
438
504
  const _pTI = "primaryTaskId";
439
- const _pa = "path";
440
- const _pag = "pagerduty";
441
- const _pr = "provider";
505
+ const _pa = "pagerduty";
506
+ const _pr = "priority";
507
+ const _pro = "provider";
442
508
  const _r = "reference";
443
509
  const _rA = "resourceArn";
444
510
  const _rAa = "rankedAt";
@@ -507,6 +573,7 @@ const _tTo = "tokenType";
507
573
  const _tTot = "totalTokens";
508
574
  const _tTr = "transmissionTarget";
509
575
  const _tU = "targetUrl";
576
+ const _tUPCN = "targetUrlPrivateConnectionName";
510
577
  const _tUo = "toolUse";
511
578
  const _tV = "tokenValue";
512
579
  const _ta = "task";
@@ -518,6 +585,8 @@ const _ty = "type";
518
585
  const _u = "uid";
519
586
  const _uA = "updatedAt";
520
587
  const _uAR = "userActionResponse";
588
+ const _uAp = "updatedAfter";
589
+ const _uB = "updatedBefore";
521
590
  const _uEC = "underlyingErrorCode";
522
591
  const _uI = "userId";
523
592
  const _uM = "userMessage";
@@ -539,6 +608,8 @@ const _wT = "webhookType";
539
608
  const _wU = "webhookUrl";
540
609
  const _we = "webhooks";
541
610
  const _xaaaf = "x-amzn-app-auth-flow";
611
+ const _z = "zip";
612
+ const _zF = "zipFile";
542
613
  const n0 = "com.amazonaws.devopsagent";
543
614
  import { TypeRegistry } from "@smithy/core/schema";
544
615
  import { DevOpsAgentServiceException } from "../models/DevOpsAgentServiceException";
@@ -626,9 +697,44 @@ export var AgentSpace$ = [3, n0, _AS,
626
697
  [_n, _cA, _uA, _aSI, _d, _l, _kKA],
627
698
  [0, 5, 5, 0, [() => Description, 0], 0, 0], 4
628
699
  ];
700
+ export var Asset$ = [3, n0, _A,
701
+ 0,
702
+ [_aI, _aT, _me, _v, _cA, _uA],
703
+ [0, 0, 15, 1, 4, 4], 6
704
+ ];
705
+ export var AssetFile$ = [3, n0, _AF,
706
+ 0,
707
+ [_p, _co, _v, _cA, _uA, _me],
708
+ [0, () => AssetFileBody$, 1, 4, 4, 15], 5
709
+ ];
710
+ export var AssetFileContent$ = [3, n0, _AFC,
711
+ 0,
712
+ [_p, _b, _me],
713
+ [0, () => AssetFileBody$, 15], 2
714
+ ];
715
+ export var AssetFileSummary$ = [3, n0, _AFS,
716
+ 0,
717
+ [_p, _v, _cA, _uA, _me],
718
+ [0, 1, 4, 4, 15], 4
719
+ ];
720
+ export var AssetTypeSummary$ = [3, n0, _ATS,
721
+ 0,
722
+ [_aT, _d],
723
+ [0, 0], 2
724
+ ];
725
+ export var AssetVersionMetadata$ = [3, n0, _AVM,
726
+ 0,
727
+ [_v, _cA, _uA],
728
+ [1, 4, 4], 3
729
+ ];
730
+ export var AssetZipContent$ = [3, n0, _AZC,
731
+ 0,
732
+ [_zF],
733
+ [21], 1
734
+ ];
629
735
  export var AssociateServiceInput$ = [3, n0, _ASI,
630
736
  0,
631
- [_aSI, _sI, _co],
737
+ [_aSI, _sI, _con],
632
738
  [[0, 1], 0, [() => ServiceConfiguration$, 0]], 3
633
739
  ];
634
740
  export var AssociateServiceOutput$ = [3, n0, _ASO,
@@ -636,14 +742,14 @@ export var AssociateServiceOutput$ = [3, n0, _ASO,
636
742
  [_a, _w],
637
743
  [[() => Association$, 0], [() => GenericWebhook$, 0]], 1
638
744
  ];
639
- export var Association$ = [3, n0, _A,
745
+ export var Association$ = [3, n0, _As,
640
746
  0,
641
- [_aSI, _cA, _uA, _aI, _sI, _co, _st],
747
+ [_aSI, _cA, _uA, _aIs, _sI, _con, _st],
642
748
  [0, 5, 5, 0, 0, [() => ServiceConfiguration$, 0], 0], 6
643
749
  ];
644
750
  export var AWSConfiguration$ = [3, n0, _AWSC,
645
751
  0,
646
- [_aRA, _aIc, _aT],
752
+ [_aRA, _aIc, _aTc],
647
753
  [0, 0, 0], 3
648
754
  ];
649
755
  export var AzureConfiguration$ = [3, n0, _AC,
@@ -671,9 +777,29 @@ export var CreateAgentSpaceOutput$ = [3, n0, _CASO,
671
777
  [_aS, _t],
672
778
  [[() => AgentSpace$, 0], 128 | 0], 1
673
779
  ];
780
+ export var CreateAssetFileRequest$ = [3, n0, _CAFR,
781
+ 0,
782
+ [_aSI, _aI, _p, _co, _me, _cT],
783
+ [[0, 1], [0, 1], [0, 1], () => AssetFileBody$, 15, [0, 4]], 4
784
+ ];
785
+ export var CreateAssetFileResponse$ = [3, n0, _CAFRr,
786
+ 0,
787
+ [_f],
788
+ [() => AssetFile$], 1
789
+ ];
790
+ export var CreateAssetRequest$ = [3, n0, _CAR,
791
+ 0,
792
+ [_aSI, _aT, _co, _me, _cT],
793
+ [[0, 1], 0, () => AssetContent$, 15, [0, 4]], 3
794
+ ];
795
+ export var CreateAssetResponse$ = [3, n0, _CARr,
796
+ 0,
797
+ [_as],
798
+ [() => Asset$], 1
799
+ ];
674
800
  export var CreateBacklogTaskRequest$ = [3, n0, _CBTR,
675
801
  0,
676
- [_aSI, _tT, _ti, _p, _r, _d, _cT],
802
+ [_aSI, _tT, _ti, _pr, _r, _d, _cT],
677
803
  [[0, 1], 0, 0, 0, () => ReferenceInput$, 0, [0, 4]], 4
678
804
  ];
679
805
  export var CreateBacklogTaskResponse$ = [3, n0, _CBTRr,
@@ -698,8 +824,8 @@ export var CreatePrivateConnectionInput$ = [3, n0, _CPCI,
698
824
  ];
699
825
  export var CreatePrivateConnectionOutput$ = [3, n0, _CPCO,
700
826
  0,
701
- [_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _t],
702
- [0, 0, 0, 0, 0, 0, 0, 5, 128 | 0], 3
827
+ [_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _dR, _fM, _t],
828
+ [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 128 | 0], 3
703
829
  ];
704
830
  export var DatadogServiceDetails$ = [3, n0, _DSD,
705
831
  0,
@@ -716,6 +842,26 @@ export var DeleteAgentSpaceOutput$ = [3, n0, _DASO,
716
842
  [],
717
843
  []
718
844
  ];
845
+ export var DeleteAssetFileRequest$ = [3, n0, _DAFR,
846
+ 0,
847
+ [_aSI, _aI, _p],
848
+ [[0, 1], [0, 1], [0, 1]], 3
849
+ ];
850
+ export var DeleteAssetFileResponse$ = [3, n0, _DAFRe,
851
+ 0,
852
+ [],
853
+ []
854
+ ];
855
+ export var DeleteAssetRequest$ = [3, n0, _DAR,
856
+ 0,
857
+ [_aSI, _aI],
858
+ [[0, 1], [0, 1]], 2
859
+ ];
860
+ export var DeleteAssetResponse$ = [3, n0, _DARe,
861
+ 0,
862
+ [],
863
+ []
864
+ ];
719
865
  export var DeletePrivateConnectionInput$ = [3, n0, _DPCI,
720
866
  0,
721
867
  [_n],
@@ -743,8 +889,8 @@ export var DescribePrivateConnectionInput$ = [3, n0, _DPCIe,
743
889
  ];
744
890
  export var DescribePrivateConnectionOutput$ = [3, n0, _DPCOe,
745
891
  0,
746
- [_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _t],
747
- [0, 0, 0, 0, 0, 0, 0, 5, 128 | 0], 3
892
+ [_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _dR, _fM, _t],
893
+ [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 128 | 0], 3
748
894
  ];
749
895
  export var DisableOperatorAppInput$ = [3, n0, _DOAI,
750
896
  0,
@@ -753,7 +899,7 @@ export var DisableOperatorAppInput$ = [3, n0, _DOAI,
753
899
  ];
754
900
  export var DisassociateServiceInput$ = [3, n0, _DSIi,
755
901
  0,
756
- [_aSI, _aI],
902
+ [_aSI, _aIs],
757
903
  [[0, 1], [0, 1]], 2
758
904
  ];
759
905
  export var DisassociateServiceOutput$ = [3, n0, _DSOi,
@@ -778,13 +924,13 @@ export var DynatraceServiceDetails$ = [3, n0, _DSDy,
778
924
  ];
779
925
  export var EnableOperatorAppInput$ = [3, n0, _EOAI,
780
926
  0,
781
- [_aSI, _aF, _oARA, _iIA, _iU, _iCI, _iCS, _pr],
927
+ [_aSI, _aF, _oARA, _iIA, _iU, _iCI, _iCS, _pro],
782
928
  [[0, 1], 0, 0, 0, 0, 0, [() => IdpClientSecret, 0], 0], 3
783
929
  ];
784
930
  export var EnableOperatorAppOutput$ = [3, n0, _EOAO,
785
931
  0,
786
- [_aSI, _i, _id, _idp],
787
- [0, () => IamAuthConfiguration$, () => IdcAuthConfiguration$, () => IdpAuthConfiguration$], 1
932
+ [_aSI, _oAU, _i, _id, _idp],
933
+ [0, 0, () => IamAuthConfiguration$, () => IdcAuthConfiguration$, () => IdpAuthConfiguration$], 1
788
934
  ];
789
935
  export var EventChannelConfiguration$ = [3, n0, _ECC,
790
936
  0,
@@ -826,9 +972,39 @@ export var GetAgentSpaceOutput$ = [3, n0, _GASO,
826
972
  [_aS, _t],
827
973
  [[() => AgentSpace$, 0], 128 | 0], 1
828
974
  ];
975
+ export var GetAssetContentRequest$ = [3, n0, _GACR,
976
+ 0,
977
+ [_aSI, _aI, _aV],
978
+ [[0, 1], [0, 1], [1, { [_hQ]: _aV }]], 2
979
+ ];
980
+ export var GetAssetContentResponse$ = [3, n0, _GACRe,
981
+ 0,
982
+ [_co, _v],
983
+ [() => AssetZipContent$, 1], 2
984
+ ];
985
+ export var GetAssetFileRequest$ = [3, n0, _GAFR,
986
+ 0,
987
+ [_aSI, _aI, _p, _aV],
988
+ [[0, 1], [0, 1], [0, 1], [1, { [_hQ]: _aV }]], 3
989
+ ];
990
+ export var GetAssetFileResponse$ = [3, n0, _GAFRe,
991
+ 0,
992
+ [_f],
993
+ [() => AssetFile$], 1
994
+ ];
995
+ export var GetAssetRequest$ = [3, n0, _GAR,
996
+ 0,
997
+ [_aSI, _aI, _aV],
998
+ [[0, 1], [0, 1], [1, { [_hQ]: _aV }]], 2
999
+ ];
1000
+ export var GetAssetResponse$ = [3, n0, _GARe,
1001
+ 0,
1002
+ [_as],
1003
+ [() => Asset$], 1
1004
+ ];
829
1005
  export var GetAssociationInput$ = [3, n0, _GAI,
830
1006
  0,
831
- [_aSI, _aI],
1007
+ [_aSI, _aIs],
832
1008
  [[0, 1], [0, 1]], 2
833
1009
  ];
834
1010
  export var GetAssociationOutput$ = [3, n0, _GAO,
@@ -853,8 +1029,8 @@ export var GetOperatorAppInput$ = [3, n0, _GOAI,
853
1029
  ];
854
1030
  export var GetOperatorAppOutput$ = [3, n0, _GOAO,
855
1031
  0,
856
- [_i, _id, _idp],
857
- [() => IamAuthConfiguration$, () => IdcAuthConfiguration$, () => IdpAuthConfiguration$]
1032
+ [_oAU, _i, _id, _idp],
1033
+ [0, () => IamAuthConfiguration$, () => IdcAuthConfiguration$, () => IdpAuthConfiguration$]
858
1034
  ];
859
1035
  export var GetRecommendationRequest$ = [3, n0, _GRR,
860
1036
  0,
@@ -893,7 +1069,7 @@ export var GitLabDetails$ = [3, n0, _GLD,
893
1069
  ];
894
1070
  export var Goal$ = [3, n0, _G,
895
1071
  0,
896
- [_aSA, _gIo, _ti, _con, _st, _gT, _cA, _uA, _v, _lEA, _lTI, _lSTI, _eSv],
1072
+ [_aSA, _gIo, _ti, _co, _st, _gT, _cA, _uA, _v, _lEA, _lTI, _lSTI, _eSv],
897
1073
  [0, 0, 0, () => GoalContent$, 0, 0, 5, 5, 1, 5, 0, 0, () => GoalSchedule$], 9
898
1074
  ];
899
1075
  export var GoalContent$ = [3, n0, _GC,
@@ -928,12 +1104,12 @@ export var IdcAuthConfiguration$ = [3, n0, _IACd,
928
1104
  ];
929
1105
  export var IdpAuthConfiguration$ = [3, n0, _IACdp,
930
1106
  0,
931
- [_iU, _cI, _oARA, _pr, _cA, _uA],
1107
+ [_iU, _cI, _oARA, _pro, _cA, _uA],
932
1108
  [0, 0, 0, 0, 5, 5], 5
933
1109
  ];
934
1110
  export var JournalRecord$ = [3, n0, _JR,
935
1111
  0,
936
- [_aSI, _eI, _rIec, _con, _cA, _rT, _uR],
1112
+ [_aSI, _eI, _rIec, _co, _cA, _rT, _uR],
937
1113
  [0, 0, 0, 15, 4, 0, () => UserReference$], 6
938
1114
  ];
939
1115
  export var ListAgentSpacesInput$ = [3, n0, _LASI,
@@ -946,6 +1122,46 @@ export var ListAgentSpacesOutput$ = [3, n0, _LASO,
946
1122
  [_aSg, _nT],
947
1123
  [[() => AgentSpaceList, 0], 0], 1
948
1124
  ];
1125
+ export var ListAssetFilesRequest$ = [3, n0, _LAFR,
1126
+ 0,
1127
+ [_aSI, _aI, _aV, _nT, _mR],
1128
+ [[0, 1], [0, 1], [1, { [_hQ]: _aV }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
1129
+ ];
1130
+ export var ListAssetFilesResponse$ = [3, n0, _LAFRi,
1131
+ 0,
1132
+ [_it, _nT],
1133
+ [() => AssetFileSummaryList, 0], 1
1134
+ ];
1135
+ export var ListAssetsRequest$ = [3, n0, _LAR,
1136
+ 0,
1137
+ [_aSI, _aT, _uAp, _uB, _nT, _mR],
1138
+ [[0, 1], [0, { [_hQ]: _aT }], [4, { [_hQ]: _uAp }], [4, { [_hQ]: _uB }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
1139
+ ];
1140
+ export var ListAssetsResponse$ = [3, n0, _LARi,
1141
+ 0,
1142
+ [_it, _nT],
1143
+ [() => AssetList, 0], 1
1144
+ ];
1145
+ export var ListAssetTypesRequest$ = [3, n0, _LATR,
1146
+ 0,
1147
+ [_nT, _mR],
1148
+ [[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
1149
+ ];
1150
+ export var ListAssetTypesResponse$ = [3, n0, _LATRi,
1151
+ 0,
1152
+ [_it, _nT],
1153
+ [() => AssetTypeList, 0], 1
1154
+ ];
1155
+ export var ListAssetVersionsRequest$ = [3, n0, _LAVR,
1156
+ 0,
1157
+ [_aSI, _aI, _mR, _nT],
1158
+ [[0, 1], [0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
1159
+ ];
1160
+ export var ListAssetVersionsResponse$ = [3, n0, _LAVRi,
1161
+ 0,
1162
+ [_it, _nT],
1163
+ [() => AssetVersionMetadataList, 0], 1
1164
+ ];
949
1165
  export var ListAssociationsInput$ = [3, n0, _LAI,
950
1166
  0,
951
1167
  [_aSI, _mR, _nT, _fST],
@@ -953,12 +1169,12 @@ export var ListAssociationsInput$ = [3, n0, _LAI,
953
1169
  ];
954
1170
  export var ListAssociationsOutput$ = [3, n0, _LAO,
955
1171
  0,
956
- [_as, _nT],
1172
+ [_ass, _nT],
957
1173
  [[() => AssociationsList, 0], 0], 1
958
1174
  ];
959
1175
  export var ListBacklogTasksRequest$ = [3, n0, _LBTR,
960
1176
  0,
961
- [_aSI, _f, _li, _nT, _sF, _or],
1177
+ [_aSI, _fi, _li, _nT, _sF, _or],
962
1178
  [[0, 1], () => TaskFilter$, 1, 0, 0, 0], 1
963
1179
  ];
964
1180
  export var ListBacklogTasksResponse$ = [3, n0, _LBTRi,
@@ -1013,7 +1229,7 @@ export var ListPendingMessagesRequest$ = [3, n0, _LPMR,
1013
1229
  ];
1014
1230
  export var ListPendingMessagesResponse$ = [3, n0, _LPMRi,
1015
1231
  0,
1016
- [_aSI, _eI, _me, _cA],
1232
+ [_aSI, _eI, _mes, _cA],
1017
1233
  [0, 0, () => PendingMessages, 4], 4
1018
1234
  ];
1019
1235
  export var ListPrivateConnectionsInput$ = [3, n0, _LPCI,
@@ -1028,7 +1244,7 @@ export var ListPrivateConnectionsOutput$ = [3, n0, _LPCO,
1028
1244
  ];
1029
1245
  export var ListRecommendationsRequest$ = [3, n0, _LRR,
1030
1246
  0,
1031
- [_aSI, _tI, _gIo, _st, _p, _li, _nT],
1247
+ [_aSI, _tI, _gIo, _st, _pr, _li, _nT],
1032
1248
  [[0, 1], 0, 0, 0, 0, 1, 0], 1
1033
1249
  ];
1034
1250
  export var ListRecommendationsResponse$ = [3, n0, _LRRi,
@@ -1058,7 +1274,7 @@ export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
1058
1274
  ];
1059
1275
  export var ListWebhooksInput$ = [3, n0, _LWI,
1060
1276
  0,
1061
- [_aSI, _aI],
1277
+ [_aSI, _aIs],
1062
1278
  [[0, 1], [0, 1]], 2
1063
1279
  ];
1064
1280
  export var ListWebhooksOutput$ = [3, n0, _LWO,
@@ -1118,8 +1334,8 @@ export var MCPServerOAuthClientCredentialsConfig$ = [3, n0, _MCPSOACCC,
1118
1334
  ];
1119
1335
  export var MCPServerSigV4AuthorizationConfig$ = [3, n0, _MCPSSVAC,
1120
1336
  0,
1121
- [_reg, _ser, _rAo, _cH],
1122
- [0, 0, 0, [() => CustomHeaders, 0]], 3
1337
+ [_reg, _ser, _rAo, _mRA, _cH],
1338
+ [0, 0, 0, 0, [() => CustomHeaders, 0]], 2
1123
1339
  ];
1124
1340
  export var MCPServerSigV4Configuration$ = [3, n0, _MCPSSVC,
1125
1341
  0,
@@ -1173,12 +1389,12 @@ export var PendingMessage$ = [3, n0, _PM,
1173
1389
  ];
1174
1390
  export var PrivateConnectionSummary$ = [3, n0, _PCS,
1175
1391
  0,
1176
- [_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET],
1177
- [0, 0, 0, 0, 0, 0, 0, 5], 3
1392
+ [_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _dR, _fM],
1393
+ [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], 3
1178
1394
  ];
1179
1395
  export var Recommendation$ = [3, n0, _R,
1180
1396
  0,
1181
- [_aSA, _rI, _tI, _ti, _con, _st, _p, _cA, _uA, _v, _gIo, _gV, _aCd, _rP, _rAa],
1397
+ [_aSA, _rI, _tI, _ti, _co, _st, _pr, _cA, _uA, _v, _gIo, _gV, _aCd, _rP, _rAa],
1182
1398
  [0, 0, 0, 0, () => RecommendationContent$, 0, 0, 5, 5, 1, 0, 1, 0, 1, 5], 10
1183
1399
  ];
1184
1400
  export var RecommendationContent$ = [3, n0, _RC,
@@ -1188,12 +1404,12 @@ export var RecommendationContent$ = [3, n0, _RC,
1188
1404
  ];
1189
1405
  export var ReferenceInput$ = [3, n0, _RI,
1190
1406
  0,
1191
- [_sy, _rIef, _rU, _aI, _ti],
1407
+ [_sy, _rIef, _rU, _aIs, _ti],
1192
1408
  [0, 0, 0, 0, 0], 4
1193
1409
  ];
1194
1410
  export var ReferenceOutput$ = [3, n0, _RO,
1195
1411
  0,
1196
- [_sy, _rIef, _rU, _aI, _ti],
1412
+ [_sy, _rIef, _rU, _aIs, _ti],
1197
1413
  [0, 0, 0, 0, 0], 4
1198
1414
  ];
1199
1415
  export var RegisteredAzureDevOpsServiceDetails$ = [3, n0, _RADOSD,
@@ -1228,8 +1444,8 @@ export var RegisteredMCPServerDetails$ = [3, n0, _RMCPSD,
1228
1444
  ];
1229
1445
  export var RegisteredMCPServerSigV4Details$ = [3, n0, _RMCPSSVD,
1230
1446
  0,
1231
- [_n, _en, _reg, _ser, _rAo, _d, _cH],
1232
- [0, 0, 0, 0, 0, [() => Description, 0], [() => CustomHeaders, 0]], 5
1447
+ [_n, _en, _reg, _ser, _rAo, _d, _mRA, _cH],
1448
+ [0, 0, 0, 0, 0, [() => Description, 0], 0, [() => CustomHeaders, 0]], 5
1233
1449
  ];
1234
1450
  export var RegisteredNewRelicDetails$ = [3, n0, _RNRD,
1235
1451
  0,
@@ -1258,8 +1474,8 @@ export var RegisteredSlackServiceDetails$ = [3, n0, _RSSD,
1258
1474
  ];
1259
1475
  export var RegisterServiceInput$ = [3, n0, _RSI,
1260
1476
  0,
1261
- [_ser, _sD, _kKA, _pCN, _n, _t],
1262
- [[0, 1], [() => ServiceDetails$, 0], 0, 0, 0, 128 | 0], 2
1477
+ [_ser, _sD, _kKA, _pCN, _tUPCN, _eUPCN, _n, _t],
1478
+ [[0, 1], [() => ServiceDetails$, 0], 0, 0, 0, 0, 0, 128 | 0], 2
1263
1479
  ];
1264
1480
  export var RegisterServiceOutput$ = [3, n0, _RSO,
1265
1481
  0,
@@ -1303,8 +1519,8 @@ export var SendMessageJsonDelta$ = [3, n0, _SMJD,
1303
1519
  ];
1304
1520
  export var SendMessageRequest$ = [3, n0, _SMR,
1305
1521
  0,
1306
- [_aSI, _eI, _con, _cont, _uI],
1307
- [[0, 1], 0, 0, () => SendMessageContext$, 0], 3
1522
+ [_aSI, _eI, _co, _cont, _uI, _aIss],
1523
+ [[0, 1], 0, 0, () => SendMessageContext$, 0, 64 | 0], 3
1308
1524
  ];
1309
1525
  export var SendMessageResponse$ = [3, n0, _SMRe,
1310
1526
  0,
@@ -1333,7 +1549,7 @@ export var SendMessageResponseInProgressEvent$ = [3, n0, _SMRIPE,
1333
1549
  ];
1334
1550
  export var SendMessageSummaryEvent$ = [3, n0, _SMSE,
1335
1551
  0,
1336
- [_con, _sN],
1552
+ [_co, _sN],
1337
1553
  [0, 1]
1338
1554
  ];
1339
1555
  export var SendMessageTextDelta$ = [3, n0, _SMTD,
@@ -1348,8 +1564,8 @@ export var SendMessageUsageInfo$ = [3, n0, _SMUI,
1348
1564
  ];
1349
1565
  export var ServiceManagedInput$ = [3, n0, _SMIe,
1350
1566
  0,
1351
- [_hA, _vI, _sIub, _sGI, _iAT, _iAPE, _pR, _ce],
1352
- [0, 0, 64 | 0, 64 | 0, 0, 1, 64 | 0, 0], 3
1567
+ [_hA, _vI, _sIub, _sGI, _iAT, _iAPE, _pR, _ce, _dR],
1568
+ [0, 0, 64 | 0, 64 | 0, 0, 1, 64 | 0, 0, 0], 3
1353
1569
  ];
1354
1570
  export var ServiceNowConfiguration$ = [3, n0, _SNC,
1355
1571
  0,
@@ -1383,7 +1599,7 @@ export var SlackTransmissionTarget$ = [3, n0, _STT,
1383
1599
  ];
1384
1600
  export var SourceAwsConfiguration$ = [3, n0, _SAC,
1385
1601
  0,
1386
- [_aIc, _aT, _aRA, _eIx],
1602
+ [_aIc, _aTc, _aRA, _eIx],
1387
1603
  [0, 0, 0, 0], 3
1388
1604
  ];
1389
1605
  export var TagResourceRequest$ = [3, n0, _TRR,
@@ -1398,12 +1614,12 @@ export var TagResourceResponse$ = [3, n0, _TRRa,
1398
1614
  ];
1399
1615
  export var Task$ = [3, n0, _T,
1400
1616
  0,
1401
- [_aSI, _tI, _ti, _tT, _p, _st, _cA, _uA, _v, _eI, _d, _r, _sM, _met, _pTI, _sR, _hLT],
1617
+ [_aSI, _tI, _ti, _tT, _pr, _st, _cA, _uA, _v, _eI, _d, _r, _sM, _me, _pTI, _sR, _hLT],
1402
1618
  [0, 0, 0, 0, 0, 0, 5, 5, 1, 0, 0, () => ReferenceOutput$, 15, 15, 0, 0, 2], 9
1403
1619
  ];
1404
1620
  export var TaskFilter$ = [3, n0, _TF,
1405
1621
  0,
1406
- [_cAr, _cB, _p, _st, _tT, _pTI],
1622
+ [_cAr, _cB, _pr, _st, _tT, _pTI],
1407
1623
  [5, 5, 64 | 0, 64 | 0, 64 | 0, 0]
1408
1624
  ];
1409
1625
  export var UntagResourceRequest$ = [3, n0, _URR,
@@ -1426,9 +1642,29 @@ export var UpdateAgentSpaceOutput$ = [3, n0, _UASO,
1426
1642
  [_aS],
1427
1643
  [[() => AgentSpace$, 0]], 1
1428
1644
  ];
1645
+ export var UpdateAssetFileRequest$ = [3, n0, _UAFR,
1646
+ 0,
1647
+ [_aSI, _aI, _p, _co, _me, _cT],
1648
+ [[0, 1], [0, 1], [0, 1], () => AssetFileBody$, 15, [0, 4]], 3
1649
+ ];
1650
+ export var UpdateAssetFileResponse$ = [3, n0, _UAFRp,
1651
+ 0,
1652
+ [_f],
1653
+ [() => AssetFile$], 1
1654
+ ];
1655
+ export var UpdateAssetRequest$ = [3, n0, _UAR,
1656
+ 0,
1657
+ [_aSI, _aI, _me, _co, _cT],
1658
+ [[0, 1], [0, 1], 15, () => AssetContent$, [0, 4]], 2
1659
+ ];
1660
+ export var UpdateAssetResponse$ = [3, n0, _UARp,
1661
+ 0,
1662
+ [_as],
1663
+ [() => Asset$], 1
1664
+ ];
1429
1665
  export var UpdateAssociationInput$ = [3, n0, _UAI,
1430
1666
  0,
1431
- [_aSI, _aI, _co],
1667
+ [_aSI, _aIs, _con],
1432
1668
  [[0, 1], [0, 1], [() => ServiceConfiguration$, 0]], 3
1433
1669
  ];
1434
1670
  export var UpdateAssociationOutput$ = [3, n0, _UAO,
@@ -1473,8 +1709,8 @@ export var UpdatePrivateConnectionCertificateInput$ = [3, n0, _UPCCI,
1473
1709
  ];
1474
1710
  export var UpdatePrivateConnectionCertificateOutput$ = [3, n0, _UPCCO,
1475
1711
  0,
1476
- [_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET],
1477
- [0, 0, 0, 0, 0, 0, 0, 5], 3
1712
+ [_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _dR, _fM],
1713
+ [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], 3
1478
1714
  ];
1479
1715
  export var UpdateRecommendationRequest$ = [3, n0, _URRp,
1480
1716
  0,
@@ -1508,7 +1744,7 @@ export var ValidateAwsAssociationsOutput$ = [3, n0, _VAAO,
1508
1744
  ];
1509
1745
  export var ValidationExceptionField$ = [3, n0, _VEF,
1510
1746
  0,
1511
- [_pa, _m],
1747
+ [_p, _m],
1512
1748
  [0, 0], 2
1513
1749
  ];
1514
1750
  export var Webhook$ = [3, n0, _W,
@@ -1521,10 +1757,23 @@ var AgentSpaceList = [1, n0, _ASL,
1521
1757
  0, [() => AgentSpace$,
1522
1758
  0]
1523
1759
  ];
1760
+ var AssetFileSummaryList = [1, n0, _AFSL,
1761
+ 0, () => AssetFileSummary$
1762
+ ];
1763
+ var AssetIdList = 64 | 0;
1764
+ var AssetList = [1, n0, _AL,
1765
+ 0, () => Asset$
1766
+ ];
1767
+ var AssetTypeList = [1, n0, _ATL,
1768
+ 0, () => AssetTypeSummary$
1769
+ ];
1770
+ var AssetVersionMetadataList = [1, n0, _AVML,
1771
+ 0, () => AssetVersionMetadata$
1772
+ ];
1524
1773
  var AssistantMessage = [1, n0, _AM,
1525
1774
  0, () => AssistantMessageBlock$
1526
1775
  ];
1527
- var AssociationsList = [1, n0, _AL,
1776
+ var AssociationsList = [1, n0, _ALs,
1528
1777
  0, [() => Association$,
1529
1778
  0]
1530
1779
  ];
@@ -1599,7 +1848,7 @@ var ExchangeParameters = [2, n0, _EP,
1599
1848
  var Tags = 128 | 0;
1600
1849
  export var AdditionalServiceDetails$ = [4, n0, _ASD,
1601
1850
  0,
1602
- [_gi, _sl, _mc, _mcp, _servi, _git, _mcps, _mcpse, _az, _azu, _mcpser, _pag, _mcpserv],
1851
+ [_gi, _sl, _mc, _mcp, _servi, _git, _mcps, _mcpse, _az, _azu, _mcpser, _pa, _mcpserv],
1603
1852
  [() => RegisteredGithubServiceDetails$, () => RegisteredSlackServiceDetails$, [() => RegisteredMCPServerDetails$, 0], [() => RegisteredMCPServerDetails$, 0], () => RegisteredServiceNowDetails$, () => RegisteredGitLabServiceDetails$, [() => RegisteredMCPServerDetails$, 0], [() => RegisteredNewRelicDetails$, 0], () => RegisteredAzureDevOpsServiceDetails$, () => RegisteredAzureIdentityDetails$, () => RegisteredGrafanaServerDetails$, () => RegisteredPagerDutyDetails$, [() => RegisteredMCPServerSigV4Details$, 0]]
1604
1853
  ];
1605
1854
  export var AdditionalServiceRegistrationStep$ = [4, n0, _ASRS,
@@ -1607,6 +1856,16 @@ export var AdditionalServiceRegistrationStep$ = [4, n0, _ASRS,
1607
1856
  [_oa],
1608
1857
  [() => OAuthAdditionalStepDetails$]
1609
1858
  ];
1859
+ export var AssetContent$ = [4, n0, _ACs,
1860
+ 0,
1861
+ [_f, _z],
1862
+ [() => AssetFileContent$, () => AssetZipContent$]
1863
+ ];
1864
+ export var AssetFileBody$ = [4, n0, _AFB,
1865
+ 0,
1866
+ [_by, _te],
1867
+ [21, 0]
1868
+ ];
1610
1869
  export var AssistantMessageBlock$ = [4, n0, _AMB,
1611
1870
  0,
1612
1871
  [_te, _tUo],
@@ -1659,12 +1918,12 @@ export var SendMessageEvents$ = [4, n0, _SME,
1659
1918
  ];
1660
1919
  export var ServiceConfiguration$ = [4, n0, _SCe,
1661
1920
  0,
1662
- [_sA, _aw, _gi, _sl, _dy, _servi, _mcpse, _mc, _mcp, _git, _mcps, _eCv, _azur, _az, _mcpser, _pag, _mcpserv],
1921
+ [_sA, _aw, _gi, _sl, _dy, _servi, _mcpse, _mc, _mcp, _git, _mcps, _eCv, _azur, _az, _mcpser, _pa, _mcpserv],
1663
1922
  [() => SourceAwsConfiguration$, () => AWSConfiguration$, () => GitHubConfiguration$, () => SlackConfiguration$, () => DynatraceConfiguration$, () => ServiceNowConfiguration$, () => MCPServerNewRelicConfiguration$, () => MCPServerDatadogConfiguration$, () => MCPServerConfiguration$, () => GitLabConfiguration$, () => MCPServerSplunkConfiguration$, () => EventChannelConfiguration$, () => AzureConfiguration$, () => AzureDevOpsConfiguration$, () => MCPServerGrafanaConfiguration$, [() => PagerDutyConfiguration$, 0], () => MCPServerSigV4Configuration$]
1664
1923
  ];
1665
1924
  export var ServiceDetails$ = [4, n0, _SD,
1666
1925
  0,
1667
- [_dy, _servi, _mc, _mcp, _git, _mcps, _mcpse, _eCv, _mcpser, _pag, _azu, _mcpserv],
1926
+ [_dy, _servi, _mc, _mcp, _git, _mcps, _mcpse, _eCv, _mcpser, _pa, _azu, _mcpserv],
1668
1927
  [[() => DynatraceServiceDetails$, 0], [() => ServiceNowServiceDetails$, 0], [() => DatadogServiceDetails$, 0], [() => MCPServerDetails$, 0], [() => GitLabDetails$, 0], [() => MCPServerDetails$, 0], [() => NewRelicServiceDetails$, 0], () => EventChannelDetails$, [() => GrafanaServiceDetails$, 0], [() => PagerDutyDetails$, 0], () => RegisteredAzureIdentityDetails$, [() => MCPServerSigV4ServiceDetails$, 0]]
1669
1928
  ];
1670
1929
  export var ServiceNowServiceAuthorizationConfig$ = [4, n0, _SNSAC,
@@ -1683,6 +1942,12 @@ export var AssociateService$ = [9, n0, _ASs,
1683
1942
  export var CreateAgentSpace$ = [9, n0, _CAS,
1684
1943
  { [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces", 201] }, () => CreateAgentSpaceInput$, () => CreateAgentSpaceOutput$
1685
1944
  ];
1945
+ export var CreateAsset$ = [9, n0, _CA,
1946
+ { [_en]: ["dp."], [_ht]: ["POST", "/asset/agent-space/{agentSpaceId}/assets", 201] }, () => CreateAssetRequest$, () => CreateAssetResponse$
1947
+ ];
1948
+ export var CreateAssetFile$ = [9, n0, _CAF,
1949
+ { [_en]: ["dp."], [_ht]: ["POST", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/files/{path+}", 201] }, () => CreateAssetFileRequest$, () => CreateAssetFileResponse$
1950
+ ];
1686
1951
  export var CreateBacklogTask$ = [9, n0, _CBT,
1687
1952
  { [_en]: ["dp."], [_ht]: ["POST", "/backlog/agent-space/{agentSpaceId}/tasks", 201] }, () => CreateBacklogTaskRequest$, () => CreateBacklogTaskResponse$
1688
1953
  ];
@@ -1695,6 +1960,12 @@ export var CreatePrivateConnection$ = [9, n0, _CPC,
1695
1960
  export var DeleteAgentSpace$ = [9, n0, _DAS,
1696
1961
  { [_en]: ["cp."], [_ht]: ["DELETE", "/v1/agentspaces/{agentSpaceId}", 204] }, () => DeleteAgentSpaceInput$, () => DeleteAgentSpaceOutput$
1697
1962
  ];
1963
+ export var DeleteAsset$ = [9, n0, _DA,
1964
+ { [_en]: ["dp."], [_ht]: ["DELETE", "/asset/agent-space/{agentSpaceId}/assets/{assetId}", 200] }, () => DeleteAssetRequest$, () => DeleteAssetResponse$
1965
+ ];
1966
+ export var DeleteAssetFile$ = [9, n0, _DAF,
1967
+ { [_en]: ["dp."], [_ht]: ["DELETE", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/files/{path+}", 200] }, () => DeleteAssetFileRequest$, () => DeleteAssetFileResponse$
1968
+ ];
1698
1969
  export var DeletePrivateConnection$ = [9, n0, _DPC,
1699
1970
  { [_en]: ["cp."], [_ht]: ["DELETE", "/v1/private-connections/{name}", 200] }, () => DeletePrivateConnectionInput$, () => DeletePrivateConnectionOutput$
1700
1971
  ];
@@ -1719,7 +1990,16 @@ export var GetAccountUsage$ = [9, n0, _GAU,
1719
1990
  export var GetAgentSpace$ = [9, n0, _GAS,
1720
1991
  { [_en]: ["cp."], [_ht]: ["GET", "/v1/agentspaces/{agentSpaceId}", 200] }, () => GetAgentSpaceInput$, () => GetAgentSpaceOutput$
1721
1992
  ];
1722
- export var GetAssociation$ = [9, n0, _GA,
1993
+ export var GetAsset$ = [9, n0, _GA,
1994
+ { [_en]: ["dp."], [_ht]: ["GET", "/asset/agent-space/{agentSpaceId}/assets/{assetId}", 200] }, () => GetAssetRequest$, () => GetAssetResponse$
1995
+ ];
1996
+ export var GetAssetContent$ = [9, n0, _GAC,
1997
+ { [_en]: ["dp."], [_ht]: ["GET", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/content", 200] }, () => GetAssetContentRequest$, () => GetAssetContentResponse$
1998
+ ];
1999
+ export var GetAssetFile$ = [9, n0, _GAF,
2000
+ { [_en]: ["dp."], [_ht]: ["GET", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/files/{path+}", 200] }, () => GetAssetFileRequest$, () => GetAssetFileResponse$
2001
+ ];
2002
+ export var GetAssociation$ = [9, n0, _GAe,
1723
2003
  { [_en]: ["cp."], [_ht]: ["GET", "/v1/agentspaces/{agentSpaceId}/associations/{associationId}", 200] }, () => GetAssociationInput$, () => GetAssociationOutput$
1724
2004
  ];
1725
2005
  export var GetBacklogTask$ = [9, n0, _GBT,
@@ -1737,7 +2017,19 @@ export var GetService$ = [9, n0, _GSe,
1737
2017
  export var ListAgentSpaces$ = [9, n0, _LAS,
1738
2018
  { [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/list", 200] }, () => ListAgentSpacesInput$, () => ListAgentSpacesOutput$
1739
2019
  ];
1740
- export var ListAssociations$ = [9, n0, _LA,
2020
+ export var ListAssetFiles$ = [9, n0, _LAF,
2021
+ { [_en]: ["dp."], [_ht]: ["GET", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/files", 200] }, () => ListAssetFilesRequest$, () => ListAssetFilesResponse$
2022
+ ];
2023
+ export var ListAssets$ = [9, n0, _LA,
2024
+ { [_en]: ["dp."], [_ht]: ["GET", "/asset/agent-space/{agentSpaceId}/assets", 200] }, () => ListAssetsRequest$, () => ListAssetsResponse$
2025
+ ];
2026
+ export var ListAssetTypes$ = [9, n0, _LAT,
2027
+ { [_en]: ["dp."], [_ht]: ["GET", "/asset/types", 200] }, () => ListAssetTypesRequest$, () => ListAssetTypesResponse$
2028
+ ];
2029
+ export var ListAssetVersions$ = [9, n0, _LAV,
2030
+ { [_en]: ["dp."], [_ht]: ["GET", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/versions", 200] }, () => ListAssetVersionsRequest$, () => ListAssetVersionsResponse$
2031
+ ];
2032
+ export var ListAssociations$ = [9, n0, _LAi,
1741
2033
  { [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/{agentSpaceId}/associations/list", 200] }, () => ListAssociationsInput$, () => ListAssociationsOutput$
1742
2034
  ];
1743
2035
  export var ListBacklogTasks$ = [9, n0, _LBT,
@@ -1788,7 +2080,13 @@ export var UntagResource$ = [9, n0, _URn,
1788
2080
  export var UpdateAgentSpace$ = [9, n0, _UAS,
1789
2081
  { [_en]: ["cp."], [_ht]: ["PATCH", "/v1/agentspaces/{agentSpaceId}", 200] }, () => UpdateAgentSpaceInput$, () => UpdateAgentSpaceOutput$
1790
2082
  ];
1791
- export var UpdateAssociation$ = [9, n0, _UA,
2083
+ export var UpdateAsset$ = [9, n0, _UA,
2084
+ { [_en]: ["dp."], [_ht]: ["PATCH", "/asset/agent-space/{agentSpaceId}/assets/{assetId}", 200] }, () => UpdateAssetRequest$, () => UpdateAssetResponse$
2085
+ ];
2086
+ export var UpdateAssetFile$ = [9, n0, _UAF,
2087
+ { [_en]: ["dp."], [_ht]: ["PATCH", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/files/{path+}", 200] }, () => UpdateAssetFileRequest$, () => UpdateAssetFileResponse$
2088
+ ];
2089
+ export var UpdateAssociation$ = [9, n0, _UAp,
1792
2090
  { [_en]: ["cp."], [_ht]: ["PATCH", "/v1/agentspaces/{agentSpaceId}/associations/{associationId}", 200] }, () => UpdateAssociationInput$, () => UpdateAssociationOutput$
1793
2091
  ];
1794
2092
  export var UpdateBacklogTask$ = [9, n0, _UBT,