Skip to content

Commit 85d0436

Browse files
author
awstools
committed
feat(client-devops-agent): AWS DevOps Agent service General Availability release.
1 parent f7e1a71 commit 85d0436

22 files changed

Lines changed: 42 additions & 1869 deletions

clients/client-devops-agent/README.md

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -260,13 +260,6 @@ DescribePrivateConnection
260260
</details>
261261
<details>
262262
<summary>
263-
DescribeSupportLevel
264-
</summary>
265-
266-
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/devops-agent/command/DescribeSupportLevelCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/DescribeSupportLevelCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/DescribeSupportLevelCommandOutput/)
267-
</details>
268-
<details>
269-
<summary>
270263
DisableOperatorApp
271264
</summary>
272265

@@ -288,13 +281,6 @@ EnableOperatorApp
288281
</details>
289282
<details>
290283
<summary>
291-
EndChatForCase
292-
</summary>
293-
294-
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/devops-agent/command/EndChatForCaseCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/EndChatForCaseCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/EndChatForCaseCommandOutput/)
295-
</details>
296-
<details>
297-
<summary>
298284
GetAccountUsage
299285
</summary>
300286

@@ -344,13 +330,6 @@ GetService
344330
</details>
345331
<details>
346332
<summary>
347-
InitiateChatForCase
348-
</summary>
349-
350-
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/devops-agent/command/InitiateChatForCaseCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/InitiateChatForCaseCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-devops-agent/Interface/InitiateChatForCaseCommandOutput/)
351-
</details>
352-
<details>
353-
<summary>
354333
ListAgentSpaces
355334
</summary>
356335

clients/client-devops-agent/src/DevOpsAgent.ts

