@@ -17,6 +17,16 @@ import {
1717 CreateWorkspaceCommandInput ,
1818 CreateWorkspaceCommandOutput ,
1919} from "./commands/CreateWorkspaceCommand" ;
20+ import {
21+ CreateWorkspaceServiceAccountCommand ,
22+ CreateWorkspaceServiceAccountCommandInput ,
23+ CreateWorkspaceServiceAccountCommandOutput ,
24+ } from "./commands/CreateWorkspaceServiceAccountCommand" ;
25+ import {
26+ CreateWorkspaceServiceAccountTokenCommand ,
27+ CreateWorkspaceServiceAccountTokenCommandInput ,
28+ CreateWorkspaceServiceAccountTokenCommandOutput ,
29+ } from "./commands/CreateWorkspaceServiceAccountTokenCommand" ;
2030import {
2131 DeleteWorkspaceApiKeyCommand ,
2232 DeleteWorkspaceApiKeyCommandInput ,
@@ -27,6 +37,16 @@ import {
2737 DeleteWorkspaceCommandInput ,
2838 DeleteWorkspaceCommandOutput ,
2939} from "./commands/DeleteWorkspaceCommand" ;
40+ import {
41+ DeleteWorkspaceServiceAccountCommand ,
42+ DeleteWorkspaceServiceAccountCommandInput ,
43+ DeleteWorkspaceServiceAccountCommandOutput ,
44+ } from "./commands/DeleteWorkspaceServiceAccountCommand" ;
45+ import {
46+ DeleteWorkspaceServiceAccountTokenCommand ,
47+ DeleteWorkspaceServiceAccountTokenCommandInput ,
48+ DeleteWorkspaceServiceAccountTokenCommandOutput ,
49+ } from "./commands/DeleteWorkspaceServiceAccountTokenCommand" ;
3050import {
3151 DescribeWorkspaceAuthenticationCommand ,
3252 DescribeWorkspaceAuthenticationCommandInput ,
@@ -67,6 +87,16 @@ import {
6787 ListWorkspacesCommandInput ,
6888 ListWorkspacesCommandOutput ,
6989} from "./commands/ListWorkspacesCommand" ;
90+ import {
91+ ListWorkspaceServiceAccountsCommand ,
92+ ListWorkspaceServiceAccountsCommandInput ,
93+ ListWorkspaceServiceAccountsCommandOutput ,
94+ } from "./commands/ListWorkspaceServiceAccountsCommand" ;
95+ import {
96+ ListWorkspaceServiceAccountTokensCommand ,
97+ ListWorkspaceServiceAccountTokensCommandInput ,
98+ ListWorkspaceServiceAccountTokensCommandOutput ,
99+ } from "./commands/ListWorkspaceServiceAccountTokensCommand" ;
70100import { TagResourceCommand , TagResourceCommandInput , TagResourceCommandOutput } from "./commands/TagResourceCommand" ;
71101import {
72102 UntagResourceCommand ,
@@ -99,8 +129,12 @@ const commands = {
99129 AssociateLicenseCommand,
100130 CreateWorkspaceCommand,
101131 CreateWorkspaceApiKeyCommand,
132+ CreateWorkspaceServiceAccountCommand,
133+ CreateWorkspaceServiceAccountTokenCommand,
102134 DeleteWorkspaceCommand,
103135 DeleteWorkspaceApiKeyCommand,
136+ DeleteWorkspaceServiceAccountCommand,
137+ DeleteWorkspaceServiceAccountTokenCommand,
104138 DescribeWorkspaceCommand,
105139 DescribeWorkspaceAuthenticationCommand,
106140 DescribeWorkspaceConfigurationCommand,
@@ -109,6 +143,8 @@ const commands = {
109143 ListTagsForResourceCommand,
110144 ListVersionsCommand,
111145 ListWorkspacesCommand,
146+ ListWorkspaceServiceAccountsCommand,
147+ ListWorkspaceServiceAccountTokensCommand,
112148 TagResourceCommand,
113149 UntagResourceCommand,
114150 UpdatePermissionsCommand,
@@ -166,6 +202,40 @@ export interface Grafana {
166202 cb : ( err : any , data ?: CreateWorkspaceApiKeyCommandOutput ) => void
167203 ) : void ;
168204
205+ /**
206+ * @see {@link CreateWorkspaceServiceAccountCommand }
207+ */
208+ createWorkspaceServiceAccount (
209+ args : CreateWorkspaceServiceAccountCommandInput ,
210+ options ?: __HttpHandlerOptions
211+ ) : Promise < CreateWorkspaceServiceAccountCommandOutput > ;
212+ createWorkspaceServiceAccount (
213+ args : CreateWorkspaceServiceAccountCommandInput ,
214+ cb : ( err : any , data ?: CreateWorkspaceServiceAccountCommandOutput ) => void
215+ ) : void ;
216+ createWorkspaceServiceAccount (
217+ args : CreateWorkspaceServiceAccountCommandInput ,
218+ options : __HttpHandlerOptions ,
219+ cb : ( err : any , data ?: CreateWorkspaceServiceAccountCommandOutput ) => void
220+ ) : void ;
221+
222+ /**
223+ * @see {@link CreateWorkspaceServiceAccountTokenCommand }
224+ */
225+ createWorkspaceServiceAccountToken (
226+ args : CreateWorkspaceServiceAccountTokenCommandInput ,
227+ options ?: __HttpHandlerOptions
228+ ) : Promise < CreateWorkspaceServiceAccountTokenCommandOutput > ;
229+ createWorkspaceServiceAccountToken (
230+ args : CreateWorkspaceServiceAccountTokenCommandInput ,
231+ cb : ( err : any , data ?: CreateWorkspaceServiceAccountTokenCommandOutput ) => void
232+ ) : void ;
233+ createWorkspaceServiceAccountToken (
234+ args : CreateWorkspaceServiceAccountTokenCommandInput ,
235+ options : __HttpHandlerOptions ,
236+ cb : ( err : any , data ?: CreateWorkspaceServiceAccountTokenCommandOutput ) => void
237+ ) : void ;
238+
169239 /**
170240 * @see {@link DeleteWorkspaceCommand }
171241 */
@@ -197,6 +267,40 @@ export interface Grafana {
197267 cb : ( err : any , data ?: DeleteWorkspaceApiKeyCommandOutput ) => void
198268 ) : void ;
199269
270+ /**
271+ * @see {@link DeleteWorkspaceServiceAccountCommand }
272+ */
273+ deleteWorkspaceServiceAccount (
274+ args : DeleteWorkspaceServiceAccountCommandInput ,
275+ options ?: __HttpHandlerOptions
276+ ) : Promise < DeleteWorkspaceServiceAccountCommandOutput > ;
277+ deleteWorkspaceServiceAccount (
278+ args : DeleteWorkspaceServiceAccountCommandInput ,
279+ cb : ( err : any , data ?: DeleteWorkspaceServiceAccountCommandOutput ) => void
280+ ) : void ;
281+ deleteWorkspaceServiceAccount (
282+ args : DeleteWorkspaceServiceAccountCommandInput ,
283+ options : __HttpHandlerOptions ,
284+ cb : ( err : any , data ?: DeleteWorkspaceServiceAccountCommandOutput ) => void
285+ ) : void ;
286+
287+ /**
288+ * @see {@link DeleteWorkspaceServiceAccountTokenCommand }
289+ */
290+ deleteWorkspaceServiceAccountToken (
291+ args : DeleteWorkspaceServiceAccountTokenCommandInput ,
292+ options ?: __HttpHandlerOptions
293+ ) : Promise < DeleteWorkspaceServiceAccountTokenCommandOutput > ;
294+ deleteWorkspaceServiceAccountToken (
295+ args : DeleteWorkspaceServiceAccountTokenCommandInput ,
296+ cb : ( err : any , data ?: DeleteWorkspaceServiceAccountTokenCommandOutput ) => void
297+ ) : void ;
298+ deleteWorkspaceServiceAccountToken (
299+ args : DeleteWorkspaceServiceAccountTokenCommandInput ,
300+ options : __HttpHandlerOptions ,
301+ cb : ( err : any , data ?: DeleteWorkspaceServiceAccountTokenCommandOutput ) => void
302+ ) : void ;
303+
200304 /**
201305 * @see {@link DescribeWorkspaceCommand }
202306 */
@@ -323,6 +427,40 @@ export interface Grafana {
323427 cb : ( err : any , data ?: ListWorkspacesCommandOutput ) => void
324428 ) : void ;
325429
430+ /**
431+ * @see {@link ListWorkspaceServiceAccountsCommand }
432+ */
433+ listWorkspaceServiceAccounts (
434+ args : ListWorkspaceServiceAccountsCommandInput ,
435+ options ?: __HttpHandlerOptions
436+ ) : Promise < ListWorkspaceServiceAccountsCommandOutput > ;
437+ listWorkspaceServiceAccounts (
438+ args : ListWorkspaceServiceAccountsCommandInput ,
439+ cb : ( err : any , data ?: ListWorkspaceServiceAccountsCommandOutput ) => void
440+ ) : void ;
441+ listWorkspaceServiceAccounts (
442+ args : ListWorkspaceServiceAccountsCommandInput ,
443+ options : __HttpHandlerOptions ,
444+ cb : ( err : any , data ?: ListWorkspaceServiceAccountsCommandOutput ) => void
445+ ) : void ;
446+
447+ /**
448+ * @see {@link ListWorkspaceServiceAccountTokensCommand }
449+ */
450+ listWorkspaceServiceAccountTokens (
451+ args : ListWorkspaceServiceAccountTokensCommandInput ,
452+ options ?: __HttpHandlerOptions
453+ ) : Promise < ListWorkspaceServiceAccountTokensCommandOutput > ;
454+ listWorkspaceServiceAccountTokens (
455+ args : ListWorkspaceServiceAccountTokensCommandInput ,
456+ cb : ( err : any , data ?: ListWorkspaceServiceAccountTokensCommandOutput ) => void
457+ ) : void ;
458+ listWorkspaceServiceAccountTokens (
459+ args : ListWorkspaceServiceAccountTokensCommandInput ,
460+ options : __HttpHandlerOptions ,
461+ cb : ( err : any , data ?: ListWorkspaceServiceAccountTokensCommandOutput ) => void
462+ ) : void ;
463+
326464 /**
327465 * @see {@link TagResourceCommand }
328466 */
0 commit comments