@aws-sdk/client-grafana 3.927.0 → 3.929.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/dist-cjs/index.js +1241 -1245
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/GrafanaClient.js +2 -0
- package/dist-es/commands/AssociateLicenseCommand.js +3 -10
- package/dist-es/commands/CreateWorkspaceApiKeyCommand.js +3 -10
- package/dist-es/commands/CreateWorkspaceCommand.js +3 -10
- package/dist-es/commands/CreateWorkspaceServiceAccountCommand.js +3 -9
- package/dist-es/commands/CreateWorkspaceServiceAccountTokenCommand.js +3 -10
- package/dist-es/commands/DeleteWorkspaceApiKeyCommand.js +3 -9
- package/dist-es/commands/DeleteWorkspaceCommand.js +3 -10
- package/dist-es/commands/DeleteWorkspaceServiceAccountCommand.js +3 -9
- package/dist-es/commands/DeleteWorkspaceServiceAccountTokenCommand.js +3 -9
- package/dist-es/commands/DescribeWorkspaceAuthenticationCommand.js +3 -10
- package/dist-es/commands/DescribeWorkspaceCommand.js +3 -10
- package/dist-es/commands/DescribeWorkspaceConfigurationCommand.js +3 -9
- package/dist-es/commands/DisassociateLicenseCommand.js +3 -10
- package/dist-es/commands/ListPermissionsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListVersionsCommand.js +3 -9
- package/dist-es/commands/ListWorkspaceServiceAccountTokensCommand.js +3 -9
- package/dist-es/commands/ListWorkspaceServiceAccountsCommand.js +3 -9
- package/dist-es/commands/ListWorkspacesCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdatePermissionsCommand.js +3 -9
- package/dist-es/commands/UpdateWorkspaceAuthenticationCommand.js +3 -10
- package/dist-es/commands/UpdateWorkspaceCommand.js +3 -10
- package/dist-es/commands/UpdateWorkspaceConfigurationCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -102
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1189 -0
- package/dist-types/GrafanaClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -84
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +132 -0
- package/dist-types/ts3.4/GrafanaClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -61
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +138 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_restJson1.js +0 -938
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -227
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -305
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
|
-
var uuid = require('@smithy/uuid');
|
|
20
18
|
|
|
21
19
|
const resolveClientEndpointParameters = (options) => {
|
|
22
20
|
return Object.assign(options, {
|
|
@@ -92,6 +90,7 @@ class GrafanaClient extends smithyClient.Client {
|
|
|
92
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
93
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
94
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
95
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
96
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
97
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -111,14 +110,14 @@ class GrafanaClient extends smithyClient.Client {
|
|
|
111
110
|
}
|
|
112
111
|
}
|
|
113
112
|
|
|
114
|
-
class GrafanaServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let GrafanaServiceException$1 = class GrafanaServiceException extends smithyClient.ServiceException {
|
|
115
114
|
constructor(options) {
|
|
116
115
|
super(options);
|
|
117
116
|
Object.setPrototypeOf(this, GrafanaServiceException.prototype);
|
|
118
117
|
}
|
|
119
|
-
}
|
|
118
|
+
};
|
|
120
119
|
|
|
121
|
-
class AccessDeniedException extends GrafanaServiceException {
|
|
120
|
+
let AccessDeniedException$1 = class AccessDeniedException extends GrafanaServiceException$1 {
|
|
122
121
|
name = "AccessDeniedException";
|
|
123
122
|
$fault = "client";
|
|
124
123
|
constructor(opts) {
|
|
@@ -129,12 +128,12 @@ class AccessDeniedException extends GrafanaServiceException {
|
|
|
129
128
|
});
|
|
130
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
130
|
}
|
|
132
|
-
}
|
|
131
|
+
};
|
|
133
132
|
const AccountAccessType = {
|
|
134
133
|
CURRENT_ACCOUNT: "CURRENT_ACCOUNT",
|
|
135
134
|
ORGANIZATION: "ORGANIZATION",
|
|
136
135
|
};
|
|
137
|
-
class ConflictException extends GrafanaServiceException {
|
|
136
|
+
let ConflictException$1 = class ConflictException extends GrafanaServiceException$1 {
|
|
138
137
|
name = "ConflictException";
|
|
139
138
|
$fault = "client";
|
|
140
139
|
resourceId;
|
|
@@ -149,8 +148,8 @@ class ConflictException extends GrafanaServiceException {
|
|
|
149
148
|
this.resourceId = opts.resourceId;
|
|
150
149
|
this.resourceType = opts.resourceType;
|
|
151
150
|
}
|
|
152
|
-
}
|
|
153
|
-
class InternalServerException extends GrafanaServiceException {
|
|
151
|
+
};
|
|
152
|
+
let InternalServerException$1 = class InternalServerException extends GrafanaServiceException$1 {
|
|
154
153
|
name = "InternalServerException";
|
|
155
154
|
$fault = "server";
|
|
156
155
|
$retryable = {};
|
|
@@ -164,8 +163,8 @@ class InternalServerException extends GrafanaServiceException {
|
|
|
164
163
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
165
164
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
166
165
|
}
|
|
167
|
-
}
|
|
168
|
-
class ResourceNotFoundException extends GrafanaServiceException {
|
|
166
|
+
};
|
|
167
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends GrafanaServiceException$1 {
|
|
169
168
|
name = "ResourceNotFoundException";
|
|
170
169
|
$fault = "client";
|
|
171
170
|
resourceId;
|
|
@@ -180,8 +179,8 @@ class ResourceNotFoundException extends GrafanaServiceException {
|
|
|
180
179
|
this.resourceId = opts.resourceId;
|
|
181
180
|
this.resourceType = opts.resourceType;
|
|
182
181
|
}
|
|
183
|
-
}
|
|
184
|
-
class ServiceQuotaExceededException extends GrafanaServiceException {
|
|
182
|
+
};
|
|
183
|
+
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends GrafanaServiceException$1 {
|
|
185
184
|
name = "ServiceQuotaExceededException";
|
|
186
185
|
$fault = "client";
|
|
187
186
|
resourceId;
|
|
@@ -200,8 +199,8 @@ class ServiceQuotaExceededException extends GrafanaServiceException {
|
|
|
200
199
|
this.serviceCode = opts.serviceCode;
|
|
201
200
|
this.quotaCode = opts.quotaCode;
|
|
202
201
|
}
|
|
203
|
-
}
|
|
204
|
-
class ThrottlingException extends GrafanaServiceException {
|
|
202
|
+
};
|
|
203
|
+
let ThrottlingException$1 = class ThrottlingException extends GrafanaServiceException$1 {
|
|
205
204
|
name = "ThrottlingException";
|
|
206
205
|
$fault = "client";
|
|
207
206
|
$retryable = {};
|
|
@@ -219,14 +218,14 @@ class ThrottlingException extends GrafanaServiceException {
|
|
|
219
218
|
this.quotaCode = opts.quotaCode;
|
|
220
219
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
221
220
|
}
|
|
222
|
-
}
|
|
221
|
+
};
|
|
223
222
|
const ValidationExceptionReason = {
|
|
224
223
|
CANNOT_PARSE: "CANNOT_PARSE",
|
|
225
224
|
FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
|
|
226
225
|
OTHER: "OTHER",
|
|
227
226
|
UNKNOWN_OPERATION: "UNKNOWN_OPERATION",
|
|
228
227
|
};
|
|
229
|
-
class ValidationException extends GrafanaServiceException {
|
|
228
|
+
let ValidationException$1 = class ValidationException extends GrafanaServiceException$1 {
|
|
230
229
|
name = "ValidationException";
|
|
231
230
|
$fault = "client";
|
|
232
231
|
reason;
|
|
@@ -241,7 +240,7 @@ class ValidationException extends GrafanaServiceException {
|
|
|
241
240
|
this.reason = opts.reason;
|
|
242
241
|
this.fieldList = opts.fieldList;
|
|
243
242
|
}
|
|
244
|
-
}
|
|
243
|
+
};
|
|
245
244
|
const LicenseType = {
|
|
246
245
|
ENTERPRISE: "ENTERPRISE",
|
|
247
246
|
ENTERPRISE_FREE_TRIAL: "ENTERPRISE_FREE_TRIAL",
|
|
@@ -310,1054 +309,1192 @@ const UpdateAction = {
|
|
|
310
309
|
ADD: "ADD",
|
|
311
310
|
REVOKE: "REVOKE",
|
|
312
311
|
};
|
|
313
|
-
const CreateWorkspaceApiKeyResponseFilterSensitiveLog = (obj) => ({
|
|
314
|
-
...obj,
|
|
315
|
-
...(obj.key && { key: smithyClient.SENSITIVE_STRING }),
|
|
316
|
-
});
|
|
317
|
-
const WorkspaceDescriptionFilterSensitiveLog = (obj) => ({
|
|
318
|
-
...obj,
|
|
319
|
-
...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
|
|
320
|
-
...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
|
|
321
|
-
...(obj.organizationRoleName && { organizationRoleName: smithyClient.SENSITIVE_STRING }),
|
|
322
|
-
...(obj.organizationalUnits && { organizationalUnits: smithyClient.SENSITIVE_STRING }),
|
|
323
|
-
...(obj.workspaceRoleArn && { workspaceRoleArn: smithyClient.SENSITIVE_STRING }),
|
|
324
|
-
});
|
|
325
|
-
const AssociateLicenseResponseFilterSensitiveLog = (obj) => ({
|
|
326
|
-
...obj,
|
|
327
|
-
...(obj.workspace && { workspace: WorkspaceDescriptionFilterSensitiveLog(obj.workspace) }),
|
|
328
|
-
});
|
|
329
|
-
const RoleValuesFilterSensitiveLog = (obj) => ({
|
|
330
|
-
...obj,
|
|
331
|
-
...(obj.editor && { editor: smithyClient.SENSITIVE_STRING }),
|
|
332
|
-
...(obj.admin && { admin: smithyClient.SENSITIVE_STRING }),
|
|
333
|
-
});
|
|
334
|
-
const SamlConfigurationFilterSensitiveLog = (obj) => ({
|
|
335
|
-
...obj,
|
|
336
|
-
...(obj.idpMetadata && { idpMetadata: obj.idpMetadata }),
|
|
337
|
-
...(obj.roleValues && { roleValues: RoleValuesFilterSensitiveLog(obj.roleValues) }),
|
|
338
|
-
});
|
|
339
|
-
const SamlAuthenticationFilterSensitiveLog = (obj) => ({
|
|
340
|
-
...obj,
|
|
341
|
-
...(obj.configuration && { configuration: SamlConfigurationFilterSensitiveLog(obj.configuration) }),
|
|
342
|
-
});
|
|
343
|
-
const AuthenticationDescriptionFilterSensitiveLog = (obj) => ({
|
|
344
|
-
...obj,
|
|
345
|
-
...(obj.saml && { saml: SamlAuthenticationFilterSensitiveLog(obj.saml) }),
|
|
346
|
-
});
|
|
347
|
-
const DescribeWorkspaceAuthenticationResponseFilterSensitiveLog = (obj) => ({
|
|
348
|
-
...obj,
|
|
349
|
-
...(obj.authentication && { authentication: AuthenticationDescriptionFilterSensitiveLog(obj.authentication) }),
|
|
350
|
-
});
|
|
351
|
-
const UpdateWorkspaceAuthenticationRequestFilterSensitiveLog = (obj) => ({
|
|
352
|
-
...obj,
|
|
353
|
-
...(obj.samlConfiguration && { samlConfiguration: SamlConfigurationFilterSensitiveLog(obj.samlConfiguration) }),
|
|
354
|
-
});
|
|
355
|
-
const UpdateWorkspaceAuthenticationResponseFilterSensitiveLog = (obj) => ({
|
|
356
|
-
...obj,
|
|
357
|
-
...(obj.authentication && { authentication: AuthenticationDescriptionFilterSensitiveLog(obj.authentication) }),
|
|
358
|
-
});
|
|
359
|
-
const DisassociateLicenseResponseFilterSensitiveLog = (obj) => ({
|
|
360
|
-
...obj,
|
|
361
|
-
...(obj.workspace && { workspace: WorkspaceDescriptionFilterSensitiveLog(obj.workspace) }),
|
|
362
|
-
});
|
|
363
|
-
const ServiceAccountTokenSummaryWithKeyFilterSensitiveLog = (obj) => ({
|
|
364
|
-
...obj,
|
|
365
|
-
...(obj.key && { key: smithyClient.SENSITIVE_STRING }),
|
|
366
|
-
});
|
|
367
|
-
const CreateWorkspaceServiceAccountTokenResponseFilterSensitiveLog = (obj) => ({
|
|
368
|
-
...obj,
|
|
369
|
-
...(obj.serviceAccountToken && {
|
|
370
|
-
serviceAccountToken: ServiceAccountTokenSummaryWithKeyFilterSensitiveLog(obj.serviceAccountToken),
|
|
371
|
-
}),
|
|
372
|
-
});
|
|
373
|
-
const CreateWorkspaceRequestFilterSensitiveLog = (obj) => ({
|
|
374
|
-
...obj,
|
|
375
|
-
...(obj.organizationRoleName && { organizationRoleName: smithyClient.SENSITIVE_STRING }),
|
|
376
|
-
...(obj.workspaceDescription && { workspaceDescription: smithyClient.SENSITIVE_STRING }),
|
|
377
|
-
...(obj.workspaceName && { workspaceName: smithyClient.SENSITIVE_STRING }),
|
|
378
|
-
...(obj.workspaceOrganizationalUnits && { workspaceOrganizationalUnits: smithyClient.SENSITIVE_STRING }),
|
|
379
|
-
...(obj.workspaceRoleArn && { workspaceRoleArn: smithyClient.SENSITIVE_STRING }),
|
|
380
|
-
});
|
|
381
|
-
const CreateWorkspaceResponseFilterSensitiveLog = (obj) => ({
|
|
382
|
-
...obj,
|
|
383
|
-
...(obj.workspace && { workspace: WorkspaceDescriptionFilterSensitiveLog(obj.workspace) }),
|
|
384
|
-
});
|
|
385
|
-
const DeleteWorkspaceResponseFilterSensitiveLog = (obj) => ({
|
|
386
|
-
...obj,
|
|
387
|
-
...(obj.workspace && { workspace: WorkspaceDescriptionFilterSensitiveLog(obj.workspace) }),
|
|
388
|
-
});
|
|
389
|
-
const DescribeWorkspaceResponseFilterSensitiveLog = (obj) => ({
|
|
390
|
-
...obj,
|
|
391
|
-
...(obj.workspace && { workspace: WorkspaceDescriptionFilterSensitiveLog(obj.workspace) }),
|
|
392
|
-
});
|
|
393
|
-
const WorkspaceSummaryFilterSensitiveLog = (obj) => ({
|
|
394
|
-
...obj,
|
|
395
|
-
...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
|
|
396
|
-
...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
|
|
397
|
-
});
|
|
398
|
-
const ListWorkspacesResponseFilterSensitiveLog = (obj) => ({
|
|
399
|
-
...obj,
|
|
400
|
-
...(obj.workspaces && { workspaces: obj.workspaces.map((item) => WorkspaceSummaryFilterSensitiveLog(item)) }),
|
|
401
|
-
});
|
|
402
|
-
const UpdateWorkspaceRequestFilterSensitiveLog = (obj) => ({
|
|
403
|
-
...obj,
|
|
404
|
-
...(obj.organizationRoleName && { organizationRoleName: smithyClient.SENSITIVE_STRING }),
|
|
405
|
-
...(obj.workspaceDescription && { workspaceDescription: smithyClient.SENSITIVE_STRING }),
|
|
406
|
-
...(obj.workspaceName && { workspaceName: smithyClient.SENSITIVE_STRING }),
|
|
407
|
-
...(obj.workspaceOrganizationalUnits && { workspaceOrganizationalUnits: smithyClient.SENSITIVE_STRING }),
|
|
408
|
-
...(obj.workspaceRoleArn && { workspaceRoleArn: smithyClient.SENSITIVE_STRING }),
|
|
409
|
-
});
|
|
410
|
-
const UpdateWorkspaceResponseFilterSensitiveLog = (obj) => ({
|
|
411
|
-
...obj,
|
|
412
|
-
...(obj.workspace && { workspace: WorkspaceDescriptionFilterSensitiveLog(obj.workspace) }),
|
|
413
|
-
});
|
|
414
312
|
|
|
415
|
-
const
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
const
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
const
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
const
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
const
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
const
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
const
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
const
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
const
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
const
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
const
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
const
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
b.bp("/workspaces/{workspaceId}/configuration");
|
|
565
|
-
b.p("workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
566
|
-
let body;
|
|
567
|
-
b.m("GET").h(headers).b(body);
|
|
568
|
-
return b.build();
|
|
569
|
-
};
|
|
570
|
-
const se_DisassociateLicenseCommand = async (input, context) => {
|
|
571
|
-
const b = core.requestBuilder(input, context);
|
|
572
|
-
const headers = {};
|
|
573
|
-
b.bp("/workspaces/{workspaceId}/licenses/{licenseType}");
|
|
574
|
-
b.p("workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
575
|
-
b.p("licenseType", () => input.licenseType, "{licenseType}", false);
|
|
576
|
-
let body;
|
|
577
|
-
b.m("DELETE").h(headers).b(body);
|
|
578
|
-
return b.build();
|
|
579
|
-
};
|
|
580
|
-
const se_ListPermissionsCommand = async (input, context) => {
|
|
581
|
-
const b = core.requestBuilder(input, context);
|
|
582
|
-
const headers = {};
|
|
583
|
-
b.bp("/workspaces/{workspaceId}/permissions");
|
|
584
|
-
b.p("workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
585
|
-
const query = smithyClient.map({
|
|
586
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
587
|
-
[_nT]: [, input[_nT]],
|
|
588
|
-
[_uT]: [, input[_uT]],
|
|
589
|
-
[_uI]: [, input[_uI]],
|
|
590
|
-
[_gI]: [, input[_gI]],
|
|
591
|
-
});
|
|
592
|
-
let body;
|
|
593
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
594
|
-
return b.build();
|
|
595
|
-
};
|
|
596
|
-
const se_ListTagsForResourceCommand = async (input, context) => {
|
|
597
|
-
const b = core.requestBuilder(input, context);
|
|
598
|
-
const headers = {};
|
|
599
|
-
b.bp("/tags/{resourceArn}");
|
|
600
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
601
|
-
let body;
|
|
602
|
-
b.m("GET").h(headers).b(body);
|
|
603
|
-
return b.build();
|
|
604
|
-
};
|
|
605
|
-
const se_ListVersionsCommand = async (input, context) => {
|
|
606
|
-
const b = core.requestBuilder(input, context);
|
|
607
|
-
const headers = {};
|
|
608
|
-
b.bp("/versions");
|
|
609
|
-
const query = smithyClient.map({
|
|
610
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
611
|
-
[_nT]: [, input[_nT]],
|
|
612
|
-
[_wi]: [, input[_wI]],
|
|
613
|
-
});
|
|
614
|
-
let body;
|
|
615
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
616
|
-
return b.build();
|
|
617
|
-
};
|
|
618
|
-
const se_ListWorkspacesCommand = async (input, context) => {
|
|
619
|
-
const b = core.requestBuilder(input, context);
|
|
620
|
-
const headers = {};
|
|
621
|
-
b.bp("/workspaces");
|
|
622
|
-
const query = smithyClient.map({
|
|
623
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
624
|
-
[_nT]: [, input[_nT]],
|
|
625
|
-
});
|
|
626
|
-
let body;
|
|
627
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
628
|
-
return b.build();
|
|
629
|
-
};
|
|
630
|
-
const se_ListWorkspaceServiceAccountsCommand = async (input, context) => {
|
|
631
|
-
const b = core.requestBuilder(input, context);
|
|
632
|
-
const headers = {};
|
|
633
|
-
b.bp("/workspaces/{workspaceId}/serviceaccounts");
|
|
634
|
-
b.p("workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
635
|
-
const query = smithyClient.map({
|
|
636
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
637
|
-
[_nT]: [, input[_nT]],
|
|
638
|
-
});
|
|
639
|
-
let body;
|
|
640
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
641
|
-
return b.build();
|
|
642
|
-
};
|
|
643
|
-
const se_ListWorkspaceServiceAccountTokensCommand = async (input, context) => {
|
|
644
|
-
const b = core.requestBuilder(input, context);
|
|
645
|
-
const headers = {};
|
|
646
|
-
b.bp("/workspaces/{workspaceId}/serviceaccounts/{serviceAccountId}/tokens");
|
|
647
|
-
b.p("serviceAccountId", () => input.serviceAccountId, "{serviceAccountId}", false);
|
|
648
|
-
b.p("workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
649
|
-
const query = smithyClient.map({
|
|
650
|
-
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
651
|
-
[_nT]: [, input[_nT]],
|
|
652
|
-
});
|
|
653
|
-
let body;
|
|
654
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
655
|
-
return b.build();
|
|
656
|
-
};
|
|
657
|
-
const se_TagResourceCommand = async (input, context) => {
|
|
658
|
-
const b = core.requestBuilder(input, context);
|
|
659
|
-
const headers = {
|
|
660
|
-
"content-type": "application/json",
|
|
661
|
-
};
|
|
662
|
-
b.bp("/tags/{resourceArn}");
|
|
663
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
664
|
-
let body;
|
|
665
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
666
|
-
tags: (_) => smithyClient._json(_),
|
|
667
|
-
}));
|
|
668
|
-
b.m("POST").h(headers).b(body);
|
|
669
|
-
return b.build();
|
|
670
|
-
};
|
|
671
|
-
const se_UntagResourceCommand = async (input, context) => {
|
|
672
|
-
const b = core.requestBuilder(input, context);
|
|
673
|
-
const headers = {};
|
|
674
|
-
b.bp("/tags/{resourceArn}");
|
|
675
|
-
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
676
|
-
const query = smithyClient.map({
|
|
677
|
-
[_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
|
|
678
|
-
});
|
|
679
|
-
let body;
|
|
680
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
681
|
-
return b.build();
|
|
682
|
-
};
|
|
683
|
-
const se_UpdatePermissionsCommand = async (input, context) => {
|
|
684
|
-
const b = core.requestBuilder(input, context);
|
|
685
|
-
const headers = {
|
|
686
|
-
"content-type": "application/json",
|
|
687
|
-
};
|
|
688
|
-
b.bp("/workspaces/{workspaceId}/permissions");
|
|
689
|
-
b.p("workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
690
|
-
let body;
|
|
691
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
692
|
-
updateInstructionBatch: (_) => smithyClient._json(_),
|
|
693
|
-
}));
|
|
694
|
-
b.m("PATCH").h(headers).b(body);
|
|
695
|
-
return b.build();
|
|
696
|
-
};
|
|
697
|
-
const se_UpdateWorkspaceCommand = async (input, context) => {
|
|
698
|
-
const b = core.requestBuilder(input, context);
|
|
699
|
-
const headers = {
|
|
700
|
-
"content-type": "application/json",
|
|
701
|
-
};
|
|
702
|
-
b.bp("/workspaces/{workspaceId}");
|
|
703
|
-
b.p("workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
704
|
-
let body;
|
|
705
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
706
|
-
accountAccessType: [],
|
|
707
|
-
networkAccessControl: (_) => smithyClient._json(_),
|
|
708
|
-
organizationRoleName: [],
|
|
709
|
-
permissionType: [],
|
|
710
|
-
removeNetworkAccessConfiguration: [],
|
|
711
|
-
removeVpcConfiguration: [],
|
|
712
|
-
stackSetName: [],
|
|
713
|
-
vpcConfiguration: (_) => smithyClient._json(_),
|
|
714
|
-
workspaceDataSources: (_) => smithyClient._json(_),
|
|
715
|
-
workspaceDescription: [],
|
|
716
|
-
workspaceName: [],
|
|
717
|
-
workspaceNotificationDestinations: (_) => smithyClient._json(_),
|
|
718
|
-
workspaceOrganizationalUnits: (_) => smithyClient._json(_),
|
|
719
|
-
workspaceRoleArn: [],
|
|
720
|
-
}));
|
|
721
|
-
b.m("PUT").h(headers).b(body);
|
|
722
|
-
return b.build();
|
|
723
|
-
};
|
|
724
|
-
const se_UpdateWorkspaceAuthenticationCommand = async (input, context) => {
|
|
725
|
-
const b = core.requestBuilder(input, context);
|
|
726
|
-
const headers = {
|
|
727
|
-
"content-type": "application/json",
|
|
728
|
-
};
|
|
729
|
-
b.bp("/workspaces/{workspaceId}/authentication");
|
|
730
|
-
b.p("workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
731
|
-
let body;
|
|
732
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
733
|
-
authenticationProviders: (_) => smithyClient._json(_),
|
|
734
|
-
samlConfiguration: (_) => smithyClient._json(_),
|
|
735
|
-
}));
|
|
736
|
-
b.m("POST").h(headers).b(body);
|
|
737
|
-
return b.build();
|
|
738
|
-
};
|
|
739
|
-
const se_UpdateWorkspaceConfigurationCommand = async (input, context) => {
|
|
740
|
-
const b = core.requestBuilder(input, context);
|
|
741
|
-
const headers = {
|
|
742
|
-
"content-type": "application/json",
|
|
743
|
-
};
|
|
744
|
-
b.bp("/workspaces/{workspaceId}/configuration");
|
|
745
|
-
b.p("workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
746
|
-
let body;
|
|
747
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
748
|
-
configuration: (_) => smithyClient.LazyJsonString.from(_),
|
|
749
|
-
grafanaVersion: [],
|
|
750
|
-
}));
|
|
751
|
-
b.m("PUT").h(headers).b(body);
|
|
752
|
-
return b.build();
|
|
753
|
-
};
|
|
754
|
-
const de_AssociateLicenseCommand = async (output, context) => {
|
|
755
|
-
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
756
|
-
return de_CommandError(output, context);
|
|
757
|
-
}
|
|
758
|
-
const contents = smithyClient.map({
|
|
759
|
-
$metadata: deserializeMetadata(output),
|
|
760
|
-
});
|
|
761
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
762
|
-
const doc = smithyClient.take(data, {
|
|
763
|
-
workspace: (_) => de_WorkspaceDescription(_),
|
|
764
|
-
});
|
|
765
|
-
Object.assign(contents, doc);
|
|
766
|
-
return contents;
|
|
767
|
-
};
|
|
768
|
-
const de_CreateWorkspaceCommand = async (output, context) => {
|
|
769
|
-
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
770
|
-
return de_CommandError(output, context);
|
|
771
|
-
}
|
|
772
|
-
const contents = smithyClient.map({
|
|
773
|
-
$metadata: deserializeMetadata(output),
|
|
774
|
-
});
|
|
775
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
776
|
-
const doc = smithyClient.take(data, {
|
|
777
|
-
workspace: (_) => de_WorkspaceDescription(_),
|
|
778
|
-
});
|
|
779
|
-
Object.assign(contents, doc);
|
|
780
|
-
return contents;
|
|
781
|
-
};
|
|
782
|
-
const de_CreateWorkspaceApiKeyCommand = async (output, context) => {
|
|
783
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
784
|
-
return de_CommandError(output, context);
|
|
785
|
-
}
|
|
786
|
-
const contents = smithyClient.map({
|
|
787
|
-
$metadata: deserializeMetadata(output),
|
|
788
|
-
});
|
|
789
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
790
|
-
const doc = smithyClient.take(data, {
|
|
791
|
-
key: smithyClient.expectString,
|
|
792
|
-
keyName: smithyClient.expectString,
|
|
793
|
-
workspaceId: smithyClient.expectString,
|
|
794
|
-
});
|
|
795
|
-
Object.assign(contents, doc);
|
|
796
|
-
return contents;
|
|
797
|
-
};
|
|
798
|
-
const de_CreateWorkspaceServiceAccountCommand = async (output, context) => {
|
|
799
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
800
|
-
return de_CommandError(output, context);
|
|
801
|
-
}
|
|
802
|
-
const contents = smithyClient.map({
|
|
803
|
-
$metadata: deserializeMetadata(output),
|
|
804
|
-
});
|
|
805
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
806
|
-
const doc = smithyClient.take(data, {
|
|
807
|
-
grafanaRole: smithyClient.expectString,
|
|
808
|
-
id: smithyClient.expectString,
|
|
809
|
-
name: smithyClient.expectString,
|
|
810
|
-
workspaceId: smithyClient.expectString,
|
|
811
|
-
});
|
|
812
|
-
Object.assign(contents, doc);
|
|
813
|
-
return contents;
|
|
814
|
-
};
|
|
815
|
-
const de_CreateWorkspaceServiceAccountTokenCommand = async (output, context) => {
|
|
816
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
817
|
-
return de_CommandError(output, context);
|
|
818
|
-
}
|
|
819
|
-
const contents = smithyClient.map({
|
|
820
|
-
$metadata: deserializeMetadata(output),
|
|
821
|
-
});
|
|
822
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
823
|
-
const doc = smithyClient.take(data, {
|
|
824
|
-
serviceAccountId: smithyClient.expectString,
|
|
825
|
-
serviceAccountToken: smithyClient._json,
|
|
826
|
-
workspaceId: smithyClient.expectString,
|
|
827
|
-
});
|
|
828
|
-
Object.assign(contents, doc);
|
|
829
|
-
return contents;
|
|
830
|
-
};
|
|
831
|
-
const de_DeleteWorkspaceCommand = async (output, context) => {
|
|
832
|
-
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
833
|
-
return de_CommandError(output, context);
|
|
834
|
-
}
|
|
835
|
-
const contents = smithyClient.map({
|
|
836
|
-
$metadata: deserializeMetadata(output),
|
|
837
|
-
});
|
|
838
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
839
|
-
const doc = smithyClient.take(data, {
|
|
840
|
-
workspace: (_) => de_WorkspaceDescription(_),
|
|
841
|
-
});
|
|
842
|
-
Object.assign(contents, doc);
|
|
843
|
-
return contents;
|
|
844
|
-
};
|
|
845
|
-
const de_DeleteWorkspaceApiKeyCommand = async (output, context) => {
|
|
846
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
847
|
-
return de_CommandError(output, context);
|
|
848
|
-
}
|
|
849
|
-
const contents = smithyClient.map({
|
|
850
|
-
$metadata: deserializeMetadata(output),
|
|
851
|
-
});
|
|
852
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
853
|
-
const doc = smithyClient.take(data, {
|
|
854
|
-
keyName: smithyClient.expectString,
|
|
855
|
-
workspaceId: smithyClient.expectString,
|
|
856
|
-
});
|
|
857
|
-
Object.assign(contents, doc);
|
|
858
|
-
return contents;
|
|
859
|
-
};
|
|
860
|
-
const de_DeleteWorkspaceServiceAccountCommand = async (output, context) => {
|
|
861
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
862
|
-
return de_CommandError(output, context);
|
|
863
|
-
}
|
|
864
|
-
const contents = smithyClient.map({
|
|
865
|
-
$metadata: deserializeMetadata(output),
|
|
866
|
-
});
|
|
867
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
868
|
-
const doc = smithyClient.take(data, {
|
|
869
|
-
serviceAccountId: smithyClient.expectString,
|
|
870
|
-
workspaceId: smithyClient.expectString,
|
|
871
|
-
});
|
|
872
|
-
Object.assign(contents, doc);
|
|
873
|
-
return contents;
|
|
874
|
-
};
|
|
875
|
-
const de_DeleteWorkspaceServiceAccountTokenCommand = async (output, context) => {
|
|
876
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
877
|
-
return de_CommandError(output, context);
|
|
878
|
-
}
|
|
879
|
-
const contents = smithyClient.map({
|
|
880
|
-
$metadata: deserializeMetadata(output),
|
|
881
|
-
});
|
|
882
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
883
|
-
const doc = smithyClient.take(data, {
|
|
884
|
-
serviceAccountId: smithyClient.expectString,
|
|
885
|
-
tokenId: smithyClient.expectString,
|
|
886
|
-
workspaceId: smithyClient.expectString,
|
|
887
|
-
});
|
|
888
|
-
Object.assign(contents, doc);
|
|
889
|
-
return contents;
|
|
890
|
-
};
|
|
891
|
-
const de_DescribeWorkspaceCommand = async (output, context) => {
|
|
892
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
893
|
-
return de_CommandError(output, context);
|
|
894
|
-
}
|
|
895
|
-
const contents = smithyClient.map({
|
|
896
|
-
$metadata: deserializeMetadata(output),
|
|
897
|
-
});
|
|
898
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
899
|
-
const doc = smithyClient.take(data, {
|
|
900
|
-
workspace: (_) => de_WorkspaceDescription(_),
|
|
901
|
-
});
|
|
902
|
-
Object.assign(contents, doc);
|
|
903
|
-
return contents;
|
|
904
|
-
};
|
|
905
|
-
const de_DescribeWorkspaceAuthenticationCommand = async (output, context) => {
|
|
906
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
907
|
-
return de_CommandError(output, context);
|
|
908
|
-
}
|
|
909
|
-
const contents = smithyClient.map({
|
|
910
|
-
$metadata: deserializeMetadata(output),
|
|
911
|
-
});
|
|
912
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
913
|
-
const doc = smithyClient.take(data, {
|
|
914
|
-
authentication: smithyClient._json,
|
|
915
|
-
});
|
|
916
|
-
Object.assign(contents, doc);
|
|
917
|
-
return contents;
|
|
918
|
-
};
|
|
919
|
-
const de_DescribeWorkspaceConfigurationCommand = async (output, context) => {
|
|
920
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
921
|
-
return de_CommandError(output, context);
|
|
922
|
-
}
|
|
923
|
-
const contents = smithyClient.map({
|
|
924
|
-
$metadata: deserializeMetadata(output),
|
|
925
|
-
});
|
|
926
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
927
|
-
const doc = smithyClient.take(data, {
|
|
928
|
-
configuration: smithyClient.LazyJsonString.from,
|
|
929
|
-
grafanaVersion: smithyClient.expectString,
|
|
930
|
-
});
|
|
931
|
-
Object.assign(contents, doc);
|
|
932
|
-
return contents;
|
|
933
|
-
};
|
|
934
|
-
const de_DisassociateLicenseCommand = async (output, context) => {
|
|
935
|
-
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
936
|
-
return de_CommandError(output, context);
|
|
937
|
-
}
|
|
938
|
-
const contents = smithyClient.map({
|
|
939
|
-
$metadata: deserializeMetadata(output),
|
|
940
|
-
});
|
|
941
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
942
|
-
const doc = smithyClient.take(data, {
|
|
943
|
-
workspace: (_) => de_WorkspaceDescription(_),
|
|
944
|
-
});
|
|
945
|
-
Object.assign(contents, doc);
|
|
946
|
-
return contents;
|
|
947
|
-
};
|
|
948
|
-
const de_ListPermissionsCommand = async (output, context) => {
|
|
949
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
950
|
-
return de_CommandError(output, context);
|
|
951
|
-
}
|
|
952
|
-
const contents = smithyClient.map({
|
|
953
|
-
$metadata: deserializeMetadata(output),
|
|
954
|
-
});
|
|
955
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
956
|
-
const doc = smithyClient.take(data, {
|
|
957
|
-
nextToken: smithyClient.expectString,
|
|
958
|
-
permissions: smithyClient._json,
|
|
959
|
-
});
|
|
960
|
-
Object.assign(contents, doc);
|
|
961
|
-
return contents;
|
|
962
|
-
};
|
|
963
|
-
const de_ListTagsForResourceCommand = async (output, context) => {
|
|
964
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
965
|
-
return de_CommandError(output, context);
|
|
966
|
-
}
|
|
967
|
-
const contents = smithyClient.map({
|
|
968
|
-
$metadata: deserializeMetadata(output),
|
|
969
|
-
});
|
|
970
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
971
|
-
const doc = smithyClient.take(data, {
|
|
972
|
-
tags: smithyClient._json,
|
|
973
|
-
});
|
|
974
|
-
Object.assign(contents, doc);
|
|
975
|
-
return contents;
|
|
976
|
-
};
|
|
977
|
-
const de_ListVersionsCommand = async (output, context) => {
|
|
978
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
979
|
-
return de_CommandError(output, context);
|
|
980
|
-
}
|
|
981
|
-
const contents = smithyClient.map({
|
|
982
|
-
$metadata: deserializeMetadata(output),
|
|
983
|
-
});
|
|
984
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
985
|
-
const doc = smithyClient.take(data, {
|
|
986
|
-
grafanaVersions: smithyClient._json,
|
|
987
|
-
nextToken: smithyClient.expectString,
|
|
988
|
-
});
|
|
989
|
-
Object.assign(contents, doc);
|
|
990
|
-
return contents;
|
|
991
|
-
};
|
|
992
|
-
const de_ListWorkspacesCommand = async (output, context) => {
|
|
993
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
994
|
-
return de_CommandError(output, context);
|
|
995
|
-
}
|
|
996
|
-
const contents = smithyClient.map({
|
|
997
|
-
$metadata: deserializeMetadata(output),
|
|
998
|
-
});
|
|
999
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1000
|
-
const doc = smithyClient.take(data, {
|
|
1001
|
-
nextToken: smithyClient.expectString,
|
|
1002
|
-
workspaces: (_) => de_WorkspaceList(_),
|
|
1003
|
-
});
|
|
1004
|
-
Object.assign(contents, doc);
|
|
1005
|
-
return contents;
|
|
1006
|
-
};
|
|
1007
|
-
const de_ListWorkspaceServiceAccountsCommand = async (output, context) => {
|
|
1008
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1009
|
-
return de_CommandError(output, context);
|
|
1010
|
-
}
|
|
1011
|
-
const contents = smithyClient.map({
|
|
1012
|
-
$metadata: deserializeMetadata(output),
|
|
1013
|
-
});
|
|
1014
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1015
|
-
const doc = smithyClient.take(data, {
|
|
1016
|
-
nextToken: smithyClient.expectString,
|
|
1017
|
-
serviceAccounts: smithyClient._json,
|
|
1018
|
-
workspaceId: smithyClient.expectString,
|
|
1019
|
-
});
|
|
1020
|
-
Object.assign(contents, doc);
|
|
1021
|
-
return contents;
|
|
1022
|
-
};
|
|
1023
|
-
const de_ListWorkspaceServiceAccountTokensCommand = async (output, context) => {
|
|
1024
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1025
|
-
return de_CommandError(output, context);
|
|
1026
|
-
}
|
|
1027
|
-
const contents = smithyClient.map({
|
|
1028
|
-
$metadata: deserializeMetadata(output),
|
|
1029
|
-
});
|
|
1030
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1031
|
-
const doc = smithyClient.take(data, {
|
|
1032
|
-
nextToken: smithyClient.expectString,
|
|
1033
|
-
serviceAccountId: smithyClient.expectString,
|
|
1034
|
-
serviceAccountTokens: (_) => de_ServiceAccountTokenList(_),
|
|
1035
|
-
workspaceId: smithyClient.expectString,
|
|
1036
|
-
});
|
|
1037
|
-
Object.assign(contents, doc);
|
|
1038
|
-
return contents;
|
|
1039
|
-
};
|
|
1040
|
-
const de_TagResourceCommand = async (output, context) => {
|
|
1041
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1042
|
-
return de_CommandError(output, context);
|
|
1043
|
-
}
|
|
1044
|
-
const contents = smithyClient.map({
|
|
1045
|
-
$metadata: deserializeMetadata(output),
|
|
1046
|
-
});
|
|
1047
|
-
await smithyClient.collectBody(output.body, context);
|
|
1048
|
-
return contents;
|
|
1049
|
-
};
|
|
1050
|
-
const de_UntagResourceCommand = async (output, context) => {
|
|
1051
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1052
|
-
return de_CommandError(output, context);
|
|
1053
|
-
}
|
|
1054
|
-
const contents = smithyClient.map({
|
|
1055
|
-
$metadata: deserializeMetadata(output),
|
|
1056
|
-
});
|
|
1057
|
-
await smithyClient.collectBody(output.body, context);
|
|
1058
|
-
return contents;
|
|
1059
|
-
};
|
|
1060
|
-
const de_UpdatePermissionsCommand = async (output, context) => {
|
|
1061
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1062
|
-
return de_CommandError(output, context);
|
|
1063
|
-
}
|
|
1064
|
-
const contents = smithyClient.map({
|
|
1065
|
-
$metadata: deserializeMetadata(output),
|
|
1066
|
-
});
|
|
1067
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1068
|
-
const doc = smithyClient.take(data, {
|
|
1069
|
-
errors: smithyClient._json,
|
|
1070
|
-
});
|
|
1071
|
-
Object.assign(contents, doc);
|
|
1072
|
-
return contents;
|
|
1073
|
-
};
|
|
1074
|
-
const de_UpdateWorkspaceCommand = async (output, context) => {
|
|
1075
|
-
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
1076
|
-
return de_CommandError(output, context);
|
|
1077
|
-
}
|
|
1078
|
-
const contents = smithyClient.map({
|
|
1079
|
-
$metadata: deserializeMetadata(output),
|
|
1080
|
-
});
|
|
1081
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1082
|
-
const doc = smithyClient.take(data, {
|
|
1083
|
-
workspace: (_) => de_WorkspaceDescription(_),
|
|
1084
|
-
});
|
|
1085
|
-
Object.assign(contents, doc);
|
|
1086
|
-
return contents;
|
|
1087
|
-
};
|
|
1088
|
-
const de_UpdateWorkspaceAuthenticationCommand = async (output, context) => {
|
|
1089
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1090
|
-
return de_CommandError(output, context);
|
|
1091
|
-
}
|
|
1092
|
-
const contents = smithyClient.map({
|
|
1093
|
-
$metadata: deserializeMetadata(output),
|
|
1094
|
-
});
|
|
1095
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1096
|
-
const doc = smithyClient.take(data, {
|
|
1097
|
-
authentication: smithyClient._json,
|
|
1098
|
-
});
|
|
1099
|
-
Object.assign(contents, doc);
|
|
1100
|
-
return contents;
|
|
1101
|
-
};
|
|
1102
|
-
const de_UpdateWorkspaceConfigurationCommand = async (output, context) => {
|
|
1103
|
-
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
1104
|
-
return de_CommandError(output, context);
|
|
1105
|
-
}
|
|
1106
|
-
const contents = smithyClient.map({
|
|
1107
|
-
$metadata: deserializeMetadata(output),
|
|
1108
|
-
});
|
|
1109
|
-
await smithyClient.collectBody(output.body, context);
|
|
1110
|
-
return contents;
|
|
1111
|
-
};
|
|
1112
|
-
const de_CommandError = async (output, context) => {
|
|
1113
|
-
const parsedOutput = {
|
|
1114
|
-
...output,
|
|
1115
|
-
body: await core$1.parseJsonErrorBody(output.body, context),
|
|
1116
|
-
};
|
|
1117
|
-
const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1118
|
-
switch (errorCode) {
|
|
1119
|
-
case "AccessDeniedException":
|
|
1120
|
-
case "com.amazonaws.grafana#AccessDeniedException":
|
|
1121
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput);
|
|
1122
|
-
case "InternalServerException":
|
|
1123
|
-
case "com.amazonaws.grafana#InternalServerException":
|
|
1124
|
-
throw await de_InternalServerExceptionRes(parsedOutput);
|
|
1125
|
-
case "ResourceNotFoundException":
|
|
1126
|
-
case "com.amazonaws.grafana#ResourceNotFoundException":
|
|
1127
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput);
|
|
1128
|
-
case "ThrottlingException":
|
|
1129
|
-
case "com.amazonaws.grafana#ThrottlingException":
|
|
1130
|
-
throw await de_ThrottlingExceptionRes(parsedOutput);
|
|
1131
|
-
case "ValidationException":
|
|
1132
|
-
case "com.amazonaws.grafana#ValidationException":
|
|
1133
|
-
throw await de_ValidationExceptionRes(parsedOutput);
|
|
1134
|
-
case "ConflictException":
|
|
1135
|
-
case "com.amazonaws.grafana#ConflictException":
|
|
1136
|
-
throw await de_ConflictExceptionRes(parsedOutput);
|
|
1137
|
-
case "ServiceQuotaExceededException":
|
|
1138
|
-
case "com.amazonaws.grafana#ServiceQuotaExceededException":
|
|
1139
|
-
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
|
|
1140
|
-
default:
|
|
1141
|
-
const parsedBody = parsedOutput.body;
|
|
1142
|
-
return throwDefaultError({
|
|
1143
|
-
output,
|
|
1144
|
-
parsedBody,
|
|
1145
|
-
errorCode,
|
|
1146
|
-
});
|
|
1147
|
-
}
|
|
1148
|
-
};
|
|
1149
|
-
const throwDefaultError = smithyClient.withBaseException(GrafanaServiceException);
|
|
1150
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
1151
|
-
const contents = smithyClient.map({});
|
|
1152
|
-
const data = parsedOutput.body;
|
|
1153
|
-
const doc = smithyClient.take(data, {
|
|
1154
|
-
message: smithyClient.expectString,
|
|
1155
|
-
});
|
|
1156
|
-
Object.assign(contents, doc);
|
|
1157
|
-
const exception = new AccessDeniedException({
|
|
1158
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1159
|
-
...contents,
|
|
1160
|
-
});
|
|
1161
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1162
|
-
};
|
|
1163
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
1164
|
-
const contents = smithyClient.map({});
|
|
1165
|
-
const data = parsedOutput.body;
|
|
1166
|
-
const doc = smithyClient.take(data, {
|
|
1167
|
-
message: smithyClient.expectString,
|
|
1168
|
-
resourceId: smithyClient.expectString,
|
|
1169
|
-
resourceType: smithyClient.expectString,
|
|
1170
|
-
});
|
|
1171
|
-
Object.assign(contents, doc);
|
|
1172
|
-
const exception = new ConflictException({
|
|
1173
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1174
|
-
...contents,
|
|
1175
|
-
});
|
|
1176
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1177
|
-
};
|
|
1178
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
1179
|
-
const contents = smithyClient.map({
|
|
1180
|
-
[_rAS]: [() => void 0 !== parsedOutput.headers[_ra], () => smithyClient.strictParseInt32(parsedOutput.headers[_ra])],
|
|
1181
|
-
});
|
|
1182
|
-
const data = parsedOutput.body;
|
|
1183
|
-
const doc = smithyClient.take(data, {
|
|
1184
|
-
message: smithyClient.expectString,
|
|
1185
|
-
});
|
|
1186
|
-
Object.assign(contents, doc);
|
|
1187
|
-
const exception = new InternalServerException({
|
|
1188
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1189
|
-
...contents,
|
|
1190
|
-
});
|
|
1191
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1192
|
-
};
|
|
1193
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
1194
|
-
const contents = smithyClient.map({});
|
|
1195
|
-
const data = parsedOutput.body;
|
|
1196
|
-
const doc = smithyClient.take(data, {
|
|
1197
|
-
message: smithyClient.expectString,
|
|
1198
|
-
resourceId: smithyClient.expectString,
|
|
1199
|
-
resourceType: smithyClient.expectString,
|
|
1200
|
-
});
|
|
1201
|
-
Object.assign(contents, doc);
|
|
1202
|
-
const exception = new ResourceNotFoundException({
|
|
1203
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1204
|
-
...contents,
|
|
1205
|
-
});
|
|
1206
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1207
|
-
};
|
|
1208
|
-
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
1209
|
-
const contents = smithyClient.map({});
|
|
1210
|
-
const data = parsedOutput.body;
|
|
1211
|
-
const doc = smithyClient.take(data, {
|
|
1212
|
-
message: smithyClient.expectString,
|
|
1213
|
-
quotaCode: smithyClient.expectString,
|
|
1214
|
-
resourceId: smithyClient.expectString,
|
|
1215
|
-
resourceType: smithyClient.expectString,
|
|
1216
|
-
serviceCode: smithyClient.expectString,
|
|
1217
|
-
});
|
|
1218
|
-
Object.assign(contents, doc);
|
|
1219
|
-
const exception = new ServiceQuotaExceededException({
|
|
1220
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1221
|
-
...contents,
|
|
1222
|
-
});
|
|
1223
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1224
|
-
};
|
|
1225
|
-
const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
|
|
1226
|
-
const contents = smithyClient.map({
|
|
1227
|
-
[_rAS]: [() => void 0 !== parsedOutput.headers[_ra], () => smithyClient.strictParseInt32(parsedOutput.headers[_ra])],
|
|
1228
|
-
});
|
|
1229
|
-
const data = parsedOutput.body;
|
|
1230
|
-
const doc = smithyClient.take(data, {
|
|
1231
|
-
message: smithyClient.expectString,
|
|
1232
|
-
quotaCode: smithyClient.expectString,
|
|
1233
|
-
serviceCode: smithyClient.expectString,
|
|
1234
|
-
});
|
|
1235
|
-
Object.assign(contents, doc);
|
|
1236
|
-
const exception = new ThrottlingException({
|
|
1237
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1238
|
-
...contents,
|
|
1239
|
-
});
|
|
1240
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1241
|
-
};
|
|
1242
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
1243
|
-
const contents = smithyClient.map({});
|
|
1244
|
-
const data = parsedOutput.body;
|
|
1245
|
-
const doc = smithyClient.take(data, {
|
|
1246
|
-
fieldList: smithyClient._json,
|
|
1247
|
-
message: smithyClient.expectString,
|
|
1248
|
-
reason: smithyClient.expectString,
|
|
1249
|
-
});
|
|
1250
|
-
Object.assign(contents, doc);
|
|
1251
|
-
const exception = new ValidationException({
|
|
1252
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1253
|
-
...contents,
|
|
1254
|
-
});
|
|
1255
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1256
|
-
};
|
|
1257
|
-
const de_ServiceAccountTokenList = (output, context) => {
|
|
1258
|
-
const retVal = (output || [])
|
|
1259
|
-
.filter((e) => e != null)
|
|
1260
|
-
.map((entry) => {
|
|
1261
|
-
return de_ServiceAccountTokenSummary(entry);
|
|
1262
|
-
});
|
|
1263
|
-
return retVal;
|
|
1264
|
-
};
|
|
1265
|
-
const de_ServiceAccountTokenSummary = (output, context) => {
|
|
1266
|
-
return smithyClient.take(output, {
|
|
1267
|
-
createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1268
|
-
expiresAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1269
|
-
id: smithyClient.expectString,
|
|
1270
|
-
lastUsedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1271
|
-
name: smithyClient.expectString,
|
|
1272
|
-
});
|
|
1273
|
-
};
|
|
1274
|
-
const de_WorkspaceDescription = (output, context) => {
|
|
1275
|
-
return smithyClient.take(output, {
|
|
1276
|
-
accountAccessType: smithyClient.expectString,
|
|
1277
|
-
authentication: smithyClient._json,
|
|
1278
|
-
created: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1279
|
-
dataSources: smithyClient._json,
|
|
1280
|
-
description: smithyClient.expectString,
|
|
1281
|
-
endpoint: smithyClient.expectString,
|
|
1282
|
-
freeTrialConsumed: smithyClient.expectBoolean,
|
|
1283
|
-
freeTrialExpiration: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1284
|
-
grafanaToken: smithyClient.expectString,
|
|
1285
|
-
grafanaVersion: smithyClient.expectString,
|
|
1286
|
-
id: smithyClient.expectString,
|
|
1287
|
-
licenseExpiration: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1288
|
-
licenseType: smithyClient.expectString,
|
|
1289
|
-
modified: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1290
|
-
name: smithyClient.expectString,
|
|
1291
|
-
networkAccessControl: smithyClient._json,
|
|
1292
|
-
notificationDestinations: smithyClient._json,
|
|
1293
|
-
organizationRoleName: smithyClient.expectString,
|
|
1294
|
-
organizationalUnits: smithyClient._json,
|
|
1295
|
-
permissionType: smithyClient.expectString,
|
|
1296
|
-
stackSetName: smithyClient.expectString,
|
|
1297
|
-
status: smithyClient.expectString,
|
|
1298
|
-
tags: smithyClient._json,
|
|
1299
|
-
vpcConfiguration: smithyClient._json,
|
|
1300
|
-
workspaceRoleArn: smithyClient.expectString,
|
|
1301
|
-
});
|
|
1302
|
-
};
|
|
1303
|
-
const de_WorkspaceList = (output, context) => {
|
|
1304
|
-
const retVal = (output || [])
|
|
1305
|
-
.filter((e) => e != null)
|
|
1306
|
-
.map((entry) => {
|
|
1307
|
-
return de_WorkspaceSummary(entry);
|
|
1308
|
-
});
|
|
1309
|
-
return retVal;
|
|
1310
|
-
};
|
|
1311
|
-
const de_WorkspaceSummary = (output, context) => {
|
|
1312
|
-
return smithyClient.take(output, {
|
|
1313
|
-
authentication: smithyClient._json,
|
|
1314
|
-
created: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1315
|
-
description: smithyClient.expectString,
|
|
1316
|
-
endpoint: smithyClient.expectString,
|
|
1317
|
-
grafanaToken: smithyClient.expectString,
|
|
1318
|
-
grafanaVersion: smithyClient.expectString,
|
|
1319
|
-
id: smithyClient.expectString,
|
|
1320
|
-
licenseType: smithyClient.expectString,
|
|
1321
|
-
modified: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1322
|
-
name: smithyClient.expectString,
|
|
1323
|
-
notificationDestinations: smithyClient._json,
|
|
1324
|
-
status: smithyClient.expectString,
|
|
1325
|
-
tags: smithyClient._json,
|
|
1326
|
-
});
|
|
1327
|
-
};
|
|
1328
|
-
const deserializeMetadata = (output) => ({
|
|
1329
|
-
httpStatusCode: output.statusCode,
|
|
1330
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1331
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1332
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1333
|
-
});
|
|
313
|
+
const _AA = "AssertionAttributes";
|
|
314
|
+
const _AD = "AuthenticationDescription";
|
|
315
|
+
const _ADE = "AccessDeniedException";
|
|
316
|
+
const _AKT = "ApiKeyToken";
|
|
317
|
+
const _AL = "AssociateLicense";
|
|
318
|
+
const _ALR = "AssociateLicenseRequest";
|
|
319
|
+
const _ALRs = "AssociateLicenseResponse";
|
|
320
|
+
const _AS = "AuthenticationSummary";
|
|
321
|
+
const _ASA = "AwsSsoAuthentication";
|
|
322
|
+
const _CE = "ConflictException";
|
|
323
|
+
const _CW = "CreateWorkspace";
|
|
324
|
+
const _CWAK = "CreateWorkspaceApiKey";
|
|
325
|
+
const _CWAKR = "CreateWorkspaceApiKeyRequest";
|
|
326
|
+
const _CWAKRr = "CreateWorkspaceApiKeyResponse";
|
|
327
|
+
const _CWR = "CreateWorkspaceRequest";
|
|
328
|
+
const _CWRr = "CreateWorkspaceResponse";
|
|
329
|
+
const _CWSA = "CreateWorkspaceServiceAccount";
|
|
330
|
+
const _CWSAR = "CreateWorkspaceServiceAccountRequest";
|
|
331
|
+
const _CWSARr = "CreateWorkspaceServiceAccountResponse";
|
|
332
|
+
const _CWSAT = "CreateWorkspaceServiceAccountToken";
|
|
333
|
+
const _CWSATR = "CreateWorkspaceServiceAccountTokenRequest";
|
|
334
|
+
const _CWSATRr = "CreateWorkspaceServiceAccountTokenResponse";
|
|
335
|
+
const _D = "Description";
|
|
336
|
+
const _DL = "DisassociateLicense";
|
|
337
|
+
const _DLR = "DisassociateLicenseRequest";
|
|
338
|
+
const _DLRi = "DisassociateLicenseResponse";
|
|
339
|
+
const _DW = "DeleteWorkspace";
|
|
340
|
+
const _DWA = "DescribeWorkspaceAuthentication";
|
|
341
|
+
const _DWAK = "DeleteWorkspaceApiKey";
|
|
342
|
+
const _DWAKR = "DeleteWorkspaceApiKeyRequest";
|
|
343
|
+
const _DWAKRe = "DeleteWorkspaceApiKeyResponse";
|
|
344
|
+
const _DWAR = "DescribeWorkspaceAuthenticationRequest";
|
|
345
|
+
const _DWARe = "DescribeWorkspaceAuthenticationResponse";
|
|
346
|
+
const _DWC = "DescribeWorkspaceConfiguration";
|
|
347
|
+
const _DWCR = "DescribeWorkspaceConfigurationRequest";
|
|
348
|
+
const _DWCRe = "DescribeWorkspaceConfigurationResponse";
|
|
349
|
+
const _DWR = "DeleteWorkspaceRequest";
|
|
350
|
+
const _DWRe = "DeleteWorkspaceResponse";
|
|
351
|
+
const _DWRes = "DescribeWorkspaceRequest";
|
|
352
|
+
const _DWResc = "DescribeWorkspaceResponse";
|
|
353
|
+
const _DWSA = "DeleteWorkspaceServiceAccount";
|
|
354
|
+
const _DWSAR = "DeleteWorkspaceServiceAccountRequest";
|
|
355
|
+
const _DWSARe = "DeleteWorkspaceServiceAccountResponse";
|
|
356
|
+
const _DWSAT = "DeleteWorkspaceServiceAccountToken";
|
|
357
|
+
const _DWSATR = "DeleteWorkspaceServiceAccountTokenRequest";
|
|
358
|
+
const _DWSATRe = "DeleteWorkspaceServiceAccountTokenResponse";
|
|
359
|
+
const _DWe = "DescribeWorkspace";
|
|
360
|
+
const _GT = "Grafana-Token";
|
|
361
|
+
const _IM = "IdpMetadata";
|
|
362
|
+
const _IRA = "IamRoleArn";
|
|
363
|
+
const _ISE = "InternalServerException";
|
|
364
|
+
const _LP = "ListPermissions";
|
|
365
|
+
const _LPR = "ListPermissionsRequest";
|
|
366
|
+
const _LPRi = "ListPermissionsResponse";
|
|
367
|
+
const _LTFR = "ListTagsForResource";
|
|
368
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
369
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
370
|
+
const _LV = "ListVersions";
|
|
371
|
+
const _LVR = "ListVersionsRequest";
|
|
372
|
+
const _LVRi = "ListVersionsResponse";
|
|
373
|
+
const _LW = "ListWorkspaces";
|
|
374
|
+
const _LWR = "ListWorkspacesRequest";
|
|
375
|
+
const _LWRi = "ListWorkspacesResponse";
|
|
376
|
+
const _LWSA = "ListWorkspaceServiceAccounts";
|
|
377
|
+
const _LWSAR = "ListWorkspaceServiceAccountsRequest";
|
|
378
|
+
const _LWSARi = "ListWorkspaceServiceAccountsResponse";
|
|
379
|
+
const _LWSAT = "ListWorkspaceServiceAccountTokens";
|
|
380
|
+
const _LWSATR = "ListWorkspaceServiceAccountTokensRequest";
|
|
381
|
+
const _LWSATRi = "ListWorkspaceServiceAccountTokensResponse";
|
|
382
|
+
const _NAC = "NetworkAccessConfiguration";
|
|
383
|
+
const _OCJ = "OverridableConfigurationJson";
|
|
384
|
+
const _ORN = "OrganizationRoleName";
|
|
385
|
+
const _OUL = "OrganizationalUnitList";
|
|
386
|
+
const _PE = "PermissionEntry";
|
|
387
|
+
const _PEL = "PermissionEntryList";
|
|
388
|
+
const _RA = "Retry-After";
|
|
389
|
+
const _RNFE = "ResourceNotFoundException";
|
|
390
|
+
const _RV = "RoleValues";
|
|
391
|
+
const _RVL = "RoleValueList";
|
|
392
|
+
const _SA = "SamlAuthentication";
|
|
393
|
+
const _SAL = "ServiceAccountList";
|
|
394
|
+
const _SAS = "ServiceAccountSummary";
|
|
395
|
+
const _SATK = "ServiceAccountTokenKey";
|
|
396
|
+
const _SATL = "ServiceAccountTokenList";
|
|
397
|
+
const _SATS = "ServiceAccountTokenSummary";
|
|
398
|
+
const _SATSWK = "ServiceAccountTokenSummaryWithKey";
|
|
399
|
+
const _SC = "SamlConfiguration";
|
|
400
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
401
|
+
const _TE = "ThrottlingException";
|
|
402
|
+
const _TR = "TagResource";
|
|
403
|
+
const _TRR = "TagResourceRequest";
|
|
404
|
+
const _TRRa = "TagResourceResponse";
|
|
405
|
+
const _U = "User";
|
|
406
|
+
const _UE = "UpdateError";
|
|
407
|
+
const _UEL = "UpdateErrorList";
|
|
408
|
+
const _UI = "UpdateInstruction";
|
|
409
|
+
const _UIB = "UpdateInstructionBatch";
|
|
410
|
+
const _UL = "UserList";
|
|
411
|
+
const _UP = "UpdatePermissions";
|
|
412
|
+
const _UPR = "UpdatePermissionsRequest";
|
|
413
|
+
const _UPRp = "UpdatePermissionsResponse";
|
|
414
|
+
const _UR = "UntagResource";
|
|
415
|
+
const _URR = "UntagResourceRequest";
|
|
416
|
+
const _URRn = "UntagResourceResponse";
|
|
417
|
+
const _UW = "UpdateWorkspace";
|
|
418
|
+
const _UWA = "UpdateWorkspaceAuthentication";
|
|
419
|
+
const _UWAR = "UpdateWorkspaceAuthenticationRequest";
|
|
420
|
+
const _UWARp = "UpdateWorkspaceAuthenticationResponse";
|
|
421
|
+
const _UWC = "UpdateWorkspaceConfiguration";
|
|
422
|
+
const _UWCR = "UpdateWorkspaceConfigurationRequest";
|
|
423
|
+
const _UWCRp = "UpdateWorkspaceConfigurationResponse";
|
|
424
|
+
const _UWR = "UpdateWorkspaceRequest";
|
|
425
|
+
const _UWRp = "UpdateWorkspaceResponse";
|
|
426
|
+
const _VC = "VpcConfiguration";
|
|
427
|
+
const _VE = "ValidationException";
|
|
428
|
+
const _VEF = "ValidationExceptionField";
|
|
429
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
430
|
+
const _WD = "WorkspaceDescription";
|
|
431
|
+
const _WL = "WorkspaceList";
|
|
432
|
+
const _WN = "WorkspaceName";
|
|
433
|
+
const _WS = "WorkspaceSummary";
|
|
434
|
+
const _a = "application/json";
|
|
435
|
+
const _aA = "assertionAttributes";
|
|
436
|
+
const _aAT = "accountAccessType";
|
|
437
|
+
const _aO = "allowedOrganizations";
|
|
438
|
+
const _aP = "authenticationProviders";
|
|
439
|
+
const _aS = "awsSso";
|
|
440
|
+
const _ac = "action";
|
|
441
|
+
const _ad = "admin";
|
|
442
|
+
const _au = "authentication";
|
|
443
|
+
const _c = "client";
|
|
444
|
+
const _cA = "createdAt";
|
|
445
|
+
const _cB = "causedBy";
|
|
446
|
+
const _cT = "clientToken";
|
|
447
|
+
const _co = "configuration";
|
|
448
|
+
const _cod = "code";
|
|
449
|
+
const _cr = "created";
|
|
450
|
+
const _d = "description";
|
|
451
|
+
const _dS = "dataSources";
|
|
452
|
+
const _e = "error";
|
|
453
|
+
const _eA = "expiresAt";
|
|
454
|
+
const _ed = "editor";
|
|
455
|
+
const _em = "email";
|
|
456
|
+
const _en = "endpoint";
|
|
457
|
+
const _er = "errors";
|
|
458
|
+
const _fL = "fieldList";
|
|
459
|
+
const _fTC = "freeTrialConsumed";
|
|
460
|
+
const _fTE = "freeTrialExpiration";
|
|
461
|
+
const _g = "groups";
|
|
1334
462
|
const _gI = "groupId";
|
|
463
|
+
const _gR = "grafanaRole";
|
|
1335
464
|
const _gT = "grafanaToken";
|
|
1336
|
-
const
|
|
465
|
+
const _gV = "grafanaVersion";
|
|
466
|
+
const _gVr = "grafanaVersions";
|
|
467
|
+
const _h = "http";
|
|
468
|
+
const _hE = "httpError";
|
|
469
|
+
const _hH = "httpHeader";
|
|
470
|
+
const _hQ = "httpQuery";
|
|
471
|
+
const _i = "id";
|
|
472
|
+
const _iD = "isDisabled";
|
|
473
|
+
const _iM = "idpMetadata";
|
|
474
|
+
const _k = "key";
|
|
475
|
+
const _kN = "keyName";
|
|
476
|
+
const _kR = "keyRole";
|
|
477
|
+
const _l = "login";
|
|
478
|
+
const _lE = "licenseExpiration";
|
|
479
|
+
const _lT = "licenseType";
|
|
480
|
+
const _lUA = "lastUsedAt";
|
|
481
|
+
const _lVD = "loginValidityDuration";
|
|
482
|
+
const _m = "message";
|
|
1337
483
|
const _mR = "maxResults";
|
|
484
|
+
const _mT = "mediaType";
|
|
485
|
+
const _mo = "modified";
|
|
486
|
+
const _n = "name";
|
|
487
|
+
const _nAC = "networkAccessControl";
|
|
488
|
+
const _nD = "notificationDestinations";
|
|
1338
489
|
const _nT = "nextToken";
|
|
490
|
+
const _o = "org";
|
|
491
|
+
const _oRN = "organizationRoleName";
|
|
492
|
+
const _oU = "organizationalUnits";
|
|
493
|
+
const _p = "providers";
|
|
494
|
+
const _pLI = "prefixListIds";
|
|
495
|
+
const _pT = "permissionType";
|
|
496
|
+
const _pe = "permissions";
|
|
497
|
+
const _qC = "quotaCode";
|
|
498
|
+
const _r = "role";
|
|
499
|
+
const _rA = "resourceArn";
|
|
1339
500
|
const _rAS = "retryAfterSeconds";
|
|
1340
|
-
const
|
|
501
|
+
const _rI = "resourceId";
|
|
502
|
+
const _rNAC = "removeNetworkAccessConfiguration";
|
|
503
|
+
const _rT = "resourceType";
|
|
504
|
+
const _rV = "roleValues";
|
|
505
|
+
const _rVC = "removeVpcConfiguration";
|
|
506
|
+
const _re = "reason";
|
|
507
|
+
const _s = "saml";
|
|
508
|
+
const _sA = "serviceAccounts";
|
|
509
|
+
const _sAI = "serviceAccountId";
|
|
510
|
+
const _sAT = "serviceAccountToken";
|
|
511
|
+
const _sATe = "serviceAccountTokens";
|
|
512
|
+
const _sC = "serviceCode";
|
|
513
|
+
const _sCI = "ssoClientId";
|
|
514
|
+
const _sCS = "samlConfigurationStatus";
|
|
515
|
+
const _sCa = "samlConfiguration";
|
|
516
|
+
const _sGI = "securityGroupIds";
|
|
517
|
+
const _sI = "subnetIds";
|
|
518
|
+
const _sSN = "stackSetName";
|
|
519
|
+
const _sTL = "secondsToLive";
|
|
520
|
+
const _se = "server";
|
|
521
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.grafana";
|
|
522
|
+
const _st = "status";
|
|
523
|
+
const _t = "tags";
|
|
524
|
+
const _tI = "tokenId";
|
|
1341
525
|
const _tK = "tagKeys";
|
|
526
|
+
const _ty = "type";
|
|
527
|
+
const _u = "user";
|
|
1342
528
|
const _uI = "userId";
|
|
529
|
+
const _uIB = "updateInstructionBatch";
|
|
1343
530
|
const _uT = "userType";
|
|
531
|
+
const _ur = "url";
|
|
532
|
+
const _us = "users";
|
|
533
|
+
const _vC = "vpcConfiguration";
|
|
534
|
+
const _vI = "vpceIds";
|
|
535
|
+
const _w = "workspace";
|
|
536
|
+
const _wD = "workspaceDescription";
|
|
537
|
+
const _wDS = "workspaceDataSources";
|
|
1344
538
|
const _wI = "workspaceId";
|
|
539
|
+
const _wN = "workspaceName";
|
|
540
|
+
const _wND = "workspaceNotificationDestinations";
|
|
541
|
+
const _wOU = "workspaceOrganizationalUnits";
|
|
542
|
+
const _wRA = "workspaceRoleArn";
|
|
1345
543
|
const _wi = "workspace-id";
|
|
544
|
+
const _wo = "workspaces";
|
|
545
|
+
const _x = "xml";
|
|
546
|
+
const n0 = "com.amazonaws.grafana";
|
|
547
|
+
var ApiKeyToken = [0, n0, _AKT, 8, 0];
|
|
548
|
+
var Description = [0, n0, _D, 8, 0];
|
|
549
|
+
var IamRoleArn = [0, n0, _IRA, 8, 0];
|
|
550
|
+
var OrganizationRoleName = [0, n0, _ORN, 8, 0];
|
|
551
|
+
var OverridableConfigurationJson = [
|
|
552
|
+
0,
|
|
553
|
+
n0,
|
|
554
|
+
_OCJ,
|
|
555
|
+
{
|
|
556
|
+
[_mT]: _a,
|
|
557
|
+
},
|
|
558
|
+
0,
|
|
559
|
+
];
|
|
560
|
+
var ServiceAccountTokenKey = [0, n0, _SATK, 8, 0];
|
|
561
|
+
var WorkspaceName = [0, n0, _WN, 8, 0];
|
|
562
|
+
var AccessDeniedException = [
|
|
563
|
+
-3,
|
|
564
|
+
n0,
|
|
565
|
+
_ADE,
|
|
566
|
+
{
|
|
567
|
+
[_e]: _c,
|
|
568
|
+
[_hE]: 403,
|
|
569
|
+
},
|
|
570
|
+
[_m],
|
|
571
|
+
[0],
|
|
572
|
+
];
|
|
573
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
|
|
574
|
+
var AssertionAttributes = [3, n0, _AA, 0, [_n, _l, _em, _g, _r, _o], [0, 0, 0, 0, 0, 0]];
|
|
575
|
+
var AssociateLicenseRequest = [
|
|
576
|
+
3,
|
|
577
|
+
n0,
|
|
578
|
+
_ALR,
|
|
579
|
+
0,
|
|
580
|
+
[_wI, _lT, _gT],
|
|
581
|
+
[
|
|
582
|
+
[0, 1],
|
|
583
|
+
[0, 1],
|
|
584
|
+
[
|
|
585
|
+
0,
|
|
586
|
+
{
|
|
587
|
+
[_hH]: _GT,
|
|
588
|
+
},
|
|
589
|
+
],
|
|
590
|
+
],
|
|
591
|
+
];
|
|
592
|
+
var AssociateLicenseResponse = [3, n0, _ALRs, 0, [_w], [[() => WorkspaceDescription, 0]]];
|
|
593
|
+
var AuthenticationDescription = [
|
|
594
|
+
3,
|
|
595
|
+
n0,
|
|
596
|
+
_AD,
|
|
597
|
+
0,
|
|
598
|
+
[_p, _s, _aS],
|
|
599
|
+
[64 | 0, [() => SamlAuthentication, 0], () => AwsSsoAuthentication],
|
|
600
|
+
];
|
|
601
|
+
var AuthenticationSummary = [3, n0, _AS, 0, [_p, _sCS], [64 | 0, 0]];
|
|
602
|
+
var AwsSsoAuthentication = [3, n0, _ASA, 0, [_sCI], [0]];
|
|
603
|
+
var ConflictException = [
|
|
604
|
+
-3,
|
|
605
|
+
n0,
|
|
606
|
+
_CE,
|
|
607
|
+
{
|
|
608
|
+
[_e]: _c,
|
|
609
|
+
[_hE]: 409,
|
|
610
|
+
},
|
|
611
|
+
[_m, _rI, _rT],
|
|
612
|
+
[0, 0, 0],
|
|
613
|
+
];
|
|
614
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
|
|
615
|
+
var CreateWorkspaceApiKeyRequest = [
|
|
616
|
+
3,
|
|
617
|
+
n0,
|
|
618
|
+
_CWAKR,
|
|
619
|
+
0,
|
|
620
|
+
[_kN, _kR, _sTL, _wI],
|
|
621
|
+
[0, 0, 1, [0, 1]],
|
|
622
|
+
];
|
|
623
|
+
var CreateWorkspaceApiKeyResponse = [
|
|
624
|
+
3,
|
|
625
|
+
n0,
|
|
626
|
+
_CWAKRr,
|
|
627
|
+
0,
|
|
628
|
+
[_kN, _k, _wI],
|
|
629
|
+
[0, [() => ApiKeyToken, 0], 0],
|
|
630
|
+
];
|
|
631
|
+
var CreateWorkspaceRequest = [
|
|
632
|
+
3,
|
|
633
|
+
n0,
|
|
634
|
+
_CWR,
|
|
635
|
+
0,
|
|
636
|
+
[_aAT, _cT, _oRN, _pT, _sSN, _wDS, _wD, _wN, _wND, _wOU, _wRA, _aP, _t, _vC, _co, _nAC, _gV],
|
|
637
|
+
[
|
|
638
|
+
0,
|
|
639
|
+
[0, 4],
|
|
640
|
+
[() => OrganizationRoleName, 0],
|
|
641
|
+
0,
|
|
642
|
+
0,
|
|
643
|
+
64 | 0,
|
|
644
|
+
[() => Description, 0],
|
|
645
|
+
[() => WorkspaceName, 0],
|
|
646
|
+
64 | 0,
|
|
647
|
+
[() => OrganizationalUnitList, 0],
|
|
648
|
+
[() => IamRoleArn, 0],
|
|
649
|
+
64 | 0,
|
|
650
|
+
128 | 0,
|
|
651
|
+
() => VpcConfiguration,
|
|
652
|
+
[() => OverridableConfigurationJson, 0],
|
|
653
|
+
() => NetworkAccessConfiguration,
|
|
654
|
+
0,
|
|
655
|
+
],
|
|
656
|
+
];
|
|
657
|
+
var CreateWorkspaceResponse = [3, n0, _CWRr, 0, [_w], [[() => WorkspaceDescription, 0]]];
|
|
658
|
+
var CreateWorkspaceServiceAccountRequest = [
|
|
659
|
+
3,
|
|
660
|
+
n0,
|
|
661
|
+
_CWSAR,
|
|
662
|
+
0,
|
|
663
|
+
[_n, _gR, _wI],
|
|
664
|
+
[0, 0, [0, 1]],
|
|
665
|
+
];
|
|
666
|
+
var CreateWorkspaceServiceAccountResponse = [
|
|
667
|
+
3,
|
|
668
|
+
n0,
|
|
669
|
+
_CWSARr,
|
|
670
|
+
0,
|
|
671
|
+
[_i, _n, _gR, _wI],
|
|
672
|
+
[0, 0, 0, 0],
|
|
673
|
+
];
|
|
674
|
+
var CreateWorkspaceServiceAccountTokenRequest = [
|
|
675
|
+
3,
|
|
676
|
+
n0,
|
|
677
|
+
_CWSATR,
|
|
678
|
+
0,
|
|
679
|
+
[_n, _sTL, _sAI, _wI],
|
|
680
|
+
[0, 1, [0, 1], [0, 1]],
|
|
681
|
+
];
|
|
682
|
+
var CreateWorkspaceServiceAccountTokenResponse = [
|
|
683
|
+
3,
|
|
684
|
+
n0,
|
|
685
|
+
_CWSATRr,
|
|
686
|
+
0,
|
|
687
|
+
[_sAT, _sAI, _wI],
|
|
688
|
+
[[() => ServiceAccountTokenSummaryWithKey, 0], 0, 0],
|
|
689
|
+
];
|
|
690
|
+
var DeleteWorkspaceApiKeyRequest = [
|
|
691
|
+
3,
|
|
692
|
+
n0,
|
|
693
|
+
_DWAKR,
|
|
694
|
+
0,
|
|
695
|
+
[_kN, _wI],
|
|
696
|
+
[
|
|
697
|
+
[0, 1],
|
|
698
|
+
[0, 1],
|
|
699
|
+
],
|
|
700
|
+
];
|
|
701
|
+
var DeleteWorkspaceApiKeyResponse = [3, n0, _DWAKRe, 0, [_kN, _wI], [0, 0]];
|
|
702
|
+
var DeleteWorkspaceRequest = [3, n0, _DWR, 0, [_wI], [[0, 1]]];
|
|
703
|
+
var DeleteWorkspaceResponse = [3, n0, _DWRe, 0, [_w], [[() => WorkspaceDescription, 0]]];
|
|
704
|
+
var DeleteWorkspaceServiceAccountRequest = [
|
|
705
|
+
3,
|
|
706
|
+
n0,
|
|
707
|
+
_DWSAR,
|
|
708
|
+
0,
|
|
709
|
+
[_sAI, _wI],
|
|
710
|
+
[
|
|
711
|
+
[0, 1],
|
|
712
|
+
[0, 1],
|
|
713
|
+
],
|
|
714
|
+
];
|
|
715
|
+
var DeleteWorkspaceServiceAccountResponse = [3, n0, _DWSARe, 0, [_sAI, _wI], [0, 0]];
|
|
716
|
+
var DeleteWorkspaceServiceAccountTokenRequest = [
|
|
717
|
+
3,
|
|
718
|
+
n0,
|
|
719
|
+
_DWSATR,
|
|
720
|
+
0,
|
|
721
|
+
[_tI, _sAI, _wI],
|
|
722
|
+
[
|
|
723
|
+
[0, 1],
|
|
724
|
+
[0, 1],
|
|
725
|
+
[0, 1],
|
|
726
|
+
],
|
|
727
|
+
];
|
|
728
|
+
var DeleteWorkspaceServiceAccountTokenResponse = [
|
|
729
|
+
3,
|
|
730
|
+
n0,
|
|
731
|
+
_DWSATRe,
|
|
732
|
+
0,
|
|
733
|
+
[_tI, _sAI, _wI],
|
|
734
|
+
[0, 0, 0],
|
|
735
|
+
];
|
|
736
|
+
var DescribeWorkspaceAuthenticationRequest = [3, n0, _DWAR, 0, [_wI], [[0, 1]]];
|
|
737
|
+
var DescribeWorkspaceAuthenticationResponse = [
|
|
738
|
+
3,
|
|
739
|
+
n0,
|
|
740
|
+
_DWARe,
|
|
741
|
+
0,
|
|
742
|
+
[_au],
|
|
743
|
+
[[() => AuthenticationDescription, 0]],
|
|
744
|
+
];
|
|
745
|
+
var DescribeWorkspaceConfigurationRequest = [3, n0, _DWCR, 0, [_wI], [[0, 1]]];
|
|
746
|
+
var DescribeWorkspaceConfigurationResponse = [
|
|
747
|
+
3,
|
|
748
|
+
n0,
|
|
749
|
+
_DWCRe,
|
|
750
|
+
0,
|
|
751
|
+
[_co, _gV],
|
|
752
|
+
[[() => OverridableConfigurationJson, 0], 0],
|
|
753
|
+
];
|
|
754
|
+
var DescribeWorkspaceRequest = [3, n0, _DWRes, 0, [_wI], [[0, 1]]];
|
|
755
|
+
var DescribeWorkspaceResponse = [
|
|
756
|
+
3,
|
|
757
|
+
n0,
|
|
758
|
+
_DWResc,
|
|
759
|
+
0,
|
|
760
|
+
[_w],
|
|
761
|
+
[[() => WorkspaceDescription, 0]],
|
|
762
|
+
];
|
|
763
|
+
var DisassociateLicenseRequest = [
|
|
764
|
+
3,
|
|
765
|
+
n0,
|
|
766
|
+
_DLR,
|
|
767
|
+
0,
|
|
768
|
+
[_wI, _lT],
|
|
769
|
+
[
|
|
770
|
+
[0, 1],
|
|
771
|
+
[0, 1],
|
|
772
|
+
],
|
|
773
|
+
];
|
|
774
|
+
var DisassociateLicenseResponse = [
|
|
775
|
+
3,
|
|
776
|
+
n0,
|
|
777
|
+
_DLRi,
|
|
778
|
+
0,
|
|
779
|
+
[_w],
|
|
780
|
+
[[() => WorkspaceDescription, 0]],
|
|
781
|
+
];
|
|
782
|
+
var InternalServerException = [
|
|
783
|
+
-3,
|
|
784
|
+
n0,
|
|
785
|
+
_ISE,
|
|
786
|
+
{
|
|
787
|
+
[_e]: _se,
|
|
788
|
+
[_hE]: 500,
|
|
789
|
+
},
|
|
790
|
+
[_m, _rAS],
|
|
791
|
+
[
|
|
792
|
+
0,
|
|
793
|
+
[
|
|
794
|
+
1,
|
|
795
|
+
{
|
|
796
|
+
[_hH]: _RA,
|
|
797
|
+
},
|
|
798
|
+
],
|
|
799
|
+
],
|
|
800
|
+
];
|
|
801
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
|
|
802
|
+
var ListPermissionsRequest = [
|
|
803
|
+
3,
|
|
804
|
+
n0,
|
|
805
|
+
_LPR,
|
|
806
|
+
0,
|
|
807
|
+
[_mR, _nT, _uT, _uI, _gI, _wI],
|
|
808
|
+
[
|
|
809
|
+
[
|
|
810
|
+
1,
|
|
811
|
+
{
|
|
812
|
+
[_hQ]: _mR,
|
|
813
|
+
},
|
|
814
|
+
],
|
|
815
|
+
[
|
|
816
|
+
0,
|
|
817
|
+
{
|
|
818
|
+
[_hQ]: _nT,
|
|
819
|
+
},
|
|
820
|
+
],
|
|
821
|
+
[
|
|
822
|
+
0,
|
|
823
|
+
{
|
|
824
|
+
[_hQ]: _uT,
|
|
825
|
+
},
|
|
826
|
+
],
|
|
827
|
+
[
|
|
828
|
+
0,
|
|
829
|
+
{
|
|
830
|
+
[_hQ]: _uI,
|
|
831
|
+
},
|
|
832
|
+
],
|
|
833
|
+
[
|
|
834
|
+
0,
|
|
835
|
+
{
|
|
836
|
+
[_hQ]: _gI,
|
|
837
|
+
},
|
|
838
|
+
],
|
|
839
|
+
[0, 1],
|
|
840
|
+
],
|
|
841
|
+
];
|
|
842
|
+
var ListPermissionsResponse = [
|
|
843
|
+
3,
|
|
844
|
+
n0,
|
|
845
|
+
_LPRi,
|
|
846
|
+
0,
|
|
847
|
+
[_nT, _pe],
|
|
848
|
+
[0, () => PermissionEntryList],
|
|
849
|
+
];
|
|
850
|
+
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
851
|
+
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
852
|
+
var ListVersionsRequest = [
|
|
853
|
+
3,
|
|
854
|
+
n0,
|
|
855
|
+
_LVR,
|
|
856
|
+
0,
|
|
857
|
+
[_mR, _nT, _wI],
|
|
858
|
+
[
|
|
859
|
+
[
|
|
860
|
+
1,
|
|
861
|
+
{
|
|
862
|
+
[_hQ]: _mR,
|
|
863
|
+
},
|
|
864
|
+
],
|
|
865
|
+
[
|
|
866
|
+
0,
|
|
867
|
+
{
|
|
868
|
+
[_hQ]: _nT,
|
|
869
|
+
},
|
|
870
|
+
],
|
|
871
|
+
[
|
|
872
|
+
0,
|
|
873
|
+
{
|
|
874
|
+
[_hQ]: _wi,
|
|
875
|
+
},
|
|
876
|
+
],
|
|
877
|
+
],
|
|
878
|
+
];
|
|
879
|
+
var ListVersionsResponse = [3, n0, _LVRi, 0, [_nT, _gVr], [0, 64 | 0]];
|
|
880
|
+
var ListWorkspaceServiceAccountsRequest = [
|
|
881
|
+
3,
|
|
882
|
+
n0,
|
|
883
|
+
_LWSAR,
|
|
884
|
+
0,
|
|
885
|
+
[_mR, _nT, _wI],
|
|
886
|
+
[
|
|
887
|
+
[
|
|
888
|
+
1,
|
|
889
|
+
{
|
|
890
|
+
[_hQ]: _mR,
|
|
891
|
+
},
|
|
892
|
+
],
|
|
893
|
+
[
|
|
894
|
+
0,
|
|
895
|
+
{
|
|
896
|
+
[_hQ]: _nT,
|
|
897
|
+
},
|
|
898
|
+
],
|
|
899
|
+
[0, 1],
|
|
900
|
+
],
|
|
901
|
+
];
|
|
902
|
+
var ListWorkspaceServiceAccountsResponse = [
|
|
903
|
+
3,
|
|
904
|
+
n0,
|
|
905
|
+
_LWSARi,
|
|
906
|
+
0,
|
|
907
|
+
[_nT, _sA, _wI],
|
|
908
|
+
[0, () => ServiceAccountList, 0],
|
|
909
|
+
];
|
|
910
|
+
var ListWorkspaceServiceAccountTokensRequest = [
|
|
911
|
+
3,
|
|
912
|
+
n0,
|
|
913
|
+
_LWSATR,
|
|
914
|
+
0,
|
|
915
|
+
[_mR, _nT, _sAI, _wI],
|
|
916
|
+
[
|
|
917
|
+
[
|
|
918
|
+
1,
|
|
919
|
+
{
|
|
920
|
+
[_hQ]: _mR,
|
|
921
|
+
},
|
|
922
|
+
],
|
|
923
|
+
[
|
|
924
|
+
0,
|
|
925
|
+
{
|
|
926
|
+
[_hQ]: _nT,
|
|
927
|
+
},
|
|
928
|
+
],
|
|
929
|
+
[0, 1],
|
|
930
|
+
[0, 1],
|
|
931
|
+
],
|
|
932
|
+
];
|
|
933
|
+
var ListWorkspaceServiceAccountTokensResponse = [
|
|
934
|
+
3,
|
|
935
|
+
n0,
|
|
936
|
+
_LWSATRi,
|
|
937
|
+
0,
|
|
938
|
+
[_nT, _sATe, _sAI, _wI],
|
|
939
|
+
[0, () => ServiceAccountTokenList, 0, 0],
|
|
940
|
+
];
|
|
941
|
+
var ListWorkspacesRequest = [
|
|
942
|
+
3,
|
|
943
|
+
n0,
|
|
944
|
+
_LWR,
|
|
945
|
+
0,
|
|
946
|
+
[_mR, _nT],
|
|
947
|
+
[
|
|
948
|
+
[
|
|
949
|
+
1,
|
|
950
|
+
{
|
|
951
|
+
[_hQ]: _mR,
|
|
952
|
+
},
|
|
953
|
+
],
|
|
954
|
+
[
|
|
955
|
+
0,
|
|
956
|
+
{
|
|
957
|
+
[_hQ]: _nT,
|
|
958
|
+
},
|
|
959
|
+
],
|
|
960
|
+
],
|
|
961
|
+
];
|
|
962
|
+
var ListWorkspacesResponse = [3, n0, _LWRi, 0, [_wo, _nT], [[() => WorkspaceList, 0], 0]];
|
|
963
|
+
var NetworkAccessConfiguration = [3, n0, _NAC, 0, [_pLI, _vI], [64 | 0, 64 | 0]];
|
|
964
|
+
var PermissionEntry = [3, n0, _PE, 0, [_u, _r], [() => User, 0]];
|
|
965
|
+
var ResourceNotFoundException = [
|
|
966
|
+
-3,
|
|
967
|
+
n0,
|
|
968
|
+
_RNFE,
|
|
969
|
+
{
|
|
970
|
+
[_e]: _c,
|
|
971
|
+
[_hE]: 404,
|
|
972
|
+
},
|
|
973
|
+
[_m, _rI, _rT],
|
|
974
|
+
[0, 0, 0],
|
|
975
|
+
];
|
|
976
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
977
|
+
var RoleValues = [
|
|
978
|
+
3,
|
|
979
|
+
n0,
|
|
980
|
+
_RV,
|
|
981
|
+
0,
|
|
982
|
+
[_ed, _ad],
|
|
983
|
+
[
|
|
984
|
+
[() => RoleValueList, 0],
|
|
985
|
+
[() => RoleValueList, 0],
|
|
986
|
+
],
|
|
987
|
+
];
|
|
988
|
+
var SamlAuthentication = [3, n0, _SA, 0, [_st, _co], [0, [() => SamlConfiguration, 0]]];
|
|
989
|
+
var SamlConfiguration = [
|
|
990
|
+
3,
|
|
991
|
+
n0,
|
|
992
|
+
_SC,
|
|
993
|
+
0,
|
|
994
|
+
[_iM, _aA, _rV, _aO, _lVD],
|
|
995
|
+
[() => IdpMetadata, () => AssertionAttributes, [() => RoleValues, 0], 64 | 0, 1],
|
|
996
|
+
];
|
|
997
|
+
var ServiceAccountSummary = [3, n0, _SAS, 0, [_i, _n, _iD, _gR], [0, 0, 0, 0]];
|
|
998
|
+
var ServiceAccountTokenSummary = [
|
|
999
|
+
3,
|
|
1000
|
+
n0,
|
|
1001
|
+
_SATS,
|
|
1002
|
+
0,
|
|
1003
|
+
[_i, _n, _cA, _eA, _lUA],
|
|
1004
|
+
[0, 0, 4, 4, 4],
|
|
1005
|
+
];
|
|
1006
|
+
var ServiceAccountTokenSummaryWithKey = [
|
|
1007
|
+
3,
|
|
1008
|
+
n0,
|
|
1009
|
+
_SATSWK,
|
|
1010
|
+
0,
|
|
1011
|
+
[_i, _n, _k],
|
|
1012
|
+
[0, 0, [() => ServiceAccountTokenKey, 0]],
|
|
1013
|
+
];
|
|
1014
|
+
var ServiceQuotaExceededException = [
|
|
1015
|
+
-3,
|
|
1016
|
+
n0,
|
|
1017
|
+
_SQEE,
|
|
1018
|
+
{
|
|
1019
|
+
[_e]: _c,
|
|
1020
|
+
[_hE]: 402,
|
|
1021
|
+
},
|
|
1022
|
+
[_m, _rI, _rT, _sC, _qC],
|
|
1023
|
+
[0, 0, 0, 0, 0],
|
|
1024
|
+
];
|
|
1025
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
|
|
1026
|
+
var TagResourceRequest = [3, n0, _TRR, 0, [_rA, _t], [[0, 1], 128 | 0]];
|
|
1027
|
+
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
1028
|
+
var ThrottlingException = [
|
|
1029
|
+
-3,
|
|
1030
|
+
n0,
|
|
1031
|
+
_TE,
|
|
1032
|
+
{
|
|
1033
|
+
[_e]: _c,
|
|
1034
|
+
[_hE]: 429,
|
|
1035
|
+
},
|
|
1036
|
+
[_m, _sC, _qC, _rAS],
|
|
1037
|
+
[
|
|
1038
|
+
0,
|
|
1039
|
+
0,
|
|
1040
|
+
0,
|
|
1041
|
+
[
|
|
1042
|
+
1,
|
|
1043
|
+
{
|
|
1044
|
+
[_hH]: _RA,
|
|
1045
|
+
},
|
|
1046
|
+
],
|
|
1047
|
+
],
|
|
1048
|
+
];
|
|
1049
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
|
|
1050
|
+
var UntagResourceRequest = [
|
|
1051
|
+
3,
|
|
1052
|
+
n0,
|
|
1053
|
+
_URR,
|
|
1054
|
+
0,
|
|
1055
|
+
[_rA, _tK],
|
|
1056
|
+
[
|
|
1057
|
+
[0, 1],
|
|
1058
|
+
[
|
|
1059
|
+
64 | 0,
|
|
1060
|
+
{
|
|
1061
|
+
[_hQ]: _tK,
|
|
1062
|
+
},
|
|
1063
|
+
],
|
|
1064
|
+
],
|
|
1065
|
+
];
|
|
1066
|
+
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
1067
|
+
var UpdateError = [3, n0, _UE, 0, [_cod, _m, _cB], [1, 0, () => UpdateInstruction]];
|
|
1068
|
+
var UpdateInstruction = [3, n0, _UI, 0, [_ac, _r, _us], [0, 0, () => UserList]];
|
|
1069
|
+
var UpdatePermissionsRequest = [
|
|
1070
|
+
3,
|
|
1071
|
+
n0,
|
|
1072
|
+
_UPR,
|
|
1073
|
+
0,
|
|
1074
|
+
[_uIB, _wI],
|
|
1075
|
+
[() => UpdateInstructionBatch, [0, 1]],
|
|
1076
|
+
];
|
|
1077
|
+
var UpdatePermissionsResponse = [3, n0, _UPRp, 0, [_er], [() => UpdateErrorList]];
|
|
1078
|
+
var UpdateWorkspaceAuthenticationRequest = [
|
|
1079
|
+
3,
|
|
1080
|
+
n0,
|
|
1081
|
+
_UWAR,
|
|
1082
|
+
0,
|
|
1083
|
+
[_wI, _aP, _sCa],
|
|
1084
|
+
[[0, 1], 64 | 0, [() => SamlConfiguration, 0]],
|
|
1085
|
+
];
|
|
1086
|
+
var UpdateWorkspaceAuthenticationResponse = [
|
|
1087
|
+
3,
|
|
1088
|
+
n0,
|
|
1089
|
+
_UWARp,
|
|
1090
|
+
0,
|
|
1091
|
+
[_au],
|
|
1092
|
+
[[() => AuthenticationDescription, 0]],
|
|
1093
|
+
];
|
|
1094
|
+
var UpdateWorkspaceConfigurationRequest = [
|
|
1095
|
+
3,
|
|
1096
|
+
n0,
|
|
1097
|
+
_UWCR,
|
|
1098
|
+
0,
|
|
1099
|
+
[_co, _wI, _gV],
|
|
1100
|
+
[[() => OverridableConfigurationJson, 0], [0, 1], 0],
|
|
1101
|
+
];
|
|
1102
|
+
var UpdateWorkspaceConfigurationResponse = [3, n0, _UWCRp, 0, [], []];
|
|
1103
|
+
var UpdateWorkspaceRequest = [
|
|
1104
|
+
3,
|
|
1105
|
+
n0,
|
|
1106
|
+
_UWR,
|
|
1107
|
+
0,
|
|
1108
|
+
[_aAT, _oRN, _pT, _sSN, _wDS, _wD, _wI, _wN, _wND, _wOU, _wRA, _vC, _rVC, _nAC, _rNAC],
|
|
1109
|
+
[
|
|
1110
|
+
0,
|
|
1111
|
+
[() => OrganizationRoleName, 0],
|
|
1112
|
+
0,
|
|
1113
|
+
0,
|
|
1114
|
+
64 | 0,
|
|
1115
|
+
[() => Description, 0],
|
|
1116
|
+
[0, 1],
|
|
1117
|
+
[() => WorkspaceName, 0],
|
|
1118
|
+
64 | 0,
|
|
1119
|
+
[() => OrganizationalUnitList, 0],
|
|
1120
|
+
[() => IamRoleArn, 0],
|
|
1121
|
+
() => VpcConfiguration,
|
|
1122
|
+
2,
|
|
1123
|
+
() => NetworkAccessConfiguration,
|
|
1124
|
+
2,
|
|
1125
|
+
],
|
|
1126
|
+
];
|
|
1127
|
+
var UpdateWorkspaceResponse = [3, n0, _UWRp, 0, [_w], [[() => WorkspaceDescription, 0]]];
|
|
1128
|
+
var User = [3, n0, _U, 0, [_i, _ty], [0, 0]];
|
|
1129
|
+
var ValidationException = [
|
|
1130
|
+
-3,
|
|
1131
|
+
n0,
|
|
1132
|
+
_VE,
|
|
1133
|
+
{
|
|
1134
|
+
[_e]: _c,
|
|
1135
|
+
[_hE]: 400,
|
|
1136
|
+
},
|
|
1137
|
+
[_m, _re, _fL],
|
|
1138
|
+
[0, 0, () => ValidationExceptionFieldList],
|
|
1139
|
+
];
|
|
1140
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
|
|
1141
|
+
var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
|
|
1142
|
+
var VpcConfiguration = [3, n0, _VC, 0, [_sGI, _sI], [64 | 0, 64 | 0]];
|
|
1143
|
+
var WorkspaceDescription = [
|
|
1144
|
+
3,
|
|
1145
|
+
n0,
|
|
1146
|
+
_WD,
|
|
1147
|
+
0,
|
|
1148
|
+
[
|
|
1149
|
+
_aAT,
|
|
1150
|
+
_cr,
|
|
1151
|
+
_dS,
|
|
1152
|
+
_d,
|
|
1153
|
+
_en,
|
|
1154
|
+
_gV,
|
|
1155
|
+
_i,
|
|
1156
|
+
_mo,
|
|
1157
|
+
_n,
|
|
1158
|
+
_oRN,
|
|
1159
|
+
_nD,
|
|
1160
|
+
_oU,
|
|
1161
|
+
_pT,
|
|
1162
|
+
_sSN,
|
|
1163
|
+
_st,
|
|
1164
|
+
_wRA,
|
|
1165
|
+
_lT,
|
|
1166
|
+
_fTC,
|
|
1167
|
+
_lE,
|
|
1168
|
+
_fTE,
|
|
1169
|
+
_au,
|
|
1170
|
+
_t,
|
|
1171
|
+
_vC,
|
|
1172
|
+
_nAC,
|
|
1173
|
+
_gT,
|
|
1174
|
+
],
|
|
1175
|
+
[
|
|
1176
|
+
0,
|
|
1177
|
+
4,
|
|
1178
|
+
64 | 0,
|
|
1179
|
+
[() => Description, 0],
|
|
1180
|
+
0,
|
|
1181
|
+
0,
|
|
1182
|
+
0,
|
|
1183
|
+
4,
|
|
1184
|
+
[() => WorkspaceName, 0],
|
|
1185
|
+
[() => OrganizationRoleName, 0],
|
|
1186
|
+
64 | 0,
|
|
1187
|
+
[() => OrganizationalUnitList, 0],
|
|
1188
|
+
0,
|
|
1189
|
+
0,
|
|
1190
|
+
0,
|
|
1191
|
+
[() => IamRoleArn, 0],
|
|
1192
|
+
0,
|
|
1193
|
+
2,
|
|
1194
|
+
4,
|
|
1195
|
+
4,
|
|
1196
|
+
() => AuthenticationSummary,
|
|
1197
|
+
128 | 0,
|
|
1198
|
+
() => VpcConfiguration,
|
|
1199
|
+
() => NetworkAccessConfiguration,
|
|
1200
|
+
0,
|
|
1201
|
+
],
|
|
1202
|
+
];
|
|
1203
|
+
var WorkspaceSummary = [
|
|
1204
|
+
3,
|
|
1205
|
+
n0,
|
|
1206
|
+
_WS,
|
|
1207
|
+
0,
|
|
1208
|
+
[_cr, _d, _en, _gV, _i, _mo, _n, _nD, _st, _au, _t, _lT, _gT],
|
|
1209
|
+
[
|
|
1210
|
+
4,
|
|
1211
|
+
[() => Description, 0],
|
|
1212
|
+
0,
|
|
1213
|
+
0,
|
|
1214
|
+
0,
|
|
1215
|
+
4,
|
|
1216
|
+
[() => WorkspaceName, 0],
|
|
1217
|
+
64 | 0,
|
|
1218
|
+
0,
|
|
1219
|
+
() => AuthenticationSummary,
|
|
1220
|
+
128 | 0,
|
|
1221
|
+
0,
|
|
1222
|
+
0,
|
|
1223
|
+
],
|
|
1224
|
+
];
|
|
1225
|
+
var GrafanaServiceException = [-3, _sm, "GrafanaServiceException", 0, [], []];
|
|
1226
|
+
schema.TypeRegistry.for(_sm).registerError(GrafanaServiceException, GrafanaServiceException$1);
|
|
1227
|
+
var OrganizationalUnitList = [1, n0, _OUL, 8, 0];
|
|
1228
|
+
var PermissionEntryList = [1, n0, _PEL, 0, () => PermissionEntry];
|
|
1229
|
+
var RoleValueList = [1, n0, _RVL, 8, 0];
|
|
1230
|
+
var ServiceAccountList = [1, n0, _SAL, 0, () => ServiceAccountSummary];
|
|
1231
|
+
var ServiceAccountTokenList = [1, n0, _SATL, 0, () => ServiceAccountTokenSummary];
|
|
1232
|
+
var UpdateErrorList = [1, n0, _UEL, 0, () => UpdateError];
|
|
1233
|
+
var UpdateInstructionBatch = [1, n0, _UIB, 0, () => UpdateInstruction];
|
|
1234
|
+
var UserList = [1, n0, _UL, 0, () => User];
|
|
1235
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
|
|
1236
|
+
var WorkspaceList = [1, n0, _WL, 0, [() => WorkspaceSummary, 0]];
|
|
1237
|
+
var IdpMetadata = [3, n0, _IM, 0, [_ur, _x], [0, 0]];
|
|
1238
|
+
var AssociateLicense = [
|
|
1239
|
+
9,
|
|
1240
|
+
n0,
|
|
1241
|
+
_AL,
|
|
1242
|
+
{
|
|
1243
|
+
[_h]: ["POST", "/workspaces/{workspaceId}/licenses/{licenseType}", 202],
|
|
1244
|
+
},
|
|
1245
|
+
() => AssociateLicenseRequest,
|
|
1246
|
+
() => AssociateLicenseResponse,
|
|
1247
|
+
];
|
|
1248
|
+
var CreateWorkspace = [
|
|
1249
|
+
9,
|
|
1250
|
+
n0,
|
|
1251
|
+
_CW,
|
|
1252
|
+
{
|
|
1253
|
+
[_h]: ["POST", "/workspaces", 202],
|
|
1254
|
+
},
|
|
1255
|
+
() => CreateWorkspaceRequest,
|
|
1256
|
+
() => CreateWorkspaceResponse,
|
|
1257
|
+
];
|
|
1258
|
+
var CreateWorkspaceApiKey = [
|
|
1259
|
+
9,
|
|
1260
|
+
n0,
|
|
1261
|
+
_CWAK,
|
|
1262
|
+
{
|
|
1263
|
+
[_h]: ["POST", "/workspaces/{workspaceId}/apikeys", 200],
|
|
1264
|
+
},
|
|
1265
|
+
() => CreateWorkspaceApiKeyRequest,
|
|
1266
|
+
() => CreateWorkspaceApiKeyResponse,
|
|
1267
|
+
];
|
|
1268
|
+
var CreateWorkspaceServiceAccount = [
|
|
1269
|
+
9,
|
|
1270
|
+
n0,
|
|
1271
|
+
_CWSA,
|
|
1272
|
+
{
|
|
1273
|
+
[_h]: ["POST", "/workspaces/{workspaceId}/serviceaccounts", 200],
|
|
1274
|
+
},
|
|
1275
|
+
() => CreateWorkspaceServiceAccountRequest,
|
|
1276
|
+
() => CreateWorkspaceServiceAccountResponse,
|
|
1277
|
+
];
|
|
1278
|
+
var CreateWorkspaceServiceAccountToken = [
|
|
1279
|
+
9,
|
|
1280
|
+
n0,
|
|
1281
|
+
_CWSAT,
|
|
1282
|
+
{
|
|
1283
|
+
[_h]: ["POST", "/workspaces/{workspaceId}/serviceaccounts/{serviceAccountId}/tokens", 200],
|
|
1284
|
+
},
|
|
1285
|
+
() => CreateWorkspaceServiceAccountTokenRequest,
|
|
1286
|
+
() => CreateWorkspaceServiceAccountTokenResponse,
|
|
1287
|
+
];
|
|
1288
|
+
var DeleteWorkspace = [
|
|
1289
|
+
9,
|
|
1290
|
+
n0,
|
|
1291
|
+
_DW,
|
|
1292
|
+
{
|
|
1293
|
+
[_h]: ["DELETE", "/workspaces/{workspaceId}", 202],
|
|
1294
|
+
},
|
|
1295
|
+
() => DeleteWorkspaceRequest,
|
|
1296
|
+
() => DeleteWorkspaceResponse,
|
|
1297
|
+
];
|
|
1298
|
+
var DeleteWorkspaceApiKey = [
|
|
1299
|
+
9,
|
|
1300
|
+
n0,
|
|
1301
|
+
_DWAK,
|
|
1302
|
+
{
|
|
1303
|
+
[_h]: ["DELETE", "/workspaces/{workspaceId}/apikeys/{keyName}", 200],
|
|
1304
|
+
},
|
|
1305
|
+
() => DeleteWorkspaceApiKeyRequest,
|
|
1306
|
+
() => DeleteWorkspaceApiKeyResponse,
|
|
1307
|
+
];
|
|
1308
|
+
var DeleteWorkspaceServiceAccount = [
|
|
1309
|
+
9,
|
|
1310
|
+
n0,
|
|
1311
|
+
_DWSA,
|
|
1312
|
+
{
|
|
1313
|
+
[_h]: ["DELETE", "/workspaces/{workspaceId}/serviceaccounts/{serviceAccountId}", 200],
|
|
1314
|
+
},
|
|
1315
|
+
() => DeleteWorkspaceServiceAccountRequest,
|
|
1316
|
+
() => DeleteWorkspaceServiceAccountResponse,
|
|
1317
|
+
];
|
|
1318
|
+
var DeleteWorkspaceServiceAccountToken = [
|
|
1319
|
+
9,
|
|
1320
|
+
n0,
|
|
1321
|
+
_DWSAT,
|
|
1322
|
+
{
|
|
1323
|
+
[_h]: ["DELETE", "/workspaces/{workspaceId}/serviceaccounts/{serviceAccountId}/tokens/{tokenId}", 200],
|
|
1324
|
+
},
|
|
1325
|
+
() => DeleteWorkspaceServiceAccountTokenRequest,
|
|
1326
|
+
() => DeleteWorkspaceServiceAccountTokenResponse,
|
|
1327
|
+
];
|
|
1328
|
+
var DescribeWorkspace = [
|
|
1329
|
+
9,
|
|
1330
|
+
n0,
|
|
1331
|
+
_DWe,
|
|
1332
|
+
{
|
|
1333
|
+
[_h]: ["GET", "/workspaces/{workspaceId}", 200],
|
|
1334
|
+
},
|
|
1335
|
+
() => DescribeWorkspaceRequest,
|
|
1336
|
+
() => DescribeWorkspaceResponse,
|
|
1337
|
+
];
|
|
1338
|
+
var DescribeWorkspaceAuthentication = [
|
|
1339
|
+
9,
|
|
1340
|
+
n0,
|
|
1341
|
+
_DWA,
|
|
1342
|
+
{
|
|
1343
|
+
[_h]: ["GET", "/workspaces/{workspaceId}/authentication", 200],
|
|
1344
|
+
},
|
|
1345
|
+
() => DescribeWorkspaceAuthenticationRequest,
|
|
1346
|
+
() => DescribeWorkspaceAuthenticationResponse,
|
|
1347
|
+
];
|
|
1348
|
+
var DescribeWorkspaceConfiguration = [
|
|
1349
|
+
9,
|
|
1350
|
+
n0,
|
|
1351
|
+
_DWC,
|
|
1352
|
+
{
|
|
1353
|
+
[_h]: ["GET", "/workspaces/{workspaceId}/configuration", 200],
|
|
1354
|
+
},
|
|
1355
|
+
() => DescribeWorkspaceConfigurationRequest,
|
|
1356
|
+
() => DescribeWorkspaceConfigurationResponse,
|
|
1357
|
+
];
|
|
1358
|
+
var DisassociateLicense = [
|
|
1359
|
+
9,
|
|
1360
|
+
n0,
|
|
1361
|
+
_DL,
|
|
1362
|
+
{
|
|
1363
|
+
[_h]: ["DELETE", "/workspaces/{workspaceId}/licenses/{licenseType}", 202],
|
|
1364
|
+
},
|
|
1365
|
+
() => DisassociateLicenseRequest,
|
|
1366
|
+
() => DisassociateLicenseResponse,
|
|
1367
|
+
];
|
|
1368
|
+
var ListPermissions = [
|
|
1369
|
+
9,
|
|
1370
|
+
n0,
|
|
1371
|
+
_LP,
|
|
1372
|
+
{
|
|
1373
|
+
[_h]: ["GET", "/workspaces/{workspaceId}/permissions", 200],
|
|
1374
|
+
},
|
|
1375
|
+
() => ListPermissionsRequest,
|
|
1376
|
+
() => ListPermissionsResponse,
|
|
1377
|
+
];
|
|
1378
|
+
var ListTagsForResource = [
|
|
1379
|
+
9,
|
|
1380
|
+
n0,
|
|
1381
|
+
_LTFR,
|
|
1382
|
+
{
|
|
1383
|
+
[_h]: ["GET", "/tags/{resourceArn}", 200],
|
|
1384
|
+
},
|
|
1385
|
+
() => ListTagsForResourceRequest,
|
|
1386
|
+
() => ListTagsForResourceResponse,
|
|
1387
|
+
];
|
|
1388
|
+
var ListVersions = [
|
|
1389
|
+
9,
|
|
1390
|
+
n0,
|
|
1391
|
+
_LV,
|
|
1392
|
+
{
|
|
1393
|
+
[_h]: ["GET", "/versions", 200],
|
|
1394
|
+
},
|
|
1395
|
+
() => ListVersionsRequest,
|
|
1396
|
+
() => ListVersionsResponse,
|
|
1397
|
+
];
|
|
1398
|
+
var ListWorkspaces = [
|
|
1399
|
+
9,
|
|
1400
|
+
n0,
|
|
1401
|
+
_LW,
|
|
1402
|
+
{
|
|
1403
|
+
[_h]: ["GET", "/workspaces", 200],
|
|
1404
|
+
},
|
|
1405
|
+
() => ListWorkspacesRequest,
|
|
1406
|
+
() => ListWorkspacesResponse,
|
|
1407
|
+
];
|
|
1408
|
+
var ListWorkspaceServiceAccounts = [
|
|
1409
|
+
9,
|
|
1410
|
+
n0,
|
|
1411
|
+
_LWSA,
|
|
1412
|
+
{
|
|
1413
|
+
[_h]: ["GET", "/workspaces/{workspaceId}/serviceaccounts", 200],
|
|
1414
|
+
},
|
|
1415
|
+
() => ListWorkspaceServiceAccountsRequest,
|
|
1416
|
+
() => ListWorkspaceServiceAccountsResponse,
|
|
1417
|
+
];
|
|
1418
|
+
var ListWorkspaceServiceAccountTokens = [
|
|
1419
|
+
9,
|
|
1420
|
+
n0,
|
|
1421
|
+
_LWSAT,
|
|
1422
|
+
{
|
|
1423
|
+
[_h]: ["GET", "/workspaces/{workspaceId}/serviceaccounts/{serviceAccountId}/tokens", 200],
|
|
1424
|
+
},
|
|
1425
|
+
() => ListWorkspaceServiceAccountTokensRequest,
|
|
1426
|
+
() => ListWorkspaceServiceAccountTokensResponse,
|
|
1427
|
+
];
|
|
1428
|
+
var TagResource = [
|
|
1429
|
+
9,
|
|
1430
|
+
n0,
|
|
1431
|
+
_TR,
|
|
1432
|
+
{
|
|
1433
|
+
[_h]: ["POST", "/tags/{resourceArn}", 200],
|
|
1434
|
+
},
|
|
1435
|
+
() => TagResourceRequest,
|
|
1436
|
+
() => TagResourceResponse,
|
|
1437
|
+
];
|
|
1438
|
+
var UntagResource = [
|
|
1439
|
+
9,
|
|
1440
|
+
n0,
|
|
1441
|
+
_UR,
|
|
1442
|
+
{
|
|
1443
|
+
[_h]: ["DELETE", "/tags/{resourceArn}", 200],
|
|
1444
|
+
},
|
|
1445
|
+
() => UntagResourceRequest,
|
|
1446
|
+
() => UntagResourceResponse,
|
|
1447
|
+
];
|
|
1448
|
+
var UpdatePermissions = [
|
|
1449
|
+
9,
|
|
1450
|
+
n0,
|
|
1451
|
+
_UP,
|
|
1452
|
+
{
|
|
1453
|
+
[_h]: ["PATCH", "/workspaces/{workspaceId}/permissions", 200],
|
|
1454
|
+
},
|
|
1455
|
+
() => UpdatePermissionsRequest,
|
|
1456
|
+
() => UpdatePermissionsResponse,
|
|
1457
|
+
];
|
|
1458
|
+
var UpdateWorkspace = [
|
|
1459
|
+
9,
|
|
1460
|
+
n0,
|
|
1461
|
+
_UW,
|
|
1462
|
+
{
|
|
1463
|
+
[_h]: ["PUT", "/workspaces/{workspaceId}", 202],
|
|
1464
|
+
},
|
|
1465
|
+
() => UpdateWorkspaceRequest,
|
|
1466
|
+
() => UpdateWorkspaceResponse,
|
|
1467
|
+
];
|
|
1468
|
+
var UpdateWorkspaceAuthentication = [
|
|
1469
|
+
9,
|
|
1470
|
+
n0,
|
|
1471
|
+
_UWA,
|
|
1472
|
+
{
|
|
1473
|
+
[_h]: ["POST", "/workspaces/{workspaceId}/authentication", 200],
|
|
1474
|
+
},
|
|
1475
|
+
() => UpdateWorkspaceAuthenticationRequest,
|
|
1476
|
+
() => UpdateWorkspaceAuthenticationResponse,
|
|
1477
|
+
];
|
|
1478
|
+
var UpdateWorkspaceConfiguration = [
|
|
1479
|
+
9,
|
|
1480
|
+
n0,
|
|
1481
|
+
_UWC,
|
|
1482
|
+
{
|
|
1483
|
+
[_h]: ["PUT", "/workspaces/{workspaceId}/configuration", 202],
|
|
1484
|
+
},
|
|
1485
|
+
() => UpdateWorkspaceConfigurationRequest,
|
|
1486
|
+
() => UpdateWorkspaceConfigurationResponse,
|
|
1487
|
+
];
|
|
1346
1488
|
|
|
1347
1489
|
class AssociateLicenseCommand extends smithyClient.Command
|
|
1348
1490
|
.classBuilder()
|
|
1349
1491
|
.ep(commonParams)
|
|
1350
1492
|
.m(function (Command, cs, config, o) {
|
|
1351
|
-
return [
|
|
1352
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1353
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1354
|
-
];
|
|
1493
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1355
1494
|
})
|
|
1356
1495
|
.s("AWSGrafanaControlPlane", "AssociateLicense", {})
|
|
1357
1496
|
.n("GrafanaClient", "AssociateLicenseCommand")
|
|
1358
|
-
.
|
|
1359
|
-
.ser(se_AssociateLicenseCommand)
|
|
1360
|
-
.de(de_AssociateLicenseCommand)
|
|
1497
|
+
.sc(AssociateLicense)
|
|
1361
1498
|
.build() {
|
|
1362
1499
|
}
|
|
1363
1500
|
|
|
@@ -1365,16 +1502,11 @@ class CreateWorkspaceApiKeyCommand extends smithyClient.Command
|
|
|
1365
1502
|
.classBuilder()
|
|
1366
1503
|
.ep(commonParams)
|
|
1367
1504
|
.m(function (Command, cs, config, o) {
|
|
1368
|
-
return [
|
|
1369
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1370
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1371
|
-
];
|
|
1505
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1372
1506
|
})
|
|
1373
1507
|
.s("AWSGrafanaControlPlane", "CreateWorkspaceApiKey", {})
|
|
1374
1508
|
.n("GrafanaClient", "CreateWorkspaceApiKeyCommand")
|
|
1375
|
-
.
|
|
1376
|
-
.ser(se_CreateWorkspaceApiKeyCommand)
|
|
1377
|
-
.de(de_CreateWorkspaceApiKeyCommand)
|
|
1509
|
+
.sc(CreateWorkspaceApiKey)
|
|
1378
1510
|
.build() {
|
|
1379
1511
|
}
|
|
1380
1512
|
|
|
@@ -1382,16 +1514,11 @@ class CreateWorkspaceCommand extends smithyClient.Command
|
|
|
1382
1514
|
.classBuilder()
|
|
1383
1515
|
.ep(commonParams)
|
|
1384
1516
|
.m(function (Command, cs, config, o) {
|
|
1385
|
-
return [
|
|
1386
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1387
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1388
|
-
];
|
|
1517
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1389
1518
|
})
|
|
1390
1519
|
.s("AWSGrafanaControlPlane", "CreateWorkspace", {})
|
|
1391
1520
|
.n("GrafanaClient", "CreateWorkspaceCommand")
|
|
1392
|
-
.
|
|
1393
|
-
.ser(se_CreateWorkspaceCommand)
|
|
1394
|
-
.de(de_CreateWorkspaceCommand)
|
|
1521
|
+
.sc(CreateWorkspace)
|
|
1395
1522
|
.build() {
|
|
1396
1523
|
}
|
|
1397
1524
|
|
|
@@ -1399,16 +1526,11 @@ class CreateWorkspaceServiceAccountCommand extends smithyClient.Command
|
|
|
1399
1526
|
.classBuilder()
|
|
1400
1527
|
.ep(commonParams)
|
|
1401
1528
|
.m(function (Command, cs, config, o) {
|
|
1402
|
-
return [
|
|
1403
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1404
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1405
|
-
];
|
|
1529
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1406
1530
|
})
|
|
1407
1531
|
.s("AWSGrafanaControlPlane", "CreateWorkspaceServiceAccount", {})
|
|
1408
1532
|
.n("GrafanaClient", "CreateWorkspaceServiceAccountCommand")
|
|
1409
|
-
.
|
|
1410
|
-
.ser(se_CreateWorkspaceServiceAccountCommand)
|
|
1411
|
-
.de(de_CreateWorkspaceServiceAccountCommand)
|
|
1533
|
+
.sc(CreateWorkspaceServiceAccount)
|
|
1412
1534
|
.build() {
|
|
1413
1535
|
}
|
|
1414
1536
|
|
|
@@ -1416,16 +1538,11 @@ class CreateWorkspaceServiceAccountTokenCommand extends smithyClient.Command
|
|
|
1416
1538
|
.classBuilder()
|
|
1417
1539
|
.ep(commonParams)
|
|
1418
1540
|
.m(function (Command, cs, config, o) {
|
|
1419
|
-
return [
|
|
1420
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1421
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1422
|
-
];
|
|
1541
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1423
1542
|
})
|
|
1424
1543
|
.s("AWSGrafanaControlPlane", "CreateWorkspaceServiceAccountToken", {})
|
|
1425
1544
|
.n("GrafanaClient", "CreateWorkspaceServiceAccountTokenCommand")
|
|
1426
|
-
.
|
|
1427
|
-
.ser(se_CreateWorkspaceServiceAccountTokenCommand)
|
|
1428
|
-
.de(de_CreateWorkspaceServiceAccountTokenCommand)
|
|
1545
|
+
.sc(CreateWorkspaceServiceAccountToken)
|
|
1429
1546
|
.build() {
|
|
1430
1547
|
}
|
|
1431
1548
|
|
|
@@ -1433,16 +1550,11 @@ class DeleteWorkspaceApiKeyCommand extends smithyClient.Command
|
|
|
1433
1550
|
.classBuilder()
|
|
1434
1551
|
.ep(commonParams)
|
|
1435
1552
|
.m(function (Command, cs, config, o) {
|
|
1436
|
-
return [
|
|
1437
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1438
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1439
|
-
];
|
|
1553
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1440
1554
|
})
|
|
1441
1555
|
.s("AWSGrafanaControlPlane", "DeleteWorkspaceApiKey", {})
|
|
1442
1556
|
.n("GrafanaClient", "DeleteWorkspaceApiKeyCommand")
|
|
1443
|
-
.
|
|
1444
|
-
.ser(se_DeleteWorkspaceApiKeyCommand)
|
|
1445
|
-
.de(de_DeleteWorkspaceApiKeyCommand)
|
|
1557
|
+
.sc(DeleteWorkspaceApiKey)
|
|
1446
1558
|
.build() {
|
|
1447
1559
|
}
|
|
1448
1560
|
|
|
@@ -1450,16 +1562,11 @@ class DeleteWorkspaceCommand extends smithyClient.Command
|
|
|
1450
1562
|
.classBuilder()
|
|
1451
1563
|
.ep(commonParams)
|
|
1452
1564
|
.m(function (Command, cs, config, o) {
|
|
1453
|
-
return [
|
|
1454
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1455
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1456
|
-
];
|
|
1565
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1457
1566
|
})
|
|
1458
1567
|
.s("AWSGrafanaControlPlane", "DeleteWorkspace", {})
|
|
1459
1568
|
.n("GrafanaClient", "DeleteWorkspaceCommand")
|
|
1460
|
-
.
|
|
1461
|
-
.ser(se_DeleteWorkspaceCommand)
|
|
1462
|
-
.de(de_DeleteWorkspaceCommand)
|
|
1569
|
+
.sc(DeleteWorkspace)
|
|
1463
1570
|
.build() {
|
|
1464
1571
|
}
|
|
1465
1572
|
|
|
@@ -1467,16 +1574,11 @@ class DeleteWorkspaceServiceAccountCommand extends smithyClient.Command
|
|
|
1467
1574
|
.classBuilder()
|
|
1468
1575
|
.ep(commonParams)
|
|
1469
1576
|
.m(function (Command, cs, config, o) {
|
|
1470
|
-
return [
|
|
1471
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1472
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1473
|
-
];
|
|
1577
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1474
1578
|
})
|
|
1475
1579
|
.s("AWSGrafanaControlPlane", "DeleteWorkspaceServiceAccount", {})
|
|
1476
1580
|
.n("GrafanaClient", "DeleteWorkspaceServiceAccountCommand")
|
|
1477
|
-
.
|
|
1478
|
-
.ser(se_DeleteWorkspaceServiceAccountCommand)
|
|
1479
|
-
.de(de_DeleteWorkspaceServiceAccountCommand)
|
|
1581
|
+
.sc(DeleteWorkspaceServiceAccount)
|
|
1480
1582
|
.build() {
|
|
1481
1583
|
}
|
|
1482
1584
|
|
|
@@ -1484,16 +1586,11 @@ class DeleteWorkspaceServiceAccountTokenCommand extends smithyClient.Command
|
|
|
1484
1586
|
.classBuilder()
|
|
1485
1587
|
.ep(commonParams)
|
|
1486
1588
|
.m(function (Command, cs, config, o) {
|
|
1487
|
-
return [
|
|
1488
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1489
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1490
|
-
];
|
|
1589
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1491
1590
|
})
|
|
1492
1591
|
.s("AWSGrafanaControlPlane", "DeleteWorkspaceServiceAccountToken", {})
|
|
1493
1592
|
.n("GrafanaClient", "DeleteWorkspaceServiceAccountTokenCommand")
|
|
1494
|
-
.
|
|
1495
|
-
.ser(se_DeleteWorkspaceServiceAccountTokenCommand)
|
|
1496
|
-
.de(de_DeleteWorkspaceServiceAccountTokenCommand)
|
|
1593
|
+
.sc(DeleteWorkspaceServiceAccountToken)
|
|
1497
1594
|
.build() {
|
|
1498
1595
|
}
|
|
1499
1596
|
|
|
@@ -1501,16 +1598,11 @@ class DescribeWorkspaceAuthenticationCommand extends smithyClient.Command
|
|
|
1501
1598
|
.classBuilder()
|
|
1502
1599
|
.ep(commonParams)
|
|
1503
1600
|
.m(function (Command, cs, config, o) {
|
|
1504
|
-
return [
|
|
1505
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1506
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1507
|
-
];
|
|
1601
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1508
1602
|
})
|
|
1509
1603
|
.s("AWSGrafanaControlPlane", "DescribeWorkspaceAuthentication", {})
|
|
1510
1604
|
.n("GrafanaClient", "DescribeWorkspaceAuthenticationCommand")
|
|
1511
|
-
.
|
|
1512
|
-
.ser(se_DescribeWorkspaceAuthenticationCommand)
|
|
1513
|
-
.de(de_DescribeWorkspaceAuthenticationCommand)
|
|
1605
|
+
.sc(DescribeWorkspaceAuthentication)
|
|
1514
1606
|
.build() {
|
|
1515
1607
|
}
|
|
1516
1608
|
|
|
@@ -1518,16 +1610,11 @@ class DescribeWorkspaceCommand extends smithyClient.Command
|
|
|
1518
1610
|
.classBuilder()
|
|
1519
1611
|
.ep(commonParams)
|
|
1520
1612
|
.m(function (Command, cs, config, o) {
|
|
1521
|
-
return [
|
|
1522
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1523
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1524
|
-
];
|
|
1613
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1525
1614
|
})
|
|
1526
1615
|
.s("AWSGrafanaControlPlane", "DescribeWorkspace", {})
|
|
1527
1616
|
.n("GrafanaClient", "DescribeWorkspaceCommand")
|
|
1528
|
-
.
|
|
1529
|
-
.ser(se_DescribeWorkspaceCommand)
|
|
1530
|
-
.de(de_DescribeWorkspaceCommand)
|
|
1617
|
+
.sc(DescribeWorkspace)
|
|
1531
1618
|
.build() {
|
|
1532
1619
|
}
|
|
1533
1620
|
|
|
@@ -1535,16 +1622,11 @@ class DescribeWorkspaceConfigurationCommand extends smithyClient.Command
|
|
|
1535
1622
|
.classBuilder()
|
|
1536
1623
|
.ep(commonParams)
|
|
1537
1624
|
.m(function (Command, cs, config, o) {
|
|
1538
|
-
return [
|
|
1539
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1540
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1541
|
-
];
|
|
1625
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1542
1626
|
})
|
|
1543
1627
|
.s("AWSGrafanaControlPlane", "DescribeWorkspaceConfiguration", {})
|
|
1544
1628
|
.n("GrafanaClient", "DescribeWorkspaceConfigurationCommand")
|
|
1545
|
-
.
|
|
1546
|
-
.ser(se_DescribeWorkspaceConfigurationCommand)
|
|
1547
|
-
.de(de_DescribeWorkspaceConfigurationCommand)
|
|
1629
|
+
.sc(DescribeWorkspaceConfiguration)
|
|
1548
1630
|
.build() {
|
|
1549
1631
|
}
|
|
1550
1632
|
|
|
@@ -1552,16 +1634,11 @@ class DisassociateLicenseCommand extends smithyClient.Command
|
|
|
1552
1634
|
.classBuilder()
|
|
1553
1635
|
.ep(commonParams)
|
|
1554
1636
|
.m(function (Command, cs, config, o) {
|
|
1555
|
-
return [
|
|
1556
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1557
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1558
|
-
];
|
|
1637
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1559
1638
|
})
|
|
1560
1639
|
.s("AWSGrafanaControlPlane", "DisassociateLicense", {})
|
|
1561
1640
|
.n("GrafanaClient", "DisassociateLicenseCommand")
|
|
1562
|
-
.
|
|
1563
|
-
.ser(se_DisassociateLicenseCommand)
|
|
1564
|
-
.de(de_DisassociateLicenseCommand)
|
|
1641
|
+
.sc(DisassociateLicense)
|
|
1565
1642
|
.build() {
|
|
1566
1643
|
}
|
|
1567
1644
|
|
|
@@ -1569,16 +1646,11 @@ class ListPermissionsCommand extends smithyClient.Command
|
|
|
1569
1646
|
.classBuilder()
|
|
1570
1647
|
.ep(commonParams)
|
|
1571
1648
|
.m(function (Command, cs, config, o) {
|
|
1572
|
-
return [
|
|
1573
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1574
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1575
|
-
];
|
|
1649
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1576
1650
|
})
|
|
1577
1651
|
.s("AWSGrafanaControlPlane", "ListPermissions", {})
|
|
1578
1652
|
.n("GrafanaClient", "ListPermissionsCommand")
|
|
1579
|
-
.
|
|
1580
|
-
.ser(se_ListPermissionsCommand)
|
|
1581
|
-
.de(de_ListPermissionsCommand)
|
|
1653
|
+
.sc(ListPermissions)
|
|
1582
1654
|
.build() {
|
|
1583
1655
|
}
|
|
1584
1656
|
|
|
@@ -1586,16 +1658,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1586
1658
|
.classBuilder()
|
|
1587
1659
|
.ep(commonParams)
|
|
1588
1660
|
.m(function (Command, cs, config, o) {
|
|
1589
|
-
return [
|
|
1590
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1591
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1592
|
-
];
|
|
1661
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1593
1662
|
})
|
|
1594
1663
|
.s("AWSGrafanaControlPlane", "ListTagsForResource", {})
|
|
1595
1664
|
.n("GrafanaClient", "ListTagsForResourceCommand")
|
|
1596
|
-
.
|
|
1597
|
-
.ser(se_ListTagsForResourceCommand)
|
|
1598
|
-
.de(de_ListTagsForResourceCommand)
|
|
1665
|
+
.sc(ListTagsForResource)
|
|
1599
1666
|
.build() {
|
|
1600
1667
|
}
|
|
1601
1668
|
|
|
@@ -1603,16 +1670,11 @@ class ListVersionsCommand extends smithyClient.Command
|
|
|
1603
1670
|
.classBuilder()
|
|
1604
1671
|
.ep(commonParams)
|
|
1605
1672
|
.m(function (Command, cs, config, o) {
|
|
1606
|
-
return [
|
|
1607
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1608
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1609
|
-
];
|
|
1673
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1610
1674
|
})
|
|
1611
1675
|
.s("AWSGrafanaControlPlane", "ListVersions", {})
|
|
1612
1676
|
.n("GrafanaClient", "ListVersionsCommand")
|
|
1613
|
-
.
|
|
1614
|
-
.ser(se_ListVersionsCommand)
|
|
1615
|
-
.de(de_ListVersionsCommand)
|
|
1677
|
+
.sc(ListVersions)
|
|
1616
1678
|
.build() {
|
|
1617
1679
|
}
|
|
1618
1680
|
|
|
@@ -1620,16 +1682,11 @@ class ListWorkspacesCommand extends smithyClient.Command
|
|
|
1620
1682
|
.classBuilder()
|
|
1621
1683
|
.ep(commonParams)
|
|
1622
1684
|
.m(function (Command, cs, config, o) {
|
|
1623
|
-
return [
|
|
1624
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1625
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1626
|
-
];
|
|
1685
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1627
1686
|
})
|
|
1628
1687
|
.s("AWSGrafanaControlPlane", "ListWorkspaces", {})
|
|
1629
1688
|
.n("GrafanaClient", "ListWorkspacesCommand")
|
|
1630
|
-
.
|
|
1631
|
-
.ser(se_ListWorkspacesCommand)
|
|
1632
|
-
.de(de_ListWorkspacesCommand)
|
|
1689
|
+
.sc(ListWorkspaces)
|
|
1633
1690
|
.build() {
|
|
1634
1691
|
}
|
|
1635
1692
|
|
|
@@ -1637,16 +1694,11 @@ class ListWorkspaceServiceAccountsCommand extends smithyClient.Command
|
|
|
1637
1694
|
.classBuilder()
|
|
1638
1695
|
.ep(commonParams)
|
|
1639
1696
|
.m(function (Command, cs, config, o) {
|
|
1640
|
-
return [
|
|
1641
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1642
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1643
|
-
];
|
|
1697
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1644
1698
|
})
|
|
1645
1699
|
.s("AWSGrafanaControlPlane", "ListWorkspaceServiceAccounts", {})
|
|
1646
1700
|
.n("GrafanaClient", "ListWorkspaceServiceAccountsCommand")
|
|
1647
|
-
.
|
|
1648
|
-
.ser(se_ListWorkspaceServiceAccountsCommand)
|
|
1649
|
-
.de(de_ListWorkspaceServiceAccountsCommand)
|
|
1701
|
+
.sc(ListWorkspaceServiceAccounts)
|
|
1650
1702
|
.build() {
|
|
1651
1703
|
}
|
|
1652
1704
|
|
|
@@ -1654,16 +1706,11 @@ class ListWorkspaceServiceAccountTokensCommand extends smithyClient.Command
|
|
|
1654
1706
|
.classBuilder()
|
|
1655
1707
|
.ep(commonParams)
|
|
1656
1708
|
.m(function (Command, cs, config, o) {
|
|
1657
|
-
return [
|
|
1658
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1659
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1660
|
-
];
|
|
1709
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1661
1710
|
})
|
|
1662
1711
|
.s("AWSGrafanaControlPlane", "ListWorkspaceServiceAccountTokens", {})
|
|
1663
1712
|
.n("GrafanaClient", "ListWorkspaceServiceAccountTokensCommand")
|
|
1664
|
-
.
|
|
1665
|
-
.ser(se_ListWorkspaceServiceAccountTokensCommand)
|
|
1666
|
-
.de(de_ListWorkspaceServiceAccountTokensCommand)
|
|
1713
|
+
.sc(ListWorkspaceServiceAccountTokens)
|
|
1667
1714
|
.build() {
|
|
1668
1715
|
}
|
|
1669
1716
|
|
|
@@ -1671,16 +1718,11 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1671
1718
|
.classBuilder()
|
|
1672
1719
|
.ep(commonParams)
|
|
1673
1720
|
.m(function (Command, cs, config, o) {
|
|
1674
|
-
return [
|
|
1675
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1676
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1677
|
-
];
|
|
1721
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1678
1722
|
})
|
|
1679
1723
|
.s("AWSGrafanaControlPlane", "TagResource", {})
|
|
1680
1724
|
.n("GrafanaClient", "TagResourceCommand")
|
|
1681
|
-
.
|
|
1682
|
-
.ser(se_TagResourceCommand)
|
|
1683
|
-
.de(de_TagResourceCommand)
|
|
1725
|
+
.sc(TagResource)
|
|
1684
1726
|
.build() {
|
|
1685
1727
|
}
|
|
1686
1728
|
|
|
@@ -1688,16 +1730,11 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1688
1730
|
.classBuilder()
|
|
1689
1731
|
.ep(commonParams)
|
|
1690
1732
|
.m(function (Command, cs, config, o) {
|
|
1691
|
-
return [
|
|
1692
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1693
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1694
|
-
];
|
|
1733
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1695
1734
|
})
|
|
1696
1735
|
.s("AWSGrafanaControlPlane", "UntagResource", {})
|
|
1697
1736
|
.n("GrafanaClient", "UntagResourceCommand")
|
|
1698
|
-
.
|
|
1699
|
-
.ser(se_UntagResourceCommand)
|
|
1700
|
-
.de(de_UntagResourceCommand)
|
|
1737
|
+
.sc(UntagResource)
|
|
1701
1738
|
.build() {
|
|
1702
1739
|
}
|
|
1703
1740
|
|
|
@@ -1705,16 +1742,11 @@ class UpdatePermissionsCommand extends smithyClient.Command
|
|
|
1705
1742
|
.classBuilder()
|
|
1706
1743
|
.ep(commonParams)
|
|
1707
1744
|
.m(function (Command, cs, config, o) {
|
|
1708
|
-
return [
|
|
1709
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1710
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1711
|
-
];
|
|
1745
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1712
1746
|
})
|
|
1713
1747
|
.s("AWSGrafanaControlPlane", "UpdatePermissions", {})
|
|
1714
1748
|
.n("GrafanaClient", "UpdatePermissionsCommand")
|
|
1715
|
-
.
|
|
1716
|
-
.ser(se_UpdatePermissionsCommand)
|
|
1717
|
-
.de(de_UpdatePermissionsCommand)
|
|
1749
|
+
.sc(UpdatePermissions)
|
|
1718
1750
|
.build() {
|
|
1719
1751
|
}
|
|
1720
1752
|
|
|
@@ -1722,16 +1754,11 @@ class UpdateWorkspaceAuthenticationCommand extends smithyClient.Command
|
|
|
1722
1754
|
.classBuilder()
|
|
1723
1755
|
.ep(commonParams)
|
|
1724
1756
|
.m(function (Command, cs, config, o) {
|
|
1725
|
-
return [
|
|
1726
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1727
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1728
|
-
];
|
|
1757
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1729
1758
|
})
|
|
1730
1759
|
.s("AWSGrafanaControlPlane", "UpdateWorkspaceAuthentication", {})
|
|
1731
1760
|
.n("GrafanaClient", "UpdateWorkspaceAuthenticationCommand")
|
|
1732
|
-
.
|
|
1733
|
-
.ser(se_UpdateWorkspaceAuthenticationCommand)
|
|
1734
|
-
.de(de_UpdateWorkspaceAuthenticationCommand)
|
|
1761
|
+
.sc(UpdateWorkspaceAuthentication)
|
|
1735
1762
|
.build() {
|
|
1736
1763
|
}
|
|
1737
1764
|
|
|
@@ -1739,16 +1766,11 @@ class UpdateWorkspaceCommand extends smithyClient.Command
|
|
|
1739
1766
|
.classBuilder()
|
|
1740
1767
|
.ep(commonParams)
|
|
1741
1768
|
.m(function (Command, cs, config, o) {
|
|
1742
|
-
return [
|
|
1743
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1744
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1745
|
-
];
|
|
1769
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1746
1770
|
})
|
|
1747
1771
|
.s("AWSGrafanaControlPlane", "UpdateWorkspace", {})
|
|
1748
1772
|
.n("GrafanaClient", "UpdateWorkspaceCommand")
|
|
1749
|
-
.
|
|
1750
|
-
.ser(se_UpdateWorkspaceCommand)
|
|
1751
|
-
.de(de_UpdateWorkspaceCommand)
|
|
1773
|
+
.sc(UpdateWorkspace)
|
|
1752
1774
|
.build() {
|
|
1753
1775
|
}
|
|
1754
1776
|
|
|
@@ -1756,16 +1778,11 @@ class UpdateWorkspaceConfigurationCommand extends smithyClient.Command
|
|
|
1756
1778
|
.classBuilder()
|
|
1757
1779
|
.ep(commonParams)
|
|
1758
1780
|
.m(function (Command, cs, config, o) {
|
|
1759
|
-
return [
|
|
1760
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1761
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1762
|
-
];
|
|
1781
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1763
1782
|
})
|
|
1764
1783
|
.s("AWSGrafanaControlPlane", "UpdateWorkspaceConfiguration", {})
|
|
1765
1784
|
.n("GrafanaClient", "UpdateWorkspaceConfigurationCommand")
|
|
1766
|
-
.
|
|
1767
|
-
.ser(se_UpdateWorkspaceConfigurationCommand)
|
|
1768
|
-
.de(de_UpdateWorkspaceConfigurationCommand)
|
|
1785
|
+
.sc(UpdateWorkspaceConfiguration)
|
|
1769
1786
|
.build() {
|
|
1770
1787
|
}
|
|
1771
1788
|
|
|
@@ -1818,38 +1835,28 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1818
1835
|
enumerable: true,
|
|
1819
1836
|
get: function () { return smithyClient.Client; }
|
|
1820
1837
|
});
|
|
1821
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
1838
|
+
exports.AccessDeniedException = AccessDeniedException$1;
|
|
1822
1839
|
exports.AccountAccessType = AccountAccessType;
|
|
1823
1840
|
exports.AssociateLicenseCommand = AssociateLicenseCommand;
|
|
1824
|
-
exports.AssociateLicenseResponseFilterSensitiveLog = AssociateLicenseResponseFilterSensitiveLog;
|
|
1825
|
-
exports.AuthenticationDescriptionFilterSensitiveLog = AuthenticationDescriptionFilterSensitiveLog;
|
|
1826
1841
|
exports.AuthenticationProviderTypes = AuthenticationProviderTypes;
|
|
1827
|
-
exports.ConflictException = ConflictException;
|
|
1842
|
+
exports.ConflictException = ConflictException$1;
|
|
1828
1843
|
exports.CreateWorkspaceApiKeyCommand = CreateWorkspaceApiKeyCommand;
|
|
1829
|
-
exports.CreateWorkspaceApiKeyResponseFilterSensitiveLog = CreateWorkspaceApiKeyResponseFilterSensitiveLog;
|
|
1830
1844
|
exports.CreateWorkspaceCommand = CreateWorkspaceCommand;
|
|
1831
|
-
exports.CreateWorkspaceRequestFilterSensitiveLog = CreateWorkspaceRequestFilterSensitiveLog;
|
|
1832
|
-
exports.CreateWorkspaceResponseFilterSensitiveLog = CreateWorkspaceResponseFilterSensitiveLog;
|
|
1833
1845
|
exports.CreateWorkspaceServiceAccountCommand = CreateWorkspaceServiceAccountCommand;
|
|
1834
1846
|
exports.CreateWorkspaceServiceAccountTokenCommand = CreateWorkspaceServiceAccountTokenCommand;
|
|
1835
|
-
exports.CreateWorkspaceServiceAccountTokenResponseFilterSensitiveLog = CreateWorkspaceServiceAccountTokenResponseFilterSensitiveLog;
|
|
1836
1847
|
exports.DataSourceType = DataSourceType;
|
|
1837
1848
|
exports.DeleteWorkspaceApiKeyCommand = DeleteWorkspaceApiKeyCommand;
|
|
1838
1849
|
exports.DeleteWorkspaceCommand = DeleteWorkspaceCommand;
|
|
1839
|
-
exports.DeleteWorkspaceResponseFilterSensitiveLog = DeleteWorkspaceResponseFilterSensitiveLog;
|
|
1840
1850
|
exports.DeleteWorkspaceServiceAccountCommand = DeleteWorkspaceServiceAccountCommand;
|
|
1841
1851
|
exports.DeleteWorkspaceServiceAccountTokenCommand = DeleteWorkspaceServiceAccountTokenCommand;
|
|
1842
1852
|
exports.DescribeWorkspaceAuthenticationCommand = DescribeWorkspaceAuthenticationCommand;
|
|
1843
|
-
exports.DescribeWorkspaceAuthenticationResponseFilterSensitiveLog = DescribeWorkspaceAuthenticationResponseFilterSensitiveLog;
|
|
1844
1853
|
exports.DescribeWorkspaceCommand = DescribeWorkspaceCommand;
|
|
1845
1854
|
exports.DescribeWorkspaceConfigurationCommand = DescribeWorkspaceConfigurationCommand;
|
|
1846
|
-
exports.DescribeWorkspaceResponseFilterSensitiveLog = DescribeWorkspaceResponseFilterSensitiveLog;
|
|
1847
1855
|
exports.DisassociateLicenseCommand = DisassociateLicenseCommand;
|
|
1848
|
-
exports.DisassociateLicenseResponseFilterSensitiveLog = DisassociateLicenseResponseFilterSensitiveLog;
|
|
1849
1856
|
exports.Grafana = Grafana;
|
|
1850
1857
|
exports.GrafanaClient = GrafanaClient;
|
|
1851
|
-
exports.GrafanaServiceException = GrafanaServiceException;
|
|
1852
|
-
exports.InternalServerException = InternalServerException;
|
|
1858
|
+
exports.GrafanaServiceException = GrafanaServiceException$1;
|
|
1859
|
+
exports.InternalServerException = InternalServerException$1;
|
|
1853
1860
|
exports.LicenseType = LicenseType;
|
|
1854
1861
|
exports.ListPermissionsCommand = ListPermissionsCommand;
|
|
1855
1862
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
@@ -1857,35 +1864,24 @@ exports.ListVersionsCommand = ListVersionsCommand;
|
|
|
1857
1864
|
exports.ListWorkspaceServiceAccountTokensCommand = ListWorkspaceServiceAccountTokensCommand;
|
|
1858
1865
|
exports.ListWorkspaceServiceAccountsCommand = ListWorkspaceServiceAccountsCommand;
|
|
1859
1866
|
exports.ListWorkspacesCommand = ListWorkspacesCommand;
|
|
1860
|
-
exports.ListWorkspacesResponseFilterSensitiveLog = ListWorkspacesResponseFilterSensitiveLog;
|
|
1861
1867
|
exports.NotificationDestinationType = NotificationDestinationType;
|
|
1862
1868
|
exports.PermissionType = PermissionType;
|
|
1863
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1869
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
1864
1870
|
exports.Role = Role;
|
|
1865
|
-
exports.RoleValuesFilterSensitiveLog = RoleValuesFilterSensitiveLog;
|
|
1866
|
-
exports.SamlAuthenticationFilterSensitiveLog = SamlAuthenticationFilterSensitiveLog;
|
|
1867
|
-
exports.SamlConfigurationFilterSensitiveLog = SamlConfigurationFilterSensitiveLog;
|
|
1868
1871
|
exports.SamlConfigurationStatus = SamlConfigurationStatus;
|
|
1869
|
-
exports.
|
|
1870
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1872
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
|
|
1871
1873
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1872
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1874
|
+
exports.ThrottlingException = ThrottlingException$1;
|
|
1873
1875
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1874
1876
|
exports.UpdateAction = UpdateAction;
|
|
1875
1877
|
exports.UpdatePermissionsCommand = UpdatePermissionsCommand;
|
|
1876
1878
|
exports.UpdateWorkspaceAuthenticationCommand = UpdateWorkspaceAuthenticationCommand;
|
|
1877
|
-
exports.UpdateWorkspaceAuthenticationRequestFilterSensitiveLog = UpdateWorkspaceAuthenticationRequestFilterSensitiveLog;
|
|
1878
|
-
exports.UpdateWorkspaceAuthenticationResponseFilterSensitiveLog = UpdateWorkspaceAuthenticationResponseFilterSensitiveLog;
|
|
1879
1879
|
exports.UpdateWorkspaceCommand = UpdateWorkspaceCommand;
|
|
1880
1880
|
exports.UpdateWorkspaceConfigurationCommand = UpdateWorkspaceConfigurationCommand;
|
|
1881
|
-
exports.UpdateWorkspaceRequestFilterSensitiveLog = UpdateWorkspaceRequestFilterSensitiveLog;
|
|
1882
|
-
exports.UpdateWorkspaceResponseFilterSensitiveLog = UpdateWorkspaceResponseFilterSensitiveLog;
|
|
1883
1881
|
exports.UserType = UserType;
|
|
1884
|
-
exports.ValidationException = ValidationException;
|
|
1882
|
+
exports.ValidationException = ValidationException$1;
|
|
1885
1883
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
1886
|
-
exports.WorkspaceDescriptionFilterSensitiveLog = WorkspaceDescriptionFilterSensitiveLog;
|
|
1887
1884
|
exports.WorkspaceStatus = WorkspaceStatus;
|
|
1888
|
-
exports.WorkspaceSummaryFilterSensitiveLog = WorkspaceSummaryFilterSensitiveLog;
|
|
1889
1885
|
exports.paginateListPermissions = paginateListPermissions;
|
|
1890
1886
|
exports.paginateListVersions = paginateListVersions;
|
|
1891
1887
|
exports.paginateListWorkspaceServiceAccountTokens = paginateListWorkspaceServiceAccountTokens;
|