@aws-sdk/client-devops-agent 3.1074.0 → 3.1076.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/dist-cjs/index.js CHANGED
@@ -1,22 +1,58 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { resolveEventStreamSerdeConfig } = require("@smithy/core/event-streams");
10
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
11
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
12
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
13
- const { resolveHttpAuthSchemeConfig, defaultDevOpsAgentHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
14
- const { getRuntimeConfig } = require("./runtimeConfig");
15
- const { AssociateService$, CreateAgentSpace$, CreateAsset$, CreateAssetFile$, CreateBacklogTask$, CreateChat$, CreatePrivateConnection$, CreateTrigger$, DeleteAgentSpace$, DeleteAsset$, DeleteAssetFile$, DeletePrivateConnection$, DeleteTrigger$, DeregisterService$, DescribePrivateConnection$, DisableOperatorApp$, DisassociateService$, EnableOperatorApp$, GetAccountUsage$, GetAgentSpace$, GetAsset$, GetAssetContent$, GetAssetFile$, GetAssociation$, GetBacklogTask$, GetOperatorApp$, GetRecommendation$, GetService$, GetTrigger$, ListAgentSpaces$, ListAssetFiles$, ListAssets$, ListAssetTypes$, ListAssetVersions$, ListAssociations$, ListBacklogTasks$, ListChats$, ListExecutions$, ListGoals$, ListJournalRecords$, ListPendingMessages$, ListPrivateConnections$, ListRecommendations$, ListServices$, ListTagsForResource$, ListTriggers$, ListWebhooks$, RegisterService$, SendMessage$, TagResource$, UntagResource$, UpdateAgentSpace$, UpdateAsset$, UpdateAssetFile$, UpdateAssociation$, UpdateBacklogTask$, UpdateGoal$, UpdateOperatorAppIdpConfig$, UpdatePrivateConnectionCertificate$, UpdateRecommendation$, UpdateTrigger$, ValidateAwsAssociations$ } = require("./schemas/schemas_0");
16
- __exportStar(require("./schemas/schemas_0"), exports);
17
- __exportStar(require("./models/errors"), exports);
18
- const { DevOpsAgentServiceException } = require("./models/DevOpsAgentServiceException");
19
- exports.DevOpsAgentServiceException = DevOpsAgentServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { eventStreamSerdeProvider, resolveEventStreamSerdeConfig } = require("@smithy/core/event-streams");
9
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
12
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
13
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
14
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
15
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
16
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
17
+
18
+ const defaultDevOpsAgentHttpAuthSchemeParametersProvider = async (config, context, input) => {
19
+ return {
20
+ operation: getSmithyContext(context).operation,
21
+ region: await normalizeProvider(config.region)() || (() => {
22
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
23
+ })(),
24
+ };
25
+ };
26
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
27
+ return {
28
+ schemeId: "aws.auth#sigv4",
29
+ signingProperties: {
30
+ name: "aidevops",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultDevOpsAgentHttpAuthSchemeProvider = (authParameters) => {
42
+ const options = [];
43
+ switch (authParameters.operation) {
44
+ default: {
45
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
46
+ }
47
+ }
48
+ return options;
49
+ };
50
+ const resolveHttpAuthSchemeConfig = (config) => {
51
+ const config_0 = resolveAwsSdkSigV4Config(config);
52
+ return Object.assign(config_0, {
53
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
54
+ });
55
+ };
20
56
 
21
57
  const resolveClientEndpointParameters = (options) => {
22
58
  return Object.assign(options, {
@@ -30,6 +66,2534 @@ const commonParams = {
30
66
  Region: { type: "builtInParams", name: "region" },
31
67
  };
32
68
 
69
+ var version = "3.1075.0";
70
+ var packageInfo = {
71
+ version: version};
72
+
73
+ const a = "isSet", b = { "ref": "Endpoint" }, c = [{ "ref": "Region" }];
74
+ const _data = {
75
+ conditions: [
76
+ [a, [b]],
77
+ [a, c],
78
+ ["aws.partition", c, "PartitionResult"],
79
+ ["booleanEquals", [{ ref: "UseFIPS" }, true]]
80
+ ],
81
+ results: [
82
+ [-1],
83
+ [-1, "Invalid Configuration: FIPS and custom endpoint are not supported"],
84
+ [b, {}],
85
+ ["https://aidevops-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
86
+ ["https://aidevops.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
87
+ [-1, "Invalid Configuration: Missing Region"]
88
+ ]
89
+ };
90
+ const root = 2;
91
+ const r = 100_000_000;
92
+ const nodes = new Int32Array([
93
+ -1, 1, -1,
94
+ 0, 6, 3,
95
+ 1, 4, r + 5,
96
+ 2, 5, r + 5,
97
+ 3, r + 3, r + 4,
98
+ 3, r + 1, r + 2,
99
+ ]);
100
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
101
+
102
+ const cache = new EndpointCache({
103
+ size: 50,
104
+ params: ["Endpoint", "Region", "UseFIPS"],
105
+ });
106
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
107
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
108
+ endpointParams: endpointParams,
109
+ logger: context.logger,
110
+ }));
111
+ };
112
+ customEndpointFunctions.aws = awsEndpointFunctions;
113
+
114
+ class DevOpsAgentServiceException extends ServiceException {
115
+ constructor(options) {
116
+ super(options);
117
+ Object.setPrototypeOf(this, DevOpsAgentServiceException.prototype);
118
+ }
119
+ }
120
+
121
+ class AccessDeniedException extends DevOpsAgentServiceException {
122
+ name = "AccessDeniedException";
123
+ $fault = "client";
124
+ constructor(opts) {
125
+ super({
126
+ name: "AccessDeniedException",
127
+ $fault: "client",
128
+ ...opts,
129
+ });
130
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
131
+ }
132
+ }
133
+ class ConflictException extends DevOpsAgentServiceException {
134
+ name = "ConflictException";
135
+ $fault = "client";
136
+ constructor(opts) {
137
+ super({
138
+ name: "ConflictException",
139
+ $fault: "client",
140
+ ...opts,
141
+ });
142
+ Object.setPrototypeOf(this, ConflictException.prototype);
143
+ }
144
+ }
145
+ class ContentSizeExceededException extends DevOpsAgentServiceException {
146
+ name = "ContentSizeExceededException";
147
+ $fault = "client";
148
+ constructor(opts) {
149
+ super({
150
+ name: "ContentSizeExceededException",
151
+ $fault: "client",
152
+ ...opts,
153
+ });
154
+ Object.setPrototypeOf(this, ContentSizeExceededException.prototype);
155
+ }
156
+ }
157
+ class InternalServerException extends DevOpsAgentServiceException {
158
+ name = "InternalServerException";
159
+ $fault = "server";
160
+ $retryable = {};
161
+ constructor(opts) {
162
+ super({
163
+ name: "InternalServerException",
164
+ $fault: "server",
165
+ ...opts,
166
+ });
167
+ Object.setPrototypeOf(this, InternalServerException.prototype);
168
+ }
169
+ }
170
+ class InvalidParameterException extends DevOpsAgentServiceException {
171
+ name = "InvalidParameterException";
172
+ $fault = "client";
173
+ constructor(opts) {
174
+ super({
175
+ name: "InvalidParameterException",
176
+ $fault: "client",
177
+ ...opts,
178
+ });
179
+ Object.setPrototypeOf(this, InvalidParameterException.prototype);
180
+ }
181
+ }
182
+ class ResourceNotFoundException extends DevOpsAgentServiceException {
183
+ name = "ResourceNotFoundException";
184
+ $fault = "client";
185
+ constructor(opts) {
186
+ super({
187
+ name: "ResourceNotFoundException",
188
+ $fault: "client",
189
+ ...opts,
190
+ });
191
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
192
+ }
193
+ }
194
+ class ServiceQuotaExceededException extends DevOpsAgentServiceException {
195
+ name = "ServiceQuotaExceededException";
196
+ $fault = "client";
197
+ constructor(opts) {
198
+ super({
199
+ name: "ServiceQuotaExceededException",
200
+ $fault: "client",
201
+ ...opts,
202
+ });
203
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
204
+ }
205
+ }
206
+ class ThrottlingException extends DevOpsAgentServiceException {
207
+ name = "ThrottlingException";
208
+ $fault = "client";
209
+ $retryable = {};
210
+ constructor(opts) {
211
+ super({
212
+ name: "ThrottlingException",
213
+ $fault: "client",
214
+ ...opts,
215
+ });
216
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
217
+ }
218
+ }
219
+ class ValidationException extends DevOpsAgentServiceException {
220
+ name = "ValidationException";
221
+ $fault = "client";
222
+ fieldList;
223
+ constructor(opts) {
224
+ super({
225
+ name: "ValidationException",
226
+ $fault: "client",
227
+ ...opts,
228
+ });
229
+ Object.setPrototypeOf(this, ValidationException.prototype);
230
+ this.fieldList = opts.fieldList;
231
+ }
232
+ }
233
+ class IdentityCenterServiceException extends DevOpsAgentServiceException {
234
+ name = "IdentityCenterServiceException";
235
+ $fault = "client";
236
+ underlyingErrorCode;
237
+ constructor(opts) {
238
+ super({
239
+ name: "IdentityCenterServiceException",
240
+ $fault: "client",
241
+ ...opts,
242
+ });
243
+ Object.setPrototypeOf(this, IdentityCenterServiceException.prototype);
244
+ this.underlyingErrorCode = opts.underlyingErrorCode;
245
+ }
246
+ }
247
+
248
+ const _A = "Asset";
249
+ const _AC = "AzureConfiguration";
250
+ const _ACs = "AssociationCapabilities";
251
+ const _ACss = "AssetContent";
252
+ const _ADE = "AccessDeniedException";
253
+ const _ADOC = "AzureDevOpsConfiguration";
254
+ const _AF = "AssetFile";
255
+ const _AFB = "AssetFileBody";
256
+ const _AFC = "AssetFileContent";
257
+ const _AFS = "AssetFileSummary";
258
+ const _AFSL = "AssetFileSummaryList";
259
+ const _AKV = "ApiKeyValue";
260
+ const _AL = "AssetList";
261
+ const _ALs = "AssociationsList";
262
+ const _AM = "AssistantMessage";
263
+ const _AMB = "AssistantMessageBlock";
264
+ const _AS = "AgentSpace";
265
+ const _ASD = "AdditionalServiceDetails";
266
+ const _ASI = "AssociateServiceInput";
267
+ const _ASL = "AgentSpaceList";
268
+ const _ASO = "AssociateServiceOutput";
269
+ const _ASRS = "AdditionalServiceRegistrationStep";
270
+ const _ASUC = "AssetSourceUrlContent";
271
+ const _ASs = "AssociateService";
272
+ const _ATL = "AssetTypeList";
273
+ const _ATS = "AssetTypeSummary";
274
+ const _AVM = "AssetVersionMetadata";
275
+ const _AVML = "AssetVersionMetadataList";
276
+ const _AWSC = "AWSConfiguration";
277
+ const _AZC = "AssetZipContent";
278
+ const _As = "Association";
279
+ const _CA = "CreateAsset";
280
+ const _CAF = "CreateAssetFile";
281
+ const _CAFR = "CreateAssetFileRequest";
282
+ const _CAFRr = "CreateAssetFileResponse";
283
+ const _CAR = "CreateAssetRequest";
284
+ const _CARr = "CreateAssetResponse";
285
+ const _CAS = "CreateAgentSpace";
286
+ const _CASI = "CreateAgentSpaceInput";
287
+ const _CASO = "CreateAgentSpaceOutput";
288
+ const _CBT = "CreateBacklogTask";
289
+ const _CBTR = "CreateBacklogTaskRequest";
290
+ const _CBTRr = "CreateBacklogTaskResponse";
291
+ const _CC = "CapabilityConfiguration";
292
+ const _CCR = "CreateChatRequest";
293
+ const _CCRr = "CreateChatResponse";
294
+ const _CCr = "CreateChat";
295
+ const _CE = "ConflictException";
296
+ const _CEL = "ChatExecutionList";
297
+ const _CEh = "ChatExecution";
298
+ const _CH = "CustomHeaders";
299
+ const _CHV = "CustomHeaderValue";
300
+ const _CI = "ClientId";
301
+ const _CPC = "CreatePrivateConnection";
302
+ const _CPCI = "CreatePrivateConnectionInput";
303
+ const _CPCO = "CreatePrivateConnectionOutput";
304
+ const _CS = "ClientSecret";
305
+ const _CSEE = "ContentSizeExceededException";
306
+ const _CT = "CreateTrigger";
307
+ const _CTR = "CreateTriggerRequest";
308
+ const _CTRr = "CreateTriggerResponse";
309
+ const _D = "Description";
310
+ const _DA = "DeleteAsset";
311
+ const _DAC = "DatadogAuthorizationConfig";
312
+ const _DAF = "DeleteAssetFile";
313
+ const _DAFR = "DeleteAssetFileRequest";
314
+ const _DAFRe = "DeleteAssetFileResponse";
315
+ const _DAR = "DeleteAssetRequest";
316
+ const _DARe = "DeleteAssetResponse";
317
+ const _DAS = "DeleteAgentSpace";
318
+ const _DASI = "DeleteAgentSpaceInput";
319
+ const _DASO = "DeleteAgentSpaceOutput";
320
+ const _DC = "DynatraceConfiguration";
321
+ const _DOA = "DisableOperatorApp";
322
+ const _DOACCC = "DynatraceOAuthClientCredentialsConfig";
323
+ const _DOAI = "DisableOperatorAppInput";
324
+ const _DPC = "DeletePrivateConnection";
325
+ const _DPCI = "DeletePrivateConnectionInput";
326
+ const _DPCIe = "DescribePrivateConnectionInput";
327
+ const _DPCO = "DeletePrivateConnectionOutput";
328
+ const _DPCOe = "DescribePrivateConnectionOutput";
329
+ const _DPCe = "DescribePrivateConnection";
330
+ const _DS = "DeregisterService";
331
+ const _DSAC = "DynatraceServiceAuthorizationConfig";
332
+ const _DSD = "DatadogServiceDetails";
333
+ const _DSDy = "DynatraceServiceDetails";
334
+ const _DSI = "DeregisterServiceInput";
335
+ const _DSIi = "DisassociateServiceInput";
336
+ const _DSO = "DeregisterServiceOutput";
337
+ const _DSOi = "DisassociateServiceOutput";
338
+ const _DSi = "DisassociateService";
339
+ const _DT = "DeleteTrigger";
340
+ const _DTR = "DeleteTriggerRequest";
341
+ const _DTRe = "DeleteTriggerResponse";
342
+ const _E = "Execution";
343
+ const _EA = "EmailAddress";
344
+ const _ECC = "EventChannelConfiguration";
345
+ const _ECD = "EventChannelDetails";
346
+ const _EL = "ExecutionList";
347
+ const _EOA = "EnableOperatorApp";
348
+ const _EOAI = "EnableOperatorAppInput";
349
+ const _EOAO = "EnableOperatorAppOutput";
350
+ const _EP = "ExchangeParameters";
351
+ const _EPV = "ExchangeParameterValue";
352
+ const _G = "Goal";
353
+ const _GA = "GetAsset";
354
+ const _GAC = "GetAssetContent";
355
+ const _GACR = "GetAssetContentRequest";
356
+ const _GACRe = "GetAssetContentResponse";
357
+ const _GAF = "GetAssetFile";
358
+ const _GAFR = "GetAssetFileRequest";
359
+ const _GAFRe = "GetAssetFileResponse";
360
+ const _GAI = "GetAssociationInput";
361
+ const _GAO = "GetAssociationOutput";
362
+ const _GAR = "GetAssetRequest";
363
+ const _GARe = "GetAssetResponse";
364
+ const _GAS = "GetAgentSpace";
365
+ const _GASI = "GetAgentSpaceInput";
366
+ const _GASO = "GetAgentSpaceOutput";
367
+ const _GAU = "GetAccountUsage";
368
+ const _GAUI = "GetAccountUsageInput";
369
+ const _GAUO = "GetAccountUsageOutput";
370
+ const _GAe = "GetAssociation";
371
+ const _GBT = "GetBacklogTask";
372
+ const _GBTR = "GetBacklogTaskRequest";
373
+ const _GBTRe = "GetBacklogTaskResponse";
374
+ const _GC = "GoalContent";
375
+ const _GHC = "GitHubConfiguration";
376
+ const _GL = "GoalList";
377
+ const _GLC = "GitLabConfiguration";
378
+ const _GLD = "GitLabDetails";
379
+ const _GOA = "GetOperatorApp";
380
+ const _GOAI = "GetOperatorAppInput";
381
+ const _GOAO = "GetOperatorAppOutput";
382
+ const _GR = "GetRecommendation";
383
+ const _GRR = "GetRecommendationRequest";
384
+ const _GRRe = "GetRecommendationResponse";
385
+ const _GS = "GoalSchedule";
386
+ const _GSD = "GrafanaServiceDetails";
387
+ const _GSI = "GetServiceInput";
388
+ const _GSIo = "GoalScheduleInput";
389
+ const _GSO = "GetServiceOutput";
390
+ const _GSe = "GetService";
391
+ const _GT = "GetTrigger";
392
+ const _GTR = "GetTriggerRequest";
393
+ const _GTRe = "GetTriggerResponse";
394
+ const _GW = "GenericWebhook";
395
+ const _IAC = "IamAuthConfiguration";
396
+ const _IACd = "IdcAuthConfiguration";
397
+ const _IACdp = "IdpAuthConfiguration";
398
+ const _ICS = "IdpClientSecret";
399
+ const _ICSE = "IdentityCenterServiceException";
400
+ const _IPE = "InvalidParameterException";
401
+ const _ISE = "InternalServerException";
402
+ const _JR = "JournalRecord";
403
+ const _JRL = "JournalRecordList";
404
+ const _LA = "ListAssets";
405
+ const _LAF = "ListAssetFiles";
406
+ const _LAFR = "ListAssetFilesRequest";
407
+ const _LAFRi = "ListAssetFilesResponse";
408
+ const _LAI = "ListAssociationsInput";
409
+ const _LAO = "ListAssociationsOutput";
410
+ const _LAR = "ListAssetsRequest";
411
+ const _LARi = "ListAssetsResponse";
412
+ const _LAS = "ListAgentSpaces";
413
+ const _LASI = "ListAgentSpacesInput";
414
+ const _LASO = "ListAgentSpacesOutput";
415
+ const _LAT = "ListAssetTypes";
416
+ const _LATR = "ListAssetTypesRequest";
417
+ const _LATRi = "ListAssetTypesResponse";
418
+ const _LAV = "ListAssetVersions";
419
+ const _LAVR = "ListAssetVersionsRequest";
420
+ const _LAVRi = "ListAssetVersionsResponse";
421
+ const _LAi = "ListAssociations";
422
+ const _LBT = "ListBacklogTasks";
423
+ const _LBTR = "ListBacklogTasksRequest";
424
+ const _LBTRi = "ListBacklogTasksResponse";
425
+ const _LC = "ListChats";
426
+ const _LCR = "ListChatsRequest";
427
+ const _LCRi = "ListChatsResponse";
428
+ const _LE = "ListExecutions";
429
+ const _LER = "ListExecutionsRequest";
430
+ const _LERi = "ListExecutionsResponse";
431
+ const _LG = "ListGoals";
432
+ const _LGR = "ListGoalsRequest";
433
+ const _LGRi = "ListGoalsResponse";
434
+ const _LJR = "ListJournalRecords";
435
+ const _LJRR = "ListJournalRecordsRequest";
436
+ const _LJRRi = "ListJournalRecordsResponse";
437
+ const _LPC = "ListPrivateConnections";
438
+ const _LPCI = "ListPrivateConnectionsInput";
439
+ const _LPCO = "ListPrivateConnectionsOutput";
440
+ const _LPM = "ListPendingMessages";
441
+ const _LPMR = "ListPendingMessagesRequest";
442
+ const _LPMRi = "ListPendingMessagesResponse";
443
+ const _LR = "ListRecommendations";
444
+ const _LRR = "ListRecommendationsRequest";
445
+ const _LRRi = "ListRecommendationsResponse";
446
+ const _LS = "ListServices";
447
+ const _LSI = "ListServicesInput";
448
+ const _LSO = "ListServicesOutput";
449
+ const _LT = "ListTriggers";
450
+ const _LTFR = "ListTagsForResource";
451
+ const _LTFRR = "ListTagsForResourceRequest";
452
+ const _LTFRRi = "ListTagsForResourceResponse";
453
+ const _LTR = "ListTriggersRequest";
454
+ const _LTRi = "ListTriggersResponse";
455
+ const _LW = "ListWebhooks";
456
+ const _LWI = "ListWebhooksInput";
457
+ const _LWO = "ListWebhooksOutput";
458
+ const _M = "Message";
459
+ const _MCPSAC = "MCPServerAuthorizationConfig";
460
+ const _MCPSADC = "MCPServerAuthorizationDiscoveryConfig";
461
+ const _MCPSAPIKC = "MCPServerAPIKeyConfig";
462
+ const _MCPSBTC = "MCPServerBearerTokenConfig";
463
+ const _MCPSC = "MCPServerConfiguration";
464
+ const _MCPSD = "MCPServerDetails";
465
+ const _MCPSDC = "MCPServerDatadogConfiguration";
466
+ const _MCPSGC = "MCPServerGrafanaConfiguration";
467
+ const _MCPSNRC = "MCPServerNewRelicConfiguration";
468
+ const _MCPSOACCC = "MCPServerOAuthClientCredentialsConfig";
469
+ const _MCPSOALOC = "MCPServerOAuth3LOConfig";
470
+ const _MCPSSC = "MCPServerSplunkConfiguration";
471
+ const _MCPSSVAC = "MCPServerSigV4AuthorizationConfig";
472
+ const _MCPSSVC = "MCPServerSigV4Configuration";
473
+ const _MCPSSVSD = "MCPServerSigV4ServiceDetails";
474
+ const _NRAKC = "NewRelicApiKeyConfig";
475
+ const _NRSAC = "NewRelicServiceAuthorizationConfig";
476
+ const _NRSD = "NewRelicServiceDetails";
477
+ const _OAASD = "OAuthAdditionalStepDetails";
478
+ const _PCM = "PrivateConnectionMode";
479
+ const _PCS = "PrivateConnectionSummary";
480
+ const _PCSL = "PrivateConnectionSummaryList";
481
+ const _PDAC = "PagerDutyAuthorizationConfig";
482
+ const _PDC = "PagerDutyConfiguration";
483
+ const _PDD = "PagerDutyDetails";
484
+ const _PDOACCC = "PagerDutyOAuthClientCredentialsConfig";
485
+ const _PM = "PendingMessage";
486
+ const _PMe = "PendingMessages";
487
+ const _R = "Recommendation";
488
+ const _RAAC = "RemoteAgentAuthorizationConfig";
489
+ const _RAAPIKC = "RemoteAgentAPIKeyConfig";
490
+ const _RABTC = "RemoteAgentBearerTokenConfig";
491
+ const _RAC = "RemoteAgentConfiguration";
492
+ const _RADOSD = "RegisteredAzureDevOpsServiceDetails";
493
+ const _RAID = "RegisteredAzureIdentityDetails";
494
+ const _RAOACCC = "RemoteAgentOAuthClientCredentialsConfig";
495
+ const _RASD = "RemoteAgentServiceDetails";
496
+ const _RASVAC = "RemoteAgentSigV4AuthorizationConfig";
497
+ const _RASVC = "RemoteAgentSigV4Configuration";
498
+ const _RASVSD = "RemoteAgentSigV4ServiceDetails";
499
+ const _RC = "RecommendationContent";
500
+ const _RGLSD = "RegisteredGitLabServiceDetails";
501
+ const _RGSD = "RegisteredGithubServiceDetails";
502
+ const _RGSDe = "RegisteredGrafanaServerDetails";
503
+ const _RI = "ReferenceInput";
504
+ const _RL = "RecommendationList";
505
+ const _RMCPSD = "RegisteredMCPServerDetails";
506
+ const _RMCPSSVD = "RegisteredMCPServerSigV4Details";
507
+ const _RNFE = "ResourceNotFoundException";
508
+ const _RNRD = "RegisteredNewRelicDetails";
509
+ const _RO = "ReferenceOutput";
510
+ const _RPDD = "RegisteredPagerDutyDetails";
511
+ const _RRAD = "RegisteredRemoteAgentDetails";
512
+ const _RRASVD = "RegisteredRemoteAgentSigV4Details";
513
+ const _RS = "RegisteredService";
514
+ const _RSI = "RegisterServiceInput";
515
+ const _RSL = "RegisteredServicesList";
516
+ const _RSND = "RegisteredServiceNowDetails";
517
+ const _RSO = "RegisterServiceOutput";
518
+ const _RSSD = "RegisteredSlackServiceDetails";
519
+ const _RSe = "RegisterService";
520
+ const _SAC = "SourceAwsConfiguration";
521
+ const _SC = "ScheduleCondition";
522
+ const _SCe = "ServiceConfiguration";
523
+ const _SCl = "SlackChannel";
524
+ const _SCla = "SlackConfiguration";
525
+ const _SD = "ServiceDetails";
526
+ const _SM = "SendMessage";
527
+ const _SMC = "SendMessageContext";
528
+ const _SMCBD = "SendMessageContentBlockDelta";
529
+ const _SMCBDE = "SendMessageContentBlockDeltaEvent";
530
+ const _SMCBSE = "SendMessageContentBlockStartEvent";
531
+ const _SMCBSEe = "SendMessageContentBlockStopEvent";
532
+ const _SME = "SendMessageEvents";
533
+ const _SMHE = "SendMessageHeartbeatEvent";
534
+ const _SMI = "SelfManagedInput";
535
+ const _SMIe = "ServiceManagedInput";
536
+ const _SMJD = "SendMessageJsonDelta";
537
+ const _SMR = "SendMessageRequest";
538
+ const _SMRCE = "SendMessageResponseCompletedEvent";
539
+ const _SMRCEe = "SendMessageResponseCreatedEvent";
540
+ const _SMRFE = "SendMessageResponseFailedEvent";
541
+ const _SMRIPE = "SendMessageResponseInProgressEvent";
542
+ const _SMRe = "SendMessageResponse";
543
+ const _SMSE = "SendMessageSummaryEvent";
544
+ const _SMTD = "SendMessageTextDelta";
545
+ const _SMUI = "SendMessageUsageInfo";
546
+ const _SNC = "ServiceNowConfiguration";
547
+ const _SNOACCC = "ServiceNowOAuthClientCredentialsConfig";
548
+ const _SNSAC = "ServiceNowServiceAuthorizationConfig";
549
+ const _SNSD = "ServiceNowServiceDetails";
550
+ const _SQEE = "ServiceQuotaExceededException";
551
+ const _STT = "SlackTransmissionTarget";
552
+ const _T = "Task";
553
+ const _TC = "TriggerCondition";
554
+ const _TE = "ThrottlingException";
555
+ const _TF = "TaskFilter";
556
+ const _TL = "TaskList";
557
+ const _TLr = "TriggerList";
558
+ const _TR = "TagResource";
559
+ const _TRR = "TagResourceRequest";
560
+ const _TRRa = "TagResourceResponse";
561
+ const _TV = "TokenValue";
562
+ const _Tr = "Trigger";
563
+ const _UA = "UpdateAsset";
564
+ const _UAF = "UpdateAssetFile";
565
+ const _UAFR = "UpdateAssetFileRequest";
566
+ const _UAFRp = "UpdateAssetFileResponse";
567
+ const _UAI = "UpdateAssociationInput";
568
+ const _UAO = "UpdateAssociationOutput";
569
+ const _UAR = "UpdateAssetRequest";
570
+ const _UARp = "UpdateAssetResponse";
571
+ const _UAS = "UpdateAgentSpace";
572
+ const _UASI = "UpdateAgentSpaceInput";
573
+ const _UASO = "UpdateAgentSpaceOutput";
574
+ const _UAp = "UpdateAssociation";
575
+ const _UBT = "UpdateBacklogTask";
576
+ const _UBTR = "UpdateBacklogTaskRequest";
577
+ const _UBTRp = "UpdateBacklogTaskResponse";
578
+ const _UG = "UpdateGoal";
579
+ const _UGR = "UpdateGoalRequest";
580
+ const _UGRp = "UpdateGoalResponse";
581
+ const _UM = "UsageMetric";
582
+ const _UMB = "UserMessageBlock";
583
+ const _UMs = "UserMessage";
584
+ const _UOAIC = "UpdateOperatorAppIdpConfig";
585
+ const _UOAICI = "UpdateOperatorAppIdpConfigInput";
586
+ const _UOAICO = "UpdateOperatorAppIdpConfigOutput";
587
+ const _UPCC = "UpdatePrivateConnectionCertificate";
588
+ const _UPCCI = "UpdatePrivateConnectionCertificateInput";
589
+ const _UPCCO = "UpdatePrivateConnectionCertificateOutput";
590
+ const _UR = "UserReference";
591
+ const _URR = "UntagResourceRequest";
592
+ const _URRn = "UntagResourceResponse";
593
+ const _URRp = "UpdateRecommendationRequest";
594
+ const _URRpd = "UpdateRecommendationResponse";
595
+ const _URn = "UntagResource";
596
+ const _URp = "UpdateRecommendation";
597
+ const _UT = "UpdateTrigger";
598
+ const _UTR = "UpdateTriggerRequest";
599
+ const _UTRp = "UpdateTriggerResponse";
600
+ const _VAA = "ValidateAwsAssociations";
601
+ const _VAAI = "ValidateAwsAssociationsInput";
602
+ const _VAAO = "ValidateAwsAssociationsOutput";
603
+ const _VE = "ValidationException";
604
+ const _VEF = "ValidationExceptionField";
605
+ const _VEFL = "ValidationExceptionFieldList";
606
+ const _W = "Webhook";
607
+ const _WL = "WebhooksList";
608
+ const _WS = "WebhookSecret";
609
+ const _a = "association";
610
+ const _aC = "authorizationConfig";
611
+ const _aCd = "additionalContext";
612
+ const _aD = "authorizationDiscovery";
613
+ const _aF = "authFlow";
614
+ const _aH = "authorizationHeader";
615
+ const _aI = "assetId";
616
+ const _aIc = "accountId";
617
+ const _aIp = "applicationIds";
618
+ const _aIs = "associationId";
619
+ const _aIss = "assetIds";
620
+ const _aK = "apiKey";
621
+ const _aKH = "apiKeyHeader";
622
+ const _aKN = "apiKeyName";
623
+ const _aKV = "apiKeyValue";
624
+ const _aM = "authorizationMethod";
625
+ const _aMs = "assistantMessage";
626
+ const _aPI = "alertPolicyIds";
627
+ const _aR = "accessibleResources";
628
+ const _aRA = "assumableRoleArn";
629
+ const _aS = "agentSpace";
630
+ const _aSA = "agentSpaceArn";
631
+ const _aSD = "additionalServiceDetails";
632
+ const _aSI = "agentSpaceId";
633
+ const _aST = "agentSubTask";
634
+ const _aSd = "additionalStep";
635
+ const _aSg = "agentSpaces";
636
+ const _aSu = "authScopes";
637
+ const _aT = "assetType";
638
+ const _aTc = "accountType";
639
+ const _aTg = "agentType";
640
+ const _aU = "accountUrn";
641
+ const _aUu = "authorizationUrl";
642
+ const _aV = "assetVersion";
643
+ const _ac = "action";
644
+ const _as = "asset";
645
+ const _ass = "associations";
646
+ const _aw = "aws";
647
+ const _az = "azuredevops";
648
+ const _azu = "azureidentity";
649
+ const _azur = "azure";
650
+ const _b = "body";
651
+ const _bT = "bearerToken";
652
+ const _by = "bytes";
653
+ const _c = "client";
654
+ const _cA = "createdAt";
655
+ const _cAr = "createdAfter";
656
+ const _cB = "createdBefore";
657
+ const _cBD = "contentBlockDelta";
658
+ const _cBS = "contentBlockStart";
659
+ const _cBSo = "contentBlockStop";
660
+ const _cE = "customerEmail";
661
+ const _cET = "certificateExpiryTime";
662
+ const _cH = "customHeaders";
663
+ const _cI = "clientId";
664
+ const _cIh = "channelId";
665
+ const _cN = "clientName";
666
+ const _cNh = "channelName";
667
+ const _cP = "currentPage";
668
+ const _cS = "clientSecret";
669
+ const _cT = "clientToken";
670
+ const _ca = "capabilities";
671
+ const _ce = "certificate";
672
+ const _co = "content";
673
+ const _con = "configuration";
674
+ const _cond = "condition";
675
+ const _cont = "context";
676
+ const _d = "description";
677
+ const _dR = "dnsResolution";
678
+ const _de = "delta";
679
+ const _dy = "dynatrace";
680
+ const _e = "error";
681
+ const _eC = "errorCode";
682
+ const _eCv = "eventChannel";
683
+ const _eG = "entityGuids";
684
+ const _eI = "executionId";
685
+ const _eIn = "envId";
686
+ const _eIx = "externalId";
687
+ const _eM = "errorMessage";
688
+ const _eP = "exchangeParameters";
689
+ const _eS = "executionStatus";
690
+ const _eSv = "evaluationSchedule";
691
+ const _eU = "exchangeUrl";
692
+ const _eUPCN = "exchangeUrlPrivateConnectionName";
693
+ const _en = "enabled";
694
+ const _end = "endpoint";
695
+ const _ev = "events";
696
+ const _ex = "expression";
697
+ const _exe = "executions";
698
+ const _f = "file";
699
+ const _fL = "fieldList";
700
+ const _fM = "failureMessage";
701
+ const _fST = "filterServiceTypes";
702
+ const _fSTi = "filterServiceType";
703
+ const _fi = "filter";
704
+ const _g = "goals";
705
+ const _gI = "groupId";
706
+ const _gIo = "goalId";
707
+ const _gT = "goalType";
708
+ const _gV = "goalVersion";
709
+ const _gi = "github";
710
+ const _git = "gitlab";
711
+ const _go = "goal";
712
+ const _h = "heartbeat";
713
+ const _hA = "hostAddress";
714
+ const _hE = "httpError";
715
+ const _hH = "httpHeader";
716
+ const _hLT = "hasLinkedTasks";
717
+ const _hQ = "httpQuery";
718
+ const _ht = "http";
719
+ const _i = "iam";
720
+ const _iAA = "idcApplicationArn";
721
+ const _iAPE = "ipv4AddressesPerEni";
722
+ const _iAT = "ipAddressType";
723
+ const _iCI = "idpClientId";
724
+ const _iCS = "idpClientSecret";
725
+ const _iI = "instanceIdentifier";
726
+ const _iIA = "idcInstanceArn";
727
+ const _iIn = "instanceId";
728
+ const _iT = "inputTokens";
729
+ const _iU = "issuerUrl";
730
+ const _iUn = "instanceUrl";
731
+ const _id = "idc";
732
+ const _id_ = "id";
733
+ const _idp = "idp";
734
+ const _in = "index";
735
+ const _it = "items";
736
+ const _jD = "jsonDelta";
737
+ const _kKA = "kmsKeyArn";
738
+ const _l = "locale";
739
+ const _lEA = "lastEvaluatedAt";
740
+ const _lM = "lastMessage";
741
+ const _lSTI = "lastSuccessfulTaskId";
742
+ const _lTI = "lastTaskId";
743
+ const _la = "last";
744
+ const _li = "limit";
745
+ const _m = "message";
746
+ const _mAEH = "monthlyAccountEvaluationHours";
747
+ const _mAIH = "monthlyAccountInvestigationHours";
748
+ const _mAODH = "monthlyAccountOnDemandHours";
749
+ const _mASLH = "monthlyAccountSystemLearningHours";
750
+ const _mI = "messageId";
751
+ const _mR = "maxResults";
752
+ const _mRA = "mcpRoleArn";
753
+ const _mc = "mcpserverdatadog";
754
+ const _mcp = "mcpserver";
755
+ const _mcps = "mcpserversplunk";
756
+ const _mcpse = "mcpservernewrelic";
757
+ const _mcpser = "mcpservergrafana";
758
+ const _mcpserv = "mcpserversigv4";
759
+ const _me = "metadata";
760
+ const _mes = "messages";
761
+ const _mo = "mode";
762
+ const _n = "name";
763
+ const _nT = "nextToken";
764
+ const _o = "owner";
765
+ const _oACC = "oAuthClientCredentials";
766
+ const _oALO = "oAuth3LO";
767
+ const _oARA = "operatorAppRoleArn";
768
+ const _oAU = "operatorAppUrl";
769
+ const _oI = "organizationId";
770
+ const _oN = "organizationName";
771
+ const _oOT = "opsOncallTarget";
772
+ const _oSRET = "opsSRETarget";
773
+ const _oT = "ownerType";
774
+ const _oTu = "outputTokens";
775
+ const _oa = "oauth";
776
+ const _ob = "objectives";
777
+ const _or = "order";
778
+ const _p = "path";
779
+ const _pC = "privateConnections";
780
+ const _pCN = "privateConnectionName";
781
+ const _pEI = "parentExecutionId";
782
+ const _pI = "projectId";
783
+ const _pIa = "parentId";
784
+ const _pJ = "partialJson";
785
+ const _pN = "projectName";
786
+ const _pP = "projectPath";
787
+ const _pR = "portRanges";
788
+ const _pTI = "primaryTaskId";
789
+ const _pa = "pagerduty";
790
+ const _pr = "priority";
791
+ const _pro = "provider";
792
+ const _r = "reference";
793
+ const _rA = "resourceArn";
794
+ const _rAa = "rankedAt";
795
+ const _rAo = "roleArn";
796
+ const _rC = "responseCreated";
797
+ const _rCI = "resourceConfigurationId";
798
+ const _rCe = "responseCompleted";
799
+ const _rF = "responseFailed";
800
+ const _rGI = "resourceGatewayId";
801
+ const _rI = "recommendationId";
802
+ const _rIP = "responseInProgress";
803
+ const _rIe = "repoId";
804
+ const _rIec = "recordId";
805
+ const _rIef = "referenceId";
806
+ const _rIes = "responseId";
807
+ const _rN = "repoName";
808
+ const _rP = "rankPosition";
809
+ const _rRA = "runtimeRoleArn";
810
+ const _rT = "recordType";
811
+ const _rTE = "returnToEndpoint";
812
+ const _rU = "referenceUrl";
813
+ const _rV = "recommendationVersion";
814
+ const _re = "resources";
815
+ const _rec = "recommendation";
816
+ const _reco = "records";
817
+ const _recom = "recommendations";
818
+ const _reg = "region";
819
+ const _rem = "remoteagent";
820
+ const _remo = "remoteagentsigv4";
821
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.devopsagent";
822
+ const _sA = "sourceAws";
823
+ const _sCC = "supportCodeChallenge";
824
+ const _sD = "serviceDetails";
825
+ const _sF = "sortField";
826
+ const _sGI = "securityGroupIds";
827
+ const _sI = "serviceId";
828
+ const _sIu = "subscriptionId";
829
+ const _sIub = "subnetIds";
830
+ const _sM = "supportMetadata";
831
+ const _sMe = "serviceManaged";
832
+ const _sMel = "selfManaged";
833
+ const _sN = "sequenceNumber";
834
+ const _sR = "statusReason";
835
+ const _sT = "serviceType";
836
+ const _sU = "sourceUrl";
837
+ const _sc = "scopes";
838
+ const _sch = "schedule";
839
+ const _se = "server";
840
+ const _ser = "service";
841
+ const _serv = "services";
842
+ const _servi = "servicenow";
843
+ const _sl = "slack";
844
+ const _sp = "spec";
845
+ const _st = "status";
846
+ const _sta = "state";
847
+ const _str = "streaming";
848
+ const _su = "summary";
849
+ const _sy = "system";
850
+ const _t = "tags";
851
+ const _tD = "textDelta";
852
+ const _tI = "triggerId";
853
+ const _tIa = "taskId";
854
+ const _tIe = "tenantId";
855
+ const _tIea = "teamId";
856
+ const _tK = "tagKeys";
857
+ const _tN = "tokenName";
858
+ const _tNe = "teamName";
859
+ const _tR = "toolResult";
860
+ const _tS = "taskStatus";
861
+ const _tT = "taskType";
862
+ const _tTo = "tokenType";
863
+ const _tTot = "totalTokens";
864
+ const _tTr = "transmissionTarget";
865
+ const _tU = "targetUrl";
866
+ const _tUPCN = "targetUrlPrivateConnectionName";
867
+ const _tUo = "toolUse";
868
+ const _tV = "tokenValue";
869
+ const _ta = "task";
870
+ const _tas = "tasks";
871
+ const _te = "text";
872
+ const _ti = "title";
873
+ const _to = "tools";
874
+ const _tr = "trigger";
875
+ const _ty = "type";
876
+ const _u = "url";
877
+ const _uA = "updatedAt";
878
+ const _uAR = "userActionResponse";
879
+ const _uAp = "updatedAfter";
880
+ const _uB = "updatedBefore";
881
+ const _uEC = "underlyingErrorCode";
882
+ const _uI = "userId";
883
+ const _uM = "userMessage";
884
+ const _uPET = "usagePeriodEndTime";
885
+ const _uPST = "usagePeriodStartTime";
886
+ const _uR = "userReference";
887
+ const _uT = "userType";
888
+ const _ui = "uid";
889
+ const _us = "usage";
890
+ const _v = "version";
891
+ const _vI = "vpcId";
892
+ const _w = "webhook";
893
+ const _wI = "webhookId";
894
+ const _wIRA = "webIdentityRoleArn";
895
+ const _wITA = "webIdentityTokenAudiences";
896
+ const _wIo = "workspaceId";
897
+ const _wN = "workspaceName";
898
+ const _wS = "webhookSecret";
899
+ const _wT = "webhookType";
900
+ const _wU = "webhookUrl";
901
+ const _we = "webhooks";
902
+ const _xaaaf = "x-amzn-app-auth-flow";
903
+ const _z = "zip";
904
+ const _zF = "zipFile";
905
+ const n0 = "com.amazonaws.devopsagent";
906
+ const _s_registry = TypeRegistry.for(_s);
907
+ var DevOpsAgentServiceException$ = [-3, _s, "DevOpsAgentServiceException", 0, [], []];
908
+ _s_registry.registerError(DevOpsAgentServiceException$, DevOpsAgentServiceException);
909
+ const n0_registry = TypeRegistry.for(n0);
910
+ var AccessDeniedException$ = [-3, n0, _ADE,
911
+ { [_e]: _c, [_hE]: 403 },
912
+ [_m],
913
+ [0], 1
914
+ ];
915
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
916
+ var ConflictException$ = [-3, n0, _CE,
917
+ { [_e]: _c, [_hE]: 409 },
918
+ [_m],
919
+ [0], 1
920
+ ];
921
+ n0_registry.registerError(ConflictException$, ConflictException);
922
+ var ContentSizeExceededException$ = [-3, n0, _CSEE,
923
+ { [_e]: _c, [_hE]: 413 },
924
+ [_m],
925
+ [0], 1
926
+ ];
927
+ n0_registry.registerError(ContentSizeExceededException$, ContentSizeExceededException);
928
+ var IdentityCenterServiceException$ = [-3, n0, _ICSE,
929
+ { [_e]: _c, [_hE]: 400 },
930
+ [_m, _uEC],
931
+ [0, 0], 1
932
+ ];
933
+ n0_registry.registerError(IdentityCenterServiceException$, IdentityCenterServiceException);
934
+ var InternalServerException$ = [-3, n0, _ISE,
935
+ { [_e]: _se, [_hE]: 500 },
936
+ [_m],
937
+ [0], 1
938
+ ];
939
+ n0_registry.registerError(InternalServerException$, InternalServerException);
940
+ var InvalidParameterException$ = [-3, n0, _IPE,
941
+ { [_e]: _c, [_hE]: 400 },
942
+ [_m],
943
+ [0], 1
944
+ ];
945
+ n0_registry.registerError(InvalidParameterException$, InvalidParameterException);
946
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
947
+ { [_e]: _c, [_hE]: 404 },
948
+ [_m],
949
+ [0], 1
950
+ ];
951
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
952
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
953
+ { [_e]: _c, [_hE]: 402 },
954
+ [_m],
955
+ [0], 1
956
+ ];
957
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
958
+ var ThrottlingException$ = [-3, n0, _TE,
959
+ { [_e]: _c, [_hE]: 429 },
960
+ [_m],
961
+ [0], 1
962
+ ];
963
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
964
+ var ValidationException$ = [-3, n0, _VE,
965
+ { [_e]: _c },
966
+ [_m, _fL],
967
+ [0, () => ValidationExceptionFieldList], 1
968
+ ];
969
+ n0_registry.registerError(ValidationException$, ValidationException);
970
+ const errorTypeRegistries = [
971
+ _s_registry,
972
+ n0_registry,
973
+ ];
974
+ var ApiKeyValue = [0, n0, _AKV, 8, 0];
975
+ var ClientId = [0, n0, _CI, 8, 0];
976
+ var ClientSecret = [0, n0, _CS, 8, 0];
977
+ var CustomHeaderValue = [0, n0, _CHV, 8, 0];
978
+ var Description = [0, n0, _D, 8, 0];
979
+ var EmailAddress = [0, n0, _EA, 8, 0];
980
+ var ExchangeParameterValue = [0, n0, _EPV, 8, 0];
981
+ var IdpClientSecret = [0, n0, _ICS, 8, 0];
982
+ var TokenValue = [0, n0, _TV, 8, 0];
983
+ var WebhookSecret = [0, n0, _WS, 8, 0];
984
+ var AgentSpace$ = [3, n0, _AS,
985
+ 0,
986
+ [_n, _cA, _uA, _aSI, _d, _l, _kKA],
987
+ [0, 5, 5, 0, [() => Description, 0], 0, 0], 4
988
+ ];
989
+ var Asset$ = [3, n0, _A,
990
+ 0,
991
+ [_aI, _aT, _me, _v, _cA, _uA],
992
+ [0, 0, 15, 1, 4, 4], 6
993
+ ];
994
+ var AssetFile$ = [3, n0, _AF,
995
+ 0,
996
+ [_p, _co, _v, _cA, _uA, _me],
997
+ [0, () => AssetFileBody$, 1, 4, 4, 15], 5
998
+ ];
999
+ var AssetFileContent$ = [3, n0, _AFC,
1000
+ 0,
1001
+ [_p, _b, _me],
1002
+ [0, () => AssetFileBody$, 15], 2
1003
+ ];
1004
+ var AssetFileSummary$ = [3, n0, _AFS,
1005
+ 0,
1006
+ [_p, _v, _cA, _uA, _me],
1007
+ [0, 1, 4, 4, 15], 4
1008
+ ];
1009
+ var AssetSourceUrlContent$ = [3, n0, _ASUC,
1010
+ 0,
1011
+ [_u],
1012
+ [0], 1
1013
+ ];
1014
+ var AssetTypeSummary$ = [3, n0, _ATS,
1015
+ 0,
1016
+ [_aT, _d],
1017
+ [0, 0], 2
1018
+ ];
1019
+ var AssetVersionMetadata$ = [3, n0, _AVM,
1020
+ 0,
1021
+ [_v, _cA, _uA],
1022
+ [1, 4, 4], 3
1023
+ ];
1024
+ var AssetZipContent$ = [3, n0, _AZC,
1025
+ 0,
1026
+ [_zF],
1027
+ [21], 1
1028
+ ];
1029
+ var AssociateServiceInput$ = [3, n0, _ASI,
1030
+ 0,
1031
+ [_aSI, _sI, _con, _ca],
1032
+ [[0, 1], 0, [() => ServiceConfiguration$, 0], () => AssociationCapabilities], 3
1033
+ ];
1034
+ var AssociateServiceOutput$ = [3, n0, _ASO,
1035
+ 0,
1036
+ [_a, _w],
1037
+ [[() => Association$, 0], [() => GenericWebhook$, 0]], 1
1038
+ ];
1039
+ var Association$ = [3, n0, _As,
1040
+ 0,
1041
+ [_aSI, _cA, _uA, _aIs, _sI, _con, _st, _ca],
1042
+ [0, 5, 5, 0, 0, [() => ServiceConfiguration$, 0], 0, () => AssociationCapabilities], 6
1043
+ ];
1044
+ var AWSConfiguration$ = [3, n0, _AWSC,
1045
+ 0,
1046
+ [_aRA, _aIc, _aTc],
1047
+ [0, 0, 0], 3
1048
+ ];
1049
+ var AzureConfiguration$ = [3, n0, _AC,
1050
+ 0,
1051
+ [_sIu],
1052
+ [0], 1
1053
+ ];
1054
+ var AzureDevOpsConfiguration$ = [3, n0, _ADOC,
1055
+ 0,
1056
+ [_oN, _pI, _pN],
1057
+ [0, 0, 0], 3
1058
+ ];
1059
+ var CapabilityConfiguration$ = [3, n0, _CC,
1060
+ 0,
1061
+ [_en],
1062
+ [2]
1063
+ ];
1064
+ var ChatExecution$ = [3, n0, _CEh,
1065
+ 0,
1066
+ [_eI, _cA, _uA, _su],
1067
+ [0, 4, 4, 0], 2
1068
+ ];
1069
+ var CreateAgentSpaceInput$ = [3, n0, _CASI,
1070
+ 0,
1071
+ [_n, _d, _l, _kKA, _cT, _t],
1072
+ [0, [() => Description, 0], 0, 0, [0, 4], 128 | 0], 1
1073
+ ];
1074
+ var CreateAgentSpaceOutput$ = [3, n0, _CASO,
1075
+ 0,
1076
+ [_aS, _t],
1077
+ [[() => AgentSpace$, 0], 128 | 0], 1
1078
+ ];
1079
+ var CreateAssetFileRequest$ = [3, n0, _CAFR,
1080
+ 0,
1081
+ [_aSI, _aI, _p, _co, _me, _cT],
1082
+ [[0, 1], [0, 1], [0, 1], () => AssetFileBody$, 15, [0, 4]], 4
1083
+ ];
1084
+ var CreateAssetFileResponse$ = [3, n0, _CAFRr,
1085
+ 0,
1086
+ [_f],
1087
+ [() => AssetFile$], 1
1088
+ ];
1089
+ var CreateAssetRequest$ = [3, n0, _CAR,
1090
+ 0,
1091
+ [_aSI, _aT, _co, _me, _cT],
1092
+ [[0, 1], 0, () => AssetContent$, 15, [0, 4]], 3
1093
+ ];
1094
+ var CreateAssetResponse$ = [3, n0, _CARr,
1095
+ 0,
1096
+ [_as],
1097
+ [() => Asset$], 1
1098
+ ];
1099
+ var CreateBacklogTaskRequest$ = [3, n0, _CBTR,
1100
+ 0,
1101
+ [_aSI, _tT, _ti, _pr, _r, _d, _cT],
1102
+ [[0, 1], 0, 0, 0, () => ReferenceInput$, 0, [0, 4]], 4
1103
+ ];
1104
+ var CreateBacklogTaskResponse$ = [3, n0, _CBTRr,
1105
+ 0,
1106
+ [_ta],
1107
+ [() => Task$], 1
1108
+ ];
1109
+ var CreateChatRequest$ = [3, n0, _CCR,
1110
+ 0,
1111
+ [_aSI, _uI, _uT],
1112
+ [[0, 1], [0, { [_hQ]: _uI }], [0, { [_hQ]: _uT }]], 1
1113
+ ];
1114
+ var CreateChatResponse$ = [3, n0, _CCRr,
1115
+ 0,
1116
+ [_eI, _cA],
1117
+ [0, 4], 2
1118
+ ];
1119
+ var CreatePrivateConnectionInput$ = [3, n0, _CPCI,
1120
+ 0,
1121
+ [_n, _mo, _t],
1122
+ [0, () => PrivateConnectionMode$, 128 | 0], 2
1123
+ ];
1124
+ var CreatePrivateConnectionOutput$ = [3, n0, _CPCO,
1125
+ 0,
1126
+ [_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _dR, _fM, _t],
1127
+ [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 128 | 0], 3
1128
+ ];
1129
+ var CreateTriggerRequest$ = [3, n0, _CTR,
1130
+ 0,
1131
+ [_aSI, _ty, _cond, _ac, _st, _cT],
1132
+ [[0, 1], 0, () => TriggerCondition$, 15, 0, [0, 4]], 4
1133
+ ];
1134
+ var CreateTriggerResponse$ = [3, n0, _CTRr,
1135
+ 0,
1136
+ [_tr],
1137
+ [() => Trigger$], 1
1138
+ ];
1139
+ var DatadogServiceDetails$ = [3, n0, _DSD,
1140
+ 0,
1141
+ [_n, _end, _aC, _d],
1142
+ [0, 0, () => DatadogAuthorizationConfig$, [() => Description, 0]], 3
1143
+ ];
1144
+ var DeleteAgentSpaceInput$ = [3, n0, _DASI,
1145
+ 0,
1146
+ [_aSI],
1147
+ [[0, 1]], 1
1148
+ ];
1149
+ var DeleteAgentSpaceOutput$ = [3, n0, _DASO,
1150
+ 0,
1151
+ [],
1152
+ []
1153
+ ];
1154
+ var DeleteAssetFileRequest$ = [3, n0, _DAFR,
1155
+ 0,
1156
+ [_aSI, _aI, _p],
1157
+ [[0, 1], [0, 1], [0, 1]], 3
1158
+ ];
1159
+ var DeleteAssetFileResponse$ = [3, n0, _DAFRe,
1160
+ 0,
1161
+ [],
1162
+ []
1163
+ ];
1164
+ var DeleteAssetRequest$ = [3, n0, _DAR,
1165
+ 0,
1166
+ [_aSI, _aI],
1167
+ [[0, 1], [0, 1]], 2
1168
+ ];
1169
+ var DeleteAssetResponse$ = [3, n0, _DARe,
1170
+ 0,
1171
+ [],
1172
+ []
1173
+ ];
1174
+ var DeletePrivateConnectionInput$ = [3, n0, _DPCI,
1175
+ 0,
1176
+ [_n],
1177
+ [[0, 1]], 1
1178
+ ];
1179
+ var DeletePrivateConnectionOutput$ = [3, n0, _DPCO,
1180
+ 0,
1181
+ [_n, _st],
1182
+ [0, 0], 2
1183
+ ];
1184
+ var DeleteTriggerRequest$ = [3, n0, _DTR,
1185
+ 0,
1186
+ [_aSI, _tI],
1187
+ [[0, 1], [0, 1]], 2
1188
+ ];
1189
+ var DeleteTriggerResponse$ = [3, n0, _DTRe,
1190
+ 0,
1191
+ [],
1192
+ []
1193
+ ];
1194
+ var DeregisterServiceInput$ = [3, n0, _DSI,
1195
+ 0,
1196
+ [_sI],
1197
+ [[0, 1]], 1
1198
+ ];
1199
+ var DeregisterServiceOutput$ = [3, n0, _DSO,
1200
+ 0,
1201
+ [],
1202
+ []
1203
+ ];
1204
+ var DescribePrivateConnectionInput$ = [3, n0, _DPCIe,
1205
+ 0,
1206
+ [_n],
1207
+ [[0, 1]], 1
1208
+ ];
1209
+ var DescribePrivateConnectionOutput$ = [3, n0, _DPCOe,
1210
+ 0,
1211
+ [_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _dR, _fM, _t],
1212
+ [0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 128 | 0], 3
1213
+ ];
1214
+ var DisableOperatorAppInput$ = [3, n0, _DOAI,
1215
+ 0,
1216
+ [_aSI, _aF],
1217
+ [[0, 1], [0, { [_hH]: _xaaaf }]], 1
1218
+ ];
1219
+ var DisassociateServiceInput$ = [3, n0, _DSIi,
1220
+ 0,
1221
+ [_aSI, _aIs],
1222
+ [[0, 1], [0, 1]], 2
1223
+ ];
1224
+ var DisassociateServiceOutput$ = [3, n0, _DSOi,
1225
+ 0,
1226
+ [],
1227
+ []
1228
+ ];
1229
+ var DynatraceConfiguration$ = [3, n0, _DC,
1230
+ 0,
1231
+ [_eIn, _re],
1232
+ [0, 64 | 0], 1
1233
+ ];
1234
+ var DynatraceOAuthClientCredentialsConfig$ = [3, n0, _DOACCC,
1235
+ 0,
1236
+ [_cI, _cS, _cN, _eP],
1237
+ [[() => ClientId, 0], [() => ClientSecret, 0], 0, [() => ExchangeParameters, 0]], 2
1238
+ ];
1239
+ var DynatraceServiceDetails$ = [3, n0, _DSDy,
1240
+ 0,
1241
+ [_aU, _aC],
1242
+ [0, [() => DynatraceServiceAuthorizationConfig$, 0]], 1
1243
+ ];
1244
+ var EnableOperatorAppInput$ = [3, n0, _EOAI,
1245
+ 0,
1246
+ [_aSI, _aF, _oARA, _iIA, _iU, _iCI, _iCS, _pro],
1247
+ [[0, 1], 0, 0, 0, 0, 0, [() => IdpClientSecret, 0], 0], 3
1248
+ ];
1249
+ var EnableOperatorAppOutput$ = [3, n0, _EOAO,
1250
+ 0,
1251
+ [_aSI, _oAU, _i, _id, _idp],
1252
+ [0, 0, () => IamAuthConfiguration$, () => IdcAuthConfiguration$, () => IdpAuthConfiguration$], 1
1253
+ ];
1254
+ var EventChannelConfiguration$ = [3, n0, _ECC,
1255
+ 0,
1256
+ [],
1257
+ []
1258
+ ];
1259
+ var EventChannelDetails$ = [3, n0, _ECD,
1260
+ 0,
1261
+ [_ty],
1262
+ [0]
1263
+ ];
1264
+ var Execution$ = [3, n0, _E,
1265
+ 0,
1266
+ [_aSI, _eI, _aST, _cA, _uA, _eS, _pEI, _aTg, _ui],
1267
+ [0, 0, 0, 4, 4, 0, 0, 0, 0], 6
1268
+ ];
1269
+ var GenericWebhook$ = [3, n0, _GW,
1270
+ 0,
1271
+ [_wU, _wI, _wT, _wS, _aK],
1272
+ [0, 0, 0, [() => WebhookSecret, 0], [() => ApiKeyValue, 0]]
1273
+ ];
1274
+ var GetAccountUsageInput$ = [3, n0, _GAUI,
1275
+ 0,
1276
+ [],
1277
+ []
1278
+ ];
1279
+ var GetAccountUsageOutput$ = [3, n0, _GAUO,
1280
+ 0,
1281
+ [_uPST, _uPET, _mAIH, _mAEH, _mASLH, _mAODH],
1282
+ [5, 5, () => UsageMetric$, () => UsageMetric$, () => UsageMetric$, () => UsageMetric$], 2
1283
+ ];
1284
+ var GetAgentSpaceInput$ = [3, n0, _GASI,
1285
+ 0,
1286
+ [_aSI],
1287
+ [[0, 1]], 1
1288
+ ];
1289
+ var GetAgentSpaceOutput$ = [3, n0, _GASO,
1290
+ 0,
1291
+ [_aS, _t],
1292
+ [[() => AgentSpace$, 0], 128 | 0], 1
1293
+ ];
1294
+ var GetAssetContentRequest$ = [3, n0, _GACR,
1295
+ 0,
1296
+ [_aSI, _aI, _aV],
1297
+ [[0, 1], [0, 1], [1, { [_hQ]: _aV }]], 2
1298
+ ];
1299
+ var GetAssetContentResponse$ = [3, n0, _GACRe,
1300
+ 0,
1301
+ [_co, _v],
1302
+ [() => AssetZipContent$, 1], 2
1303
+ ];
1304
+ var GetAssetFileRequest$ = [3, n0, _GAFR,
1305
+ 0,
1306
+ [_aSI, _aI, _p, _aV],
1307
+ [[0, 1], [0, 1], [0, 1], [1, { [_hQ]: _aV }]], 3
1308
+ ];
1309
+ var GetAssetFileResponse$ = [3, n0, _GAFRe,
1310
+ 0,
1311
+ [_f],
1312
+ [() => AssetFile$], 1
1313
+ ];
1314
+ var GetAssetRequest$ = [3, n0, _GAR,
1315
+ 0,
1316
+ [_aSI, _aI, _aV],
1317
+ [[0, 1], [0, 1], [1, { [_hQ]: _aV }]], 2
1318
+ ];
1319
+ var GetAssetResponse$ = [3, n0, _GARe,
1320
+ 0,
1321
+ [_as],
1322
+ [() => Asset$], 1
1323
+ ];
1324
+ var GetAssociationInput$ = [3, n0, _GAI,
1325
+ 0,
1326
+ [_aSI, _aIs],
1327
+ [[0, 1], [0, 1]], 2
1328
+ ];
1329
+ var GetAssociationOutput$ = [3, n0, _GAO,
1330
+ 0,
1331
+ [_a],
1332
+ [[() => Association$, 0]], 1
1333
+ ];
1334
+ var GetBacklogTaskRequest$ = [3, n0, _GBTR,
1335
+ 0,
1336
+ [_aSI, _tIa],
1337
+ [[0, 1], [0, 1]], 2
1338
+ ];
1339
+ var GetBacklogTaskResponse$ = [3, n0, _GBTRe,
1340
+ 0,
1341
+ [_ta],
1342
+ [() => Task$], 1
1343
+ ];
1344
+ var GetOperatorAppInput$ = [3, n0, _GOAI,
1345
+ 0,
1346
+ [_aSI],
1347
+ [[0, 1]], 1
1348
+ ];
1349
+ var GetOperatorAppOutput$ = [3, n0, _GOAO,
1350
+ 0,
1351
+ [_oAU, _i, _id, _idp],
1352
+ [0, () => IamAuthConfiguration$, () => IdcAuthConfiguration$, () => IdpAuthConfiguration$]
1353
+ ];
1354
+ var GetRecommendationRequest$ = [3, n0, _GRR,
1355
+ 0,
1356
+ [_aSI, _rI, _rV],
1357
+ [[0, 1], [0, 1], [1, { [_hQ]: _rV }]], 2
1358
+ ];
1359
+ var GetRecommendationResponse$ = [3, n0, _GRRe,
1360
+ 0,
1361
+ [_rec],
1362
+ [() => Recommendation$], 1
1363
+ ];
1364
+ var GetServiceInput$ = [3, n0, _GSI,
1365
+ 0,
1366
+ [_sI],
1367
+ [[0, 1]], 1
1368
+ ];
1369
+ var GetServiceOutput$ = [3, n0, _GSO,
1370
+ 0,
1371
+ [_ser, _t],
1372
+ [[() => RegisteredService$, 0], 128 | 0], 1
1373
+ ];
1374
+ var GetTriggerRequest$ = [3, n0, _GTR,
1375
+ 0,
1376
+ [_aSI, _tI],
1377
+ [[0, 1], [0, 1]], 2
1378
+ ];
1379
+ var GetTriggerResponse$ = [3, n0, _GTRe,
1380
+ 0,
1381
+ [_tr],
1382
+ [() => Trigger$], 1
1383
+ ];
1384
+ var GitHubConfiguration$ = [3, n0, _GHC,
1385
+ 0,
1386
+ [_rN, _rIe, _o, _oT, _iI, _rRA],
1387
+ [0, 0, 0, 0, 0, 0], 4
1388
+ ];
1389
+ var GitLabConfiguration$ = [3, n0, _GLC,
1390
+ 0,
1391
+ [_pI, _pP, _iI, _rRA],
1392
+ [0, 0, 0, 0], 2
1393
+ ];
1394
+ var GitLabDetails$ = [3, n0, _GLD,
1395
+ 0,
1396
+ [_tU, _tTo, _tV, _gI],
1397
+ [0, 0, [() => TokenValue, 0], 0], 3
1398
+ ];
1399
+ var Goal$ = [3, n0, _G,
1400
+ 0,
1401
+ [_aSA, _gIo, _ti, _co, _st, _gT, _cA, _uA, _v, _lEA, _lTI, _lSTI, _eSv],
1402
+ [0, 0, 0, () => GoalContent$, 0, 0, 5, 5, 1, 5, 0, 0, () => GoalSchedule$], 9
1403
+ ];
1404
+ var GoalContent$ = [3, n0, _GC,
1405
+ 0,
1406
+ [_d, _ob],
1407
+ [0, 0], 2
1408
+ ];
1409
+ var GoalSchedule$ = [3, n0, _GS,
1410
+ 0,
1411
+ [_sta, _ex],
1412
+ [0, 0], 1
1413
+ ];
1414
+ var GoalScheduleInput$ = [3, n0, _GSIo,
1415
+ 0,
1416
+ [_sta],
1417
+ [0], 1
1418
+ ];
1419
+ var GrafanaServiceDetails$ = [3, n0, _GSD,
1420
+ 0,
1421
+ [_n, _end, _aC, _d],
1422
+ [0, 0, [() => MCPServerAuthorizationConfig$, 0], [() => Description, 0]], 3
1423
+ ];
1424
+ var IamAuthConfiguration$ = [3, n0, _IAC,
1425
+ 0,
1426
+ [_oARA, _cA, _uA],
1427
+ [0, 5, 5], 2
1428
+ ];
1429
+ var IdcAuthConfiguration$ = [3, n0, _IACd,
1430
+ 0,
1431
+ [_oARA, _iIA, _cA, _iAA, _uA],
1432
+ [0, 0, 5, 0, 5], 3
1433
+ ];
1434
+ var IdpAuthConfiguration$ = [3, n0, _IACdp,
1435
+ 0,
1436
+ [_iU, _cI, _oARA, _pro, _cA, _uA],
1437
+ [0, 0, 0, 0, 5, 5], 5
1438
+ ];
1439
+ var JournalRecord$ = [3, n0, _JR,
1440
+ 0,
1441
+ [_aSI, _eI, _rIec, _co, _cA, _rT, _uR],
1442
+ [0, 0, 0, 15, 4, 0, () => UserReference$], 6
1443
+ ];
1444
+ var ListAgentSpacesInput$ = [3, n0, _LASI,
1445
+ 0,
1446
+ [_mR, _nT],
1447
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
1448
+ ];
1449
+ var ListAgentSpacesOutput$ = [3, n0, _LASO,
1450
+ 0,
1451
+ [_aSg, _nT],
1452
+ [[() => AgentSpaceList, 0], 0], 1
1453
+ ];
1454
+ var ListAssetFilesRequest$ = [3, n0, _LAFR,
1455
+ 0,
1456
+ [_aSI, _aI, _aV, _nT, _mR],
1457
+ [[0, 1], [0, 1], [1, { [_hQ]: _aV }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 2
1458
+ ];
1459
+ var ListAssetFilesResponse$ = [3, n0, _LAFRi,
1460
+ 0,
1461
+ [_it, _nT],
1462
+ [() => AssetFileSummaryList, 0], 1
1463
+ ];
1464
+ var ListAssetsRequest$ = [3, n0, _LAR,
1465
+ 0,
1466
+ [_aSI, _aT, _uAp, _uB, _nT, _mR],
1467
+ [[0, 1], [0, { [_hQ]: _aT }], [4, { [_hQ]: _uAp }], [4, { [_hQ]: _uB }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
1468
+ ];
1469
+ var ListAssetsResponse$ = [3, n0, _LARi,
1470
+ 0,
1471
+ [_it, _nT],
1472
+ [() => AssetList, 0], 1
1473
+ ];
1474
+ var ListAssetTypesRequest$ = [3, n0, _LATR,
1475
+ 0,
1476
+ [_nT, _mR],
1477
+ [[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]]
1478
+ ];
1479
+ var ListAssetTypesResponse$ = [3, n0, _LATRi,
1480
+ 0,
1481
+ [_it, _nT],
1482
+ [() => AssetTypeList, 0], 1
1483
+ ];
1484
+ var ListAssetVersionsRequest$ = [3, n0, _LAVR,
1485
+ 0,
1486
+ [_aSI, _aI, _mR, _nT],
1487
+ [[0, 1], [0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
1488
+ ];
1489
+ var ListAssetVersionsResponse$ = [3, n0, _LAVRi,
1490
+ 0,
1491
+ [_it, _nT],
1492
+ [() => AssetVersionMetadataList, 0], 1
1493
+ ];
1494
+ var ListAssociationsInput$ = [3, n0, _LAI,
1495
+ 0,
1496
+ [_aSI, _mR, _nT, _fST],
1497
+ [[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _fST }]], 1
1498
+ ];
1499
+ var ListAssociationsOutput$ = [3, n0, _LAO,
1500
+ 0,
1501
+ [_ass, _nT],
1502
+ [[() => AssociationsList, 0], 0], 1
1503
+ ];
1504
+ var ListBacklogTasksRequest$ = [3, n0, _LBTR,
1505
+ 0,
1506
+ [_aSI, _fi, _li, _nT, _sF, _or],
1507
+ [[0, 1], () => TaskFilter$, 1, 0, 0, 0], 1
1508
+ ];
1509
+ var ListBacklogTasksResponse$ = [3, n0, _LBTRi,
1510
+ 0,
1511
+ [_tas, _nT],
1512
+ [() => TaskList, 0], 1
1513
+ ];
1514
+ var ListChatsRequest$ = [3, n0, _LCR,
1515
+ 0,
1516
+ [_aSI, _uI, _mR, _nT],
1517
+ [[0, 1], [0, { [_hQ]: _uI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 1
1518
+ ];
1519
+ var ListChatsResponse$ = [3, n0, _LCRi,
1520
+ 0,
1521
+ [_exe, _nT],
1522
+ [() => ChatExecutionList, 0], 1
1523
+ ];
1524
+ var ListExecutionsRequest$ = [3, n0, _LER,
1525
+ 0,
1526
+ [_aSI, _tIa, _li, _nT],
1527
+ [[0, 1], 0, 1, 0], 2
1528
+ ];
1529
+ var ListExecutionsResponse$ = [3, n0, _LERi,
1530
+ 0,
1531
+ [_exe, _nT],
1532
+ [() => ExecutionList, 0], 1
1533
+ ];
1534
+ var ListGoalsRequest$ = [3, n0, _LGR,
1535
+ 0,
1536
+ [_aSI, _st, _gT, _li, _nT],
1537
+ [[0, 1], 0, 0, 1, 0], 1
1538
+ ];
1539
+ var ListGoalsResponse$ = [3, n0, _LGRi,
1540
+ 0,
1541
+ [_g, _nT],
1542
+ [() => GoalList, 0], 1
1543
+ ];
1544
+ var ListJournalRecordsRequest$ = [3, n0, _LJRR,
1545
+ 0,
1546
+ [_aSI, _eI, _li, _nT, _rT, _or],
1547
+ [[0, 1], 0, 1, 0, 0, 0], 2
1548
+ ];
1549
+ var ListJournalRecordsResponse$ = [3, n0, _LJRRi,
1550
+ 0,
1551
+ [_reco, _nT],
1552
+ [() => JournalRecordList, 0], 1
1553
+ ];
1554
+ var ListPendingMessagesRequest$ = [3, n0, _LPMR,
1555
+ 0,
1556
+ [_aSI, _eI],
1557
+ [[0, 1], 0], 2
1558
+ ];
1559
+ var ListPendingMessagesResponse$ = [3, n0, _LPMRi,
1560
+ 0,
1561
+ [_aSI, _eI, _mes, _cA],
1562
+ [0, 0, () => PendingMessages, 4], 4
1563
+ ];
1564
+ var ListPrivateConnectionsInput$ = [3, n0, _LPCI,
1565
+ 0,
1566
+ [],
1567
+ []
1568
+ ];
1569
+ var ListPrivateConnectionsOutput$ = [3, n0, _LPCO,
1570
+ 0,
1571
+ [_pC],
1572
+ [() => PrivateConnectionSummaryList], 1
1573
+ ];
1574
+ var ListRecommendationsRequest$ = [3, n0, _LRR,
1575
+ 0,
1576
+ [_aSI, _tIa, _gIo, _st, _pr, _li, _nT],
1577
+ [[0, 1], 0, 0, 0, 0, 1, 0], 1
1578
+ ];
1579
+ var ListRecommendationsResponse$ = [3, n0, _LRRi,
1580
+ 0,
1581
+ [_recom, _nT],
1582
+ [() => RecommendationList, 0], 1
1583
+ ];
1584
+ var ListServicesInput$ = [3, n0, _LSI,
1585
+ 0,
1586
+ [_mR, _nT, _fSTi],
1587
+ [[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _fSTi }]]
1588
+ ];
1589
+ var ListServicesOutput$ = [3, n0, _LSO,
1590
+ 0,
1591
+ [_serv, _nT],
1592
+ [[() => RegisteredServicesList, 0], 0], 1
1593
+ ];
1594
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
1595
+ 0,
1596
+ [_rA],
1597
+ [[0, 1]], 1
1598
+ ];
1599
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
1600
+ 0,
1601
+ [_t],
1602
+ [128 | 0], 1
1603
+ ];
1604
+ var ListTriggersRequest$ = [3, n0, _LTR,
1605
+ 0,
1606
+ [_aSI, _st, _nT, _mR],
1607
+ [[0, 1], [0, { [_hQ]: _st }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
1608
+ ];
1609
+ var ListTriggersResponse$ = [3, n0, _LTRi,
1610
+ 0,
1611
+ [_it, _nT],
1612
+ [() => TriggerList, 0], 1
1613
+ ];
1614
+ var ListWebhooksInput$ = [3, n0, _LWI,
1615
+ 0,
1616
+ [_aSI, _aIs],
1617
+ [[0, 1], [0, 1]], 2
1618
+ ];
1619
+ var ListWebhooksOutput$ = [3, n0, _LWO,
1620
+ 0,
1621
+ [_we],
1622
+ [() => WebhooksList], 1
1623
+ ];
1624
+ var MCPServerAPIKeyConfig$ = [3, n0, _MCPSAPIKC,
1625
+ 0,
1626
+ [_aKN, _aKV, _aKH],
1627
+ [0, [() => ApiKeyValue, 0], 0], 3
1628
+ ];
1629
+ var MCPServerAuthorizationDiscoveryConfig$ = [3, n0, _MCPSADC,
1630
+ 0,
1631
+ [_rTE],
1632
+ [0], 1
1633
+ ];
1634
+ var MCPServerBearerTokenConfig$ = [3, n0, _MCPSBTC,
1635
+ 0,
1636
+ [_tN, _tV, _aH],
1637
+ [0, [() => TokenValue, 0], 0], 2
1638
+ ];
1639
+ var MCPServerConfiguration$ = [3, n0, _MCPSC,
1640
+ 0,
1641
+ [_to],
1642
+ [64 | 0], 1
1643
+ ];
1644
+ var MCPServerDatadogConfiguration$ = [3, n0, _MCPSDC,
1645
+ 0,
1646
+ [],
1647
+ []
1648
+ ];
1649
+ var MCPServerDetails$ = [3, n0, _MCPSD,
1650
+ 0,
1651
+ [_n, _end, _aC, _d],
1652
+ [0, 0, [() => MCPServerAuthorizationConfig$, 0], [() => Description, 0]], 3
1653
+ ];
1654
+ var MCPServerGrafanaConfiguration$ = [3, n0, _MCPSGC,
1655
+ 0,
1656
+ [_end, _oI, _to],
1657
+ [0, 0, 64 | 0], 1
1658
+ ];
1659
+ var MCPServerNewRelicConfiguration$ = [3, n0, _MCPSNRC,
1660
+ 0,
1661
+ [_aIc, _end],
1662
+ [0, 0], 2
1663
+ ];
1664
+ var MCPServerOAuth3LOConfig$ = [3, n0, _MCPSOALOC,
1665
+ 0,
1666
+ [_cI, _rTE, _aUu, _eU, _cN, _eP, _cS, _sCC, _sc],
1667
+ [[() => ClientId, 0], 0, 0, 0, 0, [() => ExchangeParameters, 0], [() => ClientSecret, 0], 2, 64 | 0], 4
1668
+ ];
1669
+ var MCPServerOAuthClientCredentialsConfig$ = [3, n0, _MCPSOACCC,
1670
+ 0,
1671
+ [_cI, _cS, _eU, _cN, _eP, _sc],
1672
+ [[() => ClientId, 0], [() => ClientSecret, 0], 0, 0, [() => ExchangeParameters, 0], 64 | 0], 3
1673
+ ];
1674
+ var MCPServerSigV4AuthorizationConfig$ = [3, n0, _MCPSSVAC,
1675
+ 0,
1676
+ [_reg, _ser, _rAo, _mRA, _cH],
1677
+ [0, 0, 0, 0, [() => CustomHeaders, 0]], 2
1678
+ ];
1679
+ var MCPServerSigV4Configuration$ = [3, n0, _MCPSSVC,
1680
+ 0,
1681
+ [_to],
1682
+ [64 | 0], 1
1683
+ ];
1684
+ var MCPServerSigV4ServiceDetails$ = [3, n0, _MCPSSVSD,
1685
+ 0,
1686
+ [_n, _end, _aC, _d],
1687
+ [0, 0, [() => MCPServerSigV4AuthorizationConfig$, 0], [() => Description, 0]], 3
1688
+ ];
1689
+ var MCPServerSplunkConfiguration$ = [3, n0, _MCPSSC,
1690
+ 0,
1691
+ [],
1692
+ []
1693
+ ];
1694
+ var NewRelicApiKeyConfig$ = [3, n0, _NRAKC,
1695
+ 0,
1696
+ [_aK, _aIc, _reg, _aIp, _eG, _aPI],
1697
+ [[() => ApiKeyValue, 0], 0, 0, 64 | 0, 64 | 0, 64 | 0], 3
1698
+ ];
1699
+ var NewRelicServiceDetails$ = [3, n0, _NRSD,
1700
+ 0,
1701
+ [_aC],
1702
+ [[() => NewRelicServiceAuthorizationConfig$, 0]], 1
1703
+ ];
1704
+ var OAuthAdditionalStepDetails$ = [3, n0, _OAASD,
1705
+ 0,
1706
+ [_aUu],
1707
+ [0], 1
1708
+ ];
1709
+ var PagerDutyConfiguration$ = [3, n0, _PDC,
1710
+ 0,
1711
+ [_serv, _cE],
1712
+ [64 | 0, [() => EmailAddress, 0]], 2
1713
+ ];
1714
+ var PagerDutyDetails$ = [3, n0, _PDD,
1715
+ 0,
1716
+ [_sc, _aC],
1717
+ [64 | 0, [() => PagerDutyAuthorizationConfig$, 0]], 2
1718
+ ];
1719
+ var PagerDutyOAuthClientCredentialsConfig$ = [3, n0, _PDOACCC,
1720
+ 0,
1721
+ [_cI, _cS, _cN, _eP],
1722
+ [[() => ClientId, 0], [() => ClientSecret, 0], 0, [() => ExchangeParameters, 0]], 2
1723
+ ];
1724
+ var PendingMessage$ = [3, n0, _PM,
1725
+ 0,
1726
+ [_mI, _m],
1727
+ [0, () => Message$], 2
1728
+ ];
1729
+ var PrivateConnectionSummary$ = [3, n0, _PCS,
1730
+ 0,
1731
+ [_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _dR, _fM],
1732
+ [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], 3
1733
+ ];
1734
+ var Recommendation$ = [3, n0, _R,
1735
+ 0,
1736
+ [_aSA, _rI, _tIa, _ti, _co, _st, _pr, _cA, _uA, _v, _gIo, _gV, _aCd, _rP, _rAa],
1737
+ [0, 0, 0, 0, () => RecommendationContent$, 0, 0, 5, 5, 1, 0, 1, 0, 1, 5], 10
1738
+ ];
1739
+ var RecommendationContent$ = [3, n0, _RC,
1740
+ 0,
1741
+ [_su, _sp],
1742
+ [0, 0], 1
1743
+ ];
1744
+ var ReferenceInput$ = [3, n0, _RI,
1745
+ 0,
1746
+ [_sy, _rIef, _rU, _aIs, _ti],
1747
+ [0, 0, 0, 0, 0], 4
1748
+ ];
1749
+ var ReferenceOutput$ = [3, n0, _RO,
1750
+ 0,
1751
+ [_sy, _rIef, _rU, _aIs, _ti],
1752
+ [0, 0, 0, 0, 0], 4
1753
+ ];
1754
+ var RegisteredAzureDevOpsServiceDetails$ = [3, n0, _RADOSD,
1755
+ 0,
1756
+ [_oN],
1757
+ [0], 1
1758
+ ];
1759
+ var RegisteredAzureIdentityDetails$ = [3, n0, _RAID,
1760
+ 0,
1761
+ [_tIe, _cI, _wIRA, _wITA],
1762
+ [0, 0, 0, 64 | 0], 4
1763
+ ];
1764
+ var RegisteredGithubServiceDetails$ = [3, n0, _RGSD,
1765
+ 0,
1766
+ [_o, _oT, _tU],
1767
+ [0, 0, 0], 2
1768
+ ];
1769
+ var RegisteredGitLabServiceDetails$ = [3, n0, _RGLSD,
1770
+ 0,
1771
+ [_tU, _tTo, _gI],
1772
+ [0, 0, 0], 2
1773
+ ];
1774
+ var RegisteredGrafanaServerDetails$ = [3, n0, _RGSDe,
1775
+ 0,
1776
+ [_end, _aM],
1777
+ [0, 0], 2
1778
+ ];
1779
+ var RegisteredMCPServerDetails$ = [3, n0, _RMCPSD,
1780
+ 0,
1781
+ [_n, _end, _aM, _d, _aKH],
1782
+ [0, 0, 0, [() => Description, 0], 0], 3
1783
+ ];
1784
+ var RegisteredMCPServerSigV4Details$ = [3, n0, _RMCPSSVD,
1785
+ 0,
1786
+ [_n, _end, _reg, _ser, _rAo, _d, _mRA, _cH],
1787
+ [0, 0, 0, 0, 0, [() => Description, 0], 0, [() => CustomHeaders, 0]], 5
1788
+ ];
1789
+ var RegisteredNewRelicDetails$ = [3, n0, _RNRD,
1790
+ 0,
1791
+ [_aIc, _reg, _d],
1792
+ [0, 0, [() => Description, 0]], 2
1793
+ ];
1794
+ var RegisteredPagerDutyDetails$ = [3, n0, _RPDD,
1795
+ 0,
1796
+ [_sc],
1797
+ [64 | 0], 1
1798
+ ];
1799
+ var RegisteredRemoteAgentDetails$ = [3, n0, _RRAD,
1800
+ 0,
1801
+ [_n, _end, _aM, _d, _aKH],
1802
+ [0, 0, 0, [() => Description, 0], 0], 3
1803
+ ];
1804
+ var RegisteredRemoteAgentSigV4Details$ = [3, n0, _RRASVD,
1805
+ 0,
1806
+ [_n, _end, _reg, _ser, _d, _rAo],
1807
+ [0, 0, 0, 0, [() => Description, 0], 0], 4
1808
+ ];
1809
+ var RegisteredService$ = [3, n0, _RS,
1810
+ 0,
1811
+ [_sI, _sT, _n, _aR, _aSD, _kKA, _pCN],
1812
+ [0, 0, 0, 64 | 15, [() => AdditionalServiceDetails$, 0], 0, 0], 2
1813
+ ];
1814
+ var RegisteredServiceNowDetails$ = [3, n0, _RSND,
1815
+ 0,
1816
+ [_iUn],
1817
+ [0]
1818
+ ];
1819
+ var RegisteredSlackServiceDetails$ = [3, n0, _RSSD,
1820
+ 0,
1821
+ [_tIea, _tNe],
1822
+ [0, 0], 2
1823
+ ];
1824
+ var RegisterServiceInput$ = [3, n0, _RSI,
1825
+ 0,
1826
+ [_ser, _sD, _kKA, _pCN, _tUPCN, _eUPCN, _n, _t],
1827
+ [[0, 1], [() => ServiceDetails$, 0], 0, 0, 0, 0, 0, 128 | 0], 2
1828
+ ];
1829
+ var RegisterServiceOutput$ = [3, n0, _RSO,
1830
+ 0,
1831
+ [_sI, _aSd, _kKA, _t],
1832
+ [0, () => AdditionalServiceRegistrationStep$, 0, 128 | 0]
1833
+ ];
1834
+ var RemoteAgentAPIKeyConfig$ = [3, n0, _RAAPIKC,
1835
+ 0,
1836
+ [_aKN, _aKV, _aKH],
1837
+ [0, [() => ApiKeyValue, 0], 0], 3
1838
+ ];
1839
+ var RemoteAgentBearerTokenConfig$ = [3, n0, _RABTC,
1840
+ 0,
1841
+ [_tN, _tV, _aH],
1842
+ [0, [() => TokenValue, 0], 0], 2
1843
+ ];
1844
+ var RemoteAgentConfiguration$ = [3, n0, _RAC,
1845
+ 0,
1846
+ [],
1847
+ []
1848
+ ];
1849
+ var RemoteAgentOAuthClientCredentialsConfig$ = [3, n0, _RAOACCC,
1850
+ 0,
1851
+ [_cI, _cS, _eU, _cN, _eP, _sc],
1852
+ [[() => ClientId, 0], [() => ClientSecret, 0], 0, 0, [() => ExchangeParameters, 0], 64 | 0], 3
1853
+ ];
1854
+ var RemoteAgentServiceDetails$ = [3, n0, _RASD,
1855
+ 0,
1856
+ [_n, _end, _aC, _d],
1857
+ [0, 0, [() => RemoteAgentAuthorizationConfig$, 0], [() => Description, 0]], 3
1858
+ ];
1859
+ var RemoteAgentSigV4AuthorizationConfig$ = [3, n0, _RASVAC,
1860
+ 0,
1861
+ [_reg, _ser, _rAo],
1862
+ [0, 0, 0], 2
1863
+ ];
1864
+ var RemoteAgentSigV4Configuration$ = [3, n0, _RASVC,
1865
+ 0,
1866
+ [],
1867
+ []
1868
+ ];
1869
+ var RemoteAgentSigV4ServiceDetails$ = [3, n0, _RASVSD,
1870
+ 0,
1871
+ [_n, _end, _aC, _d],
1872
+ [0, 0, () => RemoteAgentSigV4AuthorizationConfig$, [() => Description, 0]], 3
1873
+ ];
1874
+ var ScheduleCondition$ = [3, n0, _SC,
1875
+ 0,
1876
+ [_ex],
1877
+ [0], 1
1878
+ ];
1879
+ var SelfManagedInput$ = [3, n0, _SMI,
1880
+ 0,
1881
+ [_rCI, _ce],
1882
+ [0, 0], 1
1883
+ ];
1884
+ var SendMessageContentBlockDeltaEvent$ = [3, n0, _SMCBDE,
1885
+ 0,
1886
+ [_in, _de, _sN],
1887
+ [1, () => SendMessageContentBlockDelta$, 1]
1888
+ ];
1889
+ var SendMessageContentBlockStartEvent$ = [3, n0, _SMCBSE,
1890
+ 0,
1891
+ [_in, _ty, _id_, _pIa, _sN],
1892
+ [1, 0, 0, 0, 1]
1893
+ ];
1894
+ var SendMessageContentBlockStopEvent$ = [3, n0, _SMCBSEe,
1895
+ 0,
1896
+ [_in, _ty, _te, _la, _sN],
1897
+ [1, 0, 0, 2, 1]
1898
+ ];
1899
+ var SendMessageContext$ = [3, n0, _SMC,
1900
+ 0,
1901
+ [_cP, _lM, _uAR],
1902
+ [0, 0, 0]
1903
+ ];
1904
+ var SendMessageHeartbeatEvent$ = [3, n0, _SMHE,
1905
+ 0,
1906
+ [],
1907
+ []
1908
+ ];
1909
+ var SendMessageJsonDelta$ = [3, n0, _SMJD,
1910
+ 0,
1911
+ [_pJ],
1912
+ [0]
1913
+ ];
1914
+ var SendMessageRequest$ = [3, n0, _SMR,
1915
+ 0,
1916
+ [_aSI, _eI, _co, _cont, _uI, _aIss],
1917
+ [[0, 1], 0, 0, () => SendMessageContext$, 0, 64 | 0], 3
1918
+ ];
1919
+ var SendMessageResponse$ = [3, n0, _SMRe,
1920
+ 0,
1921
+ [_ev],
1922
+ [[() => SendMessageEvents$, 16]], 1
1923
+ ];
1924
+ var SendMessageResponseCompletedEvent$ = [3, n0, _SMRCE,
1925
+ 0,
1926
+ [_rIes, _us, _sN],
1927
+ [0, () => SendMessageUsageInfo$, 1]
1928
+ ];
1929
+ var SendMessageResponseCreatedEvent$ = [3, n0, _SMRCEe,
1930
+ 0,
1931
+ [_rIes, _sN],
1932
+ [0, 1]
1933
+ ];
1934
+ var SendMessageResponseFailedEvent$ = [3, n0, _SMRFE,
1935
+ 0,
1936
+ [_rIes, _eC, _eM, _sN],
1937
+ [0, 0, 0, 1]
1938
+ ];
1939
+ var SendMessageResponseInProgressEvent$ = [3, n0, _SMRIPE,
1940
+ 0,
1941
+ [_rIes, _sN],
1942
+ [0, 1]
1943
+ ];
1944
+ var SendMessageSummaryEvent$ = [3, n0, _SMSE,
1945
+ 0,
1946
+ [_co, _sN],
1947
+ [0, 1]
1948
+ ];
1949
+ var SendMessageTextDelta$ = [3, n0, _SMTD,
1950
+ 0,
1951
+ [_te],
1952
+ [0]
1953
+ ];
1954
+ var SendMessageUsageInfo$ = [3, n0, _SMUI,
1955
+ 0,
1956
+ [_iT, _oTu, _tTot],
1957
+ [1, 1, 1]
1958
+ ];
1959
+ var ServiceManagedInput$ = [3, n0, _SMIe,
1960
+ 0,
1961
+ [_hA, _vI, _sIub, _sGI, _iAT, _iAPE, _pR, _ce, _dR],
1962
+ [0, 0, 64 | 0, 64 | 0, 0, 1, 64 | 0, 0, 0], 3
1963
+ ];
1964
+ var ServiceNowConfiguration$ = [3, n0, _SNC,
1965
+ 0,
1966
+ [_iIn, _aSu],
1967
+ [0, 64 | 0]
1968
+ ];
1969
+ var ServiceNowOAuthClientCredentialsConfig$ = [3, n0, _SNOACCC,
1970
+ 0,
1971
+ [_cI, _cS, _cN, _eP],
1972
+ [[() => ClientId, 0], [() => ClientSecret, 0], 0, [() => ExchangeParameters, 0]], 2
1973
+ ];
1974
+ var ServiceNowServiceDetails$ = [3, n0, _SNSD,
1975
+ 0,
1976
+ [_iUn, _aC],
1977
+ [0, [() => ServiceNowServiceAuthorizationConfig$, 0]], 1
1978
+ ];
1979
+ var SlackChannel$ = [3, n0, _SCl,
1980
+ 0,
1981
+ [_cIh, _cNh],
1982
+ [0, 0], 1
1983
+ ];
1984
+ var SlackConfiguration$ = [3, n0, _SCla,
1985
+ 0,
1986
+ [_wIo, _wN, _tTr],
1987
+ [0, 0, () => SlackTransmissionTarget$], 3
1988
+ ];
1989
+ var SlackTransmissionTarget$ = [3, n0, _STT,
1990
+ 0,
1991
+ [_oOT, _oSRET],
1992
+ [() => SlackChannel$, () => SlackChannel$], 1
1993
+ ];
1994
+ var SourceAwsConfiguration$ = [3, n0, _SAC,
1995
+ 0,
1996
+ [_aIc, _aTc, _aRA, _eIx],
1997
+ [0, 0, 0, 0], 3
1998
+ ];
1999
+ var TagResourceRequest$ = [3, n0, _TRR,
2000
+ 0,
2001
+ [_rA, _t],
2002
+ [[0, 1], 128 | 0], 2
2003
+ ];
2004
+ var TagResourceResponse$ = [3, n0, _TRRa,
2005
+ 0,
2006
+ [],
2007
+ []
2008
+ ];
2009
+ var Task$ = [3, n0, _T,
2010
+ 0,
2011
+ [_aSI, _tIa, _ti, _tT, _pr, _st, _cA, _uA, _v, _eI, _d, _r, _sM, _me, _pTI, _sR, _hLT],
2012
+ [0, 0, 0, 0, 0, 0, 5, 5, 1, 0, 0, () => ReferenceOutput$, 15, 15, 0, 0, 2], 9
2013
+ ];
2014
+ var TaskFilter$ = [3, n0, _TF,
2015
+ 0,
2016
+ [_cAr, _cB, _pr, _st, _tT, _pTI],
2017
+ [5, 5, 64 | 0, 64 | 0, 64 | 0, 0]
2018
+ ];
2019
+ var Trigger$ = [3, n0, _Tr,
2020
+ 0,
2021
+ [_tI, _aSI, _ty, _cond, _ac, _st, _cA, _uA],
2022
+ [0, 0, 0, () => TriggerCondition$, 15, 0, 4, 4], 8
2023
+ ];
2024
+ var UntagResourceRequest$ = [3, n0, _URR,
2025
+ 0,
2026
+ [_rA, _tK],
2027
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
2028
+ ];
2029
+ var UntagResourceResponse$ = [3, n0, _URRn,
2030
+ 0,
2031
+ [],
2032
+ []
2033
+ ];
2034
+ var UpdateAgentSpaceInput$ = [3, n0, _UASI,
2035
+ 0,
2036
+ [_aSI, _n, _d, _l],
2037
+ [[0, 1], 0, [() => Description, 0], 0], 1
2038
+ ];
2039
+ var UpdateAgentSpaceOutput$ = [3, n0, _UASO,
2040
+ 0,
2041
+ [_aS],
2042
+ [[() => AgentSpace$, 0]], 1
2043
+ ];
2044
+ var UpdateAssetFileRequest$ = [3, n0, _UAFR,
2045
+ 0,
2046
+ [_aSI, _aI, _p, _co, _me, _cT],
2047
+ [[0, 1], [0, 1], [0, 1], () => AssetFileBody$, 15, [0, 4]], 3
2048
+ ];
2049
+ var UpdateAssetFileResponse$ = [3, n0, _UAFRp,
2050
+ 0,
2051
+ [_f],
2052
+ [() => AssetFile$], 1
2053
+ ];
2054
+ var UpdateAssetRequest$ = [3, n0, _UAR,
2055
+ 0,
2056
+ [_aSI, _aI, _me, _co, _cT],
2057
+ [[0, 1], [0, 1], 15, () => AssetContent$, [0, 4]], 2
2058
+ ];
2059
+ var UpdateAssetResponse$ = [3, n0, _UARp,
2060
+ 0,
2061
+ [_as],
2062
+ [() => Asset$], 1
2063
+ ];
2064
+ var UpdateAssociationInput$ = [3, n0, _UAI,
2065
+ 0,
2066
+ [_aSI, _aIs, _con, _ca],
2067
+ [[0, 1], [0, 1], [() => ServiceConfiguration$, 0], () => AssociationCapabilities], 3
2068
+ ];
2069
+ var UpdateAssociationOutput$ = [3, n0, _UAO,
2070
+ 0,
2071
+ [_a, _w],
2072
+ [[() => Association$, 0], [() => GenericWebhook$, 0]], 1
2073
+ ];
2074
+ var UpdateBacklogTaskRequest$ = [3, n0, _UBTR,
2075
+ 0,
2076
+ [_aSI, _tIa, _tS, _cT],
2077
+ [[0, 1], [0, 1], 0, [0, 4]], 2
2078
+ ];
2079
+ var UpdateBacklogTaskResponse$ = [3, n0, _UBTRp,
2080
+ 0,
2081
+ [_ta],
2082
+ [() => Task$], 1
2083
+ ];
2084
+ var UpdateGoalRequest$ = [3, n0, _UGR,
2085
+ 0,
2086
+ [_aSI, _gIo, _eSv, _cT],
2087
+ [[0, 1], [0, 1], () => GoalScheduleInput$, [0, 4]], 2
2088
+ ];
2089
+ var UpdateGoalResponse$ = [3, n0, _UGRp,
2090
+ 0,
2091
+ [_go],
2092
+ [() => Goal$], 1
2093
+ ];
2094
+ var UpdateOperatorAppIdpConfigInput$ = [3, n0, _UOAICI,
2095
+ 0,
2096
+ [_aSI, _iCS],
2097
+ [[0, 1], [() => IdpClientSecret, 0]], 1
2098
+ ];
2099
+ var UpdateOperatorAppIdpConfigOutput$ = [3, n0, _UOAICO,
2100
+ 0,
2101
+ [_aSI, _idp],
2102
+ [0, () => IdpAuthConfiguration$], 2
2103
+ ];
2104
+ var UpdatePrivateConnectionCertificateInput$ = [3, n0, _UPCCI,
2105
+ 0,
2106
+ [_n, _ce],
2107
+ [[0, 1], 0], 2
2108
+ ];
2109
+ var UpdatePrivateConnectionCertificateOutput$ = [3, n0, _UPCCO,
2110
+ 0,
2111
+ [_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _dR, _fM],
2112
+ [0, 0, 0, 0, 0, 0, 0, 5, 0, 0], 3
2113
+ ];
2114
+ var UpdateRecommendationRequest$ = [3, n0, _URRp,
2115
+ 0,
2116
+ [_aSI, _rI, _st, _aCd, _cT],
2117
+ [[0, 1], [0, 1], 0, 0, [0, 4]], 2
2118
+ ];
2119
+ var UpdateRecommendationResponse$ = [3, n0, _URRpd,
2120
+ 0,
2121
+ [_rec],
2122
+ [() => Recommendation$], 1
2123
+ ];
2124
+ var UpdateTriggerRequest$ = [3, n0, _UTR,
2125
+ 0,
2126
+ [_aSI, _tI, _st, _cT],
2127
+ [[0, 1], [0, 1], 0, [0, 4]], 2
2128
+ ];
2129
+ var UpdateTriggerResponse$ = [3, n0, _UTRp,
2130
+ 0,
2131
+ [_tr],
2132
+ [() => Trigger$], 1
2133
+ ];
2134
+ var UsageMetric$ = [3, n0, _UM,
2135
+ 0,
2136
+ [_li, _us],
2137
+ [1, 1], 2
2138
+ ];
2139
+ var UserReference$ = [3, n0, _UR,
2140
+ 0,
2141
+ [_uI, _uT],
2142
+ [0, 0], 2
2143
+ ];
2144
+ var ValidateAwsAssociationsInput$ = [3, n0, _VAAI,
2145
+ 0,
2146
+ [_aSI],
2147
+ [[0, 1]], 1
2148
+ ];
2149
+ var ValidateAwsAssociationsOutput$ = [3, n0, _VAAO,
2150
+ 0,
2151
+ [],
2152
+ []
2153
+ ];
2154
+ var ValidationExceptionField$ = [3, n0, _VEF,
2155
+ 0,
2156
+ [_p, _m],
2157
+ [0, 0], 2
2158
+ ];
2159
+ var Webhook$ = [3, n0, _W,
2160
+ 0,
2161
+ [_wU, _wI, _wT],
2162
+ [0, 0, 0], 2
2163
+ ];
2164
+ var __Unit = "unit";
2165
+ var AgentSpaceList = [1, n0, _ASL,
2166
+ 0, [() => AgentSpace$,
2167
+ 0]
2168
+ ];
2169
+ var AssetFileSummaryList = [1, n0, _AFSL,
2170
+ 0, () => AssetFileSummary$
2171
+ ];
2172
+ var AssetList = [1, n0, _AL,
2173
+ 0, () => Asset$
2174
+ ];
2175
+ var AssetTypeList = [1, n0, _ATL,
2176
+ 0, () => AssetTypeSummary$
2177
+ ];
2178
+ var AssetVersionMetadataList = [1, n0, _AVML,
2179
+ 0, () => AssetVersionMetadata$
2180
+ ];
2181
+ var AssistantMessage = [1, n0, _AM,
2182
+ 0, () => AssistantMessageBlock$
2183
+ ];
2184
+ var AssociationsList = [1, n0, _ALs,
2185
+ 0, [() => Association$,
2186
+ 0]
2187
+ ];
2188
+ var ChatExecutionList = [1, n0, _CEL,
2189
+ 0, () => ChatExecution$
2190
+ ];
2191
+ var ExecutionList = [1, n0, _EL,
2192
+ 0, () => Execution$
2193
+ ];
2194
+ var GoalList = [1, n0, _GL,
2195
+ 0, () => Goal$
2196
+ ];
2197
+ var JournalRecordList = [1, n0, _JRL,
2198
+ 0, () => JournalRecord$
2199
+ ];
2200
+ var PendingMessages = [1, n0, _PMe,
2201
+ 0, () => PendingMessage$
2202
+ ];
2203
+ var PrivateConnectionSummaryList = [1, n0, _PCSL,
2204
+ 0, () => PrivateConnectionSummary$
2205
+ ];
2206
+ var RecommendationList = [1, n0, _RL,
2207
+ 0, () => Recommendation$
2208
+ ];
2209
+ var RegisteredServicesList = [1, n0, _RSL,
2210
+ 0, [() => RegisteredService$,
2211
+ 0]
2212
+ ];
2213
+ var TaskList = [1, n0, _TL,
2214
+ 0, () => Task$
2215
+ ];
2216
+ var TriggerList = [1, n0, _TLr,
2217
+ 0, () => Trigger$
2218
+ ];
2219
+ var UserMessage = [1, n0, _UMs,
2220
+ 0, () => UserMessageBlock$
2221
+ ];
2222
+ var ValidationExceptionFieldList = [1, n0, _VEFL,
2223
+ 0, () => ValidationExceptionField$
2224
+ ];
2225
+ var WebhooksList = [1, n0, _WL,
2226
+ 0, () => Webhook$
2227
+ ];
2228
+ var AssociationCapabilities = [2, n0, _ACs,
2229
+ 0, 0, () => CapabilityConfiguration$
2230
+ ];
2231
+ var CustomHeaders = [2, n0, _CH,
2232
+ 0, [0,
2233
+ 0],
2234
+ [() => CustomHeaderValue,
2235
+ 0]
2236
+ ];
2237
+ var ExchangeParameters = [2, n0, _EP,
2238
+ 0, [0,
2239
+ 0],
2240
+ [() => ExchangeParameterValue,
2241
+ 0]
2242
+ ];
2243
+ var AdditionalServiceDetails$ = [4, n0, _ASD,
2244
+ 0,
2245
+ [_gi, _sl, _mc, _mcp, _servi, _git, _mcps, _mcpse, _az, _azu, _mcpser, _pa, _mcpserv, _rem, _remo],
2246
+ [() => RegisteredGithubServiceDetails$, () => RegisteredSlackServiceDetails$, [() => RegisteredMCPServerDetails$, 0], [() => RegisteredMCPServerDetails$, 0], () => RegisteredServiceNowDetails$, () => RegisteredGitLabServiceDetails$, [() => RegisteredMCPServerDetails$, 0], [() => RegisteredNewRelicDetails$, 0], () => RegisteredAzureDevOpsServiceDetails$, () => RegisteredAzureIdentityDetails$, () => RegisteredGrafanaServerDetails$, () => RegisteredPagerDutyDetails$, [() => RegisteredMCPServerSigV4Details$, 0], [() => RegisteredRemoteAgentDetails$, 0], [() => RegisteredRemoteAgentSigV4Details$, 0]]
2247
+ ];
2248
+ var AdditionalServiceRegistrationStep$ = [4, n0, _ASRS,
2249
+ 0,
2250
+ [_oa],
2251
+ [() => OAuthAdditionalStepDetails$]
2252
+ ];
2253
+ var AssetContent$ = [4, n0, _ACss,
2254
+ 0,
2255
+ [_f, _z, _sU],
2256
+ [() => AssetFileContent$, () => AssetZipContent$, () => AssetSourceUrlContent$]
2257
+ ];
2258
+ var AssetFileBody$ = [4, n0, _AFB,
2259
+ 0,
2260
+ [_by, _te],
2261
+ [21, 0]
2262
+ ];
2263
+ var AssistantMessageBlock$ = [4, n0, _AMB,
2264
+ 0,
2265
+ [_te, _tUo],
2266
+ [0, 15]
2267
+ ];
2268
+ var DatadogAuthorizationConfig$ = [4, n0, _DAC,
2269
+ 0,
2270
+ [_aD],
2271
+ [() => MCPServerAuthorizationDiscoveryConfig$]
2272
+ ];
2273
+ var DynatraceServiceAuthorizationConfig$ = [4, n0, _DSAC,
2274
+ 8,
2275
+ [_oACC],
2276
+ [[() => DynatraceOAuthClientCredentialsConfig$, 0]]
2277
+ ];
2278
+ var MCPServerAuthorizationConfig$ = [4, n0, _MCPSAC,
2279
+ 0,
2280
+ [_oACC, _oALO, _aK, _bT, _aD],
2281
+ [[() => MCPServerOAuthClientCredentialsConfig$, 0], [() => MCPServerOAuth3LOConfig$, 0], [() => MCPServerAPIKeyConfig$, 0], [() => MCPServerBearerTokenConfig$, 0], () => MCPServerAuthorizationDiscoveryConfig$]
2282
+ ];
2283
+ var Message$ = [4, n0, _M,
2284
+ 0,
2285
+ [_uM, _aMs],
2286
+ [() => UserMessage, () => AssistantMessage]
2287
+ ];
2288
+ var NewRelicServiceAuthorizationConfig$ = [4, n0, _NRSAC,
2289
+ 0,
2290
+ [_aK],
2291
+ [[() => NewRelicApiKeyConfig$, 0]]
2292
+ ];
2293
+ var PagerDutyAuthorizationConfig$ = [4, n0, _PDAC,
2294
+ 0,
2295
+ [_oACC],
2296
+ [[() => PagerDutyOAuthClientCredentialsConfig$, 0]]
2297
+ ];
2298
+ var PrivateConnectionMode$ = [4, n0, _PCM,
2299
+ 0,
2300
+ [_sMe, _sMel],
2301
+ [() => ServiceManagedInput$, () => SelfManagedInput$]
2302
+ ];
2303
+ var RemoteAgentAuthorizationConfig$ = [4, n0, _RAAC,
2304
+ 0,
2305
+ [_aK, _oACC, _bT],
2306
+ [[() => RemoteAgentAPIKeyConfig$, 0], [() => RemoteAgentOAuthClientCredentialsConfig$, 0], [() => RemoteAgentBearerTokenConfig$, 0]]
2307
+ ];
2308
+ var SendMessageContentBlockDelta$ = [4, n0, _SMCBD,
2309
+ 0,
2310
+ [_tD, _jD],
2311
+ [() => SendMessageTextDelta$, () => SendMessageJsonDelta$]
2312
+ ];
2313
+ var SendMessageEvents$ = [4, n0, _SME,
2314
+ { [_str]: 1 },
2315
+ [_rC, _rIP, _rCe, _rF, _su, _h, _cBS, _cBD, _cBSo],
2316
+ [() => SendMessageResponseCreatedEvent$, () => SendMessageResponseInProgressEvent$, () => SendMessageResponseCompletedEvent$, () => SendMessageResponseFailedEvent$, () => SendMessageSummaryEvent$, () => SendMessageHeartbeatEvent$, () => SendMessageContentBlockStartEvent$, () => SendMessageContentBlockDeltaEvent$, () => SendMessageContentBlockStopEvent$]
2317
+ ];
2318
+ var ServiceConfiguration$ = [4, n0, _SCe,
2319
+ 0,
2320
+ [_sA, _aw, _gi, _sl, _dy, _servi, _mcpse, _mc, _mcp, _git, _mcps, _eCv, _azur, _az, _mcpser, _pa, _mcpserv, _rem, _remo],
2321
+ [() => SourceAwsConfiguration$, () => AWSConfiguration$, () => GitHubConfiguration$, () => SlackConfiguration$, () => DynatraceConfiguration$, () => ServiceNowConfiguration$, () => MCPServerNewRelicConfiguration$, () => MCPServerDatadogConfiguration$, () => MCPServerConfiguration$, () => GitLabConfiguration$, () => MCPServerSplunkConfiguration$, () => EventChannelConfiguration$, () => AzureConfiguration$, () => AzureDevOpsConfiguration$, () => MCPServerGrafanaConfiguration$, [() => PagerDutyConfiguration$, 0], () => MCPServerSigV4Configuration$, () => RemoteAgentConfiguration$, () => RemoteAgentSigV4Configuration$]
2322
+ ];
2323
+ var ServiceDetails$ = [4, n0, _SD,
2324
+ 0,
2325
+ [_dy, _servi, _mc, _mcp, _git, _mcps, _mcpse, _eCv, _mcpser, _pa, _azu, _mcpserv, _rem, _remo],
2326
+ [[() => DynatraceServiceDetails$, 0], [() => ServiceNowServiceDetails$, 0], [() => DatadogServiceDetails$, 0], [() => MCPServerDetails$, 0], [() => GitLabDetails$, 0], [() => MCPServerDetails$, 0], [() => NewRelicServiceDetails$, 0], () => EventChannelDetails$, [() => GrafanaServiceDetails$, 0], [() => PagerDutyDetails$, 0], () => RegisteredAzureIdentityDetails$, [() => MCPServerSigV4ServiceDetails$, 0], [() => RemoteAgentServiceDetails$, 0], [() => RemoteAgentSigV4ServiceDetails$, 0]]
2327
+ ];
2328
+ var ServiceNowServiceAuthorizationConfig$ = [4, n0, _SNSAC,
2329
+ 0,
2330
+ [_oACC],
2331
+ [[() => ServiceNowOAuthClientCredentialsConfig$, 0]]
2332
+ ];
2333
+ var TriggerCondition$ = [4, n0, _TC,
2334
+ 0,
2335
+ [_sch],
2336
+ [() => ScheduleCondition$]
2337
+ ];
2338
+ var UserMessageBlock$ = [4, n0, _UMB,
2339
+ 0,
2340
+ [_te, _tR],
2341
+ [0, 15]
2342
+ ];
2343
+ var AssociateService$ = [9, n0, _ASs,
2344
+ { [_end]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/{agentSpaceId}/associations", 201] }, () => AssociateServiceInput$, () => AssociateServiceOutput$
2345
+ ];
2346
+ var CreateAgentSpace$ = [9, n0, _CAS,
2347
+ { [_end]: ["cp."], [_ht]: ["POST", "/v1/agentspaces", 201] }, () => CreateAgentSpaceInput$, () => CreateAgentSpaceOutput$
2348
+ ];
2349
+ var CreateAsset$ = [9, n0, _CA,
2350
+ { [_end]: ["dp."], [_ht]: ["POST", "/asset/agent-space/{agentSpaceId}/assets", 201] }, () => CreateAssetRequest$, () => CreateAssetResponse$
2351
+ ];
2352
+ var CreateAssetFile$ = [9, n0, _CAF,
2353
+ { [_end]: ["dp."], [_ht]: ["POST", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/files/{path+}", 201] }, () => CreateAssetFileRequest$, () => CreateAssetFileResponse$
2354
+ ];
2355
+ var CreateBacklogTask$ = [9, n0, _CBT,
2356
+ { [_end]: ["dp."], [_ht]: ["POST", "/backlog/agent-space/{agentSpaceId}/tasks", 201] }, () => CreateBacklogTaskRequest$, () => CreateBacklogTaskResponse$
2357
+ ];
2358
+ var CreateChat$ = [9, n0, _CCr,
2359
+ { [_end]: ["dp."], [_ht]: ["POST", "/agents/agent-space/{agentSpaceId}/chat/create", 200] }, () => CreateChatRequest$, () => CreateChatResponse$
2360
+ ];
2361
+ var CreatePrivateConnection$ = [9, n0, _CPC,
2362
+ { [_end]: ["cp."], [_ht]: ["POST", "/v1/private-connections", 200] }, () => CreatePrivateConnectionInput$, () => CreatePrivateConnectionOutput$
2363
+ ];
2364
+ var CreateTrigger$ = [9, n0, _CT,
2365
+ { [_end]: ["dp."], [_ht]: ["POST", "/trigger/agent-space/{agentSpaceId}/triggers", 201] }, () => CreateTriggerRequest$, () => CreateTriggerResponse$
2366
+ ];
2367
+ var DeleteAgentSpace$ = [9, n0, _DAS,
2368
+ { [_end]: ["cp."], [_ht]: ["DELETE", "/v1/agentspaces/{agentSpaceId}", 204] }, () => DeleteAgentSpaceInput$, () => DeleteAgentSpaceOutput$
2369
+ ];
2370
+ var DeleteAsset$ = [9, n0, _DA,
2371
+ { [_end]: ["dp."], [_ht]: ["DELETE", "/asset/agent-space/{agentSpaceId}/assets/{assetId}", 200] }, () => DeleteAssetRequest$, () => DeleteAssetResponse$
2372
+ ];
2373
+ var DeleteAssetFile$ = [9, n0, _DAF,
2374
+ { [_end]: ["dp."], [_ht]: ["DELETE", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/files/{path+}", 200] }, () => DeleteAssetFileRequest$, () => DeleteAssetFileResponse$
2375
+ ];
2376
+ var DeletePrivateConnection$ = [9, n0, _DPC,
2377
+ { [_end]: ["cp."], [_ht]: ["DELETE", "/v1/private-connections/{name}", 200] }, () => DeletePrivateConnectionInput$, () => DeletePrivateConnectionOutput$
2378
+ ];
2379
+ var DeleteTrigger$ = [9, n0, _DT,
2380
+ { [_end]: ["dp."], [_ht]: ["DELETE", "/trigger/agent-space/{agentSpaceId}/triggers/{triggerId}", 200] }, () => DeleteTriggerRequest$, () => DeleteTriggerResponse$
2381
+ ];
2382
+ var DeregisterService$ = [9, n0, _DS,
2383
+ { [_end]: ["cp."], [_ht]: ["DELETE", "/v1/services/{serviceId}", 200] }, () => DeregisterServiceInput$, () => DeregisterServiceOutput$
2384
+ ];
2385
+ var DescribePrivateConnection$ = [9, n0, _DPCe,
2386
+ { [_end]: ["cp."], [_ht]: ["GET", "/v1/private-connections/{name}", 200] }, () => DescribePrivateConnectionInput$, () => DescribePrivateConnectionOutput$
2387
+ ];
2388
+ var DisableOperatorApp$ = [9, n0, _DOA,
2389
+ { [_end]: ["cp."], [_ht]: ["DELETE", "/v1/agentspaces/{agentSpaceId}/operator", 200] }, () => DisableOperatorAppInput$, () => __Unit
2390
+ ];
2391
+ var DisassociateService$ = [9, n0, _DSi,
2392
+ { [_end]: ["cp."], [_ht]: ["DELETE", "/v1/agentspaces/{agentSpaceId}/associations/{associationId}", 204] }, () => DisassociateServiceInput$, () => DisassociateServiceOutput$
2393
+ ];
2394
+ var EnableOperatorApp$ = [9, n0, _EOA,
2395
+ { [_end]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/{agentSpaceId}/operator", 200] }, () => EnableOperatorAppInput$, () => EnableOperatorAppOutput$
2396
+ ];
2397
+ var GetAccountUsage$ = [9, n0, _GAU,
2398
+ { [_end]: ["dp."], [_ht]: ["GET", "/usage/account", 200] }, () => GetAccountUsageInput$, () => GetAccountUsageOutput$
2399
+ ];
2400
+ var GetAgentSpace$ = [9, n0, _GAS,
2401
+ { [_end]: ["cp."], [_ht]: ["GET", "/v1/agentspaces/{agentSpaceId}", 200] }, () => GetAgentSpaceInput$, () => GetAgentSpaceOutput$
2402
+ ];
2403
+ var GetAsset$ = [9, n0, _GA,
2404
+ { [_end]: ["dp."], [_ht]: ["GET", "/asset/agent-space/{agentSpaceId}/assets/{assetId}", 200] }, () => GetAssetRequest$, () => GetAssetResponse$
2405
+ ];
2406
+ var GetAssetContent$ = [9, n0, _GAC,
2407
+ { [_end]: ["dp."], [_ht]: ["GET", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/content", 200] }, () => GetAssetContentRequest$, () => GetAssetContentResponse$
2408
+ ];
2409
+ var GetAssetFile$ = [9, n0, _GAF,
2410
+ { [_end]: ["dp."], [_ht]: ["GET", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/files/{path+}", 200] }, () => GetAssetFileRequest$, () => GetAssetFileResponse$
2411
+ ];
2412
+ var GetAssociation$ = [9, n0, _GAe,
2413
+ { [_end]: ["cp."], [_ht]: ["GET", "/v1/agentspaces/{agentSpaceId}/associations/{associationId}", 200] }, () => GetAssociationInput$, () => GetAssociationOutput$
2414
+ ];
2415
+ var GetBacklogTask$ = [9, n0, _GBT,
2416
+ { [_end]: ["dp."], [_ht]: ["GET", "/backlog/agent-space/{agentSpaceId}/tasks/{taskId}", 200] }, () => GetBacklogTaskRequest$, () => GetBacklogTaskResponse$
2417
+ ];
2418
+ var GetOperatorApp$ = [9, n0, _GOA,
2419
+ { [_end]: ["cp."], [_ht]: ["GET", "/v2/agentspaces/{agentSpaceId}/operator", 200] }, () => GetOperatorAppInput$, () => GetOperatorAppOutput$
2420
+ ];
2421
+ var GetRecommendation$ = [9, n0, _GR,
2422
+ { [_end]: ["dp."], [_ht]: ["GET", "/backlog/agent-space/{agentSpaceId}/recommendations/{recommendationId}", 200] }, () => GetRecommendationRequest$, () => GetRecommendationResponse$
2423
+ ];
2424
+ var GetService$ = [9, n0, _GSe,
2425
+ { [_end]: ["cp."], [_ht]: ["GET", "/v1/services/{serviceId}", 200] }, () => GetServiceInput$, () => GetServiceOutput$
2426
+ ];
2427
+ var GetTrigger$ = [9, n0, _GT,
2428
+ { [_end]: ["dp."], [_ht]: ["GET", "/trigger/agent-space/{agentSpaceId}/triggers/{triggerId}", 200] }, () => GetTriggerRequest$, () => GetTriggerResponse$
2429
+ ];
2430
+ var ListAgentSpaces$ = [9, n0, _LAS,
2431
+ { [_end]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/list", 200] }, () => ListAgentSpacesInput$, () => ListAgentSpacesOutput$
2432
+ ];
2433
+ var ListAssetFiles$ = [9, n0, _LAF,
2434
+ { [_end]: ["dp."], [_ht]: ["GET", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/files", 200] }, () => ListAssetFilesRequest$, () => ListAssetFilesResponse$
2435
+ ];
2436
+ var ListAssets$ = [9, n0, _LA,
2437
+ { [_end]: ["dp."], [_ht]: ["GET", "/asset/agent-space/{agentSpaceId}/assets", 200] }, () => ListAssetsRequest$, () => ListAssetsResponse$
2438
+ ];
2439
+ var ListAssetTypes$ = [9, n0, _LAT,
2440
+ { [_end]: ["dp."], [_ht]: ["GET", "/asset/types", 200] }, () => ListAssetTypesRequest$, () => ListAssetTypesResponse$
2441
+ ];
2442
+ var ListAssetVersions$ = [9, n0, _LAV,
2443
+ { [_end]: ["dp."], [_ht]: ["GET", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/versions", 200] }, () => ListAssetVersionsRequest$, () => ListAssetVersionsResponse$
2444
+ ];
2445
+ var ListAssociations$ = [9, n0, _LAi,
2446
+ { [_end]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/{agentSpaceId}/associations/list", 200] }, () => ListAssociationsInput$, () => ListAssociationsOutput$
2447
+ ];
2448
+ var ListBacklogTasks$ = [9, n0, _LBT,
2449
+ { [_end]: ["dp."], [_ht]: ["POST", "/backlog/agent-space/{agentSpaceId}/tasks/list", 200] }, () => ListBacklogTasksRequest$, () => ListBacklogTasksResponse$
2450
+ ];
2451
+ var ListChats$ = [9, n0, _LC,
2452
+ { [_end]: ["dp."], [_ht]: ["GET", "/agents/agent-space/{agentSpaceId}/chat/list", 200] }, () => ListChatsRequest$, () => ListChatsResponse$
2453
+ ];
2454
+ var ListExecutions$ = [9, n0, _LE,
2455
+ { [_end]: ["dp."], [_ht]: ["POST", "/journal/agent-space/{agentSpaceId}/executions", 200] }, () => ListExecutionsRequest$, () => ListExecutionsResponse$
2456
+ ];
2457
+ var ListGoals$ = [9, n0, _LG,
2458
+ { [_end]: ["dp."], [_ht]: ["POST", "/backlog/agent-space/{agentSpaceId}/goals/list", 200] }, () => ListGoalsRequest$, () => ListGoalsResponse$
2459
+ ];
2460
+ var ListJournalRecords$ = [9, n0, _LJR,
2461
+ { [_end]: ["dp."], [_ht]: ["POST", "/journal/agent-space/{agentSpaceId}/journalRecords", 200] }, () => ListJournalRecordsRequest$, () => ListJournalRecordsResponse$
2462
+ ];
2463
+ var ListPendingMessages$ = [9, n0, _LPM,
2464
+ { [_end]: ["dp."], [_ht]: ["POST", "/agents/agent-space/{agentSpaceId}/pendingMessages", 200] }, () => ListPendingMessagesRequest$, () => ListPendingMessagesResponse$
2465
+ ];
2466
+ var ListPrivateConnections$ = [9, n0, _LPC,
2467
+ { [_end]: ["cp."], [_ht]: ["GET", "/v1/private-connections", 200] }, () => ListPrivateConnectionsInput$, () => ListPrivateConnectionsOutput$
2468
+ ];
2469
+ var ListRecommendations$ = [9, n0, _LR,
2470
+ { [_end]: ["dp."], [_ht]: ["POST", "/backlog/agent-space/{agentSpaceId}/recommendations/list", 200] }, () => ListRecommendationsRequest$, () => ListRecommendationsResponse$
2471
+ ];
2472
+ var ListServices$ = [9, n0, _LS,
2473
+ { [_end]: ["cp."], [_ht]: ["POST", "/v1/services/list", 200] }, () => ListServicesInput$, () => ListServicesOutput$
2474
+ ];
2475
+ var ListTagsForResource$ = [9, n0, _LTFR,
2476
+ { [_end]: ["cp."], [_ht]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
2477
+ ];
2478
+ var ListTriggers$ = [9, n0, _LT,
2479
+ { [_end]: ["dp."], [_ht]: ["GET", "/trigger/agent-space/{agentSpaceId}/triggers", 200] }, () => ListTriggersRequest$, () => ListTriggersResponse$
2480
+ ];
2481
+ var ListWebhooks$ = [9, n0, _LW,
2482
+ { [_end]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/{agentSpaceId}/associations/{associationId}/webhooks/list", 200] }, () => ListWebhooksInput$, () => ListWebhooksOutput$
2483
+ ];
2484
+ var RegisterService$ = [9, n0, _RSe,
2485
+ { [_end]: ["cp."], [_ht]: ["POST", "/v1/register/{service}", 201] }, () => RegisterServiceInput$, () => RegisterServiceOutput$
2486
+ ];
2487
+ var SendMessage$ = [9, n0, _SM,
2488
+ { [_end]: ["dp."], [_ht]: ["POST", "/agents/agent-space/{agentSpaceId}/chat/sendMessage", 200] }, () => SendMessageRequest$, () => SendMessageResponse$
2489
+ ];
2490
+ var TagResource$ = [9, n0, _TR,
2491
+ { [_end]: ["cp."], [_ht]: ["POST", "/tags/{resourceArn}", 204] }, () => TagResourceRequest$, () => TagResourceResponse$
2492
+ ];
2493
+ var UntagResource$ = [9, n0, _URn,
2494
+ { [_end]: ["cp."], [_ht]: ["DELETE", "/tags/{resourceArn}", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
2495
+ ];
2496
+ var UpdateAgentSpace$ = [9, n0, _UAS,
2497
+ { [_end]: ["cp."], [_ht]: ["PATCH", "/v1/agentspaces/{agentSpaceId}", 200] }, () => UpdateAgentSpaceInput$, () => UpdateAgentSpaceOutput$
2498
+ ];
2499
+ var UpdateAsset$ = [9, n0, _UA,
2500
+ { [_end]: ["dp."], [_ht]: ["PATCH", "/asset/agent-space/{agentSpaceId}/assets/{assetId}", 200] }, () => UpdateAssetRequest$, () => UpdateAssetResponse$
2501
+ ];
2502
+ var UpdateAssetFile$ = [9, n0, _UAF,
2503
+ { [_end]: ["dp."], [_ht]: ["PATCH", "/asset/agent-space/{agentSpaceId}/assets/{assetId}/files/{path+}", 200] }, () => UpdateAssetFileRequest$, () => UpdateAssetFileResponse$
2504
+ ];
2505
+ var UpdateAssociation$ = [9, n0, _UAp,
2506
+ { [_end]: ["cp."], [_ht]: ["PATCH", "/v1/agentspaces/{agentSpaceId}/associations/{associationId}", 200] }, () => UpdateAssociationInput$, () => UpdateAssociationOutput$
2507
+ ];
2508
+ var UpdateBacklogTask$ = [9, n0, _UBT,
2509
+ { [_end]: ["dp."], [_ht]: ["PATCH", "/backlog/agent-space/{agentSpaceId}/tasks/{taskId}", 200] }, () => UpdateBacklogTaskRequest$, () => UpdateBacklogTaskResponse$
2510
+ ];
2511
+ var UpdateGoal$ = [9, n0, _UG,
2512
+ { [_end]: ["dp."], [_ht]: ["PATCH", "/backlog/agent-space/{agentSpaceId}/goals/{goalId}", 200] }, () => UpdateGoalRequest$, () => UpdateGoalResponse$
2513
+ ];
2514
+ var UpdateOperatorAppIdpConfig$ = [9, n0, _UOAIC,
2515
+ { [_end]: ["cp."], [_ht]: ["PATCH", "/v1/agentspaces/{agentSpaceId}/operator/idp", 200] }, () => UpdateOperatorAppIdpConfigInput$, () => UpdateOperatorAppIdpConfigOutput$
2516
+ ];
2517
+ var UpdatePrivateConnectionCertificate$ = [9, n0, _UPCC,
2518
+ { [_end]: ["cp."], [_ht]: ["POST", "/v1/private-connections/{name}/certificate", 200] }, () => UpdatePrivateConnectionCertificateInput$, () => UpdatePrivateConnectionCertificateOutput$
2519
+ ];
2520
+ var UpdateRecommendation$ = [9, n0, _URp,
2521
+ { [_end]: ["dp."], [_ht]: ["PATCH", "/backlog/agent-space/{agentSpaceId}/recommendations/{recommendationId}", 200] }, () => UpdateRecommendationRequest$, () => UpdateRecommendationResponse$
2522
+ ];
2523
+ var UpdateTrigger$ = [9, n0, _UT,
2524
+ { [_end]: ["dp."], [_ht]: ["PATCH", "/trigger/agent-space/{agentSpaceId}/triggers/{triggerId}", 200] }, () => UpdateTriggerRequest$, () => UpdateTriggerResponse$
2525
+ ];
2526
+ var ValidateAwsAssociations$ = [9, n0, _VAA,
2527
+ { [_end]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/{agentSpaceId}/associations/validate", 204] }, () => ValidateAwsAssociationsInput$, () => ValidateAwsAssociationsOutput$
2528
+ ];
2529
+
2530
+ const getRuntimeConfig$1 = (config) => {
2531
+ return {
2532
+ apiVersion: "2026-01-01",
2533
+ base64Decoder: config?.base64Decoder ?? fromBase64,
2534
+ base64Encoder: config?.base64Encoder ?? toBase64,
2535
+ disableHostPrefix: config?.disableHostPrefix ?? false,
2536
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
2537
+ extensions: config?.extensions ?? [],
2538
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultDevOpsAgentHttpAuthSchemeProvider,
2539
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
2540
+ {
2541
+ schemeId: "aws.auth#sigv4",
2542
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
2543
+ signer: new AwsSdkSigV4Signer(),
2544
+ },
2545
+ ],
2546
+ logger: config?.logger ?? new NoOpLogger(),
2547
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
2548
+ protocolSettings: config?.protocolSettings ?? {
2549
+ defaultNamespace: "com.amazonaws.devopsagent",
2550
+ errorTypeRegistries,
2551
+ version: "2026-01-01",
2552
+ serviceTarget: "DevOpsAgent",
2553
+ },
2554
+ serviceId: config?.serviceId ?? "DevOps Agent",
2555
+ urlParser: config?.urlParser ?? parseUrl,
2556
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
2557
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
2558
+ };
2559
+ };
2560
+
2561
+ const getRuntimeConfig = (config) => {
2562
+ emitWarningIfUnsupportedVersion(process.version);
2563
+ const defaultsMode = resolveDefaultsModeConfig(config);
2564
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
2565
+ const clientSharedValues = getRuntimeConfig$1(config);
2566
+ emitWarningIfUnsupportedVersion$1(process.version);
2567
+ const loaderConfig = {
2568
+ profile: config?.profile,
2569
+ logger: clientSharedValues.logger,
2570
+ };
2571
+ return {
2572
+ ...clientSharedValues,
2573
+ ...config,
2574
+ runtime: "node",
2575
+ defaultsMode,
2576
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
2577
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
2578
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
2579
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
2580
+ eventStreamSerdeProvider: config?.eventStreamSerdeProvider ?? eventStreamSerdeProvider,
2581
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
2582
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
2583
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
2584
+ retryMode: config?.retryMode ??
2585
+ loadConfig({
2586
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
2587
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
2588
+ }, config),
2589
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
2590
+ streamCollector: config?.streamCollector ?? streamCollector,
2591
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
2592
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
2593
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
2594
+ };
2595
+ };
2596
+
33
2597
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
34
2598
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
35
2599
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -1149,101 +3713,442 @@ const EventChannelType = {
1149
3713
  WEBHOOK: "webhook",
1150
3714
  };
1151
3715
 
3716
+ exports.AWSConfiguration$ = AWSConfiguration$;
3717
+ exports.AccessDeniedException = AccessDeniedException;
3718
+ exports.AccessDeniedException$ = AccessDeniedException$;
3719
+ exports.AdditionalServiceDetails$ = AdditionalServiceDetails$;
3720
+ exports.AdditionalServiceRegistrationStep$ = AdditionalServiceRegistrationStep$;
3721
+ exports.AgentSpace$ = AgentSpace$;
3722
+ exports.Asset$ = Asset$;
3723
+ exports.AssetContent$ = AssetContent$;
3724
+ exports.AssetFile$ = AssetFile$;
3725
+ exports.AssetFileBody$ = AssetFileBody$;
3726
+ exports.AssetFileContent$ = AssetFileContent$;
3727
+ exports.AssetFileSummary$ = AssetFileSummary$;
3728
+ exports.AssetSourceUrlContent$ = AssetSourceUrlContent$;
3729
+ exports.AssetTypeSummary$ = AssetTypeSummary$;
3730
+ exports.AssetVersionMetadata$ = AssetVersionMetadata$;
3731
+ exports.AssetZipContent$ = AssetZipContent$;
3732
+ exports.AssistantMessageBlock$ = AssistantMessageBlock$;
3733
+ exports.AssociateService$ = AssociateService$;
1152
3734
  exports.AssociateServiceCommand = AssociateServiceCommand;
3735
+ exports.AssociateServiceInput$ = AssociateServiceInput$;
3736
+ exports.AssociateServiceOutput$ = AssociateServiceOutput$;
3737
+ exports.Association$ = Association$;
1153
3738
  exports.AuthFlow = AuthFlow;
3739
+ exports.AzureConfiguration$ = AzureConfiguration$;
3740
+ exports.AzureDevOpsConfiguration$ = AzureDevOpsConfiguration$;
3741
+ exports.CapabilityConfiguration$ = CapabilityConfiguration$;
1154
3742
  exports.CapabilityType = CapabilityType;
3743
+ exports.ChatExecution$ = ChatExecution$;
3744
+ exports.ConflictException = ConflictException;
3745
+ exports.ConflictException$ = ConflictException$;
3746
+ exports.ContentSizeExceededException = ContentSizeExceededException;
3747
+ exports.ContentSizeExceededException$ = ContentSizeExceededException$;
3748
+ exports.CreateAgentSpace$ = CreateAgentSpace$;
1155
3749
  exports.CreateAgentSpaceCommand = CreateAgentSpaceCommand;
3750
+ exports.CreateAgentSpaceInput$ = CreateAgentSpaceInput$;
3751
+ exports.CreateAgentSpaceOutput$ = CreateAgentSpaceOutput$;
3752
+ exports.CreateAsset$ = CreateAsset$;
1156
3753
  exports.CreateAssetCommand = CreateAssetCommand;
3754
+ exports.CreateAssetFile$ = CreateAssetFile$;
1157
3755
  exports.CreateAssetFileCommand = CreateAssetFileCommand;
3756
+ exports.CreateAssetFileRequest$ = CreateAssetFileRequest$;
3757
+ exports.CreateAssetFileResponse$ = CreateAssetFileResponse$;
3758
+ exports.CreateAssetRequest$ = CreateAssetRequest$;
3759
+ exports.CreateAssetResponse$ = CreateAssetResponse$;
3760
+ exports.CreateBacklogTask$ = CreateBacklogTask$;
1158
3761
  exports.CreateBacklogTaskCommand = CreateBacklogTaskCommand;
3762
+ exports.CreateBacklogTaskRequest$ = CreateBacklogTaskRequest$;
3763
+ exports.CreateBacklogTaskResponse$ = CreateBacklogTaskResponse$;
3764
+ exports.CreateChat$ = CreateChat$;
1159
3765
  exports.CreateChatCommand = CreateChatCommand;
3766
+ exports.CreateChatRequest$ = CreateChatRequest$;
3767
+ exports.CreateChatResponse$ = CreateChatResponse$;
3768
+ exports.CreatePrivateConnection$ = CreatePrivateConnection$;
1160
3769
  exports.CreatePrivateConnectionCommand = CreatePrivateConnectionCommand;
3770
+ exports.CreatePrivateConnectionInput$ = CreatePrivateConnectionInput$;
3771
+ exports.CreatePrivateConnectionOutput$ = CreatePrivateConnectionOutput$;
3772
+ exports.CreateTrigger$ = CreateTrigger$;
1161
3773
  exports.CreateTriggerCommand = CreateTriggerCommand;
3774
+ exports.CreateTriggerRequest$ = CreateTriggerRequest$;
3775
+ exports.CreateTriggerResponse$ = CreateTriggerResponse$;
3776
+ exports.DatadogAuthorizationConfig$ = DatadogAuthorizationConfig$;
3777
+ exports.DatadogServiceDetails$ = DatadogServiceDetails$;
3778
+ exports.DeleteAgentSpace$ = DeleteAgentSpace$;
1162
3779
  exports.DeleteAgentSpaceCommand = DeleteAgentSpaceCommand;
3780
+ exports.DeleteAgentSpaceInput$ = DeleteAgentSpaceInput$;
3781
+ exports.DeleteAgentSpaceOutput$ = DeleteAgentSpaceOutput$;
3782
+ exports.DeleteAsset$ = DeleteAsset$;
1163
3783
  exports.DeleteAssetCommand = DeleteAssetCommand;
3784
+ exports.DeleteAssetFile$ = DeleteAssetFile$;
1164
3785
  exports.DeleteAssetFileCommand = DeleteAssetFileCommand;
3786
+ exports.DeleteAssetFileRequest$ = DeleteAssetFileRequest$;
3787
+ exports.DeleteAssetFileResponse$ = DeleteAssetFileResponse$;
3788
+ exports.DeleteAssetRequest$ = DeleteAssetRequest$;
3789
+ exports.DeleteAssetResponse$ = DeleteAssetResponse$;
3790
+ exports.DeletePrivateConnection$ = DeletePrivateConnection$;
1165
3791
  exports.DeletePrivateConnectionCommand = DeletePrivateConnectionCommand;
3792
+ exports.DeletePrivateConnectionInput$ = DeletePrivateConnectionInput$;
3793
+ exports.DeletePrivateConnectionOutput$ = DeletePrivateConnectionOutput$;
3794
+ exports.DeleteTrigger$ = DeleteTrigger$;
1166
3795
  exports.DeleteTriggerCommand = DeleteTriggerCommand;
3796
+ exports.DeleteTriggerRequest$ = DeleteTriggerRequest$;
3797
+ exports.DeleteTriggerResponse$ = DeleteTriggerResponse$;
3798
+ exports.DeregisterService$ = DeregisterService$;
1167
3799
  exports.DeregisterServiceCommand = DeregisterServiceCommand;
3800
+ exports.DeregisterServiceInput$ = DeregisterServiceInput$;
3801
+ exports.DeregisterServiceOutput$ = DeregisterServiceOutput$;
3802
+ exports.DescribePrivateConnection$ = DescribePrivateConnection$;
1168
3803
  exports.DescribePrivateConnectionCommand = DescribePrivateConnectionCommand;
3804
+ exports.DescribePrivateConnectionInput$ = DescribePrivateConnectionInput$;
3805
+ exports.DescribePrivateConnectionOutput$ = DescribePrivateConnectionOutput$;
1169
3806
  exports.DevOpsAgent = DevOpsAgent;
1170
3807
  exports.DevOpsAgentClient = DevOpsAgentClient;
3808
+ exports.DevOpsAgentServiceException = DevOpsAgentServiceException;
3809
+ exports.DevOpsAgentServiceException$ = DevOpsAgentServiceException$;
3810
+ exports.DisableOperatorApp$ = DisableOperatorApp$;
1171
3811
  exports.DisableOperatorAppCommand = DisableOperatorAppCommand;
3812
+ exports.DisableOperatorAppInput$ = DisableOperatorAppInput$;
3813
+ exports.DisassociateService$ = DisassociateService$;
1172
3814
  exports.DisassociateServiceCommand = DisassociateServiceCommand;
3815
+ exports.DisassociateServiceInput$ = DisassociateServiceInput$;
3816
+ exports.DisassociateServiceOutput$ = DisassociateServiceOutput$;
3817
+ exports.DynatraceConfiguration$ = DynatraceConfiguration$;
3818
+ exports.DynatraceOAuthClientCredentialsConfig$ = DynatraceOAuthClientCredentialsConfig$;
3819
+ exports.DynatraceServiceAuthorizationConfig$ = DynatraceServiceAuthorizationConfig$;
3820
+ exports.DynatraceServiceDetails$ = DynatraceServiceDetails$;
3821
+ exports.EnableOperatorApp$ = EnableOperatorApp$;
1173
3822
  exports.EnableOperatorAppCommand = EnableOperatorAppCommand;
3823
+ exports.EnableOperatorAppInput$ = EnableOperatorAppInput$;
3824
+ exports.EnableOperatorAppOutput$ = EnableOperatorAppOutput$;
3825
+ exports.EventChannelConfiguration$ = EventChannelConfiguration$;
3826
+ exports.EventChannelDetails$ = EventChannelDetails$;
1174
3827
  exports.EventChannelType = EventChannelType;
3828
+ exports.Execution$ = Execution$;
1175
3829
  exports.ExecutionStatus = ExecutionStatus;
3830
+ exports.GenericWebhook$ = GenericWebhook$;
3831
+ exports.GetAccountUsage$ = GetAccountUsage$;
1176
3832
  exports.GetAccountUsageCommand = GetAccountUsageCommand;
3833
+ exports.GetAccountUsageInput$ = GetAccountUsageInput$;
3834
+ exports.GetAccountUsageOutput$ = GetAccountUsageOutput$;
3835
+ exports.GetAgentSpace$ = GetAgentSpace$;
1177
3836
  exports.GetAgentSpaceCommand = GetAgentSpaceCommand;
3837
+ exports.GetAgentSpaceInput$ = GetAgentSpaceInput$;
3838
+ exports.GetAgentSpaceOutput$ = GetAgentSpaceOutput$;
3839
+ exports.GetAsset$ = GetAsset$;
1178
3840
  exports.GetAssetCommand = GetAssetCommand;
3841
+ exports.GetAssetContent$ = GetAssetContent$;
1179
3842
  exports.GetAssetContentCommand = GetAssetContentCommand;
3843
+ exports.GetAssetContentRequest$ = GetAssetContentRequest$;
3844
+ exports.GetAssetContentResponse$ = GetAssetContentResponse$;
3845
+ exports.GetAssetFile$ = GetAssetFile$;
1180
3846
  exports.GetAssetFileCommand = GetAssetFileCommand;
3847
+ exports.GetAssetFileRequest$ = GetAssetFileRequest$;
3848
+ exports.GetAssetFileResponse$ = GetAssetFileResponse$;
3849
+ exports.GetAssetRequest$ = GetAssetRequest$;
3850
+ exports.GetAssetResponse$ = GetAssetResponse$;
3851
+ exports.GetAssociation$ = GetAssociation$;
1181
3852
  exports.GetAssociationCommand = GetAssociationCommand;
3853
+ exports.GetAssociationInput$ = GetAssociationInput$;
3854
+ exports.GetAssociationOutput$ = GetAssociationOutput$;
3855
+ exports.GetBacklogTask$ = GetBacklogTask$;
1182
3856
  exports.GetBacklogTaskCommand = GetBacklogTaskCommand;
3857
+ exports.GetBacklogTaskRequest$ = GetBacklogTaskRequest$;
3858
+ exports.GetBacklogTaskResponse$ = GetBacklogTaskResponse$;
3859
+ exports.GetOperatorApp$ = GetOperatorApp$;
1183
3860
  exports.GetOperatorAppCommand = GetOperatorAppCommand;
3861
+ exports.GetOperatorAppInput$ = GetOperatorAppInput$;
3862
+ exports.GetOperatorAppOutput$ = GetOperatorAppOutput$;
3863
+ exports.GetRecommendation$ = GetRecommendation$;
1184
3864
  exports.GetRecommendationCommand = GetRecommendationCommand;
3865
+ exports.GetRecommendationRequest$ = GetRecommendationRequest$;
3866
+ exports.GetRecommendationResponse$ = GetRecommendationResponse$;
3867
+ exports.GetService$ = GetService$;
1185
3868
  exports.GetServiceCommand = GetServiceCommand;
3869
+ exports.GetServiceInput$ = GetServiceInput$;
3870
+ exports.GetServiceOutput$ = GetServiceOutput$;
3871
+ exports.GetTrigger$ = GetTrigger$;
1186
3872
  exports.GetTriggerCommand = GetTriggerCommand;
3873
+ exports.GetTriggerRequest$ = GetTriggerRequest$;
3874
+ exports.GetTriggerResponse$ = GetTriggerResponse$;
3875
+ exports.GitHubConfiguration$ = GitHubConfiguration$;
3876
+ exports.GitLabConfiguration$ = GitLabConfiguration$;
3877
+ exports.GitLabDetails$ = GitLabDetails$;
1187
3878
  exports.GitLabTokenType = GitLabTokenType;
1188
3879
  exports.GithubRepoOwnerType = GithubRepoOwnerType;
3880
+ exports.Goal$ = Goal$;
3881
+ exports.GoalContent$ = GoalContent$;
3882
+ exports.GoalSchedule$ = GoalSchedule$;
3883
+ exports.GoalScheduleInput$ = GoalScheduleInput$;
1189
3884
  exports.GoalStatus = GoalStatus;
1190
3885
  exports.GoalType = GoalType;
3886
+ exports.GrafanaServiceDetails$ = GrafanaServiceDetails$;
3887
+ exports.IamAuthConfiguration$ = IamAuthConfiguration$;
3888
+ exports.IdcAuthConfiguration$ = IdcAuthConfiguration$;
3889
+ exports.IdentityCenterServiceException = IdentityCenterServiceException;
3890
+ exports.IdentityCenterServiceException$ = IdentityCenterServiceException$;
3891
+ exports.IdpAuthConfiguration$ = IdpAuthConfiguration$;
3892
+ exports.InternalServerException = InternalServerException;
3893
+ exports.InternalServerException$ = InternalServerException$;
3894
+ exports.InvalidParameterException = InvalidParameterException;
3895
+ exports.InvalidParameterException$ = InvalidParameterException$;
1191
3896
  exports.IpAddressType = IpAddressType;
3897
+ exports.JournalRecord$ = JournalRecord$;
3898
+ exports.ListAgentSpaces$ = ListAgentSpaces$;
1192
3899
  exports.ListAgentSpacesCommand = ListAgentSpacesCommand;
3900
+ exports.ListAgentSpacesInput$ = ListAgentSpacesInput$;
3901
+ exports.ListAgentSpacesOutput$ = ListAgentSpacesOutput$;
3902
+ exports.ListAssetFiles$ = ListAssetFiles$;
1193
3903
  exports.ListAssetFilesCommand = ListAssetFilesCommand;
3904
+ exports.ListAssetFilesRequest$ = ListAssetFilesRequest$;
3905
+ exports.ListAssetFilesResponse$ = ListAssetFilesResponse$;
3906
+ exports.ListAssetTypes$ = ListAssetTypes$;
1194
3907
  exports.ListAssetTypesCommand = ListAssetTypesCommand;
3908
+ exports.ListAssetTypesRequest$ = ListAssetTypesRequest$;
3909
+ exports.ListAssetTypesResponse$ = ListAssetTypesResponse$;
3910
+ exports.ListAssetVersions$ = ListAssetVersions$;
1195
3911
  exports.ListAssetVersionsCommand = ListAssetVersionsCommand;
3912
+ exports.ListAssetVersionsRequest$ = ListAssetVersionsRequest$;
3913
+ exports.ListAssetVersionsResponse$ = ListAssetVersionsResponse$;
3914
+ exports.ListAssets$ = ListAssets$;
1196
3915
  exports.ListAssetsCommand = ListAssetsCommand;
3916
+ exports.ListAssetsRequest$ = ListAssetsRequest$;
3917
+ exports.ListAssetsResponse$ = ListAssetsResponse$;
3918
+ exports.ListAssociations$ = ListAssociations$;
1197
3919
  exports.ListAssociationsCommand = ListAssociationsCommand;
3920
+ exports.ListAssociationsInput$ = ListAssociationsInput$;
3921
+ exports.ListAssociationsOutput$ = ListAssociationsOutput$;
3922
+ exports.ListBacklogTasks$ = ListBacklogTasks$;
1198
3923
  exports.ListBacklogTasksCommand = ListBacklogTasksCommand;
3924
+ exports.ListBacklogTasksRequest$ = ListBacklogTasksRequest$;
3925
+ exports.ListBacklogTasksResponse$ = ListBacklogTasksResponse$;
3926
+ exports.ListChats$ = ListChats$;
1199
3927
  exports.ListChatsCommand = ListChatsCommand;
3928
+ exports.ListChatsRequest$ = ListChatsRequest$;
3929
+ exports.ListChatsResponse$ = ListChatsResponse$;
3930
+ exports.ListExecutions$ = ListExecutions$;
1200
3931
  exports.ListExecutionsCommand = ListExecutionsCommand;
3932
+ exports.ListExecutionsRequest$ = ListExecutionsRequest$;
3933
+ exports.ListExecutionsResponse$ = ListExecutionsResponse$;
3934
+ exports.ListGoals$ = ListGoals$;
1201
3935
  exports.ListGoalsCommand = ListGoalsCommand;
3936
+ exports.ListGoalsRequest$ = ListGoalsRequest$;
3937
+ exports.ListGoalsResponse$ = ListGoalsResponse$;
3938
+ exports.ListJournalRecords$ = ListJournalRecords$;
1202
3939
  exports.ListJournalRecordsCommand = ListJournalRecordsCommand;
3940
+ exports.ListJournalRecordsRequest$ = ListJournalRecordsRequest$;
3941
+ exports.ListJournalRecordsResponse$ = ListJournalRecordsResponse$;
3942
+ exports.ListPendingMessages$ = ListPendingMessages$;
1203
3943
  exports.ListPendingMessagesCommand = ListPendingMessagesCommand;
3944
+ exports.ListPendingMessagesRequest$ = ListPendingMessagesRequest$;
3945
+ exports.ListPendingMessagesResponse$ = ListPendingMessagesResponse$;
3946
+ exports.ListPrivateConnections$ = ListPrivateConnections$;
1204
3947
  exports.ListPrivateConnectionsCommand = ListPrivateConnectionsCommand;
3948
+ exports.ListPrivateConnectionsInput$ = ListPrivateConnectionsInput$;
3949
+ exports.ListPrivateConnectionsOutput$ = ListPrivateConnectionsOutput$;
3950
+ exports.ListRecommendations$ = ListRecommendations$;
1205
3951
  exports.ListRecommendationsCommand = ListRecommendationsCommand;
3952
+ exports.ListRecommendationsRequest$ = ListRecommendationsRequest$;
3953
+ exports.ListRecommendationsResponse$ = ListRecommendationsResponse$;
3954
+ exports.ListServices$ = ListServices$;
1206
3955
  exports.ListServicesCommand = ListServicesCommand;
3956
+ exports.ListServicesInput$ = ListServicesInput$;
3957
+ exports.ListServicesOutput$ = ListServicesOutput$;
3958
+ exports.ListTagsForResource$ = ListTagsForResource$;
1207
3959
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
3960
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
3961
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
3962
+ exports.ListTriggers$ = ListTriggers$;
1208
3963
  exports.ListTriggersCommand = ListTriggersCommand;
3964
+ exports.ListTriggersRequest$ = ListTriggersRequest$;
3965
+ exports.ListTriggersResponse$ = ListTriggersResponse$;
3966
+ exports.ListWebhooks$ = ListWebhooks$;
1209
3967
  exports.ListWebhooksCommand = ListWebhooksCommand;
3968
+ exports.ListWebhooksInput$ = ListWebhooksInput$;
3969
+ exports.ListWebhooksOutput$ = ListWebhooksOutput$;
3970
+ exports.MCPServerAPIKeyConfig$ = MCPServerAPIKeyConfig$;
3971
+ exports.MCPServerAuthorizationConfig$ = MCPServerAuthorizationConfig$;
3972
+ exports.MCPServerAuthorizationDiscoveryConfig$ = MCPServerAuthorizationDiscoveryConfig$;
1210
3973
  exports.MCPServerAuthorizationMethod = MCPServerAuthorizationMethod;
3974
+ exports.MCPServerBearerTokenConfig$ = MCPServerBearerTokenConfig$;
3975
+ exports.MCPServerConfiguration$ = MCPServerConfiguration$;
3976
+ exports.MCPServerDatadogConfiguration$ = MCPServerDatadogConfiguration$;
3977
+ exports.MCPServerDetails$ = MCPServerDetails$;
3978
+ exports.MCPServerGrafanaConfiguration$ = MCPServerGrafanaConfiguration$;
3979
+ exports.MCPServerNewRelicConfiguration$ = MCPServerNewRelicConfiguration$;
3980
+ exports.MCPServerOAuth3LOConfig$ = MCPServerOAuth3LOConfig$;
3981
+ exports.MCPServerOAuthClientCredentialsConfig$ = MCPServerOAuthClientCredentialsConfig$;
3982
+ exports.MCPServerSigV4AuthorizationConfig$ = MCPServerSigV4AuthorizationConfig$;
3983
+ exports.MCPServerSigV4Configuration$ = MCPServerSigV4Configuration$;
3984
+ exports.MCPServerSigV4ServiceDetails$ = MCPServerSigV4ServiceDetails$;
3985
+ exports.MCPServerSplunkConfiguration$ = MCPServerSplunkConfiguration$;
3986
+ exports.Message$ = Message$;
1211
3987
  exports.MonitorAccountType = MonitorAccountType;
3988
+ exports.NewRelicApiKeyConfig$ = NewRelicApiKeyConfig$;
1212
3989
  exports.NewRelicRegion = NewRelicRegion;
3990
+ exports.NewRelicServiceAuthorizationConfig$ = NewRelicServiceAuthorizationConfig$;
3991
+ exports.NewRelicServiceDetails$ = NewRelicServiceDetails$;
3992
+ exports.OAuthAdditionalStepDetails$ = OAuthAdditionalStepDetails$;
1213
3993
  exports.OrderType = OrderType;
3994
+ exports.PagerDutyAuthorizationConfig$ = PagerDutyAuthorizationConfig$;
3995
+ exports.PagerDutyConfiguration$ = PagerDutyConfiguration$;
3996
+ exports.PagerDutyDetails$ = PagerDutyDetails$;
3997
+ exports.PagerDutyOAuthClientCredentialsConfig$ = PagerDutyOAuthClientCredentialsConfig$;
3998
+ exports.PendingMessage$ = PendingMessage$;
1214
3999
  exports.PostRegisterServiceSupportedService = PostRegisterServiceSupportedService;
1215
4000
  exports.Priority = Priority;
4001
+ exports.PrivateConnectionMode$ = PrivateConnectionMode$;
1216
4002
  exports.PrivateConnectionStatus = PrivateConnectionStatus;
4003
+ exports.PrivateConnectionSummary$ = PrivateConnectionSummary$;
1217
4004
  exports.PrivateConnectionType = PrivateConnectionType;
4005
+ exports.Recommendation$ = Recommendation$;
4006
+ exports.RecommendationContent$ = RecommendationContent$;
1218
4007
  exports.RecommendationPriority = RecommendationPriority;
1219
4008
  exports.RecommendationStatus = RecommendationStatus;
4009
+ exports.ReferenceInput$ = ReferenceInput$;
4010
+ exports.ReferenceOutput$ = ReferenceOutput$;
4011
+ exports.RegisterService$ = RegisterService$;
1220
4012
  exports.RegisterServiceCommand = RegisterServiceCommand;
4013
+ exports.RegisterServiceInput$ = RegisterServiceInput$;
4014
+ exports.RegisterServiceOutput$ = RegisterServiceOutput$;
4015
+ exports.RegisteredAzureDevOpsServiceDetails$ = RegisteredAzureDevOpsServiceDetails$;
4016
+ exports.RegisteredAzureIdentityDetails$ = RegisteredAzureIdentityDetails$;
4017
+ exports.RegisteredGitLabServiceDetails$ = RegisteredGitLabServiceDetails$;
4018
+ exports.RegisteredGithubServiceDetails$ = RegisteredGithubServiceDetails$;
4019
+ exports.RegisteredGrafanaServerDetails$ = RegisteredGrafanaServerDetails$;
4020
+ exports.RegisteredMCPServerDetails$ = RegisteredMCPServerDetails$;
4021
+ exports.RegisteredMCPServerSigV4Details$ = RegisteredMCPServerSigV4Details$;
4022
+ exports.RegisteredNewRelicDetails$ = RegisteredNewRelicDetails$;
4023
+ exports.RegisteredPagerDutyDetails$ = RegisteredPagerDutyDetails$;
4024
+ exports.RegisteredRemoteAgentDetails$ = RegisteredRemoteAgentDetails$;
4025
+ exports.RegisteredRemoteAgentSigV4Details$ = RegisteredRemoteAgentSigV4Details$;
4026
+ exports.RegisteredService$ = RegisteredService$;
4027
+ exports.RegisteredServiceNowDetails$ = RegisteredServiceNowDetails$;
4028
+ exports.RegisteredSlackServiceDetails$ = RegisteredSlackServiceDetails$;
4029
+ exports.RemoteAgentAPIKeyConfig$ = RemoteAgentAPIKeyConfig$;
4030
+ exports.RemoteAgentAuthorizationConfig$ = RemoteAgentAuthorizationConfig$;
1221
4031
  exports.RemoteAgentAuthorizationMethod = RemoteAgentAuthorizationMethod;
4032
+ exports.RemoteAgentBearerTokenConfig$ = RemoteAgentBearerTokenConfig$;
4033
+ exports.RemoteAgentConfiguration$ = RemoteAgentConfiguration$;
4034
+ exports.RemoteAgentOAuthClientCredentialsConfig$ = RemoteAgentOAuthClientCredentialsConfig$;
4035
+ exports.RemoteAgentServiceDetails$ = RemoteAgentServiceDetails$;
4036
+ exports.RemoteAgentSigV4AuthorizationConfig$ = RemoteAgentSigV4AuthorizationConfig$;
4037
+ exports.RemoteAgentSigV4Configuration$ = RemoteAgentSigV4Configuration$;
4038
+ exports.RemoteAgentSigV4ServiceDetails$ = RemoteAgentSigV4ServiceDetails$;
1222
4039
  exports.ResourceConfigDnsResolution = ResourceConfigDnsResolution;
4040
+ exports.ResourceNotFoundException = ResourceNotFoundException;
4041
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
4042
+ exports.ScheduleCondition$ = ScheduleCondition$;
1223
4043
  exports.SchedulerState = SchedulerState;
4044
+ exports.SelfManagedInput$ = SelfManagedInput$;
4045
+ exports.SendMessage$ = SendMessage$;
1224
4046
  exports.SendMessageCommand = SendMessageCommand;
4047
+ exports.SendMessageContentBlockDelta$ = SendMessageContentBlockDelta$;
4048
+ exports.SendMessageContentBlockDeltaEvent$ = SendMessageContentBlockDeltaEvent$;
4049
+ exports.SendMessageContentBlockStartEvent$ = SendMessageContentBlockStartEvent$;
4050
+ exports.SendMessageContentBlockStopEvent$ = SendMessageContentBlockStopEvent$;
4051
+ exports.SendMessageContext$ = SendMessageContext$;
4052
+ exports.SendMessageEvents$ = SendMessageEvents$;
4053
+ exports.SendMessageHeartbeatEvent$ = SendMessageHeartbeatEvent$;
4054
+ exports.SendMessageJsonDelta$ = SendMessageJsonDelta$;
4055
+ exports.SendMessageRequest$ = SendMessageRequest$;
4056
+ exports.SendMessageResponse$ = SendMessageResponse$;
4057
+ exports.SendMessageResponseCompletedEvent$ = SendMessageResponseCompletedEvent$;
4058
+ exports.SendMessageResponseCreatedEvent$ = SendMessageResponseCreatedEvent$;
4059
+ exports.SendMessageResponseFailedEvent$ = SendMessageResponseFailedEvent$;
4060
+ exports.SendMessageResponseInProgressEvent$ = SendMessageResponseInProgressEvent$;
4061
+ exports.SendMessageSummaryEvent$ = SendMessageSummaryEvent$;
4062
+ exports.SendMessageTextDelta$ = SendMessageTextDelta$;
4063
+ exports.SendMessageUsageInfo$ = SendMessageUsageInfo$;
1225
4064
  exports.Service = Service;
4065
+ exports.ServiceConfiguration$ = ServiceConfiguration$;
4066
+ exports.ServiceDetails$ = ServiceDetails$;
4067
+ exports.ServiceManagedInput$ = ServiceManagedInput$;
4068
+ exports.ServiceNowConfiguration$ = ServiceNowConfiguration$;
4069
+ exports.ServiceNowOAuthClientCredentialsConfig$ = ServiceNowOAuthClientCredentialsConfig$;
4070
+ exports.ServiceNowServiceAuthorizationConfig$ = ServiceNowServiceAuthorizationConfig$;
4071
+ exports.ServiceNowServiceDetails$ = ServiceNowServiceDetails$;
4072
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
4073
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
4074
+ exports.SlackChannel$ = SlackChannel$;
4075
+ exports.SlackConfiguration$ = SlackConfiguration$;
4076
+ exports.SlackTransmissionTarget$ = SlackTransmissionTarget$;
1226
4077
  exports.SourceAccountType = SourceAccountType;
4078
+ exports.SourceAwsConfiguration$ = SourceAwsConfiguration$;
4079
+ exports.TagResource$ = TagResource$;
1227
4080
  exports.TagResourceCommand = TagResourceCommand;
4081
+ exports.TagResourceRequest$ = TagResourceRequest$;
4082
+ exports.TagResourceResponse$ = TagResourceResponse$;
4083
+ exports.Task$ = Task$;
4084
+ exports.TaskFilter$ = TaskFilter$;
1228
4085
  exports.TaskSortField = TaskSortField;
1229
4086
  exports.TaskSortOrder = TaskSortOrder;
1230
4087
  exports.TaskStatus = TaskStatus;
1231
4088
  exports.TaskType = TaskType;
4089
+ exports.ThrottlingException = ThrottlingException;
4090
+ exports.ThrottlingException$ = ThrottlingException$;
4091
+ exports.Trigger$ = Trigger$;
4092
+ exports.TriggerCondition$ = TriggerCondition$;
4093
+ exports.UntagResource$ = UntagResource$;
1232
4094
  exports.UntagResourceCommand = UntagResourceCommand;
4095
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
4096
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
4097
+ exports.UpdateAgentSpace$ = UpdateAgentSpace$;
1233
4098
  exports.UpdateAgentSpaceCommand = UpdateAgentSpaceCommand;
4099
+ exports.UpdateAgentSpaceInput$ = UpdateAgentSpaceInput$;
4100
+ exports.UpdateAgentSpaceOutput$ = UpdateAgentSpaceOutput$;
4101
+ exports.UpdateAsset$ = UpdateAsset$;
1234
4102
  exports.UpdateAssetCommand = UpdateAssetCommand;
4103
+ exports.UpdateAssetFile$ = UpdateAssetFile$;
1235
4104
  exports.UpdateAssetFileCommand = UpdateAssetFileCommand;
4105
+ exports.UpdateAssetFileRequest$ = UpdateAssetFileRequest$;
4106
+ exports.UpdateAssetFileResponse$ = UpdateAssetFileResponse$;
4107
+ exports.UpdateAssetRequest$ = UpdateAssetRequest$;
4108
+ exports.UpdateAssetResponse$ = UpdateAssetResponse$;
4109
+ exports.UpdateAssociation$ = UpdateAssociation$;
1236
4110
  exports.UpdateAssociationCommand = UpdateAssociationCommand;
4111
+ exports.UpdateAssociationInput$ = UpdateAssociationInput$;
4112
+ exports.UpdateAssociationOutput$ = UpdateAssociationOutput$;
4113
+ exports.UpdateBacklogTask$ = UpdateBacklogTask$;
1237
4114
  exports.UpdateBacklogTaskCommand = UpdateBacklogTaskCommand;
4115
+ exports.UpdateBacklogTaskRequest$ = UpdateBacklogTaskRequest$;
4116
+ exports.UpdateBacklogTaskResponse$ = UpdateBacklogTaskResponse$;
4117
+ exports.UpdateGoal$ = UpdateGoal$;
1238
4118
  exports.UpdateGoalCommand = UpdateGoalCommand;
4119
+ exports.UpdateGoalRequest$ = UpdateGoalRequest$;
4120
+ exports.UpdateGoalResponse$ = UpdateGoalResponse$;
4121
+ exports.UpdateOperatorAppIdpConfig$ = UpdateOperatorAppIdpConfig$;
1239
4122
  exports.UpdateOperatorAppIdpConfigCommand = UpdateOperatorAppIdpConfigCommand;
4123
+ exports.UpdateOperatorAppIdpConfigInput$ = UpdateOperatorAppIdpConfigInput$;
4124
+ exports.UpdateOperatorAppIdpConfigOutput$ = UpdateOperatorAppIdpConfigOutput$;
4125
+ exports.UpdatePrivateConnectionCertificate$ = UpdatePrivateConnectionCertificate$;
1240
4126
  exports.UpdatePrivateConnectionCertificateCommand = UpdatePrivateConnectionCertificateCommand;
4127
+ exports.UpdatePrivateConnectionCertificateInput$ = UpdatePrivateConnectionCertificateInput$;
4128
+ exports.UpdatePrivateConnectionCertificateOutput$ = UpdatePrivateConnectionCertificateOutput$;
4129
+ exports.UpdateRecommendation$ = UpdateRecommendation$;
1241
4130
  exports.UpdateRecommendationCommand = UpdateRecommendationCommand;
4131
+ exports.UpdateRecommendationRequest$ = UpdateRecommendationRequest$;
4132
+ exports.UpdateRecommendationResponse$ = UpdateRecommendationResponse$;
4133
+ exports.UpdateTrigger$ = UpdateTrigger$;
1242
4134
  exports.UpdateTriggerCommand = UpdateTriggerCommand;
4135
+ exports.UpdateTriggerRequest$ = UpdateTriggerRequest$;
4136
+ exports.UpdateTriggerResponse$ = UpdateTriggerResponse$;
4137
+ exports.UsageMetric$ = UsageMetric$;
4138
+ exports.UserMessageBlock$ = UserMessageBlock$;
4139
+ exports.UserReference$ = UserReference$;
1243
4140
  exports.UserType = UserType;
4141
+ exports.ValidateAwsAssociations$ = ValidateAwsAssociations$;
1244
4142
  exports.ValidateAwsAssociationsCommand = ValidateAwsAssociationsCommand;
4143
+ exports.ValidateAwsAssociationsInput$ = ValidateAwsAssociationsInput$;
4144
+ exports.ValidateAwsAssociationsOutput$ = ValidateAwsAssociationsOutput$;
4145
+ exports.ValidationException = ValidationException;
4146
+ exports.ValidationException$ = ValidationException$;
4147
+ exports.ValidationExceptionField$ = ValidationExceptionField$;
1245
4148
  exports.ValidationStatus = ValidationStatus;
4149
+ exports.Webhook$ = Webhook$;
1246
4150
  exports.WebhookType = WebhookType;
4151
+ exports.errorTypeRegistries = errorTypeRegistries;
1247
4152
  exports.paginateListAgentSpaces = paginateListAgentSpaces;
1248
4153
  exports.paginateListAssetFiles = paginateListAssetFiles;
1249
4154
  exports.paginateListAssetTypes = paginateListAssetTypes;