@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,47 @@
|
|
|
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 { UpdateGoalRequest, UpdateGoalResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface UpdateGoalCommandInput extends UpdateGoalRequest {}
|
|
12
|
+
export interface UpdateGoalCommandOutput
|
|
13
|
+
extends UpdateGoalResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const UpdateGoalCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: UpdateGoalCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
UpdateGoalCommandInput,
|
|
20
|
+
UpdateGoalCommandOutput,
|
|
21
|
+
DevOpsAgentClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: UpdateGoalCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
UpdateGoalCommandInput,
|
|
29
|
+
UpdateGoalCommandOutput,
|
|
30
|
+
DevOpsAgentClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class UpdateGoalCommand extends UpdateGoalCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: UpdateGoalRequest;
|
|
40
|
+
output: UpdateGoalResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: UpdateGoalCommandInput;
|
|
44
|
+
output: UpdateGoalCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -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
|
+
UpdateOperatorAppIdpConfigInput,
|
|
10
|
+
UpdateOperatorAppIdpConfigOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateOperatorAppIdpConfigCommandInput
|
|
15
|
+
extends UpdateOperatorAppIdpConfigInput {}
|
|
16
|
+
export interface UpdateOperatorAppIdpConfigCommandOutput
|
|
17
|
+
extends UpdateOperatorAppIdpConfigOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateOperatorAppIdpConfigCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateOperatorAppIdpConfigCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateOperatorAppIdpConfigCommandInput,
|
|
24
|
+
UpdateOperatorAppIdpConfigCommandOutput,
|
|
25
|
+
DevOpsAgentClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateOperatorAppIdpConfigCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateOperatorAppIdpConfigCommandInput,
|
|
33
|
+
UpdateOperatorAppIdpConfigCommandOutput,
|
|
34
|
+
DevOpsAgentClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateOperatorAppIdpConfigCommand extends UpdateOperatorAppIdpConfigCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateOperatorAppIdpConfigInput;
|
|
44
|
+
output: UpdateOperatorAppIdpConfigOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateOperatorAppIdpConfigCommandInput;
|
|
48
|
+
output: UpdateOperatorAppIdpConfigCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -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
|
+
UpdatePrivateConnectionCertificateInput,
|
|
10
|
+
UpdatePrivateConnectionCertificateOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdatePrivateConnectionCertificateCommandInput
|
|
15
|
+
extends UpdatePrivateConnectionCertificateInput {}
|
|
16
|
+
export interface UpdatePrivateConnectionCertificateCommandOutput
|
|
17
|
+
extends UpdatePrivateConnectionCertificateOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdatePrivateConnectionCertificateCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdatePrivateConnectionCertificateCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdatePrivateConnectionCertificateCommandInput,
|
|
24
|
+
UpdatePrivateConnectionCertificateCommandOutput,
|
|
25
|
+
DevOpsAgentClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdatePrivateConnectionCertificateCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdatePrivateConnectionCertificateCommandInput,
|
|
33
|
+
UpdatePrivateConnectionCertificateCommandOutput,
|
|
34
|
+
DevOpsAgentClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdatePrivateConnectionCertificateCommand extends UpdatePrivateConnectionCertificateCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdatePrivateConnectionCertificateInput;
|
|
44
|
+
output: UpdatePrivateConnectionCertificateOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdatePrivateConnectionCertificateCommandInput;
|
|
48
|
+
output: UpdatePrivateConnectionCertificateCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -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
|
+
UpdateRecommendationRequest,
|
|
10
|
+
UpdateRecommendationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateRecommendationCommandInput
|
|
15
|
+
extends UpdateRecommendationRequest {}
|
|
16
|
+
export interface UpdateRecommendationCommandOutput
|
|
17
|
+
extends UpdateRecommendationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateRecommendationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateRecommendationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateRecommendationCommandInput,
|
|
24
|
+
UpdateRecommendationCommandOutput,
|
|
25
|
+
DevOpsAgentClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateRecommendationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateRecommendationCommandInput,
|
|
33
|
+
UpdateRecommendationCommandOutput,
|
|
34
|
+
DevOpsAgentClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateRecommendationCommand extends UpdateRecommendationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateRecommendationRequest;
|
|
44
|
+
output: UpdateRecommendationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateRecommendationCommandInput;
|
|
48
|
+
output: UpdateRecommendationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -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
|
+
ValidateAwsAssociationsInput,
|
|
10
|
+
ValidateAwsAssociationsOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ValidateAwsAssociationsCommandInput
|
|
15
|
+
extends ValidateAwsAssociationsInput {}
|
|
16
|
+
export interface ValidateAwsAssociationsCommandOutput
|
|
17
|
+
extends ValidateAwsAssociationsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ValidateAwsAssociationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ValidateAwsAssociationsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ValidateAwsAssociationsCommandInput,
|
|
24
|
+
ValidateAwsAssociationsCommandOutput,
|
|
25
|
+
DevOpsAgentClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ValidateAwsAssociationsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ValidateAwsAssociationsCommandInput,
|
|
33
|
+
ValidateAwsAssociationsCommandOutput,
|
|
34
|
+
DevOpsAgentClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ValidateAwsAssociationsCommand extends ValidateAwsAssociationsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ValidateAwsAssociationsInput;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ValidateAwsAssociationsCommandInput;
|
|
48
|
+
output: ValidateAwsAssociationsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
export * from "./AllowVendedLogDeliveryForResourceCommand";
|
|
2
|
+
export * from "./AssociateServiceCommand";
|
|
3
|
+
export * from "./CreateAgentSpaceCommand";
|
|
4
|
+
export * from "./CreateBacklogTaskCommand";
|
|
5
|
+
export * from "./CreateChatCommand";
|
|
6
|
+
export * from "./CreatePrivateConnectionCommand";
|
|
7
|
+
export * from "./DeleteAgentSpaceCommand";
|
|
8
|
+
export * from "./DeletePrivateConnectionCommand";
|
|
9
|
+
export * from "./DeregisterServiceCommand";
|
|
10
|
+
export * from "./DescribePrivateConnectionCommand";
|
|
11
|
+
export * from "./DescribeSupportLevelCommand";
|
|
12
|
+
export * from "./DisableOperatorAppCommand";
|
|
13
|
+
export * from "./DisassociateServiceCommand";
|
|
14
|
+
export * from "./EnableOperatorAppCommand";
|
|
15
|
+
export * from "./EndChatForCaseCommand";
|
|
16
|
+
export * from "./GetAccountUsageCommand";
|
|
17
|
+
export * from "./GetAgentSpaceCommand";
|
|
18
|
+
export * from "./GetAssociationCommand";
|
|
19
|
+
export * from "./GetBacklogTaskCommand";
|
|
20
|
+
export * from "./GetOperatorAppCommand";
|
|
21
|
+
export * from "./GetRecommendationCommand";
|
|
22
|
+
export * from "./GetServiceCommand";
|
|
23
|
+
export * from "./InitiateChatForCaseCommand";
|
|
24
|
+
export * from "./ListAgentSpacesCommand";
|
|
25
|
+
export * from "./ListAssociationsCommand";
|
|
26
|
+
export * from "./ListBacklogTasksCommand";
|
|
27
|
+
export * from "./ListChatsCommand";
|
|
28
|
+
export * from "./ListExecutionsCommand";
|
|
29
|
+
export * from "./ListGoalsCommand";
|
|
30
|
+
export * from "./ListJournalRecordsCommand";
|
|
31
|
+
export * from "./ListPendingMessagesCommand";
|
|
32
|
+
export * from "./ListPrivateConnectionsCommand";
|
|
33
|
+
export * from "./ListRecommendationsCommand";
|
|
34
|
+
export * from "./ListServicesCommand";
|
|
35
|
+
export * from "./ListTagsForResourceCommand";
|
|
36
|
+
export * from "./ListWebhooksCommand";
|
|
37
|
+
export * from "./RegisterServiceCommand";
|
|
38
|
+
export * from "./SendMessageCommand";
|
|
39
|
+
export * from "./TagResourceCommand";
|
|
40
|
+
export * from "./UntagResourceCommand";
|
|
41
|
+
export * from "./UpdateAgentSpaceCommand";
|
|
42
|
+
export * from "./UpdateAssociationCommand";
|
|
43
|
+
export * from "./UpdateBacklogTaskCommand";
|
|
44
|
+
export * from "./UpdateGoalCommand";
|
|
45
|
+
export * from "./UpdateOperatorAppIdpConfigCommand";
|
|
46
|
+
export * from "./UpdatePrivateConnectionCertificateCommand";
|
|
47
|
+
export * from "./UpdateRecommendationCommand";
|
|
48
|
+
export * from "./ValidateAwsAssociationsCommand";
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
|
|
9
|
+
endpoint?:
|
|
10
|
+
| string
|
|
11
|
+
| Provider<string>
|
|
12
|
+
| Endpoint
|
|
13
|
+
| Provider<Endpoint>
|
|
14
|
+
| EndpointV2
|
|
15
|
+
| Provider<EndpointV2>;
|
|
16
|
+
region?: string | undefined | Provider<string | undefined>;
|
|
17
|
+
}
|
|
18
|
+
export type ClientResolvedEndpointParameters = Pick<
|
|
19
|
+
ClientInputEndpointParameters,
|
|
20
|
+
Exclude<keyof ClientInputEndpointParameters, "endpoint">
|
|
21
|
+
> & {
|
|
22
|
+
defaultSigningName: string;
|
|
23
|
+
};
|
|
24
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
25
|
+
options: T & ClientInputEndpointParameters
|
|
26
|
+
) => T & ClientResolvedEndpointParameters;
|
|
27
|
+
export declare const commonParams: {
|
|
28
|
+
readonly UseFIPS: {
|
|
29
|
+
readonly type: "builtInParams";
|
|
30
|
+
readonly name: "useFipsEndpoint";
|
|
31
|
+
};
|
|
32
|
+
readonly Endpoint: {
|
|
33
|
+
readonly type: "builtInParams";
|
|
34
|
+
readonly name: "endpoint";
|
|
35
|
+
};
|
|
36
|
+
readonly Region: {
|
|
37
|
+
readonly type: "builtInParams";
|
|
38
|
+
readonly name: "region";
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
42
|
+
UseFIPS?: boolean | undefined;
|
|
43
|
+
Endpoint?: string | undefined;
|
|
44
|
+
Region?: string | undefined;
|
|
45
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
|
+
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
+
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
|
+
export interface DevOpsAgentExtensionConfiguration
|
|
6
|
+
extends HttpHandlerExtensionConfiguration,
|
|
7
|
+
DefaultExtensionConfiguration,
|
|
8
|
+
AwsRegionExtensionConfiguration,
|
|
9
|
+
HttpAuthExtensionConfiguration {}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from "./DevOpsAgentClient";
|
|
2
|
+
export * from "./DevOpsAgent";
|
|
3
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
|
+
export { DevOpsAgentExtensionConfiguration } from "./extensionConfiguration";
|
|
6
|
+
export * from "./commands";
|
|
7
|
+
export * from "./schemas/schemas_0";
|
|
8
|
+
export * from "./pagination";
|
|
9
|
+
export * from "./models/enums";
|
|
10
|
+
export * from "./models/errors";
|
|
11
|
+
export * from "./models/models_0";
|
|
12
|
+
export { DevOpsAgentServiceException } from "./models/DevOpsAgentServiceException";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
3
|
+
ServiceException as __ServiceException,
|
|
4
|
+
} from "@smithy/smithy-client";
|
|
5
|
+
export { __ServiceExceptionOptions };
|
|
6
|
+
export { __ServiceException };
|
|
7
|
+
export declare class DevOpsAgentServiceException extends __ServiceException {
|
|
8
|
+
constructor(options: __ServiceExceptionOptions);
|
|
9
|
+
}
|
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
export declare const GithubRepoOwnerType: {
|
|
2
|
+
readonly ORGANIZATION: "organization";
|
|
3
|
+
readonly USER: "user";
|
|
4
|
+
};
|
|
5
|
+
export type GithubRepoOwnerType =
|
|
6
|
+
(typeof GithubRepoOwnerType)[keyof typeof GithubRepoOwnerType];
|
|
7
|
+
export declare const GitLabTokenType: {
|
|
8
|
+
readonly GROUP: "group";
|
|
9
|
+
readonly PERSONAL: "personal";
|
|
10
|
+
};
|
|
11
|
+
export type GitLabTokenType =
|
|
12
|
+
(typeof GitLabTokenType)[keyof typeof GitLabTokenType];
|
|
13
|
+
export declare const MCPServerAuthorizationMethod: {
|
|
14
|
+
readonly API_KEY: "api-key";
|
|
15
|
+
readonly BEARER_TOKEN: "bearer-token";
|
|
16
|
+
readonly OAUTH_3LO: "oauth-3lo";
|
|
17
|
+
readonly OAUTH_CLIENT_CREDENTIALS: "oauth-client-credentials";
|
|
18
|
+
};
|
|
19
|
+
export type MCPServerAuthorizationMethod =
|
|
20
|
+
(typeof MCPServerAuthorizationMethod)[keyof typeof MCPServerAuthorizationMethod];
|
|
21
|
+
export declare const NewRelicRegion: {
|
|
22
|
+
readonly EU: "EU";
|
|
23
|
+
readonly US: "US";
|
|
24
|
+
};
|
|
25
|
+
export type NewRelicRegion =
|
|
26
|
+
(typeof NewRelicRegion)[keyof typeof NewRelicRegion];
|
|
27
|
+
export declare const MonitorAccountType: {
|
|
28
|
+
readonly MONITOR: "monitor";
|
|
29
|
+
};
|
|
30
|
+
export type MonitorAccountType =
|
|
31
|
+
(typeof MonitorAccountType)[keyof typeof MonitorAccountType];
|
|
32
|
+
export declare const SourceAccountType: {
|
|
33
|
+
readonly SOURCE: "source";
|
|
34
|
+
};
|
|
35
|
+
export type SourceAccountType =
|
|
36
|
+
(typeof SourceAccountType)[keyof typeof SourceAccountType];
|
|
37
|
+
export declare const ValidationStatus: {
|
|
38
|
+
readonly INVALID: "invalid";
|
|
39
|
+
readonly PENDING_CONFIRMATION: "pending-confirmation";
|
|
40
|
+
readonly VALID: "valid";
|
|
41
|
+
};
|
|
42
|
+
export type ValidationStatus =
|
|
43
|
+
(typeof ValidationStatus)[keyof typeof ValidationStatus];
|
|
44
|
+
export declare const WebhookType: {
|
|
45
|
+
readonly API_KEY: "apikey";
|
|
46
|
+
readonly GITLAB: "gitlab";
|
|
47
|
+
readonly HMAC: "hmac";
|
|
48
|
+
readonly PAGERDUTY: "pagerduty";
|
|
49
|
+
};
|
|
50
|
+
export type WebhookType = (typeof WebhookType)[keyof typeof WebhookType];
|
|
51
|
+
export declare const AuthFlow: {
|
|
52
|
+
readonly IAM: "iam";
|
|
53
|
+
readonly IDC: "idc";
|
|
54
|
+
readonly IDP: "idp";
|
|
55
|
+
};
|
|
56
|
+
export type AuthFlow = (typeof AuthFlow)[keyof typeof AuthFlow];
|
|
57
|
+
export declare const Priority: {
|
|
58
|
+
readonly CRITICAL: "CRITICAL";
|
|
59
|
+
readonly HIGH: "HIGH";
|
|
60
|
+
readonly LOW: "LOW";
|
|
61
|
+
readonly MEDIUM: "MEDIUM";
|
|
62
|
+
readonly MINIMAL: "MINIMAL";
|
|
63
|
+
};
|
|
64
|
+
export type Priority = (typeof Priority)[keyof typeof Priority];
|
|
65
|
+
export declare const TaskType: {
|
|
66
|
+
readonly EVALUATION: "EVALUATION";
|
|
67
|
+
readonly INVESTIGATION: "INVESTIGATION";
|
|
68
|
+
};
|
|
69
|
+
export type TaskType = (typeof TaskType)[keyof typeof TaskType];
|
|
70
|
+
export declare const TaskStatus: {
|
|
71
|
+
readonly CANCELED: "CANCELED";
|
|
72
|
+
readonly COMPLETED: "COMPLETED";
|
|
73
|
+
readonly FAILED: "FAILED";
|
|
74
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
75
|
+
readonly LINKED: "LINKED";
|
|
76
|
+
readonly PENDING_CUSTOMER_APPROVAL: "PENDING_CUSTOMER_APPROVAL";
|
|
77
|
+
readonly PENDING_START: "PENDING_START";
|
|
78
|
+
readonly PENDING_TRIAGE: "PENDING_TRIAGE";
|
|
79
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
80
|
+
};
|
|
81
|
+
export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
82
|
+
export declare const UserType: {
|
|
83
|
+
readonly IAM: "IAM";
|
|
84
|
+
readonly IDC: "IDC";
|
|
85
|
+
readonly IDP: "IDP";
|
|
86
|
+
};
|
|
87
|
+
export type UserType = (typeof UserType)[keyof typeof UserType];
|
|
88
|
+
export declare const IpAddressType: {
|
|
89
|
+
readonly DUAL_STACK: "DUAL_STACK";
|
|
90
|
+
readonly IPV4: "IPV4";
|
|
91
|
+
readonly IPV6: "IPV6";
|
|
92
|
+
};
|
|
93
|
+
export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
|
|
94
|
+
export declare const PrivateConnectionStatus: {
|
|
95
|
+
readonly ACTIVE: "ACTIVE";
|
|
96
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
97
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
98
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
99
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
100
|
+
};
|
|
101
|
+
export type PrivateConnectionStatus =
|
|
102
|
+
(typeof PrivateConnectionStatus)[keyof typeof PrivateConnectionStatus];
|
|
103
|
+
export declare const PrivateConnectionType: {
|
|
104
|
+
readonly SELF_MANAGED: "SELF_MANAGED";
|
|
105
|
+
readonly SERVICE_MANAGED: "SERVICE_MANAGED";
|
|
106
|
+
};
|
|
107
|
+
export type PrivateConnectionType =
|
|
108
|
+
(typeof PrivateConnectionType)[keyof typeof PrivateConnectionType];
|
|
109
|
+
export declare const RecommendationPriority: {
|
|
110
|
+
readonly HIGH: "HIGH";
|
|
111
|
+
readonly LOW: "LOW";
|
|
112
|
+
readonly MEDIUM: "MEDIUM";
|
|
113
|
+
};
|
|
114
|
+
export type RecommendationPriority =
|
|
115
|
+
(typeof RecommendationPriority)[keyof typeof RecommendationPriority];
|
|
116
|
+
export declare const RecommendationStatus: {
|
|
117
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
118
|
+
readonly CLOSED: "CLOSED";
|
|
119
|
+
readonly COMPLETED: "COMPLETED";
|
|
120
|
+
readonly PROPOSED: "PROPOSED";
|
|
121
|
+
readonly REJECTED: "REJECTED";
|
|
122
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
123
|
+
};
|
|
124
|
+
export type RecommendationStatus =
|
|
125
|
+
(typeof RecommendationStatus)[keyof typeof RecommendationStatus];
|
|
126
|
+
export declare const TaskSortOrder: {
|
|
127
|
+
readonly ASC: "ASC";
|
|
128
|
+
readonly DESC: "DESC";
|
|
129
|
+
};
|
|
130
|
+
export type TaskSortOrder = (typeof TaskSortOrder)[keyof typeof TaskSortOrder];
|
|
131
|
+
export declare const TaskSortField: {
|
|
132
|
+
readonly CREATED_AT: "CREATED_AT";
|
|
133
|
+
readonly PRIORITY: "PRIORITY";
|
|
134
|
+
};
|
|
135
|
+
export type TaskSortField = (typeof TaskSortField)[keyof typeof TaskSortField];
|
|
136
|
+
export declare const ExecutionStatus: {
|
|
137
|
+
readonly CANCELED: "CANCELED";
|
|
138
|
+
readonly FAILED: "FAILED";
|
|
139
|
+
readonly RUNNING: "RUNNING";
|
|
140
|
+
readonly STOPPED: "STOPPED";
|
|
141
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
142
|
+
};
|
|
143
|
+
export type ExecutionStatus =
|
|
144
|
+
(typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
145
|
+
export declare const GoalType: {
|
|
146
|
+
readonly CUSTOMER_DEFINED: "CUSTOMER_DEFINED";
|
|
147
|
+
readonly ONCALL_REPORT: "ONCALL_REPORT";
|
|
148
|
+
};
|
|
149
|
+
export type GoalType = (typeof GoalType)[keyof typeof GoalType];
|
|
150
|
+
export declare const GoalStatus: {
|
|
151
|
+
readonly ACTIVE: "ACTIVE";
|
|
152
|
+
readonly COMPLETE: "COMPLETE";
|
|
153
|
+
readonly PAUSED: "PAUSED";
|
|
154
|
+
};
|
|
155
|
+
export type GoalStatus = (typeof GoalStatus)[keyof typeof GoalStatus];
|
|
156
|
+
export declare const SchedulerState: {
|
|
157
|
+
readonly DISABLED: "DISABLED";
|
|
158
|
+
readonly ENABLED: "ENABLED";
|
|
159
|
+
};
|
|
160
|
+
export type SchedulerState =
|
|
161
|
+
(typeof SchedulerState)[keyof typeof SchedulerState];
|
|
162
|
+
export declare const OrderType: {
|
|
163
|
+
readonly ASC: "ASC";
|
|
164
|
+
readonly DESC: "DESC";
|
|
165
|
+
};
|
|
166
|
+
export type OrderType = (typeof OrderType)[keyof typeof OrderType];
|
|
167
|
+
export declare const Service: {
|
|
168
|
+
readonly AZURE: "azure";
|
|
169
|
+
readonly AZURE_DEVOPS: "azuredevops";
|
|
170
|
+
readonly AZURE_IDENTITY: "azureidentity";
|
|
171
|
+
readonly DYNATRACE: "dynatrace";
|
|
172
|
+
readonly EVENTCHANNEL: "eventChannel";
|
|
173
|
+
readonly GITHUB: "github";
|
|
174
|
+
readonly GITLAB: "gitlab";
|
|
175
|
+
readonly MCP_SERVER: "mcpserver";
|
|
176
|
+
readonly MCP_SERVER_DATADOG: "mcpserverdatadog";
|
|
177
|
+
readonly MCP_SERVER_GRAFANA: "mcpservergrafana";
|
|
178
|
+
readonly MCP_SERVER_NEWRELIC: "mcpservernewrelic";
|
|
179
|
+
readonly MCP_SERVER_SIGV4: "mcpserversigv4";
|
|
180
|
+
readonly MCP_SERVER_SPLUNK: "mcpserversplunk";
|
|
181
|
+
readonly MS_TEAMS: "msteams";
|
|
182
|
+
readonly PAGERDUTY: "pagerduty";
|
|
183
|
+
readonly SERVICENOW: "servicenow";
|
|
184
|
+
readonly SLACK: "slack";
|
|
185
|
+
};
|
|
186
|
+
export type Service = (typeof Service)[keyof typeof Service];
|
|
187
|
+
export declare const PostRegisterServiceSupportedService: {
|
|
188
|
+
readonly AZURE_IDENTITY: "azureidentity";
|
|
189
|
+
readonly DYNATRACE: "dynatrace";
|
|
190
|
+
readonly EVENTCHANNEL: "eventChannel";
|
|
191
|
+
readonly GITLAB: "gitlab";
|
|
192
|
+
readonly MCP_SERVER: "mcpserver";
|
|
193
|
+
readonly MCP_SERVER_DATADOG: "mcpserverdatadog";
|
|
194
|
+
readonly MCP_SERVER_GRAFANA: "mcpservergrafana";
|
|
195
|
+
readonly MCP_SERVER_NEWRELIC: "mcpservernewrelic";
|
|
196
|
+
readonly MCP_SERVER_SIGV4: "mcpserversigv4";
|
|
197
|
+
readonly MCP_SERVER_SPLUNK: "mcpserversplunk";
|
|
198
|
+
readonly PAGERDUTY: "pagerduty";
|
|
199
|
+
readonly SERVICENOW: "servicenow";
|
|
200
|
+
};
|
|
201
|
+
export type PostRegisterServiceSupportedService =
|
|
202
|
+
(typeof PostRegisterServiceSupportedService)[keyof typeof PostRegisterServiceSupportedService];
|
|
203
|
+
export declare const EventChannelType: {
|
|
204
|
+
readonly WEBHOOK: "webhook";
|
|
205
|
+
};
|
|
206
|
+
export type EventChannelType =
|
|
207
|
+
(typeof EventChannelType)[keyof typeof EventChannelType];
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { DevOpsAgentServiceException as __BaseException } from "./DevOpsAgentServiceException";
|
|
3
|
+
import { ValidationExceptionField } from "./models_0";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class ConflictException extends __BaseException {
|
|
12
|
+
readonly name: "ConflictException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
export declare class ContentSizeExceededException extends __BaseException {
|
|
17
|
+
readonly name: "ContentSizeExceededException";
|
|
18
|
+
readonly $fault: "client";
|
|
19
|
+
constructor(
|
|
20
|
+
opts: __ExceptionOptionType<ContentSizeExceededException, __BaseException>
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
export declare class InternalServerException extends __BaseException {
|
|
24
|
+
readonly name: "InternalServerException";
|
|
25
|
+
readonly $fault: "server";
|
|
26
|
+
$retryable: {};
|
|
27
|
+
constructor(
|
|
28
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
32
|
+
readonly name: "InvalidParameterException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
constructor(
|
|
35
|
+
opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
39
|
+
readonly name: "ResourceNotFoundException";
|
|
40
|
+
readonly $fault: "client";
|
|
41
|
+
constructor(
|
|
42
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
46
|
+
readonly name: "ServiceQuotaExceededException";
|
|
47
|
+
readonly $fault: "client";
|
|
48
|
+
constructor(
|
|
49
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
50
|
+
);
|
|
51
|
+
}
|
|
52
|
+
export declare class ThrottlingException extends __BaseException {
|
|
53
|
+
readonly name: "ThrottlingException";
|
|
54
|
+
readonly $fault: "client";
|
|
55
|
+
$retryable: {};
|
|
56
|
+
constructor(
|
|
57
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
58
|
+
);
|
|
59
|
+
}
|
|
60
|
+
export declare class ValidationException extends __BaseException {
|
|
61
|
+
readonly name: "ValidationException";
|
|
62
|
+
readonly $fault: "client";
|
|
63
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
64
|
+
constructor(
|
|
65
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
66
|
+
);
|
|
67
|
+
}
|
|
68
|
+
export declare class IdentityCenterServiceException extends __BaseException {
|
|
69
|
+
readonly name: "IdentityCenterServiceException";
|
|
70
|
+
readonly $fault: "client";
|
|
71
|
+
underlyingErrorCode?: string | undefined;
|
|
72
|
+
constructor(
|
|
73
|
+
opts: __ExceptionOptionType<IdentityCenterServiceException, __BaseException>
|
|
74
|
+
);
|
|
75
|
+
}
|