@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,414 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-host-header";
|
|
5
|
+
import {
|
|
6
|
+
UserAgentInputConfig,
|
|
7
|
+
UserAgentResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
9
|
+
import {
|
|
10
|
+
RegionInputConfig,
|
|
11
|
+
RegionResolvedConfig,
|
|
12
|
+
} from "@smithy/config-resolver";
|
|
13
|
+
import {
|
|
14
|
+
EventStreamSerdeInputConfig,
|
|
15
|
+
EventStreamSerdeResolvedConfig,
|
|
16
|
+
} from "@smithy/eventstream-serde-config-resolver";
|
|
17
|
+
import {
|
|
18
|
+
EndpointInputConfig,
|
|
19
|
+
EndpointResolvedConfig,
|
|
20
|
+
} from "@smithy/middleware-endpoint";
|
|
21
|
+
import {
|
|
22
|
+
RetryInputConfig,
|
|
23
|
+
RetryResolvedConfig,
|
|
24
|
+
} from "@smithy/middleware-retry";
|
|
25
|
+
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
26
|
+
import {
|
|
27
|
+
DefaultsMode as __DefaultsMode,
|
|
28
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
29
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
30
|
+
Client as __Client,
|
|
31
|
+
} from "@smithy/smithy-client";
|
|
32
|
+
import {
|
|
33
|
+
AwsCredentialIdentityProvider,
|
|
34
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
35
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
36
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
37
|
+
Decoder as __Decoder,
|
|
38
|
+
Encoder as __Encoder,
|
|
39
|
+
EventStreamSerdeProvider as __EventStreamSerdeProvider,
|
|
40
|
+
HashConstructor as __HashConstructor,
|
|
41
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
42
|
+
Logger as __Logger,
|
|
43
|
+
Provider as __Provider,
|
|
44
|
+
StreamCollector as __StreamCollector,
|
|
45
|
+
UrlParser as __UrlParser,
|
|
46
|
+
UserAgent as __UserAgent,
|
|
47
|
+
} from "@smithy/types";
|
|
48
|
+
import {
|
|
49
|
+
HttpAuthSchemeInputConfig,
|
|
50
|
+
HttpAuthSchemeResolvedConfig,
|
|
51
|
+
} from "./auth/httpAuthSchemeProvider";
|
|
52
|
+
import {
|
|
53
|
+
AllowVendedLogDeliveryForResourceCommandInput,
|
|
54
|
+
AllowVendedLogDeliveryForResourceCommandOutput,
|
|
55
|
+
} from "./commands/AllowVendedLogDeliveryForResourceCommand";
|
|
56
|
+
import {
|
|
57
|
+
AssociateServiceCommandInput,
|
|
58
|
+
AssociateServiceCommandOutput,
|
|
59
|
+
} from "./commands/AssociateServiceCommand";
|
|
60
|
+
import {
|
|
61
|
+
CreateAgentSpaceCommandInput,
|
|
62
|
+
CreateAgentSpaceCommandOutput,
|
|
63
|
+
} from "./commands/CreateAgentSpaceCommand";
|
|
64
|
+
import {
|
|
65
|
+
CreateBacklogTaskCommandInput,
|
|
66
|
+
CreateBacklogTaskCommandOutput,
|
|
67
|
+
} from "./commands/CreateBacklogTaskCommand";
|
|
68
|
+
import {
|
|
69
|
+
CreateChatCommandInput,
|
|
70
|
+
CreateChatCommandOutput,
|
|
71
|
+
} from "./commands/CreateChatCommand";
|
|
72
|
+
import {
|
|
73
|
+
CreatePrivateConnectionCommandInput,
|
|
74
|
+
CreatePrivateConnectionCommandOutput,
|
|
75
|
+
} from "./commands/CreatePrivateConnectionCommand";
|
|
76
|
+
import {
|
|
77
|
+
DeleteAgentSpaceCommandInput,
|
|
78
|
+
DeleteAgentSpaceCommandOutput,
|
|
79
|
+
} from "./commands/DeleteAgentSpaceCommand";
|
|
80
|
+
import {
|
|
81
|
+
DeletePrivateConnectionCommandInput,
|
|
82
|
+
DeletePrivateConnectionCommandOutput,
|
|
83
|
+
} from "./commands/DeletePrivateConnectionCommand";
|
|
84
|
+
import {
|
|
85
|
+
DeregisterServiceCommandInput,
|
|
86
|
+
DeregisterServiceCommandOutput,
|
|
87
|
+
} from "./commands/DeregisterServiceCommand";
|
|
88
|
+
import {
|
|
89
|
+
DescribePrivateConnectionCommandInput,
|
|
90
|
+
DescribePrivateConnectionCommandOutput,
|
|
91
|
+
} from "./commands/DescribePrivateConnectionCommand";
|
|
92
|
+
import {
|
|
93
|
+
DescribeSupportLevelCommandInput,
|
|
94
|
+
DescribeSupportLevelCommandOutput,
|
|
95
|
+
} from "./commands/DescribeSupportLevelCommand";
|
|
96
|
+
import {
|
|
97
|
+
DisableOperatorAppCommandInput,
|
|
98
|
+
DisableOperatorAppCommandOutput,
|
|
99
|
+
} from "./commands/DisableOperatorAppCommand";
|
|
100
|
+
import {
|
|
101
|
+
DisassociateServiceCommandInput,
|
|
102
|
+
DisassociateServiceCommandOutput,
|
|
103
|
+
} from "./commands/DisassociateServiceCommand";
|
|
104
|
+
import {
|
|
105
|
+
EnableOperatorAppCommandInput,
|
|
106
|
+
EnableOperatorAppCommandOutput,
|
|
107
|
+
} from "./commands/EnableOperatorAppCommand";
|
|
108
|
+
import {
|
|
109
|
+
EndChatForCaseCommandInput,
|
|
110
|
+
EndChatForCaseCommandOutput,
|
|
111
|
+
} from "./commands/EndChatForCaseCommand";
|
|
112
|
+
import {
|
|
113
|
+
GetAccountUsageCommandInput,
|
|
114
|
+
GetAccountUsageCommandOutput,
|
|
115
|
+
} from "./commands/GetAccountUsageCommand";
|
|
116
|
+
import {
|
|
117
|
+
GetAgentSpaceCommandInput,
|
|
118
|
+
GetAgentSpaceCommandOutput,
|
|
119
|
+
} from "./commands/GetAgentSpaceCommand";
|
|
120
|
+
import {
|
|
121
|
+
GetAssociationCommandInput,
|
|
122
|
+
GetAssociationCommandOutput,
|
|
123
|
+
} from "./commands/GetAssociationCommand";
|
|
124
|
+
import {
|
|
125
|
+
GetBacklogTaskCommandInput,
|
|
126
|
+
GetBacklogTaskCommandOutput,
|
|
127
|
+
} from "./commands/GetBacklogTaskCommand";
|
|
128
|
+
import {
|
|
129
|
+
GetOperatorAppCommandInput,
|
|
130
|
+
GetOperatorAppCommandOutput,
|
|
131
|
+
} from "./commands/GetOperatorAppCommand";
|
|
132
|
+
import {
|
|
133
|
+
GetRecommendationCommandInput,
|
|
134
|
+
GetRecommendationCommandOutput,
|
|
135
|
+
} from "./commands/GetRecommendationCommand";
|
|
136
|
+
import {
|
|
137
|
+
GetServiceCommandInput,
|
|
138
|
+
GetServiceCommandOutput,
|
|
139
|
+
} from "./commands/GetServiceCommand";
|
|
140
|
+
import {
|
|
141
|
+
InitiateChatForCaseCommandInput,
|
|
142
|
+
InitiateChatForCaseCommandOutput,
|
|
143
|
+
} from "./commands/InitiateChatForCaseCommand";
|
|
144
|
+
import {
|
|
145
|
+
ListAgentSpacesCommandInput,
|
|
146
|
+
ListAgentSpacesCommandOutput,
|
|
147
|
+
} from "./commands/ListAgentSpacesCommand";
|
|
148
|
+
import {
|
|
149
|
+
ListAssociationsCommandInput,
|
|
150
|
+
ListAssociationsCommandOutput,
|
|
151
|
+
} from "./commands/ListAssociationsCommand";
|
|
152
|
+
import {
|
|
153
|
+
ListBacklogTasksCommandInput,
|
|
154
|
+
ListBacklogTasksCommandOutput,
|
|
155
|
+
} from "./commands/ListBacklogTasksCommand";
|
|
156
|
+
import {
|
|
157
|
+
ListChatsCommandInput,
|
|
158
|
+
ListChatsCommandOutput,
|
|
159
|
+
} from "./commands/ListChatsCommand";
|
|
160
|
+
import {
|
|
161
|
+
ListExecutionsCommandInput,
|
|
162
|
+
ListExecutionsCommandOutput,
|
|
163
|
+
} from "./commands/ListExecutionsCommand";
|
|
164
|
+
import {
|
|
165
|
+
ListGoalsCommandInput,
|
|
166
|
+
ListGoalsCommandOutput,
|
|
167
|
+
} from "./commands/ListGoalsCommand";
|
|
168
|
+
import {
|
|
169
|
+
ListJournalRecordsCommandInput,
|
|
170
|
+
ListJournalRecordsCommandOutput,
|
|
171
|
+
} from "./commands/ListJournalRecordsCommand";
|
|
172
|
+
import {
|
|
173
|
+
ListPendingMessagesCommandInput,
|
|
174
|
+
ListPendingMessagesCommandOutput,
|
|
175
|
+
} from "./commands/ListPendingMessagesCommand";
|
|
176
|
+
import {
|
|
177
|
+
ListPrivateConnectionsCommandInput,
|
|
178
|
+
ListPrivateConnectionsCommandOutput,
|
|
179
|
+
} from "./commands/ListPrivateConnectionsCommand";
|
|
180
|
+
import {
|
|
181
|
+
ListRecommendationsCommandInput,
|
|
182
|
+
ListRecommendationsCommandOutput,
|
|
183
|
+
} from "./commands/ListRecommendationsCommand";
|
|
184
|
+
import {
|
|
185
|
+
ListServicesCommandInput,
|
|
186
|
+
ListServicesCommandOutput,
|
|
187
|
+
} from "./commands/ListServicesCommand";
|
|
188
|
+
import {
|
|
189
|
+
ListTagsForResourceCommandInput,
|
|
190
|
+
ListTagsForResourceCommandOutput,
|
|
191
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
192
|
+
import {
|
|
193
|
+
ListWebhooksCommandInput,
|
|
194
|
+
ListWebhooksCommandOutput,
|
|
195
|
+
} from "./commands/ListWebhooksCommand";
|
|
196
|
+
import {
|
|
197
|
+
RegisterServiceCommandInput,
|
|
198
|
+
RegisterServiceCommandOutput,
|
|
199
|
+
} from "./commands/RegisterServiceCommand";
|
|
200
|
+
import {
|
|
201
|
+
SendMessageCommandInput,
|
|
202
|
+
SendMessageCommandOutput,
|
|
203
|
+
} from "./commands/SendMessageCommand";
|
|
204
|
+
import {
|
|
205
|
+
TagResourceCommandInput,
|
|
206
|
+
TagResourceCommandOutput,
|
|
207
|
+
} from "./commands/TagResourceCommand";
|
|
208
|
+
import {
|
|
209
|
+
UntagResourceCommandInput,
|
|
210
|
+
UntagResourceCommandOutput,
|
|
211
|
+
} from "./commands/UntagResourceCommand";
|
|
212
|
+
import {
|
|
213
|
+
UpdateAgentSpaceCommandInput,
|
|
214
|
+
UpdateAgentSpaceCommandOutput,
|
|
215
|
+
} from "./commands/UpdateAgentSpaceCommand";
|
|
216
|
+
import {
|
|
217
|
+
UpdateAssociationCommandInput,
|
|
218
|
+
UpdateAssociationCommandOutput,
|
|
219
|
+
} from "./commands/UpdateAssociationCommand";
|
|
220
|
+
import {
|
|
221
|
+
UpdateBacklogTaskCommandInput,
|
|
222
|
+
UpdateBacklogTaskCommandOutput,
|
|
223
|
+
} from "./commands/UpdateBacklogTaskCommand";
|
|
224
|
+
import {
|
|
225
|
+
UpdateGoalCommandInput,
|
|
226
|
+
UpdateGoalCommandOutput,
|
|
227
|
+
} from "./commands/UpdateGoalCommand";
|
|
228
|
+
import {
|
|
229
|
+
UpdateOperatorAppIdpConfigCommandInput,
|
|
230
|
+
UpdateOperatorAppIdpConfigCommandOutput,
|
|
231
|
+
} from "./commands/UpdateOperatorAppIdpConfigCommand";
|
|
232
|
+
import {
|
|
233
|
+
UpdatePrivateConnectionCertificateCommandInput,
|
|
234
|
+
UpdatePrivateConnectionCertificateCommandOutput,
|
|
235
|
+
} from "./commands/UpdatePrivateConnectionCertificateCommand";
|
|
236
|
+
import {
|
|
237
|
+
UpdateRecommendationCommandInput,
|
|
238
|
+
UpdateRecommendationCommandOutput,
|
|
239
|
+
} from "./commands/UpdateRecommendationCommand";
|
|
240
|
+
import {
|
|
241
|
+
ValidateAwsAssociationsCommandInput,
|
|
242
|
+
ValidateAwsAssociationsCommandOutput,
|
|
243
|
+
} from "./commands/ValidateAwsAssociationsCommand";
|
|
244
|
+
import {
|
|
245
|
+
ClientInputEndpointParameters,
|
|
246
|
+
ClientResolvedEndpointParameters,
|
|
247
|
+
EndpointParameters,
|
|
248
|
+
} from "./endpoint/EndpointParameters";
|
|
249
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
250
|
+
export { __Client };
|
|
251
|
+
export type ServiceInputTypes =
|
|
252
|
+
| AllowVendedLogDeliveryForResourceCommandInput
|
|
253
|
+
| AssociateServiceCommandInput
|
|
254
|
+
| CreateAgentSpaceCommandInput
|
|
255
|
+
| CreateBacklogTaskCommandInput
|
|
256
|
+
| CreateChatCommandInput
|
|
257
|
+
| CreatePrivateConnectionCommandInput
|
|
258
|
+
| DeleteAgentSpaceCommandInput
|
|
259
|
+
| DeletePrivateConnectionCommandInput
|
|
260
|
+
| DeregisterServiceCommandInput
|
|
261
|
+
| DescribePrivateConnectionCommandInput
|
|
262
|
+
| DescribeSupportLevelCommandInput
|
|
263
|
+
| DisableOperatorAppCommandInput
|
|
264
|
+
| DisassociateServiceCommandInput
|
|
265
|
+
| EnableOperatorAppCommandInput
|
|
266
|
+
| EndChatForCaseCommandInput
|
|
267
|
+
| GetAccountUsageCommandInput
|
|
268
|
+
| GetAgentSpaceCommandInput
|
|
269
|
+
| GetAssociationCommandInput
|
|
270
|
+
| GetBacklogTaskCommandInput
|
|
271
|
+
| GetOperatorAppCommandInput
|
|
272
|
+
| GetRecommendationCommandInput
|
|
273
|
+
| GetServiceCommandInput
|
|
274
|
+
| InitiateChatForCaseCommandInput
|
|
275
|
+
| ListAgentSpacesCommandInput
|
|
276
|
+
| ListAssociationsCommandInput
|
|
277
|
+
| ListBacklogTasksCommandInput
|
|
278
|
+
| ListChatsCommandInput
|
|
279
|
+
| ListExecutionsCommandInput
|
|
280
|
+
| ListGoalsCommandInput
|
|
281
|
+
| ListJournalRecordsCommandInput
|
|
282
|
+
| ListPendingMessagesCommandInput
|
|
283
|
+
| ListPrivateConnectionsCommandInput
|
|
284
|
+
| ListRecommendationsCommandInput
|
|
285
|
+
| ListServicesCommandInput
|
|
286
|
+
| ListTagsForResourceCommandInput
|
|
287
|
+
| ListWebhooksCommandInput
|
|
288
|
+
| RegisterServiceCommandInput
|
|
289
|
+
| SendMessageCommandInput
|
|
290
|
+
| TagResourceCommandInput
|
|
291
|
+
| UntagResourceCommandInput
|
|
292
|
+
| UpdateAgentSpaceCommandInput
|
|
293
|
+
| UpdateAssociationCommandInput
|
|
294
|
+
| UpdateBacklogTaskCommandInput
|
|
295
|
+
| UpdateGoalCommandInput
|
|
296
|
+
| UpdateOperatorAppIdpConfigCommandInput
|
|
297
|
+
| UpdatePrivateConnectionCertificateCommandInput
|
|
298
|
+
| UpdateRecommendationCommandInput
|
|
299
|
+
| ValidateAwsAssociationsCommandInput;
|
|
300
|
+
export type ServiceOutputTypes =
|
|
301
|
+
| AllowVendedLogDeliveryForResourceCommandOutput
|
|
302
|
+
| AssociateServiceCommandOutput
|
|
303
|
+
| CreateAgentSpaceCommandOutput
|
|
304
|
+
| CreateBacklogTaskCommandOutput
|
|
305
|
+
| CreateChatCommandOutput
|
|
306
|
+
| CreatePrivateConnectionCommandOutput
|
|
307
|
+
| DeleteAgentSpaceCommandOutput
|
|
308
|
+
| DeletePrivateConnectionCommandOutput
|
|
309
|
+
| DeregisterServiceCommandOutput
|
|
310
|
+
| DescribePrivateConnectionCommandOutput
|
|
311
|
+
| DescribeSupportLevelCommandOutput
|
|
312
|
+
| DisableOperatorAppCommandOutput
|
|
313
|
+
| DisassociateServiceCommandOutput
|
|
314
|
+
| EnableOperatorAppCommandOutput
|
|
315
|
+
| EndChatForCaseCommandOutput
|
|
316
|
+
| GetAccountUsageCommandOutput
|
|
317
|
+
| GetAgentSpaceCommandOutput
|
|
318
|
+
| GetAssociationCommandOutput
|
|
319
|
+
| GetBacklogTaskCommandOutput
|
|
320
|
+
| GetOperatorAppCommandOutput
|
|
321
|
+
| GetRecommendationCommandOutput
|
|
322
|
+
| GetServiceCommandOutput
|
|
323
|
+
| InitiateChatForCaseCommandOutput
|
|
324
|
+
| ListAgentSpacesCommandOutput
|
|
325
|
+
| ListAssociationsCommandOutput
|
|
326
|
+
| ListBacklogTasksCommandOutput
|
|
327
|
+
| ListChatsCommandOutput
|
|
328
|
+
| ListExecutionsCommandOutput
|
|
329
|
+
| ListGoalsCommandOutput
|
|
330
|
+
| ListJournalRecordsCommandOutput
|
|
331
|
+
| ListPendingMessagesCommandOutput
|
|
332
|
+
| ListPrivateConnectionsCommandOutput
|
|
333
|
+
| ListRecommendationsCommandOutput
|
|
334
|
+
| ListServicesCommandOutput
|
|
335
|
+
| ListTagsForResourceCommandOutput
|
|
336
|
+
| ListWebhooksCommandOutput
|
|
337
|
+
| RegisterServiceCommandOutput
|
|
338
|
+
| SendMessageCommandOutput
|
|
339
|
+
| TagResourceCommandOutput
|
|
340
|
+
| UntagResourceCommandOutput
|
|
341
|
+
| UpdateAgentSpaceCommandOutput
|
|
342
|
+
| UpdateAssociationCommandOutput
|
|
343
|
+
| UpdateBacklogTaskCommandOutput
|
|
344
|
+
| UpdateGoalCommandOutput
|
|
345
|
+
| UpdateOperatorAppIdpConfigCommandOutput
|
|
346
|
+
| UpdatePrivateConnectionCertificateCommandOutput
|
|
347
|
+
| UpdateRecommendationCommandOutput
|
|
348
|
+
| ValidateAwsAssociationsCommandOutput;
|
|
349
|
+
export interface ClientDefaults
|
|
350
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
351
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
352
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
353
|
+
urlParser?: __UrlParser;
|
|
354
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
355
|
+
streamCollector?: __StreamCollector;
|
|
356
|
+
base64Decoder?: __Decoder;
|
|
357
|
+
base64Encoder?: __Encoder;
|
|
358
|
+
utf8Decoder?: __Decoder;
|
|
359
|
+
utf8Encoder?: __Encoder;
|
|
360
|
+
runtime?: string;
|
|
361
|
+
disableHostPrefix?: boolean;
|
|
362
|
+
serviceId?: string;
|
|
363
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
364
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
365
|
+
region?: string | __Provider<string>;
|
|
366
|
+
profile?: string;
|
|
367
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
368
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
369
|
+
maxAttempts?: number | __Provider<number>;
|
|
370
|
+
retryMode?: string | __Provider<string>;
|
|
371
|
+
logger?: __Logger;
|
|
372
|
+
extensions?: RuntimeExtension[];
|
|
373
|
+
eventStreamSerdeProvider?: __EventStreamSerdeProvider;
|
|
374
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
375
|
+
}
|
|
376
|
+
export type DevOpsAgentClientConfigType = Partial<
|
|
377
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
378
|
+
> &
|
|
379
|
+
ClientDefaults &
|
|
380
|
+
UserAgentInputConfig &
|
|
381
|
+
RetryInputConfig &
|
|
382
|
+
RegionInputConfig &
|
|
383
|
+
HostHeaderInputConfig &
|
|
384
|
+
EndpointInputConfig<EndpointParameters> &
|
|
385
|
+
EventStreamSerdeInputConfig &
|
|
386
|
+
HttpAuthSchemeInputConfig &
|
|
387
|
+
ClientInputEndpointParameters;
|
|
388
|
+
export interface DevOpsAgentClientConfig extends DevOpsAgentClientConfigType {}
|
|
389
|
+
export type DevOpsAgentClientResolvedConfigType =
|
|
390
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
391
|
+
Required<ClientDefaults> &
|
|
392
|
+
RuntimeExtensionsConfig &
|
|
393
|
+
UserAgentResolvedConfig &
|
|
394
|
+
RetryResolvedConfig &
|
|
395
|
+
RegionResolvedConfig &
|
|
396
|
+
HostHeaderResolvedConfig &
|
|
397
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
398
|
+
EventStreamSerdeResolvedConfig &
|
|
399
|
+
HttpAuthSchemeResolvedConfig &
|
|
400
|
+
ClientResolvedEndpointParameters;
|
|
401
|
+
export interface DevOpsAgentClientResolvedConfig
|
|
402
|
+
extends DevOpsAgentClientResolvedConfigType {}
|
|
403
|
+
export declare class DevOpsAgentClient extends __Client<
|
|
404
|
+
__HttpHandlerOptions,
|
|
405
|
+
ServiceInputTypes,
|
|
406
|
+
ServiceOutputTypes,
|
|
407
|
+
DevOpsAgentClientResolvedConfig
|
|
408
|
+
> {
|
|
409
|
+
readonly config: DevOpsAgentClientResolvedConfig;
|
|
410
|
+
constructor(
|
|
411
|
+
...[configuration]: __CheckOptionalClientConfig<DevOpsAgentClientConfig>
|
|
412
|
+
);
|
|
413
|
+
destroy(): void;
|
|
414
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsCredentialIdentity,
|
|
3
|
+
AwsCredentialIdentityProvider,
|
|
4
|
+
HttpAuthScheme,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import { DevOpsAgentHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
7
|
+
export interface HttpAuthExtensionConfiguration {
|
|
8
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
+
setHttpAuthSchemeProvider(
|
|
11
|
+
httpAuthSchemeProvider: DevOpsAgentHttpAuthSchemeProvider
|
|
12
|
+
): void;
|
|
13
|
+
httpAuthSchemeProvider(): DevOpsAgentHttpAuthSchemeProvider;
|
|
14
|
+
setCredentials(
|
|
15
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
|
|
16
|
+
): void;
|
|
17
|
+
credentials():
|
|
18
|
+
| AwsCredentialIdentity
|
|
19
|
+
| AwsCredentialIdentityProvider
|
|
20
|
+
| undefined;
|
|
21
|
+
}
|
|
22
|
+
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
|
+
httpAuthSchemes: HttpAuthScheme[];
|
|
24
|
+
httpAuthSchemeProvider: DevOpsAgentHttpAuthSchemeProvider;
|
|
25
|
+
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
|
+
}>;
|
|
27
|
+
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
+
runtimeConfig: HttpAuthRuntimeConfig
|
|
29
|
+
) => HttpAuthExtensionConfiguration;
|
|
30
|
+
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
+
config: HttpAuthExtensionConfiguration
|
|
32
|
+
) => HttpAuthRuntimeConfig;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsSdkSigV4AuthInputConfig,
|
|
3
|
+
AwsSdkSigV4AuthResolvedConfig,
|
|
4
|
+
AwsSdkSigV4PreviouslyResolved,
|
|
5
|
+
} from "@aws-sdk/core/httpAuthSchemes";
|
|
6
|
+
import {
|
|
7
|
+
HandlerExecutionContext,
|
|
8
|
+
HttpAuthScheme,
|
|
9
|
+
HttpAuthSchemeParameters,
|
|
10
|
+
HttpAuthSchemeParametersProvider,
|
|
11
|
+
HttpAuthSchemeProvider,
|
|
12
|
+
Provider,
|
|
13
|
+
} from "@smithy/types";
|
|
14
|
+
import { DevOpsAgentClientResolvedConfig } from "../DevOpsAgentClient";
|
|
15
|
+
export interface DevOpsAgentHttpAuthSchemeParameters
|
|
16
|
+
extends HttpAuthSchemeParameters {
|
|
17
|
+
region?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface DevOpsAgentHttpAuthSchemeParametersProvider
|
|
20
|
+
extends HttpAuthSchemeParametersProvider<
|
|
21
|
+
DevOpsAgentClientResolvedConfig,
|
|
22
|
+
HandlerExecutionContext,
|
|
23
|
+
DevOpsAgentHttpAuthSchemeParameters,
|
|
24
|
+
object
|
|
25
|
+
> {}
|
|
26
|
+
export declare const defaultDevOpsAgentHttpAuthSchemeParametersProvider: (
|
|
27
|
+
config: DevOpsAgentClientResolvedConfig,
|
|
28
|
+
context: HandlerExecutionContext,
|
|
29
|
+
input: object
|
|
30
|
+
) => Promise<DevOpsAgentHttpAuthSchemeParameters>;
|
|
31
|
+
export interface DevOpsAgentHttpAuthSchemeProvider
|
|
32
|
+
extends HttpAuthSchemeProvider<DevOpsAgentHttpAuthSchemeParameters> {}
|
|
33
|
+
export declare const defaultDevOpsAgentHttpAuthSchemeProvider: DevOpsAgentHttpAuthSchemeProvider;
|
|
34
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
|
+
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
|
+
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
|
+
httpAuthSchemeProvider?: DevOpsAgentHttpAuthSchemeProvider;
|
|
38
|
+
}
|
|
39
|
+
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
+
extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
|
+
readonly authSchemePreference: Provider<string[]>;
|
|
42
|
+
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
|
+
readonly httpAuthSchemeProvider: DevOpsAgentHttpAuthSchemeProvider;
|
|
44
|
+
}
|
|
45
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
47
|
+
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DevOpsAgentClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DevOpsAgentClient";
|
|
8
|
+
import {
|
|
9
|
+
AllowVendedLogDeliveryForResourceInput,
|
|
10
|
+
AllowVendedLogDeliveryForResourceOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface AllowVendedLogDeliveryForResourceCommandInput
|
|
15
|
+
extends AllowVendedLogDeliveryForResourceInput {}
|
|
16
|
+
export interface AllowVendedLogDeliveryForResourceCommandOutput
|
|
17
|
+
extends AllowVendedLogDeliveryForResourceOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const AllowVendedLogDeliveryForResourceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: AllowVendedLogDeliveryForResourceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
AllowVendedLogDeliveryForResourceCommandInput,
|
|
24
|
+
AllowVendedLogDeliveryForResourceCommandOutput,
|
|
25
|
+
DevOpsAgentClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: AllowVendedLogDeliveryForResourceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
AllowVendedLogDeliveryForResourceCommandInput,
|
|
33
|
+
AllowVendedLogDeliveryForResourceCommandOutput,
|
|
34
|
+
DevOpsAgentClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class AllowVendedLogDeliveryForResourceCommand extends AllowVendedLogDeliveryForResourceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: AllowVendedLogDeliveryForResourceInput;
|
|
44
|
+
output: AllowVendedLogDeliveryForResourceOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: AllowVendedLogDeliveryForResourceCommandInput;
|
|
48
|
+
output: AllowVendedLogDeliveryForResourceCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DevOpsAgentClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DevOpsAgentClient";
|
|
8
|
+
import {
|
|
9
|
+
AssociateServiceInput,
|
|
10
|
+
AssociateServiceOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface AssociateServiceCommandInput extends AssociateServiceInput {}
|
|
15
|
+
export interface AssociateServiceCommandOutput
|
|
16
|
+
extends AssociateServiceOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const AssociateServiceCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: AssociateServiceCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
AssociateServiceCommandInput,
|
|
23
|
+
AssociateServiceCommandOutput,
|
|
24
|
+
DevOpsAgentClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: AssociateServiceCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
AssociateServiceCommandInput,
|
|
32
|
+
AssociateServiceCommandOutput,
|
|
33
|
+
DevOpsAgentClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class AssociateServiceCommand extends AssociateServiceCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: AssociateServiceInput;
|
|
43
|
+
output: AssociateServiceOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: AssociateServiceCommandInput;
|
|
47
|
+
output: AssociateServiceCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DevOpsAgentClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DevOpsAgentClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateAgentSpaceInput,
|
|
10
|
+
CreateAgentSpaceOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateAgentSpaceCommandInput extends CreateAgentSpaceInput {}
|
|
15
|
+
export interface CreateAgentSpaceCommandOutput
|
|
16
|
+
extends CreateAgentSpaceOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CreateAgentSpaceCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateAgentSpaceCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateAgentSpaceCommandInput,
|
|
23
|
+
CreateAgentSpaceCommandOutput,
|
|
24
|
+
DevOpsAgentClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: CreateAgentSpaceCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateAgentSpaceCommandInput,
|
|
32
|
+
CreateAgentSpaceCommandOutput,
|
|
33
|
+
DevOpsAgentClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CreateAgentSpaceCommand extends CreateAgentSpaceCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: CreateAgentSpaceInput;
|
|
43
|
+
output: CreateAgentSpaceOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: CreateAgentSpaceCommandInput;
|
|
47
|
+
output: CreateAgentSpaceCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DevOpsAgentClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DevOpsAgentClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateBacklogTaskRequest,
|
|
10
|
+
CreateBacklogTaskResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateBacklogTaskCommandInput
|
|
15
|
+
extends CreateBacklogTaskRequest {}
|
|
16
|
+
export interface CreateBacklogTaskCommandOutput
|
|
17
|
+
extends CreateBacklogTaskResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateBacklogTaskCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateBacklogTaskCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateBacklogTaskCommandInput,
|
|
24
|
+
CreateBacklogTaskCommandOutput,
|
|
25
|
+
DevOpsAgentClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateBacklogTaskCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateBacklogTaskCommandInput,
|
|
33
|
+
CreateBacklogTaskCommandOutput,
|
|
34
|
+
DevOpsAgentClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateBacklogTaskCommand extends CreateBacklogTaskCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateBacklogTaskRequest;
|
|
44
|
+
output: CreateBacklogTaskResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateBacklogTaskCommandInput;
|
|
48
|
+
output: CreateBacklogTaskCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|