@aws-sdk/client-grafana 3.1087.0 → 3.1089.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.
Files changed (43) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/Grafana.d.ts +81 -102
  3. package/dist-types/ts3.4/GrafanaClient.d.ts +16 -29
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
  7. package/dist-types/ts3.4/commands/AssociateLicenseCommand.d.ts +4 -9
  8. package/dist-types/ts3.4/commands/CreateWorkspaceApiKeyCommand.d.ts +5 -10
  9. package/dist-types/ts3.4/commands/CreateWorkspaceCommand.d.ts +4 -9
  10. package/dist-types/ts3.4/commands/CreateWorkspaceServiceAccountCommand.d.ts +4 -6
  11. package/dist-types/ts3.4/commands/CreateWorkspaceServiceAccountTokenCommand.d.ts +4 -6
  12. package/dist-types/ts3.4/commands/DeleteWorkspaceApiKeyCommand.d.ts +5 -10
  13. package/dist-types/ts3.4/commands/DeleteWorkspaceCommand.d.ts +4 -9
  14. package/dist-types/ts3.4/commands/DeleteWorkspaceServiceAccountCommand.d.ts +4 -6
  15. package/dist-types/ts3.4/commands/DeleteWorkspaceServiceAccountTokenCommand.d.ts +4 -6
  16. package/dist-types/ts3.4/commands/DescribeWorkspaceAuthenticationCommand.d.ts +4 -6
  17. package/dist-types/ts3.4/commands/DescribeWorkspaceCommand.d.ts +5 -10
  18. package/dist-types/ts3.4/commands/DescribeWorkspaceConfigurationCommand.d.ts +4 -6
  19. package/dist-types/ts3.4/commands/DisassociateLicenseCommand.d.ts +5 -10
  20. package/dist-types/ts3.4/commands/ListPermissionsCommand.d.ts +4 -9
  21. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  22. package/dist-types/ts3.4/commands/ListVersionsCommand.d.ts +2 -4
  23. package/dist-types/ts3.4/commands/ListWorkspaceServiceAccountTokensCommand.d.ts +4 -6
  24. package/dist-types/ts3.4/commands/ListWorkspaceServiceAccountsCommand.d.ts +4 -6
  25. package/dist-types/ts3.4/commands/ListWorkspacesCommand.d.ts +3 -8
  26. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
  27. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
  28. package/dist-types/ts3.4/commands/UpdatePermissionsCommand.d.ts +5 -10
  29. package/dist-types/ts3.4/commands/UpdateWorkspaceAuthenticationCommand.d.ts +4 -6
  30. package/dist-types/ts3.4/commands/UpdateWorkspaceCommand.d.ts +4 -9
  31. package/dist-types/ts3.4/commands/UpdateWorkspaceConfigurationCommand.d.ts +4 -6
  32. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  33. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  34. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  35. package/dist-types/ts3.4/models/enums.d.ts +4 -8
  36. package/dist-types/ts3.4/models/errors.d.ts +6 -18
  37. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  42. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  43. package/package.json +38 -38
package/dist-cjs/index.js CHANGED
@@ -69,7 +69,7 @@ const commonParams = {
69
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
70
70
  };
71
71
 
72
- var version = "3.1086.0";
72
+ var version = "3.1088.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -79,10 +79,7 @@ import {
79
79
  ListWorkspaceServiceAccountTokensCommandInput,
80
80
  ListWorkspaceServiceAccountTokensCommandOutput,
81
81
  } from "./commands/ListWorkspaceServiceAccountTokensCommand";
