@wildix/wilma-agents-client 1.0.1

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.
Files changed (130) hide show
  1. package/dist-cjs/WilmaAgents.js +57 -0
  2. package/dist-cjs/WilmaAgentsClient.js +49 -0
  3. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  4. package/dist-cjs/auth/httpAuthSchemeProvider.js +58 -0
  5. package/dist-cjs/commands/CompareAgentVersionsCommand.js +20 -0
  6. package/dist-cjs/commands/CreateAgentApiKeyCommand.js +20 -0
  7. package/dist-cjs/commands/CreateAgentCommand.js +20 -0
  8. package/dist-cjs/commands/CreateGuardrailCommand.js +20 -0
  9. package/dist-cjs/commands/DeleteAgentAliasCommand.js +20 -0
  10. package/dist-cjs/commands/DeleteAgentApiKeyCommand.js +20 -0
  11. package/dist-cjs/commands/DeleteAgentCommand.js +20 -0
  12. package/dist-cjs/commands/DeleteGuardrailCommand.js +20 -0
  13. package/dist-cjs/commands/ExecuteAgentCommand.js +20 -0
  14. package/dist-cjs/commands/GetAgentCommand.js +20 -0
  15. package/dist-cjs/commands/GetAgentVersionCommand.js +20 -0
  16. package/dist-cjs/commands/GetGuardrailCommand.js +20 -0
  17. package/dist-cjs/commands/ListAgentAliasesCommand.js +20 -0
  18. package/dist-cjs/commands/ListAgentApiKeysCommand.js +20 -0
  19. package/dist-cjs/commands/ListAgentVersionsCommand.js +20 -0
  20. package/dist-cjs/commands/ListAgentsCommand.js +20 -0
  21. package/dist-cjs/commands/ListAgentsNamesCommand.js +20 -0
  22. package/dist-cjs/commands/ListAuditRecordsCommand.js +20 -0
  23. package/dist-cjs/commands/ListGuardrailsCommand.js +20 -0
  24. package/dist-cjs/commands/PublishAgentVersionCommand.js +20 -0
  25. package/dist-cjs/commands/PutAgentAliasCommand.js +20 -0
  26. package/dist-cjs/commands/UpdateAgentCommand.js +20 -0
  27. package/dist-cjs/commands/UpdateGuardrailCommand.js +20 -0
  28. package/dist-cjs/commands/index.js +26 -0
  29. package/dist-cjs/endpoint/EndpointParameters.js +16 -0
  30. package/dist-cjs/endpoint/bdd.js +28 -0
  31. package/dist-cjs/endpoint/endpointResolver.js +16 -0
  32. package/dist-cjs/extensionConfiguration.js +2 -0
  33. package/dist-cjs/index.js +13 -0
  34. package/dist-cjs/models/WilmaAgentsServiceException.js +12 -0
  35. package/dist-cjs/models/enums.js +118 -0
  36. package/dist-cjs/models/errors.js +154 -0
  37. package/dist-cjs/models/models_0.js +2 -0
  38. package/dist-cjs/runtimeConfig.browser.js +32 -0
  39. package/dist-cjs/runtimeConfig.js +41 -0
  40. package/dist-cjs/runtimeConfig.native.js +15 -0
  41. package/dist-cjs/runtimeConfig.shared.js +41 -0
  42. package/dist-cjs/runtimeExtensions.js +12 -0
  43. package/dist-cjs/schemas/schemas_0.js +1168 -0
  44. package/dist-es/WilmaAgents.js +53 -0
  45. package/dist-es/WilmaAgentsClient.js +45 -0
  46. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  47. package/dist-es/auth/httpAuthSchemeProvider.js +52 -0
  48. package/dist-es/commands/CompareAgentVersionsCommand.js +16 -0
  49. package/dist-es/commands/CreateAgentApiKeyCommand.js +16 -0
  50. package/dist-es/commands/CreateAgentCommand.js +16 -0
  51. package/dist-es/commands/CreateGuardrailCommand.js +16 -0
  52. package/dist-es/commands/DeleteAgentAliasCommand.js +16 -0
  53. package/dist-es/commands/DeleteAgentApiKeyCommand.js +16 -0
  54. package/dist-es/commands/DeleteAgentCommand.js +16 -0
  55. package/dist-es/commands/DeleteGuardrailCommand.js +16 -0
  56. package/dist-es/commands/ExecuteAgentCommand.js +16 -0
  57. package/dist-es/commands/GetAgentCommand.js +16 -0
  58. package/dist-es/commands/GetAgentVersionCommand.js +16 -0
  59. package/dist-es/commands/GetGuardrailCommand.js +16 -0
  60. package/dist-es/commands/ListAgentAliasesCommand.js +16 -0
  61. package/dist-es/commands/ListAgentApiKeysCommand.js +16 -0
  62. package/dist-es/commands/ListAgentVersionsCommand.js +16 -0
  63. package/dist-es/commands/ListAgentsCommand.js +16 -0
  64. package/dist-es/commands/ListAgentsNamesCommand.js +16 -0
  65. package/dist-es/commands/ListAuditRecordsCommand.js +16 -0
  66. package/dist-es/commands/ListGuardrailsCommand.js +16 -0
  67. package/dist-es/commands/PublishAgentVersionCommand.js +16 -0
  68. package/dist-es/commands/PutAgentAliasCommand.js +16 -0
  69. package/dist-es/commands/UpdateAgentCommand.js +16 -0
  70. package/dist-es/commands/UpdateGuardrailCommand.js +16 -0
  71. package/dist-es/commands/index.js +23 -0
  72. package/dist-es/endpoint/EndpointParameters.js +12 -0
  73. package/dist-es/endpoint/bdd.js +25 -0
  74. package/dist-es/endpoint/endpointResolver.js +12 -0
  75. package/dist-es/extensionConfiguration.js +1 -0
  76. package/dist-es/index.js +8 -0
  77. package/dist-es/models/WilmaAgentsServiceException.js +8 -0
  78. package/dist-es/models/enums.js +115 -0
  79. package/dist-es/models/errors.js +141 -0
  80. package/dist-es/models/models_0.js +1 -0
  81. package/dist-es/runtimeConfig.browser.js +27 -0
  82. package/dist-es/runtimeConfig.js +36 -0
  83. package/dist-es/runtimeConfig.native.js +11 -0
  84. package/dist-es/runtimeConfig.shared.js +37 -0
  85. package/dist-es/runtimeExtensions.js +8 -0
  86. package/dist-es/schemas/schemas_0.js +1162 -0
  87. package/dist-types/WilmaAgents.d.ts +182 -0
  88. package/dist-types/WilmaAgentsClient.d.ts +192 -0
  89. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  90. package/dist-types/auth/httpAuthSchemeProvider.d.ts +81 -0
  91. package/dist-types/commands/CompareAgentVersionsCommand.d.ts +91 -0
  92. package/dist-types/commands/CreateAgentApiKeyCommand.d.ts +96 -0
  93. package/dist-types/commands/CreateAgentCommand.d.ts +654 -0
  94. package/dist-types/commands/CreateGuardrailCommand.d.ts +172 -0
  95. package/dist-types/commands/DeleteAgentAliasCommand.d.ts +82 -0
  96. package/dist-types/commands/DeleteAgentApiKeyCommand.d.ts +82 -0
  97. package/dist-types/commands/DeleteAgentCommand.d.ts +77 -0
  98. package/dist-types/commands/DeleteGuardrailCommand.d.ts +80 -0
  99. package/dist-types/commands/ExecuteAgentCommand.d.ts +112 -0
  100. package/dist-types/commands/GetAgentCommand.d.ts +386 -0
  101. package/dist-types/commands/GetAgentVersionCommand.d.ts +365 -0
  102. package/dist-types/commands/GetGuardrailCommand.d.ts +135 -0
  103. package/dist-types/commands/ListAgentAliasesCommand.d.ts +99 -0
  104. package/dist-types/commands/ListAgentApiKeysCommand.d.ts +95 -0
  105. package/dist-types/commands/ListAgentVersionsCommand.d.ts +99 -0
  106. package/dist-types/commands/ListAgentsCommand.d.ts +391 -0
  107. package/dist-types/commands/ListAgentsNamesCommand.d.ts +90 -0
  108. package/dist-types/commands/ListAuditRecordsCommand.d.ts +109 -0
  109. package/dist-types/commands/ListGuardrailsCommand.d.ts +137 -0
  110. package/dist-types/commands/PublishAgentVersionCommand.d.ts +370 -0
  111. package/dist-types/commands/PutAgentAliasCommand.d.ts +107 -0
  112. package/dist-types/commands/UpdateAgentCommand.d.ts +661 -0
  113. package/dist-types/commands/UpdateGuardrailCommand.d.ts +175 -0
  114. package/dist-types/commands/index.d.ts +23 -0
  115. package/dist-types/endpoint/EndpointParameters.d.ts +41 -0
  116. package/dist-types/endpoint/bdd.d.ts +2 -0
  117. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  118. package/dist-types/extensionConfiguration.d.ts +8 -0
  119. package/dist-types/index.d.ts +23 -0
  120. package/dist-types/models/WilmaAgentsServiceException.d.ts +14 -0
  121. package/dist-types/models/enums.d.ts +301 -0
  122. package/dist-types/models/errors.d.ts +129 -0
  123. package/dist-types/models/models_0.d.ts +2186 -0
  124. package/dist-types/runtimeConfig.browser.d.ts +55 -0
  125. package/dist-types/runtimeConfig.d.ts +55 -0
  126. package/dist-types/runtimeConfig.native.d.ts +54 -0
  127. package/dist-types/runtimeConfig.shared.d.ts +32 -0
  128. package/dist-types/runtimeExtensions.d.ts +17 -0
  129. package/dist-types/schemas/schemas_0.d.ts +160 -0
  130. package/package.json +57 -0