Lines changed: 0 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,6 @@ import {
5252
type DescribePrivateConnectionCommandOutput,
5353
DescribePrivateConnectionCommand,
5454
} from "./commands/DescribePrivateConnectionCommand";
55-
import {
56-
type DescribeSupportLevelCommandInput,
57-
type DescribeSupportLevelCommandOutput,
58-
DescribeSupportLevelCommand,
59-
} from "./commands/DescribeSupportLevelCommand";
6055
import {
6156
type DisableOperatorAppCommandInput,
6257
type DisableOperatorAppCommandOutput,
@@ -72,11 +67,6 @@ import {
7267
type EnableOperatorAppCommandOutput,
7368
EnableOperatorAppCommand,
7469
} from "./commands/EnableOperatorAppCommand";
75-
import {
76-
type EndChatForCaseCommandInput,
77-
type EndChatForCaseCommandOutput,
78-
EndChatForCaseCommand,
79-
} from "./commands/EndChatForCaseCommand";
8070
import {
8171
type GetAccountUsageCommandInput,
8272
type GetAccountUsageCommandOutput,
@@ -112,11 +102,6 @@ import {
112102
type GetServiceCommandOutput,
113103
GetServiceCommand,
114104
} from "./commands/GetServiceCommand";
115-
import {
116-
type InitiateChatForCaseCommandInput,
117-
type InitiateChatForCaseCommandOutput,
118-
InitiateChatForCaseCommand,
119-
} from "./commands/InitiateChatForCaseCommand";
120105
import {
121106
type ListAgentSpacesCommandInput,
122107
type ListAgentSpacesCommandOutput,
@@ -254,19 +239,16 @@ const commands = {
254239
DeletePrivateConnectionCommand,
255240
DeregisterServiceCommand,
256241
DescribePrivateConnectionCommand,
257-
DescribeSupportLevelCommand,
258242
DisableOperatorAppCommand,
259243
DisassociateServiceCommand,
260244
EnableOperatorAppCommand,
261-
EndChatForCaseCommand,
262245
GetAccountUsageCommand,
263246
GetAgentSpaceCommand,
264247
GetAssociationCommand,
265248
GetBacklogTaskCommand,
266249
GetOperatorAppCommand,
267250
GetRecommendationCommand,
268251
GetServiceCommand,
269-
InitiateChatForCaseCommand,
270252
ListAgentSpacesCommand,
271253
ListAssociationsCommand,
272254
ListBacklogTasksCommand,
@@ -474,23 +456,6 @@ export interface DevOpsAgent {
474456
cb: (err: any, data?: DescribePrivateConnectionCommandOutput) => void
475457
): void;
476458

477-
/**
478-
* @see {@link DescribeSupportLevelCommand}
479-
*/
480-
describeSupportLevel(
481-
args: DescribeSupportLevelCommandInput,
482-
options?: __HttpHandlerOptions
483-
): Promise<DescribeSupportLevelCommandOutput>;
484-
describeSupportLevel(
485-
args: DescribeSupportLevelCommandInput,
486-
cb: (err: any, data?: DescribeSupportLevelCommandOutput) => void
487-
): void;
488-
describeSupportLevel(
489-
args: DescribeSupportLevelCommandInput,
490-
options: __HttpHandlerOptions,
491-
cb: (err: any, data?: DescribeSupportLevelCommandOutput) => void
492-
): void;
493-
494459
/**
495460
* @see {@link DisableOperatorAppCommand}
496461
*/
@@ -542,23 +507,6 @@ export interface DevOpsAgent {
542507
cb: (err: any, data?: EnableOperatorAppCommandOutput) => void
543508
): void;
544509

545-
/**
546-
* @see {@link EndChatForCaseCommand}
547-
*/
548-
endChatForCase(
549-
args: EndChatForCaseCommandInput,
550-
options?: __HttpHandlerOptions
551-
): Promise<EndChatForCaseCommandOutput>;
552-
endChatForCase(
553-
args: EndChatForCaseCommandInput,
554-
cb: (err: any, data?: EndChatForCaseCommandOutput) => void
555-
): void;
556-
endChatForCase(
557-
args: EndChatForCaseCommandInput,
558-
options: __HttpHandlerOptions,
559-
cb: (err: any, data?: EndChatForCaseCommandOutput) => void
560-
): void;
561-
562510
/**
563511
* @see {@link GetAccountUsageCommand}
564512
*/
@@ -679,23 +627,6 @@ export interface DevOpsAgent {
679627
cb: (err: any, data?: GetServiceCommandOutput) => void
680628
): void;
681629

682-
/**
683-
* @see {@link InitiateChatForCaseCommand}
684-
*/
685-
initiateChatForCase(
686-
args: InitiateChatForCaseCommandInput,
687-
options?: __HttpHandlerOptions
688-
): Promise<InitiateChatForCaseCommandOutput>;
689-
initiateChatForCase(
690-
args: InitiateChatForCaseCommandInput,
691-
cb: (err: any, data?: InitiateChatForCaseCommandOutput) => void
692-
): void;
693-
initiateChatForCase(
694-
args: InitiateChatForCaseCommandInput,
695-
options: __HttpHandlerOptions,
696-
cb: (err: any, data?: InitiateChatForCaseCommandOutput) => void
697-
): void;
698-
699630
/**
700631
* @see {@link ListAgentSpacesCommand}
701632
*/

clients/client-devops-agent/src/DevOpsAgentClient.ts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,6 @@ import type {
9595
DescribePrivateConnectionCommandInput,
9696
DescribePrivateConnectionCommandOutput,
9797
} from "./commands/DescribePrivateConnectionCommand";
98-
import type {
99-
DescribeSupportLevelCommandInput,
100-
DescribeSupportLevelCommandOutput,
101-
} from "./commands/DescribeSupportLevelCommand";
10298
import type {
10399
DisableOperatorAppCommandInput,
104100
DisableOperatorAppCommandOutput,
@@ -111,7 +107,6 @@ import type {
111107
EnableOperatorAppCommandInput,
112108
EnableOperatorAppCommandOutput,
113109
} from "./commands/EnableOperatorAppCommand";
114-
import type { EndChatForCaseCommandInput, EndChatForCaseCommandOutput } from "./commands/EndChatForCaseCommand";
115110
import type { GetAccountUsageCommandInput, GetAccountUsageCommandOutput } from "./commands/GetAccountUsageCommand";
116111
import type { GetAgentSpaceCommandInput, GetAgentSpaceCommandOutput } from "./commands/GetAgentSpaceCommand";
117112
import type { GetAssociationCommandInput, GetAssociationCommandOutput } from "./commands/GetAssociationCommand";
@@ -122,10 +117,6 @@ import type {
122117
GetRecommendationCommandOutput,
123118
} from "./commands/GetRecommendationCommand";
124119
import type { GetServiceCommandInput, GetServiceCommandOutput } from "./commands/GetServiceCommand";
125-
import type {
126-
InitiateChatForCaseCommandInput,
127-
InitiateChatForCaseCommandOutput,
128-
} from "./commands/InitiateChatForCaseCommand";
129120
import type { ListAgentSpacesCommandInput, ListAgentSpacesCommandOutput } from "./commands/ListAgentSpacesCommand";
130121
import type { ListAssociationsCommandInput, ListAssociationsCommandOutput } from "./commands/ListAssociationsCommand";
131122
import type { ListBacklogTasksCommandInput, ListBacklogTasksCommandOutput } from "./commands/ListBacklogTasksCommand";
@@ -209,19 +200,16 @@ export type ServiceInputTypes =
209200
| DeletePrivateConnectionCommandInput
210201
| DeregisterServiceCommandInput
211202
| DescribePrivateConnectionCommandInput
212-
| DescribeSupportLevelCommandInput
213203
| DisableOperatorAppCommandInput
214204
| DisassociateServiceCommandInput
215205
| EnableOperatorAppCommandInput
216-
| EndChatForCaseCommandInput
217206
| GetAccountUsageCommandInput
218207
| GetAgentSpaceCommandInput
219208
| GetAssociationCommandInput
220209
| GetBacklogTaskCommandInput
221210
| GetOperatorAppCommandInput
222211
| GetRecommendationCommandInput
223212
| GetServiceCommandInput
224-
| InitiateChatForCaseCommandInput
225213
| ListAgentSpacesCommandInput
226214
| ListAssociationsCommandInput
227215
| ListBacklogTasksCommandInput
@@ -262,19 +250,16 @@ export type ServiceOutputTypes =
262250
| DeletePrivateConnectionCommandOutput
263251
| DeregisterServiceCommandOutput
264252
| DescribePrivateConnectionCommandOutput
265-
| DescribeSupportLevelCommandOutput
266253
| DisableOperatorAppCommandOutput
267254
| DisassociateServiceCommandOutput
268255
| EnableOperatorAppCommandOutput
269-
| EndChatForCaseCommandOutput
270256
| GetAccountUsageCommandOutput
271257
| GetAgentSpaceCommandOutput
272258
| GetAssociationCommandOutput
273259
| GetBacklogTaskCommandOutput
274260
| GetOperatorAppCommandOutput
275261
| GetRecommendationCommandOutput
276262
| GetServiceCommandOutput
277-
| InitiateChatForCaseCommandOutput
278263
| ListAgentSpacesCommandOutput
279264
| ListAssociationsCommandOutput
280265
| ListBacklogTasksCommandOutput

clients/client-devops-agent/src/commands/AllowVendedLogDeliveryForResourceCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export interface AllowVendedLogDeliveryForResourceCommandInput extends AllowVend
3030
export interface AllowVendedLogDeliveryForResourceCommandOutput extends AllowVendedLogDeliveryForResourceOutput, __MetadataBearer {}
3131

3232
/**
33-
* Authorize Ingestion Hub subscription operation. Looks to see if the derived accountId from FAS has an AgentSpace.
33+
* Authorize Ingestion Hub subscription operation.
3434
* @example
3535
* Use a bare-bones client and the command you need to make an API call.
3636
* ```javascript

clients/client-devops-agent/src/commands/AssociateServiceCommand.ts

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -115,20 +115,6 @@ export interface AssociateServiceCommandOutput extends AssociateServiceOutput, _
115115
* ],
116116
* customerEmail: "STRING_VALUE", // required
117117
* },
118-
* msteams: { // MSTeamsConfiguration
119-
* teamId: "STRING_VALUE", // required
120-
* teamName: "STRING_VALUE", // required
121-
* transmissionTarget: { // MSTeamsTransmissionTarget
122-
* opsOncallTarget: { // MSTeamsChannel
123-
* channelName: "STRING_VALUE", // required
124-
* channelId: "STRING_VALUE", // required
125-
* },
126-
* opsSRETarget: {
127-
* channelName: "STRING_VALUE", // required
128-
* channelId: "STRING_VALUE", // required
129-
* },
130-
* },
131-
* },
132118
* },
133119
* };
134120
* const command = new AssociateServiceCommand(input);
@@ -217,20 +203,6 @@ export interface AssociateServiceCommandOutput extends AssociateServiceOutput, _
217203
* // ],
218204
* // customerEmail: "STRING_VALUE", // required
219205
* // },
220-
* // msteams: { // MSTeamsConfiguration
221-
* // teamId: "STRING_VALUE", // required
222-
* // teamName: "STRING_VALUE", // required
223-
* // transmissionTarget: { // MSTeamsTransmissionTarget
224-
* // opsOncallTarget: { // MSTeamsChannel
225-
* // channelName: "STRING_VALUE", // required
226-
* // channelId: "STRING_VALUE", // required
227-
* // },
228-
* // opsSRETarget: {
229-
* // channelName: "STRING_VALUE", // required
230-
* // channelId: "STRING_VALUE", // required
231-
* // },
232-
* // },
233-
* // },
234206
* // },
235207
* // },
236208
* // webhook: { // GenericWebhook

0 commit comments

Comments
 (0)