82
- import {
83
- TagResourceCommandInput,
84
- TagResourceCommandOutput,
85
- } from "./commands/TagResourceCommand";
82
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
86
83
  import {
87
84
  UntagResourceCommandInput,
88
85
  UntagResourceCommandOutput,
@@ -107,383 +104,365 @@ import { GrafanaClient } from "./GrafanaClient";
107
104
  export interface Grafana {
108
105
  associateLicense(
109
106
  args: AssociateLicenseCommandInput,
110
- options?: __HttpHandlerOptions
107
+ options?: __HttpHandlerOptions,
111
108
  ): Promise<AssociateLicenseCommandOutput>;
112
109
  associateLicense(
113
110
  args: AssociateLicenseCommandInput,
114
- cb: (err: any, data?: AssociateLicenseCommandOutput) => void
111
+ cb: (err: any, data?: AssociateLicenseCommandOutput) => void,
115
112
  ): void;
116
113
  associateLicense(
117
114
  args: AssociateLicenseCommandInput,
118
115
  options: __HttpHandlerOptions,
119
- cb: (err: any, data?: AssociateLicenseCommandOutput) => void
116
+ cb: (err: any, data?: AssociateLicenseCommandOutput) => void,
120
117
  ): void;
121
118
  createWorkspace(
122
119
  args: CreateWorkspaceCommandInput,
123
- options?: __HttpHandlerOptions
120
+ options?: __HttpHandlerOptions,
124
121
  ): Promise<CreateWorkspaceCommandOutput>;
125
122
  createWorkspace(
126
123
  args: CreateWorkspaceCommandInput,
127
- cb: (err: any, data?: CreateWorkspaceCommandOutput) => void
124
+ cb: (err: any, data?: CreateWorkspaceCommandOutput) => void,
128
125
  ): void;
129
126
  createWorkspace(
130
127
  args: CreateWorkspaceCommandInput,
131
128
  options: __HttpHandlerOptions,
132
- cb: (err: any, data?: CreateWorkspaceCommandOutput) => void
129
+ cb: (err: any, data?: CreateWorkspaceCommandOutput) => void,
133
130
  ): void;
134
131
  createWorkspaceApiKey(
135
132
  args: CreateWorkspaceApiKeyCommandInput,
136
- options?: __HttpHandlerOptions
133
+ options?: __HttpHandlerOptions,
137
134
  ): Promise<CreateWorkspaceApiKeyCommandOutput>;
138
135
  createWorkspaceApiKey(
139
136
  args: CreateWorkspaceApiKeyCommandInput,
140
- cb: (err: any, data?: CreateWorkspaceApiKeyCommandOutput) => void
137
+ cb: (err: any, data?: CreateWorkspaceApiKeyCommandOutput) => void,
141
138
  ): void;
142
139
  createWorkspaceApiKey(
143
140
  args: CreateWorkspaceApiKeyCommandInput,
144
141
  options: __HttpHandlerOptions,
145
- cb: (err: any, data?: CreateWorkspaceApiKeyCommandOutput) => void
142
+ cb: (err: any, data?: CreateWorkspaceApiKeyCommandOutput) => void,
146
143
  ): void;
147
144
  createWorkspaceServiceAccount(
148
145
  args: CreateWorkspaceServiceAccountCommandInput,
149
- options?: __HttpHandlerOptions
146
+ options?: __HttpHandlerOptions,
150
147
  ): Promise<CreateWorkspaceServiceAccountCommandOutput>;
151
148
  createWorkspaceServiceAccount(
152
149
  args: CreateWorkspaceServiceAccountCommandInput,
153
- cb: (err: any, data?: CreateWorkspaceServiceAccountCommandOutput) => void
150
+ cb: (err: any, data?: CreateWorkspaceServiceAccountCommandOutput) => void,
154
151
  ): void;
155
152
  createWorkspaceServiceAccount(
156
153
  args: CreateWorkspaceServiceAccountCommandInput,
157
154
  options: __HttpHandlerOptions,
158
- cb: (err: any, data?: CreateWorkspaceServiceAccountCommandOutput) => void
155
+ cb: (err: any, data?: CreateWorkspaceServiceAccountCommandOutput) => void,
159
156
  ): void;
160
157
  createWorkspaceServiceAccountToken(
161
158
  args: CreateWorkspaceServiceAccountTokenCommandInput,
162
- options?: __HttpHandlerOptions
159
+ options?: __HttpHandlerOptions,
163
160
  ): Promise<CreateWorkspaceServiceAccountTokenCommandOutput>;
164
161
  createWorkspaceServiceAccountToken(
165
162
  args: CreateWorkspaceServiceAccountTokenCommandInput,
166
- cb: (
167
- err: any,
168
- data?: CreateWorkspaceServiceAccountTokenCommandOutput
169
- ) => void
163
+ cb: (err: any, data?: CreateWorkspaceServiceAccountTokenCommandOutput) => void,
170
164
  ): void;
171
165
  createWorkspaceServiceAccountToken(
172
166
  args: CreateWorkspaceServiceAccountTokenCommandInput,
173
167
  options: __HttpHandlerOptions,
174
- cb: (
175
- err: any,
176
- data?: CreateWorkspaceServiceAccountTokenCommandOutput
177
- ) => void
168
+ cb: (err: any, data?: CreateWorkspaceServiceAccountTokenCommandOutput) => void,
178
169
  ): void;
179
170
  deleteWorkspace(
180
171
  args: DeleteWorkspaceCommandInput,
181
- options?: __HttpHandlerOptions
172
+ options?: __HttpHandlerOptions,
182
173
  ): Promise<DeleteWorkspaceCommandOutput>;
183
174
  deleteWorkspace(
184
175
  args: DeleteWorkspaceCommandInput,
185
- cb: (err: any, data?: DeleteWorkspaceCommandOutput) => void
176
+ cb: (err: any, data?: DeleteWorkspaceCommandOutput) => void,
186
177
  ): void;
187
178
  deleteWorkspace(
188
179
  args: DeleteWorkspaceCommandInput,
189
180
  options: __HttpHandlerOptions,
190
- cb: (err: any, data?: DeleteWorkspaceCommandOutput) => void
181
+ cb: (err: any, data?: DeleteWorkspaceCommandOutput) => void,
191
182
  ): void;
192
183
  deleteWorkspaceApiKey(
193
184
  args: DeleteWorkspaceApiKeyCommandInput,
194
- options?: __HttpHandlerOptions
185
+ options?: __HttpHandlerOptions,
195
186
  ): Promise<DeleteWorkspaceApiKeyCommandOutput>;
196
187
  deleteWorkspaceApiKey(
197
188
  args: DeleteWorkspaceApiKeyCommandInput,
198
- cb: (err: any, data?: DeleteWorkspaceApiKeyCommandOutput) => void
189
+ cb: (err: any, data?: DeleteWorkspaceApiKeyCommandOutput) => void,
199
190
  ): void;
200
191
  deleteWorkspaceApiKey(
201
192
  args: DeleteWorkspaceApiKeyCommandInput,
202
193
  options: __HttpHandlerOptions,
203
- cb: (err: any, data?: DeleteWorkspaceApiKeyCommandOutput) => void
194
+ cb: (err: any, data?: DeleteWorkspaceApiKeyCommandOutput) => void,
204
195
  ): void;
205
196
  deleteWorkspaceServiceAccount(
206
197
  args: DeleteWorkspaceServiceAccountCommandInput,
207
- options?: __HttpHandlerOptions
198
+ options?: __HttpHandlerOptions,
208
199
  ): Promise<DeleteWorkspaceServiceAccountCommandOutput>;
209
200
  deleteWorkspaceServiceAccount(
210
201
  args: DeleteWorkspaceServiceAccountCommandInput,
211
- cb: (err: any, data?: DeleteWorkspaceServiceAccountCommandOutput) => void
202
+ cb: (err: any, data?: DeleteWorkspaceServiceAccountCommandOutput) => void,
212
203
  ): void;
213
204
  deleteWorkspaceServiceAccount(
214
205
  args: DeleteWorkspaceServiceAccountCommandInput,
215
206
  options: __HttpHandlerOptions,
216
- cb: (err: any, data?: DeleteWorkspaceServiceAccountCommandOutput) => void
207
+ cb: (err: any, data?: DeleteWorkspaceServiceAccountCommandOutput) => void,
217
208
  ): void;
218
209
  deleteWorkspaceServiceAccountToken(
219
210
  args: DeleteWorkspaceServiceAccountTokenCommandInput,
220
- options?: __HttpHandlerOptions
211
+ options?: __HttpHandlerOptions,
221
212
  ): Promise<DeleteWorkspaceServiceAccountTokenCommandOutput>;
222
213
  deleteWorkspaceServiceAccountToken(
223
214
  args: DeleteWorkspaceServiceAccountTokenCommandInput,
224
- cb: (
225
- err: any,
226
- data?: DeleteWorkspaceServiceAccountTokenCommandOutput
227
- ) => void
215
+ cb: (err: any, data?: DeleteWorkspaceServiceAccountTokenCommandOutput) => void,
228
216
  ): void;
229
217
  deleteWorkspaceServiceAccountToken(
230
218
  args: DeleteWorkspaceServiceAccountTokenCommandInput,
231
219
  options: __HttpHandlerOptions,
232
- cb: (
233
- err: any,
234
- data?: DeleteWorkspaceServiceAccountTokenCommandOutput
235
- ) => void
220
+ cb: (err: any, data?: DeleteWorkspaceServiceAccountTokenCommandOutput) => void,
236
221
  ): void;
237
222
  describeWorkspace(
238
223
  args: DescribeWorkspaceCommandInput,
239
- options?: __HttpHandlerOptions
224
+ options?: __HttpHandlerOptions,
240
225
  ): Promise<DescribeWorkspaceCommandOutput>;
241
226
  describeWorkspace(
242
227
  args: DescribeWorkspaceCommandInput,
243
- cb: (err: any, data?: DescribeWorkspaceCommandOutput) => void
228
+ cb: (err: any, data?: DescribeWorkspaceCommandOutput) => void,
244
229
  ): void;
245
230
  describeWorkspace(
246
231
  args: DescribeWorkspaceCommandInput,
247
232
  options: __HttpHandlerOptions,
248
- cb: (err: any, data?: DescribeWorkspaceCommandOutput) => void
233
+ cb: (err: any, data?: DescribeWorkspaceCommandOutput) => void,
249
234
  ): void;
250
235
  describeWorkspaceAuthentication(
251
236
  args: DescribeWorkspaceAuthenticationCommandInput,
252
- options?: __HttpHandlerOptions
237
+ options?: __HttpHandlerOptions,
253
238
  ): Promise<DescribeWorkspaceAuthenticationCommandOutput>;
254
239
  describeWorkspaceAuthentication(
255
240
  args: DescribeWorkspaceAuthenticationCommandInput,
256
- cb: (err: any, data?: DescribeWorkspaceAuthenticationCommandOutput) => void
241
+ cb: (err: any, data?: DescribeWorkspaceAuthenticationCommandOutput) => void,
257
242
  ): void;
258
243
  describeWorkspaceAuthentication(
259
244
  args: DescribeWorkspaceAuthenticationCommandInput,
260
245
  options: __HttpHandlerOptions,
261
- cb: (err: any, data?: DescribeWorkspaceAuthenticationCommandOutput) => void
246
+ cb: (err: any, data?: DescribeWorkspaceAuthenticationCommandOutput) => void,
262
247
  ): void;
263
248
  describeWorkspaceConfiguration(
264
249
  args: DescribeWorkspaceConfigurationCommandInput,
265
- options?: __HttpHandlerOptions
250
+ options?: __HttpHandlerOptions,
266
251
  ): Promise<DescribeWorkspaceConfigurationCommandOutput>;
267
252
  describeWorkspaceConfiguration(
268
253
  args: DescribeWorkspaceConfigurationCommandInput,
269
- cb: (err: any, data?: DescribeWorkspaceConfigurationCommandOutput) => void
254
+ cb: (err: any, data?: DescribeWorkspaceConfigurationCommandOutput) => void,
270
255
  ): void;
271
256
  describeWorkspaceConfiguration(
272
257
  args: DescribeWorkspaceConfigurationCommandInput,
273
258
  options: __HttpHandlerOptions,
274
- cb: (err: any, data?: DescribeWorkspaceConfigurationCommandOutput) => void
259
+ cb: (err: any, data?: DescribeWorkspaceConfigurationCommandOutput) => void,
275
260
  ): void;
276
261
  disassociateLicense(
277
262
  args: DisassociateLicenseCommandInput,
278
- options?: __HttpHandlerOptions
263
+ options?: __HttpHandlerOptions,
279
264
  ): Promise<DisassociateLicenseCommandOutput>;
280
265
  disassociateLicense(
281
266
  args: DisassociateLicenseCommandInput,
282
- cb: (err: any, data?: DisassociateLicenseCommandOutput) => void
267
+ cb: (err: any, data?: DisassociateLicenseCommandOutput) => void,
283
268
  ): void;
284
269
  disassociateLicense(
285
270
  args: DisassociateLicenseCommandInput,
286
271
  options: __HttpHandlerOptions,
287
- cb: (err: any, data?: DisassociateLicenseCommandOutput) => void
272
+ cb: (err: any, data?: DisassociateLicenseCommandOutput) => void,
288
273
  ): void;
289
274
  listPermissions(
290
275
  args: ListPermissionsCommandInput,
291
- options?: __HttpHandlerOptions
276
+ options?: __HttpHandlerOptions,
292
277
  ): Promise<ListPermissionsCommandOutput>;
293
278
  listPermissions(
294
279
  args: ListPermissionsCommandInput,
295
- cb: (err: any, data?: ListPermissionsCommandOutput) => void
280
+ cb: (err: any, data?: ListPermissionsCommandOutput) => void,
296
281
  ): void;
297
282
  listPermissions(
298
283
  args: ListPermissionsCommandInput,
299
284
  options: __HttpHandlerOptions,
300
- cb: (err: any, data?: ListPermissionsCommandOutput) => void
285
+ cb: (err: any, data?: ListPermissionsCommandOutput) => void,
301
286
  ): void;
302
287
  listTagsForResource(
303
288
  args: ListTagsForResourceCommandInput,
304
- options?: __HttpHandlerOptions
289
+ options?: __HttpHandlerOptions,
305
290
  ): Promise<ListTagsForResourceCommandOutput>;
306
291
  listTagsForResource(
307
292
  args: ListTagsForResourceCommandInput,
308
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
293
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
309
294
  ): void;
310
295
  listTagsForResource(
311
296
  args: ListTagsForResourceCommandInput,
312
297
  options: __HttpHandlerOptions,
313
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
298
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
314
299
  ): void;
315
300
  listVersions(): Promise<ListVersionsCommandOutput>;
316
301
  listVersions(
317
302
  args: ListVersionsCommandInput,
318
- options?: __HttpHandlerOptions
303
+ options?: __HttpHandlerOptions,
319
304
  ): Promise<ListVersionsCommandOutput>;
320
305
  listVersions(
321
306
  args: ListVersionsCommandInput,
322
- cb: (err: any, data?: ListVersionsCommandOutput) => void
307
+ cb: (err: any, data?: ListVersionsCommandOutput) => void,
323
308
  ): void;
324
309
  listVersions(
325
310
  args: ListVersionsCommandInput,
326
311
  options: __HttpHandlerOptions,
327
- cb: (err: any, data?: ListVersionsCommandOutput) => void
312
+ cb: (err: any, data?: ListVersionsCommandOutput) => void,
328
313
  ): void;
329
314
  listWorkspaces(): Promise<ListWorkspacesCommandOutput>;
330
315
  listWorkspaces(
331
316
  args: ListWorkspacesCommandInput,
332
- options?: __HttpHandlerOptions
317
+ options?: __HttpHandlerOptions,
333
318
  ): Promise<ListWorkspacesCommandOutput>;
334
319
  listWorkspaces(
335
320
  args: ListWorkspacesCommandInput,
336
- cb: (err: any, data?: ListWorkspacesCommandOutput) => void
321
+ cb: (err: any, data?: ListWorkspacesCommandOutput) => void,
337
322
  ): void;
338
323
  listWorkspaces(
339
324
  args: ListWorkspacesCommandInput,
340
325
  options: __HttpHandlerOptions,
341
- cb: (err: any, data?: ListWorkspacesCommandOutput) => void
326
+ cb: (err: any, data?: ListWorkspacesCommandOutput) => void,
342
327
  ): void;
343
328
  listWorkspaceServiceAccounts(
344
329
  args: ListWorkspaceServiceAccountsCommandInput,
345
- options?: __HttpHandlerOptions
330
+ options?: __HttpHandlerOptions,
346
331
  ): Promise<ListWorkspaceServiceAccountsCommandOutput>;
347
332
  listWorkspaceServiceAccounts(
348
333
  args: ListWorkspaceServiceAccountsCommandInput,
349
- cb: (err: any, data?: ListWorkspaceServiceAccountsCommandOutput) => void
334
+ cb: (err: any, data?: ListWorkspaceServiceAccountsCommandOutput) => void,
350
335
  ): void;
351
336
  listWorkspaceServiceAccounts(
352
337
  args: ListWorkspaceServiceAccountsCommandInput,
353
338
  options: __HttpHandlerOptions,
354
- cb: (err: any, data?: ListWorkspaceServiceAccountsCommandOutput) => void
339
+ cb: (err: any, data?: ListWorkspaceServiceAccountsCommandOutput) => void,
355
340
  ): void;
356
341
  listWorkspaceServiceAccountTokens(
357
342
  args: ListWorkspaceServiceAccountTokensCommandInput,
358
- options?: __HttpHandlerOptions
343
+ options?: __HttpHandlerOptions,
359
344
  ): Promise<ListWorkspaceServiceAccountTokensCommandOutput>;
360
345
  listWorkspaceServiceAccountTokens(
361
346
  args: ListWorkspaceServiceAccountTokensCommandInput,
362
- cb: (
363
- err: any,
364
- data?: ListWorkspaceServiceAccountTokensCommandOutput
365
- ) => void
347
+ cb: (err: any, data?: ListWorkspaceServiceAccountTokensCommandOutput) => void,
366
348
  ): void;
367
349
  listWorkspaceServiceAccountTokens(
368
350
  args: ListWorkspaceServiceAccountTokensCommandInput,
369
351
  options: __HttpHandlerOptions,
370
- cb: (
371
- err: any,
372
- data?: ListWorkspaceServiceAccountTokensCommandOutput
373
- ) => void
352
+ cb: (err: any, data?: ListWorkspaceServiceAccountTokensCommandOutput) => void,
374
353
  ): void;
375
354
  tagResource(
376
355
  args: TagResourceCommandInput,
377
- options?: __HttpHandlerOptions
356
+ options?: __HttpHandlerOptions,
378
357
  ): Promise<TagResourceCommandOutput>;
379
358
  tagResource(
380
359
  args: TagResourceCommandInput,
381
- cb: (err: any, data?: TagResourceCommandOutput) => void
360
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
382
361
  ): void;
383
362
  tagResource(
384
363
  args: TagResourceCommandInput,
385
364
  options: __HttpHandlerOptions,
386
- cb: (err: any, data?: TagResourceCommandOutput) => void
365
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
387
366
  ): void;
388
367
  untagResource(
389
368
  args: UntagResourceCommandInput,
390
- options?: __HttpHandlerOptions
369
+ options?: __HttpHandlerOptions,
391
370
  ): Promise<UntagResourceCommandOutput>;
392
371
  untagResource(
393
372
  args: UntagResourceCommandInput,
394
- cb: (err: any, data?: UntagResourceCommandOutput) => void
373
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
395
374
  ): void;
396
375
  untagResource(
397
376
  args: UntagResourceCommandInput,
398
377
  options: __HttpHandlerOptions,
399
- cb: (err: any, data?: UntagResourceCommandOutput) => void
378
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
400
379
  ): void;
401
380
  updatePermissions(
402
381
  args: UpdatePermissionsCommandInput,
403
- options?: __HttpHandlerOptions
382
+ options?: __HttpHandlerOptions,
404
383
  ): Promise<UpdatePermissionsCommandOutput>;
405
384
  updatePermissions(
406
385
  args: UpdatePermissionsCommandInput,
407
- cb: (err: any, data?: UpdatePermissionsCommandOutput) => void
386
+ cb: (err: any, data?: UpdatePermissionsCommandOutput) => void,
408
387
  ): void;
409
388
  updatePermissions(
410
389
  args: UpdatePermissionsCommandInput,
411
390
  options: __HttpHandlerOptions,
412
- cb: (err: any, data?: UpdatePermissionsCommandOutput) => void
391
+ cb: (err: any, data?: UpdatePermissionsCommandOutput) => void,
413
392
  ): void;
414
393
  updateWorkspace(
415
394
  args: UpdateWorkspaceCommandInput,
416
- options?: __HttpHandlerOptions
395
+ options?: __HttpHandlerOptions,
417
396
  ): Promise<UpdateWorkspaceCommandOutput>;
418
397
  updateWorkspace(
419
398
  args: UpdateWorkspaceCommandInput,
420
- cb: (err: any, data?: UpdateWorkspaceCommandOutput) => void
399
+ cb: (err: any, data?: UpdateWorkspaceCommandOutput) => void,
421
400
  ): void;
422
401
  updateWorkspace(
423
402
  args: UpdateWorkspaceCommandInput,
424
403
  options: __HttpHandlerOptions,
425
- cb: (err: any, data?: UpdateWorkspaceCommandOutput) => void
404
+ cb: (err: any, data?: UpdateWorkspaceCommandOutput) => void,
426
405
  ): void;
427
406
  updateWorkspaceAuthentication(
428
407
  args: UpdateWorkspaceAuthenticationCommandInput,
429
- options?: __HttpHandlerOptions
408
+ options?: __HttpHandlerOptions,
430
409
  ): Promise<UpdateWorkspaceAuthenticationCommandOutput>;
431
410
  updateWorkspaceAuthentication(
432
411
  args: UpdateWorkspaceAuthenticationCommandInput,
433
- cb: (err: any, data?: UpdateWorkspaceAuthenticationCommandOutput) => void
412
+ cb: (err: any, data?: UpdateWorkspaceAuthenticationCommandOutput) => void,
434
413
  ): void;
435
414
  updateWorkspaceAuthentication(
436
415
  args: UpdateWorkspaceAuthenticationCommandInput,
437
416
  options: __HttpHandlerOptions,
438
- cb: (err: any, data?: UpdateWorkspaceAuthenticationCommandOutput) => void
417
+ cb: (err: any, data?: UpdateWorkspaceAuthenticationCommandOutput) => void,
439
418
  ): void;
440
419
  updateWorkspaceConfiguration(
441
420
  args: UpdateWorkspaceConfigurationCommandInput,
442
- options?: __HttpHandlerOptions
421
+ options?: __HttpHandlerOptions,
443
422
  ): Promise<UpdateWorkspaceConfigurationCommandOutput>;
444
423
  updateWorkspaceConfiguration(
445
424
  args: UpdateWorkspaceConfigurationCommandInput,
446
- cb: (err: any, data?: UpdateWorkspaceConfigurationCommandOutput) => void
425
+ cb: (err: any, data?: UpdateWorkspaceConfigurationCommandOutput) => void,
447
426
  ): void;
448
427
  updateWorkspaceConfiguration(
449
428
  args: UpdateWorkspaceConfigurationCommandInput,
450
429
  options: __HttpHandlerOptions,
451
- cb: (err: any, data?: UpdateWorkspaceConfigurationCommandOutput) => void
430
+ cb: (err: any, data?: UpdateWorkspaceConfigurationCommandOutput) => void,
452
431
  ): void;
453
432
  paginateListPermissions(
454
433
  args: ListPermissionsCommandInput,
455
434
  paginationConfig?: Pick<
456
435
  PaginationConfiguration,
457
436
  Exclude<keyof PaginationConfiguration, "client">
458
- >
437
+ >,
459
438
  ): Paginator<ListPermissionsCommandOutput>;
460
439
  paginateListVersions(
461
440
  args?: ListVersionsCommandInput,
462
441
  paginationConfig?: Pick<
463
442
  PaginationConfiguration,
464
443
  Exclude<keyof PaginationConfiguration, "client">
465
- >
444
+ >,
466
445
  ): Paginator<ListVersionsCommandOutput>;
467
446
  paginateListWorkspaces(
468
447
  args?: ListWorkspacesCommandInput,
469
448
  paginationConfig?: Pick<
470
449
  PaginationConfiguration,
471
450
  Exclude<keyof PaginationConfiguration, "client">
472
- >
451
+ >,
473
452
  ): Paginator<ListWorkspacesCommandOutput>;
474
453
  paginateListWorkspaceServiceAccounts(
475
454
  args: ListWorkspaceServiceAccountsCommandInput,
476
455
  paginationConfig?: Pick<
477
456
  PaginationConfiguration,
478
457
  Exclude<keyof PaginationConfiguration, "client">
479
- >
458
+ >,
480
459
  ): Paginator<ListWorkspaceServiceAccountsCommandOutput>;
481
460
  paginateListWorkspaceServiceAccountTokens(
482
461
  args: ListWorkspaceServiceAccountTokensCommandInput,
483
462
  paginationConfig?: Pick<
484
463
  PaginationConfiguration,
485
464
  Exclude<keyof PaginationConfiguration, "client">
486
- >
465
+ >,
487
466
  ): Paginator<ListWorkspaceServiceAccountTokensCommandOutput>;
488
467
  }
489
468
  export declare class Grafana extends GrafanaClient implements Grafana {}
@@ -11,10 +11,7 @@ import {
11
11
  Client as __Client,
12
12
  } from "@smithy/core/client";
13
13
  import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
14
- import {
15
- EndpointInputConfig,
16
- EndpointResolvedConfig,
17
- } from "@smithy/core/endpoints";
14
+ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
18
15
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
19
16
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
20
17
  import {
@@ -112,10 +109,7 @@ import {
112
109
  ListWorkspaceServiceAccountTokensCommandInput,
113
110
  ListWorkspaceServiceAccountTokensCommandOutput,
114
111
  } from "./commands/ListWorkspaceServiceAccountTokensCommand";
115
- import {
116
- TagResourceCommandInput,
117
- TagResourceCommandOutput,
118
- } from "./commands/TagResourceCommand";
112
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
119
113
  import {
120
114
  UntagResourceCommandInput,
121
115
  UntagResourceCommandOutput,
@@ -195,8 +189,7 @@ export type ServiceOutputTypes =
195
189
  | UpdateWorkspaceAuthenticationCommandOutput
196
190
  | UpdateWorkspaceCommandOutput
197
191
  | UpdateWorkspaceConfigurationCommandOutput;
198
- export interface ClientDefaults
199
- extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
192
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
200
193
  requestHandler?: __HttpHandlerUserInput;
201
194
  sha256?: __ChecksumConstructor | __HashConstructor;
202
195
  urlParser?: __UrlParser;
@@ -221,9 +214,7 @@ export interface ClientDefaults
221
214
  extensions?: RuntimeExtension[];
222
215
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
223
216
  }
224
- export type GrafanaClientConfigType = Partial<
225
- __SmithyConfiguration<__HttpHandlerOptions>
226
- > &
217
+ export type GrafanaClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
227
218
  ClientDefaults &
228
219
  UserAgentInputConfig &
229
220
  RetryInputConfig &
@@ -233,19 +224,17 @@ export type GrafanaClientConfigType = Partial<
233
224
  HttpAuthSchemeInputConfig &
234
225
  ClientInputEndpointParameters;
235
226
  export interface GrafanaClientConfig extends GrafanaClientConfigType {}
236
- export type GrafanaClientResolvedConfigType =
237
- __SmithyResolvedConfiguration<__HttpHandlerOptions> &
238
- Required<ClientDefaults> &
239
- RuntimeExtensionsConfig &
240
- UserAgentResolvedConfig &
241
- RetryResolvedConfig &
242
- RegionResolvedConfig &
243
- HostHeaderResolvedConfig &
244
- EndpointResolvedConfig<EndpointParameters> &
245
- HttpAuthSchemeResolvedConfig &
246
- ClientResolvedEndpointParameters;
247
- export interface GrafanaClientResolvedConfig
248
- extends GrafanaClientResolvedConfigType {}
227
+ export type GrafanaClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
228
+ Required<ClientDefaults> &
229
+ RuntimeExtensionsConfig &
230
+ UserAgentResolvedConfig &
231
+ RetryResolvedConfig &
232
+ RegionResolvedConfig &
233
+ HostHeaderResolvedConfig &
234
+ EndpointResolvedConfig<EndpointParameters> &
235
+ HttpAuthSchemeResolvedConfig &
236
+ ClientResolvedEndpointParameters;
237
+ export interface GrafanaClientResolvedConfig extends GrafanaClientResolvedConfigType {}
249
238
  export declare class GrafanaClient extends __Client<
250
239
  __HttpHandlerOptions,
251
240
  ServiceInputTypes,
@@ -253,8 +242,6 @@ export declare class GrafanaClient extends __Client<
253
242
  GrafanaClientResolvedConfig
254
243
  > {
255
244
  readonly config: GrafanaClientResolvedConfig;
256
- constructor(
257
- ...[configuration]: __CheckOptionalClientConfig<GrafanaClientConfig>
258
- );
245
+ constructor(...[configuration]: __CheckOptionalClientConfig<GrafanaClientConfig>);
259
246
  destroy(): void;
260
247
  }
@@ -7,17 +7,10 @@ import { GrafanaHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
- setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: GrafanaHttpAuthSchemeProvider
12
- ): void;
10
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: GrafanaHttpAuthSchemeProvider): void;
13
11
  httpAuthSchemeProvider(): GrafanaHttpAuthSchemeProvider;
14
- setCredentials(
15
- credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
- ): void;
17
- credentials():
18
- | AwsCredentialIdentity
19
- | AwsCredentialIdentityProvider
20
- | undefined;
12
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
13
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
21
14
  }
