@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,631 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const GithubRepoOwnerType: {
|
|
6
|
+
/**
|
|
7
|
+
* Repository owned by a GitHub organization.
|
|
8
|
+
*/
|
|
9
|
+
readonly ORGANIZATION: "organization";
|
|
10
|
+
/**
|
|
11
|
+
* Repository owned by an individual GitHub user.
|
|
12
|
+
*/
|
|
13
|
+
readonly USER: "user";
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
export type GithubRepoOwnerType = (typeof GithubRepoOwnerType)[keyof typeof GithubRepoOwnerType];
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
* @enum
|
|
22
|
+
*/
|
|
23
|
+
export declare const GitLabTokenType: {
|
|
24
|
+
/**
|
|
25
|
+
* Group access token
|
|
26
|
+
*/
|
|
27
|
+
readonly GROUP: "group";
|
|
28
|
+
/**
|
|
29
|
+
* Personal access token
|
|
30
|
+
*/
|
|
31
|
+
readonly PERSONAL: "personal";
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
export type GitLabTokenType = (typeof GitLabTokenType)[keyof typeof GitLabTokenType];
|
|
37
|
+
/**
|
|
38
|
+
* @public
|
|
39
|
+
* @enum
|
|
40
|
+
*/
|
|
41
|
+
export declare const MCPServerAuthorizationMethod: {
|
|
42
|
+
/**
|
|
43
|
+
* API key-based authentication.
|
|
44
|
+
*/
|
|
45
|
+
readonly API_KEY: "api-key";
|
|
46
|
+
/**
|
|
47
|
+
* Bearer token authentication (RFC 6750).
|
|
48
|
+
*/
|
|
49
|
+
readonly BEARER_TOKEN: "bearer-token";
|
|
50
|
+
/**
|
|
51
|
+
* OAuth 2.0 three-legged authorization flow.
|
|
52
|
+
*/
|
|
53
|
+
readonly OAUTH_3LO: "oauth-3lo";
|
|
54
|
+
/**
|
|
55
|
+
* OAuth 2.0 client credentials flow.
|
|
56
|
+
*/
|
|
57
|
+
readonly OAUTH_CLIENT_CREDENTIALS: "oauth-client-credentials";
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
export type MCPServerAuthorizationMethod = (typeof MCPServerAuthorizationMethod)[keyof typeof MCPServerAuthorizationMethod];
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
* @enum
|
|
66
|
+
*/
|
|
67
|
+
export declare const NewRelicRegion: {
|
|
68
|
+
/**
|
|
69
|
+
* EU region
|
|
70
|
+
*/
|
|
71
|
+
readonly EU: "EU";
|
|
72
|
+
/**
|
|
73
|
+
* US region
|
|
74
|
+
*/
|
|
75
|
+
readonly US: "US";
|
|
76
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
export type NewRelicRegion = (typeof NewRelicRegion)[keyof typeof NewRelicRegion];
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
* @enum
|
|
84
|
+
*/
|
|
85
|
+
export declare const MonitorAccountType: {
|
|
86
|
+
readonly MONITOR: "monitor";
|
|
87
|
+
};
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
export type MonitorAccountType = (typeof MonitorAccountType)[keyof typeof MonitorAccountType];
|
|
92
|
+
/**
|
|
93
|
+
* @public
|
|
94
|
+
* @enum
|
|
95
|
+
*/
|
|
96
|
+
export declare const SourceAccountType: {
|
|
97
|
+
readonly SOURCE: "source";
|
|
98
|
+
};
|
|
99
|
+
/**
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
export type SourceAccountType = (typeof SourceAccountType)[keyof typeof SourceAccountType];
|
|
103
|
+
/**
|
|
104
|
+
* @public
|
|
105
|
+
* @enum
|
|
106
|
+
*/
|
|
107
|
+
export declare const ValidationStatus: {
|
|
108
|
+
/**
|
|
109
|
+
* The association has failed validation and requires attention.
|
|
110
|
+
*/
|
|
111
|
+
readonly INVALID: "invalid";
|
|
112
|
+
/**
|
|
113
|
+
* The association is awaiting user confirmation before validation can be completed.
|
|
114
|
+
*/
|
|
115
|
+
readonly PENDING_CONFIRMATION: "pending-confirmation";
|
|
116
|
+
/**
|
|
117
|
+
* The association has been validated and is functioning correctly.
|
|
118
|
+
*/
|
|
119
|
+
readonly VALID: "valid";
|
|
120
|
+
};
|
|
121
|
+
/**
|
|
122
|
+
* @public
|
|
123
|
+
*/
|
|
124
|
+
export type ValidationStatus = (typeof ValidationStatus)[keyof typeof ValidationStatus];
|
|
125
|
+
/**
|
|
126
|
+
* @public
|
|
127
|
+
* @enum
|
|
128
|
+
*/
|
|
129
|
+
export declare const WebhookType: {
|
|
130
|
+
/**
|
|
131
|
+
* API key-based webhook authentication
|
|
132
|
+
*/
|
|
133
|
+
readonly API_KEY: "apikey";
|
|
134
|
+
/**
|
|
135
|
+
* GitLab-specific webhook authentication
|
|
136
|
+
*/
|
|
137
|
+
readonly GITLAB: "gitlab";
|
|
138
|
+
/**
|
|
139
|
+
* HMAC-based webhook authentication
|
|
140
|
+
*/
|
|
141
|
+
readonly HMAC: "hmac";
|
|
142
|
+
/**
|
|
143
|
+
* pagerduty-specific webhook authentication
|
|
144
|
+
*/
|
|
145
|
+
readonly PAGERDUTY: "pagerduty";
|
|
146
|
+
};
|
|
147
|
+
/**
|
|
148
|
+
* @public
|
|
149
|
+
*/
|
|
150
|
+
export type WebhookType = (typeof WebhookType)[keyof typeof WebhookType];
|
|
151
|
+
/**
|
|
152
|
+
* @public
|
|
153
|
+
* @enum
|
|
154
|
+
*/
|
|
155
|
+
export declare const AuthFlow: {
|
|
156
|
+
/**
|
|
157
|
+
* IAM-based authentication flow
|
|
158
|
+
*/
|
|
159
|
+
readonly IAM: "iam";
|
|
160
|
+
/**
|
|
161
|
+
* Identity Center (IdC) authentication flow
|
|
162
|
+
*/
|
|
163
|
+
readonly IDC: "idc";
|
|
164
|
+
/**
|
|
165
|
+
* Identity Provider (IdP) authentication flow
|
|
166
|
+
*/
|
|
167
|
+
readonly IDP: "idp";
|
|
168
|
+
};
|
|
169
|
+
/**
|
|
170
|
+
* @public
|
|
171
|
+
*/
|
|
172
|
+
export type AuthFlow = (typeof AuthFlow)[keyof typeof AuthFlow];
|
|
173
|
+
/**
|
|
174
|
+
* @public
|
|
175
|
+
* @enum
|
|
176
|
+
*/
|
|
177
|
+
export declare const Priority: {
|
|
178
|
+
/**
|
|
179
|
+
* Highest priority
|
|
180
|
+
*/
|
|
181
|
+
readonly CRITICAL: "CRITICAL";
|
|
182
|
+
/**
|
|
183
|
+
* High priority
|
|
184
|
+
*/
|
|
185
|
+
readonly HIGH: "HIGH";
|
|
186
|
+
/**
|
|
187
|
+
* Low priority
|
|
188
|
+
*/
|
|
189
|
+
readonly LOW: "LOW";
|
|
190
|
+
/**
|
|
191
|
+
* Medium priority
|
|
192
|
+
*/
|
|
193
|
+
readonly MEDIUM: "MEDIUM";
|
|
194
|
+
/**
|
|
195
|
+
* Minimal priority
|
|
196
|
+
*/
|
|
197
|
+
readonly MINIMAL: "MINIMAL";
|
|
198
|
+
};
|
|
199
|
+
/**
|
|
200
|
+
* @public
|
|
201
|
+
*/
|
|
202
|
+
export type Priority = (typeof Priority)[keyof typeof Priority];
|
|
203
|
+
/**
|
|
204
|
+
* @public
|
|
205
|
+
* @enum
|
|
206
|
+
*/
|
|
207
|
+
export declare const TaskType: {
|
|
208
|
+
/**
|
|
209
|
+
* Task for evaluating options or solutions (not in use)
|
|
210
|
+
*/
|
|
211
|
+
readonly EVALUATION: "EVALUATION";
|
|
212
|
+
/**
|
|
213
|
+
* Task for investigating issues or requirements
|
|
214
|
+
*/
|
|
215
|
+
readonly INVESTIGATION: "INVESTIGATION";
|
|
216
|
+
};
|
|
217
|
+
/**
|
|
218
|
+
* @public
|
|
219
|
+
*/
|
|
220
|
+
export type TaskType = (typeof TaskType)[keyof typeof TaskType];
|
|
221
|
+
/**
|
|
222
|
+
* @public
|
|
223
|
+
* @enum
|
|
224
|
+
*/
|
|
225
|
+
export declare const TaskStatus: {
|
|
226
|
+
/**
|
|
227
|
+
* Task has been canceled
|
|
228
|
+
*/
|
|
229
|
+
readonly CANCELED: "CANCELED";
|
|
230
|
+
/**
|
|
231
|
+
* Task has been completed successfully
|
|
232
|
+
*/
|
|
233
|
+
readonly COMPLETED: "COMPLETED";
|
|
234
|
+
/**
|
|
235
|
+
* Task has failed
|
|
236
|
+
*/
|
|
237
|
+
readonly FAILED: "FAILED";
|
|
238
|
+
/**
|
|
239
|
+
* Task is currently being worked on
|
|
240
|
+
*/
|
|
241
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
242
|
+
/**
|
|
243
|
+
* Task has been linked to another task
|
|
244
|
+
*/
|
|
245
|
+
readonly LINKED: "LINKED";
|
|
246
|
+
/**
|
|
247
|
+
* Task is completed but awaiting customer approval (not in use)
|
|
248
|
+
*/
|
|
249
|
+
readonly PENDING_CUSTOMER_APPROVAL: "PENDING_CUSTOMER_APPROVAL";
|
|
250
|
+
/**
|
|
251
|
+
* Task is created but not yet started
|
|
252
|
+
*/
|
|
253
|
+
readonly PENDING_START: "PENDING_START";
|
|
254
|
+
/**
|
|
255
|
+
* Task is awaiting triage analysis
|
|
256
|
+
*/
|
|
257
|
+
readonly PENDING_TRIAGE: "PENDING_TRIAGE";
|
|
258
|
+
/**
|
|
259
|
+
* Task has exceeded its time limit
|
|
260
|
+
*/
|
|
261
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
262
|
+
};
|
|
263
|
+
/**
|
|
264
|
+
* @public
|
|
265
|
+
*/
|
|
266
|
+
export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
|
|
267
|
+
/**
|
|
268
|
+
* @public
|
|
269
|
+
* @enum
|
|
270
|
+
*/
|
|
271
|
+
export declare const UserType: {
|
|
272
|
+
/**
|
|
273
|
+
* AWS IAM user type
|
|
274
|
+
*/
|
|
275
|
+
readonly IAM: "IAM";
|
|
276
|
+
/**
|
|
277
|
+
* AWS IAM Identity Center user type
|
|
278
|
+
*/
|
|
279
|
+
readonly IDC: "IDC";
|
|
280
|
+
/**
|
|
281
|
+
* External Identity Provider user type
|
|
282
|
+
*/
|
|
283
|
+
readonly IDP: "IDP";
|
|
284
|
+
};
|
|
285
|
+
/**
|
|
286
|
+
* @public
|
|
287
|
+
*/
|
|
288
|
+
export type UserType = (typeof UserType)[keyof typeof UserType];
|
|
289
|
+
/**
|
|
290
|
+
* @public
|
|
291
|
+
* @enum
|
|
292
|
+
*/
|
|
293
|
+
export declare const IpAddressType: {
|
|
294
|
+
readonly DUAL_STACK: "DUAL_STACK";
|
|
295
|
+
readonly IPV4: "IPV4";
|
|
296
|
+
readonly IPV6: "IPV6";
|
|
297
|
+
};
|
|
298
|
+
/**
|
|
299
|
+
* @public
|
|
300
|
+
*/
|
|
301
|
+
export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
|
|
302
|
+
/**
|
|
303
|
+
* @public
|
|
304
|
+
* @enum
|
|
305
|
+
*/
|
|
306
|
+
export declare const PrivateConnectionStatus: {
|
|
307
|
+
readonly ACTIVE: "ACTIVE";
|
|
308
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
309
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
310
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
311
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
312
|
+
};
|
|
313
|
+
/**
|
|
314
|
+
* @public
|
|
315
|
+
*/
|
|
316
|
+
export type PrivateConnectionStatus = (typeof PrivateConnectionStatus)[keyof typeof PrivateConnectionStatus];
|
|
317
|
+
/**
|
|
318
|
+
* @public
|
|
319
|
+
* @enum
|
|
320
|
+
*/
|
|
321
|
+
export declare const PrivateConnectionType: {
|
|
322
|
+
readonly SELF_MANAGED: "SELF_MANAGED";
|
|
323
|
+
readonly SERVICE_MANAGED: "SERVICE_MANAGED";
|
|
324
|
+
};
|
|
325
|
+
/**
|
|
326
|
+
* @public
|
|
327
|
+
*/
|
|
328
|
+
export type PrivateConnectionType = (typeof PrivateConnectionType)[keyof typeof PrivateConnectionType];
|
|
329
|
+
/**
|
|
330
|
+
* @public
|
|
331
|
+
* @enum
|
|
332
|
+
*/
|
|
333
|
+
export declare const RecommendationPriority: {
|
|
334
|
+
/**
|
|
335
|
+
* High priority recommendation requiring immediate attention
|
|
336
|
+
*/
|
|
337
|
+
readonly HIGH: "HIGH";
|
|
338
|
+
/**
|
|
339
|
+
* Low priority recommendation that can be addressed later
|
|
340
|
+
*/
|
|
341
|
+
readonly LOW: "LOW";
|
|
342
|
+
/**
|
|
343
|
+
* Medium priority recommendation for normal processing
|
|
344
|
+
*/
|
|
345
|
+
readonly MEDIUM: "MEDIUM";
|
|
346
|
+
};
|
|
347
|
+
/**
|
|
348
|
+
* @public
|
|
349
|
+
*/
|
|
350
|
+
export type RecommendationPriority = (typeof RecommendationPriority)[keyof typeof RecommendationPriority];
|
|
351
|
+
/**
|
|
352
|
+
* @public
|
|
353
|
+
* @enum
|
|
354
|
+
*/
|
|
355
|
+
export declare const RecommendationStatus: {
|
|
356
|
+
/**
|
|
357
|
+
* Recommendation has been accepted by the user
|
|
358
|
+
*/
|
|
359
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
360
|
+
/**
|
|
361
|
+
* Recommendation has been closed and is no longer relevant
|
|
362
|
+
*/
|
|
363
|
+
readonly CLOSED: "CLOSED";
|
|
364
|
+
/**
|
|
365
|
+
* Recommendation has been completed by the user
|
|
366
|
+
*/
|
|
367
|
+
readonly COMPLETED: "COMPLETED";
|
|
368
|
+
/**
|
|
369
|
+
* Recommendation has been generated but not yet acted upon
|
|
370
|
+
*/
|
|
371
|
+
readonly PROPOSED: "PROPOSED";
|
|
372
|
+
/**
|
|
373
|
+
* Recommendation has been rejected by the user
|
|
374
|
+
*/
|
|
375
|
+
readonly REJECTED: "REJECTED";
|
|
376
|
+
/**
|
|
377
|
+
* Recommendation is being actively updated
|
|
378
|
+
*/
|
|
379
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
380
|
+
};
|
|
381
|
+
/**
|
|
382
|
+
* @public
|
|
383
|
+
*/
|
|
384
|
+
export type RecommendationStatus = (typeof RecommendationStatus)[keyof typeof RecommendationStatus];
|
|
385
|
+
/**
|
|
386
|
+
* @public
|
|
387
|
+
* @enum
|
|
388
|
+
*/
|
|
389
|
+
export declare const TaskSortOrder: {
|
|
390
|
+
/**
|
|
391
|
+
* Ascending order
|
|
392
|
+
*/
|
|
393
|
+
readonly ASC: "ASC";
|
|
394
|
+
/**
|
|
395
|
+
* Descending order
|
|
396
|
+
*/
|
|
397
|
+
readonly DESC: "DESC";
|
|
398
|
+
};
|
|
399
|
+
/**
|
|
400
|
+
* @public
|
|
401
|
+
*/
|
|
402
|
+
export type TaskSortOrder = (typeof TaskSortOrder)[keyof typeof TaskSortOrder];
|
|
403
|
+
/**
|
|
404
|
+
* @public
|
|
405
|
+
* @enum
|
|
406
|
+
*/
|
|
407
|
+
export declare const TaskSortField: {
|
|
408
|
+
/**
|
|
409
|
+
* Sort by task creation timestamp
|
|
410
|
+
*/
|
|
411
|
+
readonly CREATED_AT: "CREATED_AT";
|
|
412
|
+
/**
|
|
413
|
+
* Sort by task priority level
|
|
414
|
+
*/
|
|
415
|
+
readonly PRIORITY: "PRIORITY";
|
|
416
|
+
};
|
|
417
|
+
/**
|
|
418
|
+
* @public
|
|
419
|
+
*/
|
|
420
|
+
export type TaskSortField = (typeof TaskSortField)[keyof typeof TaskSortField];
|
|
421
|
+
/**
|
|
422
|
+
* @public
|
|
423
|
+
* @enum
|
|
424
|
+
*/
|
|
425
|
+
export declare const ExecutionStatus: {
|
|
426
|
+
/**
|
|
427
|
+
* Execution has been canceled
|
|
428
|
+
*/
|
|
429
|
+
readonly CANCELED: "CANCELED";
|
|
430
|
+
/**
|
|
431
|
+
* Execution has failed
|
|
432
|
+
*/
|
|
433
|
+
readonly FAILED: "FAILED";
|
|
434
|
+
/**
|
|
435
|
+
* Execution is currently running
|
|
436
|
+
*/
|
|
437
|
+
readonly RUNNING: "RUNNING";
|
|
438
|
+
/**
|
|
439
|
+
* Execution has been stopped
|
|
440
|
+
*/
|
|
441
|
+
readonly STOPPED: "STOPPED";
|
|
442
|
+
/**
|
|
443
|
+
* Unlike in the case of user-initiated Cancelation, a customer won't be billed
|
|
444
|
+
*/
|
|
445
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
446
|
+
};
|
|
447
|
+
/**
|
|
448
|
+
* @public
|
|
449
|
+
*/
|
|
450
|
+
export type ExecutionStatus = (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
451
|
+
/**
|
|
452
|
+
* @public
|
|
453
|
+
* @enum
|
|
454
|
+
*/
|
|
455
|
+
export declare const GoalType: {
|
|
456
|
+
/**
|
|
457
|
+
* Goal defined by customer
|
|
458
|
+
*/
|
|
459
|
+
readonly CUSTOMER_DEFINED: "CUSTOMER_DEFINED";
|
|
460
|
+
/**
|
|
461
|
+
* Goal related to on-call reporting activities
|
|
462
|
+
*/
|
|
463
|
+
readonly ONCALL_REPORT: "ONCALL_REPORT";
|
|
464
|
+
};
|
|
465
|
+
/**
|
|
466
|
+
* @public
|
|
467
|
+
*/
|
|
468
|
+
export type GoalType = (typeof GoalType)[keyof typeof GoalType];
|
|
469
|
+
/**
|
|
470
|
+
* @public
|
|
471
|
+
* @enum
|
|
472
|
+
*/
|
|
473
|
+
export declare const GoalStatus: {
|
|
474
|
+
/**
|
|
475
|
+
* Goal is active and being evaluated according to schedule
|
|
476
|
+
*/
|
|
477
|
+
readonly ACTIVE: "ACTIVE";
|
|
478
|
+
/**
|
|
479
|
+
* Goal has been marked as completed
|
|
480
|
+
*/
|
|
481
|
+
readonly COMPLETE: "COMPLETE";
|
|
482
|
+
/**
|
|
483
|
+
* Goal evaluations are temporarily paused
|
|
484
|
+
*/
|
|
485
|
+
readonly PAUSED: "PAUSED";
|
|
486
|
+
};
|
|
487
|
+
/**
|
|
488
|
+
* @public
|
|
489
|
+
*/
|
|
490
|
+
export type GoalStatus = (typeof GoalStatus)[keyof typeof GoalStatus];
|
|
491
|
+
/**
|
|
492
|
+
* @public
|
|
493
|
+
* @enum
|
|
494
|
+
*/
|
|
495
|
+
export declare const SchedulerState: {
|
|
496
|
+
/**
|
|
497
|
+
* Schedule is disabled and will not trigger goal evaluations
|
|
498
|
+
*/
|
|
499
|
+
readonly DISABLED: "DISABLED";
|
|
500
|
+
/**
|
|
501
|
+
* Schedule is enabled and will trigger goal evaluations
|
|
502
|
+
*/
|
|
503
|
+
readonly ENABLED: "ENABLED";
|
|
504
|
+
};
|
|
505
|
+
/**
|
|
506
|
+
* @public
|
|
507
|
+
*/
|
|
508
|
+
export type SchedulerState = (typeof SchedulerState)[keyof typeof SchedulerState];
|
|
509
|
+
/**
|
|
510
|
+
* @public
|
|
511
|
+
* @enum
|
|
512
|
+
*/
|
|
513
|
+
export declare const OrderType: {
|
|
514
|
+
/**
|
|
515
|
+
* Ascending order
|
|
516
|
+
*/
|
|
517
|
+
readonly ASC: "ASC";
|
|
518
|
+
/**
|
|
519
|
+
* Descending order
|
|
520
|
+
*/
|
|
521
|
+
readonly DESC: "DESC";
|
|
522
|
+
};
|
|
523
|
+
/**
|
|
524
|
+
* @public
|
|
525
|
+
*/
|
|
526
|
+
export type OrderType = (typeof OrderType)[keyof typeof OrderType];
|
|
527
|
+
/**
|
|
528
|
+
* @public
|
|
529
|
+
* @enum
|
|
530
|
+
*/
|
|
531
|
+
export declare const Service: {
|
|
532
|
+
readonly AZURE: "azure";
|
|
533
|
+
readonly AZURE_DEVOPS: "azuredevops";
|
|
534
|
+
/**
|
|
535
|
+
* Azure Service with AWS Outbound Identity Federation.
|
|
536
|
+
*/
|
|
537
|
+
readonly AZURE_IDENTITY: "azureidentity";
|
|
538
|
+
readonly DYNATRACE: "dynatrace";
|
|
539
|
+
readonly EVENTCHANNEL: "eventChannel";
|
|
540
|
+
readonly GITHUB: "github";
|
|
541
|
+
readonly GITLAB: "gitlab";
|
|
542
|
+
/**
|
|
543
|
+
* Model Context Protocol server.
|
|
544
|
+
*/
|
|
545
|
+
readonly MCP_SERVER: "mcpserver";
|
|
546
|
+
/**
|
|
547
|
+
* Datadog MCP server.
|
|
548
|
+
*/
|
|
549
|
+
readonly MCP_SERVER_DATADOG: "mcpserverdatadog";
|
|
550
|
+
/**
|
|
551
|
+
* Grafana MCP server.
|
|
552
|
+
*/
|
|
553
|
+
readonly MCP_SERVER_GRAFANA: "mcpservergrafana";
|
|
554
|
+
/**
|
|
555
|
+
* NewRelic MCP server.
|
|
556
|
+
*/
|
|
557
|
+
readonly MCP_SERVER_NEWRELIC: "mcpservernewrelic";
|
|
558
|
+
/**
|
|
559
|
+
* SigV4-authenticated MCP server.
|
|
560
|
+
*/
|
|
561
|
+
readonly MCP_SERVER_SIGV4: "mcpserversigv4";
|
|
562
|
+
/**
|
|
563
|
+
* Splunk MCP server.
|
|
564
|
+
*/
|
|
565
|
+
readonly MCP_SERVER_SPLUNK: "mcpserversplunk";
|
|
566
|
+
readonly MS_TEAMS: "msteams";
|
|
567
|
+
readonly PAGERDUTY: "pagerduty";
|
|
568
|
+
readonly SERVICENOW: "servicenow";
|
|
569
|
+
readonly SLACK: "slack";
|
|
570
|
+
};
|
|
571
|
+
/**
|
|
572
|
+
* @public
|
|
573
|
+
*/
|
|
574
|
+
export type Service = (typeof Service)[keyof typeof Service];
|
|
575
|
+
/**
|
|
576
|
+
* @public
|
|
577
|
+
* @enum
|
|
578
|
+
*/
|
|
579
|
+
export declare const PostRegisterServiceSupportedService: {
|
|
580
|
+
/**
|
|
581
|
+
* Azure Service with AWS Outbound Identity Federation.
|
|
582
|
+
*/
|
|
583
|
+
readonly AZURE_IDENTITY: "azureidentity";
|
|
584
|
+
readonly DYNATRACE: "dynatrace";
|
|
585
|
+
readonly EVENTCHANNEL: "eventChannel";
|
|
586
|
+
readonly GITLAB: "gitlab";
|
|
587
|
+
/**
|
|
588
|
+
* Model Context Protocol server.
|
|
589
|
+
*/
|
|
590
|
+
readonly MCP_SERVER: "mcpserver";
|
|
591
|
+
/**
|
|
592
|
+
* Datadog MCP server.
|
|
593
|
+
*/
|
|
594
|
+
readonly MCP_SERVER_DATADOG: "mcpserverdatadog";
|
|
595
|
+
/**
|
|
596
|
+
* Grafana MCP server.
|
|
597
|
+
*/
|
|
598
|
+
readonly MCP_SERVER_GRAFANA: "mcpservergrafana";
|
|
599
|
+
/**
|
|
600
|
+
* NewRelic MCP server.
|
|
601
|
+
*/
|
|
602
|
+
readonly MCP_SERVER_NEWRELIC: "mcpservernewrelic";
|
|
603
|
+
/**
|
|
604
|
+
* SigV4-authenticated MCP server.
|
|
605
|
+
*/
|
|
606
|
+
readonly MCP_SERVER_SIGV4: "mcpserversigv4";
|
|
607
|
+
/**
|
|
608
|
+
* Splunk MCP server.
|
|
609
|
+
*/
|
|
610
|
+
readonly MCP_SERVER_SPLUNK: "mcpserversplunk";
|
|
611
|
+
readonly PAGERDUTY: "pagerduty";
|
|
612
|
+
readonly SERVICENOW: "servicenow";
|
|
613
|
+
};
|
|
614
|
+
/**
|
|
615
|
+
* @public
|
|
616
|
+
*/
|
|
617
|
+
export type PostRegisterServiceSupportedService = (typeof PostRegisterServiceSupportedService)[keyof typeof PostRegisterServiceSupportedService];
|
|
618
|
+
/**
|
|
619
|
+
* @public
|
|
620
|
+
* @enum
|
|
621
|
+
*/
|
|
622
|
+
export declare const EventChannelType: {
|
|
623
|
+
/**
|
|
624
|
+
* Webhook-based event channel
|
|
625
|
+
*/
|
|
626
|
+
readonly WEBHOOK: "webhook";
|
|
627
|
+
};
|
|
628
|
+
/**
|
|
629
|
+
* @public
|
|
630
|
+
*/
|
|
631
|
+
export type EventChannelType = (typeof EventChannelType)[keyof typeof EventChannelType];
|