@@ -0,0 +1,386 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { GetAgentInput, GetAgentOutput } from "../models/models_0";
4
+ import type { ServiceInputTypes, ServiceOutputTypes, WilmaAgentsClientResolvedConfig } from "../WilmaAgentsClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetAgentCommand}.
14
+ */
15
+ export interface GetAgentCommandInput extends GetAgentInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetAgentCommand}.
21
+ */
22
+ export interface GetAgentCommandOutput extends GetAgentOutput, __MetadataBearer {
23
+ }
24
+ declare const GetAgentCommand_base: {
25
+ new (input: GetAgentCommandInput): import("@smithy/core/client").CommandImpl<GetAgentCommandInput, GetAgentCommandOutput, WilmaAgentsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetAgentCommandInput): import("@smithy/core/client").CommandImpl<GetAgentCommandInput, GetAgentCommandOutput, WilmaAgentsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
30
+ };
31
+ /**
32
+ * Retrieves an agent, including its draft definition and version/rollout state.
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { WilmaAgentsClient, GetAgentCommand } from "@wildix/wilma-agents-client"; // ES Modules import
37
+ * // const { WilmaAgentsClient, GetAgentCommand } = require("@wildix/wilma-agents-client"); // CommonJS import
38
+ * // import type { WilmaAgentsClientConfig } from "@wildix/wilma-agents-client";
39
+ * const config = {}; // type is WilmaAgentsClientConfig
40
+ * const client = new WilmaAgentsClient(config);
41
+ * const input = { // GetAgentInput
42
+ * company: "STRING_VALUE",
43
+ * agentId: "STRING_VALUE", // required
44
+ * };
45
+ * const command = new GetAgentCommand(input);
46
+ * const response = await client.send(command);
47
+ * // { // GetAgentOutput
48
+ * // agent: { // Agent
49
+ * // name: "STRING_VALUE", // required
50
+ * // description: "STRING_VALUE",
51
+ * // category: "STRING_VALUE",
52
+ * // picture: "STRING_VALUE",
53
+ * // engine: { // AgentEngine Union: only one key present
54
+ * // llm: { // AgentLlmEngine
55
+ * // instructions: "STRING_VALUE", // required
56
+ * // model: "STRING_VALUE",
57
+ * // skills: [ // AgentSkillsList
58
+ * // "STRING_VALUE",
59
+ * // ],
60
+ * // capabilities: [ // AgentCapabilitiesList
61
+ * // { // AgentCapability Union: only one key present
62
+ * // tool: { // AgentTool
63
+ * // id: "STRING_VALUE", // required
64
+ * // variables: [ // AgentToolVariablesList
65
+ * // { // AgentToolVariable
66
+ * // name: "STRING_VALUE", // required
67
+ * // handler: { // AgentToolVariableHandler Union: only one key present
68
+ * // auto: {},
69
+ * // guided: { // AgentToolVariableGuidedHandler
70
+ * // description: "STRING_VALUE", // required
71
+ * // },
72
+ * // predefined: { // AgentToolVariablePredefinedHandler
73
+ * // description: "STRING_VALUE", // required
74
+ * // },
75
+ * // },
76
+ * // },
77
+ * // ],
78
+ * // },
79
+ * // function: { // AgentFunctionTool
80
+ * // name: "STRING_VALUE", // required
81
+ * // description: "STRING_VALUE",
82
+ * // parameters: "DOCUMENT_VALUE",
83
+ * // integration: { // FunctionIntegration Union: only one key present
84
+ * // webhook: { // FunctionWebhookIntegration
85
+ * // url: "STRING_VALUE", // required
86
+ * // method: "get" || "post" || "put" || "delete" || "patch",
87
+ * // async: true || false,
88
+ * // authorization: { // WebhookAuthorization Union: only one key present
89
+ * // bearer: { // WebhookAuthorizationBearer
90
+ * // token: "STRING_VALUE", // required
91
+ * // },
92
+ * // basic: { // WebhookAuthorizationBasic
93
+ * // username: "STRING_VALUE", // required
94
+ * // password: "STRING_VALUE", // required
95
+ * // },
96
+ * // oauth: { // WebhookAuthorizationOAuth
97
+ * // clientId: "STRING_VALUE", // required
98
+ * // clientSecret: "STRING_VALUE", // required
99
+ * // endpointUrl: "STRING_VALUE", // required
100
+ * // scope: "STRING_VALUE",
101
+ * // },
102
+ * // },
103
+ * // headers: [ // WebhookHeadersList
104
+ * // { // WebhookHeader
105
+ * // name: "STRING_VALUE", // required
106
+ * // value: "STRING_VALUE", // required
107
+ * // },
108
+ * // ],
109
+ * // timeout: Number("int"),
110
+ * // parameters: "DOCUMENT_VALUE",
111
+ * // },
112
+ * // },
113
+ * // },
114
+ * // kb: { // AgentKnowledgeBase
115
+ * // knowledgeBaseId: "STRING_VALUE",
116
+ * // instructions: "STRING_VALUE",
117
+ * // },
118
+ * // sandbox: { // AgentSandboxCapability Union: only one key present
119
+ * // vercel: { // AgentVercelSandboxOptions
120
+ * // vcpus: Number("int"),
121
+ * // network: "allow-all" || "deny-all" || "allowlist",
122
+ * // allowedDomains: [ // DomainNameList
123
+ * // "STRING_VALUE",
124
+ * // ],
125
+ * // },
126
+ * // snapshot: { // AgentSnapshotSandboxOptions
127
+ * // snapshotId: "STRING_VALUE", // required
128
+ * // network: "allow-all" || "deny-all" || "allowlist",
129
+ * // allowedDomains: [
130
+ * // "STRING_VALUE",
131
+ * // ],
132
+ * // vcpus: Number("int"),
133
+ * // },
134
+ * // },
135
+ * // webSearch: { // AgentWebSearchCapability
136
+ * // contextSize: "low" || "medium" || "high",
137
+ * // allowedDomains: [
138
+ * // "STRING_VALUE",
139
+ * // ],
140
+ * // userLocation: { // WebSearchUserLocation
141
+ * // country: "STRING_VALUE",
142
+ * // region: "STRING_VALUE",
143
+ * // city: "STRING_VALUE",
144
+ * // timezone: "STRING_VALUE",
145
+ * // },
146
+ * // },
147
+ * // webFetch: { // AgentWebFetchCapability
148
+ * // allowedDomains: [
149
+ * // "STRING_VALUE",
150
+ * // ],
151
+ * // },
152
+ * // agent: { // AgentCallCapability
153
+ * // agentId: "STRING_VALUE", // required
154
+ * // variables: [
155
+ * // {
156
+ * // name: "STRING_VALUE", // required
157
+ * // handler: {// Union: only one key present
158
+ * // auto: {},
159
+ * // guided: {
160
+ * // description: "STRING_VALUE", // required
161
+ * // },
162
+ * // predefined: {
163
+ * // description: "STRING_VALUE", // required
164
+ * // },
165
+ * // },
166
+ * // },
167
+ * // ],
168
+ * // },
169
+ * // mcp: { // AgentMcpServerCapability
170
+ * // url: "STRING_VALUE", // required
171
+ * // authorization: {// Union: only one key present
172
+ * // bearer: {
173
+ * // token: "STRING_VALUE", // required
174
+ * // },
175
+ * // basic: {
176
+ * // username: "STRING_VALUE", // required
177
+ * // password: "STRING_VALUE", // required
178
+ * // },
179
+ * // oauth: {
180
+ * // clientId: "STRING_VALUE", // required
181
+ * // clientSecret: "STRING_VALUE", // required
182
+ * // endpointUrl: "STRING_VALUE", // required
183
+ * // scope: "STRING_VALUE",
184
+ * // },
185
+ * // },
186
+ * // allowedTools: [ // FunctionNameList
187
+ * // "STRING_VALUE",
188
+ * // ],
189
+ * // },
190
+ * // handover: { // AgentHandoverCapability
191
+ * // instructions: "STRING_VALUE",
192
+ * // message: "STRING_VALUE",
193
+ * // },
194
+ * // delegation: { // AgentDelegationCapability
195
+ * // agents: [ // AgentIdList
196
+ * // "STRING_VALUE",
197
+ * // ],
198
+ * // instructions: "STRING_VALUE",
199
+ * // },
200
+ * // transfer: { // AgentTransferCapability
201
+ * // targets: [ // VoiceTransferTargetsList // required
202
+ * // { // VoiceTransferTarget
203
+ * // name: "STRING_VALUE", // required
204
+ * // description: "STRING_VALUE",
205
+ * // context: "STRING_VALUE", // required
206
+ * // extension: "STRING_VALUE", // required
207
+ * // },
208
+ * // ],
209
+ * // instructions: "STRING_VALUE",
210
+ * // },
211
+ * // suggestions: {},
212
+ * // },
213
+ * // ],
214
+ * // variables: [ // AgentVariablesList
215
+ * // { // AgentVariable
216
+ * // name: "STRING_VALUE", // required
217
+ * // type: "string" || "number" || "boolean" || "string_array" || "number_array", // required
218
+ * // optional: true || false, // required
219
+ * // description: "STRING_VALUE",
220
+ * // },
221
+ * // ],
222
+ * // },
223
+ * // webhook: { // AgentWebhookEngine
224
+ * // url: "STRING_VALUE", // required
225
+ * // secret: "STRING_VALUE", // required
226
+ * // timeout: Number("int"),
227
+ * // },
228
+ * // sqs: { // AgentSqsEngine
229
+ * // url: "STRING_VALUE", // required
230
+ * // key: "STRING_VALUE", // required
231
+ * // secret: "STRING_VALUE", // required
232
+ * // },
233
+ * // },
234
+ * // channels: { // AgentChannels
235
+ * // assistant: { // AssistantChannelSettings
236
+ * // enabled: true || false, // required
237
+ * // default: true || false,
238
+ * // },
239
+ * // chat: { // ChatChannelSettings
240
+ * // enabled: true || false, // required
241
+ * // discoverable: true || false,
242
+ * // pbxGroupId: "STRING_VALUE",
243
+ * // welcomeMessage: "STRING_VALUE",
244
+ * // },
245
+ * // voice: { // VoiceChannelSettings
246
+ * // enabled: true || false, // required
247
+ * // language: "STRING_VALUE", // required
248
+ * // synthesis: { // VoiceSynthesisSettings
249
+ * // provider: "elevenlabs" || "google", // required
250
+ * // voiceId: "STRING_VALUE", // required
251
+ * // speed: Number("float"),
252
+ * // },
253
+ * // greeting: "STRING_VALUE",
254
+ * // interruptions: { // VoiceInterruptionSettings
255
+ * // enabled: true || false, // required
256
+ * // minWords: Number("int"),
257
+ * // },
258
+ * // silenceTimeout: { // VoiceSilenceTimeoutSettings
259
+ * // seconds: Number("int"), // required
260
+ * // action: { // VoiceTerminateAction Union: only one key present
261
+ * // hangup: { // VoiceTerminateHangupAction
262
+ * // message: "STRING_VALUE",
263
+ * // },
264
+ * // transfer: {
265
+ * // name: "STRING_VALUE", // required
266
+ * // description: "STRING_VALUE",
267
+ * // context: "STRING_VALUE", // required
268
+ * // extension: "STRING_VALUE", // required
269
+ * // },
270
+ * // },
271
+ * // },
272
+ * // maxDuration: { // VoiceMaxDurationSettings
273
+ * // seconds: Number("int"), // required
274
+ * // action: {// Union: only one key present
275
+ * // hangup: {
276
+ * // message: "STRING_VALUE",
277
+ * // },
278
+ * // transfer: {
279
+ * // name: "STRING_VALUE", // required
280
+ * // description: "STRING_VALUE",
281
+ * // context: "STRING_VALUE", // required
282
+ * // extension: "STRING_VALUE", // required
283
+ * // },
284
+ * // },
285
+ * // },
286
+ * // endCall: { // VoiceEndCallSettings
287
+ * // enabled: true || false, // required
288
+ * // phrases: "STRING_VALUE",
289
+ * // },
290
+ * // callerMetadata: { // VoiceCallerMetadataSettings
291
+ * // callerName: true || false,
292
+ * // callerNumber: true || false,
293
+ * // callerEmail: true || false,
294
+ * // callerCompany: true || false,
295
+ * // time: true || false,
296
+ * // timeZone: "STRING_VALUE",
297
+ * // },
298
+ * // },
299
+ * // api: { // ApiChannelSettings
300
+ * // enabled: true || false, // required
301
+ * // },
302
+ * // },
303
+ * // guardrails: [ // GuardrailIdList
304
+ * // "STRING_VALUE",
305
+ * // ],
306
+ * // access: { // AgentAccess
307
+ * // visibility: "explicit" || "organization",
308
+ * // grants: [ // AgentGrantList
309
+ * // { // AgentGrant
310
+ * // permission: "view" || "edit" || "use", // required
311
+ * // principal: { // AgentGrantPrincipal Union: only one key present
312
+ * // userId: "STRING_VALUE",
313
+ * // groupId: "STRING_VALUE",
314
+ * // },
315
+ * // },
316
+ * // ],
317
+ * // },
318
+ * // createdAt: "STRING_VALUE", // required
319
+ * // createdBy: { // Actor
320
+ * // type: "user" || "api_key" || "service", // required
321
+ * // id: "STRING_VALUE", // required
322
+ * // name: "STRING_VALUE",
323
+ * // },
324
+ * // updatedAt: "STRING_VALUE",
325
+ * // updatedBy: {
326
+ * // type: "user" || "api_key" || "service", // required
327
+ * // id: "STRING_VALUE", // required
328
+ * // name: "STRING_VALUE",
329
+ * // },
330
+ * // id: "STRING_VALUE", // required
331
+ * // status: "draft" || "active" || "archived", // required
332
+ * // revision: Number("int"), // required
333
+ * // latestVersion: Number("int"),
334
+ * // aliases: [ // AgentAliasesList
335
+ * // { // AgentAlias
336
+ * // name: "STRING_VALUE", // required
337
+ * // agentId: "STRING_VALUE", // required
338
+ * // description: "STRING_VALUE",
339
+ * // routing: [ // AgentAliasRoutesList // required
340
+ * // { // AgentAliasRoute
341
+ * // version: Number("int"), // required
342
+ * // weight: Number("int"), // required
343
+ * // },
344
+ * // ],
345
+ * // updatedAt: "STRING_VALUE", // required
346
+ * // updatedBy: {
347
+ * // type: "user" || "api_key" || "service", // required
348
+ * // id: "STRING_VALUE", // required
349
+ * // name: "STRING_VALUE",
350
+ * // },
351
+ * // },
352
+ * // ],
353
+ * // },
354
+ * // };
355
+ *
356
+ * ```
357
+ *
358
+ * @param GetAgentCommandInput - {@link GetAgentCommandInput}
359
+ * @returns {@link GetAgentCommandOutput}
360
+ * @see {@link GetAgentCommandInput} for command's `input` shape.
361
+ * @see {@link GetAgentCommandOutput} for command's `response` shape.
362
+ * @see {@link WilmaAgentsClientResolvedConfig | config} for WilmaAgentsClient's `config` shape.
363
+ *
364
+ * @throws {@link AgentNotFoundException} (client fault)
365
+ *
366
+ * @throws {@link ValidationException} (client fault)
367
+ *
368
+ * @throws {@link WilmaAgentsServiceException}
369
+ * <p>Base exception class for all service exceptions from WilmaAgents service.</p>
370
+ *
371
+ *
372
+ * @public
373
+ */
374
+ export declare class GetAgentCommand extends GetAgentCommand_base {
375
+ /** @internal type navigation helper, not in runtime. */
376
+ protected static __types: {
377
+ api: {
378
+ input: GetAgentInput;
379
+ output: GetAgentOutput;
380
+ };
381
+ sdk: {
382
+ input: GetAgentCommandInput;
383
+ output: GetAgentCommandOutput;
384
+ };
385
+ };
386
+ }