@aws-sdk/client-grafana 3.296.0 → 3.298.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/commands/AssociateLicenseCommand.js +1 -1
- package/dist-cjs/commands/CreateWorkspaceApiKeyCommand.js +1 -1
- package/dist-cjs/commands/DeleteWorkspaceApiKeyCommand.js +2 -3
- package/dist-cjs/commands/DeleteWorkspaceCommand.js +1 -1
- package/dist-cjs/commands/DescribeWorkspaceAuthenticationCommand.js +2 -3
- package/dist-cjs/commands/DescribeWorkspaceCommand.js +1 -1
- package/dist-cjs/commands/DescribeWorkspaceConfigurationCommand.js +2 -3
- package/dist-cjs/commands/DisassociateLicenseCommand.js +1 -1
- package/dist-cjs/commands/ListPermissionsCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/ListWorkspacesCommand.js +1 -1
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/commands/UpdatePermissionsCommand.js +2 -3
- package/dist-cjs/commands/UpdateWorkspaceAuthenticationCommand.js +2 -3
- package/dist-cjs/commands/UpdateWorkspaceConfigurationCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -177
- package/dist-es/commands/AssociateLicenseCommand.js +2 -2
- package/dist-es/commands/CreateWorkspaceApiKeyCommand.js +2 -2
- package/dist-es/commands/DeleteWorkspaceApiKeyCommand.js +2 -3
- package/dist-es/commands/DeleteWorkspaceCommand.js +2 -2
- package/dist-es/commands/DescribeWorkspaceAuthenticationCommand.js +2 -3
- package/dist-es/commands/DescribeWorkspaceCommand.js +2 -2
- package/dist-es/commands/DescribeWorkspaceConfigurationCommand.js +2 -3
- package/dist-es/commands/DisassociateLicenseCommand.js +2 -2
- package/dist-es/commands/ListPermissionsCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/ListWorkspacesCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/commands/UpdatePermissionsCommand.js +2 -3
- package/dist-es/commands/UpdateWorkspaceAuthenticationCommand.js +2 -3
- package/dist-es/commands/UpdateWorkspaceConfigurationCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -134
- package/dist-types/Grafana.d.ts +19 -0
- package/dist-types/GrafanaClient.d.ts +24 -4
- package/dist-types/commands/AssociateLicenseCommand.d.ts +16 -0
- package/dist-types/commands/CreateWorkspaceApiKeyCommand.d.ts +16 -0
- package/dist-types/commands/CreateWorkspaceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWorkspaceApiKeyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWorkspaceCommand.d.ts +16 -0
- package/dist-types/commands/DescribeWorkspaceAuthenticationCommand.d.ts +16 -0
- package/dist-types/commands/DescribeWorkspaceCommand.d.ts +16 -0
- package/dist-types/commands/DescribeWorkspaceConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateLicenseCommand.d.ts +16 -0
- package/dist-types/commands/ListPermissionsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkspacesCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdatePermissionsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWorkspaceAuthenticationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWorkspaceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWorkspaceConfigurationCommand.d.ts +16 -0
- package/dist-types/models/GrafanaServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +173 -166
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListPermissionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListWorkspacesPaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -115
- package/package.json +4 -3
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListPermissionsCommandInput, ListPermissionsCommandOutput } from "../commands/ListPermissionsCommand";
|
|
3
3
|
import { GrafanaPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListPermissions(config: GrafanaPaginationConfiguration, input: ListPermissionsCommandInput, ...additionalArguments: any): Paginator<ListPermissionsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListWorkspacesCommandInput, ListWorkspacesCommandOutput } from "../commands/ListWorkspacesCommand";
|
|
3
3
|
import { GrafanaPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListWorkspaces(config: GrafanaPaginationConfiguration, input: ListWorkspacesCommandInput, ...additionalArguments: any): Paginator<ListWorkspacesCommandOutput>;
|
|
@@ -417,145 +417,30 @@ export interface UpdateWorkspaceRequest {
|
|
|
417
417
|
export interface UpdateWorkspaceResponse {
|
|
418
418
|
workspace: WorkspaceDescription | undefined;
|
|
419
419
|
}
|
|
420
|
-
export declare const CreateWorkspaceApiKeyRequestFilterSensitiveLog: (
|
|
421
|
-
obj: CreateWorkspaceApiKeyRequest
|
|
422
|
-
) => any;
|
|
423
420
|
export declare const CreateWorkspaceApiKeyResponseFilterSensitiveLog: (
|
|
424
421
|
obj: CreateWorkspaceApiKeyResponse
|
|
425
422
|
) => any;
|
|
426
|
-
export declare const ValidationExceptionFieldFilterSensitiveLog: (
|
|
427
|
-
obj: ValidationExceptionField
|
|
428
|
-
) => any;
|
|
429
|
-
export declare const DeleteWorkspaceApiKeyRequestFilterSensitiveLog: (
|
|
430
|
-
obj: DeleteWorkspaceApiKeyRequest
|
|
431
|
-
) => any;
|
|
432
|
-
export declare const DeleteWorkspaceApiKeyResponseFilterSensitiveLog: (
|
|
433
|
-
obj: DeleteWorkspaceApiKeyResponse
|
|
434
|
-
) => any;
|
|
435
|
-
export declare const AssertionAttributesFilterSensitiveLog: (
|
|
436
|
-
obj: AssertionAttributes
|
|
437
|
-
) => any;
|
|
438
|
-
export declare const AssociateLicenseRequestFilterSensitiveLog: (
|
|
439
|
-
obj: AssociateLicenseRequest
|
|
440
|
-
) => any;
|
|
441
|
-
export declare const AuthenticationSummaryFilterSensitiveLog: (
|
|
442
|
-
obj: AuthenticationSummary
|
|
443
|
-
) => any;
|
|
444
|
-
export declare const NetworkAccessConfigurationFilterSensitiveLog: (
|
|
445
|
-
obj: NetworkAccessConfiguration
|
|
446
|
-
) => any;
|
|
447
|
-
export declare const VpcConfigurationFilterSensitiveLog: (
|
|
448
|
-
obj: VpcConfiguration
|
|
449
|
-
) => any;
|
|
450
423
|
export declare const WorkspaceDescriptionFilterSensitiveLog: (
|
|
451
424
|
obj: WorkspaceDescription
|
|
452
425
|
) => any;
|
|
453
426
|
export declare const AssociateLicenseResponseFilterSensitiveLog: (
|
|
454
427
|
obj: AssociateLicenseResponse
|
|
455
428
|
) => any;
|
|
456
|
-
export declare const DescribeWorkspaceAuthenticationRequestFilterSensitiveLog: (
|
|
457
|
-
obj: DescribeWorkspaceAuthenticationRequest
|
|
458
|
-
) => any;
|
|
459
|
-
export declare const AwsSsoAuthenticationFilterSensitiveLog: (
|
|
460
|
-
obj: AwsSsoAuthentication
|
|
461
|
-
) => any;
|
|
462
|
-
export declare const IdpMetadataFilterSensitiveLog: (obj: IdpMetadata) => any;
|
|
463
|
-
export declare const RoleValuesFilterSensitiveLog: (obj: RoleValues) => any;
|
|
464
|
-
export declare const SamlConfigurationFilterSensitiveLog: (
|
|
465
|
-
obj: SamlConfiguration
|
|
466
|
-
) => any;
|
|
467
|
-
export declare const SamlAuthenticationFilterSensitiveLog: (
|
|
468
|
-
obj: SamlAuthentication
|
|
469
|
-
) => any;
|
|
470
|
-
export declare const AuthenticationDescriptionFilterSensitiveLog: (
|
|
471
|
-
obj: AuthenticationDescription
|
|
472
|
-
) => any;
|
|
473
|
-
export declare const DescribeWorkspaceAuthenticationResponseFilterSensitiveLog: (
|
|
474
|
-
obj: DescribeWorkspaceAuthenticationResponse
|
|
475
|
-
) => any;
|
|
476
|
-
export declare const UpdateWorkspaceAuthenticationRequestFilterSensitiveLog: (
|
|
477
|
-
obj: UpdateWorkspaceAuthenticationRequest
|
|
478
|
-
) => any;
|
|
479
|
-
export declare const UpdateWorkspaceAuthenticationResponseFilterSensitiveLog: (
|
|
480
|
-
obj: UpdateWorkspaceAuthenticationResponse
|
|
481
|
-
) => any;
|
|
482
|
-
export declare const DescribeWorkspaceConfigurationRequestFilterSensitiveLog: (
|
|
483
|
-
obj: DescribeWorkspaceConfigurationRequest
|
|
484
|
-
) => any;
|
|
485
|
-
export declare const DescribeWorkspaceConfigurationResponseFilterSensitiveLog: (
|
|
486
|
-
obj: DescribeWorkspaceConfigurationResponse
|
|
487
|
-
) => any;
|
|
488
|
-
export declare const UpdateWorkspaceConfigurationRequestFilterSensitiveLog: (
|
|
489
|
-
obj: UpdateWorkspaceConfigurationRequest
|
|
490
|
-
) => any;
|
|
491
|
-
export declare const UpdateWorkspaceConfigurationResponseFilterSensitiveLog: (
|
|
492
|
-
obj: UpdateWorkspaceConfigurationResponse
|
|
493
|
-
) => any;
|
|
494
|
-
export declare const DisassociateLicenseRequestFilterSensitiveLog: (
|
|
495
|
-
obj: DisassociateLicenseRequest
|
|
496
|
-
) => any;
|
|
497
429
|
export declare const DisassociateLicenseResponseFilterSensitiveLog: (
|
|
498
430
|
obj: DisassociateLicenseResponse
|
|
499
431
|
) => any;
|
|
500
|
-
export declare const ListTagsForResourceRequestFilterSensitiveLog: (
|
|
501
|
-
obj: ListTagsForResourceRequest
|
|
502
|
-
) => any;
|
|
503
|
-
export declare const ListTagsForResourceResponseFilterSensitiveLog: (
|
|
504
|
-
obj: ListTagsForResourceResponse
|
|
505
|
-
) => any;
|
|
506
|
-
export declare const ListPermissionsRequestFilterSensitiveLog: (
|
|
507
|
-
obj: ListPermissionsRequest
|
|
508
|
-
) => any;
|
|
509
|
-
export declare const UserFilterSensitiveLog: (obj: User) => any;
|
|
510
|
-
export declare const PermissionEntryFilterSensitiveLog: (
|
|
511
|
-
obj: PermissionEntry
|
|
512
|
-
) => any;
|
|
513
|
-
export declare const ListPermissionsResponseFilterSensitiveLog: (
|
|
514
|
-
obj: ListPermissionsResponse
|
|
515
|
-
) => any;
|
|
516
|
-
export declare const UpdateInstructionFilterSensitiveLog: (
|
|
517
|
-
obj: UpdateInstruction
|
|
518
|
-
) => any;
|
|
519
|
-
export declare const UpdatePermissionsRequestFilterSensitiveLog: (
|
|
520
|
-
obj: UpdatePermissionsRequest
|
|
521
|
-
) => any;
|
|
522
|
-
export declare const UpdateErrorFilterSensitiveLog: (obj: UpdateError) => any;
|
|
523
|
-
export declare const UpdatePermissionsResponseFilterSensitiveLog: (
|
|
524
|
-
obj: UpdatePermissionsResponse
|
|
525
|
-
) => any;
|
|
526
|
-
export declare const TagResourceRequestFilterSensitiveLog: (
|
|
527
|
-
obj: TagResourceRequest
|
|
528
|
-
) => any;
|
|
529
|
-
export declare const TagResourceResponseFilterSensitiveLog: (
|
|
530
|
-
obj: TagResourceResponse
|
|
531
|
-
) => any;
|
|
532
|
-
export declare const UntagResourceRequestFilterSensitiveLog: (
|
|
533
|
-
obj: UntagResourceRequest
|
|
534
|
-
) => any;
|
|
535
|
-
export declare const UntagResourceResponseFilterSensitiveLog: (
|
|
536
|
-
obj: UntagResourceResponse
|
|
537
|
-
) => any;
|
|
538
432
|
export declare const CreateWorkspaceRequestFilterSensitiveLog: (
|
|
539
433
|
obj: CreateWorkspaceRequest
|
|
540
434
|
) => any;
|
|
541
435
|
export declare const CreateWorkspaceResponseFilterSensitiveLog: (
|
|
542
436
|
obj: CreateWorkspaceResponse
|
|
543
437
|
) => any;
|
|
544
|
-
export declare const DeleteWorkspaceRequestFilterSensitiveLog: (
|
|
545
|
-
obj: DeleteWorkspaceRequest
|
|
546
|
-
) => any;
|
|
547
438
|
export declare const DeleteWorkspaceResponseFilterSensitiveLog: (
|
|
548
439
|
obj: DeleteWorkspaceResponse
|
|
549
440
|
) => any;
|
|
550
|
-
export declare const DescribeWorkspaceRequestFilterSensitiveLog: (
|
|
551
|
-
obj: DescribeWorkspaceRequest
|
|
552
|
-
) => any;
|
|
553
441
|
export declare const DescribeWorkspaceResponseFilterSensitiveLog: (
|
|
554
442
|
obj: DescribeWorkspaceResponse
|
|
555
443
|
) => any;
|
|
556
|
-
export declare const ListWorkspacesRequestFilterSensitiveLog: (
|
|
557
|
-
obj: ListWorkspacesRequest
|
|
558
|
-
) => any;
|
|
559
444
|
export declare const WorkspaceSummaryFilterSensitiveLog: (
|
|
560
445
|
obj: WorkspaceSummary
|
|
561
446
|
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-grafana",
|
|
3
3
|
"description": "AWS SDK for JavaScript Grafana Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.298.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"build:types": "tsc -p tsconfig.types.json",
|
|
12
12
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
13
13
|
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
14
|
+
"extract:docs": "api-extractor run --local",
|
|
14
15
|
"generate:client": "node ../../scripts/generate-clients/single-service --solo grafana"
|
|
15
16
|
},
|
|
16
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -20,9 +21,9 @@
|
|
|
20
21
|
"dependencies": {
|
|
21
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.298.0",
|
|
24
25
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.298.0",
|
|
26
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|