22
15
  export type HttpAuthRuntimeConfig = Partial<{
23
16
  httpAuthSchemes: HttpAuthScheme[];
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
25
18
  credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
19
  }>;
27
20
  export declare const getHttpAuthExtensionConfiguration: (
28
- runtimeConfig: HttpAuthRuntimeConfig
21
+ runtimeConfig: HttpAuthRuntimeConfig,
29
22
  ) => HttpAuthExtensionConfiguration;
30
23
  export declare const resolveHttpAuthRuntimeConfig: (
31
- config: HttpAuthExtensionConfiguration
24
+ config: HttpAuthExtensionConfiguration,
32
25
  ) => HttpAuthRuntimeConfig;
@@ -12,36 +12,32 @@ import {
12
12
  Provider,
13
13
  } from "@smithy/types";
14
14
  import { GrafanaClientResolvedConfig } from "../GrafanaClient";
15
- export interface GrafanaHttpAuthSchemeParameters
16
- extends HttpAuthSchemeParameters {
15
+ export interface GrafanaHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
17
16
  region?: string;
18
17
  }
19
- export interface GrafanaHttpAuthSchemeParametersProvider
20
- extends HttpAuthSchemeParametersProvider<
21
- GrafanaClientResolvedConfig,
22
- HandlerExecutionContext,
23
- GrafanaHttpAuthSchemeParameters,
24
- object
25
- > {}
18
+ export interface GrafanaHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
19
+ GrafanaClientResolvedConfig,
20
+ HandlerExecutionContext,
21
+ GrafanaHttpAuthSchemeParameters,
22
+ object
23
+ > {}
26
24
  export declare const defaultGrafanaHttpAuthSchemeParametersProvider: (
27
25
  config: GrafanaClientResolvedConfig,
28
26
  context: HandlerExecutionContext,
29
- input: object
27
+ input: object,
30
28
  ) => Promise<GrafanaHttpAuthSchemeParameters>;
