@aws-sdk/client-devops-agent 3.1069.0 → 3.1071.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/dist-cjs/index.js +17 -0
- package/dist-cjs/schemas/schemas_0.js +198 -96
- package/dist-es/models/enums.js +15 -0
- package/dist-es/schemas/schemas_0.js +185 -96
- package/dist-types/commands/AssociateServiceCommand.d.ts +18 -0
- package/dist-types/commands/CreateAssetCommand.d.ts +3 -0
- package/dist-types/commands/CreateBacklogTaskCommand.d.ts +2 -2
- package/dist-types/commands/GetAssociationCommand.d.ts +9 -0
- package/dist-types/commands/GetBacklogTaskCommand.d.ts +1 -1
- package/dist-types/commands/GetServiceCommand.d.ts +16 -1
- package/dist-types/commands/ListAssociationsCommand.d.ts +9 -0
- package/dist-types/commands/ListBacklogTasksCommand.d.ts +2 -2
- package/dist-types/commands/ListServicesCommand.d.ts +17 -2
- package/dist-types/commands/RegisterServiceCommand.d.ts +36 -1
- package/dist-types/commands/UpdateAssetCommand.d.ts +3 -0
- package/dist-types/commands/UpdateAssociationCommand.d.ts +18 -0
- package/dist-types/commands/UpdateBacklogTaskCommand.d.ts +1 -1
- package/dist-types/models/enums.d.ts +64 -0
- package/dist-types/models/models_0.d.ts +614 -20
- package/dist-types/schemas/schemas_0.d.ts +13 -0
- package/dist-types/ts3.4/models/enums.d.ts +19 -0
- package/dist-types/ts3.4/models/models_0.d.ts +337 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +13 -0
- package/package.json +3 -3
package/dist-es/models/enums.js
CHANGED
|
@@ -16,6 +16,15 @@ export const NewRelicRegion = {
|
|
|
16
16
|
EU: "EU",
|
|
17
17
|
US: "US",
|
|
18
18
|
};
|
|
19
|
+
export const RemoteAgentAuthorizationMethod = {
|
|
20
|
+
API_KEY: "api-key",
|
|
21
|
+
BEARER_TOKEN: "bearer-token",
|
|
22
|
+
OAUTH_CLIENT_CREDENTIALS: "oauth-client-credentials",
|
|
23
|
+
};
|
|
24
|
+
export const CapabilityType = {
|
|
25
|
+
RELEASE_READINESS_REVIEW: "RELEASE_READINESS_REVIEW",
|
|
26
|
+
RELEASE_READINESS_REVIEW_AUTOMATED_TESTING: "RELEASE_READINESS_REVIEW_AUTOMATED_TESTING",
|
|
27
|
+
};
|
|
19
28
|
export const MonitorAccountType = {
|
|
20
29
|
MONITOR: "monitor",
|
|
21
30
|
};
|
|
@@ -48,6 +57,8 @@ export const Priority = {
|
|
|
48
57
|
export const TaskType = {
|
|
49
58
|
EVALUATION: "EVALUATION",
|
|
50
59
|
INVESTIGATION: "INVESTIGATION",
|
|
60
|
+
RELEASE_READINESS_REVIEW: "RELEASE_READINESS_REVIEW",
|
|
61
|
+
RELEASE_TESTING: "RELEASE_TESTING",
|
|
51
62
|
};
|
|
52
63
|
export const TaskStatus = {
|
|
53
64
|
CANCELED: "CANCELED",
|
|
@@ -146,6 +157,8 @@ export const Service = {
|
|
|
146
157
|
MCP_SERVER_SIGV4: "mcpserversigv4",
|
|
147
158
|
MCP_SERVER_SPLUNK: "mcpserversplunk",
|
|
148
159
|
PAGERDUTY: "pagerduty",
|
|
160
|
+
REMOTE_AGENT: "remoteagent",
|
|
161
|
+
REMOTE_AGENT_SIGV4: "remoteagentsigv4",
|
|
149
162
|
SERVICENOW: "servicenow",
|
|
150
163
|
SLACK: "slack",
|
|
151
164
|
};
|
|
@@ -161,6 +174,8 @@ export const PostRegisterServiceSupportedService = {
|
|
|
161
174
|
MCP_SERVER_SIGV4: "mcpserversigv4",
|
|
162
175
|
MCP_SERVER_SPLUNK: "mcpserversplunk",
|
|
163
176
|
PAGERDUTY: "pagerduty",
|
|
177
|
+
REMOTE_AGENT: "remoteagent",
|
|
178
|
+
REMOTE_AGENT_SIGV4: "remoteagentsigv4",
|
|
164
179
|
SERVICENOW: "servicenow",
|
|
165
180
|
};
|
|
166
181
|
export const EventChannelType = {
|