@@ -17,6 +17,16 @@ import {
17
17
CreateWorkspaceCommandInput ,
18
18
CreateWorkspaceCommandOutput ,
19
19
} 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" ;
20
30
import {
21
31
DeleteWorkspaceApiKeyCommand ,
22
32
DeleteWorkspaceApiKeyCommandInput ,
@@ -27,6 +37,16 @@ import {
27
37
DeleteWorkspaceCommandInput ,
28
38
DeleteWorkspaceCommandOutput ,
29
39
} 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" ;
30
50
import {
31
51
DescribeWorkspaceAuthenticationCommand ,
32
52
DescribeWorkspaceAuthenticationCommandInput ,
@@ -67,6 +87,16 @@ import {
67
87
ListWorkspacesCommandInput ,
68
88
ListWorkspacesCommandOutput ,
69
89
} 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" ;
70
100
import { TagResourceCommand , TagResourceCommandInput , TagResourceCommandOutput } from "./commands/TagResourceCommand" ;
71
101
import {
72
102
UntagResourceCommand ,
@@ -99,8 +129,12 @@ const commands = {
99
129
AssociateLicenseCommand,
100
130
CreateWorkspaceCommand,
101
131
CreateWorkspaceApiKeyCommand,
132
+ CreateWorkspaceServiceAccountCommand,
133
+ CreateWorkspaceServiceAccountTokenCommand,
102
134
DeleteWorkspaceCommand,
103
135
DeleteWorkspaceApiKeyCommand,
136
+ DeleteWorkspaceServiceAccountCommand,
137
+ DeleteWorkspaceServiceAccountTokenCommand,
104
138
DescribeWorkspaceCommand,
105
139
DescribeWorkspaceAuthenticationCommand,
106
140
DescribeWorkspaceConfigurationCommand,
@@ -109,6 +143,8 @@ const commands = {
109
143
ListTagsForResourceCommand,
110
144
ListVersionsCommand,
111
145
ListWorkspacesCommand,
146
+ ListWorkspaceServiceAccountsCommand,
147
+ ListWorkspaceServiceAccountTokensCommand,
112
148
TagResourceCommand,
113
149
UntagResourceCommand,
114
150
UpdatePermissionsCommand,
@@ -166,6 +202,40 @@ export interface Grafana {
166
202
cb : ( err : any , data ?: CreateWorkspaceApiKeyCommandOutput ) => void
167
203
) : void ;
168
204
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
+
169
239
/**
170
240
* @see {@link DeleteWorkspaceCommand }
171
241
*/
@@ -197,6 +267,40 @@ export interface Grafana {
197
267
cb : ( err : any , data ?: DeleteWorkspaceApiKeyCommandOutput ) => void
198
268
) : void ;
199
269
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
+
200
304
/**
201
305
* @see {@link DescribeWorkspaceCommand }
202
306
*/
@@ -323,6 +427,40 @@ export interface Grafana {
323
427
cb : ( err : any , data ?: ListWorkspacesCommandOutput ) => void
324
428
) : void ;
325
429
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
+
326
464
/**
327
465
* @see {@link TagResourceCommand }
328
466
*/
0 commit comments