@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.
- package/README.md +92 -1
- package/dist-cjs/index.js +204 -0
- package/dist-cjs/schemas/schemas_0.js +375 -77
- package/dist-es/DevOpsAgent.js +34 -0
- package/dist-es/commands/CreateAssetCommand.js +16 -0
- package/dist-es/commands/CreateAssetFileCommand.js +16 -0
- package/dist-es/commands/DeleteAssetCommand.js +16 -0
- package/dist-es/commands/DeleteAssetFileCommand.js +16 -0
- package/dist-es/commands/GetAssetCommand.js +16 -0
- package/dist-es/commands/GetAssetContentCommand.js +16 -0
- package/dist-es/commands/GetAssetFileCommand.js +16 -0
- package/dist-es/commands/ListAssetFilesCommand.js +16 -0
- package/dist-es/commands/ListAssetTypesCommand.js +16 -0
- package/dist-es/commands/ListAssetVersionsCommand.js +16 -0
- package/dist-es/commands/ListAssetsCommand.js +16 -0
- package/dist-es/commands/UpdateAssetCommand.js +16 -0
- package/dist-es/commands/UpdateAssetFileCommand.js +16 -0
- package/dist-es/commands/index.js +13 -0
- package/dist-es/models/enums.js +5 -0
- package/dist-es/pagination/ListAssetFilesPaginator.js +4 -0
- package/dist-es/pagination/ListAssetTypesPaginator.js +4 -0
- package/dist-es/pagination/ListAssetVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListAssetsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/schemas/schemas_0.js +369 -71
- package/dist-types/DevOpsAgent.d.ts +121 -1
- package/dist-types/DevOpsAgentClient.d.ts +16 -3
- package/dist-types/commands/CreateAssetCommand.d.ts +126 -0
- package/dist-types/commands/CreateAssetFileCommand.d.ts +121 -0
- package/dist-types/commands/CreateBacklogTaskCommand.d.ts +1 -1
- package/dist-types/commands/CreatePrivateConnectionCommand.d.ts +3 -0
- package/dist-types/commands/DeleteAssetCommand.d.ts +102 -0
- package/dist-types/commands/DeleteAssetFileCommand.d.ts +103 -0
- package/dist-types/commands/DescribePrivateConnectionCommand.d.ts +2 -0
- package/dist-types/commands/EnableOperatorAppCommand.d.ts +1 -0
- package/dist-types/commands/GetAssetCommand.d.ts +112 -0
- package/dist-types/commands/GetAssetContentCommand.d.ts +108 -0
- package/dist-types/commands/GetAssetFileCommand.d.ts +116 -0
- package/dist-types/commands/GetBacklogTaskCommand.d.ts +1 -1
- package/dist-types/commands/GetOperatorAppCommand.d.ts +1 -0
- package/dist-types/commands/GetServiceCommand.d.ts +1 -0
- package/dist-types/commands/ListAssetFilesCommand.d.ts +116 -0
- package/dist-types/commands/ListAssetTypesCommand.d.ts +110 -0
- package/dist-types/commands/ListAssetVersionsCommand.d.ts +113 -0
- package/dist-types/commands/ListAssetsCommand.d.ts +118 -0
- package/dist-types/commands/ListBacklogTasksCommand.d.ts +2 -2
- package/dist-types/commands/ListPrivateConnectionsCommand.d.ts +2 -0
- package/dist-types/commands/ListServicesCommand.d.ts +1 -0
- package/dist-types/commands/RegisterServiceCommand.d.ts +4 -1
- package/dist-types/commands/SendMessageCommand.d.ts +3 -0
- package/dist-types/commands/UpdateAssetCommand.d.ts +126 -0
- package/dist-types/commands/UpdateAssetFileCommand.d.ts +121 -0
- package/dist-types/commands/UpdateBacklogTaskCommand.d.ts +2 -2
- package/dist-types/commands/UpdatePrivateConnectionCertificateCommand.d.ts +2 -0
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/enums.d.ts +22 -0
- package/dist-types/models/models_0.d.ts +879 -27
- package/dist-types/pagination/ListAssetFilesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAssetTypesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAssetVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAssetsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/schemas/schemas_0.d.ts +48 -0
- package/dist-types/ts3.4/DevOpsAgent.d.ts +250 -0
- package/dist-types/ts3.4/DevOpsAgentClient.d.ts +78 -0
- package/dist-types/ts3.4/commands/CreateAssetCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/CreateAssetFileCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/DeleteAssetCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DeleteAssetFileCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/GetAssetCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/GetAssetContentCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/GetAssetFileCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/ListAssetFilesCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListAssetTypesCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListAssetVersionsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListAssetsCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UpdateAssetCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UpdateAssetFileCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/models/enums.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +230 -1
- package/dist-types/ts3.4/pagination/ListAssetFilesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAssetTypesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAssetVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAssetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +48 -0
- package/package.json +5 -5
|
@@ -1,17 +1,24 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.ValidateAwsAssociations$ = void 0;
|
|
9
|
-
const _A = "
|
|
3
|
+
exports.DeregisterServiceOutput$ = exports.DeregisterServiceInput$ = exports.DeletePrivateConnectionOutput$ = exports.DeletePrivateConnectionInput$ = exports.DeleteAssetResponse$ = exports.DeleteAssetRequest$ = exports.DeleteAssetFileResponse$ = exports.DeleteAssetFileRequest$ = exports.DeleteAgentSpaceOutput$ = exports.DeleteAgentSpaceInput$ = exports.DatadogServiceDetails$ = exports.CreatePrivateConnectionOutput$ = exports.CreatePrivateConnectionInput$ = exports.CreateChatResponse$ = exports.CreateChatRequest$ = exports.CreateBacklogTaskResponse$ = exports.CreateBacklogTaskRequest$ = exports.CreateAssetResponse$ = exports.CreateAssetRequest$ = exports.CreateAssetFileResponse$ = exports.CreateAssetFileRequest$ = exports.CreateAgentSpaceOutput$ = exports.CreateAgentSpaceInput$ = exports.ChatExecution$ = exports.AzureDevOpsConfiguration$ = exports.AzureConfiguration$ = exports.AWSConfiguration$ = exports.Association$ = exports.AssociateServiceOutput$ = exports.AssociateServiceInput$ = exports.AssetZipContent$ = exports.AssetVersionMetadata$ = exports.AssetTypeSummary$ = exports.AssetFileSummary$ = exports.AssetFileContent$ = exports.AssetFile$ = exports.Asset$ = exports.AgentSpace$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.ThrottlingException$ = exports.ServiceQuotaExceededException$ = exports.ResourceNotFoundException$ = exports.InvalidParameterException$ = exports.InternalServerException$ = exports.IdentityCenterServiceException$ = exports.ContentSizeExceededException$ = exports.ConflictException$ = exports.AccessDeniedException$ = exports.DevOpsAgentServiceException$ = void 0;
|
|
4
|
+
exports.ListAssetFilesResponse$ = exports.ListAssetFilesRequest$ = exports.ListAgentSpacesOutput$ = exports.ListAgentSpacesInput$ = exports.JournalRecord$ = exports.IdpAuthConfiguration$ = exports.IdcAuthConfiguration$ = exports.IamAuthConfiguration$ = exports.GrafanaServiceDetails$ = exports.GoalScheduleInput$ = exports.GoalSchedule$ = exports.GoalContent$ = exports.Goal$ = exports.GitLabDetails$ = exports.GitLabConfiguration$ = exports.GitHubConfiguration$ = exports.GetServiceOutput$ = exports.GetServiceInput$ = exports.GetRecommendationResponse$ = exports.GetRecommendationRequest$ = exports.GetOperatorAppOutput$ = exports.GetOperatorAppInput$ = exports.GetBacklogTaskResponse$ = exports.GetBacklogTaskRequest$ = exports.GetAssociationOutput$ = exports.GetAssociationInput$ = exports.GetAssetResponse$ = exports.GetAssetRequest$ = exports.GetAssetFileResponse$ = exports.GetAssetFileRequest$ = exports.GetAssetContentResponse$ = exports.GetAssetContentRequest$ = exports.GetAgentSpaceOutput$ = exports.GetAgentSpaceInput$ = exports.GetAccountUsageOutput$ = exports.GetAccountUsageInput$ = exports.GenericWebhook$ = exports.Execution$ = exports.EventChannelDetails$ = exports.EventChannelConfiguration$ = exports.EnableOperatorAppOutput$ = exports.EnableOperatorAppInput$ = exports.DynatraceServiceDetails$ = exports.DynatraceOAuthClientCredentialsConfig$ = exports.DynatraceConfiguration$ = exports.DisassociateServiceOutput$ = exports.DisassociateServiceInput$ = exports.DisableOperatorAppInput$ = exports.DescribePrivateConnectionOutput$ = exports.DescribePrivateConnectionInput$ = void 0;
|
|
5
|
+
exports.PagerDutyOAuthClientCredentialsConfig$ = exports.PagerDutyDetails$ = exports.PagerDutyConfiguration$ = exports.OAuthAdditionalStepDetails$ = exports.NewRelicServiceDetails$ = exports.NewRelicApiKeyConfig$ = exports.MCPServerSplunkConfiguration$ = exports.MCPServerSigV4ServiceDetails$ = exports.MCPServerSigV4Configuration$ = exports.MCPServerSigV4AuthorizationConfig$ = exports.MCPServerOAuthClientCredentialsConfig$ = exports.MCPServerOAuth3LOConfig$ = exports.MCPServerNewRelicConfiguration$ = exports.MCPServerGrafanaConfiguration$ = exports.MCPServerDetails$ = exports.MCPServerDatadogConfiguration$ = exports.MCPServerConfiguration$ = exports.MCPServerBearerTokenConfig$ = exports.MCPServerAuthorizationDiscoveryConfig$ = exports.MCPServerAPIKeyConfig$ = exports.ListWebhooksOutput$ = exports.ListWebhooksInput$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListServicesOutput$ = exports.ListServicesInput$ = exports.ListRecommendationsResponse$ = exports.ListRecommendationsRequest$ = exports.ListPrivateConnectionsOutput$ = exports.ListPrivateConnectionsInput$ = exports.ListPendingMessagesResponse$ = exports.ListPendingMessagesRequest$ = exports.ListJournalRecordsResponse$ = exports.ListJournalRecordsRequest$ = exports.ListGoalsResponse$ = exports.ListGoalsRequest$ = exports.ListExecutionsResponse$ = exports.ListExecutionsRequest$ = exports.ListChatsResponse$ = exports.ListChatsRequest$ = exports.ListBacklogTasksResponse$ = exports.ListBacklogTasksRequest$ = exports.ListAssociationsOutput$ = exports.ListAssociationsInput$ = exports.ListAssetVersionsResponse$ = exports.ListAssetVersionsRequest$ = exports.ListAssetTypesResponse$ = exports.ListAssetTypesRequest$ = exports.ListAssetsResponse$ = exports.ListAssetsRequest$ = void 0;
|
|
6
|
+
exports.UntagResourceResponse$ = exports.UntagResourceRequest$ = exports.TaskFilter$ = exports.Task$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.SourceAwsConfiguration$ = exports.SlackTransmissionTarget$ = exports.SlackConfiguration$ = exports.SlackChannel$ = exports.ServiceNowServiceDetails$ = exports.ServiceNowOAuthClientCredentialsConfig$ = exports.ServiceNowConfiguration$ = exports.ServiceManagedInput$ = exports.SendMessageUsageInfo$ = exports.SendMessageTextDelta$ = exports.SendMessageSummaryEvent$ = exports.SendMessageResponseInProgressEvent$ = exports.SendMessageResponseFailedEvent$ = exports.SendMessageResponseCreatedEvent$ = exports.SendMessageResponseCompletedEvent$ = exports.SendMessageResponse$ = exports.SendMessageRequest$ = exports.SendMessageJsonDelta$ = exports.SendMessageHeartbeatEvent$ = exports.SendMessageContext$ = exports.SendMessageContentBlockStopEvent$ = exports.SendMessageContentBlockStartEvent$ = exports.SendMessageContentBlockDeltaEvent$ = exports.SelfManagedInput$ = exports.RegisterServiceOutput$ = exports.RegisterServiceInput$ = exports.RegisteredSlackServiceDetails$ = exports.RegisteredServiceNowDetails$ = exports.RegisteredService$ = exports.RegisteredPagerDutyDetails$ = exports.RegisteredNewRelicDetails$ = exports.RegisteredMCPServerSigV4Details$ = exports.RegisteredMCPServerDetails$ = exports.RegisteredGrafanaServerDetails$ = exports.RegisteredGitLabServiceDetails$ = exports.RegisteredGithubServiceDetails$ = exports.RegisteredAzureIdentityDetails$ = exports.RegisteredAzureDevOpsServiceDetails$ = exports.ReferenceOutput$ = exports.ReferenceInput$ = exports.RecommendationContent$ = exports.Recommendation$ = exports.PrivateConnectionSummary$ = exports.PendingMessage$ = void 0;
|
|
7
|
+
exports.DeleteAgentSpace$ = exports.CreatePrivateConnection$ = exports.CreateChat$ = exports.CreateBacklogTask$ = exports.CreateAssetFile$ = exports.CreateAsset$ = exports.CreateAgentSpace$ = exports.AssociateService$ = exports.UserMessageBlock$ = exports.ServiceNowServiceAuthorizationConfig$ = exports.ServiceDetails$ = exports.ServiceConfiguration$ = exports.SendMessageEvents$ = exports.SendMessageContentBlockDelta$ = exports.PrivateConnectionMode$ = exports.PagerDutyAuthorizationConfig$ = exports.NewRelicServiceAuthorizationConfig$ = exports.Message$ = exports.MCPServerAuthorizationConfig$ = exports.DynatraceServiceAuthorizationConfig$ = exports.DatadogAuthorizationConfig$ = exports.AssistantMessageBlock$ = exports.AssetFileBody$ = exports.AssetContent$ = exports.AdditionalServiceRegistrationStep$ = exports.AdditionalServiceDetails$ = exports.Webhook$ = exports.ValidationExceptionField$ = exports.ValidateAwsAssociationsOutput$ = exports.ValidateAwsAssociationsInput$ = exports.UserReference$ = exports.UsageMetric$ = exports.UpdateRecommendationResponse$ = exports.UpdateRecommendationRequest$ = exports.UpdatePrivateConnectionCertificateOutput$ = exports.UpdatePrivateConnectionCertificateInput$ = exports.UpdateOperatorAppIdpConfigOutput$ = exports.UpdateOperatorAppIdpConfigInput$ = exports.UpdateGoalResponse$ = exports.UpdateGoalRequest$ = exports.UpdateBacklogTaskResponse$ = exports.UpdateBacklogTaskRequest$ = exports.UpdateAssociationOutput$ = exports.UpdateAssociationInput$ = exports.UpdateAssetResponse$ = exports.UpdateAssetRequest$ = exports.UpdateAssetFileResponse$ = exports.UpdateAssetFileRequest$ = exports.UpdateAgentSpaceOutput$ = exports.UpdateAgentSpaceInput$ = void 0;
|
|
8
|
+
exports.ValidateAwsAssociations$ = exports.UpdateRecommendation$ = exports.UpdatePrivateConnectionCertificate$ = exports.UpdateOperatorAppIdpConfig$ = exports.UpdateGoal$ = exports.UpdateBacklogTask$ = exports.UpdateAssociation$ = exports.UpdateAssetFile$ = exports.UpdateAsset$ = exports.UpdateAgentSpace$ = exports.UntagResource$ = exports.TagResource$ = exports.SendMessage$ = exports.RegisterService$ = exports.ListWebhooks$ = exports.ListTagsForResource$ = exports.ListServices$ = exports.ListRecommendations$ = exports.ListPrivateConnections$ = exports.ListPendingMessages$ = exports.ListJournalRecords$ = exports.ListGoals$ = exports.ListExecutions$ = exports.ListChats$ = exports.ListBacklogTasks$ = exports.ListAssociations$ = exports.ListAssetVersions$ = exports.ListAssetTypes$ = exports.ListAssets$ = exports.ListAssetFiles$ = exports.ListAgentSpaces$ = exports.GetService$ = exports.GetRecommendation$ = exports.GetOperatorApp$ = exports.GetBacklogTask$ = exports.GetAssociation$ = exports.GetAssetFile$ = exports.GetAssetContent$ = exports.GetAsset$ = exports.GetAgentSpace$ = exports.GetAccountUsage$ = exports.EnableOperatorApp$ = exports.DisassociateService$ = exports.DisableOperatorApp$ = exports.DescribePrivateConnection$ = exports.DeregisterService$ = exports.DeletePrivateConnection$ = exports.DeleteAssetFile$ = exports.DeleteAsset$ = void 0;
|
|
9
|
+
const _A = "Asset";
|
|
10
10
|
const _AC = "AzureConfiguration";
|
|
11
|
+
const _ACs = "AssetContent";
|
|
11
12
|
const _ADE = "AccessDeniedException";
|
|
12
13
|
const _ADOC = "AzureDevOpsConfiguration";
|
|
14
|
+
const _AF = "AssetFile";
|
|
15
|
+
const _AFB = "AssetFileBody";
|
|
16
|
+
const _AFC = "AssetFileContent";
|
|
17
|
+
const _AFS = "AssetFileSummary";
|
|
18
|
+
const _AFSL = "AssetFileSummaryList";
|
|
13
19
|
const _AKV = "ApiKeyValue";
|
|
14
|
-
const _AL = "
|
|
20
|
+
const _AL = "AssetList";
|
|
21
|
+
const _ALs = "AssociationsList";
|
|
15
22
|
const _AM = "AssistantMessage";
|
|
16
23
|
const _AMB = "AssistantMessageBlock";
|
|
17
24
|
const _AS = "AgentSpace";
|
|
@@ -21,7 +28,19 @@ const _ASL = "AgentSpaceList";
|
|
|
21
28
|
const _ASO = "AssociateServiceOutput";
|
|
22
29
|
const _ASRS = "AdditionalServiceRegistrationStep";
|
|
23
30
|
const _ASs = "AssociateService";
|
|
31
|
+
const _ATL = "AssetTypeList";
|
|
32
|
+
const _ATS = "AssetTypeSummary";
|
|
33
|
+
const _AVM = "AssetVersionMetadata";
|
|
34
|
+
const _AVML = "AssetVersionMetadataList";
|
|
24
35
|
const _AWSC = "AWSConfiguration";
|
|
36
|
+
const _AZC = "AssetZipContent";
|
|
37
|
+
const _As = "Association";
|
|
38
|
+
const _CA = "CreateAsset";
|
|
39
|
+
const _CAF = "CreateAssetFile";
|
|
40
|
+
const _CAFR = "CreateAssetFileRequest";
|
|
41
|
+
const _CAFRr = "CreateAssetFileResponse";
|
|
42
|
+
const _CAR = "CreateAssetRequest";
|
|
43
|
+
const _CARr = "CreateAssetResponse";
|
|
25
44
|
const _CAS = "CreateAgentSpace";
|
|
26
45
|
const _CASI = "CreateAgentSpaceInput";
|
|
27
46
|
const _CASO = "CreateAgentSpaceOutput";
|
|
@@ -43,7 +62,13 @@ const _CPCO = "CreatePrivateConnectionOutput";
|
|
|
43
62
|
const _CS = "ClientSecret";
|
|
44
63
|
const _CSEE = "ContentSizeExceededException";
|
|
45
64
|
const _D = "Description";
|
|
65
|
+
const _DA = "DeleteAsset";
|
|
46
66
|
const _DAC = "DatadogAuthorizationConfig";
|
|
67
|
+
const _DAF = "DeleteAssetFile";
|
|
68
|
+
const _DAFR = "DeleteAssetFileRequest";
|
|
69
|
+
const _DAFRe = "DeleteAssetFileResponse";
|
|
70
|
+
const _DAR = "DeleteAssetRequest";
|
|
71
|
+
const _DARe = "DeleteAssetResponse";
|
|
47
72
|
const _DAS = "DeleteAgentSpace";
|
|
48
73
|
const _DASI = "DeleteAgentSpaceInput";
|
|
49
74
|
const _DASO = "DeleteAgentSpaceOutput";
|
|
@@ -77,15 +102,24 @@ const _EOAO = "EnableOperatorAppOutput";
|
|
|
77
102
|
const _EP = "ExchangeParameters";
|
|
78
103
|
const _EPV = "ExchangeParameterValue";
|
|
79
104
|
const _G = "Goal";
|
|
80
|
-
const _GA = "
|
|
105
|
+
const _GA = "GetAsset";
|
|
106
|
+
const _GAC = "GetAssetContent";
|
|
107
|
+
const _GACR = "GetAssetContentRequest";
|
|
108
|
+
const _GACRe = "GetAssetContentResponse";
|
|
109
|
+
const _GAF = "GetAssetFile";
|
|
110
|
+
const _GAFR = "GetAssetFileRequest";
|
|
111
|
+
const _GAFRe = "GetAssetFileResponse";
|
|
81
112
|
const _GAI = "GetAssociationInput";
|
|
82
113
|
const _GAO = "GetAssociationOutput";
|
|
114
|
+
const _GAR = "GetAssetRequest";
|
|
115
|
+
const _GARe = "GetAssetResponse";
|
|
83
116
|
const _GAS = "GetAgentSpace";
|
|
84
117
|
const _GASI = "GetAgentSpaceInput";
|
|
85
118
|
const _GASO = "GetAgentSpaceOutput";
|
|
86
119
|
const _GAU = "GetAccountUsage";
|
|
87
120
|
const _GAUI = "GetAccountUsageInput";
|
|
88
121
|
const _GAUO = "GetAccountUsageOutput";
|
|
122
|
+
const _GAe = "GetAssociation";
|
|
89
123
|
const _GBT = "GetBacklogTask";
|
|
90
124
|
const _GBTR = "GetBacklogTaskRequest";
|
|
91
125
|
const _GBTRe = "GetBacklogTaskResponse";
|
|
@@ -116,12 +150,24 @@ const _IPE = "InvalidParameterException";
|
|
|
116
150
|
const _ISE = "InternalServerException";
|
|
117
151
|
const _JR = "JournalRecord";
|
|
118
152
|
const _JRL = "JournalRecordList";
|
|
119
|
-
const _LA = "
|
|
153
|
+
const _LA = "ListAssets";
|
|
154
|
+
const _LAF = "ListAssetFiles";
|
|
155
|
+
const _LAFR = "ListAssetFilesRequest";
|
|
156
|
+
const _LAFRi = "ListAssetFilesResponse";
|
|
120
157
|
const _LAI = "ListAssociationsInput";
|
|
121
158
|
const _LAO = "ListAssociationsOutput";
|
|
159
|
+
const _LAR = "ListAssetsRequest";
|
|
160
|
+
const _LARi = "ListAssetsResponse";
|
|
122
161
|
const _LAS = "ListAgentSpaces";
|
|
123
162
|
const _LASI = "ListAgentSpacesInput";
|
|
124
163
|
const _LASO = "ListAgentSpacesOutput";
|
|
164
|
+
const _LAT = "ListAssetTypes";
|
|
165
|
+
const _LATR = "ListAssetTypesRequest";
|
|
166
|
+
const _LATRi = "ListAssetTypesResponse";
|
|
167
|
+
const _LAV = "ListAssetVersions";
|
|
168
|
+
const _LAVR = "ListAssetVersionsRequest";
|
|
169
|
+
const _LAVRi = "ListAssetVersionsResponse";
|
|
170
|
+
const _LAi = "ListAssociations";
|
|
125
171
|
const _LBT = "ListBacklogTasks";
|
|
126
172
|
const _LBTR = "ListBacklogTasksRequest";
|
|
127
173
|
const _LBTRi = "ListBacklogTasksResponse";
|
|
@@ -245,12 +291,18 @@ const _TR = "TagResource";
|
|
|
245
291
|
const _TRR = "TagResourceRequest";
|
|
246
292
|
const _TRRa = "TagResourceResponse";
|
|
247
293
|
const _TV = "TokenValue";
|
|
248
|
-
const _UA = "
|
|
294
|
+
const _UA = "UpdateAsset";
|
|
295
|
+
const _UAF = "UpdateAssetFile";
|
|
296
|
+
const _UAFR = "UpdateAssetFileRequest";
|
|
297
|
+
const _UAFRp = "UpdateAssetFileResponse";
|
|
249
298
|
const _UAI = "UpdateAssociationInput";
|
|
250
299
|
const _UAO = "UpdateAssociationOutput";
|
|
300
|
+
const _UAR = "UpdateAssetRequest";
|
|
301
|
+
const _UARp = "UpdateAssetResponse";
|
|
251
302
|
const _UAS = "UpdateAgentSpace";
|
|
252
303
|
const _UASI = "UpdateAgentSpaceInput";
|
|
253
304
|
const _UASO = "UpdateAgentSpaceOutput";
|
|
305
|
+
const _UAp = "UpdateAssociation";
|
|
254
306
|
const _UBT = "UpdateBacklogTask";
|
|
255
307
|
const _UBTR = "UpdateBacklogTaskRequest";
|
|
256
308
|
const _UBTRp = "UpdateBacklogTaskResponse";
|
|
@@ -288,9 +340,11 @@ const _aCd = "additionalContext";
|
|
|
288
340
|
const _aD = "authorizationDiscovery";
|
|
289
341
|
const _aF = "authFlow";
|
|
290
342
|
const _aH = "authorizationHeader";
|
|
291
|
-
const _aI = "
|
|
343
|
+
const _aI = "assetId";
|
|
292
344
|
const _aIc = "accountId";
|
|
293
345
|
const _aIp = "applicationIds";
|
|
346
|
+
const _aIs = "associationId";
|
|
347
|
+
const _aIss = "assetIds";
|
|
294
348
|
const _aK = "apiKey";
|
|
295
349
|
const _aKH = "apiKeyHeader";
|
|
296
350
|
const _aKN = "apiKeyName";
|
|
@@ -308,16 +362,21 @@ const _aST = "agentSubTask";
|
|
|
308
362
|
const _aSd = "additionalStep";
|
|
309
363
|
const _aSg = "agentSpaces";
|
|
310
364
|
const _aSu = "authScopes";
|
|
311
|
-
const _aT = "
|
|
365
|
+
const _aT = "assetType";
|
|
366
|
+
const _aTc = "accountType";
|
|
312
367
|
const _aTg = "agentType";
|
|
313
368
|
const _aU = "accountUrn";
|
|
314
369
|
const _aUu = "authorizationUrl";
|
|
315
|
-
const
|
|
370
|
+
const _aV = "assetVersion";
|
|
371
|
+
const _as = "asset";
|
|
372
|
+
const _ass = "associations";
|
|
316
373
|
const _aw = "aws";
|
|
317
374
|
const _az = "azuredevops";
|
|
318
375
|
const _azu = "azureidentity";
|
|
319
376
|
const _azur = "azure";
|
|
377
|
+
const _b = "body";
|
|
320
378
|
const _bT = "bearerToken";
|
|
379
|
+
const _by = "bytes";
|
|
321
380
|
const _c = "client";
|
|
322
381
|
const _cA = "createdAt";
|
|
323
382
|
const _cAr = "createdAfter";
|
|
@@ -336,10 +395,11 @@ const _cP = "currentPage";
|
|
|
336
395
|
const _cS = "clientSecret";
|
|
337
396
|
const _cT = "clientToken";
|
|
338
397
|
const _ce = "certificate";
|
|
339
|
-
const _co = "
|
|
340
|
-
const _con = "
|
|
398
|
+
const _co = "content";
|
|
399
|
+
const _con = "configuration";
|
|
341
400
|
const _cont = "context";
|
|
342
401
|
const _d = "description";
|
|
402
|
+
const _dR = "dnsResolution";
|
|
343
403
|
const _de = "delta";
|
|
344
404
|
const _dy = "dynatrace";
|
|
345
405
|
const _e = "error";
|
|
@@ -354,14 +414,17 @@ const _eP = "exchangeParameters";
|
|
|
354
414
|
const _eS = "executionStatus";
|
|
355
415
|
const _eSv = "evaluationSchedule";
|
|
356
416
|
const _eU = "exchangeUrl";
|
|
417
|
+
const _eUPCN = "exchangeUrlPrivateConnectionName";
|
|
357
418
|
const _en = "endpoint";
|
|
358
419
|
const _ev = "events";
|
|
359
420
|
const _ex = "expression";
|
|
360
421
|
const _exe = "executions";
|
|
361
|
-
const _f = "
|
|
422
|
+
const _f = "file";
|
|
362
423
|
const _fL = "fieldList";
|
|
424
|
+
const _fM = "failureMessage";
|
|
363
425
|
const _fST = "filterServiceTypes";
|
|
364
426
|
const _fSTi = "filterServiceType";
|
|
427
|
+
const _fi = "filter";
|
|
365
428
|
const _g = "goals";
|
|
366
429
|
const _gI = "groupId";
|
|
367
430
|
const _gIo = "goalId";
|
|
@@ -393,6 +456,7 @@ const _id = "idc";
|
|
|
393
456
|
const _id_ = "id";
|
|
394
457
|
const _idp = "idp";
|
|
395
458
|
const _in = "index";
|
|
459
|
+
const _it = "items";
|
|
396
460
|
const _jD = "jsonDelta";
|
|
397
461
|
const _kKA = "kmsKeyArn";
|
|
398
462
|
const _l = "locale";
|
|
@@ -409,14 +473,15 @@ const _mAODH = "monthlyAccountOnDemandHours";
|
|
|
409
473
|
const _mASLH = "monthlyAccountSystemLearningHours";
|
|
410
474
|
const _mI = "messageId";
|
|
411
475
|
const _mR = "maxResults";
|
|
476
|
+
const _mRA = "mcpRoleArn";
|
|
412
477
|
const _mc = "mcpserverdatadog";
|
|
413
478
|
const _mcp = "mcpserver";
|
|
414
479
|
const _mcps = "mcpserversplunk";
|
|
415
480
|
const _mcpse = "mcpservernewrelic";
|
|
416
481
|
const _mcpser = "mcpservergrafana";
|
|
417
482
|
const _mcpserv = "mcpserversigv4";
|
|
418
|
-
const _me = "
|
|
419
|
-
const
|
|
483
|
+
const _me = "metadata";
|
|
484
|
+
const _mes = "messages";
|
|
420
485
|
const _mo = "mode";
|
|
421
486
|
const _n = "name";
|
|
422
487
|
const _nT = "nextToken";
|
|
@@ -424,6 +489,7 @@ const _o = "owner";
|
|
|
424
489
|
const _oACC = "oAuthClientCredentials";
|
|
425
490
|
const _oALO = "oAuth3LO";
|
|
426
491
|
const _oARA = "operatorAppRoleArn";
|
|
492
|
+
const _oAU = "operatorAppUrl";
|
|
427
493
|
const _oI = "organizationId";
|
|
428
494
|
const _oN = "organizationName";
|
|
429
495
|
const _oOT = "opsOncallTarget";
|
|
@@ -433,7 +499,7 @@ const _oTu = "outputTokens";
|
|
|
433
499
|
const _oa = "oauth";
|
|
434
500
|
const _ob = "objectives";
|
|
435
501
|
const _or = "order";
|
|
436
|
-
const _p = "
|
|
502
|
+
const _p = "path";
|
|
437
503
|
const _pC = "privateConnections";
|
|
438
504
|
const _pCN = "privateConnectionName";
|
|
439
505
|
const _pEI = "parentExecutionId";
|
|
@@ -444,9 +510,9 @@ const _pN = "projectName";
|
|
|
444
510
|
const _pP = "projectPath";
|
|
445
511
|
const _pR = "portRanges";
|
|
446
512
|
const _pTI = "primaryTaskId";
|
|
447
|
-
const _pa = "
|
|
448
|
-
const
|
|
449
|
-
const
|
|
513
|
+
const _pa = "pagerduty";
|
|
514
|
+
const _pr = "priority";
|
|
515
|
+
const _pro = "provider";
|
|
450
516
|
const _r = "reference";
|
|
451
517
|
const _rA = "resourceArn";
|
|
452
518
|
const _rAa = "rankedAt";
|
|
@@ -515,6 +581,7 @@ const _tTo = "tokenType";
|
|
|
515
581
|
const _tTot = "totalTokens";
|
|
516
582
|
const _tTr = "transmissionTarget";
|
|
517
583
|
const _tU = "targetUrl";
|
|
584
|
+
const _tUPCN = "targetUrlPrivateConnectionName";
|
|
518
585
|
const _tUo = "toolUse";
|
|
519
586
|
const _tV = "tokenValue";
|
|
520
587
|
const _ta = "task";
|
|
@@ -526,6 +593,8 @@ const _ty = "type";
|
|
|
526
593
|
const _u = "uid";
|
|
527
594
|
const _uA = "updatedAt";
|
|
528
595
|
const _uAR = "userActionResponse";
|
|
596
|
+
const _uAp = "updatedAfter";
|
|
597
|
+
const _uB = "updatedBefore";
|
|
529
598
|
const _uEC = "underlyingErrorCode";
|
|
530
599
|
const _uI = "userId";
|
|
531
600
|
const _uM = "userMessage";
|
|
@@ -547,6 +616,8 @@ const _wT = "webhookType";
|
|
|
547
616
|
const _wU = "webhookUrl";
|
|
548
617
|
const _we = "webhooks";
|
|
549
618
|
const _xaaaf = "x-amzn-app-auth-flow";
|
|
619
|
+
const _z = "zip";
|
|
620
|
+
const _zF = "zipFile";
|
|
550
621
|
const n0 = "com.amazonaws.devopsagent";
|
|
551
622
|
const schema_1 = require("@smithy/core/schema");
|
|
552
623
|
const DevOpsAgentServiceException_1 = require("../models/DevOpsAgentServiceException");
|
|
@@ -634,9 +705,44 @@ exports.AgentSpace$ = [3, n0, _AS,
|
|
|
634
705
|
[_n, _cA, _uA, _aSI, _d, _l, _kKA],
|
|
635
706
|
[0, 5, 5, 0, [() => Description, 0], 0, 0], 4
|
|
636
707
|
];
|
|
708
|
+
exports.Asset$ = [3, n0, _A,
|
|
709
|
+
0,
|
|
710
|
+
[_aI, _aT, _me, _v, _cA, _uA],
|
|
711
|
+
[0, 0, 15, 1, 4, 4], 6
|
|
712
|
+
];
|
|
713
|
+
exports.AssetFile$ = [3, n0, _AF,
|
|
714
|
+
0,
|
|
715
|
+
[_p, _co, _v, _cA, _uA, _me],
|
|
716
|
+
[0, () => exports.AssetFileBody$, 1, 4, 4, 15], 5
|
|
717
|
+
];
|
|
718
|
+
exports.AssetFileContent$ = [3, n0, _AFC,
|
|
719
|
+
0,
|
|
720
|
+
[_p, _b, _me],
|
|
721
|
+
[0, () => exports.AssetFileBody$, 15], 2
|
|
722
|
+
];
|
|
723
|
+
exports.AssetFileSummary$ = [3, n0, _AFS,
|
|
724
|
+
0,
|
|
725
|
+
[_p, _v, _cA, _uA, _me],
|
|
726
|
+
[0, 1, 4, 4, 15], 4
|
|
727
|
+
];
|
|
728
|
+
exports.AssetTypeSummary$ = [3, n0, _ATS,
|
|
729
|
+
0,
|
|
730
|
+
[_aT, _d],
|
|
731
|
+
[0, 0], 2
|
|
732
|
+
];
|
|
733
|
+
exports.AssetVersionMetadata$ = [3, n0, _AVM,
|
|
734
|
+
0,
|
|
735
|
+
[_v, _cA, _uA],
|
|
736
|
+
[1, 4, 4], 3
|
|
737
|
+
];
|
|
738
|
+
exports.AssetZipContent$ = [3, n0, _AZC,
|
|
739
|
+
0,
|
|
740
|
+
[_zF],
|
|
741
|
+
[21], 1
|
|
742
|
+
];
|
|
637
743
|
exports.AssociateServiceInput$ = [3, n0, _ASI,
|
|
638
744
|
0,
|
|
639
|
-
[_aSI, _sI,
|
|
745
|
+
[_aSI, _sI, _con],
|
|
640
746
|
[[0, 1], 0, [() => exports.ServiceConfiguration$, 0]], 3
|
|
641
747
|
];
|
|
642
748
|
exports.AssociateServiceOutput$ = [3, n0, _ASO,
|
|
@@ -644,14 +750,14 @@ exports.AssociateServiceOutput$ = [3, n0, _ASO,
|
|
|
644
750
|
[_a, _w],
|
|
645
751
|
[[() => exports.Association$, 0], [() => exports.GenericWebhook$, 0]], 1
|
|
646
752
|
];
|
|
647
|
-
exports.Association$ = [3, n0,
|
|
753
|
+
exports.Association$ = [3, n0, _As,
|
|
648
754
|
0,
|
|
649
|
-
[_aSI, _cA, _uA,
|
|
755
|
+
[_aSI, _cA, _uA, _aIs, _sI, _con, _st],
|
|
650
756
|
[0, 5, 5, 0, 0, [() => exports.ServiceConfiguration$, 0], 0], 6
|
|
651
757
|
];
|
|
652
758
|
exports.AWSConfiguration$ = [3, n0, _AWSC,
|
|
653
759
|
0,
|
|
654
|
-
[_aRA, _aIc,
|
|
760
|
+
[_aRA, _aIc, _aTc],
|
|
655
761
|
[0, 0, 0], 3
|
|
656
762
|
];
|
|
657
763
|
exports.AzureConfiguration$ = [3, n0, _AC,
|
|
@@ -679,9 +785,29 @@ exports.CreateAgentSpaceOutput$ = [3, n0, _CASO,
|
|
|
679
785
|
[_aS, _t],
|
|
680
786
|
[[() => exports.AgentSpace$, 0], 128 | 0], 1
|
|
681
787
|
];
|
|
788
|
+
exports.CreateAssetFileRequest$ = [3, n0, _CAFR,
|
|
789
|
+
0,
|
|
790
|
+
[_aSI, _aI, _p, _co, _me, _cT],
|
|
791
|
+
[[0, 1], [0, 1], [0, 1], () => exports.AssetFileBody$, 15, [0, 4]], 4
|
|
792
|
+
];
|
|
793
|
+
exports.CreateAssetFileResponse$ = [3, n0, _CAFRr,
|
|
794
|
+
0,
|
|
795
|
+
[_f],
|
|
796
|
+
[() => exports.AssetFile$], 1
|
|
797
|
+
];
|
|
798
|
+
exports.CreateAssetRequest$ = [3, n0, _CAR,
|
|
799
|
+
0,
|
|
800
|
+
[_aSI, _aT, _co, _me, _cT],
|
|
801
|
+
[[0, 1], 0, () => exports.AssetContent$, 15, [0, 4]], 3
|
|
802
|
+
];
|
|
803
|
+
exports.CreateAssetResponse$ = [3, n0, _CARr,
|
|
804
|
+
0,
|
|
805
|
+
[_as],
|
|
806
|
+
[() => exports.Asset$], 1
|
|
807
|
+
];
|
|
682
808
|
exports.CreateBacklogTaskRequest$ = [3, n0, _CBTR,
|
|
683
809
|
0,
|
|
684
|
-
[_aSI, _tT, _ti,
|
|
810
|
+
[_aSI, _tT, _ti, _pr, _r, _d, _cT],
|
|
685
811
|
[[0, 1], 0, 0, 0, () => exports.ReferenceInput$, 0, [0, 4]], 4
|
|
686
812
|
];
|
|
687
813
|
exports.CreateBacklogTaskResponse$ = [3, n0, _CBTRr,
|
|
@@ -706,8 +832,8 @@ exports.CreatePrivateConnectionInput$ = [3, n0, _CPCI,
|
|
|
706
832
|
];
|
|
707
833
|
exports.CreatePrivateConnectionOutput$ = [3, n0, _CPCO,
|
|
708
834
|
0,
|
|
709
|
-
[_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _t],
|
|
710
|
-
[0, 0, 0, 0, 0, 0, 0, 5, 128 | 0], 3
|
|
835
|
+
[_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _dR, _fM, _t],
|
|
836
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 128 | 0], 3
|
|
711
837
|
];
|
|
712
838
|
exports.DatadogServiceDetails$ = [3, n0, _DSD,
|
|
713
839
|
0,
|
|
@@ -724,6 +850,26 @@ exports.DeleteAgentSpaceOutput$ = [3, n0, _DASO,
|
|
|
724
850
|
[],
|
|
725
851
|
[]
|
|
726
852
|
];
|
|
853
|
+
exports.DeleteAssetFileRequest$ = [3, n0, _DAFR,
|
|
854
|
+
0,
|
|
855
|
+
[_aSI, _aI, _p],
|
|
856
|
+
[[0, 1], [0, 1], [0, 1]], 3
|
|
857
|
+
];
|
|
858
|
+
exports.DeleteAssetFileResponse$ = [3, n0, _DAFRe,
|
|
859
|
+
0,
|
|
860
|
+
[],
|
|
861
|
+
[]
|
|
862
|
+
];
|
|
863
|
+
exports.DeleteAssetRequest$ = [3, n0, _DAR,
|
|
864
|
+
0,
|
|
865
|
+
[_aSI, _aI],
|
|
866
|
+
[[0, 1], [0, 1]], 2
|
|
867
|
+
];
|
|
868
|
+
exports.DeleteAssetResponse$ = [3, n0, _DARe,
|
|
869
|
+
0,
|
|
870
|
+
[],
|
|
871
|
+
[]
|
|
872
|
+
];
|
|
727
873
|
exports.DeletePrivateConnectionInput$ = [3, n0, _DPCI,
|
|
728
874
|
0,
|
|
729
875
|
[_n],
|
|
@@ -751,8 +897,8 @@ exports.DescribePrivateConnectionInput$ = [3, n0, _DPCIe,
|
|
|
751
897
|
];
|
|
752
898
|
exports.DescribePrivateConnectionOutput$ = [3, n0, _DPCOe,
|
|
753
899
|
0,
|
|
754
|
-
[_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _t],
|
|
755
|
-
[0, 0, 0, 0, 0, 0, 0, 5, 128 | 0], 3
|
|
900
|
+
[_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _dR, _fM, _t],
|
|
901
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 128 | 0], 3
|
|
756
902
|
];
|
|
757
903
|
exports.DisableOperatorAppInput$ = [3, n0, _DOAI,
|
|
758
904
|
0,
|
|
@@ -761,7 +907,7 @@ exports.DisableOperatorAppInput$ = [3, n0, _DOAI,
|
|
|
761
907
|
];
|
|
762
908
|
exports.DisassociateServiceInput$ = [3, n0, _DSIi,
|
|
763
909
|
0,
|
|
764
|
-
[_aSI,
|
|
910
|
+
[_aSI, _aIs],
|
|
765
911
|
[[0, 1], [0, 1]], 2
|
|
766
912
|
];
|
|
767
913
|
exports.DisassociateServiceOutput$ = [3, n0, _DSOi,
|
|
@@ -786,13 +932,13 @@ exports.DynatraceServiceDetails$ = [3, n0, _DSDy,
|
|
|
786
932
|
];
|
|
787
933
|
exports.EnableOperatorAppInput$ = [3, n0, _EOAI,
|
|
788
934
|
0,
|
|
789
|
-
[_aSI, _aF, _oARA, _iIA, _iU, _iCI, _iCS,
|
|
935
|
+
[_aSI, _aF, _oARA, _iIA, _iU, _iCI, _iCS, _pro],
|
|
790
936
|
[[0, 1], 0, 0, 0, 0, 0, [() => IdpClientSecret, 0], 0], 3
|
|
791
937
|
];
|
|
792
938
|
exports.EnableOperatorAppOutput$ = [3, n0, _EOAO,
|
|
793
939
|
0,
|
|
794
|
-
[_aSI, _i, _id, _idp],
|
|
795
|
-
[0, () => exports.IamAuthConfiguration$, () => exports.IdcAuthConfiguration$, () => exports.IdpAuthConfiguration$], 1
|
|
940
|
+
[_aSI, _oAU, _i, _id, _idp],
|
|
941
|
+
[0, 0, () => exports.IamAuthConfiguration$, () => exports.IdcAuthConfiguration$, () => exports.IdpAuthConfiguration$], 1
|
|
796
942
|
];
|
|
797
943
|
exports.EventChannelConfiguration$ = [3, n0, _ECC,
|
|
798
944
|
0,
|
|
@@ -834,9 +980,39 @@ exports.GetAgentSpaceOutput$ = [3, n0, _GASO,
|
|
|
834
980
|
[_aS, _t],
|
|
835
981
|
[[() => exports.AgentSpace$, 0], 128 | 0], 1
|
|
836
982
|
];
|
|
983
|
+
exports.GetAssetContentRequest$ = [3, n0, _GACR,
|
|
984
|
+
0,
|
|
985
|
+
[_aSI, _aI, _aV],
|
|
986
|
+
[[0, 1], [0, 1], [1, { [_hQ]: _aV }]], 2
|
|
987
|
+
];
|
|
988
|
+
exports.GetAssetContentResponse$ = [3, n0, _GACRe,
|
|
989
|
+
0,
|
|
990
|
+
[_co, _v],
|
|
991
|
+
[() => exports.AssetZipContent$, 1], 2
|
|
992
|
+
];
|
|
993
|
+
exports.GetAssetFileRequest$ = [3, n0, _GAFR,
|
|
994
|
+
0,
|
|
995
|
+
[_aSI, _aI, _p, _aV],
|
|
996
|
+
[[0, 1], [0, 1], [0, 1], [1, { [_hQ]: _aV }]], 3
|
|
997
|
+
];
|
|
998
|
+
exports.GetAssetFileResponse$ = [3, n0, _GAFRe,
|
|
999
|
+
0,
|
|
1000
|
+
[_f],
|
|
1001
|
+
[() => exports.AssetFile$], 1
|
|
1002
|
+
];
|
|
1003
|
+
exports.GetAssetRequest$ = [3, n0, _GAR,
|
|
1004
|
+
0,
|
|
1005
|
+
[_aSI, _aI, _aV],
|
|
1006
|
+
[[0, 1], [0, 1], [1, { [_hQ]: _aV }]], 2
|
|
1007
|
+
];
|
|
1008
|
+
exports.GetAssetResponse$ = [3, n0, _GARe,
|
|
1009
|
+
0,
|
|
1010
|
+
[_as],
|
|
1011
|
+
[() => exports.Asset$], 1
|
|
1012
|
+
];
|
|
837
1013
|
exports.GetAssociationInput$ = [3, n0, _GAI,
|
|
838
1014
|
0,
|
|
839
|
-
[_aSI,
|
|
1015
|
+
[_aSI, _aIs],
|
|
840
1016
|
[[0, 1], [0, 1]], 2
|
|
841
1017
|
];
|
|
842
1018
|
exports.GetAssociationOutput$ = [3, n0, _GAO,
|
|
@@ -861,8 +1037,8 @@ exports.GetOperatorAppInput$ = [3, n0, _GOAI,
|
|
|
861
1037
|
];
|
|
862
1038
|
exports.GetOperatorAppOutput$ = [3, n0, _GOAO,
|
|
863
1039
|
0,
|
|
864
|
-
[_i, _id, _idp],
|
|
865
|
-
[() => exports.IamAuthConfiguration$, () => exports.IdcAuthConfiguration$, () => exports.IdpAuthConfiguration$]
|
|
1040
|
+
[_oAU, _i, _id, _idp],
|
|
1041
|
+
[0, () => exports.IamAuthConfiguration$, () => exports.IdcAuthConfiguration$, () => exports.IdpAuthConfiguration$]
|
|
866
1042
|
];
|
|
867
1043
|
exports.GetRecommendationRequest$ = [3, n0, _GRR,
|
|
868
1044
|
0,
|
|
@@ -901,7 +1077,7 @@ exports.GitLabDetails$ = [3, n0, _GLD,
|
|
|
901
1077
|
];
|
|
902
1078
|
exports.Goal$ = [3, n0, _G,
|
|
903
1079
|
0,
|
|
904
|
-
[_aSA, _gIo, _ti,
|
|
1080
|
+
[_aSA, _gIo, _ti, _co, _st, _gT, _cA, _uA, _v, _lEA, _lTI, _lSTI, _eSv],
|
|
905
1081
|
[0, 0, 0, () => exports.GoalContent$, 0, 0, 5, 5, 1, 5, 0, 0, () => exports.GoalSchedule$], 9
|
|
906
1082
|
];
|
|
907
1083
|
exports.GoalContent$ = [3, n0, _GC,
|
|
@@ -936,12 +1112,12 @@ exports.IdcAuthConfiguration$ = [3, n0, _IACd,
|
|
|
936
1112
|
];
|
|
937
1113
|
exports.IdpAuthConfiguration$ = [3, n0, _IACdp,
|
|
938
1114
|
0,
|
|
939
|
-
[_iU, _cI, _oARA,
|
|
1115
|
+
[_iU, _cI, _oARA, _pro, _cA, _uA],
|
|
940
1116
|
[0, 0, 0, 0, 5, 5], 5
|
|
941
1117
|
];
|
|
942
1118
|
exports.JournalRecord$ = [3, n0, _JR,
|
|
943
1119
|
0,
|
|
944
|
-
[_aSI, _eI, _rIec,
|
|
1120
|
+
[_aSI, _eI, _rIec, _co, _cA, _rT, _uR],
|
|
945
1121
|
[0, 0, 0, 15, 4, 0, () => exports.UserReference$], 6
|
|
946
1122
|
];
|
|
947
1123
|
exports.ListAgentSpacesInput$ = [3, n0, _LASI,
|
|
@@ -954,6 +1130,46 @@ exports.ListAgentSpacesOutput$ = [3, n0, _LASO,
|
|
|
954
1130
|
[_aSg, _nT],
|
|
955
1131
|
[[() => AgentSpaceList, 0], 0], 1
|
|
956
1132
|
];
|
|
1133
|
+
exports.ListAssetFilesRequest$ = [3, n0, _LAFR,
|
|
1134
|
+
0,
|
|
1135
|
+
[_aSI, _aI, _aV, _nT, _mR],
|
|
1136
|
+
[[0, 1], [0, 1], [1, { [_hQ]: _aV }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
|
|
1137
|
+
];
|
|
1138
|
+
exports.ListAssetFilesResponse$ = [3, n0, _LAFRi,
|
|
1139
|
+
0,
|
|
1140
|
+
[_it, _nT],
|
|
1141
|
+
[() => AssetFileSummaryList, 0], 1
|
|
1142
|
+
];
|
|
1143
|
+
exports.ListAssetsRequest$ = [3, n0, _LAR,
|
|
1144
|
+
0,
|
|
1145
|
+
[_aSI, _aT, _uAp, _uB, _nT, _mR],
|
|
1146
|
+
[[0, 1], [0, { [_hQ]: _aT }], [4, { [_hQ]: _uAp }], [4, { [_hQ]: _uB }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1147
|
+
];
|
|
1148
|
+
exports.ListAssetsResponse$ = [3, n0, _LARi,
|
|
1149
|
+
0,
|
|
1150
|
+
[_it, _nT],
|
|
1151
|
+
[() => AssetList, 0], 1
|
|
1152
|
+
];
|
|
1153
|
+
exports.ListAssetTypesRequest$ = [3, n0, _LATR,
|
|
1154
|
+
0,
|
|
1155
|
+
[_nT, _mR],
|
|
1156
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
|
|
1157
|
+
];
|
|
1158
|
+
exports.ListAssetTypesResponse$ = [3, n0, _LATRi,
|
|
1159
|
+
0,
|
|
1160
|
+
[_it, _nT],
|
|
1161
|
+
[() => AssetTypeList, 0], 1
|
|
1162
|
+
];
|
|
1163
|
+
exports.ListAssetVersionsRequest$ = [3, n0, _LAVR,
|
|
1164
|
+
0,
|
|
1165
|
+
[_aSI, _aI, _mR, _nT],
|
|
1166
|
+
[[0, 1], [0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
|
|
1167
|
+
];
|
|
1168
|
+
exports.ListAssetVersionsResponse$ = [3, n0, _LAVRi,
|
|
1169
|
+
0,
|
|
1170
|
+
[_it, _nT],
|
|
1171
|
+
[() => AssetVersionMetadataList, 0], 1
|
|
1172
|
+
];
|
|
957
1173
|
exports.ListAssociationsInput$ = [3, n0, _LAI,
|
|
958
1174
|
0,
|
|
959
1175
|
[_aSI, _mR, _nT, _fST],
|
|
@@ -961,12 +1177,12 @@ exports.ListAssociationsInput$ = [3, n0, _LAI,
|
|
|
961
1177
|
];
|
|
962
1178
|
exports.ListAssociationsOutput$ = [3, n0, _LAO,
|
|
963
1179
|
0,
|
|
964
|
-
[
|
|
1180
|
+
[_ass, _nT],
|
|
965
1181
|
[[() => AssociationsList, 0], 0], 1
|
|
966
1182
|
];
|
|
967
1183
|
exports.ListBacklogTasksRequest$ = [3, n0, _LBTR,
|
|
968
1184
|
0,
|
|
969
|
-
[_aSI,
|
|
1185
|
+
[_aSI, _fi, _li, _nT, _sF, _or],
|
|
970
1186
|
[[0, 1], () => exports.TaskFilter$, 1, 0, 0, 0], 1
|
|
971
1187
|
];
|
|
972
1188
|
exports.ListBacklogTasksResponse$ = [3, n0, _LBTRi,
|
|
@@ -1021,7 +1237,7 @@ exports.ListPendingMessagesRequest$ = [3, n0, _LPMR,
|
|
|
1021
1237
|
];
|
|
1022
1238
|
exports.ListPendingMessagesResponse$ = [3, n0, _LPMRi,
|
|
1023
1239
|
0,
|
|
1024
|
-
[_aSI, _eI,
|
|
1240
|
+
[_aSI, _eI, _mes, _cA],
|
|
1025
1241
|
[0, 0, () => PendingMessages, 4], 4
|
|
1026
1242
|
];
|
|
1027
1243
|
exports.ListPrivateConnectionsInput$ = [3, n0, _LPCI,
|
|
@@ -1036,7 +1252,7 @@ exports.ListPrivateConnectionsOutput$ = [3, n0, _LPCO,
|
|
|
1036
1252
|
];
|
|
1037
1253
|
exports.ListRecommendationsRequest$ = [3, n0, _LRR,
|
|
1038
1254
|
0,
|
|
1039
|
-
[_aSI, _tI, _gIo, _st,
|
|
1255
|
+
[_aSI, _tI, _gIo, _st, _pr, _li, _nT],
|
|
1040
1256
|
[[0, 1], 0, 0, 0, 0, 1, 0], 1
|
|
1041
1257
|
];
|
|
1042
1258
|
exports.ListRecommendationsResponse$ = [3, n0, _LRRi,
|
|
@@ -1066,7 +1282,7 @@ exports.ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
|
1066
1282
|
];
|
|
1067
1283
|
exports.ListWebhooksInput$ = [3, n0, _LWI,
|
|
1068
1284
|
0,
|
|
1069
|
-
[_aSI,
|
|
1285
|
+
[_aSI, _aIs],
|
|
1070
1286
|
[[0, 1], [0, 1]], 2
|
|
1071
1287
|
];
|
|
1072
1288
|
exports.ListWebhooksOutput$ = [3, n0, _LWO,
|
|
@@ -1126,8 +1342,8 @@ exports.MCPServerOAuthClientCredentialsConfig$ = [3, n0, _MCPSOACCC,
|
|
|
1126
1342
|
];
|
|
1127
1343
|
exports.MCPServerSigV4AuthorizationConfig$ = [3, n0, _MCPSSVAC,
|
|
1128
1344
|
0,
|
|
1129
|
-
[_reg, _ser, _rAo, _cH],
|
|
1130
|
-
[0, 0, 0, [() => CustomHeaders, 0]],
|
|
1345
|
+
[_reg, _ser, _rAo, _mRA, _cH],
|
|
1346
|
+
[0, 0, 0, 0, [() => CustomHeaders, 0]], 2
|
|
1131
1347
|
];
|
|
1132
1348
|
exports.MCPServerSigV4Configuration$ = [3, n0, _MCPSSVC,
|
|
1133
1349
|
0,
|
|
@@ -1181,12 +1397,12 @@ exports.PendingMessage$ = [3, n0, _PM,
|
|
|
1181
1397
|
];
|
|
1182
1398
|
exports.PrivateConnectionSummary$ = [3, n0, _PCS,
|
|
1183
1399
|
0,
|
|
1184
|
-
[_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET],
|
|
1185
|
-
[0, 0, 0, 0, 0, 0, 0, 5], 3
|
|
1400
|
+
[_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _dR, _fM],
|
|
1401
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 0, 0], 3
|
|
1186
1402
|
];
|
|
1187
1403
|
exports.Recommendation$ = [3, n0, _R,
|
|
1188
1404
|
0,
|
|
1189
|
-
[_aSA, _rI, _tI, _ti,
|
|
1405
|
+
[_aSA, _rI, _tI, _ti, _co, _st, _pr, _cA, _uA, _v, _gIo, _gV, _aCd, _rP, _rAa],
|
|
1190
1406
|
[0, 0, 0, 0, () => exports.RecommendationContent$, 0, 0, 5, 5, 1, 0, 1, 0, 1, 5], 10
|
|
1191
1407
|
];
|
|
1192
1408
|
exports.RecommendationContent$ = [3, n0, _RC,
|
|
@@ -1196,12 +1412,12 @@ exports.RecommendationContent$ = [3, n0, _RC,
|
|
|
1196
1412
|
];
|
|
1197
1413
|
exports.ReferenceInput$ = [3, n0, _RI,
|
|
1198
1414
|
0,
|
|
1199
|
-
[_sy, _rIef, _rU,
|
|
1415
|
+
[_sy, _rIef, _rU, _aIs, _ti],
|
|
1200
1416
|
[0, 0, 0, 0, 0], 4
|
|
1201
1417
|
];
|
|
1202
1418
|
exports.ReferenceOutput$ = [3, n0, _RO,
|
|
1203
1419
|
0,
|
|
1204
|
-
[_sy, _rIef, _rU,
|
|
1420
|
+
[_sy, _rIef, _rU, _aIs, _ti],
|
|
1205
1421
|
[0, 0, 0, 0, 0], 4
|
|
1206
1422
|
];
|
|
1207
1423
|
exports.RegisteredAzureDevOpsServiceDetails$ = [3, n0, _RADOSD,
|
|
@@ -1236,8 +1452,8 @@ exports.RegisteredMCPServerDetails$ = [3, n0, _RMCPSD,
|
|
|
1236
1452
|
];
|
|
1237
1453
|
exports.RegisteredMCPServerSigV4Details$ = [3, n0, _RMCPSSVD,
|
|
1238
1454
|
0,
|
|
1239
|
-
[_n, _en, _reg, _ser, _rAo, _d, _cH],
|
|
1240
|
-
[0, 0, 0, 0, 0, [() => Description, 0], [() => CustomHeaders, 0]], 5
|
|
1455
|
+
[_n, _en, _reg, _ser, _rAo, _d, _mRA, _cH],
|
|
1456
|
+
[0, 0, 0, 0, 0, [() => Description, 0], 0, [() => CustomHeaders, 0]], 5
|
|
1241
1457
|
];
|
|
1242
1458
|
exports.RegisteredNewRelicDetails$ = [3, n0, _RNRD,
|
|
1243
1459
|
0,
|
|
@@ -1266,8 +1482,8 @@ exports.RegisteredSlackServiceDetails$ = [3, n0, _RSSD,
|
|
|
1266
1482
|
];
|
|
1267
1483
|
exports.RegisterServiceInput$ = [3, n0, _RSI,
|
|
1268
1484
|
0,
|
|
1269
|
-
[_ser, _sD, _kKA, _pCN, _n, _t],
|
|
1270
|
-
[[0, 1], [() => exports.ServiceDetails$, 0], 0, 0, 0, 128 | 0], 2
|
|
1485
|
+
[_ser, _sD, _kKA, _pCN, _tUPCN, _eUPCN, _n, _t],
|
|
1486
|
+
[[0, 1], [() => exports.ServiceDetails$, 0], 0, 0, 0, 0, 0, 128 | 0], 2
|
|
1271
1487
|
];
|
|
1272
1488
|
exports.RegisterServiceOutput$ = [3, n0, _RSO,
|
|
1273
1489
|
0,
|
|
@@ -1311,8 +1527,8 @@ exports.SendMessageJsonDelta$ = [3, n0, _SMJD,
|
|
|
1311
1527
|
];
|
|
1312
1528
|
exports.SendMessageRequest$ = [3, n0, _SMR,
|
|
1313
1529
|
0,
|
|
1314
|
-
[_aSI, _eI,
|
|
1315
|
-
[[0, 1], 0, 0, () => exports.SendMessageContext$, 0], 3
|
|
1530
|
+
[_aSI, _eI, _co, _cont, _uI, _aIss],
|
|
1531
|
+
[[0, 1], 0, 0, () => exports.SendMessageContext$, 0, 64 | 0], 3
|
|
1316
1532
|
];
|
|
1317
1533
|
exports.SendMessageResponse$ = [3, n0, _SMRe,
|
|
1318
1534
|
0,
|
|
@@ -1341,7 +1557,7 @@ exports.SendMessageResponseInProgressEvent$ = [3, n0, _SMRIPE,
|
|
|
1341
1557
|
];
|
|
1342
1558
|
exports.SendMessageSummaryEvent$ = [3, n0, _SMSE,
|
|
1343
1559
|
0,
|
|
1344
|
-
[
|
|
1560
|
+
[_co, _sN],
|
|
1345
1561
|
[0, 1]
|
|
1346
1562
|
];
|
|
1347
1563
|
exports.SendMessageTextDelta$ = [3, n0, _SMTD,
|
|
@@ -1356,8 +1572,8 @@ exports.SendMessageUsageInfo$ = [3, n0, _SMUI,
|
|
|
1356
1572
|
];
|
|
1357
1573
|
exports.ServiceManagedInput$ = [3, n0, _SMIe,
|
|
1358
1574
|
0,
|
|
1359
|
-
[_hA, _vI, _sIub, _sGI, _iAT, _iAPE, _pR, _ce],
|
|
1360
|
-
[0, 0, 64 | 0, 64 | 0, 0, 1, 64 | 0, 0], 3
|
|
1575
|
+
[_hA, _vI, _sIub, _sGI, _iAT, _iAPE, _pR, _ce, _dR],
|
|
1576
|
+
[0, 0, 64 | 0, 64 | 0, 0, 1, 64 | 0, 0, 0], 3
|
|
1361
1577
|
];
|
|
1362
1578
|
exports.ServiceNowConfiguration$ = [3, n0, _SNC,
|
|
1363
1579
|
0,
|
|
@@ -1391,7 +1607,7 @@ exports.SlackTransmissionTarget$ = [3, n0, _STT,
|
|
|
1391
1607
|
];
|
|
1392
1608
|
exports.SourceAwsConfiguration$ = [3, n0, _SAC,
|
|
1393
1609
|
0,
|
|
1394
|
-
[_aIc,
|
|
1610
|
+
[_aIc, _aTc, _aRA, _eIx],
|
|
1395
1611
|
[0, 0, 0, 0], 3
|
|
1396
1612
|
];
|
|
1397
1613
|
exports.TagResourceRequest$ = [3, n0, _TRR,
|
|
@@ -1406,12 +1622,12 @@ exports.TagResourceResponse$ = [3, n0, _TRRa,
|
|
|
1406
1622
|
];
|
|
1407
1623
|
exports.Task$ = [3, n0, _T,
|
|
1408
1624
|
0,
|
|
1409
|
-
[_aSI, _tI, _ti, _tT,
|
|
1625
|
+
[_aSI, _tI, _ti, _tT, _pr, _st, _cA, _uA, _v, _eI, _d, _r, _sM, _me, _pTI, _sR, _hLT],
|
|
1410
1626
|
[0, 0, 0, 0, 0, 0, 5, 5, 1, 0, 0, () => exports.ReferenceOutput$, 15, 15, 0, 0, 2], 9
|
|
1411
1627
|
];
|
|
1412
1628
|
exports.TaskFilter$ = [3, n0, _TF,
|
|
1413
1629
|
0,
|
|
1414
|
-
[_cAr, _cB,
|
|
1630
|
+
[_cAr, _cB, _pr, _st, _tT, _pTI],
|
|
1415
1631
|
[5, 5, 64 | 0, 64 | 0, 64 | 0, 0]
|
|
1416
1632
|
];
|
|
1417
1633
|
exports.UntagResourceRequest$ = [3, n0, _URR,
|
|
@@ -1434,9 +1650,29 @@ exports.UpdateAgentSpaceOutput$ = [3, n0, _UASO,
|
|
|
1434
1650
|
[_aS],
|
|
1435
1651
|
[[() => exports.AgentSpace$, 0]], 1
|
|
1436
1652
|
];
|
|
1653
|
+
exports.UpdateAssetFileRequest$ = [3, n0, _UAFR,
|
|
1654
|
+
0,
|
|
1655
|
+
[_aSI, _aI, _p, _co, _me, _cT],
|
|
1656
|
+
[[0, 1], [0, 1], [0, 1], () => exports.AssetFileBody$, 15, [0, 4]], 3
|
|
1657
|
+
];
|
|
1658
|
+
exports.UpdateAssetFileResponse$ = [3, n0, _UAFRp,
|
|
1659
|
+
0,
|
|
1660
|
+
[_f],
|
|
1661
|
+
[() => exports.AssetFile$], 1
|
|
1662
|
+
];
|
|
1663
|
+
exports.UpdateAssetRequest$ = [3, n0, _UAR,
|
|
1664
|
+
0,
|
|
1665
|
+
[_aSI, _aI, _me, _co, _cT],
|
|
1666
|
+
[[0, 1], [0, 1], 15, () => exports.AssetContent$, [0, 4]], 2
|
|
1667
|
+
];
|
|
1668
|
+
exports.UpdateAssetResponse$ = [3, n0, _UARp,
|
|
1669
|
+
0,
|
|
1670
|
+
[_as],
|
|
1671
|
+
[() => exports.Asset$], 1
|
|
1672
|
+
];
|
|
1437
1673
|
exports.UpdateAssociationInput$ = [3, n0, _UAI,
|
|
1438
1674
|
0,
|
|
1439
|
-
[_aSI,
|
|
1675
|
+
[_aSI, _aIs, _con],
|
|
1440
1676
|
[[0, 1], [0, 1], [() => exports.ServiceConfiguration$, 0]], 3
|
|
1441
1677
|
];
|
|
1442
1678
|
exports.UpdateAssociationOutput$ = [3, n0, _UAO,
|
|
@@ -1481,8 +1717,8 @@ exports.UpdatePrivateConnectionCertificateInput$ = [3, n0, _UPCCI,
|
|
|
1481
1717
|
];
|
|
1482
1718
|
exports.UpdatePrivateConnectionCertificateOutput$ = [3, n0, _UPCCO,
|
|
1483
1719
|
0,
|
|
1484
|
-
[_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET],
|
|
1485
|
-
[0, 0, 0, 0, 0, 0, 0, 5], 3
|
|
1720
|
+
[_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _dR, _fM],
|
|
1721
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 0, 0], 3
|
|
1486
1722
|
];
|
|
1487
1723
|
exports.UpdateRecommendationRequest$ = [3, n0, _URRp,
|
|
1488
1724
|
0,
|
|
@@ -1516,7 +1752,7 @@ exports.ValidateAwsAssociationsOutput$ = [3, n0, _VAAO,
|
|
|
1516
1752
|
];
|
|
1517
1753
|
exports.ValidationExceptionField$ = [3, n0, _VEF,
|
|
1518
1754
|
0,
|
|
1519
|
-
[
|
|
1755
|
+
[_p, _m],
|
|
1520
1756
|
[0, 0], 2
|
|
1521
1757
|
];
|
|
1522
1758
|
exports.Webhook$ = [3, n0, _W,
|
|
@@ -1529,10 +1765,23 @@ var AgentSpaceList = [1, n0, _ASL,
|
|
|
1529
1765
|
0, [() => exports.AgentSpace$,
|
|
1530
1766
|
0]
|
|
1531
1767
|
];
|
|
1768
|
+
var AssetFileSummaryList = [1, n0, _AFSL,
|
|
1769
|
+
0, () => exports.AssetFileSummary$
|
|
1770
|
+
];
|
|
1771
|
+
var AssetIdList = 64 | 0;
|
|
1772
|
+
var AssetList = [1, n0, _AL,
|
|
1773
|
+
0, () => exports.Asset$
|
|
1774
|
+
];
|
|
1775
|
+
var AssetTypeList = [1, n0, _ATL,
|
|
1776
|
+
0, () => exports.AssetTypeSummary$
|
|
1777
|
+
];
|
|
1778
|
+
var AssetVersionMetadataList = [1, n0, _AVML,
|
|
1779
|
+
0, () => exports.AssetVersionMetadata$
|
|
1780
|
+
];
|
|
1532
1781
|
var AssistantMessage = [1, n0, _AM,
|
|
1533
1782
|
0, () => exports.AssistantMessageBlock$
|
|
1534
1783
|
];
|
|
1535
|
-
var AssociationsList = [1, n0,
|
|
1784
|
+
var AssociationsList = [1, n0, _ALs,
|
|
1536
1785
|
0, [() => exports.Association$,
|
|
1537
1786
|
0]
|
|
1538
1787
|
];
|
|
@@ -1607,7 +1856,7 @@ var ExchangeParameters = [2, n0, _EP,
|
|
|
1607
1856
|
var Tags = 128 | 0;
|
|
1608
1857
|
exports.AdditionalServiceDetails$ = [4, n0, _ASD,
|
|
1609
1858
|
0,
|
|
1610
|
-
[_gi, _sl, _mc, _mcp, _servi, _git, _mcps, _mcpse, _az, _azu, _mcpser,
|
|
1859
|
+
[_gi, _sl, _mc, _mcp, _servi, _git, _mcps, _mcpse, _az, _azu, _mcpser, _pa, _mcpserv],
|
|
1611
1860
|
[() => exports.RegisteredGithubServiceDetails$, () => exports.RegisteredSlackServiceDetails$, [() => exports.RegisteredMCPServerDetails$, 0], [() => exports.RegisteredMCPServerDetails$, 0], () => exports.RegisteredServiceNowDetails$, () => exports.RegisteredGitLabServiceDetails$, [() => exports.RegisteredMCPServerDetails$, 0], [() => exports.RegisteredNewRelicDetails$, 0], () => exports.RegisteredAzureDevOpsServiceDetails$, () => exports.RegisteredAzureIdentityDetails$, () => exports.RegisteredGrafanaServerDetails$, () => exports.RegisteredPagerDutyDetails$, [() => exports.RegisteredMCPServerSigV4Details$, 0]]
|
|
1612
1861
|
];
|
|
1613
1862
|
exports.AdditionalServiceRegistrationStep$ = [4, n0, _ASRS,
|
|
@@ -1615,6 +1864,16 @@ exports.AdditionalServiceRegistrationStep$ = [4, n0, _ASRS,
|
|
|
1615
1864
|
[_oa],
|
|
1616
1865
|
[() => exports.OAuthAdditionalStepDetails$]
|
|
1617
1866
|
];
|
|
1867
|
+
exports.AssetContent$ = [4, n0, _ACs,
|
|
1868
|
+
0,
|
|
1869
|
+
[_f, _z],
|
|
1870
|
+
[() => exports.AssetFileContent$, () => exports.AssetZipContent$]
|
|
1871
|
+
];
|
|
1872
|
+
exports.AssetFileBody$ = [4, n0, _AFB,
|
|
1873
|
+
0,
|
|
1874
|
+
[_by, _te],
|
|
1875
|
+
[21, 0]
|
|
1876
|
+
];
|
|
1618
1877
|
exports.AssistantMessageBlock$ = [4, n0, _AMB,
|
|
1619
1878
|
0,
|
|
1620
1879
|
[_te, _tUo],
|
|
@@ -1667,12 +1926,12 @@ exports.SendMessageEvents$ = [4, n0, _SME,
|
|
|
1667
1926
|
];
|
|
1668
1927
|
exports.ServiceConfiguration$ = [4, n0, _SCe,
|
|
1669
1928
|
0,
|
|
1670
|
-
[_sA, _aw, _gi, _sl, _dy, _servi, _mcpse, _mc, _mcp, _git, _mcps, _eCv, _azur, _az, _mcpser,
|
|
1929
|
+
[_sA, _aw, _gi, _sl, _dy, _servi, _mcpse, _mc, _mcp, _git, _mcps, _eCv, _azur, _az, _mcpser, _pa, _mcpserv],
|
|
1671
1930
|
[() => exports.SourceAwsConfiguration$, () => exports.AWSConfiguration$, () => exports.GitHubConfiguration$, () => exports.SlackConfiguration$, () => exports.DynatraceConfiguration$, () => exports.ServiceNowConfiguration$, () => exports.MCPServerNewRelicConfiguration$, () => exports.MCPServerDatadogConfiguration$, () => exports.MCPServerConfiguration$, () => exports.GitLabConfiguration$, () => exports.MCPServerSplunkConfiguration$, () => exports.EventChannelConfiguration$, () => exports.AzureConfiguration$, () => exports.AzureDevOpsConfiguration$, () => exports.MCPServerGrafanaConfiguration$, [() => exports.PagerDutyConfiguration$, 0], () => exports.MCPServerSigV4Configuration$]
|
|
1672
1931
|
];
|
|
1673
1932
|
exports.ServiceDetails$ = [4, n0, _SD,
|
|
1674
1933
|
0,
|
|
1675
|
-
[_dy, _servi, _mc, _mcp, _git, _mcps, _mcpse, _eCv, _mcpser,
|
|
1934
|
+
[_dy, _servi, _mc, _mcp, _git, _mcps, _mcpse, _eCv, _mcpser, _pa, _azu, _mcpserv],
|
|
1676
1935
|
[[() => exports.DynatraceServiceDetails$, 0], [() => exports.ServiceNowServiceDetails$, 0], [() => exports.DatadogServiceDetails$, 0], [() => exports.MCPServerDetails$, 0], [() => exports.GitLabDetails$, 0], [() => exports.MCPServerDetails$, 0], [() => exports.NewRelicServiceDetails$, 0], () => exports.EventChannelDetails$, [() => exports.GrafanaServiceDetails$, 0], [() => exports.PagerDutyDetails$, 0], () => exports.RegisteredAzureIdentityDetails$, [() => exports.MCPServerSigV4ServiceDetails$, 0]]
|
|
1677
1936
|
];
|
|
1678
1937
|
exports.ServiceNowServiceAuthorizationConfig$ = [4, n0, _SNSAC,
|
|
@@ -1691,6 +1950,12 @@ exports.AssociateService$ = [9, n0, _ASs,
|
|
|
1691
1950
|
exports.CreateAgentSpace$ = [9, n0, _CAS,
|
|
1692
1951
|
{ [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces", 201] }, () => exports.CreateAgentSpaceInput$, () => exports.CreateAgentSpaceOutput$
|
|
1693
1952
|
];
|
|
1953
|
+
exports.CreateAsset$ = [9, n0, _CA,
|
|
1954
|
+
{ [_en]: ["dp."], [_ht]: ["POST", "/asset/agent-space/{agentSpaceId}/assets", 201] }, () => exports.CreateAssetRequest$, () => exports.CreateAssetResponse$
|
|
1955
|
+
];
|
|
1956
|
+
exports.CreateAssetFile$ = [9, n0, _CAF,
|
|
1957
|
+
{ [_en]: ["dp."], [_ht]: ["POST", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/files/{path+}", 201] }, () => exports.CreateAssetFileRequest$, () => exports.CreateAssetFileResponse$
|
|
1958
|
+
];
|
|
1694
1959
|
exports.CreateBacklogTask$ = [9, n0, _CBT,
|
|
1695
1960
|
{ [_en]: ["dp."], [_ht]: ["POST", "/backlog/agent-space/{agentSpaceId}/tasks", 201] }, () => exports.CreateBacklogTaskRequest$, () => exports.CreateBacklogTaskResponse$
|
|
1696
1961
|
];
|
|
@@ -1703,6 +1968,12 @@ exports.CreatePrivateConnection$ = [9, n0, _CPC,
|
|
|
1703
1968
|
exports.DeleteAgentSpace$ = [9, n0, _DAS,
|
|
1704
1969
|
{ [_en]: ["cp."], [_ht]: ["DELETE", "/v1/agentspaces/{agentSpaceId}", 204] }, () => exports.DeleteAgentSpaceInput$, () => exports.DeleteAgentSpaceOutput$
|
|
1705
1970
|
];
|
|
1971
|
+
exports.DeleteAsset$ = [9, n0, _DA,
|
|
1972
|
+
{ [_en]: ["dp."], [_ht]: ["DELETE", "/asset/agent-space/{agentSpaceId}/assets/{assetId}", 200] }, () => exports.DeleteAssetRequest$, () => exports.DeleteAssetResponse$
|
|
1973
|
+
];
|
|
1974
|
+
exports.DeleteAssetFile$ = [9, n0, _DAF,
|
|
1975
|
+
{ [_en]: ["dp."], [_ht]: ["DELETE", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/files/{path+}", 200] }, () => exports.DeleteAssetFileRequest$, () => exports.DeleteAssetFileResponse$
|
|
1976
|
+
];
|
|
1706
1977
|
exports.DeletePrivateConnection$ = [9, n0, _DPC,
|
|
1707
1978
|
{ [_en]: ["cp."], [_ht]: ["DELETE", "/v1/private-connections/{name}", 200] }, () => exports.DeletePrivateConnectionInput$, () => exports.DeletePrivateConnectionOutput$
|
|
1708
1979
|
];
|
|
@@ -1727,7 +1998,16 @@ exports.GetAccountUsage$ = [9, n0, _GAU,
|
|
|
1727
1998
|
exports.GetAgentSpace$ = [9, n0, _GAS,
|
|
1728
1999
|
{ [_en]: ["cp."], [_ht]: ["GET", "/v1/agentspaces/{agentSpaceId}", 200] }, () => exports.GetAgentSpaceInput$, () => exports.GetAgentSpaceOutput$
|
|
1729
2000
|
];
|
|
1730
|
-
exports.
|
|
2001
|
+
exports.GetAsset$ = [9, n0, _GA,
|
|
2002
|
+
{ [_en]: ["dp."], [_ht]: ["GET", "/asset/agent-space/{agentSpaceId}/assets/{assetId}", 200] }, () => exports.GetAssetRequest$, () => exports.GetAssetResponse$
|
|
2003
|
+
];
|
|
2004
|
+
exports.GetAssetContent$ = [9, n0, _GAC,
|
|
2005
|
+
{ [_en]: ["dp."], [_ht]: ["GET", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/content", 200] }, () => exports.GetAssetContentRequest$, () => exports.GetAssetContentResponse$
|
|
2006
|
+
];
|
|
2007
|
+
exports.GetAssetFile$ = [9, n0, _GAF,
|
|
2008
|
+
{ [_en]: ["dp."], [_ht]: ["GET", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/files/{path+}", 200] }, () => exports.GetAssetFileRequest$, () => exports.GetAssetFileResponse$
|
|
2009
|
+
];
|
|
2010
|
+
exports.GetAssociation$ = [9, n0, _GAe,
|
|
1731
2011
|
{ [_en]: ["cp."], [_ht]: ["GET", "/v1/agentspaces/{agentSpaceId}/associations/{associationId}", 200] }, () => exports.GetAssociationInput$, () => exports.GetAssociationOutput$
|
|
1732
2012
|
];
|
|
1733
2013
|
exports.GetBacklogTask$ = [9, n0, _GBT,
|
|
@@ -1745,7 +2025,19 @@ exports.GetService$ = [9, n0, _GSe,
|
|
|
1745
2025
|
exports.ListAgentSpaces$ = [9, n0, _LAS,
|
|
1746
2026
|
{ [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/list", 200] }, () => exports.ListAgentSpacesInput$, () => exports.ListAgentSpacesOutput$
|
|
1747
2027
|
];
|
|
1748
|
-
exports.
|
|
2028
|
+
exports.ListAssetFiles$ = [9, n0, _LAF,
|
|
2029
|
+
{ [_en]: ["dp."], [_ht]: ["GET", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/files", 200] }, () => exports.ListAssetFilesRequest$, () => exports.ListAssetFilesResponse$
|
|
2030
|
+
];
|
|
2031
|
+
exports.ListAssets$ = [9, n0, _LA,
|
|
2032
|
+
{ [_en]: ["dp."], [_ht]: ["GET", "/asset/agent-space/{agentSpaceId}/assets", 200] }, () => exports.ListAssetsRequest$, () => exports.ListAssetsResponse$
|
|
2033
|
+
];
|
|
2034
|
+
exports.ListAssetTypes$ = [9, n0, _LAT,
|
|
2035
|
+
{ [_en]: ["dp."], [_ht]: ["GET", "/asset/types", 200] }, () => exports.ListAssetTypesRequest$, () => exports.ListAssetTypesResponse$
|
|
2036
|
+
];
|
|
2037
|
+
exports.ListAssetVersions$ = [9, n0, _LAV,
|
|
2038
|
+
{ [_en]: ["dp."], [_ht]: ["GET", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/versions", 200] }, () => exports.ListAssetVersionsRequest$, () => exports.ListAssetVersionsResponse$
|
|
2039
|
+
];
|
|
2040
|
+
exports.ListAssociations$ = [9, n0, _LAi,
|
|
1749
2041
|
{ [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/{agentSpaceId}/associations/list", 200] }, () => exports.ListAssociationsInput$, () => exports.ListAssociationsOutput$
|
|
1750
2042
|
];
|
|
1751
2043
|
exports.ListBacklogTasks$ = [9, n0, _LBT,
|
|
@@ -1796,7 +2088,13 @@ exports.UntagResource$ = [9, n0, _URn,
|
|
|
1796
2088
|
exports.UpdateAgentSpace$ = [9, n0, _UAS,
|
|
1797
2089
|
{ [_en]: ["cp."], [_ht]: ["PATCH", "/v1/agentspaces/{agentSpaceId}", 200] }, () => exports.UpdateAgentSpaceInput$, () => exports.UpdateAgentSpaceOutput$
|
|
1798
2090
|
];
|
|
1799
|
-
exports.
|
|
2091
|
+
exports.UpdateAsset$ = [9, n0, _UA,
|
|
2092
|
+
{ [_en]: ["dp."], [_ht]: ["PATCH", "/asset/agent-space/{agentSpaceId}/assets/{assetId}", 200] }, () => exports.UpdateAssetRequest$, () => exports.UpdateAssetResponse$
|
|
2093
|
+
];
|
|
2094
|
+
exports.UpdateAssetFile$ = [9, n0, _UAF,
|
|
2095
|
+
{ [_en]: ["dp."], [_ht]: ["PATCH", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/files/{path+}", 200] }, () => exports.UpdateAssetFileRequest$, () => exports.UpdateAssetFileResponse$
|
|
2096
|
+
];
|
|
2097
|
+
exports.UpdateAssociation$ = [9, n0, _UAp,
|
|
1800
2098
|
{ [_en]: ["cp."], [_ht]: ["PATCH", "/v1/agentspaces/{agentSpaceId}/associations/{associationId}", 200] }, () => exports.UpdateAssociationInput$, () => exports.UpdateAssociationOutput$
|
|
1801
2099
|
];
|
|
1802
2100
|
exports.UpdateBacklogTask$ = [9, n0, _UBT,
|