@aws-sdk/client-devops-agent 3.1020.0 → 3.1021.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 +0 -21
- package/dist-cjs/index.js +0 -45
- package/dist-cjs/schemas/schemas_0.js +24 -134
- package/dist-es/DevOpsAgent.js +0 -6
- package/dist-es/commands/index.js +0 -3
- package/dist-es/models/enums.js +0 -3
- package/dist-es/schemas/schemas_0.js +19 -128
- package/dist-types/DevOpsAgent.d.ts +0 -21
- package/dist-types/DevOpsAgentClient.d.ts +2 -5
- package/dist-types/commands/AllowVendedLogDeliveryForResourceCommand.d.ts +1 -1
- package/dist-types/commands/AssociateServiceCommand.d.ts +0 -28
- package/dist-types/commands/GetAccountUsageCommand.d.ts +4 -0
- package/dist-types/commands/GetAssociationCommand.d.ts +0 -14
- package/dist-types/commands/GetServiceCommand.d.ts +1 -9
- package/dist-types/commands/ListAssociationsCommand.d.ts +0 -14
- package/dist-types/commands/ListServicesCommand.d.ts +2 -10
- package/dist-types/commands/RegisterServiceCommand.d.ts +1 -11
- package/dist-types/commands/UpdateAssociationCommand.d.ts +0 -28
- package/dist-types/commands/index.d.ts +0 -3
- package/dist-types/models/enums.d.ts +0 -9
- package/dist-types/models/models_0.d.ts +8 -399
- package/dist-types/schemas/schemas_0.d.ts +0 -17
- package/dist-types/ts3.4/DevOpsAgent.d.ts +0 -51
- package/dist-types/ts3.4/DevOpsAgentClient.d.ts +0 -18
- package/dist-types/ts3.4/commands/index.d.ts +0 -3
- package/dist-types/ts3.4/models/enums.d.ts +0 -3
- package/dist-types/ts3.4/models/models_0.d.ts +1 -163
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +0 -17
- package/package.json +8 -8
- package/dist-es/commands/DescribeSupportLevelCommand.js +0 -16
- package/dist-es/commands/EndChatForCaseCommand.js +0 -16
- package/dist-es/commands/InitiateChatForCaseCommand.js +0 -16
- package/dist-types/commands/DescribeSupportLevelCommand.d.ts +0 -112
- package/dist-types/commands/EndChatForCaseCommand.d.ts +0 -109
- package/dist-types/commands/InitiateChatForCaseCommand.d.ts +0 -109
- package/dist-types/ts3.4/commands/DescribeSupportLevelCommand.d.ts +0 -51
- package/dist-types/ts3.4/commands/EndChatForCaseCommand.d.ts +0 -50
- package/dist-types/ts3.4/commands/InitiateChatForCaseCommand.d.ts +0 -51
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
-
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { InitiateChatForCase$ } from "../schemas/schemas_0";
|
|
5
|
-
export { $Command };
|
|
6
|
-
export class InitiateChatForCaseCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("DevOpsAgent", "InitiateChatForCase", {})
|
|
13
|
-
.n("DevOpsAgentClient", "InitiateChatForCaseCommand")
|
|
14
|
-
.sc(InitiateChatForCase$)
|
|
15
|
-
.build() {
|
|
16
|
-
}
|
|
@@ -1,112 +0,0 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
-
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsAgentClient";
|
|
4
|
-
import type { DescribeSupportLevelRequest, DescribeSupportLevelResponse } from "../models/models_0";
|
|
5
|
-
/**
|
|
6
|
-
* @public
|
|
7
|
-
*/
|
|
8
|
-
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
|
-
/**
|
|
11
|
-
* @public
|
|
12
|
-
*
|
|
13
|
-
* The input for {@link DescribeSupportLevelCommand}.
|
|
14
|
-
*/
|
|
15
|
-
export interface DescribeSupportLevelCommandInput extends DescribeSupportLevelRequest {
|
|
16
|
-
}
|
|
17
|
-
/**
|
|
18
|
-
* @public
|
|
19
|
-
*
|
|
20
|
-
* The output of {@link DescribeSupportLevelCommand}.
|
|
21
|
-
*/
|
|
22
|
-
export interface DescribeSupportLevelCommandOutput extends DescribeSupportLevelResponse, __MetadataBearer {
|
|
23
|
-
}
|
|
24
|
-
declare const DescribeSupportLevelCommand_base: {
|
|
25
|
-
new (input: DescribeSupportLevelCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSupportLevelCommandInput, DescribeSupportLevelCommandOutput, DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: DescribeSupportLevelCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSupportLevelCommandInput, DescribeSupportLevelCommandOutput, DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
-
};
|
|
29
|
-
/**
|
|
30
|
-
* Describe the support level of a CloudSmith customer account.
|
|
31
|
-
* @example
|
|
32
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
-
* ```javascript
|
|
34
|
-
* import { DevOpsAgentClient, DescribeSupportLevelCommand } from "@aws-sdk/client-devops-agent"; // ES Modules import
|
|
35
|
-
* // const { DevOpsAgentClient, DescribeSupportLevelCommand } = require("@aws-sdk/client-devops-agent"); // CommonJS import
|
|
36
|
-
* // import type { DevOpsAgentClientConfig } from "@aws-sdk/client-devops-agent";
|
|
37
|
-
* const config = {}; // type is DevOpsAgentClientConfig
|
|
38
|
-
* const client = new DevOpsAgentClient(config);
|
|
39
|
-
* const input = { // DescribeSupportLevelRequest
|
|
40
|
-
* agentSpaceId: "STRING_VALUE", // required
|
|
41
|
-
* taskId: "STRING_VALUE", // required
|
|
42
|
-
* };
|
|
43
|
-
* const command = new DescribeSupportLevelCommand(input);
|
|
44
|
-
* const response = await client.send(command);
|
|
45
|
-
* // { // DescribeSupportLevelResponse
|
|
46
|
-
* // supportLevel: { // SupportLevel
|
|
47
|
-
* // code: "STRING_VALUE", // required
|
|
48
|
-
* // name: "STRING_VALUE", // required
|
|
49
|
-
* // },
|
|
50
|
-
* // mosaicSupportLevel: {
|
|
51
|
-
* // code: "STRING_VALUE", // required
|
|
52
|
-
* // name: "STRING_VALUE", // required
|
|
53
|
-
* // },
|
|
54
|
-
* // activeSubscription: true || false,
|
|
55
|
-
* // };
|
|
56
|
-
*
|
|
57
|
-
* ```
|
|
58
|
-
*
|
|
59
|
-
* @param DescribeSupportLevelCommandInput - {@link DescribeSupportLevelCommandInput}
|
|
60
|
-
* @returns {@link DescribeSupportLevelCommandOutput}
|
|
61
|
-
* @see {@link DescribeSupportLevelCommandInput} for command's `input` shape.
|
|
62
|
-
* @see {@link DescribeSupportLevelCommandOutput} for command's `response` shape.
|
|
63
|
-
* @see {@link DevOpsAgentClientResolvedConfig | config} for DevOpsAgentClient's `config` shape.
|
|
64
|
-
*
|
|
65
|
-
* @throws {@link AccessDeniedException} (client fault)
|
|
66
|
-
* Access to the requested resource is denied due to insufficient permissions.
|
|
67
|
-
*
|
|
68
|
-
* @throws {@link InternalServerException} (server fault)
|
|
69
|
-
* This exception is thrown when an unexpected error occurs in the processing of a request.
|
|
70
|
-
*
|
|
71
|
-
* @throws {@link ResourceNotFoundException} (client fault)
|
|
72
|
-
* The requested resource could not be found.
|
|
73
|
-
*
|
|
74
|
-
* @throws {@link ThrottlingException} (client fault)
|
|
75
|
-
* The request was throttled due to too many requests. Please slow down and try again.
|
|
76
|
-
*
|
|
77
|
-
* @throws {@link ValidationException} (client fault)
|
|
78
|
-
* A standard error for input validation failures.
|
|
79
|
-
* This should be thrown by services when a member of the input structure
|
|
80
|
-
* falls outside of the modeled or documented constraints.
|
|
81
|
-
*
|
|
82
|
-
* @throws {@link ConflictException} (client fault)
|
|
83
|
-
* The request conflicts with the current state of the resource.
|
|
84
|
-
*
|
|
85
|
-
* @throws {@link ContentSizeExceededException} (client fault)
|
|
86
|
-
* This exception is thrown when the content size exceeds the allowed limit.
|
|
87
|
-
*
|
|
88
|
-
* @throws {@link InvalidParameterException} (client fault)
|
|
89
|
-
* One or more parameters provided in the request are invalid.
|
|
90
|
-
*
|
|
91
|
-
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
92
|
-
* The request would exceed the service quota limit.
|
|
93
|
-
*
|
|
94
|
-
* @throws {@link DevOpsAgentServiceException}
|
|
95
|
-
* <p>Base exception class for all service exceptions from DevOpsAgent service.</p>
|
|
96
|
-
*
|
|
97
|
-
*
|
|
98
|
-
* @public
|
|
99
|
-
*/
|
|
100
|
-
export declare class DescribeSupportLevelCommand extends DescribeSupportLevelCommand_base {
|
|
101
|
-
/** @internal type navigation helper, not in runtime. */
|
|
102
|
-
protected static __types: {
|
|
103
|
-
api: {
|
|
104
|
-
input: DescribeSupportLevelRequest;
|
|
105
|
-
output: DescribeSupportLevelResponse;
|
|
106
|
-
};
|
|
107
|
-
sdk: {
|
|
108
|
-
input: DescribeSupportLevelCommandInput;
|
|
109
|
-
output: DescribeSupportLevelCommandOutput;
|
|
110
|
-
};
|
|
111
|
-
};
|
|
112
|
-
}
|
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
-
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsAgentClient";
|
|
4
|
-
import type { EndChatForCaseRequest, EndChatForCaseResponse } from "../models/models_0";
|
|
5
|
-
/**
|
|
6
|
-
* @public
|
|
7
|
-
*/
|
|
8
|
-
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
|
-
/**
|
|
11
|
-
* @public
|
|
12
|
-
*
|
|
13
|
-
* The input for {@link EndChatForCaseCommand}.
|
|
14
|
-
*/
|
|
15
|
-
export interface EndChatForCaseCommandInput extends EndChatForCaseRequest {
|
|
16
|
-
}
|
|
17
|
-
/**
|
|
18
|
-
* @public
|
|
19
|
-
*
|
|
20
|
-
* The output of {@link EndChatForCaseCommand}.
|
|
21
|
-
*/
|
|
22
|
-
export interface EndChatForCaseCommandOutput extends EndChatForCaseResponse, __MetadataBearer {
|
|
23
|
-
}
|
|
24
|
-
declare const EndChatForCaseCommand_base: {
|
|
25
|
-
new (input: EndChatForCaseCommandInput): import("@smithy/smithy-client").CommandImpl<EndChatForCaseCommandInput, EndChatForCaseCommandOutput, DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: EndChatForCaseCommandInput): import("@smithy/smithy-client").CommandImpl<EndChatForCaseCommandInput, EndChatForCaseCommandOutput, DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
-
};
|
|
29
|
-
/**
|
|
30
|
-
* End a chat session for a support case in the specified agent space
|
|
31
|
-
* @example
|
|
32
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
-
* ```javascript
|
|
34
|
-
* import { DevOpsAgentClient, EndChatForCaseCommand } from "@aws-sdk/client-devops-agent"; // ES Modules import
|
|
35
|
-
* // const { DevOpsAgentClient, EndChatForCaseCommand } = require("@aws-sdk/client-devops-agent"); // CommonJS import
|
|
36
|
-
* // import type { DevOpsAgentClientConfig } from "@aws-sdk/client-devops-agent";
|
|
37
|
-
* const config = {}; // type is DevOpsAgentClientConfig
|
|
38
|
-
* const client = new DevOpsAgentClient(config);
|
|
39
|
-
* const input = { // EndChatForCaseRequest
|
|
40
|
-
* agentSpaceId: "STRING_VALUE", // required
|
|
41
|
-
* taskId: "STRING_VALUE", // required
|
|
42
|
-
* reason: "STRING_VALUE",
|
|
43
|
-
* requester: "STRING_VALUE",
|
|
44
|
-
* clientToken: "STRING_VALUE",
|
|
45
|
-
* };
|
|
46
|
-
* const command = new EndChatForCaseCommand(input);
|
|
47
|
-
* const response = await client.send(command);
|
|
48
|
-
* // { // EndChatForCaseResponse
|
|
49
|
-
* // isDisconnected: true || false, // required
|
|
50
|
-
* // executionId: "STRING_VALUE",
|
|
51
|
-
* // errorMessage: "STRING_VALUE",
|
|
52
|
-
* // };
|
|
53
|
-
*
|
|
54
|
-
* ```
|
|
55
|
-
*
|
|
56
|
-
* @param EndChatForCaseCommandInput - {@link EndChatForCaseCommandInput}
|
|
57
|
-
* @returns {@link EndChatForCaseCommandOutput}
|
|
58
|
-
* @see {@link EndChatForCaseCommandInput} for command's `input` shape.
|
|
59
|
-
* @see {@link EndChatForCaseCommandOutput} for command's `response` shape.
|
|
60
|
-
* @see {@link DevOpsAgentClientResolvedConfig | config} for DevOpsAgentClient's `config` shape.
|
|
61
|
-
*
|
|
62
|
-
* @throws {@link AccessDeniedException} (client fault)
|
|
63
|
-
* Access to the requested resource is denied due to insufficient permissions.
|
|
64
|
-
*
|
|
65
|
-
* @throws {@link InternalServerException} (server fault)
|
|
66
|
-
* This exception is thrown when an unexpected error occurs in the processing of a request.
|
|
67
|
-
*
|
|
68
|
-
* @throws {@link ResourceNotFoundException} (client fault)
|
|
69
|
-
* The requested resource could not be found.
|
|
70
|
-
*
|
|
71
|
-
* @throws {@link ThrottlingException} (client fault)
|
|
72
|
-
* The request was throttled due to too many requests. Please slow down and try again.
|
|
73
|
-
*
|
|
74
|
-
* @throws {@link ValidationException} (client fault)
|
|
75
|
-
* A standard error for input validation failures.
|
|
76
|
-
* This should be thrown by services when a member of the input structure
|
|
77
|
-
* falls outside of the modeled or documented constraints.
|
|
78
|
-
*
|
|
79
|
-
* @throws {@link ConflictException} (client fault)
|
|
80
|
-
* The request conflicts with the current state of the resource.
|
|
81
|
-
*
|
|
82
|
-
* @throws {@link ContentSizeExceededException} (client fault)
|
|
83
|
-
* This exception is thrown when the content size exceeds the allowed limit.
|
|
84
|
-
*
|
|
85
|
-
* @throws {@link InvalidParameterException} (client fault)
|
|
86
|
-
* One or more parameters provided in the request are invalid.
|
|
87
|
-
*
|
|
88
|
-
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
89
|
-
* The request would exceed the service quota limit.
|
|
90
|
-
*
|
|
91
|
-
* @throws {@link DevOpsAgentServiceException}
|
|
92
|
-
* <p>Base exception class for all service exceptions from DevOpsAgent service.</p>
|
|
93
|
-
*
|
|
94
|
-
*
|
|
95
|
-
* @public
|
|
96
|
-
*/
|
|
97
|
-
export declare class EndChatForCaseCommand extends EndChatForCaseCommand_base {
|
|
98
|
-
/** @internal type navigation helper, not in runtime. */
|
|
99
|
-
protected static __types: {
|
|
100
|
-
api: {
|
|
101
|
-
input: EndChatForCaseRequest;
|
|
102
|
-
output: EndChatForCaseResponse;
|
|
103
|
-
};
|
|
104
|
-
sdk: {
|
|
105
|
-
input: EndChatForCaseCommandInput;
|
|
106
|
-
output: EndChatForCaseCommandOutput;
|
|
107
|
-
};
|
|
108
|
-
};
|
|
109
|
-
}
|
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
-
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsAgentClient";
|
|
4
|
-
import type { InitiateChatForCaseRequest, InitiateChatForCaseResponse } from "../models/models_0";
|
|
5
|
-
/**
|
|
6
|
-
* @public
|
|
7
|
-
*/
|
|
8
|
-
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
|
-
/**
|
|
11
|
-
* @public
|
|
12
|
-
*
|
|
13
|
-
* The input for {@link InitiateChatForCaseCommand}.
|
|
14
|
-
*/
|
|
15
|
-
export interface InitiateChatForCaseCommandInput extends InitiateChatForCaseRequest {
|
|
16
|
-
}
|
|
17
|
-
/**
|
|
18
|
-
* @public
|
|
19
|
-
*
|
|
20
|
-
* The output of {@link InitiateChatForCaseCommand}.
|
|
21
|
-
*/
|
|
22
|
-
export interface InitiateChatForCaseCommandOutput extends InitiateChatForCaseResponse, __MetadataBearer {
|
|
23
|
-
}
|
|
24
|
-
declare const InitiateChatForCaseCommand_base: {
|
|
25
|
-
new (input: InitiateChatForCaseCommandInput): import("@smithy/smithy-client").CommandImpl<InitiateChatForCaseCommandInput, InitiateChatForCaseCommandOutput, DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: InitiateChatForCaseCommandInput): import("@smithy/smithy-client").CommandImpl<InitiateChatForCaseCommandInput, InitiateChatForCaseCommandOutput, DevOpsAgentClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
-
};
|
|
29
|
-
/**
|
|
30
|
-
* Initiate a chat for support case in the specified agent space
|
|
31
|
-
* @example
|
|
32
|
-
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
-
* ```javascript
|
|
34
|
-
* import { DevOpsAgentClient, InitiateChatForCaseCommand } from "@aws-sdk/client-devops-agent"; // ES Modules import
|
|
35
|
-
* // const { DevOpsAgentClient, InitiateChatForCaseCommand } = require("@aws-sdk/client-devops-agent"); // CommonJS import
|
|
36
|
-
* // import type { DevOpsAgentClientConfig } from "@aws-sdk/client-devops-agent";
|
|
37
|
-
* const config = {}; // type is DevOpsAgentClientConfig
|
|
38
|
-
* const client = new DevOpsAgentClient(config);
|
|
39
|
-
* const input = { // InitiateChatForCaseRequest
|
|
40
|
-
* agentSpaceId: "STRING_VALUE", // required
|
|
41
|
-
* taskId: "STRING_VALUE", // required
|
|
42
|
-
* clientToken: "STRING_VALUE",
|
|
43
|
-
* };
|
|
44
|
-
* const command = new InitiateChatForCaseCommand(input);
|
|
45
|
-
* const response = await client.send(command);
|
|
46
|
-
* // { // InitiateChatForCaseResponse
|
|
47
|
-
* // chatParticipantConnection: { // ChatParticipantConnection
|
|
48
|
-
* // initialContactId: "STRING_VALUE", // required
|
|
49
|
-
* // participantId: "STRING_VALUE", // required
|
|
50
|
-
* // participantToken: "STRING_VALUE", // required
|
|
51
|
-
* // },
|
|
52
|
-
* // };
|
|
53
|
-
*
|
|
54
|
-
* ```
|
|
55
|
-
*
|
|
56
|
-
* @param InitiateChatForCaseCommandInput - {@link InitiateChatForCaseCommandInput}
|
|
57
|
-
* @returns {@link InitiateChatForCaseCommandOutput}
|
|
58
|
-
* @see {@link InitiateChatForCaseCommandInput} for command's `input` shape.
|
|
59
|
-
* @see {@link InitiateChatForCaseCommandOutput} for command's `response` shape.
|
|
60
|
-
* @see {@link DevOpsAgentClientResolvedConfig | config} for DevOpsAgentClient's `config` shape.
|
|
61
|
-
*
|
|
62
|
-
* @throws {@link AccessDeniedException} (client fault)
|
|
63
|
-
* Access to the requested resource is denied due to insufficient permissions.
|
|
64
|
-
*
|
|
65
|
-
* @throws {@link ConflictException} (client fault)
|
|
66
|
-
* The request conflicts with the current state of the resource.
|
|
67
|
-
*
|
|
68
|
-
* @throws {@link InternalServerException} (server fault)
|
|
69
|
-
* This exception is thrown when an unexpected error occurs in the processing of a request.
|
|
70
|
-
*
|
|
71
|
-
* @throws {@link ResourceNotFoundException} (client fault)
|
|
72
|
-
* The requested resource could not be found.
|
|
73
|
-
*
|
|
74
|
-
* @throws {@link ThrottlingException} (client fault)
|
|
75
|
-
* The request was throttled due to too many requests. Please slow down and try again.
|
|
76
|
-
*
|
|
77
|
-
* @throws {@link ValidationException} (client fault)
|
|
78
|
-
* A standard error for input validation failures.
|
|
79
|
-
* This should be thrown by services when a member of the input structure
|
|
80
|
-
* falls outside of the modeled or documented constraints.
|
|
81
|
-
*
|
|
82
|
-
* @throws {@link ContentSizeExceededException} (client fault)
|
|
83
|
-
* This exception is thrown when the content size exceeds the allowed limit.
|
|
84
|
-
*
|
|
85
|
-
* @throws {@link InvalidParameterException} (client fault)
|
|
86
|
-
* One or more parameters provided in the request are invalid.
|
|
87
|
-
*
|
|
88
|
-
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
89
|
-
* The request would exceed the service quota limit.
|
|
90
|
-
*
|
|
91
|
-
* @throws {@link DevOpsAgentServiceException}
|
|
92
|
-
* <p>Base exception class for all service exceptions from DevOpsAgent service.</p>
|
|
93
|
-
*
|
|
94
|
-
*
|
|
95
|
-
* @public
|
|
96
|
-
*/
|
|
97
|
-
export declare class InitiateChatForCaseCommand extends InitiateChatForCaseCommand_base {
|
|
98
|
-
/** @internal type navigation helper, not in runtime. */
|
|
99
|
-
protected static __types: {
|
|
100
|
-
api: {
|
|
101
|
-
input: InitiateChatForCaseRequest;
|
|
102
|
-
output: InitiateChatForCaseResponse;
|
|
103
|
-
};
|
|
104
|
-
sdk: {
|
|
105
|
-
input: InitiateChatForCaseCommandInput;
|
|
106
|
-
output: InitiateChatForCaseCommandOutput;
|
|
107
|
-
};
|
|
108
|
-
};
|
|
109
|
-
}
|
|
@@ -1,51 +0,0 @@
|
|
|
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
|
-
DescribeSupportLevelRequest,
|
|
10
|
-
DescribeSupportLevelResponse,
|
|
11
|
-
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
|
-
export interface DescribeSupportLevelCommandInput
|
|
15
|
-
extends DescribeSupportLevelRequest {}
|
|
16
|
-
export interface DescribeSupportLevelCommandOutput
|
|
17
|
-
extends DescribeSupportLevelResponse,
|
|
18
|
-
__MetadataBearer {}
|
|
19
|
-
declare const DescribeSupportLevelCommand_base: {
|
|
20
|
-
new (
|
|
21
|
-
input: DescribeSupportLevelCommandInput
|
|
22
|
-
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
-
DescribeSupportLevelCommandInput,
|
|
24
|
-
DescribeSupportLevelCommandOutput,
|
|
25
|
-
DevOpsAgentClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
28
|
-
>;
|
|
29
|
-
new (
|
|
30
|
-
input: DescribeSupportLevelCommandInput
|
|
31
|
-
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
-
DescribeSupportLevelCommandInput,
|
|
33
|
-
DescribeSupportLevelCommandOutput,
|
|
34
|
-
DevOpsAgentClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
37
|
-
>;
|
|
38
|
-
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
-
};
|
|
40
|
-
export declare class DescribeSupportLevelCommand extends DescribeSupportLevelCommand_base {
|
|
41
|
-
protected static __types: {
|
|
42
|
-
api: {
|
|
43
|
-
input: DescribeSupportLevelRequest;
|
|
44
|
-
output: DescribeSupportLevelResponse;
|
|
45
|
-
};
|
|
46
|
-
sdk: {
|
|
47
|
-
input: DescribeSupportLevelCommandInput;
|
|
48
|
-
output: DescribeSupportLevelCommandOutput;
|
|
49
|
-
};
|
|
50
|
-
};
|
|
51
|
-
}
|
|
@@ -1,50 +0,0 @@
|
|
|
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
|
-
EndChatForCaseRequest,
|
|
10
|
-
EndChatForCaseResponse,
|
|
11
|
-
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
|
-
export interface EndChatForCaseCommandInput extends EndChatForCaseRequest {}
|
|
15
|
-
export interface EndChatForCaseCommandOutput
|
|
16
|
-
extends EndChatForCaseResponse,
|
|
17
|
-
__MetadataBearer {}
|
|
18
|
-
declare const EndChatForCaseCommand_base: {
|
|
19
|
-
new (
|
|
20
|
-
input: EndChatForCaseCommandInput
|
|
21
|
-
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
-
EndChatForCaseCommandInput,
|
|
23
|
-
EndChatForCaseCommandOutput,
|
|
24
|
-
DevOpsAgentClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
27
|
-
>;
|
|
28
|
-
new (
|
|
29
|
-
input: EndChatForCaseCommandInput
|
|
30
|
-
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
-
EndChatForCaseCommandInput,
|
|
32
|
-
EndChatForCaseCommandOutput,
|
|
33
|
-
DevOpsAgentClientResolvedConfig,
|
|
34
|
-
ServiceInputTypes,
|
|
35
|
-
ServiceOutputTypes
|
|
36
|
-
>;
|
|
37
|
-
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
-
};
|
|
39
|
-
export declare class EndChatForCaseCommand extends EndChatForCaseCommand_base {
|
|
40
|
-
protected static __types: {
|
|
41
|
-
api: {
|
|
42
|
-
input: EndChatForCaseRequest;
|
|
43
|
-
output: EndChatForCaseResponse;
|
|
44
|
-
};
|
|
45
|
-
sdk: {
|
|
46
|
-
input: EndChatForCaseCommandInput;
|
|
47
|
-
output: EndChatForCaseCommandOutput;
|
|
48
|
-
};
|
|
49
|
-
};
|
|
50
|
-
}
|
|
@@ -1,51 +0,0 @@
|
|
|
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
|
-
InitiateChatForCaseRequest,
|
|
10
|
-
InitiateChatForCaseResponse,
|
|
11
|
-
} from "../models/models_0";
|
|
12
|
-
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
|
-
export interface InitiateChatForCaseCommandInput
|
|
15
|
-
extends InitiateChatForCaseRequest {}
|
|
16
|
-
export interface InitiateChatForCaseCommandOutput
|
|
17
|
-
extends InitiateChatForCaseResponse,
|
|
18
|
-
__MetadataBearer {}
|
|
19
|
-
declare const InitiateChatForCaseCommand_base: {
|
|
20
|
-
new (
|
|
21
|
-
input: InitiateChatForCaseCommandInput
|
|
22
|
-
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
-
InitiateChatForCaseCommandInput,
|
|
24
|
-
InitiateChatForCaseCommandOutput,
|
|
25
|
-
DevOpsAgentClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
28
|
-
>;
|
|
29
|
-
new (
|
|
30
|
-
input: InitiateChatForCaseCommandInput
|
|
31
|
-
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
-
InitiateChatForCaseCommandInput,
|
|
33
|
-
InitiateChatForCaseCommandOutput,
|
|
34
|
-
DevOpsAgentClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
37
|
-
>;
|
|
38
|
-
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
-
};
|
|
40
|
-
export declare class InitiateChatForCaseCommand extends InitiateChatForCaseCommand_base {
|
|
41
|
-
protected static __types: {
|
|
42
|
-
api: {
|
|
43
|
-
input: InitiateChatForCaseRequest;
|
|
44
|
-
output: InitiateChatForCaseResponse;
|
|
45
|
-
};
|
|
46
|
-
sdk: {
|
|
47
|
-
input: InitiateChatForCaseCommandInput;
|
|
48
|
-
output: InitiateChatForCaseCommandOutput;
|
|
49
|
-
};
|
|
50
|
-
};
|
|
51
|
-
}
|