@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,892 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
AllowVendedLogDeliveryForResourceCommandInput,
|
|
8
|
+
AllowVendedLogDeliveryForResourceCommandOutput,
|
|
9
|
+
} from "./commands/AllowVendedLogDeliveryForResourceCommand";
|
|
10
|
+
import {
|
|
11
|
+
AssociateServiceCommandInput,
|
|
12
|
+
AssociateServiceCommandOutput,
|
|
13
|
+
} from "./commands/AssociateServiceCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateAgentSpaceCommandInput,
|
|
16
|
+
CreateAgentSpaceCommandOutput,
|
|
17
|
+
} from "./commands/CreateAgentSpaceCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateBacklogTaskCommandInput,
|
|
20
|
+
CreateBacklogTaskCommandOutput,
|
|
21
|
+
} from "./commands/CreateBacklogTaskCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateChatCommandInput,
|
|
24
|
+
CreateChatCommandOutput,
|
|
25
|
+
} from "./commands/CreateChatCommand";
|
|
26
|
+
import {
|
|
27
|
+
CreatePrivateConnectionCommandInput,
|
|
28
|
+
CreatePrivateConnectionCommandOutput,
|
|
29
|
+
} from "./commands/CreatePrivateConnectionCommand";
|
|
30
|
+
import {
|
|
31
|
+
DeleteAgentSpaceCommandInput,
|
|
32
|
+
DeleteAgentSpaceCommandOutput,
|
|
33
|
+
} from "./commands/DeleteAgentSpaceCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeletePrivateConnectionCommandInput,
|
|
36
|
+
DeletePrivateConnectionCommandOutput,
|
|
37
|
+
} from "./commands/DeletePrivateConnectionCommand";
|
|
38
|
+
import {
|
|
39
|
+
DeregisterServiceCommandInput,
|
|
40
|
+
DeregisterServiceCommandOutput,
|
|
41
|
+
} from "./commands/DeregisterServiceCommand";
|
|
42
|
+
import {
|
|
43
|
+
DescribePrivateConnectionCommandInput,
|
|
44
|
+
DescribePrivateConnectionCommandOutput,
|
|
45
|
+
} from "./commands/DescribePrivateConnectionCommand";
|
|
46
|
+
import {
|
|
47
|
+
DescribeSupportLevelCommandInput,
|
|
48
|
+
DescribeSupportLevelCommandOutput,
|
|
49
|
+
} from "./commands/DescribeSupportLevelCommand";
|
|
50
|
+
import {
|
|
51
|
+
DisableOperatorAppCommandInput,
|
|
52
|
+
DisableOperatorAppCommandOutput,
|
|
53
|
+
} from "./commands/DisableOperatorAppCommand";
|
|
54
|
+
import {
|
|
55
|
+
DisassociateServiceCommandInput,
|
|
56
|
+
DisassociateServiceCommandOutput,
|
|
57
|
+
} from "./commands/DisassociateServiceCommand";
|
|
58
|
+
import {
|
|
59
|
+
EnableOperatorAppCommandInput,
|
|
60
|
+
EnableOperatorAppCommandOutput,
|
|
61
|
+
} from "./commands/EnableOperatorAppCommand";
|
|
62
|
+
import {
|
|
63
|
+
EndChatForCaseCommandInput,
|
|
64
|
+
EndChatForCaseCommandOutput,
|
|
65
|
+
} from "./commands/EndChatForCaseCommand";
|
|
66
|
+
import {
|
|
67
|
+
GetAccountUsageCommandInput,
|
|
68
|
+
GetAccountUsageCommandOutput,
|
|
69
|
+
} from "./commands/GetAccountUsageCommand";
|
|
70
|
+
import {
|
|
71
|
+
GetAgentSpaceCommandInput,
|
|
72
|
+
GetAgentSpaceCommandOutput,
|
|
73
|
+
} from "./commands/GetAgentSpaceCommand";
|
|
74
|
+
import {
|
|
75
|
+
GetAssociationCommandInput,
|
|
76
|
+
GetAssociationCommandOutput,
|
|
77
|
+
} from "./commands/GetAssociationCommand";
|
|
78
|
+
import {
|
|
79
|
+
GetBacklogTaskCommandInput,
|
|
80
|
+
GetBacklogTaskCommandOutput,
|
|
81
|
+
} from "./commands/GetBacklogTaskCommand";
|
|
82
|
+
import {
|
|
83
|
+
GetOperatorAppCommandInput,
|
|
84
|
+
GetOperatorAppCommandOutput,
|
|
85
|
+
} from "./commands/GetOperatorAppCommand";
|
|
86
|
+
import {
|
|
87
|
+
GetRecommendationCommandInput,
|
|
88
|
+
GetRecommendationCommandOutput,
|
|
89
|
+
} from "./commands/GetRecommendationCommand";
|
|
90
|
+
import {
|
|
91
|
+
GetServiceCommandInput,
|
|
92
|
+
GetServiceCommandOutput,
|
|
93
|
+
} from "./commands/GetServiceCommand";
|
|
94
|
+
import {
|
|
95
|
+
InitiateChatForCaseCommandInput,
|
|
96
|
+
InitiateChatForCaseCommandOutput,
|
|
97
|
+
} from "./commands/InitiateChatForCaseCommand";
|
|
98
|
+
import {
|
|
99
|
+
ListAgentSpacesCommandInput,
|
|
100
|
+
ListAgentSpacesCommandOutput,
|
|
101
|
+
} from "./commands/ListAgentSpacesCommand";
|
|
102
|
+
import {
|
|
103
|
+
ListAssociationsCommandInput,
|
|
104
|
+
ListAssociationsCommandOutput,
|
|
105
|
+
} from "./commands/ListAssociationsCommand";
|
|
106
|
+
import {
|
|
107
|
+
ListBacklogTasksCommandInput,
|
|
108
|
+
ListBacklogTasksCommandOutput,
|
|
109
|
+
} from "./commands/ListBacklogTasksCommand";
|
|
110
|
+
import {
|
|
111
|
+
ListChatsCommandInput,
|
|
112
|
+
ListChatsCommandOutput,
|
|
113
|
+
} from "./commands/ListChatsCommand";
|
|
114
|
+
import {
|
|
115
|
+
ListExecutionsCommandInput,
|
|
116
|
+
ListExecutionsCommandOutput,
|
|
117
|
+
} from "./commands/ListExecutionsCommand";
|
|
118
|
+
import {
|
|
119
|
+
ListGoalsCommandInput,
|
|
120
|
+
ListGoalsCommandOutput,
|
|
121
|
+
} from "./commands/ListGoalsCommand";
|
|
122
|
+
import {
|
|
123
|
+
ListJournalRecordsCommandInput,
|
|
124
|
+
ListJournalRecordsCommandOutput,
|
|
125
|
+
} from "./commands/ListJournalRecordsCommand";
|
|
126
|
+
import {
|
|
127
|
+
ListPendingMessagesCommandInput,
|
|
128
|
+
ListPendingMessagesCommandOutput,
|
|
129
|
+
} from "./commands/ListPendingMessagesCommand";
|
|
130
|
+
import {
|
|
131
|
+
ListPrivateConnectionsCommandInput,
|
|
132
|
+
ListPrivateConnectionsCommandOutput,
|
|
133
|
+
} from "./commands/ListPrivateConnectionsCommand";
|
|
134
|
+
import {
|
|
135
|
+
ListRecommendationsCommandInput,
|
|
136
|
+
ListRecommendationsCommandOutput,
|
|
137
|
+
} from "./commands/ListRecommendationsCommand";
|
|
138
|
+
import {
|
|
139
|
+
ListServicesCommandInput,
|
|
140
|
+
ListServicesCommandOutput,
|
|
141
|
+
} from "./commands/ListServicesCommand";
|
|
142
|
+
import {
|
|
143
|
+
ListTagsForResourceCommandInput,
|
|
144
|
+
ListTagsForResourceCommandOutput,
|
|
145
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
146
|
+
import {
|
|
147
|
+
ListWebhooksCommandInput,
|
|
148
|
+
ListWebhooksCommandOutput,
|
|
149
|
+
} from "./commands/ListWebhooksCommand";
|
|
150
|
+
import {
|
|
151
|
+
RegisterServiceCommandInput,
|
|
152
|
+
RegisterServiceCommandOutput,
|
|
153
|
+
} from "./commands/RegisterServiceCommand";
|
|
154
|
+
import {
|
|
155
|
+
SendMessageCommandInput,
|
|
156
|
+
SendMessageCommandOutput,
|
|
157
|
+
} from "./commands/SendMessageCommand";
|
|
158
|
+
import {
|
|
159
|
+
TagResourceCommandInput,
|
|
160
|
+
TagResourceCommandOutput,
|
|
161
|
+
} from "./commands/TagResourceCommand";
|
|
162
|
+
import {
|
|
163
|
+
UntagResourceCommandInput,
|
|
164
|
+
UntagResourceCommandOutput,
|
|
165
|
+
} from "./commands/UntagResourceCommand";
|
|
166
|
+
import {
|
|
167
|
+
UpdateAgentSpaceCommandInput,
|
|
168
|
+
UpdateAgentSpaceCommandOutput,
|
|
169
|
+
} from "./commands/UpdateAgentSpaceCommand";
|
|
170
|
+
import {
|
|
171
|
+
UpdateAssociationCommandInput,
|
|
172
|
+
UpdateAssociationCommandOutput,
|
|
173
|
+
} from "./commands/UpdateAssociationCommand";
|
|
174
|
+
import {
|
|
175
|
+
UpdateBacklogTaskCommandInput,
|
|
176
|
+
UpdateBacklogTaskCommandOutput,
|
|
177
|
+
} from "./commands/UpdateBacklogTaskCommand";
|
|
178
|
+
import {
|
|
179
|
+
UpdateGoalCommandInput,
|
|
180
|
+
UpdateGoalCommandOutput,
|
|
181
|
+
} from "./commands/UpdateGoalCommand";
|
|
182
|
+
import {
|
|
183
|
+
UpdateOperatorAppIdpConfigCommandInput,
|
|
184
|
+
UpdateOperatorAppIdpConfigCommandOutput,
|
|
185
|
+
} from "./commands/UpdateOperatorAppIdpConfigCommand";
|
|
186
|
+
import {
|
|
187
|
+
UpdatePrivateConnectionCertificateCommandInput,
|
|
188
|
+
UpdatePrivateConnectionCertificateCommandOutput,
|
|
189
|
+
} from "./commands/UpdatePrivateConnectionCertificateCommand";
|
|
190
|
+
import {
|
|
191
|
+
UpdateRecommendationCommandInput,
|
|
192
|
+
UpdateRecommendationCommandOutput,
|
|
193
|
+
} from "./commands/UpdateRecommendationCommand";
|
|
194
|
+
import {
|
|
195
|
+
ValidateAwsAssociationsCommandInput,
|
|
196
|
+
ValidateAwsAssociationsCommandOutput,
|
|
197
|
+
} from "./commands/ValidateAwsAssociationsCommand";
|
|
198
|
+
import { DevOpsAgentClient } from "./DevOpsAgentClient";
|
|
199
|
+
export interface DevOpsAgent {
|
|
200
|
+
allowVendedLogDeliveryForResource(
|
|
201
|
+
args: AllowVendedLogDeliveryForResourceCommandInput,
|
|
202
|
+
options?: __HttpHandlerOptions
|
|
203
|
+
): Promise<AllowVendedLogDeliveryForResourceCommandOutput>;
|
|
204
|
+
allowVendedLogDeliveryForResource(
|
|
205
|
+
args: AllowVendedLogDeliveryForResourceCommandInput,
|
|
206
|
+
cb: (
|
|
207
|
+
err: any,
|
|
208
|
+
data?: AllowVendedLogDeliveryForResourceCommandOutput
|
|
209
|
+
) => void
|
|
210
|
+
): void;
|
|
211
|
+
allowVendedLogDeliveryForResource(
|
|
212
|
+
args: AllowVendedLogDeliveryForResourceCommandInput,
|
|
213
|
+
options: __HttpHandlerOptions,
|
|
214
|
+
cb: (
|
|
215
|
+
err: any,
|
|
216
|
+
data?: AllowVendedLogDeliveryForResourceCommandOutput
|
|
217
|
+
) => void
|
|
218
|
+
): void;
|
|
219
|
+
associateService(
|
|
220
|
+
args: AssociateServiceCommandInput,
|
|
221
|
+
options?: __HttpHandlerOptions
|
|
222
|
+
): Promise<AssociateServiceCommandOutput>;
|
|
223
|
+
associateService(
|
|
224
|
+
args: AssociateServiceCommandInput,
|
|
225
|
+
cb: (err: any, data?: AssociateServiceCommandOutput) => void
|
|
226
|
+
): void;
|
|
227
|
+
associateService(
|
|
228
|
+
args: AssociateServiceCommandInput,
|
|
229
|
+
options: __HttpHandlerOptions,
|
|
230
|
+
cb: (err: any, data?: AssociateServiceCommandOutput) => void
|
|
231
|
+
): void;
|
|
232
|
+
createAgentSpace(
|
|
233
|
+
args: CreateAgentSpaceCommandInput,
|
|
234
|
+
options?: __HttpHandlerOptions
|
|
235
|
+
): Promise<CreateAgentSpaceCommandOutput>;
|
|
236
|
+
createAgentSpace(
|
|
237
|
+
args: CreateAgentSpaceCommandInput,
|
|
238
|
+
cb: (err: any, data?: CreateAgentSpaceCommandOutput) => void
|
|
239
|
+
): void;
|
|
240
|
+
createAgentSpace(
|
|
241
|
+
args: CreateAgentSpaceCommandInput,
|
|
242
|
+
options: __HttpHandlerOptions,
|
|
243
|
+
cb: (err: any, data?: CreateAgentSpaceCommandOutput) => void
|
|
244
|
+
): void;
|
|
245
|
+
createBacklogTask(
|
|
246
|
+
args: CreateBacklogTaskCommandInput,
|
|
247
|
+
options?: __HttpHandlerOptions
|
|
248
|
+
): Promise<CreateBacklogTaskCommandOutput>;
|
|
249
|
+
createBacklogTask(
|
|
250
|
+
args: CreateBacklogTaskCommandInput,
|
|
251
|
+
cb: (err: any, data?: CreateBacklogTaskCommandOutput) => void
|
|
252
|
+
): void;
|
|
253
|
+
createBacklogTask(
|
|
254
|
+
args: CreateBacklogTaskCommandInput,
|
|
255
|
+
options: __HttpHandlerOptions,
|
|
256
|
+
cb: (err: any, data?: CreateBacklogTaskCommandOutput) => void
|
|
257
|
+
): void;
|
|
258
|
+
createChat(
|
|
259
|
+
args: CreateChatCommandInput,
|
|
260
|
+
options?: __HttpHandlerOptions
|
|
261
|
+
): Promise<CreateChatCommandOutput>;
|
|
262
|
+
createChat(
|
|
263
|
+
args: CreateChatCommandInput,
|
|
264
|
+
cb: (err: any, data?: CreateChatCommandOutput) => void
|
|
265
|
+
): void;
|
|
266
|
+
createChat(
|
|
267
|
+
args: CreateChatCommandInput,
|
|
268
|
+
options: __HttpHandlerOptions,
|
|
269
|
+
cb: (err: any, data?: CreateChatCommandOutput) => void
|
|
270
|
+
): void;
|
|
271
|
+
createPrivateConnection(
|
|
272
|
+
args: CreatePrivateConnectionCommandInput,
|
|
273
|
+
options?: __HttpHandlerOptions
|
|
274
|
+
): Promise<CreatePrivateConnectionCommandOutput>;
|
|
275
|
+
createPrivateConnection(
|
|
276
|
+
args: CreatePrivateConnectionCommandInput,
|
|
277
|
+
cb: (err: any, data?: CreatePrivateConnectionCommandOutput) => void
|
|
278
|
+
): void;
|
|
279
|
+
createPrivateConnection(
|
|
280
|
+
args: CreatePrivateConnectionCommandInput,
|
|
281
|
+
options: __HttpHandlerOptions,
|
|
282
|
+
cb: (err: any, data?: CreatePrivateConnectionCommandOutput) => void
|
|
283
|
+
): void;
|
|
284
|
+
deleteAgentSpace(
|
|
285
|
+
args: DeleteAgentSpaceCommandInput,
|
|
286
|
+
options?: __HttpHandlerOptions
|
|
287
|
+
): Promise<DeleteAgentSpaceCommandOutput>;
|
|
288
|
+
deleteAgentSpace(
|
|
289
|
+
args: DeleteAgentSpaceCommandInput,
|
|
290
|
+
cb: (err: any, data?: DeleteAgentSpaceCommandOutput) => void
|
|
291
|
+
): void;
|
|
292
|
+
deleteAgentSpace(
|
|
293
|
+
args: DeleteAgentSpaceCommandInput,
|
|
294
|
+
options: __HttpHandlerOptions,
|
|
295
|
+
cb: (err: any, data?: DeleteAgentSpaceCommandOutput) => void
|
|
296
|
+
): void;
|
|
297
|
+
deletePrivateConnection(
|
|
298
|
+
args: DeletePrivateConnectionCommandInput,
|
|
299
|
+
options?: __HttpHandlerOptions
|
|
300
|
+
): Promise<DeletePrivateConnectionCommandOutput>;
|
|
301
|
+
deletePrivateConnection(
|
|
302
|
+
args: DeletePrivateConnectionCommandInput,
|
|
303
|
+
cb: (err: any, data?: DeletePrivateConnectionCommandOutput) => void
|
|
304
|
+
): void;
|
|
305
|
+
deletePrivateConnection(
|
|
306
|
+
args: DeletePrivateConnectionCommandInput,
|
|
307
|
+
options: __HttpHandlerOptions,
|
|
308
|
+
cb: (err: any, data?: DeletePrivateConnectionCommandOutput) => void
|
|
309
|
+
): void;
|
|
310
|
+
deregisterService(
|
|
311
|
+
args: DeregisterServiceCommandInput,
|
|
312
|
+
options?: __HttpHandlerOptions
|
|
313
|
+
): Promise<DeregisterServiceCommandOutput>;
|
|
314
|
+
deregisterService(
|
|
315
|
+
args: DeregisterServiceCommandInput,
|
|
316
|
+
cb: (err: any, data?: DeregisterServiceCommandOutput) => void
|
|
317
|
+
): void;
|
|
318
|
+
deregisterService(
|
|
319
|
+
args: DeregisterServiceCommandInput,
|
|
320
|
+
options: __HttpHandlerOptions,
|
|
321
|
+
cb: (err: any, data?: DeregisterServiceCommandOutput) => void
|
|
322
|
+
): void;
|
|
323
|
+
describePrivateConnection(
|
|
324
|
+
args: DescribePrivateConnectionCommandInput,
|
|
325
|
+
options?: __HttpHandlerOptions
|
|
326
|
+
): Promise<DescribePrivateConnectionCommandOutput>;
|
|
327
|
+
describePrivateConnection(
|
|
328
|
+
args: DescribePrivateConnectionCommandInput,
|
|
329
|
+
cb: (err: any, data?: DescribePrivateConnectionCommandOutput) => void
|
|
330
|
+
): void;
|
|
331
|
+
describePrivateConnection(
|
|
332
|
+
args: DescribePrivateConnectionCommandInput,
|
|
333
|
+
options: __HttpHandlerOptions,
|
|
334
|
+
cb: (err: any, data?: DescribePrivateConnectionCommandOutput) => void
|
|
335
|
+
): void;
|
|
336
|
+
describeSupportLevel(
|
|
337
|
+
args: DescribeSupportLevelCommandInput,
|
|
338
|
+
options?: __HttpHandlerOptions
|
|
339
|
+
): Promise<DescribeSupportLevelCommandOutput>;
|
|
340
|
+
describeSupportLevel(
|
|
341
|
+
args: DescribeSupportLevelCommandInput,
|
|
342
|
+
cb: (err: any, data?: DescribeSupportLevelCommandOutput) => void
|
|
343
|
+
): void;
|
|
344
|
+
describeSupportLevel(
|
|
345
|
+
args: DescribeSupportLevelCommandInput,
|
|
346
|
+
options: __HttpHandlerOptions,
|
|
347
|
+
cb: (err: any, data?: DescribeSupportLevelCommandOutput) => void
|
|
348
|
+
): void;
|
|
349
|
+
disableOperatorApp(
|
|
350
|
+
args: DisableOperatorAppCommandInput,
|
|
351
|
+
options?: __HttpHandlerOptions
|
|
352
|
+
): Promise<DisableOperatorAppCommandOutput>;
|
|
353
|
+
disableOperatorApp(
|
|
354
|
+
args: DisableOperatorAppCommandInput,
|
|
355
|
+
cb: (err: any, data?: DisableOperatorAppCommandOutput) => void
|
|
356
|
+
): void;
|
|
357
|
+
disableOperatorApp(
|
|
358
|
+
args: DisableOperatorAppCommandInput,
|
|
359
|
+
options: __HttpHandlerOptions,
|
|
360
|
+
cb: (err: any, data?: DisableOperatorAppCommandOutput) => void
|
|
361
|
+
): void;
|
|
362
|
+
disassociateService(
|
|
363
|
+
args: DisassociateServiceCommandInput,
|
|
364
|
+
options?: __HttpHandlerOptions
|
|
365
|
+
): Promise<DisassociateServiceCommandOutput>;
|
|
366
|
+
disassociateService(
|
|
367
|
+
args: DisassociateServiceCommandInput,
|
|
368
|
+
cb: (err: any, data?: DisassociateServiceCommandOutput) => void
|
|
369
|
+
): void;
|
|
370
|
+
disassociateService(
|
|
371
|
+
args: DisassociateServiceCommandInput,
|
|
372
|
+
options: __HttpHandlerOptions,
|
|
373
|
+
cb: (err: any, data?: DisassociateServiceCommandOutput) => void
|
|
374
|
+
): void;
|
|
375
|
+
enableOperatorApp(
|
|
376
|
+
args: EnableOperatorAppCommandInput,
|
|
377
|
+
options?: __HttpHandlerOptions
|
|
378
|
+
): Promise<EnableOperatorAppCommandOutput>;
|
|
379
|
+
enableOperatorApp(
|
|
380
|
+
args: EnableOperatorAppCommandInput,
|
|
381
|
+
cb: (err: any, data?: EnableOperatorAppCommandOutput) => void
|
|
382
|
+
): void;
|
|
383
|
+
enableOperatorApp(
|
|
384
|
+
args: EnableOperatorAppCommandInput,
|
|
385
|
+
options: __HttpHandlerOptions,
|
|
386
|
+
cb: (err: any, data?: EnableOperatorAppCommandOutput) => void
|
|
387
|
+
): void;
|
|
388
|
+
endChatForCase(
|
|
389
|
+
args: EndChatForCaseCommandInput,
|
|
390
|
+
options?: __HttpHandlerOptions
|
|
391
|
+
): Promise<EndChatForCaseCommandOutput>;
|
|
392
|
+
endChatForCase(
|
|
393
|
+
args: EndChatForCaseCommandInput,
|
|
394
|
+
cb: (err: any, data?: EndChatForCaseCommandOutput) => void
|
|
395
|
+
): void;
|
|
396
|
+
endChatForCase(
|
|
397
|
+
args: EndChatForCaseCommandInput,
|
|
398
|
+
options: __HttpHandlerOptions,
|
|
399
|
+
cb: (err: any, data?: EndChatForCaseCommandOutput) => void
|
|
400
|
+
): void;
|
|
401
|
+
getAccountUsage(): Promise<GetAccountUsageCommandOutput>;
|
|
402
|
+
getAccountUsage(
|
|
403
|
+
args: GetAccountUsageCommandInput,
|
|
404
|
+
options?: __HttpHandlerOptions
|
|
405
|
+
): Promise<GetAccountUsageCommandOutput>;
|
|
406
|
+
getAccountUsage(
|
|
407
|
+
args: GetAccountUsageCommandInput,
|
|
408
|
+
cb: (err: any, data?: GetAccountUsageCommandOutput) => void
|
|
409
|
+
): void;
|
|
410
|
+
getAccountUsage(
|
|
411
|
+
args: GetAccountUsageCommandInput,
|
|
412
|
+
options: __HttpHandlerOptions,
|
|
413
|
+
cb: (err: any, data?: GetAccountUsageCommandOutput) => void
|
|
414
|
+
): void;
|
|
415
|
+
getAgentSpace(
|
|
416
|
+
args: GetAgentSpaceCommandInput,
|
|
417
|
+
options?: __HttpHandlerOptions
|
|
418
|
+
): Promise<GetAgentSpaceCommandOutput>;
|
|
419
|
+
getAgentSpace(
|
|
420
|
+
args: GetAgentSpaceCommandInput,
|
|
421
|
+
cb: (err: any, data?: GetAgentSpaceCommandOutput) => void
|
|
422
|
+
): void;
|
|
423
|
+
getAgentSpace(
|
|
424
|
+
args: GetAgentSpaceCommandInput,
|
|
425
|
+
options: __HttpHandlerOptions,
|
|
426
|
+
cb: (err: any, data?: GetAgentSpaceCommandOutput) => void
|
|
427
|
+
): void;
|
|
428
|
+
getAssociation(
|
|
429
|
+
args: GetAssociationCommandInput,
|
|
430
|
+
options?: __HttpHandlerOptions
|
|
431
|
+
): Promise<GetAssociationCommandOutput>;
|
|
432
|
+
getAssociation(
|
|
433
|
+
args: GetAssociationCommandInput,
|
|
434
|
+
cb: (err: any, data?: GetAssociationCommandOutput) => void
|
|
435
|
+
): void;
|
|
436
|
+
getAssociation(
|
|
437
|
+
args: GetAssociationCommandInput,
|
|
438
|
+
options: __HttpHandlerOptions,
|
|
439
|
+
cb: (err: any, data?: GetAssociationCommandOutput) => void
|
|
440
|
+
): void;
|
|
441
|
+
getBacklogTask(
|
|
442
|
+
args: GetBacklogTaskCommandInput,
|
|
443
|
+
options?: __HttpHandlerOptions
|
|
444
|
+
): Promise<GetBacklogTaskCommandOutput>;
|
|
445
|
+
getBacklogTask(
|
|
446
|
+
args: GetBacklogTaskCommandInput,
|
|
447
|
+
cb: (err: any, data?: GetBacklogTaskCommandOutput) => void
|
|
448
|
+
): void;
|
|
449
|
+
getBacklogTask(
|
|
450
|
+
args: GetBacklogTaskCommandInput,
|
|
451
|
+
options: __HttpHandlerOptions,
|
|
452
|
+
cb: (err: any, data?: GetBacklogTaskCommandOutput) => void
|
|
453
|
+
): void;
|
|
454
|
+
getOperatorApp(
|
|
455
|
+
args: GetOperatorAppCommandInput,
|
|
456
|
+
options?: __HttpHandlerOptions
|
|
457
|
+
): Promise<GetOperatorAppCommandOutput>;
|
|
458
|
+
getOperatorApp(
|
|
459
|
+
args: GetOperatorAppCommandInput,
|
|
460
|
+
cb: (err: any, data?: GetOperatorAppCommandOutput) => void
|
|
461
|
+
): void;
|
|
462
|
+
getOperatorApp(
|
|
463
|
+
args: GetOperatorAppCommandInput,
|
|
464
|
+
options: __HttpHandlerOptions,
|
|
465
|
+
cb: (err: any, data?: GetOperatorAppCommandOutput) => void
|
|
466
|
+
): void;
|
|
467
|
+
getRecommendation(
|
|
468
|
+
args: GetRecommendationCommandInput,
|
|
469
|
+
options?: __HttpHandlerOptions
|
|
470
|
+
): Promise<GetRecommendationCommandOutput>;
|
|
471
|
+
getRecommendation(
|
|
472
|
+
args: GetRecommendationCommandInput,
|
|
473
|
+
cb: (err: any, data?: GetRecommendationCommandOutput) => void
|
|
474
|
+
): void;
|
|
475
|
+
getRecommendation(
|
|
476
|
+
args: GetRecommendationCommandInput,
|
|
477
|
+
options: __HttpHandlerOptions,
|
|
478
|
+
cb: (err: any, data?: GetRecommendationCommandOutput) => void
|
|
479
|
+
): void;
|
|
480
|
+
getService(
|
|
481
|
+
args: GetServiceCommandInput,
|
|
482
|
+
options?: __HttpHandlerOptions
|
|
483
|
+
): Promise<GetServiceCommandOutput>;
|
|
484
|
+
getService(
|
|
485
|
+
args: GetServiceCommandInput,
|
|
486
|
+
cb: (err: any, data?: GetServiceCommandOutput) => void
|
|
487
|
+
): void;
|
|
488
|
+
getService(
|
|
489
|
+
args: GetServiceCommandInput,
|
|
490
|
+
options: __HttpHandlerOptions,
|
|
491
|
+
cb: (err: any, data?: GetServiceCommandOutput) => void
|
|
492
|
+
): void;
|
|
493
|
+
initiateChatForCase(
|
|
494
|
+
args: InitiateChatForCaseCommandInput,
|
|
495
|
+
options?: __HttpHandlerOptions
|
|
496
|
+
): Promise<InitiateChatForCaseCommandOutput>;
|
|
497
|
+
initiateChatForCase(
|
|
498
|
+
args: InitiateChatForCaseCommandInput,
|
|
499
|
+
cb: (err: any, data?: InitiateChatForCaseCommandOutput) => void
|
|
500
|
+
): void;
|
|
501
|
+
initiateChatForCase(
|
|
502
|
+
args: InitiateChatForCaseCommandInput,
|
|
503
|
+
options: __HttpHandlerOptions,
|
|
504
|
+
cb: (err: any, data?: InitiateChatForCaseCommandOutput) => void
|
|
505
|
+
): void;
|
|
506
|
+
listAgentSpaces(): Promise<ListAgentSpacesCommandOutput>;
|
|
507
|
+
listAgentSpaces(
|
|
508
|
+
args: ListAgentSpacesCommandInput,
|
|
509
|
+
options?: __HttpHandlerOptions
|
|
510
|
+
): Promise<ListAgentSpacesCommandOutput>;
|
|
511
|
+
listAgentSpaces(
|
|
512
|
+
args: ListAgentSpacesCommandInput,
|
|
513
|
+
cb: (err: any, data?: ListAgentSpacesCommandOutput) => void
|
|
514
|
+
): void;
|
|
515
|
+
listAgentSpaces(
|
|
516
|
+
args: ListAgentSpacesCommandInput,
|
|
517
|
+
options: __HttpHandlerOptions,
|
|
518
|
+
cb: (err: any, data?: ListAgentSpacesCommandOutput) => void
|
|
519
|
+
): void;
|
|
520
|
+
listAssociations(
|
|
521
|
+
args: ListAssociationsCommandInput,
|
|
522
|
+
options?: __HttpHandlerOptions
|
|
523
|
+
): Promise<ListAssociationsCommandOutput>;
|
|
524
|
+
listAssociations(
|
|
525
|
+
args: ListAssociationsCommandInput,
|
|
526
|
+
cb: (err: any, data?: ListAssociationsCommandOutput) => void
|
|
527
|
+
): void;
|
|
528
|
+
listAssociations(
|
|
529
|
+
args: ListAssociationsCommandInput,
|
|
530
|
+
options: __HttpHandlerOptions,
|
|
531
|
+
cb: (err: any, data?: ListAssociationsCommandOutput) => void
|
|
532
|
+
): void;
|
|
533
|
+
listBacklogTasks(
|
|
534
|
+
args: ListBacklogTasksCommandInput,
|
|
535
|
+
options?: __HttpHandlerOptions
|
|
536
|
+
): Promise<ListBacklogTasksCommandOutput>;
|
|
537
|
+
listBacklogTasks(
|
|
538
|
+
args: ListBacklogTasksCommandInput,
|
|
539
|
+
cb: (err: any, data?: ListBacklogTasksCommandOutput) => void
|
|
540
|
+
): void;
|
|
541
|
+
listBacklogTasks(
|
|
542
|
+
args: ListBacklogTasksCommandInput,
|
|
543
|
+
options: __HttpHandlerOptions,
|
|
544
|
+
cb: (err: any, data?: ListBacklogTasksCommandOutput) => void
|
|
545
|
+
): void;
|
|
546
|
+
listChats(
|
|
547
|
+
args: ListChatsCommandInput,
|
|
548
|
+
options?: __HttpHandlerOptions
|
|
549
|
+
): Promise<ListChatsCommandOutput>;
|
|
550
|
+
listChats(
|
|
551
|
+
args: ListChatsCommandInput,
|
|
552
|
+
cb: (err: any, data?: ListChatsCommandOutput) => void
|
|
553
|
+
): void;
|
|
554
|
+
listChats(
|
|
555
|
+
args: ListChatsCommandInput,
|
|
556
|
+
options: __HttpHandlerOptions,
|
|
557
|
+
cb: (err: any, data?: ListChatsCommandOutput) => void
|
|
558
|
+
): void;
|
|
559
|
+
listExecutions(
|
|
560
|
+
args: ListExecutionsCommandInput,
|
|
561
|
+
options?: __HttpHandlerOptions
|
|
562
|
+
): Promise<ListExecutionsCommandOutput>;
|
|
563
|
+
listExecutions(
|
|
564
|
+
args: ListExecutionsCommandInput,
|
|
565
|
+
cb: (err: any, data?: ListExecutionsCommandOutput) => void
|
|
566
|
+
): void;
|
|
567
|
+
listExecutions(
|
|
568
|
+
args: ListExecutionsCommandInput,
|
|
569
|
+
options: __HttpHandlerOptions,
|
|
570
|
+
cb: (err: any, data?: ListExecutionsCommandOutput) => void
|
|
571
|
+
): void;
|
|
572
|
+
listGoals(
|
|
573
|
+
args: ListGoalsCommandInput,
|
|
574
|
+
options?: __HttpHandlerOptions
|
|
575
|
+
): Promise<ListGoalsCommandOutput>;
|
|
576
|
+
listGoals(
|
|
577
|
+
args: ListGoalsCommandInput,
|
|
578
|
+
cb: (err: any, data?: ListGoalsCommandOutput) => void
|
|
579
|
+
): void;
|
|
580
|
+
listGoals(
|
|
581
|
+
args: ListGoalsCommandInput,
|
|
582
|
+
options: __HttpHandlerOptions,
|
|
583
|
+
cb: (err: any, data?: ListGoalsCommandOutput) => void
|
|
584
|
+
): void;
|
|
585
|
+
listJournalRecords(
|
|
586
|
+
args: ListJournalRecordsCommandInput,
|
|
587
|
+
options?: __HttpHandlerOptions
|
|
588
|
+
): Promise<ListJournalRecordsCommandOutput>;
|
|
589
|
+
listJournalRecords(
|
|
590
|
+
args: ListJournalRecordsCommandInput,
|
|
591
|
+
cb: (err: any, data?: ListJournalRecordsCommandOutput) => void
|
|
592
|
+
): void;
|
|
593
|
+
listJournalRecords(
|
|
594
|
+
args: ListJournalRecordsCommandInput,
|
|
595
|
+
options: __HttpHandlerOptions,
|
|
596
|
+
cb: (err: any, data?: ListJournalRecordsCommandOutput) => void
|
|
597
|
+
): void;
|
|
598
|
+
listPendingMessages(
|
|
599
|
+
args: ListPendingMessagesCommandInput,
|
|
600
|
+
options?: __HttpHandlerOptions
|
|
601
|
+
): Promise<ListPendingMessagesCommandOutput>;
|
|
602
|
+
listPendingMessages(
|
|
603
|
+
args: ListPendingMessagesCommandInput,
|
|
604
|
+
cb: (err: any, data?: ListPendingMessagesCommandOutput) => void
|
|
605
|
+
): void;
|
|
606
|
+
listPendingMessages(
|
|
607
|
+
args: ListPendingMessagesCommandInput,
|
|
608
|
+
options: __HttpHandlerOptions,
|
|
609
|
+
cb: (err: any, data?: ListPendingMessagesCommandOutput) => void
|
|
610
|
+
): void;
|
|
611
|
+
listPrivateConnections(): Promise<ListPrivateConnectionsCommandOutput>;
|
|
612
|
+
listPrivateConnections(
|
|
613
|
+
args: ListPrivateConnectionsCommandInput,
|
|
614
|
+
options?: __HttpHandlerOptions
|
|
615
|
+
): Promise<ListPrivateConnectionsCommandOutput>;
|
|
616
|
+
listPrivateConnections(
|
|
617
|
+
args: ListPrivateConnectionsCommandInput,
|
|
618
|
+
cb: (err: any, data?: ListPrivateConnectionsCommandOutput) => void
|
|
619
|
+
): void;
|
|
620
|
+
listPrivateConnections(
|
|
621
|
+
args: ListPrivateConnectionsCommandInput,
|
|
622
|
+
options: __HttpHandlerOptions,
|
|
623
|
+
cb: (err: any, data?: ListPrivateConnectionsCommandOutput) => void
|
|
624
|
+
): void;
|
|
625
|
+
listRecommendations(
|
|
626
|
+
args: ListRecommendationsCommandInput,
|
|
627
|
+
options?: __HttpHandlerOptions
|
|
628
|
+
): Promise<ListRecommendationsCommandOutput>;
|
|
629
|
+
listRecommendations(
|
|
630
|
+
args: ListRecommendationsCommandInput,
|
|
631
|
+
cb: (err: any, data?: ListRecommendationsCommandOutput) => void
|
|
632
|
+
): void;
|
|
633
|
+
listRecommendations(
|
|
634
|
+
args: ListRecommendationsCommandInput,
|
|
635
|
+
options: __HttpHandlerOptions,
|
|
636
|
+
cb: (err: any, data?: ListRecommendationsCommandOutput) => void
|
|
637
|
+
): void;
|
|
638
|
+
listServices(): Promise<ListServicesCommandOutput>;
|
|
639
|
+
listServices(
|
|
640
|
+
args: ListServicesCommandInput,
|
|
641
|
+
options?: __HttpHandlerOptions
|
|
642
|
+
): Promise<ListServicesCommandOutput>;
|
|
643
|
+
listServices(
|
|
644
|
+
args: ListServicesCommandInput,
|
|
645
|
+
cb: (err: any, data?: ListServicesCommandOutput) => void
|
|
646
|
+
): void;
|
|
647
|
+
listServices(
|
|
648
|
+
args: ListServicesCommandInput,
|
|
649
|
+
options: __HttpHandlerOptions,
|
|
650
|
+
cb: (err: any, data?: ListServicesCommandOutput) => void
|
|
651
|
+
): void;
|
|
652
|
+
listTagsForResource(
|
|
653
|
+
args: ListTagsForResourceCommandInput,
|
|
654
|
+
options?: __HttpHandlerOptions
|
|
655
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
656
|
+
listTagsForResource(
|
|
657
|
+
args: ListTagsForResourceCommandInput,
|
|
658
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
659
|
+
): void;
|
|
660
|
+
listTagsForResource(
|
|
661
|
+
args: ListTagsForResourceCommandInput,
|
|
662
|
+
options: __HttpHandlerOptions,
|
|
663
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
664
|
+
): void;
|
|
665
|
+
listWebhooks(
|
|
666
|
+
args: ListWebhooksCommandInput,
|
|
667
|
+
options?: __HttpHandlerOptions
|
|
668
|
+
): Promise<ListWebhooksCommandOutput>;
|
|
669
|
+
listWebhooks(
|
|
670
|
+
args: ListWebhooksCommandInput,
|
|
671
|
+
cb: (err: any, data?: ListWebhooksCommandOutput) => void
|
|
672
|
+
): void;
|
|
673
|
+
listWebhooks(
|
|
674
|
+
args: ListWebhooksCommandInput,
|
|
675
|
+
options: __HttpHandlerOptions,
|
|
676
|
+
cb: (err: any, data?: ListWebhooksCommandOutput) => void
|
|
677
|
+
): void;
|
|
678
|
+
registerService(
|
|
679
|
+
args: RegisterServiceCommandInput,
|
|
680
|
+
options?: __HttpHandlerOptions
|
|
681
|
+
): Promise<RegisterServiceCommandOutput>;
|
|
682
|
+
registerService(
|
|
683
|
+
args: RegisterServiceCommandInput,
|
|
684
|
+
cb: (err: any, data?: RegisterServiceCommandOutput) => void
|
|
685
|
+
): void;
|
|
686
|
+
registerService(
|
|
687
|
+
args: RegisterServiceCommandInput,
|
|
688
|
+
options: __HttpHandlerOptions,
|
|
689
|
+
cb: (err: any, data?: RegisterServiceCommandOutput) => void
|
|
690
|
+
): void;
|
|
691
|
+
sendMessage(
|
|
692
|
+
args: SendMessageCommandInput,
|
|
693
|
+
options?: __HttpHandlerOptions
|
|
694
|
+
): Promise<SendMessageCommandOutput>;
|
|
695
|
+
sendMessage(
|
|
696
|
+
args: SendMessageCommandInput,
|
|
697
|
+
cb: (err: any, data?: SendMessageCommandOutput) => void
|
|
698
|
+
): void;
|
|
699
|
+
sendMessage(
|
|
700
|
+
args: SendMessageCommandInput,
|
|
701
|
+
options: __HttpHandlerOptions,
|
|
702
|
+
cb: (err: any, data?: SendMessageCommandOutput) => void
|
|
703
|
+
): void;
|
|
704
|
+
tagResource(
|
|
705
|
+
args: TagResourceCommandInput,
|
|
706
|
+
options?: __HttpHandlerOptions
|
|
707
|
+
): Promise<TagResourceCommandOutput>;
|
|
708
|
+
tagResource(
|
|
709
|
+
args: TagResourceCommandInput,
|
|
710
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
711
|
+
): void;
|
|
712
|
+
tagResource(
|
|
713
|
+
args: TagResourceCommandInput,
|
|
714
|
+
options: __HttpHandlerOptions,
|
|
715
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
716
|
+
): void;
|
|
717
|
+
untagResource(
|
|
718
|
+
args: UntagResourceCommandInput,
|
|
719
|
+
options?: __HttpHandlerOptions
|
|
720
|
+
): Promise<UntagResourceCommandOutput>;
|
|
721
|
+
untagResource(
|
|
722
|
+
args: UntagResourceCommandInput,
|
|
723
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
724
|
+
): void;
|
|
725
|
+
untagResource(
|
|
726
|
+
args: UntagResourceCommandInput,
|
|
727
|
+
options: __HttpHandlerOptions,
|
|
728
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
729
|
+
): void;
|
|
730
|
+
updateAgentSpace(
|
|
731
|
+
args: UpdateAgentSpaceCommandInput,
|
|
732
|
+
options?: __HttpHandlerOptions
|
|
733
|
+
): Promise<UpdateAgentSpaceCommandOutput>;
|
|
734
|
+
updateAgentSpace(
|
|
735
|
+
args: UpdateAgentSpaceCommandInput,
|
|
736
|
+
cb: (err: any, data?: UpdateAgentSpaceCommandOutput) => void
|
|
737
|
+
): void;
|
|
738
|
+
updateAgentSpace(
|
|
739
|
+
args: UpdateAgentSpaceCommandInput,
|
|
740
|
+
options: __HttpHandlerOptions,
|
|
741
|
+
cb: (err: any, data?: UpdateAgentSpaceCommandOutput) => void
|
|
742
|
+
): void;
|
|
743
|
+
updateAssociation(
|
|
744
|
+
args: UpdateAssociationCommandInput,
|
|
745
|
+
options?: __HttpHandlerOptions
|
|
746
|
+
): Promise<UpdateAssociationCommandOutput>;
|
|
747
|
+
updateAssociation(
|
|
748
|
+
args: UpdateAssociationCommandInput,
|
|
749
|
+
cb: (err: any, data?: UpdateAssociationCommandOutput) => void
|
|
750
|
+
): void;
|
|
751
|
+
updateAssociation(
|
|
752
|
+
args: UpdateAssociationCommandInput,
|
|
753
|
+
options: __HttpHandlerOptions,
|
|
754
|
+
cb: (err: any, data?: UpdateAssociationCommandOutput) => void
|
|
755
|
+
): void;
|
|
756
|
+
updateBacklogTask(
|
|
757
|
+
args: UpdateBacklogTaskCommandInput,
|
|
758
|
+
options?: __HttpHandlerOptions
|
|
759
|
+
): Promise<UpdateBacklogTaskCommandOutput>;
|
|
760
|
+
updateBacklogTask(
|
|
761
|
+
args: UpdateBacklogTaskCommandInput,
|
|
762
|
+
cb: (err: any, data?: UpdateBacklogTaskCommandOutput) => void
|
|
763
|
+
): void;
|
|
764
|
+
updateBacklogTask(
|
|
765
|
+
args: UpdateBacklogTaskCommandInput,
|
|
766
|
+
options: __HttpHandlerOptions,
|
|
767
|
+
cb: (err: any, data?: UpdateBacklogTaskCommandOutput) => void
|
|
768
|
+
): void;
|
|
769
|
+
updateGoal(
|
|
770
|
+
args: UpdateGoalCommandInput,
|
|
771
|
+
options?: __HttpHandlerOptions
|
|
772
|
+
): Promise<UpdateGoalCommandOutput>;
|
|
773
|
+
updateGoal(
|
|
774
|
+
args: UpdateGoalCommandInput,
|
|
775
|
+
cb: (err: any, data?: UpdateGoalCommandOutput) => void
|
|
776
|
+
): void;
|
|
777
|
+
updateGoal(
|
|
778
|
+
args: UpdateGoalCommandInput,
|
|
779
|
+
options: __HttpHandlerOptions,
|
|
780
|
+
cb: (err: any, data?: UpdateGoalCommandOutput) => void
|
|
781
|
+
): void;
|
|
782
|
+
updateOperatorAppIdpConfig(
|
|
783
|
+
args: UpdateOperatorAppIdpConfigCommandInput,
|
|
784
|
+
options?: __HttpHandlerOptions
|
|
785
|
+
): Promise<UpdateOperatorAppIdpConfigCommandOutput>;
|
|
786
|
+
updateOperatorAppIdpConfig(
|
|
787
|
+
args: UpdateOperatorAppIdpConfigCommandInput,
|
|
788
|
+
cb: (err: any, data?: UpdateOperatorAppIdpConfigCommandOutput) => void
|
|
789
|
+
): void;
|
|
790
|
+
updateOperatorAppIdpConfig(
|
|
791
|
+
args: UpdateOperatorAppIdpConfigCommandInput,
|
|
792
|
+
options: __HttpHandlerOptions,
|
|
793
|
+
cb: (err: any, data?: UpdateOperatorAppIdpConfigCommandOutput) => void
|
|
794
|
+
): void;
|
|
795
|
+
updatePrivateConnectionCertificate(
|
|
796
|
+
args: UpdatePrivateConnectionCertificateCommandInput,
|
|
797
|
+
options?: __HttpHandlerOptions
|
|
798
|
+
): Promise<UpdatePrivateConnectionCertificateCommandOutput>;
|
|
799
|
+
updatePrivateConnectionCertificate(
|
|
800
|
+
args: UpdatePrivateConnectionCertificateCommandInput,
|
|
801
|
+
cb: (
|
|
802
|
+
err: any,
|
|
803
|
+
data?: UpdatePrivateConnectionCertificateCommandOutput
|
|
804
|
+
) => void
|
|
805
|
+
): void;
|
|
806
|
+
updatePrivateConnectionCertificate(
|
|
807
|
+
args: UpdatePrivateConnectionCertificateCommandInput,
|
|
808
|
+
options: __HttpHandlerOptions,
|
|
809
|
+
cb: (
|
|
810
|
+
err: any,
|
|
811
|
+
data?: UpdatePrivateConnectionCertificateCommandOutput
|
|
812
|
+
) => void
|
|
813
|
+
): void;
|
|
814
|
+
updateRecommendation(
|
|
815
|
+
args: UpdateRecommendationCommandInput,
|
|
816
|
+
options?: __HttpHandlerOptions
|
|
817
|
+
): Promise<UpdateRecommendationCommandOutput>;
|
|
818
|
+
updateRecommendation(
|
|
819
|
+
args: UpdateRecommendationCommandInput,
|
|
820
|
+
cb: (err: any, data?: UpdateRecommendationCommandOutput) => void
|
|
821
|
+
): void;
|
|
822
|
+
updateRecommendation(
|
|
823
|
+
args: UpdateRecommendationCommandInput,
|
|
824
|
+
options: __HttpHandlerOptions,
|
|
825
|
+
cb: (err: any, data?: UpdateRecommendationCommandOutput) => void
|
|
826
|
+
): void;
|
|
827
|
+
validateAwsAssociations(
|
|
828
|
+
args: ValidateAwsAssociationsCommandInput,
|
|
829
|
+
options?: __HttpHandlerOptions
|
|
830
|
+
): Promise<ValidateAwsAssociationsCommandOutput>;
|
|
831
|
+
validateAwsAssociations(
|
|
832
|
+
args: ValidateAwsAssociationsCommandInput,
|
|
833
|
+
cb: (err: any, data?: ValidateAwsAssociationsCommandOutput) => void
|
|
834
|
+
): void;
|
|
835
|
+
validateAwsAssociations(
|
|
836
|
+
args: ValidateAwsAssociationsCommandInput,
|
|
837
|
+
options: __HttpHandlerOptions,
|
|
838
|
+
cb: (err: any, data?: ValidateAwsAssociationsCommandOutput) => void
|
|
839
|
+
): void;
|
|
840
|
+
paginateListAgentSpaces(
|
|
841
|
+
args?: ListAgentSpacesCommandInput,
|
|
842
|
+
paginationConfig?: Pick<
|
|
843
|
+
PaginationConfiguration,
|
|
844
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
845
|
+
>
|
|
846
|
+
): Paginator<ListAgentSpacesCommandOutput>;
|
|
847
|
+
paginateListAssociations(
|
|
848
|
+
args: ListAssociationsCommandInput,
|
|
849
|
+
paginationConfig?: Pick<
|
|
850
|
+
PaginationConfiguration,
|
|
851
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
852
|
+
>
|
|
853
|
+
): Paginator<ListAssociationsCommandOutput>;
|
|
854
|
+
paginateListBacklogTasks(
|
|
855
|
+
args: ListBacklogTasksCommandInput,
|
|
856
|
+
paginationConfig?: Pick<
|
|
857
|
+
PaginationConfiguration,
|
|
858
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
859
|
+
>
|
|
860
|
+
): Paginator<ListBacklogTasksCommandOutput>;
|
|
861
|
+
paginateListExecutions(
|
|
862
|
+
args: ListExecutionsCommandInput,
|
|
863
|
+
paginationConfig?: Pick<
|
|
864
|
+
PaginationConfiguration,
|
|
865
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
866
|
+
>
|
|
867
|
+
): Paginator<ListExecutionsCommandOutput>;
|
|
868
|
+
paginateListGoals(
|
|
869
|
+
args: ListGoalsCommandInput,
|
|
870
|
+
paginationConfig?: Pick<
|
|
871
|
+
PaginationConfiguration,
|
|
872
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
873
|
+
>
|
|
874
|
+
): Paginator<ListGoalsCommandOutput>;
|
|
875
|
+
paginateListJournalRecords(
|
|
876
|
+
args: ListJournalRecordsCommandInput,
|
|
877
|
+
paginationConfig?: Pick<
|
|
878
|
+
PaginationConfiguration,
|
|
879
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
880
|
+
>
|
|
881
|
+
): Paginator<ListJournalRecordsCommandOutput>;
|
|
882
|
+
paginateListServices(
|
|
883
|
+
args?: ListServicesCommandInput,
|
|
884
|
+
paginationConfig?: Pick<
|
|
885
|
+
PaginationConfiguration,
|
|
886
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
887
|
+
>
|
|
888
|
+
): Paginator<ListServicesCommandOutput>;
|
|
889
|
+
}
|
|
890
|
+
export declare class DevOpsAgent
|
|
891
|
+
extends DevOpsAgentClient
|
|
892
|
+
implements DevOpsAgent {}
|