@aws-sdk/client-devops-agent 3.1020.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/LICENSE +201 -0
- package/README.md +526 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +1045 -0
- package/dist-cjs/models/DevOpsAgentServiceException.js +12 -0
- package/dist-cjs/models/errors.js +140 -0
- package/dist-cjs/runtimeConfig.browser.js +40 -0
- package/dist-cjs/runtimeConfig.js +56 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +43 -0
- package/dist-cjs/schemas/schemas_0.js +1891 -0
- package/dist-es/DevOpsAgent.js +119 -0
- package/dist-es/DevOpsAgentClient.js +52 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/dist-es/commands/AllowVendedLogDeliveryForResourceCommand.js +16 -0
- package/dist-es/commands/AssociateServiceCommand.js +16 -0
- package/dist-es/commands/CreateAgentSpaceCommand.js +16 -0
- package/dist-es/commands/CreateBacklogTaskCommand.js +16 -0
- package/dist-es/commands/CreateChatCommand.js +16 -0
- package/dist-es/commands/CreatePrivateConnectionCommand.js +16 -0
- package/dist-es/commands/DeleteAgentSpaceCommand.js +16 -0
- package/dist-es/commands/DeletePrivateConnectionCommand.js +16 -0
- package/dist-es/commands/DeregisterServiceCommand.js +16 -0
- package/dist-es/commands/DescribePrivateConnectionCommand.js +16 -0
- package/dist-es/commands/DescribeSupportLevelCommand.js +16 -0
- package/dist-es/commands/DisableOperatorAppCommand.js +16 -0
- package/dist-es/commands/DisassociateServiceCommand.js +16 -0
- package/dist-es/commands/EnableOperatorAppCommand.js +16 -0
- package/dist-es/commands/EndChatForCaseCommand.js +16 -0
- package/dist-es/commands/GetAccountUsageCommand.js +16 -0
- package/dist-es/commands/GetAgentSpaceCommand.js +16 -0
- package/dist-es/commands/GetAssociationCommand.js +16 -0
- package/dist-es/commands/GetBacklogTaskCommand.js +16 -0
- package/dist-es/commands/GetOperatorAppCommand.js +16 -0
- package/dist-es/commands/GetRecommendationCommand.js +16 -0
- package/dist-es/commands/GetServiceCommand.js +16 -0
- package/dist-es/commands/InitiateChatForCaseCommand.js +16 -0
- package/dist-es/commands/ListAgentSpacesCommand.js +16 -0
- package/dist-es/commands/ListAssociationsCommand.js +16 -0
- package/dist-es/commands/ListBacklogTasksCommand.js +16 -0
- package/dist-es/commands/ListChatsCommand.js +16 -0
- package/dist-es/commands/ListExecutionsCommand.js +16 -0
- package/dist-es/commands/ListGoalsCommand.js +16 -0
- package/dist-es/commands/ListJournalRecordsCommand.js +16 -0
- package/dist-es/commands/ListPendingMessagesCommand.js +16 -0
- package/dist-es/commands/ListPrivateConnectionsCommand.js +16 -0
- package/dist-es/commands/ListRecommendationsCommand.js +16 -0
- package/dist-es/commands/ListServicesCommand.js +16 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/dist-es/commands/ListWebhooksCommand.js +16 -0
- package/dist-es/commands/RegisterServiceCommand.js +16 -0
- package/dist-es/commands/SendMessageCommand.js +20 -0
- package/dist-es/commands/TagResourceCommand.js +16 -0
- package/dist-es/commands/UntagResourceCommand.js +16 -0
- package/dist-es/commands/UpdateAgentSpaceCommand.js +16 -0
- package/dist-es/commands/UpdateAssociationCommand.js +16 -0
- package/dist-es/commands/UpdateBacklogTaskCommand.js +16 -0
- package/dist-es/commands/UpdateGoalCommand.js +16 -0
- package/dist-es/commands/UpdateOperatorAppIdpConfigCommand.js +16 -0
- package/dist-es/commands/UpdatePrivateConnectionCertificateCommand.js +16 -0
- package/dist-es/commands/UpdateRecommendationCommand.js +16 -0
- package/dist-es/commands/ValidateAwsAssociationsCommand.js +16 -0
- package/dist-es/commands/index.js +48 -0
- package/dist-es/endpoint/EndpointParameters.js +11 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +9 -0
- package/dist-es/models/DevOpsAgentServiceException.js +8 -0
- package/dist-es/models/enums.js +164 -0
- package/dist-es/models/errors.js +127 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAgentSpacesPaginator.js +4 -0
- package/dist-es/pagination/ListAssociationsPaginator.js +4 -0
- package/dist-es/pagination/ListBacklogTasksPaginator.js +4 -0
- package/dist-es/pagination/ListExecutionsPaginator.js +4 -0
- package/dist-es/pagination/ListGoalsPaginator.js +4 -0
- package/dist-es/pagination/ListJournalRecordsPaginator.js +4 -0
- package/dist-es/pagination/ListServicesPaginator.js +4 -0
- package/dist-es/pagination/index.js +8 -0
- package/dist-es/runtimeConfig.browser.js +35 -0
- package/dist-es/runtimeConfig.js +51 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +39 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +1883 -0
- package/dist-types/DevOpsAgent.d.ts +409 -0
- package/dist-types/DevOpsAgentClient.d.ts +250 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/AllowVendedLogDeliveryForResourceCommand.d.ts +100 -0
- package/dist-types/commands/AssociateServiceCommand.d.ts +300 -0
- package/dist-types/commands/CreateAgentSpaceCommand.d.ts +121 -0
- package/dist-types/commands/CreateBacklogTaskCommand.d.ts +139 -0
- package/dist-types/commands/CreateChatCommand.d.ts +106 -0
- package/dist-types/commands/CreatePrivateConnectionCommand.d.ts +138 -0
- package/dist-types/commands/DeleteAgentSpaceCommand.d.ts +101 -0
- package/dist-types/commands/DeletePrivateConnectionCommand.d.ts +104 -0
- package/dist-types/commands/DeregisterServiceCommand.d.ts +101 -0
- package/dist-types/commands/DescribePrivateConnectionCommand.d.ts +113 -0
- package/dist-types/commands/DescribeSupportLevelCommand.d.ts +112 -0
- package/dist-types/commands/DisableOperatorAppCommand.d.ts +105 -0
- package/dist-types/commands/DisassociateServiceCommand.d.ts +102 -0
- package/dist-types/commands/EnableOperatorAppCommand.d.ts +133 -0
- package/dist-types/commands/EndChatForCaseCommand.d.ts +109 -0
- package/dist-types/commands/GetAccountUsageCommand.d.ts +114 -0
- package/dist-types/commands/GetAgentSpaceCommand.d.ts +114 -0
- package/dist-types/commands/GetAssociationCommand.d.ts +202 -0
- package/dist-types/commands/GetBacklogTaskCommand.d.ts +128 -0
- package/dist-types/commands/GetOperatorAppCommand.d.ts +122 -0
- package/dist-types/commands/GetRecommendationCommand.d.ts +122 -0
- package/dist-types/commands/GetServiceCommand.d.ts +188 -0
- package/dist-types/commands/InitiateChatForCaseCommand.d.ts +109 -0
- package/dist-types/commands/ListAgentSpacesCommand.d.ts +115 -0
- package/dist-types/commands/ListAssociationsCommand.d.ts +207 -0
- package/dist-types/commands/ListBacklogTasksCommand.d.ts +148 -0
- package/dist-types/commands/ListChatsCommand.d.ts +114 -0
- package/dist-types/commands/ListExecutionsCommand.d.ts +119 -0
- package/dist-types/commands/ListGoalsCommand.d.ts +130 -0
- package/dist-types/commands/ListJournalRecordsCommand.d.ts +122 -0
- package/dist-types/commands/ListPendingMessagesCommand.d.ts +125 -0
- package/dist-types/commands/ListPrivateConnectionsCommand.d.ts +112 -0
- package/dist-types/commands/ListRecommendationsCommand.d.ts +129 -0
- package/dist-types/commands/ListServicesCommand.d.ts +190 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +105 -0
- package/dist-types/commands/ListWebhooksCommand.d.ts +110 -0
- package/dist-types/commands/RegisterServiceCommand.d.ts +347 -0
- package/dist-types/commands/SendMessageCommand.d.ts +166 -0
- package/dist-types/commands/TagResourceCommand.d.ts +104 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +104 -0
- package/dist-types/commands/UpdateAgentSpaceCommand.d.ts +114 -0
- package/dist-types/commands/UpdateAssociationCommand.d.ts +300 -0
- package/dist-types/commands/UpdateBacklogTaskCommand.d.ts +130 -0
- package/dist-types/commands/UpdateGoalCommand.d.ts +128 -0
- package/dist-types/commands/UpdateOperatorAppIdpConfigCommand.d.ts +112 -0
- package/dist-types/commands/UpdatePrivateConnectionCertificateCommand.d.ts +111 -0
- package/dist-types/commands/UpdateRecommendationCommand.d.ts +124 -0
- package/dist-types/commands/ValidateAwsAssociationsCommand.d.ts +101 -0
- package/dist-types/commands/index.d.ts +48 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +44 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +27 -0
- package/dist-types/models/DevOpsAgentServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +631 -0
- package/dist-types/models/errors.d.ts +138 -0
- package/dist-types/models/models_0.d.ts +5708 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListAgentSpacesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAssociationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListBacklogTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/ListExecutionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListGoalsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListJournalRecordsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListServicesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +8 -0
- package/dist-types/runtimeConfig.browser.d.ts +56 -0
- package/dist-types/runtimeConfig.d.ts +56 -0
- package/dist-types/runtimeConfig.native.d.ts +55 -0
- package/dist-types/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +271 -0
- package/dist-types/ts3.4/DevOpsAgent.d.ts +892 -0
- package/dist-types/ts3.4/DevOpsAgentClient.d.ts +414 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/AllowVendedLogDeliveryForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/AssociateServiceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateAgentSpaceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateBacklogTaskCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateChatCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreatePrivateConnectionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteAgentSpaceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeletePrivateConnectionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeregisterServiceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribePrivateConnectionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeSupportLevelCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisableOperatorAppCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/DisassociateServiceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/EnableOperatorAppCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/EndChatForCaseCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetAccountUsageCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetAgentSpaceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetAssociationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetBacklogTaskCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetOperatorAppCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetRecommendationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetServiceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/InitiateChatForCaseCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListAgentSpacesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListBacklogTasksCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListChatsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListExecutionsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListGoalsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListJournalRecordsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPendingMessagesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPrivateConnectionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRecommendationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListServicesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWebhooksCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/RegisterServiceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateAgentSpaceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateAssociationCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateBacklogTaskCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateGoalCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateOperatorAppIdpConfigCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdatePrivateConnectionCertificateCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateRecommendationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ValidateAwsAssociationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +48 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +12 -0
- package/dist-types/ts3.4/models/DevOpsAgentServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +207 -0
- package/dist-types/ts3.4/models/errors.d.ts +75 -0
- package/dist-types/ts3.4/models/models_0.d.ts +2202 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAgentSpacesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAssociationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListBacklogTasksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListExecutionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListGoalsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListJournalRecordsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListServicesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +8 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +101 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +96 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +105 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +271 -0
- package/package.json +103 -0
|
@@ -0,0 +1,1891 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EnableOperatorAppOutput$ = exports.EnableOperatorAppInput$ = exports.DynatraceServiceDetails$ = exports.DynatraceOAuthClientCredentialsConfig$ = exports.DynatraceConfiguration$ = exports.DisassociateServiceOutput$ = exports.DisassociateServiceInput$ = exports.DisableOperatorAppInput$ = exports.DescribeSupportLevelResponse$ = exports.DescribeSupportLevelRequest$ = exports.DescribePrivateConnectionOutput$ = exports.DescribePrivateConnectionInput$ = exports.DeregisterServiceOutput$ = exports.DeregisterServiceInput$ = exports.DeletePrivateConnectionOutput$ = exports.DeletePrivateConnectionInput$ = exports.DeleteAgentSpaceOutput$ = exports.DeleteAgentSpaceInput$ = exports.DatadogServiceDetails$ = exports.CreatePrivateConnectionOutput$ = exports.CreatePrivateConnectionInput$ = exports.CreateChatResponse$ = exports.CreateChatRequest$ = exports.CreateBacklogTaskResponse$ = exports.CreateBacklogTaskRequest$ = exports.CreateAgentSpaceOutput$ = exports.CreateAgentSpaceInput$ = exports.ChatParticipantConnection$ = exports.ChatExecution$ = exports.AzureDevOpsConfiguration$ = exports.AzureConfiguration$ = exports.AWSConfiguration$ = exports.Association$ = exports.AssociateServiceOutput$ = exports.AssociateServiceInput$ = exports.AllowVendedLogDeliveryForResourceOutput$ = exports.AllowVendedLogDeliveryForResourceInput$ = exports.AgentSpace$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.ThrottlingException$ = exports.ServiceQuotaExceededException$ = exports.ResourceNotFoundException$ = exports.InvalidParameterException$ = exports.InternalServerException$ = exports.IdentityCenterServiceException$ = exports.ContentSizeExceededException$ = exports.ConflictException$ = exports.AccessDeniedException$ = exports.DevOpsAgentServiceException$ = void 0;
|
|
4
|
+
exports.ListPendingMessagesResponse$ = exports.ListPendingMessagesRequest$ = exports.ListJournalRecordsResponse$ = exports.ListJournalRecordsRequest$ = exports.ListGoalsResponse$ = exports.ListGoalsRequest$ = exports.ListExecutionsResponse$ = exports.ListExecutionsRequest$ = exports.ListChatsResponse$ = exports.ListChatsRequest$ = exports.ListBacklogTasksResponse$ = exports.ListBacklogTasksRequest$ = exports.ListAssociationsOutput$ = exports.ListAssociationsInput$ = exports.ListAgentSpacesOutput$ = exports.ListAgentSpacesInput$ = exports.JournalRecord$ = exports.InitiateChatForCaseResponse$ = exports.InitiateChatForCaseRequest$ = exports.IdpAuthConfiguration$ = exports.IdcAuthConfiguration$ = exports.IamAuthConfiguration$ = exports.GrafanaServiceDetails$ = exports.GoalScheduleInput$ = exports.GoalSchedule$ = exports.GoalContent$ = exports.Goal$ = exports.GitLabDetails$ = exports.GitLabConfiguration$ = exports.GitHubConfiguration$ = exports.GetServiceOutput$ = exports.GetServiceInput$ = exports.GetRecommendationResponse$ = exports.GetRecommendationRequest$ = exports.GetOperatorAppOutput$ = exports.GetOperatorAppInput$ = exports.GetBacklogTaskResponse$ = exports.GetBacklogTaskRequest$ = exports.GetAssociationOutput$ = exports.GetAssociationInput$ = exports.GetAgentSpaceOutput$ = exports.GetAgentSpaceInput$ = exports.GetAccountUsageOutput$ = exports.GetAccountUsageInput$ = exports.GenericWebhook$ = exports.Execution$ = exports.EventChannelDetails$ = exports.EventChannelConfiguration$ = exports.EndChatForCaseResponse$ = exports.EndChatForCaseRequest$ = void 0;
|
|
5
|
+
exports.SelfManagedInput$ = exports.RegisterServiceOutput$ = exports.RegisterServiceInput$ = exports.RegisteredSlackServiceDetails$ = exports.RegisteredServiceNowDetails$ = exports.RegisteredService$ = exports.RegisteredPagerDutyDetails$ = exports.RegisteredNewRelicDetails$ = exports.RegisteredMCPServerSigV4Details$ = exports.RegisteredMCPServerDetails$ = exports.RegisteredGrafanaServerDetails$ = exports.RegisteredGitLabServiceDetails$ = exports.RegisteredGithubServiceDetails$ = exports.RegisteredAzureIdentityDetails$ = exports.RegisteredAzureDevOpsServiceDetails$ = exports.ReferenceOutput$ = exports.ReferenceInput$ = exports.RecommendationContent$ = exports.Recommendation$ = exports.PrivateConnectionSummary$ = exports.PendingMessage$ = exports.PagerDutyOAuthClientCredentialsConfig$ = exports.PagerDutyDetails$ = exports.PagerDutyConfiguration$ = exports.OAuthAdditionalStepDetails$ = exports.NewRelicServiceDetails$ = exports.NewRelicApiKeyConfig$ = exports.MSTeamsTransmissionTarget$ = exports.MSTeamsConfiguration$ = exports.MSTeamsChannel$ = exports.MCPServerSigV4ServiceDetails$ = exports.MCPServerSigV4AuthorizationConfig$ = exports.MCPServerOAuthClientCredentialsConfig$ = exports.MCPServerOAuth3LOConfig$ = exports.MCPServerNewRelicConfiguration$ = exports.MCPServerGrafanaConfiguration$ = exports.MCPServerDetails$ = exports.MCPServerBearerTokenConfig$ = exports.MCPServerAuthorizationDiscoveryConfig$ = exports.MCPServerAPIKeyConfig$ = exports.ListWebhooksOutput$ = exports.ListWebhooksInput$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListServicesOutput$ = exports.ListServicesInput$ = exports.ListRecommendationsResponse$ = exports.ListRecommendationsRequest$ = exports.ListPrivateConnectionsOutput$ = exports.ListPrivateConnectionsInput$ = void 0;
|
|
6
|
+
exports.Webhook$ = exports.ValidationExceptionField$ = exports.ValidateAwsAssociationsOutput$ = exports.ValidateAwsAssociationsInput$ = exports.UserReference$ = exports.UsageMetric$ = exports.UpdateRecommendationResponse$ = exports.UpdateRecommendationRequest$ = exports.UpdatePrivateConnectionCertificateOutput$ = exports.UpdatePrivateConnectionCertificateInput$ = exports.UpdateOperatorAppIdpConfigOutput$ = exports.UpdateOperatorAppIdpConfigInput$ = exports.UpdateGoalResponse$ = exports.UpdateGoalRequest$ = exports.UpdateBacklogTaskResponse$ = exports.UpdateBacklogTaskRequest$ = exports.UpdateAssociationOutput$ = exports.UpdateAssociationInput$ = exports.UpdateAgentSpaceOutput$ = exports.UpdateAgentSpaceInput$ = exports.UntagResourceResponse$ = exports.UntagResourceRequest$ = exports.TaskFilter$ = exports.Task$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.SupportLevel$ = exports.SourceAwsConfiguration$ = exports.SlackTransmissionTarget$ = exports.SlackConfiguration$ = exports.SlackChannel$ = exports.ServiceNowServiceDetails$ = exports.ServiceNowOAuthClientCredentialsConfig$ = exports.ServiceNowConfiguration$ = exports.ServiceManagedInput$ = exports.SendMessageUsageInfo$ = exports.SendMessageTextDelta$ = exports.SendMessageSummaryEvent$ = exports.SendMessageResponseInProgressEvent$ = exports.SendMessageResponseFailedEvent$ = exports.SendMessageResponseCreatedEvent$ = exports.SendMessageResponseCompletedEvent$ = exports.SendMessageResponse$ = exports.SendMessageRequest$ = exports.SendMessageJsonDelta$ = exports.SendMessageHeartbeatEvent$ = exports.SendMessageContext$ = exports.SendMessageContentBlockStopEvent$ = exports.SendMessageContentBlockStartEvent$ = exports.SendMessageContentBlockDeltaEvent$ = void 0;
|
|
7
|
+
exports.ListServices$ = exports.ListRecommendations$ = exports.ListPrivateConnections$ = exports.ListPendingMessages$ = exports.ListJournalRecords$ = exports.ListGoals$ = exports.ListExecutions$ = exports.ListChats$ = exports.ListBacklogTasks$ = exports.ListAssociations$ = exports.ListAgentSpaces$ = exports.InitiateChatForCase$ = exports.GetService$ = exports.GetRecommendation$ = exports.GetOperatorApp$ = exports.GetBacklogTask$ = exports.GetAssociation$ = exports.GetAgentSpace$ = exports.GetAccountUsage$ = exports.EndChatForCase$ = exports.EnableOperatorApp$ = exports.DisassociateService$ = exports.DisableOperatorApp$ = exports.DescribeSupportLevel$ = exports.DescribePrivateConnection$ = exports.DeregisterService$ = exports.DeletePrivateConnection$ = exports.DeleteAgentSpace$ = exports.CreatePrivateConnection$ = exports.CreateChat$ = exports.CreateBacklogTask$ = exports.CreateAgentSpace$ = exports.AssociateService$ = exports.AllowVendedLogDeliveryForResource$ = exports.UserMessageBlock$ = exports.ServiceNowServiceAuthorizationConfig$ = exports.ServiceDetails$ = exports.ServiceConfiguration$ = exports.SendMessageEvents$ = exports.SendMessageContentBlockDelta$ = exports.PrivateConnectionMode$ = exports.PagerDutyAuthorizationConfig$ = exports.NewRelicServiceAuthorizationConfig$ = exports.Message$ = exports.MCPServerAuthorizationConfig$ = exports.DynatraceServiceAuthorizationConfig$ = exports.DatadogAuthorizationConfig$ = exports.AssistantMessageBlock$ = exports.AdditionalServiceRegistrationStep$ = exports.AdditionalServiceDetails$ = void 0;
|
|
8
|
+
exports.ValidateAwsAssociations$ = exports.UpdateRecommendation$ = exports.UpdatePrivateConnectionCertificate$ = exports.UpdateOperatorAppIdpConfig$ = exports.UpdateGoal$ = exports.UpdateBacklogTask$ = exports.UpdateAssociation$ = exports.UpdateAgentSpace$ = exports.UntagResource$ = exports.TagResource$ = exports.SendMessage$ = exports.RegisterService$ = exports.ListWebhooks$ = exports.ListTagsForResource$ = void 0;
|
|
9
|
+
const _A = "Association";
|
|
10
|
+
const _AC = "AzureConfiguration";
|
|
11
|
+
const _ADE = "AccessDeniedException";
|
|
12
|
+
const _ADOC = "AzureDevOpsConfiguration";
|
|
13
|
+
const _AKV = "ApiKeyValue";
|
|
14
|
+
const _AL = "AssociationsList";
|
|
15
|
+
const _AM = "AssistantMessage";
|
|
16
|
+
const _AMB = "AssistantMessageBlock";
|
|
17
|
+
const _AS = "AgentSpace";
|
|
18
|
+
const _ASD = "AdditionalServiceDetails";
|
|
19
|
+
const _ASI = "AssociateServiceInput";
|
|
20
|
+
const _ASL = "AgentSpaceList";
|
|
21
|
+
const _ASO = "AssociateServiceOutput";
|
|
22
|
+
const _ASRS = "AdditionalServiceRegistrationStep";
|
|
23
|
+
const _ASs = "AssociateService";
|
|
24
|
+
const _AVLDFR = "AllowVendedLogDeliveryForResource";
|
|
25
|
+
const _AVLDFRI = "AllowVendedLogDeliveryForResourceInput";
|
|
26
|
+
const _AVLDFRO = "AllowVendedLogDeliveryForResourceOutput";
|
|
27
|
+
const _AWSC = "AWSConfiguration";
|
|
28
|
+
const _CAS = "CreateAgentSpace";
|
|
29
|
+
const _CASI = "CreateAgentSpaceInput";
|
|
30
|
+
const _CASO = "CreateAgentSpaceOutput";
|
|
31
|
+
const _CBT = "CreateBacklogTask";
|
|
32
|
+
const _CBTR = "CreateBacklogTaskRequest";
|
|
33
|
+
const _CBTRr = "CreateBacklogTaskResponse";
|
|
34
|
+
const _CC = "CreateChat";
|
|
35
|
+
const _CCR = "CreateChatRequest";
|
|
36
|
+
const _CCRr = "CreateChatResponse";
|
|
37
|
+
const _CE = "ConflictException";
|
|
38
|
+
const _CEL = "ChatExecutionList";
|
|
39
|
+
const _CEh = "ChatExecution";
|
|
40
|
+
const _CI = "ClientId";
|
|
41
|
+
const _CPC = "ChatParticipantConnection";
|
|
42
|
+
const _CPCI = "CreatePrivateConnectionInput";
|
|
43
|
+
const _CPCO = "CreatePrivateConnectionOutput";
|
|
44
|
+
const _CPCr = "CreatePrivateConnection";
|
|
45
|
+
const _CS = "ClientSecret";
|
|
46
|
+
const _CSEE = "ContentSizeExceededException";
|
|
47
|
+
const _D = "Description";
|
|
48
|
+
const _DAC = "DatadogAuthorizationConfig";
|
|
49
|
+
const _DAS = "DeleteAgentSpace";
|
|
50
|
+
const _DASI = "DeleteAgentSpaceInput";
|
|
51
|
+
const _DASO = "DeleteAgentSpaceOutput";
|
|
52
|
+
const _DC = "DynatraceConfiguration";
|
|
53
|
+
const _DOA = "DisableOperatorApp";
|
|
54
|
+
const _DOACCC = "DynatraceOAuthClientCredentialsConfig";
|
|
55
|
+
const _DOAI = "DisableOperatorAppInput";
|
|
56
|
+
const _DPC = "DeletePrivateConnection";
|
|
57
|
+
const _DPCI = "DeletePrivateConnectionInput";
|
|
58
|
+
const _DPCIe = "DescribePrivateConnectionInput";
|
|
59
|
+
const _DPCO = "DeletePrivateConnectionOutput";
|
|
60
|
+
const _DPCOe = "DescribePrivateConnectionOutput";
|
|
61
|
+
const _DPCe = "DescribePrivateConnection";
|
|
62
|
+
const _DS = "DeregisterService";
|
|
63
|
+
const _DSAC = "DynatraceServiceAuthorizationConfig";
|
|
64
|
+
const _DSD = "DatadogServiceDetails";
|
|
65
|
+
const _DSDy = "DynatraceServiceDetails";
|
|
66
|
+
const _DSI = "DeregisterServiceInput";
|
|
67
|
+
const _DSIi = "DisassociateServiceInput";
|
|
68
|
+
const _DSL = "DescribeSupportLevel";
|
|
69
|
+
const _DSLR = "DescribeSupportLevelRequest";
|
|
70
|
+
const _DSLRe = "DescribeSupportLevelResponse";
|
|
71
|
+
const _DSO = "DeregisterServiceOutput";
|
|
72
|
+
const _DSOi = "DisassociateServiceOutput";
|
|
73
|
+
const _DSi = "DisassociateService";
|
|
74
|
+
const _E = "Execution";
|
|
75
|
+
const _EA = "EmailAddress";
|
|
76
|
+
const _ECC = "EventChannelConfiguration";
|
|
77
|
+
const _ECD = "EventChannelDetails";
|
|
78
|
+
const _ECFC = "EndChatForCase";
|
|
79
|
+
const _ECFCR = "EndChatForCaseRequest";
|
|
80
|
+
const _ECFCRn = "EndChatForCaseResponse";
|
|
81
|
+
const _EL = "ExecutionList";
|
|
82
|
+
const _EOA = "EnableOperatorApp";
|
|
83
|
+
const _EOAI = "EnableOperatorAppInput";
|
|
84
|
+
const _EOAO = "EnableOperatorAppOutput";
|
|
85
|
+
const _EP = "ExchangeParameters";
|
|
86
|
+
const _EPV = "ExchangeParameterValue";
|
|
87
|
+
const _G = "Goal";
|
|
88
|
+
const _GA = "GetAssociation";
|
|
89
|
+
const _GAI = "GetAssociationInput";
|
|
90
|
+
const _GAO = "GetAssociationOutput";
|
|
91
|
+
const _GAS = "GetAgentSpace";
|
|
92
|
+
const _GASI = "GetAgentSpaceInput";
|
|
93
|
+
const _GASO = "GetAgentSpaceOutput";
|
|
94
|
+
const _GAU = "GetAccountUsage";
|
|
95
|
+
const _GAUI = "GetAccountUsageInput";
|
|
96
|
+
const _GAUO = "GetAccountUsageOutput";
|
|
97
|
+
const _GBT = "GetBacklogTask";
|
|
98
|
+
const _GBTR = "GetBacklogTaskRequest";
|
|
99
|
+
const _GBTRe = "GetBacklogTaskResponse";
|
|
100
|
+
const _GC = "GoalContent";
|
|
101
|
+
const _GHC = "GitHubConfiguration";
|
|
102
|
+
const _GL = "GoalList";
|
|
103
|
+
const _GLC = "GitLabConfiguration";
|
|
104
|
+
const _GLD = "GitLabDetails";
|
|
105
|
+
const _GOA = "GetOperatorApp";
|
|
106
|
+
const _GOAI = "GetOperatorAppInput";
|
|
107
|
+
const _GOAO = "GetOperatorAppOutput";
|
|
108
|
+
const _GR = "GetRecommendation";
|
|
109
|
+
const _GRR = "GetRecommendationRequest";
|
|
110
|
+
const _GRRe = "GetRecommendationResponse";
|
|
111
|
+
const _GS = "GoalSchedule";
|
|
112
|
+
const _GSD = "GrafanaServiceDetails";
|
|
113
|
+
const _GSI = "GetServiceInput";
|
|
114
|
+
const _GSIo = "GoalScheduleInput";
|
|
115
|
+
const _GSO = "GetServiceOutput";
|
|
116
|
+
const _GSe = "GetService";
|
|
117
|
+
const _GW = "GenericWebhook";
|
|
118
|
+
const _IAC = "IamAuthConfiguration";
|
|
119
|
+
const _IACd = "IdcAuthConfiguration";
|
|
120
|
+
const _IACdp = "IdpAuthConfiguration";
|
|
121
|
+
const _ICFC = "InitiateChatForCase";
|
|
122
|
+
const _ICFCR = "InitiateChatForCaseRequest";
|
|
123
|
+
const _ICFCRn = "InitiateChatForCaseResponse";
|
|
124
|
+
const _ICS = "IdpClientSecret";
|
|
125
|
+
const _ICSE = "IdentityCenterServiceException";
|
|
126
|
+
const _IPE = "InvalidParameterException";
|
|
127
|
+
const _ISE = "InternalServerException";
|
|
128
|
+
const _JR = "JournalRecord";
|
|
129
|
+
const _JRL = "JournalRecordList";
|
|
130
|
+
const _LA = "ListAssociations";
|
|
131
|
+
const _LAI = "ListAssociationsInput";
|
|
132
|
+
const _LAO = "ListAssociationsOutput";
|
|
133
|
+
const _LAS = "ListAgentSpaces";
|
|
134
|
+
const _LASI = "ListAgentSpacesInput";
|
|
135
|
+
const _LASO = "ListAgentSpacesOutput";
|
|
136
|
+
const _LBT = "ListBacklogTasks";
|
|
137
|
+
const _LBTR = "ListBacklogTasksRequest";
|
|
138
|
+
const _LBTRi = "ListBacklogTasksResponse";
|
|
139
|
+
const _LC = "ListChats";
|
|
140
|
+
const _LCR = "ListChatsRequest";
|
|
141
|
+
const _LCRi = "ListChatsResponse";
|
|
142
|
+
const _LE = "ListExecutions";
|
|
143
|
+
const _LER = "ListExecutionsRequest";
|
|
144
|
+
const _LERi = "ListExecutionsResponse";
|
|
145
|
+
const _LG = "ListGoals";
|
|
146
|
+
const _LGR = "ListGoalsRequest";
|
|
147
|
+
const _LGRi = "ListGoalsResponse";
|
|
148
|
+
const _LJR = "ListJournalRecords";
|
|
149
|
+
const _LJRR = "ListJournalRecordsRequest";
|
|
150
|
+
const _LJRRi = "ListJournalRecordsResponse";
|
|
151
|
+
const _LPC = "ListPrivateConnections";
|
|
152
|
+
const _LPCI = "ListPrivateConnectionsInput";
|
|
153
|
+
const _LPCO = "ListPrivateConnectionsOutput";
|
|
154
|
+
const _LPM = "ListPendingMessages";
|
|
155
|
+
const _LPMR = "ListPendingMessagesRequest";
|
|
156
|
+
const _LPMRi = "ListPendingMessagesResponse";
|
|
157
|
+
const _LR = "ListRecommendations";
|
|
158
|
+
const _LRR = "ListRecommendationsRequest";
|
|
159
|
+
const _LRRi = "ListRecommendationsResponse";
|
|
160
|
+
const _LS = "ListServices";
|
|
161
|
+
const _LSI = "ListServicesInput";
|
|
162
|
+
const _LSO = "ListServicesOutput";
|
|
163
|
+
const _LTFR = "ListTagsForResource";
|
|
164
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
165
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
166
|
+
const _LW = "ListWebhooks";
|
|
167
|
+
const _LWI = "ListWebhooksInput";
|
|
168
|
+
const _LWO = "ListWebhooksOutput";
|
|
169
|
+
const _M = "Message";
|
|
170
|
+
const _MCPSAC = "MCPServerAuthorizationConfig";
|
|
171
|
+
const _MCPSADC = "MCPServerAuthorizationDiscoveryConfig";
|
|
172
|
+
const _MCPSAPIKC = "MCPServerAPIKeyConfig";
|
|
173
|
+
const _MCPSBTC = "MCPServerBearerTokenConfig";
|
|
174
|
+
const _MCPSD = "MCPServerDetails";
|
|
175
|
+
const _MCPSGC = "MCPServerGrafanaConfiguration";
|
|
176
|
+
const _MCPSNRC = "MCPServerNewRelicConfiguration";
|
|
177
|
+
const _MCPSOACCC = "MCPServerOAuthClientCredentialsConfig";
|
|
178
|
+
const _MCPSOALOC = "MCPServerOAuth3LOConfig";
|
|
179
|
+
const _MCPSSVAC = "MCPServerSigV4AuthorizationConfig";
|
|
180
|
+
const _MCPSSVSD = "MCPServerSigV4ServiceDetails";
|
|
181
|
+
const _MSTC = "MSTeamsChannel";
|
|
182
|
+
const _MSTCe = "MSTeamsConfiguration";
|
|
183
|
+
const _MSTTT = "MSTeamsTransmissionTarget";
|
|
184
|
+
const _NRAKC = "NewRelicApiKeyConfig";
|
|
185
|
+
const _NRSAC = "NewRelicServiceAuthorizationConfig";
|
|
186
|
+
const _NRSD = "NewRelicServiceDetails";
|
|
187
|
+
const _OAASD = "OAuthAdditionalStepDetails";
|
|
188
|
+
const _PCM = "PrivateConnectionMode";
|
|
189
|
+
const _PCS = "PrivateConnectionSummary";
|
|
190
|
+
const _PCSL = "PrivateConnectionSummaryList";
|
|
191
|
+
const _PDAC = "PagerDutyAuthorizationConfig";
|
|
192
|
+
const _PDC = "PagerDutyConfiguration";
|
|
193
|
+
const _PDD = "PagerDutyDetails";
|
|
194
|
+
const _PDOACCC = "PagerDutyOAuthClientCredentialsConfig";
|
|
195
|
+
const _PM = "PendingMessage";
|
|
196
|
+
const _PMe = "PendingMessages";
|
|
197
|
+
const _R = "Recommendation";
|
|
198
|
+
const _RADOSD = "RegisteredAzureDevOpsServiceDetails";
|
|
199
|
+
const _RAID = "RegisteredAzureIdentityDetails";
|
|
200
|
+
const _RC = "RecommendationContent";
|
|
201
|
+
const _RGLSD = "RegisteredGitLabServiceDetails";
|
|
202
|
+
const _RGSD = "RegisteredGithubServiceDetails";
|
|
203
|
+
const _RGSDe = "RegisteredGrafanaServerDetails";
|
|
204
|
+
const _RI = "ReferenceInput";
|
|
205
|
+
const _RL = "RecommendationList";
|
|
206
|
+
const _RMCPSD = "RegisteredMCPServerDetails";
|
|
207
|
+
const _RMCPSSVD = "RegisteredMCPServerSigV4Details";
|
|
208
|
+
const _RNFE = "ResourceNotFoundException";
|
|
209
|
+
const _RNRD = "RegisteredNewRelicDetails";
|
|
210
|
+
const _RO = "ReferenceOutput";
|
|
211
|
+
const _RPDD = "RegisteredPagerDutyDetails";
|
|
212
|
+
const _RS = "RegisteredService";
|
|
213
|
+
const _RSI = "RegisterServiceInput";
|
|
214
|
+
const _RSL = "RegisteredServicesList";
|
|
215
|
+
const _RSND = "RegisteredServiceNowDetails";
|
|
216
|
+
const _RSO = "RegisterServiceOutput";
|
|
217
|
+
const _RSSD = "RegisteredSlackServiceDetails";
|
|
218
|
+
const _RSe = "RegisterService";
|
|
219
|
+
const _SAC = "SourceAwsConfiguration";
|
|
220
|
+
const _SC = "SlackChannel";
|
|
221
|
+
const _SCe = "ServiceConfiguration";
|
|
222
|
+
const _SCl = "SlackConfiguration";
|
|
223
|
+
const _SD = "ServiceDetails";
|
|
224
|
+
const _SL = "SupportLevel";
|
|
225
|
+
const _SM = "SendMessage";
|
|
226
|
+
const _SMC = "SendMessageContext";
|
|
227
|
+
const _SMCBD = "SendMessageContentBlockDelta";
|
|
228
|
+
const _SMCBDE = "SendMessageContentBlockDeltaEvent";
|
|
229
|
+
const _SMCBSE = "SendMessageContentBlockStartEvent";
|
|
230
|
+
const _SMCBSEe = "SendMessageContentBlockStopEvent";
|
|
231
|
+
const _SME = "SendMessageEvents";
|
|
232
|
+
const _SMHE = "SendMessageHeartbeatEvent";
|
|
233
|
+
const _SMI = "SelfManagedInput";
|
|
234
|
+
const _SMIe = "ServiceManagedInput";
|
|
235
|
+
const _SMJD = "SendMessageJsonDelta";
|
|
236
|
+
const _SMR = "SendMessageRequest";
|
|
237
|
+
const _SMRCE = "SendMessageResponseCompletedEvent";
|
|
238
|
+
const _SMRCEe = "SendMessageResponseCreatedEvent";
|
|
239
|
+
const _SMRFE = "SendMessageResponseFailedEvent";
|
|
240
|
+
const _SMRIPE = "SendMessageResponseInProgressEvent";
|
|
241
|
+
const _SMRe = "SendMessageResponse";
|
|
242
|
+
const _SMSE = "SendMessageSummaryEvent";
|
|
243
|
+
const _SMTD = "SendMessageTextDelta";
|
|
244
|
+
const _SMUI = "SendMessageUsageInfo";
|
|
245
|
+
const _SNC = "ServiceNowConfiguration";
|
|
246
|
+
const _SNOACCC = "ServiceNowOAuthClientCredentialsConfig";
|
|
247
|
+
const _SNSAC = "ServiceNowServiceAuthorizationConfig";
|
|
248
|
+
const _SNSD = "ServiceNowServiceDetails";
|
|
249
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
250
|
+
const _STT = "SlackTransmissionTarget";
|
|
251
|
+
const _T = "Task";
|
|
252
|
+
const _TE = "ThrottlingException";
|
|
253
|
+
const _TF = "TaskFilter";
|
|
254
|
+
const _TL = "TaskList";
|
|
255
|
+
const _TR = "TagResource";
|
|
256
|
+
const _TRR = "TagResourceRequest";
|
|
257
|
+
const _TRRa = "TagResourceResponse";
|
|
258
|
+
const _TV = "TokenValue";
|
|
259
|
+
const _UA = "UpdateAssociation";
|
|
260
|
+
const _UAI = "UpdateAssociationInput";
|
|
261
|
+
const _UAO = "UpdateAssociationOutput";
|
|
262
|
+
const _UAS = "UpdateAgentSpace";
|
|
263
|
+
const _UASI = "UpdateAgentSpaceInput";
|
|
264
|
+
const _UASO = "UpdateAgentSpaceOutput";
|
|
265
|
+
const _UBT = "UpdateBacklogTask";
|
|
266
|
+
const _UBTR = "UpdateBacklogTaskRequest";
|
|
267
|
+
const _UBTRp = "UpdateBacklogTaskResponse";
|
|
268
|
+
const _UG = "UpdateGoal";
|
|
269
|
+
const _UGR = "UpdateGoalRequest";
|
|
270
|
+
const _UGRp = "UpdateGoalResponse";
|
|
271
|
+
const _UM = "UsageMetric";
|
|
272
|
+
const _UMB = "UserMessageBlock";
|
|
273
|
+
const _UMs = "UserMessage";
|
|
274
|
+
const _UOAIC = "UpdateOperatorAppIdpConfig";
|
|
275
|
+
const _UOAICI = "UpdateOperatorAppIdpConfigInput";
|
|
276
|
+
const _UOAICO = "UpdateOperatorAppIdpConfigOutput";
|
|
277
|
+
const _UPCC = "UpdatePrivateConnectionCertificate";
|
|
278
|
+
const _UPCCI = "UpdatePrivateConnectionCertificateInput";
|
|
279
|
+
const _UPCCO = "UpdatePrivateConnectionCertificateOutput";
|
|
280
|
+
const _UR = "UserReference";
|
|
281
|
+
const _URR = "UntagResourceRequest";
|
|
282
|
+
const _URRn = "UntagResourceResponse";
|
|
283
|
+
const _URRp = "UpdateRecommendationRequest";
|
|
284
|
+
const _URRpd = "UpdateRecommendationResponse";
|
|
285
|
+
const _URn = "UntagResource";
|
|
286
|
+
const _URp = "UpdateRecommendation";
|
|
287
|
+
const _VAA = "ValidateAwsAssociations";
|
|
288
|
+
const _VAAI = "ValidateAwsAssociationsInput";
|
|
289
|
+
const _VAAO = "ValidateAwsAssociationsOutput";
|
|
290
|
+
const _VE = "ValidationException";
|
|
291
|
+
const _VEF = "ValidationExceptionField";
|
|
292
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
293
|
+
const _W = "Webhook";
|
|
294
|
+
const _WL = "WebhooksList";
|
|
295
|
+
const _WS = "WebhookSecret";
|
|
296
|
+
const _a = "association";
|
|
297
|
+
const _aC = "authorizationConfig";
|
|
298
|
+
const _aCd = "additionalContext";
|
|
299
|
+
const _aD = "authorizationDiscovery";
|
|
300
|
+
const _aF = "authFlow";
|
|
301
|
+
const _aH = "authorizationHeader";
|
|
302
|
+
const _aI = "associationId";
|
|
303
|
+
const _aIc = "accountId";
|
|
304
|
+
const _aIp = "applicationIds";
|
|
305
|
+
const _aK = "apiKey";
|
|
306
|
+
const _aKH = "apiKeyHeader";
|
|
307
|
+
const _aKN = "apiKeyName";
|
|
308
|
+
const _aKV = "apiKeyValue";
|
|
309
|
+
const _aM = "authorizationMethod";
|
|
310
|
+
const _aMs = "assistantMessage";
|
|
311
|
+
const _aPI = "alertPolicyIds";
|
|
312
|
+
const _aR = "accessibleResources";
|
|
313
|
+
const _aRA = "assumableRoleArn";
|
|
314
|
+
const _aS = "agentSpace";
|
|
315
|
+
const _aSA = "agentSpaceArn";
|
|
316
|
+
const _aSD = "additionalServiceDetails";
|
|
317
|
+
const _aSI = "agentSpaceId";
|
|
318
|
+
const _aST = "agentSubTask";
|
|
319
|
+
const _aSc = "activeSubscription";
|
|
320
|
+
const _aSd = "additionalStep";
|
|
321
|
+
const _aSg = "agentSpaces";
|
|
322
|
+
const _aSu = "authScopes";
|
|
323
|
+
const _aT = "accountType";
|
|
324
|
+
const _aTg = "agentType";
|
|
325
|
+
const _aU = "accountUrn";
|
|
326
|
+
const _aUu = "authorizationUrl";
|
|
327
|
+
const _as = "associations";
|
|
328
|
+
const _aw = "aws";
|
|
329
|
+
const _az = "azuredevops";
|
|
330
|
+
const _azu = "azureidentity";
|
|
331
|
+
const _azur = "azure";
|
|
332
|
+
const _bT = "bearerToken";
|
|
333
|
+
const _c = "client";
|
|
334
|
+
const _cA = "createdAt";
|
|
335
|
+
const _cAr = "createdAfter";
|
|
336
|
+
const _cB = "createdBefore";
|
|
337
|
+
const _cBD = "contentBlockDelta";
|
|
338
|
+
const _cBS = "contentBlockStart";
|
|
339
|
+
const _cBSo = "contentBlockStop";
|
|
340
|
+
const _cE = "customerEmail";
|
|
341
|
+
const _cET = "certificateExpiryTime";
|
|
342
|
+
const _cI = "clientId";
|
|
343
|
+
const _cIh = "channelId";
|
|
344
|
+
const _cN = "clientName";
|
|
345
|
+
const _cNh = "channelName";
|
|
346
|
+
const _cP = "currentPage";
|
|
347
|
+
const _cPC = "chatParticipantConnection";
|
|
348
|
+
const _cS = "clientSecret";
|
|
349
|
+
const _cT = "clientToken";
|
|
350
|
+
const _ce = "certificate";
|
|
351
|
+
const _co = "configuration";
|
|
352
|
+
const _cod = "code";
|
|
353
|
+
const _con = "content";
|
|
354
|
+
const _cont = "context";
|
|
355
|
+
const _d = "description";
|
|
356
|
+
const _dSA = "deliverySourceArn";
|
|
357
|
+
const _de = "delta";
|
|
358
|
+
const _dy = "dynatrace";
|
|
359
|
+
const _e = "error";
|
|
360
|
+
const _eC = "errorCode";
|
|
361
|
+
const _eCv = "eventChannel";
|
|
362
|
+
const _eG = "entityGuids";
|
|
363
|
+
const _eI = "executionId";
|
|
364
|
+
const _eIn = "envId";
|
|
365
|
+
const _eIx = "externalId";
|
|
366
|
+
const _eM = "errorMessage";
|
|
367
|
+
const _eP = "exchangeParameters";
|
|
368
|
+
const _eS = "executionStatus";
|
|
369
|
+
const _eSv = "evaluationSchedule";
|
|
370
|
+
const _eU = "exchangeUrl";
|
|
371
|
+
const _en = "endpoint";
|
|
372
|
+
const _ev = "events";
|
|
373
|
+
const _ex = "expression";
|
|
374
|
+
const _exe = "executions";
|
|
375
|
+
const _f = "filter";
|
|
376
|
+
const _fL = "fieldList";
|
|
377
|
+
const _fST = "filterServiceTypes";
|
|
378
|
+
const _fSTi = "filterServiceType";
|
|
379
|
+
const _g = "goals";
|
|
380
|
+
const _gI = "groupId";
|
|
381
|
+
const _gIo = "goalId";
|
|
382
|
+
const _gT = "goalType";
|
|
383
|
+
const _gV = "goalVersion";
|
|
384
|
+
const _gi = "github";
|
|
385
|
+
const _git = "gitlab";
|
|
386
|
+
const _go = "goal";
|
|
387
|
+
const _h = "heartbeat";
|
|
388
|
+
const _hA = "hostAddress";
|
|
389
|
+
const _hE = "httpError";
|
|
390
|
+
const _hH = "httpHeader";
|
|
391
|
+
const _hLT = "hasLinkedTasks";
|
|
392
|
+
const _hQ = "httpQuery";
|
|
393
|
+
const _ht = "http";
|
|
394
|
+
const _i = "iam";
|
|
395
|
+
const _iAA = "idcApplicationArn";
|
|
396
|
+
const _iAPE = "ipv4AddressesPerEni";
|
|
397
|
+
const _iAT = "ipAddressType";
|
|
398
|
+
const _iCI = "initialContactId";
|
|
399
|
+
const _iCId = "idpClientId";
|
|
400
|
+
const _iCS = "idpClientSecret";
|
|
401
|
+
const _iD = "isDisconnected";
|
|
402
|
+
const _iI = "instanceIdentifier";
|
|
403
|
+
const _iIA = "idcInstanceArn";
|
|
404
|
+
const _iIn = "instanceId";
|
|
405
|
+
const _iT = "inputTokens";
|
|
406
|
+
const _iU = "issuerUrl";
|
|
407
|
+
const _iUn = "instanceUrl";
|
|
408
|
+
const _id = "idc";
|
|
409
|
+
const _id_ = "id";
|
|
410
|
+
const _idp = "idp";
|
|
411
|
+
const _in = "index";
|
|
412
|
+
const _jD = "jsonDelta";
|
|
413
|
+
const _kKA = "kmsKeyArn";
|
|
414
|
+
const _l = "locale";
|
|
415
|
+
const _lEA = "lastEvaluatedAt";
|
|
416
|
+
const _lM = "lastMessage";
|
|
417
|
+
const _lSTI = "lastSuccessfulTaskId";
|
|
418
|
+
const _lT = "logType";
|
|
419
|
+
const _lTI = "lastTaskId";
|
|
420
|
+
const _la = "last";
|
|
421
|
+
const _li = "limit";
|
|
422
|
+
const _m = "message";
|
|
423
|
+
const _mAEH = "monthlyAccountEvaluationHours";
|
|
424
|
+
const _mAIH = "monthlyAccountInvestigationHours";
|
|
425
|
+
const _mASLH = "monthlyAccountSystemLearningHours";
|
|
426
|
+
const _mI = "messageId";
|
|
427
|
+
const _mR = "maxResults";
|
|
428
|
+
const _mSL = "mosaicSupportLevel";
|
|
429
|
+
const _mc = "mcpserverdatadog";
|
|
430
|
+
const _mcp = "mcpserver";
|
|
431
|
+
const _mcps = "mcpserversplunk";
|
|
432
|
+
const _mcpse = "mcpservernewrelic";
|
|
433
|
+
const _mcpser = "mcpservergrafana";
|
|
434
|
+
const _mcpserv = "mcpserversigv4";
|
|
435
|
+
const _me = "messages";
|
|
436
|
+
const _met = "metadata";
|
|
437
|
+
const _mo = "mode";
|
|
438
|
+
const _ms = "msteams";
|
|
439
|
+
const _n = "name";
|
|
440
|
+
const _nT = "nextToken";
|
|
441
|
+
const _o = "owner";
|
|
442
|
+
const _oACC = "oAuthClientCredentials";
|
|
443
|
+
const _oALO = "oAuth3LO";
|
|
444
|
+
const _oARA = "operatorAppRoleArn";
|
|
445
|
+
const _oI = "organizationId";
|
|
446
|
+
const _oN = "organizationName";
|
|
447
|
+
const _oOT = "opsOncallTarget";
|
|
448
|
+
const _oSRET = "opsSRETarget";
|
|
449
|
+
const _oT = "ownerType";
|
|
450
|
+
const _oTu = "outputTokens";
|
|
451
|
+
const _oa = "oauth";
|
|
452
|
+
const _ob = "objectives";
|
|
453
|
+
const _or = "order";
|
|
454
|
+
const _p = "priority";
|
|
455
|
+
const _pC = "privateConnections";
|
|
456
|
+
const _pCN = "privateConnectionName";
|
|
457
|
+
const _pEI = "parentExecutionId";
|
|
458
|
+
const _pI = "projectId";
|
|
459
|
+
const _pIa = "participantId";
|
|
460
|
+
const _pIar = "parentId";
|
|
461
|
+
const _pJ = "partialJson";
|
|
462
|
+
const _pN = "projectName";
|
|
463
|
+
const _pP = "projectPath";
|
|
464
|
+
const _pR = "portRanges";
|
|
465
|
+
const _pT = "participantToken";
|
|
466
|
+
const _pTI = "primaryTaskId";
|
|
467
|
+
const _pa = "path";
|
|
468
|
+
const _pag = "pagerduty";
|
|
469
|
+
const _pr = "provider";
|
|
470
|
+
const _r = "reference";
|
|
471
|
+
const _rA = "resourceArn";
|
|
472
|
+
const _rABA = "resourceArnBeingAuthorized";
|
|
473
|
+
const _rAo = "roleArn";
|
|
474
|
+
const _rC = "responseCreated";
|
|
475
|
+
const _rCI = "resourceConfigurationId";
|
|
476
|
+
const _rCe = "responseCompleted";
|
|
477
|
+
const _rF = "responseFailed";
|
|
478
|
+
const _rGI = "resourceGatewayId";
|
|
479
|
+
const _rI = "recommendationId";
|
|
480
|
+
const _rIP = "responseInProgress";
|
|
481
|
+
const _rIe = "repoId";
|
|
482
|
+
const _rIec = "recordId";
|
|
483
|
+
const _rIef = "referenceId";
|
|
484
|
+
const _rIes = "responseId";
|
|
485
|
+
const _rN = "repoName";
|
|
486
|
+
const _rT = "recordType";
|
|
487
|
+
const _rTE = "returnToEndpoint";
|
|
488
|
+
const _rU = "referenceUrl";
|
|
489
|
+
const _rV = "recommendationVersion";
|
|
490
|
+
const _re = "resources";
|
|
491
|
+
const _rea = "reason";
|
|
492
|
+
const _rec = "recommendation";
|
|
493
|
+
const _reco = "records";
|
|
494
|
+
const _recom = "recommendations";
|
|
495
|
+
const _reg = "region";
|
|
496
|
+
const _req = "requester";
|
|
497
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.devopsagent";
|
|
498
|
+
const _sA = "sourceAws";
|
|
499
|
+
const _sCC = "supportCodeChallenge";
|
|
500
|
+
const _sD = "serviceDetails";
|
|
501
|
+
const _sF = "sortField";
|
|
502
|
+
const _sGI = "securityGroupIds";
|
|
503
|
+
const _sI = "serviceId";
|
|
504
|
+
const _sIu = "subscriptionId";
|
|
505
|
+
const _sIub = "subnetIds";
|
|
506
|
+
const _sL = "supportLevel";
|
|
507
|
+
const _sM = "supportMetadata";
|
|
508
|
+
const _sMe = "serviceManaged";
|
|
509
|
+
const _sMel = "selfManaged";
|
|
510
|
+
const _sN = "sequenceNumber";
|
|
511
|
+
const _sR = "statusReason";
|
|
512
|
+
const _sT = "serviceType";
|
|
513
|
+
const _sc = "scopes";
|
|
514
|
+
const _se = "server";
|
|
515
|
+
const _ser = "service";
|
|
516
|
+
const _serv = "services";
|
|
517
|
+
const _servi = "servicenow";
|
|
518
|
+
const _sl = "slack";
|
|
519
|
+
const _sp = "spec";
|
|
520
|
+
const _st = "status";
|
|
521
|
+
const _sta = "state";
|
|
522
|
+
const _str = "streaming";
|
|
523
|
+
const _su = "summary";
|
|
524
|
+
const _sy = "system";
|
|
525
|
+
const _t = "tags";
|
|
526
|
+
const _tD = "textDelta";
|
|
527
|
+
const _tI = "taskId";
|
|
528
|
+
const _tIe = "teamId";
|
|
529
|
+
const _tIen = "tenantId";
|
|
530
|
+
const _tK = "tagKeys";
|
|
531
|
+
const _tN = "tokenName";
|
|
532
|
+
const _tNe = "teamName";
|
|
533
|
+
const _tR = "toolResult";
|
|
534
|
+
const _tS = "taskStatus";
|
|
535
|
+
const _tT = "taskType";
|
|
536
|
+
const _tTo = "tokenType";
|
|
537
|
+
const _tTot = "totalTokens";
|
|
538
|
+
const _tTr = "transmissionTarget";
|
|
539
|
+
const _tU = "targetUrl";
|
|
540
|
+
const _tUo = "toolUse";
|
|
541
|
+
const _tV = "tokenValue";
|
|
542
|
+
const _ta = "task";
|
|
543
|
+
const _tas = "tasks";
|
|
544
|
+
const _te = "text";
|
|
545
|
+
const _ti = "title";
|
|
546
|
+
const _to = "tools";
|
|
547
|
+
const _ty = "type";
|
|
548
|
+
const _u = "uid";
|
|
549
|
+
const _uA = "updatedAt";
|
|
550
|
+
const _uAR = "userActionResponse";
|
|
551
|
+
const _uEC = "underlyingErrorCode";
|
|
552
|
+
const _uI = "userId";
|
|
553
|
+
const _uM = "userMessage";
|
|
554
|
+
const _uPET = "usagePeriodEndTime";
|
|
555
|
+
const _uPST = "usagePeriodStartTime";
|
|
556
|
+
const _uR = "userReference";
|
|
557
|
+
const _uT = "userType";
|
|
558
|
+
const _us = "usage";
|
|
559
|
+
const _v = "version";
|
|
560
|
+
const _vI = "vpcId";
|
|
561
|
+
const _w = "webhook";
|
|
562
|
+
const _wI = "webhookId";
|
|
563
|
+
const _wIRA = "webIdentityRoleArn";
|
|
564
|
+
const _wITA = "webIdentityTokenAudiences";
|
|
565
|
+
const _wIo = "workspaceId";
|
|
566
|
+
const _wN = "workspaceName";
|
|
567
|
+
const _wS = "webhookSecret";
|
|
568
|
+
const _wT = "webhookType";
|
|
569
|
+
const _wU = "webhookUrl";
|
|
570
|
+
const _we = "webhooks";
|
|
571
|
+
const _xaaaf = "x-amzn-app-auth-flow";
|
|
572
|
+
const n0 = "com.amazonaws.devopsagent";
|
|
573
|
+
const schema_1 = require("@smithy/core/schema");
|
|
574
|
+
const DevOpsAgentServiceException_1 = require("../models/DevOpsAgentServiceException");
|
|
575
|
+
const errors_1 = require("../models/errors");
|
|
576
|
+
const _s_registry = schema_1.TypeRegistry.for(_s);
|
|
577
|
+
exports.DevOpsAgentServiceException$ = [-3, _s, "DevOpsAgentServiceException", 0, [], []];
|
|
578
|
+
_s_registry.registerError(exports.DevOpsAgentServiceException$, DevOpsAgentServiceException_1.DevOpsAgentServiceException);
|
|
579
|
+
const n0_registry = schema_1.TypeRegistry.for(n0);
|
|
580
|
+
exports.AccessDeniedException$ = [-3, n0, _ADE,
|
|
581
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
582
|
+
[_m],
|
|
583
|
+
[0], 1
|
|
584
|
+
];
|
|
585
|
+
n0_registry.registerError(exports.AccessDeniedException$, errors_1.AccessDeniedException);
|
|
586
|
+
exports.ConflictException$ = [-3, n0, _CE,
|
|
587
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
588
|
+
[_m],
|
|
589
|
+
[0], 1
|
|
590
|
+
];
|
|
591
|
+
n0_registry.registerError(exports.ConflictException$, errors_1.ConflictException);
|
|
592
|
+
exports.ContentSizeExceededException$ = [-3, n0, _CSEE,
|
|
593
|
+
{ [_e]: _c, [_hE]: 413 },
|
|
594
|
+
[_m],
|
|
595
|
+
[0], 1
|
|
596
|
+
];
|
|
597
|
+
n0_registry.registerError(exports.ContentSizeExceededException$, errors_1.ContentSizeExceededException);
|
|
598
|
+
exports.IdentityCenterServiceException$ = [-3, n0, _ICSE,
|
|
599
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
600
|
+
[_m, _uEC],
|
|
601
|
+
[0, 0], 1
|
|
602
|
+
];
|
|
603
|
+
n0_registry.registerError(exports.IdentityCenterServiceException$, errors_1.IdentityCenterServiceException);
|
|
604
|
+
exports.InternalServerException$ = [-3, n0, _ISE,
|
|
605
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
606
|
+
[_m],
|
|
607
|
+
[0], 1
|
|
608
|
+
];
|
|
609
|
+
n0_registry.registerError(exports.InternalServerException$, errors_1.InternalServerException);
|
|
610
|
+
exports.InvalidParameterException$ = [-3, n0, _IPE,
|
|
611
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
612
|
+
[_m],
|
|
613
|
+
[0], 1
|
|
614
|
+
];
|
|
615
|
+
n0_registry.registerError(exports.InvalidParameterException$, errors_1.InvalidParameterException);
|
|
616
|
+
exports.ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
617
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
618
|
+
[_m],
|
|
619
|
+
[0], 1
|
|
620
|
+
];
|
|
621
|
+
n0_registry.registerError(exports.ResourceNotFoundException$, errors_1.ResourceNotFoundException);
|
|
622
|
+
exports.ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
623
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
624
|
+
[_m],
|
|
625
|
+
[0], 1
|
|
626
|
+
];
|
|
627
|
+
n0_registry.registerError(exports.ServiceQuotaExceededException$, errors_1.ServiceQuotaExceededException);
|
|
628
|
+
exports.ThrottlingException$ = [-3, n0, _TE,
|
|
629
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
630
|
+
[_m],
|
|
631
|
+
[0], 1
|
|
632
|
+
];
|
|
633
|
+
n0_registry.registerError(exports.ThrottlingException$, errors_1.ThrottlingException);
|
|
634
|
+
exports.ValidationException$ = [-3, n0, _VE,
|
|
635
|
+
{ [_e]: _c },
|
|
636
|
+
[_m, _fL],
|
|
637
|
+
[0, () => ValidationExceptionFieldList], 1
|
|
638
|
+
];
|
|
639
|
+
n0_registry.registerError(exports.ValidationException$, errors_1.ValidationException);
|
|
640
|
+
exports.errorTypeRegistries = [
|
|
641
|
+
_s_registry,
|
|
642
|
+
n0_registry,
|
|
643
|
+
];
|
|
644
|
+
var ApiKeyValue = [0, n0, _AKV, 8, 0];
|
|
645
|
+
var ClientId = [0, n0, _CI, 8, 0];
|
|
646
|
+
var ClientSecret = [0, n0, _CS, 8, 0];
|
|
647
|
+
var Description = [0, n0, _D, 8, 0];
|
|
648
|
+
var EmailAddress = [0, n0, _EA, 8, 0];
|
|
649
|
+
var ExchangeParameterValue = [0, n0, _EPV, 8, 0];
|
|
650
|
+
var IdpClientSecret = [0, n0, _ICS, 8, 0];
|
|
651
|
+
var TokenValue = [0, n0, _TV, 8, 0];
|
|
652
|
+
var WebhookSecret = [0, n0, _WS, 8, 0];
|
|
653
|
+
exports.AgentSpace$ = [3, n0, _AS,
|
|
654
|
+
0,
|
|
655
|
+
[_n, _cA, _uA, _aSI, _d, _l, _kKA],
|
|
656
|
+
[0, 5, 5, 0, [() => Description, 0], 0, 0], 4
|
|
657
|
+
];
|
|
658
|
+
exports.AllowVendedLogDeliveryForResourceInput$ = [3, n0, _AVLDFRI,
|
|
659
|
+
0,
|
|
660
|
+
[_rABA, _dSA, _lT],
|
|
661
|
+
[0, 0, 0], 2
|
|
662
|
+
];
|
|
663
|
+
exports.AllowVendedLogDeliveryForResourceOutput$ = [3, n0, _AVLDFRO,
|
|
664
|
+
0,
|
|
665
|
+
[_m],
|
|
666
|
+
[0]
|
|
667
|
+
];
|
|
668
|
+
exports.AssociateServiceInput$ = [3, n0, _ASI,
|
|
669
|
+
0,
|
|
670
|
+
[_aSI, _sI, _co],
|
|
671
|
+
[[0, 1], 0, [() => exports.ServiceConfiguration$, 0]], 3
|
|
672
|
+
];
|
|
673
|
+
exports.AssociateServiceOutput$ = [3, n0, _ASO,
|
|
674
|
+
0,
|
|
675
|
+
[_a, _w],
|
|
676
|
+
[[() => exports.Association$, 0], [() => exports.GenericWebhook$, 0]], 1
|
|
677
|
+
];
|
|
678
|
+
exports.Association$ = [3, n0, _A,
|
|
679
|
+
0,
|
|
680
|
+
[_aSI, _cA, _uA, _aI, _sI, _co, _st],
|
|
681
|
+
[0, 5, 5, 0, 0, [() => exports.ServiceConfiguration$, 0], 0], 6
|
|
682
|
+
];
|
|
683
|
+
exports.AWSConfiguration$ = [3, n0, _AWSC,
|
|
684
|
+
0,
|
|
685
|
+
[_aRA, _aIc, _aT],
|
|
686
|
+
[0, 0, 0], 3
|
|
687
|
+
];
|
|
688
|
+
exports.AzureConfiguration$ = [3, n0, _AC,
|
|
689
|
+
0,
|
|
690
|
+
[_sIu],
|
|
691
|
+
[0], 1
|
|
692
|
+
];
|
|
693
|
+
exports.AzureDevOpsConfiguration$ = [3, n0, _ADOC,
|
|
694
|
+
0,
|
|
695
|
+
[_oN, _pI, _pN],
|
|
696
|
+
[0, 0, 0], 3
|
|
697
|
+
];
|
|
698
|
+
exports.ChatExecution$ = [3, n0, _CEh,
|
|
699
|
+
0,
|
|
700
|
+
[_eI, _cA, _uA, _su],
|
|
701
|
+
[0, 4, 4, 0], 2
|
|
702
|
+
];
|
|
703
|
+
exports.ChatParticipantConnection$ = [3, n0, _CPC,
|
|
704
|
+
0,
|
|
705
|
+
[_iCI, _pIa, _pT],
|
|
706
|
+
[0, 0, 0], 3
|
|
707
|
+
];
|
|
708
|
+
exports.CreateAgentSpaceInput$ = [3, n0, _CASI,
|
|
709
|
+
0,
|
|
710
|
+
[_n, _d, _l, _kKA, _cT, _t],
|
|
711
|
+
[0, [() => Description, 0], 0, 0, [0, 4], 128 | 0], 1
|
|
712
|
+
];
|
|
713
|
+
exports.CreateAgentSpaceOutput$ = [3, n0, _CASO,
|
|
714
|
+
0,
|
|
715
|
+
[_aS, _t],
|
|
716
|
+
[[() => exports.AgentSpace$, 0], 128 | 0], 1
|
|
717
|
+
];
|
|
718
|
+
exports.CreateBacklogTaskRequest$ = [3, n0, _CBTR,
|
|
719
|
+
0,
|
|
720
|
+
[_aSI, _tT, _ti, _p, _r, _d, _cT],
|
|
721
|
+
[[0, 1], 0, 0, 0, () => exports.ReferenceInput$, 0, [0, 4]], 4
|
|
722
|
+
];
|
|
723
|
+
exports.CreateBacklogTaskResponse$ = [3, n0, _CBTRr,
|
|
724
|
+
0,
|
|
725
|
+
[_ta],
|
|
726
|
+
[() => exports.Task$], 1
|
|
727
|
+
];
|
|
728
|
+
exports.CreateChatRequest$ = [3, n0, _CCR,
|
|
729
|
+
0,
|
|
730
|
+
[_aSI, _uI, _uT],
|
|
731
|
+
[[0, 1], [0, { [_hQ]: _uI }], [0, { [_hQ]: _uT }]], 2
|
|
732
|
+
];
|
|
733
|
+
exports.CreateChatResponse$ = [3, n0, _CCRr,
|
|
734
|
+
0,
|
|
735
|
+
[_eI, _cA],
|
|
736
|
+
[0, 4], 2
|
|
737
|
+
];
|
|
738
|
+
exports.CreatePrivateConnectionInput$ = [3, n0, _CPCI,
|
|
739
|
+
0,
|
|
740
|
+
[_n, _mo, _t],
|
|
741
|
+
[0, () => exports.PrivateConnectionMode$, 128 | 0], 2
|
|
742
|
+
];
|
|
743
|
+
exports.CreatePrivateConnectionOutput$ = [3, n0, _CPCO,
|
|
744
|
+
0,
|
|
745
|
+
[_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _t],
|
|
746
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 128 | 0], 3
|
|
747
|
+
];
|
|
748
|
+
exports.DatadogServiceDetails$ = [3, n0, _DSD,
|
|
749
|
+
0,
|
|
750
|
+
[_n, _en, _aC, _d],
|
|
751
|
+
[0, 0, () => exports.DatadogAuthorizationConfig$, [() => Description, 0]], 3
|
|
752
|
+
];
|
|
753
|
+
exports.DeleteAgentSpaceInput$ = [3, n0, _DASI,
|
|
754
|
+
0,
|
|
755
|
+
[_aSI],
|
|
756
|
+
[[0, 1]], 1
|
|
757
|
+
];
|
|
758
|
+
exports.DeleteAgentSpaceOutput$ = [3, n0, _DASO,
|
|
759
|
+
0,
|
|
760
|
+
[],
|
|
761
|
+
[]
|
|
762
|
+
];
|
|
763
|
+
exports.DeletePrivateConnectionInput$ = [3, n0, _DPCI,
|
|
764
|
+
0,
|
|
765
|
+
[_n],
|
|
766
|
+
[[0, 1]], 1
|
|
767
|
+
];
|
|
768
|
+
exports.DeletePrivateConnectionOutput$ = [3, n0, _DPCO,
|
|
769
|
+
0,
|
|
770
|
+
[_n, _st],
|
|
771
|
+
[0, 0], 2
|
|
772
|
+
];
|
|
773
|
+
exports.DeregisterServiceInput$ = [3, n0, _DSI,
|
|
774
|
+
0,
|
|
775
|
+
[_sI],
|
|
776
|
+
[[0, 1]], 1
|
|
777
|
+
];
|
|
778
|
+
exports.DeregisterServiceOutput$ = [3, n0, _DSO,
|
|
779
|
+
0,
|
|
780
|
+
[],
|
|
781
|
+
[]
|
|
782
|
+
];
|
|
783
|
+
exports.DescribePrivateConnectionInput$ = [3, n0, _DPCIe,
|
|
784
|
+
0,
|
|
785
|
+
[_n],
|
|
786
|
+
[[0, 1]], 1
|
|
787
|
+
];
|
|
788
|
+
exports.DescribePrivateConnectionOutput$ = [3, n0, _DPCOe,
|
|
789
|
+
0,
|
|
790
|
+
[_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET, _t],
|
|
791
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 128 | 0], 3
|
|
792
|
+
];
|
|
793
|
+
exports.DescribeSupportLevelRequest$ = [3, n0, _DSLR,
|
|
794
|
+
0,
|
|
795
|
+
[_aSI, _tI],
|
|
796
|
+
[[0, 1], [0, 1]], 2
|
|
797
|
+
];
|
|
798
|
+
exports.DescribeSupportLevelResponse$ = [3, n0, _DSLRe,
|
|
799
|
+
0,
|
|
800
|
+
[_sL, _mSL, _aSc],
|
|
801
|
+
[() => exports.SupportLevel$, () => exports.SupportLevel$, 2], 1
|
|
802
|
+
];
|
|
803
|
+
exports.DisableOperatorAppInput$ = [3, n0, _DOAI,
|
|
804
|
+
0,
|
|
805
|
+
[_aSI, _aF],
|
|
806
|
+
[[0, 1], [0, { [_hH]: _xaaaf }]], 1
|
|
807
|
+
];
|
|
808
|
+
exports.DisassociateServiceInput$ = [3, n0, _DSIi,
|
|
809
|
+
0,
|
|
810
|
+
[_aSI, _aI],
|
|
811
|
+
[[0, 1], [0, 1]], 2
|
|
812
|
+
];
|
|
813
|
+
exports.DisassociateServiceOutput$ = [3, n0, _DSOi,
|
|
814
|
+
0,
|
|
815
|
+
[],
|
|
816
|
+
[]
|
|
817
|
+
];
|
|
818
|
+
exports.DynatraceConfiguration$ = [3, n0, _DC,
|
|
819
|
+
0,
|
|
820
|
+
[_eIn, _re],
|
|
821
|
+
[0, 64 | 0], 1
|
|
822
|
+
];
|
|
823
|
+
exports.DynatraceOAuthClientCredentialsConfig$ = [3, n0, _DOACCC,
|
|
824
|
+
0,
|
|
825
|
+
[_cI, _cS, _cN, _eP],
|
|
826
|
+
[[() => ClientId, 0], [() => ClientSecret, 0], 0, [() => ExchangeParameters, 0]], 2
|
|
827
|
+
];
|
|
828
|
+
exports.DynatraceServiceDetails$ = [3, n0, _DSDy,
|
|
829
|
+
0,
|
|
830
|
+
[_aU, _aC],
|
|
831
|
+
[0, [() => exports.DynatraceServiceAuthorizationConfig$, 0]], 1
|
|
832
|
+
];
|
|
833
|
+
exports.EnableOperatorAppInput$ = [3, n0, _EOAI,
|
|
834
|
+
0,
|
|
835
|
+
[_aSI, _aF, _oARA, _iIA, _iU, _iCId, _iCS, _pr],
|
|
836
|
+
[[0, 1], 0, 0, 0, 0, 0, [() => IdpClientSecret, 0], 0], 3
|
|
837
|
+
];
|
|
838
|
+
exports.EnableOperatorAppOutput$ = [3, n0, _EOAO,
|
|
839
|
+
0,
|
|
840
|
+
[_aSI, _i, _id, _idp],
|
|
841
|
+
[0, () => exports.IamAuthConfiguration$, () => exports.IdcAuthConfiguration$, () => exports.IdpAuthConfiguration$], 1
|
|
842
|
+
];
|
|
843
|
+
exports.EndChatForCaseRequest$ = [3, n0, _ECFCR,
|
|
844
|
+
0,
|
|
845
|
+
[_aSI, _tI, _rea, _req, _cT],
|
|
846
|
+
[[0, 1], [0, 1], 0, 0, [0, 4]], 2
|
|
847
|
+
];
|
|
848
|
+
exports.EndChatForCaseResponse$ = [3, n0, _ECFCRn,
|
|
849
|
+
0,
|
|
850
|
+
[_iD, _eI, _eM],
|
|
851
|
+
[2, 0, 0], 1
|
|
852
|
+
];
|
|
853
|
+
exports.EventChannelConfiguration$ = [3, n0, _ECC,
|
|
854
|
+
0,
|
|
855
|
+
[],
|
|
856
|
+
[]
|
|
857
|
+
];
|
|
858
|
+
exports.EventChannelDetails$ = [3, n0, _ECD,
|
|
859
|
+
0,
|
|
860
|
+
[_ty],
|
|
861
|
+
[0]
|
|
862
|
+
];
|
|
863
|
+
exports.Execution$ = [3, n0, _E,
|
|
864
|
+
0,
|
|
865
|
+
[_aSI, _eI, _aST, _cA, _uA, _eS, _pEI, _aTg, _u],
|
|
866
|
+
[0, 0, 0, 4, 4, 0, 0, 0, 0], 6
|
|
867
|
+
];
|
|
868
|
+
exports.GenericWebhook$ = [3, n0, _GW,
|
|
869
|
+
0,
|
|
870
|
+
[_wU, _wI, _wT, _wS, _aK],
|
|
871
|
+
[0, 0, 0, [() => WebhookSecret, 0], [() => ApiKeyValue, 0]]
|
|
872
|
+
];
|
|
873
|
+
exports.GetAccountUsageInput$ = [3, n0, _GAUI,
|
|
874
|
+
0,
|
|
875
|
+
[],
|
|
876
|
+
[]
|
|
877
|
+
];
|
|
878
|
+
exports.GetAccountUsageOutput$ = [3, n0, _GAUO,
|
|
879
|
+
0,
|
|
880
|
+
[_uPST, _uPET, _mAIH, _mAEH, _mASLH],
|
|
881
|
+
[5, 5, () => exports.UsageMetric$, () => exports.UsageMetric$, () => exports.UsageMetric$], 2
|
|
882
|
+
];
|
|
883
|
+
exports.GetAgentSpaceInput$ = [3, n0, _GASI,
|
|
884
|
+
0,
|
|
885
|
+
[_aSI],
|
|
886
|
+
[[0, 1]], 1
|
|
887
|
+
];
|
|
888
|
+
exports.GetAgentSpaceOutput$ = [3, n0, _GASO,
|
|
889
|
+
0,
|
|
890
|
+
[_aS, _t],
|
|
891
|
+
[[() => exports.AgentSpace$, 0], 128 | 0], 1
|
|
892
|
+
];
|
|
893
|
+
exports.GetAssociationInput$ = [3, n0, _GAI,
|
|
894
|
+
0,
|
|
895
|
+
[_aSI, _aI],
|
|
896
|
+
[[0, 1], [0, 1]], 2
|
|
897
|
+
];
|
|
898
|
+
exports.GetAssociationOutput$ = [3, n0, _GAO,
|
|
899
|
+
0,
|
|
900
|
+
[_a],
|
|
901
|
+
[[() => exports.Association$, 0]], 1
|
|
902
|
+
];
|
|
903
|
+
exports.GetBacklogTaskRequest$ = [3, n0, _GBTR,
|
|
904
|
+
0,
|
|
905
|
+
[_aSI, _tI],
|
|
906
|
+
[[0, 1], [0, 1]], 2
|
|
907
|
+
];
|
|
908
|
+
exports.GetBacklogTaskResponse$ = [3, n0, _GBTRe,
|
|
909
|
+
0,
|
|
910
|
+
[_ta],
|
|
911
|
+
[() => exports.Task$], 1
|
|
912
|
+
];
|
|
913
|
+
exports.GetOperatorAppInput$ = [3, n0, _GOAI,
|
|
914
|
+
0,
|
|
915
|
+
[_aSI],
|
|
916
|
+
[[0, 1]], 1
|
|
917
|
+
];
|
|
918
|
+
exports.GetOperatorAppOutput$ = [3, n0, _GOAO,
|
|
919
|
+
0,
|
|
920
|
+
[_i, _id, _idp],
|
|
921
|
+
[() => exports.IamAuthConfiguration$, () => exports.IdcAuthConfiguration$, () => exports.IdpAuthConfiguration$]
|
|
922
|
+
];
|
|
923
|
+
exports.GetRecommendationRequest$ = [3, n0, _GRR,
|
|
924
|
+
0,
|
|
925
|
+
[_aSI, _rI, _rV],
|
|
926
|
+
[[0, 1], [0, 1], [1, { [_hQ]: _rV }]], 2
|
|
927
|
+
];
|
|
928
|
+
exports.GetRecommendationResponse$ = [3, n0, _GRRe,
|
|
929
|
+
0,
|
|
930
|
+
[_rec],
|
|
931
|
+
[() => exports.Recommendation$], 1
|
|
932
|
+
];
|
|
933
|
+
exports.GetServiceInput$ = [3, n0, _GSI,
|
|
934
|
+
0,
|
|
935
|
+
[_sI],
|
|
936
|
+
[[0, 1]], 1
|
|
937
|
+
];
|
|
938
|
+
exports.GetServiceOutput$ = [3, n0, _GSO,
|
|
939
|
+
0,
|
|
940
|
+
[_ser, _t],
|
|
941
|
+
[[() => exports.RegisteredService$, 0], 128 | 0], 1
|
|
942
|
+
];
|
|
943
|
+
exports.GitHubConfiguration$ = [3, n0, _GHC,
|
|
944
|
+
0,
|
|
945
|
+
[_rN, _rIe, _o, _oT, _iI],
|
|
946
|
+
[0, 0, 0, 0, 0], 4
|
|
947
|
+
];
|
|
948
|
+
exports.GitLabConfiguration$ = [3, n0, _GLC,
|
|
949
|
+
0,
|
|
950
|
+
[_pI, _pP, _iI],
|
|
951
|
+
[0, 0, 0], 2
|
|
952
|
+
];
|
|
953
|
+
exports.GitLabDetails$ = [3, n0, _GLD,
|
|
954
|
+
0,
|
|
955
|
+
[_tU, _tTo, _tV, _gI],
|
|
956
|
+
[0, 0, [() => TokenValue, 0], 0], 3
|
|
957
|
+
];
|
|
958
|
+
exports.Goal$ = [3, n0, _G,
|
|
959
|
+
0,
|
|
960
|
+
[_aSA, _gIo, _ti, _con, _st, _gT, _cA, _uA, _v, _lEA, _lTI, _lSTI, _eSv],
|
|
961
|
+
[0, 0, 0, () => exports.GoalContent$, 0, 0, 5, 5, 1, 5, 0, 0, () => exports.GoalSchedule$], 9
|
|
962
|
+
];
|
|
963
|
+
exports.GoalContent$ = [3, n0, _GC,
|
|
964
|
+
0,
|
|
965
|
+
[_d, _ob],
|
|
966
|
+
[0, 0], 2
|
|
967
|
+
];
|
|
968
|
+
exports.GoalSchedule$ = [3, n0, _GS,
|
|
969
|
+
0,
|
|
970
|
+
[_sta, _ex],
|
|
971
|
+
[0, 0], 1
|
|
972
|
+
];
|
|
973
|
+
exports.GoalScheduleInput$ = [3, n0, _GSIo,
|
|
974
|
+
0,
|
|
975
|
+
[_sta],
|
|
976
|
+
[0], 1
|
|
977
|
+
];
|
|
978
|
+
exports.GrafanaServiceDetails$ = [3, n0, _GSD,
|
|
979
|
+
0,
|
|
980
|
+
[_n, _en, _aC, _d],
|
|
981
|
+
[0, 0, [() => exports.MCPServerAuthorizationConfig$, 0], [() => Description, 0]], 3
|
|
982
|
+
];
|
|
983
|
+
exports.IamAuthConfiguration$ = [3, n0, _IAC,
|
|
984
|
+
0,
|
|
985
|
+
[_oARA, _cA, _uA],
|
|
986
|
+
[0, 5, 5], 2
|
|
987
|
+
];
|
|
988
|
+
exports.IdcAuthConfiguration$ = [3, n0, _IACd,
|
|
989
|
+
0,
|
|
990
|
+
[_oARA, _iIA, _cA, _iAA, _uA],
|
|
991
|
+
[0, 0, 5, 0, 5], 3
|
|
992
|
+
];
|
|
993
|
+
exports.IdpAuthConfiguration$ = [3, n0, _IACdp,
|
|
994
|
+
0,
|
|
995
|
+
[_iU, _cI, _oARA, _pr, _cA, _uA],
|
|
996
|
+
[0, 0, 0, 0, 5, 5], 5
|
|
997
|
+
];
|
|
998
|
+
exports.InitiateChatForCaseRequest$ = [3, n0, _ICFCR,
|
|
999
|
+
0,
|
|
1000
|
+
[_aSI, _tI, _cT],
|
|
1001
|
+
[[0, 1], [0, 1], [0, 4]], 2
|
|
1002
|
+
];
|
|
1003
|
+
exports.InitiateChatForCaseResponse$ = [3, n0, _ICFCRn,
|
|
1004
|
+
0,
|
|
1005
|
+
[_cPC],
|
|
1006
|
+
[() => exports.ChatParticipantConnection$], 1
|
|
1007
|
+
];
|
|
1008
|
+
exports.JournalRecord$ = [3, n0, _JR,
|
|
1009
|
+
0,
|
|
1010
|
+
[_aSI, _eI, _rIec, _con, _cA, _rT, _uR],
|
|
1011
|
+
[0, 0, 0, 15, 4, 0, () => exports.UserReference$], 6
|
|
1012
|
+
];
|
|
1013
|
+
exports.ListAgentSpacesInput$ = [3, n0, _LASI,
|
|
1014
|
+
0,
|
|
1015
|
+
[_mR, _nT],
|
|
1016
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1017
|
+
];
|
|
1018
|
+
exports.ListAgentSpacesOutput$ = [3, n0, _LASO,
|
|
1019
|
+
0,
|
|
1020
|
+
[_aSg, _nT],
|
|
1021
|
+
[[() => AgentSpaceList, 0], 0], 1
|
|
1022
|
+
];
|
|
1023
|
+
exports.ListAssociationsInput$ = [3, n0, _LAI,
|
|
1024
|
+
0,
|
|
1025
|
+
[_aSI, _mR, _nT, _fST],
|
|
1026
|
+
[[0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _fST }]], 1
|
|
1027
|
+
];
|
|
1028
|
+
exports.ListAssociationsOutput$ = [3, n0, _LAO,
|
|
1029
|
+
0,
|
|
1030
|
+
[_as, _nT],
|
|
1031
|
+
[[() => AssociationsList, 0], 0], 1
|
|
1032
|
+
];
|
|
1033
|
+
exports.ListBacklogTasksRequest$ = [3, n0, _LBTR,
|
|
1034
|
+
0,
|
|
1035
|
+
[_aSI, _f, _li, _nT, _sF, _or],
|
|
1036
|
+
[[0, 1], () => exports.TaskFilter$, 1, 0, 0, 0], 1
|
|
1037
|
+
];
|
|
1038
|
+
exports.ListBacklogTasksResponse$ = [3, n0, _LBTRi,
|
|
1039
|
+
0,
|
|
1040
|
+
[_tas, _nT],
|
|
1041
|
+
[() => TaskList, 0], 1
|
|
1042
|
+
];
|
|
1043
|
+
exports.ListChatsRequest$ = [3, n0, _LCR,
|
|
1044
|
+
0,
|
|
1045
|
+
[_aSI, _uI, _mR, _nT],
|
|
1046
|
+
[[0, 1], [0, { [_hQ]: _uI }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
|
|
1047
|
+
];
|
|
1048
|
+
exports.ListChatsResponse$ = [3, n0, _LCRi,
|
|
1049
|
+
0,
|
|
1050
|
+
[_exe, _nT],
|
|
1051
|
+
[() => ChatExecutionList, 0], 1
|
|
1052
|
+
];
|
|
1053
|
+
exports.ListExecutionsRequest$ = [3, n0, _LER,
|
|
1054
|
+
0,
|
|
1055
|
+
[_aSI, _tI, _li, _nT],
|
|
1056
|
+
[[0, 1], 0, 1, 0], 2
|
|
1057
|
+
];
|
|
1058
|
+
exports.ListExecutionsResponse$ = [3, n0, _LERi,
|
|
1059
|
+
0,
|
|
1060
|
+
[_exe, _nT],
|
|
1061
|
+
[() => ExecutionList, 0], 1
|
|
1062
|
+
];
|
|
1063
|
+
exports.ListGoalsRequest$ = [3, n0, _LGR,
|
|
1064
|
+
0,
|
|
1065
|
+
[_aSI, _st, _gT, _li, _nT],
|
|
1066
|
+
[[0, 1], 0, 0, 1, 0], 1
|
|
1067
|
+
];
|
|
1068
|
+
exports.ListGoalsResponse$ = [3, n0, _LGRi,
|
|
1069
|
+
0,
|
|
1070
|
+
[_g, _nT],
|
|
1071
|
+
[() => GoalList, 0], 1
|
|
1072
|
+
];
|
|
1073
|
+
exports.ListJournalRecordsRequest$ = [3, n0, _LJRR,
|
|
1074
|
+
0,
|
|
1075
|
+
[_aSI, _eI, _li, _nT, _rT, _or],
|
|
1076
|
+
[[0, 1], 0, 1, 0, 0, 0], 2
|
|
1077
|
+
];
|
|
1078
|
+
exports.ListJournalRecordsResponse$ = [3, n0, _LJRRi,
|
|
1079
|
+
0,
|
|
1080
|
+
[_reco, _nT],
|
|
1081
|
+
[() => JournalRecordList, 0], 1
|
|
1082
|
+
];
|
|
1083
|
+
exports.ListPendingMessagesRequest$ = [3, n0, _LPMR,
|
|
1084
|
+
0,
|
|
1085
|
+
[_aSI, _eI],
|
|
1086
|
+
[[0, 1], 0], 2
|
|
1087
|
+
];
|
|
1088
|
+
exports.ListPendingMessagesResponse$ = [3, n0, _LPMRi,
|
|
1089
|
+
0,
|
|
1090
|
+
[_aSI, _eI, _me, _cA],
|
|
1091
|
+
[0, 0, () => PendingMessages, 4], 4
|
|
1092
|
+
];
|
|
1093
|
+
exports.ListPrivateConnectionsInput$ = [3, n0, _LPCI,
|
|
1094
|
+
0,
|
|
1095
|
+
[],
|
|
1096
|
+
[]
|
|
1097
|
+
];
|
|
1098
|
+
exports.ListPrivateConnectionsOutput$ = [3, n0, _LPCO,
|
|
1099
|
+
0,
|
|
1100
|
+
[_pC],
|
|
1101
|
+
[() => PrivateConnectionSummaryList], 1
|
|
1102
|
+
];
|
|
1103
|
+
exports.ListRecommendationsRequest$ = [3, n0, _LRR,
|
|
1104
|
+
0,
|
|
1105
|
+
[_aSI, _tI, _gIo, _st, _p, _li, _nT],
|
|
1106
|
+
[[0, 1], 0, 0, 0, 0, 1, 0], 1
|
|
1107
|
+
];
|
|
1108
|
+
exports.ListRecommendationsResponse$ = [3, n0, _LRRi,
|
|
1109
|
+
0,
|
|
1110
|
+
[_recom, _nT],
|
|
1111
|
+
[() => RecommendationList, 0], 1
|
|
1112
|
+
];
|
|
1113
|
+
exports.ListServicesInput$ = [3, n0, _LSI,
|
|
1114
|
+
0,
|
|
1115
|
+
[_mR, _nT, _fSTi],
|
|
1116
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], [0, { [_hQ]: _fSTi }]]
|
|
1117
|
+
];
|
|
1118
|
+
exports.ListServicesOutput$ = [3, n0, _LSO,
|
|
1119
|
+
0,
|
|
1120
|
+
[_serv, _nT],
|
|
1121
|
+
[[() => RegisteredServicesList, 0], 0], 1
|
|
1122
|
+
];
|
|
1123
|
+
exports.ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1124
|
+
0,
|
|
1125
|
+
[_rA],
|
|
1126
|
+
[[0, 1]], 1
|
|
1127
|
+
];
|
|
1128
|
+
exports.ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1129
|
+
0,
|
|
1130
|
+
[_t],
|
|
1131
|
+
[128 | 0], 1
|
|
1132
|
+
];
|
|
1133
|
+
exports.ListWebhooksInput$ = [3, n0, _LWI,
|
|
1134
|
+
0,
|
|
1135
|
+
[_aSI, _aI],
|
|
1136
|
+
[[0, 1], [0, 1]], 2
|
|
1137
|
+
];
|
|
1138
|
+
exports.ListWebhooksOutput$ = [3, n0, _LWO,
|
|
1139
|
+
0,
|
|
1140
|
+
[_we],
|
|
1141
|
+
[() => WebhooksList], 1
|
|
1142
|
+
];
|
|
1143
|
+
exports.MCPServerAPIKeyConfig$ = [3, n0, _MCPSAPIKC,
|
|
1144
|
+
0,
|
|
1145
|
+
[_aKN, _aKV, _aKH],
|
|
1146
|
+
[0, [() => ApiKeyValue, 0], 0], 3
|
|
1147
|
+
];
|
|
1148
|
+
exports.MCPServerAuthorizationDiscoveryConfig$ = [3, n0, _MCPSADC,
|
|
1149
|
+
0,
|
|
1150
|
+
[_rTE],
|
|
1151
|
+
[0], 1
|
|
1152
|
+
];
|
|
1153
|
+
exports.MCPServerBearerTokenConfig$ = [3, n0, _MCPSBTC,
|
|
1154
|
+
0,
|
|
1155
|
+
[_tN, _tV, _aH],
|
|
1156
|
+
[0, [() => TokenValue, 0], 0], 2
|
|
1157
|
+
];
|
|
1158
|
+
exports.MCPServerDetails$ = [3, n0, _MCPSD,
|
|
1159
|
+
0,
|
|
1160
|
+
[_n, _en, _aC, _d],
|
|
1161
|
+
[0, 0, [() => exports.MCPServerAuthorizationConfig$, 0], [() => Description, 0]], 3
|
|
1162
|
+
];
|
|
1163
|
+
exports.MCPServerGrafanaConfiguration$ = [3, n0, _MCPSGC,
|
|
1164
|
+
0,
|
|
1165
|
+
[_en, _oI, _to],
|
|
1166
|
+
[0, 0, 64 | 0], 1
|
|
1167
|
+
];
|
|
1168
|
+
exports.MCPServerNewRelicConfiguration$ = [3, n0, _MCPSNRC,
|
|
1169
|
+
0,
|
|
1170
|
+
[_aIc, _en],
|
|
1171
|
+
[0, 0], 2
|
|
1172
|
+
];
|
|
1173
|
+
exports.MCPServerOAuth3LOConfig$ = [3, n0, _MCPSOALOC,
|
|
1174
|
+
0,
|
|
1175
|
+
[_cI, _rTE, _aUu, _eU, _cN, _eP, _cS, _sCC, _sc],
|
|
1176
|
+
[[() => ClientId, 0], 0, 0, 0, 0, [() => ExchangeParameters, 0], [() => ClientSecret, 0], 2, 64 | 0], 4
|
|
1177
|
+
];
|
|
1178
|
+
exports.MCPServerOAuthClientCredentialsConfig$ = [3, n0, _MCPSOACCC,
|
|
1179
|
+
0,
|
|
1180
|
+
[_cI, _cS, _eU, _cN, _eP, _sc],
|
|
1181
|
+
[[() => ClientId, 0], [() => ClientSecret, 0], 0, 0, [() => ExchangeParameters, 0], 64 | 0], 3
|
|
1182
|
+
];
|
|
1183
|
+
exports.MCPServerSigV4AuthorizationConfig$ = [3, n0, _MCPSSVAC,
|
|
1184
|
+
0,
|
|
1185
|
+
[_reg, _ser, _rAo],
|
|
1186
|
+
[0, 0, 0], 3
|
|
1187
|
+
];
|
|
1188
|
+
exports.MCPServerSigV4ServiceDetails$ = [3, n0, _MCPSSVSD,
|
|
1189
|
+
0,
|
|
1190
|
+
[_n, _en, _aC, _d],
|
|
1191
|
+
[0, 0, () => exports.MCPServerSigV4AuthorizationConfig$, [() => Description, 0]], 3
|
|
1192
|
+
];
|
|
1193
|
+
exports.MSTeamsChannel$ = [3, n0, _MSTC,
|
|
1194
|
+
0,
|
|
1195
|
+
[_cNh, _cIh],
|
|
1196
|
+
[0, 0], 2
|
|
1197
|
+
];
|
|
1198
|
+
exports.MSTeamsConfiguration$ = [3, n0, _MSTCe,
|
|
1199
|
+
0,
|
|
1200
|
+
[_tIe, _tNe, _tTr],
|
|
1201
|
+
[0, 0, () => exports.MSTeamsTransmissionTarget$], 3
|
|
1202
|
+
];
|
|
1203
|
+
exports.MSTeamsTransmissionTarget$ = [3, n0, _MSTTT,
|
|
1204
|
+
0,
|
|
1205
|
+
[_oOT, _oSRET],
|
|
1206
|
+
[() => exports.MSTeamsChannel$, () => exports.MSTeamsChannel$]
|
|
1207
|
+
];
|
|
1208
|
+
exports.NewRelicApiKeyConfig$ = [3, n0, _NRAKC,
|
|
1209
|
+
0,
|
|
1210
|
+
[_aK, _aIc, _reg, _aIp, _eG, _aPI],
|
|
1211
|
+
[[() => ApiKeyValue, 0], 0, 0, 64 | 0, 64 | 0, 64 | 0], 3
|
|
1212
|
+
];
|
|
1213
|
+
exports.NewRelicServiceDetails$ = [3, n0, _NRSD,
|
|
1214
|
+
0,
|
|
1215
|
+
[_aC],
|
|
1216
|
+
[[() => exports.NewRelicServiceAuthorizationConfig$, 0]], 1
|
|
1217
|
+
];
|
|
1218
|
+
exports.OAuthAdditionalStepDetails$ = [3, n0, _OAASD,
|
|
1219
|
+
0,
|
|
1220
|
+
[_aUu],
|
|
1221
|
+
[0], 1
|
|
1222
|
+
];
|
|
1223
|
+
exports.PagerDutyConfiguration$ = [3, n0, _PDC,
|
|
1224
|
+
0,
|
|
1225
|
+
[_serv, _cE],
|
|
1226
|
+
[64 | 0, [() => EmailAddress, 0]], 2
|
|
1227
|
+
];
|
|
1228
|
+
exports.PagerDutyDetails$ = [3, n0, _PDD,
|
|
1229
|
+
0,
|
|
1230
|
+
[_sc, _aC],
|
|
1231
|
+
[64 | 0, [() => exports.PagerDutyAuthorizationConfig$, 0]], 2
|
|
1232
|
+
];
|
|
1233
|
+
exports.PagerDutyOAuthClientCredentialsConfig$ = [3, n0, _PDOACCC,
|
|
1234
|
+
0,
|
|
1235
|
+
[_cI, _cS, _cN, _eP],
|
|
1236
|
+
[[() => ClientId, 0], [() => ClientSecret, 0], 0, [() => ExchangeParameters, 0]], 2
|
|
1237
|
+
];
|
|
1238
|
+
exports.PendingMessage$ = [3, n0, _PM,
|
|
1239
|
+
0,
|
|
1240
|
+
[_mI, _m],
|
|
1241
|
+
[0, () => exports.Message$], 2
|
|
1242
|
+
];
|
|
1243
|
+
exports.PrivateConnectionSummary$ = [3, n0, _PCS,
|
|
1244
|
+
0,
|
|
1245
|
+
[_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET],
|
|
1246
|
+
[0, 0, 0, 0, 0, 0, 0, 5], 3
|
|
1247
|
+
];
|
|
1248
|
+
exports.Recommendation$ = [3, n0, _R,
|
|
1249
|
+
0,
|
|
1250
|
+
[_aSA, _rI, _tI, _ti, _con, _st, _p, _cA, _uA, _v, _gIo, _gV, _aCd],
|
|
1251
|
+
[0, 0, 0, 0, () => exports.RecommendationContent$, 0, 0, 5, 5, 1, 0, 1, 0], 10
|
|
1252
|
+
];
|
|
1253
|
+
exports.RecommendationContent$ = [3, n0, _RC,
|
|
1254
|
+
0,
|
|
1255
|
+
[_su, _sp],
|
|
1256
|
+
[0, 0], 1
|
|
1257
|
+
];
|
|
1258
|
+
exports.ReferenceInput$ = [3, n0, _RI,
|
|
1259
|
+
0,
|
|
1260
|
+
[_sy, _rIef, _rU, _aI, _ti],
|
|
1261
|
+
[0, 0, 0, 0, 0], 4
|
|
1262
|
+
];
|
|
1263
|
+
exports.ReferenceOutput$ = [3, n0, _RO,
|
|
1264
|
+
0,
|
|
1265
|
+
[_sy, _rIef, _rU, _aI, _ti],
|
|
1266
|
+
[0, 0, 0, 0, 0], 4
|
|
1267
|
+
];
|
|
1268
|
+
exports.RegisteredAzureDevOpsServiceDetails$ = [3, n0, _RADOSD,
|
|
1269
|
+
0,
|
|
1270
|
+
[_oN],
|
|
1271
|
+
[0], 1
|
|
1272
|
+
];
|
|
1273
|
+
exports.RegisteredAzureIdentityDetails$ = [3, n0, _RAID,
|
|
1274
|
+
0,
|
|
1275
|
+
[_tIen, _cI, _wIRA, _wITA],
|
|
1276
|
+
[0, 0, 0, 64 | 0], 4
|
|
1277
|
+
];
|
|
1278
|
+
exports.RegisteredGithubServiceDetails$ = [3, n0, _RGSD,
|
|
1279
|
+
0,
|
|
1280
|
+
[_o, _oT, _tU],
|
|
1281
|
+
[0, 0, 0], 2
|
|
1282
|
+
];
|
|
1283
|
+
exports.RegisteredGitLabServiceDetails$ = [3, n0, _RGLSD,
|
|
1284
|
+
0,
|
|
1285
|
+
[_tU, _tTo, _gI],
|
|
1286
|
+
[0, 0, 0], 2
|
|
1287
|
+
];
|
|
1288
|
+
exports.RegisteredGrafanaServerDetails$ = [3, n0, _RGSDe,
|
|
1289
|
+
0,
|
|
1290
|
+
[_en, _aM],
|
|
1291
|
+
[0, 0], 2
|
|
1292
|
+
];
|
|
1293
|
+
exports.RegisteredMCPServerDetails$ = [3, n0, _RMCPSD,
|
|
1294
|
+
0,
|
|
1295
|
+
[_n, _en, _aM, _d, _aKH],
|
|
1296
|
+
[0, 0, 0, [() => Description, 0], 0], 3
|
|
1297
|
+
];
|
|
1298
|
+
exports.RegisteredMCPServerSigV4Details$ = [3, n0, _RMCPSSVD,
|
|
1299
|
+
0,
|
|
1300
|
+
[_n, _en, _reg, _ser, _rAo, _d],
|
|
1301
|
+
[0, 0, 0, 0, 0, [() => Description, 0]], 5
|
|
1302
|
+
];
|
|
1303
|
+
exports.RegisteredNewRelicDetails$ = [3, n0, _RNRD,
|
|
1304
|
+
0,
|
|
1305
|
+
[_aIc, _reg, _d],
|
|
1306
|
+
[0, 0, [() => Description, 0]], 2
|
|
1307
|
+
];
|
|
1308
|
+
exports.RegisteredPagerDutyDetails$ = [3, n0, _RPDD,
|
|
1309
|
+
0,
|
|
1310
|
+
[_sc],
|
|
1311
|
+
[64 | 0], 1
|
|
1312
|
+
];
|
|
1313
|
+
exports.RegisteredService$ = [3, n0, _RS,
|
|
1314
|
+
0,
|
|
1315
|
+
[_sI, _sT, _n, _aR, _aSD, _kKA, _pCN],
|
|
1316
|
+
[0, 0, 0, 64 | 15, [() => exports.AdditionalServiceDetails$, 0], 0, 0], 2
|
|
1317
|
+
];
|
|
1318
|
+
exports.RegisteredServiceNowDetails$ = [3, n0, _RSND,
|
|
1319
|
+
0,
|
|
1320
|
+
[_iUn],
|
|
1321
|
+
[0]
|
|
1322
|
+
];
|
|
1323
|
+
exports.RegisteredSlackServiceDetails$ = [3, n0, _RSSD,
|
|
1324
|
+
0,
|
|
1325
|
+
[_tIe, _tNe],
|
|
1326
|
+
[0, 0], 2
|
|
1327
|
+
];
|
|
1328
|
+
exports.RegisterServiceInput$ = [3, n0, _RSI,
|
|
1329
|
+
0,
|
|
1330
|
+
[_ser, _sD, _kKA, _pCN, _n, _t],
|
|
1331
|
+
[[0, 1], [() => exports.ServiceDetails$, 0], 0, 0, 0, 128 | 0], 2
|
|
1332
|
+
];
|
|
1333
|
+
exports.RegisterServiceOutput$ = [3, n0, _RSO,
|
|
1334
|
+
0,
|
|
1335
|
+
[_sI, _aSd, _kKA, _t],
|
|
1336
|
+
[0, () => exports.AdditionalServiceRegistrationStep$, 0, 128 | 0]
|
|
1337
|
+
];
|
|
1338
|
+
exports.SelfManagedInput$ = [3, n0, _SMI,
|
|
1339
|
+
0,
|
|
1340
|
+
[_rCI, _ce],
|
|
1341
|
+
[0, 0], 1
|
|
1342
|
+
];
|
|
1343
|
+
exports.SendMessageContentBlockDeltaEvent$ = [3, n0, _SMCBDE,
|
|
1344
|
+
0,
|
|
1345
|
+
[_in, _de, _sN],
|
|
1346
|
+
[1, () => exports.SendMessageContentBlockDelta$, 1]
|
|
1347
|
+
];
|
|
1348
|
+
exports.SendMessageContentBlockStartEvent$ = [3, n0, _SMCBSE,
|
|
1349
|
+
0,
|
|
1350
|
+
[_in, _ty, _id_, _pIar, _sN],
|
|
1351
|
+
[1, 0, 0, 0, 1]
|
|
1352
|
+
];
|
|
1353
|
+
exports.SendMessageContentBlockStopEvent$ = [3, n0, _SMCBSEe,
|
|
1354
|
+
0,
|
|
1355
|
+
[_in, _ty, _te, _la, _sN],
|
|
1356
|
+
[1, 0, 0, 2, 1]
|
|
1357
|
+
];
|
|
1358
|
+
exports.SendMessageContext$ = [3, n0, _SMC,
|
|
1359
|
+
0,
|
|
1360
|
+
[_cP, _lM, _uAR],
|
|
1361
|
+
[0, 0, 0]
|
|
1362
|
+
];
|
|
1363
|
+
exports.SendMessageHeartbeatEvent$ = [3, n0, _SMHE,
|
|
1364
|
+
0,
|
|
1365
|
+
[],
|
|
1366
|
+
[]
|
|
1367
|
+
];
|
|
1368
|
+
exports.SendMessageJsonDelta$ = [3, n0, _SMJD,
|
|
1369
|
+
0,
|
|
1370
|
+
[_pJ],
|
|
1371
|
+
[0]
|
|
1372
|
+
];
|
|
1373
|
+
exports.SendMessageRequest$ = [3, n0, _SMR,
|
|
1374
|
+
0,
|
|
1375
|
+
[_aSI, _eI, _con, _uI, _cont],
|
|
1376
|
+
[[0, 1], 0, 0, 0, () => exports.SendMessageContext$], 4
|
|
1377
|
+
];
|
|
1378
|
+
exports.SendMessageResponse$ = [3, n0, _SMRe,
|
|
1379
|
+
0,
|
|
1380
|
+
[_ev],
|
|
1381
|
+
[[() => exports.SendMessageEvents$, 16]], 1
|
|
1382
|
+
];
|
|
1383
|
+
exports.SendMessageResponseCompletedEvent$ = [3, n0, _SMRCE,
|
|
1384
|
+
0,
|
|
1385
|
+
[_rIes, _us, _sN],
|
|
1386
|
+
[0, () => exports.SendMessageUsageInfo$, 1]
|
|
1387
|
+
];
|
|
1388
|
+
exports.SendMessageResponseCreatedEvent$ = [3, n0, _SMRCEe,
|
|
1389
|
+
0,
|
|
1390
|
+
[_rIes, _sN],
|
|
1391
|
+
[0, 1]
|
|
1392
|
+
];
|
|
1393
|
+
exports.SendMessageResponseFailedEvent$ = [3, n0, _SMRFE,
|
|
1394
|
+
0,
|
|
1395
|
+
[_rIes, _eC, _eM, _sN],
|
|
1396
|
+
[0, 0, 0, 1]
|
|
1397
|
+
];
|
|
1398
|
+
exports.SendMessageResponseInProgressEvent$ = [3, n0, _SMRIPE,
|
|
1399
|
+
0,
|
|
1400
|
+
[_rIes, _sN],
|
|
1401
|
+
[0, 1]
|
|
1402
|
+
];
|
|
1403
|
+
exports.SendMessageSummaryEvent$ = [3, n0, _SMSE,
|
|
1404
|
+
0,
|
|
1405
|
+
[_con, _sN],
|
|
1406
|
+
[0, 1]
|
|
1407
|
+
];
|
|
1408
|
+
exports.SendMessageTextDelta$ = [3, n0, _SMTD,
|
|
1409
|
+
0,
|
|
1410
|
+
[_te],
|
|
1411
|
+
[0]
|
|
1412
|
+
];
|
|
1413
|
+
exports.SendMessageUsageInfo$ = [3, n0, _SMUI,
|
|
1414
|
+
0,
|
|
1415
|
+
[_iT, _oTu, _tTot],
|
|
1416
|
+
[1, 1, 1]
|
|
1417
|
+
];
|
|
1418
|
+
exports.ServiceManagedInput$ = [3, n0, _SMIe,
|
|
1419
|
+
0,
|
|
1420
|
+
[_hA, _vI, _sIub, _sGI, _iAT, _iAPE, _pR, _ce],
|
|
1421
|
+
[0, 0, 64 | 0, 64 | 0, 0, 1, 64 | 0, 0], 3
|
|
1422
|
+
];
|
|
1423
|
+
exports.ServiceNowConfiguration$ = [3, n0, _SNC,
|
|
1424
|
+
0,
|
|
1425
|
+
[_iIn, _aSu],
|
|
1426
|
+
[0, 64 | 0]
|
|
1427
|
+
];
|
|
1428
|
+
exports.ServiceNowOAuthClientCredentialsConfig$ = [3, n0, _SNOACCC,
|
|
1429
|
+
0,
|
|
1430
|
+
[_cI, _cS, _cN, _eP],
|
|
1431
|
+
[[() => ClientId, 0], [() => ClientSecret, 0], 0, [() => ExchangeParameters, 0]], 2
|
|
1432
|
+
];
|
|
1433
|
+
exports.ServiceNowServiceDetails$ = [3, n0, _SNSD,
|
|
1434
|
+
0,
|
|
1435
|
+
[_iUn, _aC],
|
|
1436
|
+
[0, [() => exports.ServiceNowServiceAuthorizationConfig$, 0]], 1
|
|
1437
|
+
];
|
|
1438
|
+
exports.SlackChannel$ = [3, n0, _SC,
|
|
1439
|
+
0,
|
|
1440
|
+
[_cIh, _cNh],
|
|
1441
|
+
[0, 0], 1
|
|
1442
|
+
];
|
|
1443
|
+
exports.SlackConfiguration$ = [3, n0, _SCl,
|
|
1444
|
+
0,
|
|
1445
|
+
[_wIo, _wN, _tTr],
|
|
1446
|
+
[0, 0, () => exports.SlackTransmissionTarget$], 3
|
|
1447
|
+
];
|
|
1448
|
+
exports.SlackTransmissionTarget$ = [3, n0, _STT,
|
|
1449
|
+
0,
|
|
1450
|
+
[_oOT, _oSRET],
|
|
1451
|
+
[() => exports.SlackChannel$, () => exports.SlackChannel$], 1
|
|
1452
|
+
];
|
|
1453
|
+
exports.SourceAwsConfiguration$ = [3, n0, _SAC,
|
|
1454
|
+
0,
|
|
1455
|
+
[_aIc, _aT, _aRA, _eIx],
|
|
1456
|
+
[0, 0, 0, 0], 3
|
|
1457
|
+
];
|
|
1458
|
+
exports.SupportLevel$ = [3, n0, _SL,
|
|
1459
|
+
0,
|
|
1460
|
+
[_cod, _n],
|
|
1461
|
+
[0, 0], 2
|
|
1462
|
+
];
|
|
1463
|
+
exports.TagResourceRequest$ = [3, n0, _TRR,
|
|
1464
|
+
0,
|
|
1465
|
+
[_rA, _t],
|
|
1466
|
+
[[0, 1], 128 | 0], 2
|
|
1467
|
+
];
|
|
1468
|
+
exports.TagResourceResponse$ = [3, n0, _TRRa,
|
|
1469
|
+
0,
|
|
1470
|
+
[],
|
|
1471
|
+
[]
|
|
1472
|
+
];
|
|
1473
|
+
exports.Task$ = [3, n0, _T,
|
|
1474
|
+
0,
|
|
1475
|
+
[_aSI, _tI, _ti, _tT, _p, _st, _cA, _uA, _v, _eI, _d, _r, _sM, _met, _pTI, _sR, _hLT],
|
|
1476
|
+
[0, 0, 0, 0, 0, 0, 5, 5, 1, 0, 0, () => exports.ReferenceOutput$, 15, 15, 0, 0, 2], 9
|
|
1477
|
+
];
|
|
1478
|
+
exports.TaskFilter$ = [3, n0, _TF,
|
|
1479
|
+
0,
|
|
1480
|
+
[_cAr, _cB, _p, _st, _tT, _pTI],
|
|
1481
|
+
[5, 5, 64 | 0, 64 | 0, 64 | 0, 0]
|
|
1482
|
+
];
|
|
1483
|
+
exports.UntagResourceRequest$ = [3, n0, _URR,
|
|
1484
|
+
0,
|
|
1485
|
+
[_rA, _tK],
|
|
1486
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1487
|
+
];
|
|
1488
|
+
exports.UntagResourceResponse$ = [3, n0, _URRn,
|
|
1489
|
+
0,
|
|
1490
|
+
[],
|
|
1491
|
+
[]
|
|
1492
|
+
];
|
|
1493
|
+
exports.UpdateAgentSpaceInput$ = [3, n0, _UASI,
|
|
1494
|
+
0,
|
|
1495
|
+
[_aSI, _n, _d, _l],
|
|
1496
|
+
[[0, 1], 0, [() => Description, 0], 0], 1
|
|
1497
|
+
];
|
|
1498
|
+
exports.UpdateAgentSpaceOutput$ = [3, n0, _UASO,
|
|
1499
|
+
0,
|
|
1500
|
+
[_aS],
|
|
1501
|
+
[[() => exports.AgentSpace$, 0]], 1
|
|
1502
|
+
];
|
|
1503
|
+
exports.UpdateAssociationInput$ = [3, n0, _UAI,
|
|
1504
|
+
0,
|
|
1505
|
+
[_aSI, _aI, _co],
|
|
1506
|
+
[[0, 1], [0, 1], [() => exports.ServiceConfiguration$, 0]], 3
|
|
1507
|
+
];
|
|
1508
|
+
exports.UpdateAssociationOutput$ = [3, n0, _UAO,
|
|
1509
|
+
0,
|
|
1510
|
+
[_a, _w],
|
|
1511
|
+
[[() => exports.Association$, 0], [() => exports.GenericWebhook$, 0]], 1
|
|
1512
|
+
];
|
|
1513
|
+
exports.UpdateBacklogTaskRequest$ = [3, n0, _UBTR,
|
|
1514
|
+
0,
|
|
1515
|
+
[_aSI, _tI, _tS, _cT],
|
|
1516
|
+
[[0, 1], [0, 1], 0, [0, 4]], 2
|
|
1517
|
+
];
|
|
1518
|
+
exports.UpdateBacklogTaskResponse$ = [3, n0, _UBTRp,
|
|
1519
|
+
0,
|
|
1520
|
+
[_ta],
|
|
1521
|
+
[() => exports.Task$], 1
|
|
1522
|
+
];
|
|
1523
|
+
exports.UpdateGoalRequest$ = [3, n0, _UGR,
|
|
1524
|
+
0,
|
|
1525
|
+
[_aSI, _gIo, _eSv, _cT],
|
|
1526
|
+
[[0, 1], [0, 1], () => exports.GoalScheduleInput$, [0, 4]], 2
|
|
1527
|
+
];
|
|
1528
|
+
exports.UpdateGoalResponse$ = [3, n0, _UGRp,
|
|
1529
|
+
0,
|
|
1530
|
+
[_go],
|
|
1531
|
+
[() => exports.Goal$], 1
|
|
1532
|
+
];
|
|
1533
|
+
exports.UpdateOperatorAppIdpConfigInput$ = [3, n0, _UOAICI,
|
|
1534
|
+
0,
|
|
1535
|
+
[_aSI, _iCS],
|
|
1536
|
+
[[0, 1], [() => IdpClientSecret, 0]], 1
|
|
1537
|
+
];
|
|
1538
|
+
exports.UpdateOperatorAppIdpConfigOutput$ = [3, n0, _UOAICO,
|
|
1539
|
+
0,
|
|
1540
|
+
[_aSI, _idp],
|
|
1541
|
+
[0, () => exports.IdpAuthConfiguration$], 2
|
|
1542
|
+
];
|
|
1543
|
+
exports.UpdatePrivateConnectionCertificateInput$ = [3, n0, _UPCCI,
|
|
1544
|
+
0,
|
|
1545
|
+
[_n, _ce],
|
|
1546
|
+
[[0, 1], 0], 2
|
|
1547
|
+
];
|
|
1548
|
+
exports.UpdatePrivateConnectionCertificateOutput$ = [3, n0, _UPCCO,
|
|
1549
|
+
0,
|
|
1550
|
+
[_n, _ty, _st, _rGI, _hA, _vI, _rCI, _cET],
|
|
1551
|
+
[0, 0, 0, 0, 0, 0, 0, 5], 3
|
|
1552
|
+
];
|
|
1553
|
+
exports.UpdateRecommendationRequest$ = [3, n0, _URRp,
|
|
1554
|
+
0,
|
|
1555
|
+
[_aSI, _rI, _st, _aCd, _cT],
|
|
1556
|
+
[[0, 1], [0, 1], 0, 0, [0, 4]], 2
|
|
1557
|
+
];
|
|
1558
|
+
exports.UpdateRecommendationResponse$ = [3, n0, _URRpd,
|
|
1559
|
+
0,
|
|
1560
|
+
[_rec],
|
|
1561
|
+
[() => exports.Recommendation$], 1
|
|
1562
|
+
];
|
|
1563
|
+
exports.UsageMetric$ = [3, n0, _UM,
|
|
1564
|
+
0,
|
|
1565
|
+
[_li, _us],
|
|
1566
|
+
[1, 1], 2
|
|
1567
|
+
];
|
|
1568
|
+
exports.UserReference$ = [3, n0, _UR,
|
|
1569
|
+
0,
|
|
1570
|
+
[_uI, _uT],
|
|
1571
|
+
[0, 0], 2
|
|
1572
|
+
];
|
|
1573
|
+
exports.ValidateAwsAssociationsInput$ = [3, n0, _VAAI,
|
|
1574
|
+
0,
|
|
1575
|
+
[_aSI],
|
|
1576
|
+
[[0, 1]], 1
|
|
1577
|
+
];
|
|
1578
|
+
exports.ValidateAwsAssociationsOutput$ = [3, n0, _VAAO,
|
|
1579
|
+
0,
|
|
1580
|
+
[],
|
|
1581
|
+
[]
|
|
1582
|
+
];
|
|
1583
|
+
exports.ValidationExceptionField$ = [3, n0, _VEF,
|
|
1584
|
+
0,
|
|
1585
|
+
[_pa, _m],
|
|
1586
|
+
[0, 0], 2
|
|
1587
|
+
];
|
|
1588
|
+
exports.Webhook$ = [3, n0, _W,
|
|
1589
|
+
0,
|
|
1590
|
+
[_wU, _wI, _wT],
|
|
1591
|
+
[0, 0, 0], 2
|
|
1592
|
+
];
|
|
1593
|
+
var __Unit = "unit";
|
|
1594
|
+
var AgentSpaceList = [1, n0, _ASL,
|
|
1595
|
+
0, [() => exports.AgentSpace$,
|
|
1596
|
+
0]
|
|
1597
|
+
];
|
|
1598
|
+
var AssistantMessage = [1, n0, _AM,
|
|
1599
|
+
0, () => exports.AssistantMessageBlock$
|
|
1600
|
+
];
|
|
1601
|
+
var AssociationsList = [1, n0, _AL,
|
|
1602
|
+
0, [() => exports.Association$,
|
|
1603
|
+
0]
|
|
1604
|
+
];
|
|
1605
|
+
var ChatExecutionList = [1, n0, _CEL,
|
|
1606
|
+
0, () => exports.ChatExecution$
|
|
1607
|
+
];
|
|
1608
|
+
var DocumentList = 64 | 15;
|
|
1609
|
+
var DynatraceResourceList = 64 | 0;
|
|
1610
|
+
var ExecutionList = [1, n0, _EL,
|
|
1611
|
+
0, () => exports.Execution$
|
|
1612
|
+
];
|
|
1613
|
+
var GoalList = [1, n0, _GL,
|
|
1614
|
+
0, () => exports.Goal$
|
|
1615
|
+
];
|
|
1616
|
+
var JournalRecordList = [1, n0, _JRL,
|
|
1617
|
+
0, () => exports.JournalRecord$
|
|
1618
|
+
];
|
|
1619
|
+
var ListOfSecurityGroupIds = 64 | 0;
|
|
1620
|
+
var ListOfSubnetIds = 64 | 0;
|
|
1621
|
+
var MCPToolsList = 64 | 0;
|
|
1622
|
+
var NewRelicAlertPolicyIds = 64 | 0;
|
|
1623
|
+
var NewRelicApplicationIds = 64 | 0;
|
|
1624
|
+
var NewRelicEntityGuids = 64 | 0;
|
|
1625
|
+
var PagerDutyScopes = 64 | 0;
|
|
1626
|
+
var PagerDutyScopesList = 64 | 0;
|
|
1627
|
+
var PagerDutyServicesList = 64 | 0;
|
|
1628
|
+
var PendingMessages = [1, n0, _PMe,
|
|
1629
|
+
0, () => exports.PendingMessage$
|
|
1630
|
+
];
|
|
1631
|
+
var PortRanges = 64 | 0;
|
|
1632
|
+
var PriorityList = 64 | 0;
|
|
1633
|
+
var PrivateConnectionSummaryList = [1, n0, _PCSL,
|
|
1634
|
+
0, () => exports.PrivateConnectionSummary$
|
|
1635
|
+
];
|
|
1636
|
+
var RecommendationList = [1, n0, _RL,
|
|
1637
|
+
0, () => exports.Recommendation$
|
|
1638
|
+
];
|
|
1639
|
+
var RegisteredServicesList = [1, n0, _RSL,
|
|
1640
|
+
0, [() => exports.RegisteredService$,
|
|
1641
|
+
0]
|
|
1642
|
+
];
|
|
1643
|
+
var Scopes = 64 | 0;
|
|
1644
|
+
var ServiceNowAuthenticationScopeList = 64 | 0;
|
|
1645
|
+
var TagKeyList = 64 | 0;
|
|
1646
|
+
var TaskList = [1, n0, _TL,
|
|
1647
|
+
0, () => exports.Task$
|
|
1648
|
+
];
|
|
1649
|
+
var TaskStatusList = 64 | 0;
|
|
1650
|
+
var TaskTypeList = 64 | 0;
|
|
1651
|
+
var UserMessage = [1, n0, _UMs,
|
|
1652
|
+
0, () => exports.UserMessageBlock$
|
|
1653
|
+
];
|
|
1654
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1655
|
+
0, () => exports.ValidationExceptionField$
|
|
1656
|
+
];
|
|
1657
|
+
var WebhooksList = [1, n0, _WL,
|
|
1658
|
+
0, () => exports.Webhook$
|
|
1659
|
+
];
|
|
1660
|
+
var WebIdentityTokenAudienceList = 64 | 0;
|
|
1661
|
+
var ExchangeParameters = [2, n0, _EP,
|
|
1662
|
+
0, [0,
|
|
1663
|
+
0],
|
|
1664
|
+
[() => ExchangeParameterValue,
|
|
1665
|
+
0]
|
|
1666
|
+
];
|
|
1667
|
+
var Tags = 128 | 0;
|
|
1668
|
+
exports.AdditionalServiceDetails$ = [4, n0, _ASD,
|
|
1669
|
+
0,
|
|
1670
|
+
[_gi, _sl, _mc, _mcp, _servi, _git, _mcps, _mcpse, _az, _azu, _mcpser, _pag, _mcpserv],
|
|
1671
|
+
[() => exports.RegisteredGithubServiceDetails$, () => exports.RegisteredSlackServiceDetails$, [() => exports.RegisteredMCPServerDetails$, 0], [() => exports.RegisteredMCPServerDetails$, 0], () => exports.RegisteredServiceNowDetails$, () => exports.RegisteredGitLabServiceDetails$, [() => exports.RegisteredMCPServerDetails$, 0], [() => exports.RegisteredNewRelicDetails$, 0], () => exports.RegisteredAzureDevOpsServiceDetails$, () => exports.RegisteredAzureIdentityDetails$, () => exports.RegisteredGrafanaServerDetails$, () => exports.RegisteredPagerDutyDetails$, [() => exports.RegisteredMCPServerSigV4Details$, 0]]
|
|
1672
|
+
];
|
|
1673
|
+
exports.AdditionalServiceRegistrationStep$ = [4, n0, _ASRS,
|
|
1674
|
+
0,
|
|
1675
|
+
[_oa],
|
|
1676
|
+
[() => exports.OAuthAdditionalStepDetails$]
|
|
1677
|
+
];
|
|
1678
|
+
exports.AssistantMessageBlock$ = [4, n0, _AMB,
|
|
1679
|
+
0,
|
|
1680
|
+
[_te, _tUo],
|
|
1681
|
+
[0, 15]
|
|
1682
|
+
];
|
|
1683
|
+
exports.DatadogAuthorizationConfig$ = [4, n0, _DAC,
|
|
1684
|
+
0,
|
|
1685
|
+
[_aD],
|
|
1686
|
+
[() => exports.MCPServerAuthorizationDiscoveryConfig$]
|
|
1687
|
+
];
|
|
1688
|
+
exports.DynatraceServiceAuthorizationConfig$ = [4, n0, _DSAC,
|
|
1689
|
+
8,
|
|
1690
|
+
[_oACC],
|
|
1691
|
+
[[() => exports.DynatraceOAuthClientCredentialsConfig$, 0]]
|
|
1692
|
+
];
|
|
1693
|
+
exports.MCPServerAuthorizationConfig$ = [4, n0, _MCPSAC,
|
|
1694
|
+
0,
|
|
1695
|
+
[_oACC, _oALO, _aK, _bT, _aD],
|
|
1696
|
+
[[() => exports.MCPServerOAuthClientCredentialsConfig$, 0], [() => exports.MCPServerOAuth3LOConfig$, 0], [() => exports.MCPServerAPIKeyConfig$, 0], [() => exports.MCPServerBearerTokenConfig$, 0], () => exports.MCPServerAuthorizationDiscoveryConfig$]
|
|
1697
|
+
];
|
|
1698
|
+
exports.Message$ = [4, n0, _M,
|
|
1699
|
+
0,
|
|
1700
|
+
[_uM, _aMs],
|
|
1701
|
+
[() => UserMessage, () => AssistantMessage]
|
|
1702
|
+
];
|
|
1703
|
+
exports.NewRelicServiceAuthorizationConfig$ = [4, n0, _NRSAC,
|
|
1704
|
+
0,
|
|
1705
|
+
[_aK],
|
|
1706
|
+
[[() => exports.NewRelicApiKeyConfig$, 0]]
|
|
1707
|
+
];
|
|
1708
|
+
exports.PagerDutyAuthorizationConfig$ = [4, n0, _PDAC,
|
|
1709
|
+
0,
|
|
1710
|
+
[_oACC],
|
|
1711
|
+
[[() => exports.PagerDutyOAuthClientCredentialsConfig$, 0]]
|
|
1712
|
+
];
|
|
1713
|
+
exports.PrivateConnectionMode$ = [4, n0, _PCM,
|
|
1714
|
+
0,
|
|
1715
|
+
[_sMe, _sMel],
|
|
1716
|
+
[() => exports.ServiceManagedInput$, () => exports.SelfManagedInput$]
|
|
1717
|
+
];
|
|
1718
|
+
exports.SendMessageContentBlockDelta$ = [4, n0, _SMCBD,
|
|
1719
|
+
0,
|
|
1720
|
+
[_tD, _jD],
|
|
1721
|
+
[() => exports.SendMessageTextDelta$, () => exports.SendMessageJsonDelta$]
|
|
1722
|
+
];
|
|
1723
|
+
exports.SendMessageEvents$ = [4, n0, _SME,
|
|
1724
|
+
{ [_str]: 1 },
|
|
1725
|
+
[_rC, _rIP, _rCe, _rF, _su, _h, _cBS, _cBD, _cBSo],
|
|
1726
|
+
[() => exports.SendMessageResponseCreatedEvent$, () => exports.SendMessageResponseInProgressEvent$, () => exports.SendMessageResponseCompletedEvent$, () => exports.SendMessageResponseFailedEvent$, () => exports.SendMessageSummaryEvent$, () => exports.SendMessageHeartbeatEvent$, () => exports.SendMessageContentBlockStartEvent$, () => exports.SendMessageContentBlockDeltaEvent$, () => exports.SendMessageContentBlockStopEvent$]
|
|
1727
|
+
];
|
|
1728
|
+
exports.ServiceConfiguration$ = [4, n0, _SCe,
|
|
1729
|
+
0,
|
|
1730
|
+
[_sA, _aw, _gi, _sl, _dy, _servi, _mcpse, _git, _eCv, _azur, _az, _mcpser, _pag, _ms],
|
|
1731
|
+
[() => exports.SourceAwsConfiguration$, () => exports.AWSConfiguration$, () => exports.GitHubConfiguration$, () => exports.SlackConfiguration$, () => exports.DynatraceConfiguration$, () => exports.ServiceNowConfiguration$, () => exports.MCPServerNewRelicConfiguration$, () => exports.GitLabConfiguration$, () => exports.EventChannelConfiguration$, () => exports.AzureConfiguration$, () => exports.AzureDevOpsConfiguration$, () => exports.MCPServerGrafanaConfiguration$, [() => exports.PagerDutyConfiguration$, 0], () => exports.MSTeamsConfiguration$]
|
|
1732
|
+
];
|
|
1733
|
+
exports.ServiceDetails$ = [4, n0, _SD,
|
|
1734
|
+
0,
|
|
1735
|
+
[_dy, _servi, _mc, _mcp, _git, _mcps, _mcpse, _eCv, _mcpser, _pag, _azu, _mcpserv],
|
|
1736
|
+
[[() => exports.DynatraceServiceDetails$, 0], [() => exports.ServiceNowServiceDetails$, 0], [() => exports.DatadogServiceDetails$, 0], [() => exports.MCPServerDetails$, 0], [() => exports.GitLabDetails$, 0], [() => exports.MCPServerDetails$, 0], [() => exports.NewRelicServiceDetails$, 0], () => exports.EventChannelDetails$, [() => exports.GrafanaServiceDetails$, 0], [() => exports.PagerDutyDetails$, 0], () => exports.RegisteredAzureIdentityDetails$, [() => exports.MCPServerSigV4ServiceDetails$, 0]]
|
|
1737
|
+
];
|
|
1738
|
+
exports.ServiceNowServiceAuthorizationConfig$ = [4, n0, _SNSAC,
|
|
1739
|
+
0,
|
|
1740
|
+
[_oACC],
|
|
1741
|
+
[[() => exports.ServiceNowOAuthClientCredentialsConfig$, 0]]
|
|
1742
|
+
];
|
|
1743
|
+
exports.UserMessageBlock$ = [4, n0, _UMB,
|
|
1744
|
+
0,
|
|
1745
|
+
[_te, _tR],
|
|
1746
|
+
[0, 15]
|
|
1747
|
+
];
|
|
1748
|
+
exports.AllowVendedLogDeliveryForResource$ = [9, n0, _AVLDFR,
|
|
1749
|
+
{ [_en]: ["cp."], [_ht]: ["POST", "/allow-vended-log-delivery-for-resource", 200] }, () => exports.AllowVendedLogDeliveryForResourceInput$, () => exports.AllowVendedLogDeliveryForResourceOutput$
|
|
1750
|
+
];
|
|
1751
|
+
exports.AssociateService$ = [9, n0, _ASs,
|
|
1752
|
+
{ [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/{agentSpaceId}/associations", 201] }, () => exports.AssociateServiceInput$, () => exports.AssociateServiceOutput$
|
|
1753
|
+
];
|
|
1754
|
+
exports.CreateAgentSpace$ = [9, n0, _CAS,
|
|
1755
|
+
{ [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces", 201] }, () => exports.CreateAgentSpaceInput$, () => exports.CreateAgentSpaceOutput$
|
|
1756
|
+
];
|
|
1757
|
+
exports.CreateBacklogTask$ = [9, n0, _CBT,
|
|
1758
|
+
{ [_en]: ["dp."], [_ht]: ["POST", "/backlog/agent-space/{agentSpaceId}/tasks", 201] }, () => exports.CreateBacklogTaskRequest$, () => exports.CreateBacklogTaskResponse$
|
|
1759
|
+
];
|
|
1760
|
+
exports.CreateChat$ = [9, n0, _CC,
|
|
1761
|
+
{ [_en]: ["dp."], [_ht]: ["POST", "/agents/agent-space/{agentSpaceId}/chat/create", 200] }, () => exports.CreateChatRequest$, () => exports.CreateChatResponse$
|
|
1762
|
+
];
|
|
1763
|
+
exports.CreatePrivateConnection$ = [9, n0, _CPCr,
|
|
1764
|
+
{ [_en]: ["cp."], [_ht]: ["POST", "/v1/private-connections", 200] }, () => exports.CreatePrivateConnectionInput$, () => exports.CreatePrivateConnectionOutput$
|
|
1765
|
+
];
|
|
1766
|
+
exports.DeleteAgentSpace$ = [9, n0, _DAS,
|
|
1767
|
+
{ [_en]: ["cp."], [_ht]: ["DELETE", "/v1/agentspaces/{agentSpaceId}", 204] }, () => exports.DeleteAgentSpaceInput$, () => exports.DeleteAgentSpaceOutput$
|
|
1768
|
+
];
|
|
1769
|
+
exports.DeletePrivateConnection$ = [9, n0, _DPC,
|
|
1770
|
+
{ [_en]: ["cp."], [_ht]: ["DELETE", "/v1/private-connections/{name}", 200] }, () => exports.DeletePrivateConnectionInput$, () => exports.DeletePrivateConnectionOutput$
|
|
1771
|
+
];
|
|
1772
|
+
exports.DeregisterService$ = [9, n0, _DS,
|
|
1773
|
+
{ [_en]: ["cp."], [_ht]: ["DELETE", "/v1/services/{serviceId}", 200] }, () => exports.DeregisterServiceInput$, () => exports.DeregisterServiceOutput$
|
|
1774
|
+
];
|
|
1775
|
+
exports.DescribePrivateConnection$ = [9, n0, _DPCe,
|
|
1776
|
+
{ [_en]: ["cp."], [_ht]: ["GET", "/v1/private-connections/{name}", 200] }, () => exports.DescribePrivateConnectionInput$, () => exports.DescribePrivateConnectionOutput$
|
|
1777
|
+
];
|
|
1778
|
+
exports.DescribeSupportLevel$ = [9, n0, _DSL,
|
|
1779
|
+
{ [_en]: ["dp."], [_ht]: ["POST", "/support/agent-space/{agentSpaceId}/tasks/{taskId}/supportLevel", 201] }, () => exports.DescribeSupportLevelRequest$, () => exports.DescribeSupportLevelResponse$
|
|
1780
|
+
];
|
|
1781
|
+
exports.DisableOperatorApp$ = [9, n0, _DOA,
|
|
1782
|
+
{ [_en]: ["cp."], [_ht]: ["DELETE", "/v1/agentspaces/{agentSpaceId}/operator", 200] }, () => exports.DisableOperatorAppInput$, () => __Unit
|
|
1783
|
+
];
|
|
1784
|
+
exports.DisassociateService$ = [9, n0, _DSi,
|
|
1785
|
+
{ [_en]: ["cp."], [_ht]: ["DELETE", "/v1/agentspaces/{agentSpaceId}/associations/{associationId}", 204] }, () => exports.DisassociateServiceInput$, () => exports.DisassociateServiceOutput$
|
|
1786
|
+
];
|
|
1787
|
+
exports.EnableOperatorApp$ = [9, n0, _EOA,
|
|
1788
|
+
{ [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/{agentSpaceId}/operator", 200] }, () => exports.EnableOperatorAppInput$, () => exports.EnableOperatorAppOutput$
|
|
1789
|
+
];
|
|
1790
|
+
exports.EndChatForCase$ = [9, n0, _ECFC,
|
|
1791
|
+
{ [_en]: ["dp."], [_ht]: ["POST", "/support/agent-space/{agentSpaceId}/tasks/{taskId}/end-chat-for-case", 200] }, () => exports.EndChatForCaseRequest$, () => exports.EndChatForCaseResponse$
|
|
1792
|
+
];
|
|
1793
|
+
exports.GetAccountUsage$ = [9, n0, _GAU,
|
|
1794
|
+
{ [_en]: ["dp."], [_ht]: ["GET", "/usage/account", 200] }, () => exports.GetAccountUsageInput$, () => exports.GetAccountUsageOutput$
|
|
1795
|
+
];
|
|
1796
|
+
exports.GetAgentSpace$ = [9, n0, _GAS,
|
|
1797
|
+
{ [_en]: ["cp."], [_ht]: ["GET", "/v1/agentspaces/{agentSpaceId}", 200] }, () => exports.GetAgentSpaceInput$, () => exports.GetAgentSpaceOutput$
|
|
1798
|
+
];
|
|
1799
|
+
exports.GetAssociation$ = [9, n0, _GA,
|
|
1800
|
+
{ [_en]: ["cp."], [_ht]: ["GET", "/v1/agentspaces/{agentSpaceId}/associations/{associationId}", 200] }, () => exports.GetAssociationInput$, () => exports.GetAssociationOutput$
|
|
1801
|
+
];
|
|
1802
|
+
exports.GetBacklogTask$ = [9, n0, _GBT,
|
|
1803
|
+
{ [_en]: ["dp."], [_ht]: ["GET", "/backlog/agent-space/{agentSpaceId}/tasks/{taskId}", 200] }, () => exports.GetBacklogTaskRequest$, () => exports.GetBacklogTaskResponse$
|
|
1804
|
+
];
|
|
1805
|
+
exports.GetOperatorApp$ = [9, n0, _GOA,
|
|
1806
|
+
{ [_en]: ["cp."], [_ht]: ["GET", "/v2/agentspaces/{agentSpaceId}/operator", 200] }, () => exports.GetOperatorAppInput$, () => exports.GetOperatorAppOutput$
|
|
1807
|
+
];
|
|
1808
|
+
exports.GetRecommendation$ = [9, n0, _GR,
|
|
1809
|
+
{ [_en]: ["dp."], [_ht]: ["GET", "/backlog/agent-space/{agentSpaceId}/recommendations/{recommendationId}", 200] }, () => exports.GetRecommendationRequest$, () => exports.GetRecommendationResponse$
|
|
1810
|
+
];
|
|
1811
|
+
exports.GetService$ = [9, n0, _GSe,
|
|
1812
|
+
{ [_en]: ["cp."], [_ht]: ["GET", "/v1/services/{serviceId}", 200] }, () => exports.GetServiceInput$, () => exports.GetServiceOutput$
|
|
1813
|
+
];
|
|
1814
|
+
exports.InitiateChatForCase$ = [9, n0, _ICFC,
|
|
1815
|
+
{ [_en]: ["dp."], [_ht]: ["POST", "/support/agent-space/{agentSpaceId}/tasks/{taskId}/chats", 201] }, () => exports.InitiateChatForCaseRequest$, () => exports.InitiateChatForCaseResponse$
|
|
1816
|
+
];
|
|
1817
|
+
exports.ListAgentSpaces$ = [9, n0, _LAS,
|
|
1818
|
+
{ [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/list", 200] }, () => exports.ListAgentSpacesInput$, () => exports.ListAgentSpacesOutput$
|
|
1819
|
+
];
|
|
1820
|
+
exports.ListAssociations$ = [9, n0, _LA,
|
|
1821
|
+
{ [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/{agentSpaceId}/associations/list", 200] }, () => exports.ListAssociationsInput$, () => exports.ListAssociationsOutput$
|
|
1822
|
+
];
|
|
1823
|
+
exports.ListBacklogTasks$ = [9, n0, _LBT,
|
|
1824
|
+
{ [_en]: ["dp."], [_ht]: ["POST", "/backlog/agent-space/{agentSpaceId}/tasks/list", 200] }, () => exports.ListBacklogTasksRequest$, () => exports.ListBacklogTasksResponse$
|
|
1825
|
+
];
|
|
1826
|
+
exports.ListChats$ = [9, n0, _LC,
|
|
1827
|
+
{ [_en]: ["dp."], [_ht]: ["GET", "/agents/agent-space/{agentSpaceId}/chat/list", 200] }, () => exports.ListChatsRequest$, () => exports.ListChatsResponse$
|
|
1828
|
+
];
|
|
1829
|
+
exports.ListExecutions$ = [9, n0, _LE,
|
|
1830
|
+
{ [_en]: ["dp."], [_ht]: ["POST", "/journal/agent-space/{agentSpaceId}/executions", 200] }, () => exports.ListExecutionsRequest$, () => exports.ListExecutionsResponse$
|
|
1831
|
+
];
|
|
1832
|
+
exports.ListGoals$ = [9, n0, _LG,
|
|
1833
|
+
{ [_en]: ["dp."], [_ht]: ["POST", "/backlog/agent-space/{agentSpaceId}/goals/list", 200] }, () => exports.ListGoalsRequest$, () => exports.ListGoalsResponse$
|
|
1834
|
+
];
|
|
1835
|
+
exports.ListJournalRecords$ = [9, n0, _LJR,
|
|
1836
|
+
{ [_en]: ["dp."], [_ht]: ["POST", "/journal/agent-space/{agentSpaceId}/journalRecords", 200] }, () => exports.ListJournalRecordsRequest$, () => exports.ListJournalRecordsResponse$
|
|
1837
|
+
];
|
|
1838
|
+
exports.ListPendingMessages$ = [9, n0, _LPM,
|
|
1839
|
+
{ [_en]: ["dp."], [_ht]: ["POST", "/agents/agent-space/{agentSpaceId}/pendingMessages", 200] }, () => exports.ListPendingMessagesRequest$, () => exports.ListPendingMessagesResponse$
|
|
1840
|
+
];
|
|
1841
|
+
exports.ListPrivateConnections$ = [9, n0, _LPC,
|
|
1842
|
+
{ [_en]: ["cp."], [_ht]: ["GET", "/v1/private-connections", 200] }, () => exports.ListPrivateConnectionsInput$, () => exports.ListPrivateConnectionsOutput$
|
|
1843
|
+
];
|
|
1844
|
+
exports.ListRecommendations$ = [9, n0, _LR,
|
|
1845
|
+
{ [_en]: ["dp."], [_ht]: ["POST", "/backlog/agent-space/{agentSpaceId}/recommendations/list", 200] }, () => exports.ListRecommendationsRequest$, () => exports.ListRecommendationsResponse$
|
|
1846
|
+
];
|
|
1847
|
+
exports.ListServices$ = [9, n0, _LS,
|
|
1848
|
+
{ [_en]: ["cp."], [_ht]: ["POST", "/v1/services/list", 200] }, () => exports.ListServicesInput$, () => exports.ListServicesOutput$
|
|
1849
|
+
];
|
|
1850
|
+
exports.ListTagsForResource$ = [9, n0, _LTFR,
|
|
1851
|
+
{ [_en]: ["cp."], [_ht]: ["GET", "/tags/{resourceArn}", 200] }, () => exports.ListTagsForResourceRequest$, () => exports.ListTagsForResourceResponse$
|
|
1852
|
+
];
|
|
1853
|
+
exports.ListWebhooks$ = [9, n0, _LW,
|
|
1854
|
+
{ [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/{agentSpaceId}/associations/{associationId}/webhooks/list", 200] }, () => exports.ListWebhooksInput$, () => exports.ListWebhooksOutput$
|
|
1855
|
+
];
|
|
1856
|
+
exports.RegisterService$ = [9, n0, _RSe,
|
|
1857
|
+
{ [_en]: ["cp."], [_ht]: ["POST", "/v1/register/{service}", 201] }, () => exports.RegisterServiceInput$, () => exports.RegisterServiceOutput$
|
|
1858
|
+
];
|
|
1859
|
+
exports.SendMessage$ = [9, n0, _SM,
|
|
1860
|
+
{ [_en]: ["dp."], [_ht]: ["POST", "/agents/agent-space/{agentSpaceId}/chat/sendMessage", 200] }, () => exports.SendMessageRequest$, () => exports.SendMessageResponse$
|
|
1861
|
+
];
|
|
1862
|
+
exports.TagResource$ = [9, n0, _TR,
|
|
1863
|
+
{ [_en]: ["cp."], [_ht]: ["POST", "/tags/{resourceArn}", 204] }, () => exports.TagResourceRequest$, () => exports.TagResourceResponse$
|
|
1864
|
+
];
|
|
1865
|
+
exports.UntagResource$ = [9, n0, _URn,
|
|
1866
|
+
{ [_en]: ["cp."], [_ht]: ["DELETE", "/tags/{resourceArn}", 204] }, () => exports.UntagResourceRequest$, () => exports.UntagResourceResponse$
|
|
1867
|
+
];
|
|
1868
|
+
exports.UpdateAgentSpace$ = [9, n0, _UAS,
|
|
1869
|
+
{ [_en]: ["cp."], [_ht]: ["PATCH", "/v1/agentspaces/{agentSpaceId}", 200] }, () => exports.UpdateAgentSpaceInput$, () => exports.UpdateAgentSpaceOutput$
|
|
1870
|
+
];
|
|
1871
|
+
exports.UpdateAssociation$ = [9, n0, _UA,
|
|
1872
|
+
{ [_en]: ["cp."], [_ht]: ["PATCH", "/v1/agentspaces/{agentSpaceId}/associations/{associationId}", 200] }, () => exports.UpdateAssociationInput$, () => exports.UpdateAssociationOutput$
|
|
1873
|
+
];
|
|
1874
|
+
exports.UpdateBacklogTask$ = [9, n0, _UBT,
|
|
1875
|
+
{ [_en]: ["dp."], [_ht]: ["PATCH", "/backlog/agent-space/{agentSpaceId}/tasks/{taskId}", 200] }, () => exports.UpdateBacklogTaskRequest$, () => exports.UpdateBacklogTaskResponse$
|
|
1876
|
+
];
|
|
1877
|
+
exports.UpdateGoal$ = [9, n0, _UG,
|
|
1878
|
+
{ [_en]: ["dp."], [_ht]: ["PATCH", "/backlog/agent-space/{agentSpaceId}/goals/{goalId}", 200] }, () => exports.UpdateGoalRequest$, () => exports.UpdateGoalResponse$
|
|
1879
|
+
];
|
|
1880
|
+
exports.UpdateOperatorAppIdpConfig$ = [9, n0, _UOAIC,
|
|
1881
|
+
{ [_ht]: ["PATCH", "/v1/agentspaces/{agentSpaceId}/operator/idp", 200] }, () => exports.UpdateOperatorAppIdpConfigInput$, () => exports.UpdateOperatorAppIdpConfigOutput$
|
|
1882
|
+
];
|
|
1883
|
+
exports.UpdatePrivateConnectionCertificate$ = [9, n0, _UPCC,
|
|
1884
|
+
{ [_en]: ["cp."], [_ht]: ["POST", "/v1/private-connections/{name}/certificate", 200] }, () => exports.UpdatePrivateConnectionCertificateInput$, () => exports.UpdatePrivateConnectionCertificateOutput$
|
|
1885
|
+
];
|
|
1886
|
+
exports.UpdateRecommendation$ = [9, n0, _URp,
|
|
1887
|
+
{ [_en]: ["dp."], [_ht]: ["PATCH", "/backlog/agent-space/{agentSpaceId}/recommendations/{recommendationId}", 200] }, () => exports.UpdateRecommendationRequest$, () => exports.UpdateRecommendationResponse$
|
|
1888
|
+
];
|
|
1889
|
+
exports.ValidateAwsAssociations$ = [9, n0, _VAA,
|
|
1890
|
+
{ [_en]: ["cp."], [_ht]: ["POST", "/v1/agentspaces/{agentSpaceId}/associations/validate", 204] }, () => exports.ValidateAwsAssociationsInput$, () => exports.ValidateAwsAssociationsOutput$
|
|
1891
|
+
];
|