31
- export interface GrafanaHttpAuthSchemeProvider
32
- extends HttpAuthSchemeProvider<GrafanaHttpAuthSchemeParameters> {}
29
+ export interface GrafanaHttpAuthSchemeProvider extends HttpAuthSchemeProvider<GrafanaHttpAuthSchemeParameters> {}
33
30
  export declare const defaultGrafanaHttpAuthSchemeProvider: GrafanaHttpAuthSchemeProvider;
34
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
32
  authSchemePreference?: string[] | Provider<string[]>;
36
33
  httpAuthSchemes?: HttpAuthScheme[];
37
34
  httpAuthSchemeProvider?: GrafanaHttpAuthSchemeProvider;
38
35
  }
39
- export interface HttpAuthSchemeResolvedConfig
40
- extends AwsSdkSigV4AuthResolvedConfig {
36
+ export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
41
37
  readonly authSchemePreference: Provider<string[]>;
42
38
  readonly httpAuthSchemes: HttpAuthScheme[];
43
39
  readonly httpAuthSchemeProvider: GrafanaHttpAuthSchemeProvider;
44
40
  }
45
41
  export declare const resolveHttpAuthSchemeConfig: <T>(
46
- config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
42
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
47
43
  ) => T & HttpAuthSchemeResolvedConfig;