@aws-sdk/client-devops-agent 3.1048.0 → 3.1050.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/README.md +1 -10
- package/dist-cjs/index.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +51 -12
- package/dist-es/models/enums.js +2 -0
- package/dist-es/schemas/schemas_0.js +47 -9
- package/dist-types/DevOpsAgent.d.ts +1 -11
- package/dist-types/DevOpsAgentClient.d.ts +1 -11
- package/dist-types/commands/AssociateServiceCommand.d.ts +20 -12
- package/dist-types/commands/CreateAgentSpaceCommand.d.ts +10 -12
- package/dist-types/commands/CreateBacklogTaskCommand.d.ts +10 -12
- package/dist-types/commands/CreateChatCommand.d.ts +10 -12
- package/dist-types/commands/CreatePrivateConnectionCommand.d.ts +10 -12
- package/dist-types/commands/DeleteAgentSpaceCommand.d.ts +10 -12
- package/dist-types/commands/DeletePrivateConnectionCommand.d.ts +10 -12
- package/dist-types/commands/DeregisterServiceCommand.d.ts +10 -12
- package/dist-types/commands/DescribePrivateConnectionCommand.d.ts +10 -12
- package/dist-types/commands/DisableOperatorAppCommand.d.ts +11 -13
- package/dist-types/commands/DisassociateServiceCommand.d.ts +10 -12
- package/dist-types/commands/EnableOperatorAppCommand.d.ts +11 -13
- package/dist-types/commands/GetAccountUsageCommand.d.ts +10 -12
- package/dist-types/commands/GetAgentSpaceCommand.d.ts +10 -12
- package/dist-types/commands/GetAssociationCommand.d.ts +15 -12
- package/dist-types/commands/GetBacklogTaskCommand.d.ts +10 -12
- package/dist-types/commands/GetOperatorAppCommand.d.ts +10 -12
- package/dist-types/commands/GetRecommendationCommand.d.ts +12 -12
- package/dist-types/commands/GetServiceCommand.d.ts +22 -13
- package/dist-types/commands/ListAgentSpacesCommand.d.ts +10 -12
- package/dist-types/commands/ListAssociationsCommand.d.ts +15 -12
- package/dist-types/commands/ListBacklogTasksCommand.d.ts +10 -12
- package/dist-types/commands/ListChatsCommand.d.ts +10 -12
- package/dist-types/commands/ListExecutionsCommand.d.ts +10 -12
- package/dist-types/commands/ListGoalsCommand.d.ts +10 -12
- package/dist-types/commands/ListJournalRecordsCommand.d.ts +10 -12
- package/dist-types/commands/ListPendingMessagesCommand.d.ts +10 -12
- package/dist-types/commands/ListPrivateConnectionsCommand.d.ts +10 -12
- package/dist-types/commands/ListRecommendationsCommand.d.ts +12 -12
- package/dist-types/commands/ListServicesCommand.d.ts +23 -14
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +10 -12
- package/dist-types/commands/ListWebhooksCommand.d.ts +10 -12
- package/dist-types/commands/RegisterServiceCommand.d.ts +24 -13
- package/dist-types/commands/SendMessageCommand.d.ts +10 -12
- package/dist-types/commands/TagResourceCommand.d.ts +10 -12
- package/dist-types/commands/UntagResourceCommand.d.ts +10 -12
- package/dist-types/commands/UpdateAgentSpaceCommand.d.ts +10 -12
- package/dist-types/commands/UpdateAssociationCommand.d.ts +20 -12
- package/dist-types/commands/UpdateBacklogTaskCommand.d.ts +10 -12
- package/dist-types/commands/UpdateGoalCommand.d.ts +10 -12
- package/dist-types/commands/UpdateOperatorAppIdpConfigCommand.d.ts +10 -12
- package/dist-types/commands/UpdatePrivateConnectionCertificateCommand.d.ts +10 -12
- package/dist-types/commands/UpdateRecommendationCommand.d.ts +12 -12
- package/dist-types/commands/ValidateAwsAssociationsCommand.d.ts +10 -12
- package/dist-types/index.d.ts +1 -11
- package/dist-types/models/enums.d.ts +87 -79
- package/dist-types/models/errors.d.ts +12 -15
- package/dist-types/models/models_0.d.ts +1021 -815
- package/dist-types/schemas/schemas_0.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +125 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
- package/package.json +3 -3
|
@@ -29,7 +29,7 @@ declare const UntagResourceCommand_base: {
|
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
|
-
* Removes tags from the specified AWS DevOps Agent resource
|
|
32
|
+
* <p>Removes tags from the specified AWS DevOps Agent resource.</p>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -57,33 +57,31 @@ declare const UntagResourceCommand_base: {
|
|
|
57
57
|
* @see {@link DevOpsAgentClientResolvedConfig | config} for DevOpsAgentClient's `config` shape.
|
|
58
58
|
*
|
|
59
59
|
* @throws {@link AccessDeniedException} (client fault)
|
|
60
|
-
* Access to the requested resource is denied due to insufficient permissions
|
|
60
|
+
* <p>Access to the requested resource is denied due to insufficient permissions.</p>
|
|
61
61
|
*
|
|
62
62
|
* @throws {@link InternalServerException} (server fault)
|
|
63
|
-
* This exception is thrown when an unexpected error occurs in the processing of a request
|
|
63
|
+
* <p>This exception is thrown when an unexpected error occurs in the processing of a request.</p>
|
|
64
64
|
*
|
|
65
65
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
66
|
-
* The requested resource could not be found
|
|
66
|
+
* <p>The requested resource could not be found.</p>
|
|
67
67
|
*
|
|
68
68
|
* @throws {@link ValidationException} (client fault)
|
|
69
|
-
*
|
|
70
|
-
* This should be thrown by services when a member of the input structure
|
|
71
|
-
* falls outside of the modeled or documented constraints.
|
|
69
|
+
* <p>The input fails to satisfy the constraints specified by the service.</p>
|
|
72
70
|
*
|
|
73
71
|
* @throws {@link ConflictException} (client fault)
|
|
74
|
-
* The request conflicts with the current state of the resource
|
|
72
|
+
* <p>The request conflicts with the current state of the resource.</p>
|
|
75
73
|
*
|
|
76
74
|
* @throws {@link ContentSizeExceededException} (client fault)
|
|
77
|
-
* This exception is thrown when the content size exceeds the allowed limit
|
|
75
|
+
* <p>This exception is thrown when the content size exceeds the allowed limit.</p>
|
|
78
76
|
*
|
|
79
77
|
* @throws {@link InvalidParameterException} (client fault)
|
|
80
|
-
* One or more parameters provided in the request are invalid
|
|
78
|
+
* <p>One or more parameters provided in the request are invalid.</p>
|
|
81
79
|
*
|
|
82
80
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
83
|
-
* The request would exceed the service quota limit
|
|
81
|
+
* <p>The request would exceed the service quota limit.</p>
|
|
84
82
|
*
|
|
85
83
|
* @throws {@link ThrottlingException} (client fault)
|
|
86
|
-
* The request was throttled due to too many requests. Please slow down and try again
|
|
84
|
+
* <p>The request was throttled due to too many requests. Please slow down and try again.</p>
|
|
87
85
|
*
|
|
88
86
|
* @throws {@link DevOpsAgentServiceException}
|
|
89
87
|
* <p>Base exception class for all service exceptions from DevOpsAgent service.</p>
|
|
@@ -29,7 +29,7 @@ declare const UpdateAgentSpaceCommand_base: {
|
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
|
-
* Updates the information of an existing AgentSpace
|
|
32
|
+
* <p>Updates the information of an existing AgentSpace.</p>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -67,33 +67,31 @@ declare const UpdateAgentSpaceCommand_base: {
|
|
|
67
67
|
* @see {@link DevOpsAgentClientResolvedConfig | config} for DevOpsAgentClient's `config` shape.
|
|
68
68
|
*
|
|
69
69
|
* @throws {@link ConflictException} (client fault)
|
|
70
|
-
* The request conflicts with the current state of the resource
|
|
70
|
+
* <p>The request conflicts with the current state of the resource.</p>
|
|
71
71
|
*
|
|
72
72
|
* @throws {@link InternalServerException} (server fault)
|
|
73
|
-
* This exception is thrown when an unexpected error occurs in the processing of a request
|
|
73
|
+
* <p>This exception is thrown when an unexpected error occurs in the processing of a request.</p>
|
|
74
74
|
*
|
|
75
75
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
76
|
-
* The requested resource could not be found
|
|
76
|
+
* <p>The requested resource could not be found.</p>
|
|
77
77
|
*
|
|
78
78
|
* @throws {@link ThrottlingException} (client fault)
|
|
79
|
-
* The request was throttled due to too many requests. Please slow down and try again
|
|
79
|
+
* <p>The request was throttled due to too many requests. Please slow down and try again.</p>
|
|
80
80
|
*
|
|
81
81
|
* @throws {@link ValidationException} (client fault)
|
|
82
|
-
*
|
|
83
|
-
* This should be thrown by services when a member of the input structure
|
|
84
|
-
* falls outside of the modeled or documented constraints.
|
|
82
|
+
* <p>The input fails to satisfy the constraints specified by the service.</p>
|
|
85
83
|
*
|
|
86
84
|
* @throws {@link AccessDeniedException} (client fault)
|
|
87
|
-
* Access to the requested resource is denied due to insufficient permissions
|
|
85
|
+
* <p>Access to the requested resource is denied due to insufficient permissions.</p>
|
|
88
86
|
*
|
|
89
87
|
* @throws {@link ContentSizeExceededException} (client fault)
|
|
90
|
-
* This exception is thrown when the content size exceeds the allowed limit
|
|
88
|
+
* <p>This exception is thrown when the content size exceeds the allowed limit.</p>
|
|
91
89
|
*
|
|
92
90
|
* @throws {@link InvalidParameterException} (client fault)
|
|
93
|
-
* One or more parameters provided in the request are invalid
|
|
91
|
+
* <p>One or more parameters provided in the request are invalid.</p>
|
|
94
92
|
*
|
|
95
93
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
96
|
-
* The request would exceed the service quota limit
|
|
94
|
+
* <p>The request would exceed the service quota limit.</p>
|
|
97
95
|
*
|
|
98
96
|
* @throws {@link DevOpsAgentServiceException}
|
|
99
97
|
* <p>Base exception class for all service exceptions from DevOpsAgent service.</p>
|
|
@@ -29,7 +29,7 @@ declare const UpdateAssociationCommand_base: {
|
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
|
-
* Partially updates the configuration of an existing service association for an AgentSpace. Present fields are fully replaced; absent fields are left unchanged. Returns 200 OK on success
|
|
32
|
+
* <p>Partially updates the configuration of an existing service association for an AgentSpace. Present fields are fully replaced; absent fields are left unchanged. Returns 200 OK on success.</p>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -124,6 +124,11 @@ declare const UpdateAssociationCommand_base: {
|
|
|
124
124
|
* ],
|
|
125
125
|
* customerEmail: "STRING_VALUE", // required
|
|
126
126
|
* },
|
|
127
|
+
* mcpserversigv4: { // MCPServerSigV4Configuration
|
|
128
|
+
* tools: [ // required
|
|
129
|
+
* "STRING_VALUE",
|
|
130
|
+
* ],
|
|
131
|
+
* },
|
|
127
132
|
* },
|
|
128
133
|
* };
|
|
129
134
|
* const command = new UpdateAssociationCommand(input);
|
|
@@ -219,6 +224,11 @@ declare const UpdateAssociationCommand_base: {
|
|
|
219
224
|
* // ],
|
|
220
225
|
* // customerEmail: "STRING_VALUE", // required
|
|
221
226
|
* // },
|
|
227
|
+
* // mcpserversigv4: { // MCPServerSigV4Configuration
|
|
228
|
+
* // tools: [ // required
|
|
229
|
+
* // "STRING_VALUE",
|
|
230
|
+
* // ],
|
|
231
|
+
* // },
|
|
222
232
|
* // },
|
|
223
233
|
* // },
|
|
224
234
|
* // webhook: { // GenericWebhook
|
|
@@ -239,33 +249,31 @@ declare const UpdateAssociationCommand_base: {
|
|
|
239
249
|
* @see {@link DevOpsAgentClientResolvedConfig | config} for DevOpsAgentClient's `config` shape.
|
|
240
250
|
*
|
|
241
251
|
* @throws {@link InternalServerException} (server fault)
|
|
242
|
-
* This exception is thrown when an unexpected error occurs in the processing of a request
|
|
252
|
+
* <p>This exception is thrown when an unexpected error occurs in the processing of a request.</p>
|
|
243
253
|
*
|
|
244
254
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
245
|
-
* The requested resource could not be found
|
|
255
|
+
* <p>The requested resource could not be found.</p>
|
|
246
256
|
*
|
|
247
257
|
* @throws {@link ThrottlingException} (client fault)
|
|
248
|
-
* The request was throttled due to too many requests. Please slow down and try again
|
|
258
|
+
* <p>The request was throttled due to too many requests. Please slow down and try again.</p>
|
|
249
259
|
*
|
|
250
260
|
* @throws {@link ValidationException} (client fault)
|
|
251
|
-
*
|
|
252
|
-
* This should be thrown by services when a member of the input structure
|
|
253
|
-
* falls outside of the modeled or documented constraints.
|
|
261
|
+
* <p>The input fails to satisfy the constraints specified by the service.</p>
|
|
254
262
|
*
|
|
255
263
|
* @throws {@link AccessDeniedException} (client fault)
|
|
256
|
-
* Access to the requested resource is denied due to insufficient permissions
|
|
264
|
+
* <p>Access to the requested resource is denied due to insufficient permissions.</p>
|
|
257
265
|
*
|
|
258
266
|
* @throws {@link ConflictException} (client fault)
|
|
259
|
-
* The request conflicts with the current state of the resource
|
|
267
|
+
* <p>The request conflicts with the current state of the resource.</p>
|
|
260
268
|
*
|
|
261
269
|
* @throws {@link ContentSizeExceededException} (client fault)
|
|
262
|
-
* This exception is thrown when the content size exceeds the allowed limit
|
|
270
|
+
* <p>This exception is thrown when the content size exceeds the allowed limit.</p>
|
|
263
271
|
*
|
|
264
272
|
* @throws {@link InvalidParameterException} (client fault)
|
|
265
|
-
* One or more parameters provided in the request are invalid
|
|
273
|
+
* <p>One or more parameters provided in the request are invalid.</p>
|
|
266
274
|
*
|
|
267
275
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
268
|
-
* The request would exceed the service quota limit
|
|
276
|
+
* <p>The request would exceed the service quota limit.</p>
|
|
269
277
|
*
|
|
270
278
|
* @throws {@link DevOpsAgentServiceException}
|
|
271
279
|
* <p>Base exception class for all service exceptions from DevOpsAgent service.</p>
|
|
@@ -29,7 +29,7 @@ declare const UpdateBacklogTaskCommand_base: {
|
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
|
-
* Update an existing backlog task
|
|
32
|
+
* <p>Update an existing backlog task.</p>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -83,33 +83,31 @@ declare const UpdateBacklogTaskCommand_base: {
|
|
|
83
83
|
* @see {@link DevOpsAgentClientResolvedConfig | config} for DevOpsAgentClient's `config` shape.
|
|
84
84
|
*
|
|
85
85
|
* @throws {@link AccessDeniedException} (client fault)
|
|
86
|
-
* Access to the requested resource is denied due to insufficient permissions
|
|
86
|
+
* <p>Access to the requested resource is denied due to insufficient permissions.</p>
|
|
87
87
|
*
|
|
88
88
|
* @throws {@link ConflictException} (client fault)
|
|
89
|
-
* The request conflicts with the current state of the resource
|
|
89
|
+
* <p>The request conflicts with the current state of the resource.</p>
|
|
90
90
|
*
|
|
91
91
|
* @throws {@link InternalServerException} (server fault)
|
|
92
|
-
* This exception is thrown when an unexpected error occurs in the processing of a request
|
|
92
|
+
* <p>This exception is thrown when an unexpected error occurs in the processing of a request.</p>
|
|
93
93
|
*
|
|
94
94
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
95
|
-
* The requested resource could not be found
|
|
95
|
+
* <p>The requested resource could not be found.</p>
|
|
96
96
|
*
|
|
97
97
|
* @throws {@link ThrottlingException} (client fault)
|
|
98
|
-
* The request was throttled due to too many requests. Please slow down and try again
|
|
98
|
+
* <p>The request was throttled due to too many requests. Please slow down and try again.</p>
|
|
99
99
|
*
|
|
100
100
|
* @throws {@link ValidationException} (client fault)
|
|
101
|
-
*
|
|
102
|
-
* This should be thrown by services when a member of the input structure
|
|
103
|
-
* falls outside of the modeled or documented constraints.
|
|
101
|
+
* <p>The input fails to satisfy the constraints specified by the service.</p>
|
|
104
102
|
*
|
|
105
103
|
* @throws {@link ContentSizeExceededException} (client fault)
|
|
106
|
-
* This exception is thrown when the content size exceeds the allowed limit
|
|
104
|
+
* <p>This exception is thrown when the content size exceeds the allowed limit.</p>
|
|
107
105
|
*
|
|
108
106
|
* @throws {@link InvalidParameterException} (client fault)
|
|
109
|
-
* One or more parameters provided in the request are invalid
|
|
107
|
+
* <p>One or more parameters provided in the request are invalid.</p>
|
|
110
108
|
*
|
|
111
109
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
112
|
-
* The request would exceed the service quota limit
|
|
110
|
+
* <p>The request would exceed the service quota limit.</p>
|
|
113
111
|
*
|
|
114
112
|
* @throws {@link DevOpsAgentServiceException}
|
|
115
113
|
* <p>Base exception class for all service exceptions from DevOpsAgent service.</p>
|
|
@@ -29,7 +29,7 @@ declare const UpdateGoalCommand_base: {
|
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
|
-
* Update an existing goal
|
|
32
|
+
* <p>Update an existing goal</p>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -81,33 +81,31 @@ declare const UpdateGoalCommand_base: {
|
|
|
81
81
|
* @see {@link DevOpsAgentClientResolvedConfig | config} for DevOpsAgentClient's `config` shape.
|
|
82
82
|
*
|
|
83
83
|
* @throws {@link AccessDeniedException} (client fault)
|
|
84
|
-
* Access to the requested resource is denied due to insufficient permissions
|
|
84
|
+
* <p>Access to the requested resource is denied due to insufficient permissions.</p>
|
|
85
85
|
*
|
|
86
86
|
* @throws {@link ConflictException} (client fault)
|
|
87
|
-
* The request conflicts with the current state of the resource
|
|
87
|
+
* <p>The request conflicts with the current state of the resource.</p>
|
|
88
88
|
*
|
|
89
89
|
* @throws {@link InternalServerException} (server fault)
|
|
90
|
-
* This exception is thrown when an unexpected error occurs in the processing of a request
|
|
90
|
+
* <p>This exception is thrown when an unexpected error occurs in the processing of a request.</p>
|
|
91
91
|
*
|
|
92
92
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
93
|
-
* The requested resource could not be found
|
|
93
|
+
* <p>The requested resource could not be found.</p>
|
|
94
94
|
*
|
|
95
95
|
* @throws {@link ThrottlingException} (client fault)
|
|
96
|
-
* The request was throttled due to too many requests. Please slow down and try again
|
|
96
|
+
* <p>The request was throttled due to too many requests. Please slow down and try again.</p>
|
|
97
97
|
*
|
|
98
98
|
* @throws {@link ValidationException} (client fault)
|
|
99
|
-
*
|
|
100
|
-
* This should be thrown by services when a member of the input structure
|
|
101
|
-
* falls outside of the modeled or documented constraints.
|
|
99
|
+
* <p>The input fails to satisfy the constraints specified by the service.</p>
|
|
102
100
|
*
|
|
103
101
|
* @throws {@link ContentSizeExceededException} (client fault)
|
|
104
|
-
* This exception is thrown when the content size exceeds the allowed limit
|
|
102
|
+
* <p>This exception is thrown when the content size exceeds the allowed limit.</p>
|
|
105
103
|
*
|
|
106
104
|
* @throws {@link InvalidParameterException} (client fault)
|
|
107
|
-
* One or more parameters provided in the request are invalid
|
|
105
|
+
* <p>One or more parameters provided in the request are invalid.</p>
|
|
108
106
|
*
|
|
109
107
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
110
|
-
* The request would exceed the service quota limit
|
|
108
|
+
* <p>The request would exceed the service quota limit.</p>
|
|
111
109
|
*
|
|
112
110
|
* @throws {@link DevOpsAgentServiceException}
|
|
113
111
|
* <p>Base exception class for all service exceptions from DevOpsAgent service.</p>
|
|
@@ -29,7 +29,7 @@ declare const UpdateOperatorAppIdpConfigCommand_base: {
|
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
|
-
* Update the external Identity Provider configuration for the Operator App
|
|
32
|
+
* <p>Update the external Identity Provider configuration for the Operator App</p>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -65,33 +65,31 @@ declare const UpdateOperatorAppIdpConfigCommand_base: {
|
|
|
65
65
|
* @see {@link DevOpsAgentClientResolvedConfig | config} for DevOpsAgentClient's `config` shape.
|
|
66
66
|
*
|
|
67
67
|
* @throws {@link InternalServerException} (server fault)
|
|
68
|
-
* This exception is thrown when an unexpected error occurs in the processing of a request
|
|
68
|
+
* <p>This exception is thrown when an unexpected error occurs in the processing of a request.</p>
|
|
69
69
|
*
|
|
70
70
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
71
|
-
* The requested resource could not be found
|
|
71
|
+
* <p>The requested resource could not be found.</p>
|
|
72
72
|
*
|
|
73
73
|
* @throws {@link ThrottlingException} (client fault)
|
|
74
|
-
* The request was throttled due to too many requests. Please slow down and try again
|
|
74
|
+
* <p>The request was throttled due to too many requests. Please slow down and try again.</p>
|
|
75
75
|
*
|
|
76
76
|
* @throws {@link ValidationException} (client fault)
|
|
77
|
-
*
|
|
78
|
-
* This should be thrown by services when a member of the input structure
|
|
79
|
-
* falls outside of the modeled or documented constraints.
|
|
77
|
+
* <p>The input fails to satisfy the constraints specified by the service.</p>
|
|
80
78
|
*
|
|
81
79
|
* @throws {@link AccessDeniedException} (client fault)
|
|
82
|
-
* Access to the requested resource is denied due to insufficient permissions
|
|
80
|
+
* <p>Access to the requested resource is denied due to insufficient permissions.</p>
|
|
83
81
|
*
|
|
84
82
|
* @throws {@link ConflictException} (client fault)
|
|
85
|
-
* The request conflicts with the current state of the resource
|
|
83
|
+
* <p>The request conflicts with the current state of the resource.</p>
|
|
86
84
|
*
|
|
87
85
|
* @throws {@link ContentSizeExceededException} (client fault)
|
|
88
|
-
* This exception is thrown when the content size exceeds the allowed limit
|
|
86
|
+
* <p>This exception is thrown when the content size exceeds the allowed limit.</p>
|
|
89
87
|
*
|
|
90
88
|
* @throws {@link InvalidParameterException} (client fault)
|
|
91
|
-
* One or more parameters provided in the request are invalid
|
|
89
|
+
* <p>One or more parameters provided in the request are invalid.</p>
|
|
92
90
|
*
|
|
93
91
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
94
|
-
* The request would exceed the service quota limit
|
|
92
|
+
* <p>The request would exceed the service quota limit.</p>
|
|
95
93
|
*
|
|
96
94
|
* @throws {@link DevOpsAgentServiceException}
|
|
97
95
|
* <p>Base exception class for all service exceptions from DevOpsAgent service.</p>
|
|
@@ -29,7 +29,7 @@ declare const UpdatePrivateConnectionCertificateCommand_base: {
|
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
|
-
* Updates the certificate associated with a Private Connection
|
|
32
|
+
* <p>Updates the certificate associated with a Private Connection.</p>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -64,33 +64,31 @@ declare const UpdatePrivateConnectionCertificateCommand_base: {
|
|
|
64
64
|
* @see {@link DevOpsAgentClientResolvedConfig | config} for DevOpsAgentClient's `config` shape.
|
|
65
65
|
*
|
|
66
66
|
* @throws {@link AccessDeniedException} (client fault)
|
|
67
|
-
* Access to the requested resource is denied due to insufficient permissions
|
|
67
|
+
* <p>Access to the requested resource is denied due to insufficient permissions.</p>
|
|
68
68
|
*
|
|
69
69
|
* @throws {@link InternalServerException} (server fault)
|
|
70
|
-
* This exception is thrown when an unexpected error occurs in the processing of a request
|
|
70
|
+
* <p>This exception is thrown when an unexpected error occurs in the processing of a request.</p>
|
|
71
71
|
*
|
|
72
72
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
73
|
-
* The requested resource could not be found
|
|
73
|
+
* <p>The requested resource could not be found.</p>
|
|
74
74
|
*
|
|
75
75
|
* @throws {@link ThrottlingException} (client fault)
|
|
76
|
-
* The request was throttled due to too many requests. Please slow down and try again
|
|
76
|
+
* <p>The request was throttled due to too many requests. Please slow down and try again.</p>
|
|
77
77
|
*
|
|
78
78
|
* @throws {@link ValidationException} (client fault)
|
|
79
|
-
*
|
|
80
|
-
* This should be thrown by services when a member of the input structure
|
|
81
|
-
* falls outside of the modeled or documented constraints.
|
|
79
|
+
* <p>The input fails to satisfy the constraints specified by the service.</p>
|
|
82
80
|
*
|
|
83
81
|
* @throws {@link ConflictException} (client fault)
|
|
84
|
-
* The request conflicts with the current state of the resource
|
|
82
|
+
* <p>The request conflicts with the current state of the resource.</p>
|
|
85
83
|
*
|
|
86
84
|
* @throws {@link ContentSizeExceededException} (client fault)
|
|
87
|
-
* This exception is thrown when the content size exceeds the allowed limit
|
|
85
|
+
* <p>This exception is thrown when the content size exceeds the allowed limit.</p>
|
|
88
86
|
*
|
|
89
87
|
* @throws {@link InvalidParameterException} (client fault)
|
|
90
|
-
* One or more parameters provided in the request are invalid
|
|
88
|
+
* <p>One or more parameters provided in the request are invalid.</p>
|
|
91
89
|
*
|
|
92
90
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
93
|
-
* The request would exceed the service quota limit
|
|
91
|
+
* <p>The request would exceed the service quota limit.</p>
|
|
94
92
|
*
|
|
95
93
|
* @throws {@link DevOpsAgentServiceException}
|
|
96
94
|
* <p>Base exception class for all service exceptions from DevOpsAgent service.</p>
|
|
@@ -29,7 +29,7 @@ declare const UpdateRecommendationCommand_base: {
|
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
|
-
* Updates an existing recommendation with new content, status, or metadata
|
|
32
|
+
* <p>Updates an existing recommendation with new content, status, or metadata</p>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -62,6 +62,8 @@ declare const UpdateRecommendationCommand_base: {
|
|
|
62
62
|
* // priority: "HIGH" || "MEDIUM" || "LOW", // required
|
|
63
63
|
* // goalVersion: Number("long"),
|
|
64
64
|
* // additionalContext: "STRING_VALUE",
|
|
65
|
+
* // rankPosition: Number("int"),
|
|
66
|
+
* // rankedAt: new Date("TIMESTAMP"),
|
|
65
67
|
* // createdAt: new Date("TIMESTAMP"), // required
|
|
66
68
|
* // updatedAt: new Date("TIMESTAMP"), // required
|
|
67
69
|
* // version: Number("long"), // required
|
|
@@ -77,33 +79,31 @@ declare const UpdateRecommendationCommand_base: {
|
|
|
77
79
|
* @see {@link DevOpsAgentClientResolvedConfig | config} for DevOpsAgentClient's `config` shape.
|
|
78
80
|
*
|
|
79
81
|
* @throws {@link AccessDeniedException} (client fault)
|
|
80
|
-
* Access to the requested resource is denied due to insufficient permissions
|
|
82
|
+
* <p>Access to the requested resource is denied due to insufficient permissions.</p>
|
|
81
83
|
*
|
|
82
84
|
* @throws {@link ConflictException} (client fault)
|
|
83
|
-
* The request conflicts with the current state of the resource
|
|
85
|
+
* <p>The request conflicts with the current state of the resource.</p>
|
|
84
86
|
*
|
|
85
87
|
* @throws {@link InternalServerException} (server fault)
|
|
86
|
-
* This exception is thrown when an unexpected error occurs in the processing of a request
|
|
88
|
+
* <p>This exception is thrown when an unexpected error occurs in the processing of a request.</p>
|
|
87
89
|
*
|
|
88
90
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
89
|
-
* The requested resource could not be found
|
|
91
|
+
* <p>The requested resource could not be found.</p>
|
|
90
92
|
*
|
|
91
93
|
* @throws {@link ThrottlingException} (client fault)
|
|
92
|
-
* The request was throttled due to too many requests. Please slow down and try again
|
|
94
|
+
* <p>The request was throttled due to too many requests. Please slow down and try again.</p>
|
|
93
95
|
*
|
|
94
96
|
* @throws {@link ValidationException} (client fault)
|
|
95
|
-
*
|
|
96
|
-
* This should be thrown by services when a member of the input structure
|
|
97
|
-
* falls outside of the modeled or documented constraints.
|
|
97
|
+
* <p>The input fails to satisfy the constraints specified by the service.</p>
|
|
98
98
|
*
|
|
99
99
|
* @throws {@link ContentSizeExceededException} (client fault)
|
|
100
|
-
* This exception is thrown when the content size exceeds the allowed limit
|
|
100
|
+
* <p>This exception is thrown when the content size exceeds the allowed limit.</p>
|
|
101
101
|
*
|
|
102
102
|
* @throws {@link InvalidParameterException} (client fault)
|
|
103
|
-
* One or more parameters provided in the request are invalid
|
|
103
|
+
* <p>One or more parameters provided in the request are invalid.</p>
|
|
104
104
|
*
|
|
105
105
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
106
|
-
* The request would exceed the service quota limit
|
|
106
|
+
* <p>The request would exceed the service quota limit.</p>
|
|
107
107
|
*
|
|
108
108
|
* @throws {@link DevOpsAgentServiceException}
|
|
109
109
|
* <p>Base exception class for all service exceptions from DevOpsAgent service.</p>
|
|
@@ -29,7 +29,7 @@ declare const ValidateAwsAssociationsCommand_base: {
|
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
|
-
* Validates an aws association and set status and returns a 204 No Content response on success
|
|
32
|
+
* <p>Validates an aws association and set status and returns a 204 No Content response on success.</p>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -54,33 +54,31 @@ declare const ValidateAwsAssociationsCommand_base: {
|
|
|
54
54
|
* @see {@link DevOpsAgentClientResolvedConfig | config} for DevOpsAgentClient's `config` shape.
|
|
55
55
|
*
|
|
56
56
|
* @throws {@link InternalServerException} (server fault)
|
|
57
|
-
* This exception is thrown when an unexpected error occurs in the processing of a request
|
|
57
|
+
* <p>This exception is thrown when an unexpected error occurs in the processing of a request.</p>
|
|
58
58
|
*
|
|
59
59
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
60
|
-
* The requested resource could not be found
|
|
60
|
+
* <p>The requested resource could not be found.</p>
|
|
61
61
|
*
|
|
62
62
|
* @throws {@link ThrottlingException} (client fault)
|
|
63
|
-
* The request was throttled due to too many requests. Please slow down and try again
|
|
63
|
+
* <p>The request was throttled due to too many requests. Please slow down and try again.</p>
|
|
64
64
|
*
|
|
65
65
|
* @throws {@link ValidationException} (client fault)
|
|
66
|
-
*
|
|
67
|
-
* This should be thrown by services when a member of the input structure
|
|
68
|
-
* falls outside of the modeled or documented constraints.
|
|
66
|
+
* <p>The input fails to satisfy the constraints specified by the service.</p>
|
|
69
67
|
*
|
|
70
68
|
* @throws {@link AccessDeniedException} (client fault)
|
|
71
|
-
* Access to the requested resource is denied due to insufficient permissions
|
|
69
|
+
* <p>Access to the requested resource is denied due to insufficient permissions.</p>
|
|
72
70
|
*
|
|
73
71
|
* @throws {@link ConflictException} (client fault)
|
|
74
|
-
* The request conflicts with the current state of the resource
|
|
72
|
+
* <p>The request conflicts with the current state of the resource.</p>
|
|
75
73
|
*
|
|
76
74
|
* @throws {@link ContentSizeExceededException} (client fault)
|
|
77
|
-
* This exception is thrown when the content size exceeds the allowed limit
|
|
75
|
+
* <p>This exception is thrown when the content size exceeds the allowed limit.</p>
|
|
78
76
|
*
|
|
79
77
|
* @throws {@link InvalidParameterException} (client fault)
|
|
80
|
-
* One or more parameters provided in the request are invalid
|
|
78
|
+
* <p>One or more parameters provided in the request are invalid.</p>
|
|
81
79
|
*
|
|
82
80
|
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
83
|
-
* The request would exceed the service quota limit
|
|
81
|
+
* <p>The request would exceed the service quota limit.</p>
|
|
84
82
|
*
|
|
85
83
|
* @throws {@link DevOpsAgentServiceException}
|
|
86
84
|
* <p>Base exception class for all service exceptions from DevOpsAgent service.</p>
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,15 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* AWS DevOps Agent is
|
|
3
|
-
* reliability and performance. AWS DevOps Agent investigates incidents and identifies operational improvements as an
|
|
4
|
-
* experienced DevOps engineer.
|
|
5
|
-
*
|
|
6
|
-
* The agent works by:
|
|
7
|
-
*
|
|
8
|
-
* * Learning your resources and their relationships.
|
|
9
|
-
* * Working with your observability tools, runbooks, code repositories, and CI/CD pipelines.
|
|
10
|
-
* * Correlating telemetry, code, and deployment data to understand relationships between your application resources.
|
|
11
|
-
* * Supporting applications in multicloud and hybrid environments.
|
|
12
|
-
*
|
|
2
|
+
* <p>AWS DevOps Agent is your always-available operations teammate. It resolves and proactively prevents incidents, optimizes application reliability and performance, and handles on-demand SRE tasks across AWS, multicloud, and on-premises environments. AWS DevOps Agent investigates incidents as an experienced DevOps engineer would. It learns your applications and their relationships. It works with your observability tools, runbooks, code repositories, and CI/CD pipelines. The agent correlates telemetry, code, and deployment data across all of them. </p>
|
|
13
3
|
*
|
|
14
4
|
* @packageDocumentation
|
|
15
5
|
*/
|