@aws-sdk/client-grafana 3.131.0 → 3.142.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/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/AssociateLicenseCommand.js +2 -2
- package/dist-cjs/commands/CreateWorkspaceApiKeyCommand.js +2 -2
- package/dist-cjs/commands/CreateWorkspaceCommand.js +2 -2
- package/dist-cjs/commands/DeleteWorkspaceApiKeyCommand.js +2 -2
- package/dist-cjs/commands/DeleteWorkspaceCommand.js +2 -2
- package/dist-cjs/commands/DescribeWorkspaceAuthenticationCommand.js +2 -2
- package/dist-cjs/commands/DescribeWorkspaceCommand.js +2 -2
- package/dist-cjs/commands/DisassociateLicenseCommand.js +2 -2
- package/dist-cjs/commands/ListPermissionsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/ListWorkspacesCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdatePermissionsCommand.js +2 -2
- package/dist-cjs/commands/UpdateWorkspaceAuthenticationCommand.js +2 -2
- package/dist-cjs/commands/UpdateWorkspaceCommand.js +2 -2
- package/dist-cjs/models/models_0.js +226 -317
- package/dist-cjs/protocols/Aws_restJson1.js +215 -454
- package/dist-es/commands/AssociateLicenseCommand.js +3 -3
- package/dist-es/commands/CreateWorkspaceApiKeyCommand.js +3 -3
- package/dist-es/commands/CreateWorkspaceCommand.js +3 -3
- package/dist-es/commands/DeleteWorkspaceApiKeyCommand.js +3 -3
- package/dist-es/commands/DeleteWorkspaceCommand.js +3 -3
- package/dist-es/commands/DescribeWorkspaceAuthenticationCommand.js +3 -3
- package/dist-es/commands/DescribeWorkspaceCommand.js +3 -3
- package/dist-es/commands/DisassociateLicenseCommand.js +3 -3
- package/dist-es/commands/ListPermissionsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/ListWorkspacesCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdatePermissionsCommand.js +3 -3
- package/dist-es/commands/UpdateWorkspaceAuthenticationCommand.js +3 -3
- package/dist-es/commands/UpdateWorkspaceCommand.js +3 -3
- package/dist-es/models/models_0.js +55 -193
- package/dist-es/protocols/Aws_restJson1.js +278 -458
- package/dist-types/models/models_0.d.ts +188 -280
- package/dist-types/ts3.4/models/models_0.d.ts +94 -186
- package/package.json +6 -6
|
@@ -60,12 +60,6 @@ export interface CreateWorkspaceApiKeyRequest {
|
|
|
60
60
|
*/
|
|
61
61
|
workspaceId: string | undefined;
|
|
62
62
|
}
|
|
63
|
-
export declare namespace CreateWorkspaceApiKeyRequest {
|
|
64
|
-
/**
|
|
65
|
-
* @internal
|
|
66
|
-
*/
|
|
67
|
-
const filterSensitiveLog: (obj: CreateWorkspaceApiKeyRequest) => any;
|
|
68
|
-
}
|
|
69
63
|
export interface CreateWorkspaceApiKeyResponse {
|
|
70
64
|
/**
|
|
71
65
|
* <p>The name of the key that was created.</p>
|
|
@@ -81,12 +75,6 @@ export interface CreateWorkspaceApiKeyResponse {
|
|
|
81
75
|
*/
|
|
82
76
|
workspaceId: string | undefined;
|
|
83
77
|
}
|
|
84
|
-
export declare namespace CreateWorkspaceApiKeyResponse {
|
|
85
|
-
/**
|
|
86
|
-
* @internal
|
|
87
|
-
*/
|
|
88
|
-
const filterSensitiveLog: (obj: CreateWorkspaceApiKeyResponse) => any;
|
|
89
|
-
}
|
|
90
78
|
/**
|
|
91
79
|
* <p>Unexpected error while processing the request. Retry the request.</p>
|
|
92
80
|
*/
|
|
@@ -186,12 +174,6 @@ export interface ValidationExceptionField {
|
|
|
186
174
|
*/
|
|
187
175
|
message: string | undefined;
|
|
188
176
|
}
|
|
189
|
-
export declare namespace ValidationExceptionField {
|
|
190
|
-
/**
|
|
191
|
-
* @internal
|
|
192
|
-
*/
|
|
193
|
-
const filterSensitiveLog: (obj: ValidationExceptionField) => any;
|
|
194
|
-
}
|
|
195
177
|
export declare enum ValidationExceptionReason {
|
|
196
178
|
CANNOT_PARSE = "CANNOT_PARSE",
|
|
197
179
|
FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
|
|
@@ -227,12 +209,6 @@ export interface DeleteWorkspaceApiKeyRequest {
|
|
|
227
209
|
*/
|
|
228
210
|
workspaceId: string | undefined;
|
|
229
211
|
}
|
|
230
|
-
export declare namespace DeleteWorkspaceApiKeyRequest {
|
|
231
|
-
/**
|
|
232
|
-
* @internal
|
|
233
|
-
*/
|
|
234
|
-
const filterSensitiveLog: (obj: DeleteWorkspaceApiKeyRequest) => any;
|
|
235
|
-
}
|
|
236
212
|
export interface DeleteWorkspaceApiKeyResponse {
|
|
237
213
|
/**
|
|
238
214
|
* <p>The name of the API key that was deleted.</p>
|
|
@@ -243,12 +219,6 @@ export interface DeleteWorkspaceApiKeyResponse {
|
|
|
243
219
|
*/
|
|
244
220
|
workspaceId: string | undefined;
|
|
245
221
|
}
|
|
246
|
-
export declare namespace DeleteWorkspaceApiKeyResponse {
|
|
247
|
-
/**
|
|
248
|
-
* @internal
|
|
249
|
-
*/
|
|
250
|
-
const filterSensitiveLog: (obj: DeleteWorkspaceApiKeyResponse) => any;
|
|
251
|
-
}
|
|
252
222
|
/**
|
|
253
223
|
* <p>A structure that defines which attributes in the IdP assertion are to be used to define
|
|
254
224
|
* information about the users authenticated by the IdP to use the workspace.</p>
|
|
@@ -279,12 +249,6 @@ export interface AssertionAttributes {
|
|
|
279
249
|
*/
|
|
280
250
|
org?: string;
|
|
281
251
|
}
|
|
282
|
-
export declare namespace AssertionAttributes {
|
|
283
|
-
/**
|
|
284
|
-
* @internal
|
|
285
|
-
*/
|
|
286
|
-
const filterSensitiveLog: (obj: AssertionAttributes) => any;
|
|
287
|
-
}
|
|
288
252
|
export declare enum LicenseType {
|
|
289
253
|
/**
|
|
290
254
|
* Grafana Enterprise License.
|
|
@@ -305,12 +269,6 @@ export interface AssociateLicenseRequest {
|
|
|
305
269
|
*/
|
|
306
270
|
licenseType: LicenseType | string | undefined;
|
|
307
271
|
}
|
|
308
|
-
export declare namespace AssociateLicenseRequest {
|
|
309
|
-
/**
|
|
310
|
-
* @internal
|
|
311
|
-
*/
|
|
312
|
-
const filterSensitiveLog: (obj: AssociateLicenseRequest) => any;
|
|
313
|
-
}
|
|
314
272
|
export declare enum AuthenticationProviderTypes {
|
|
315
273
|
/**
|
|
316
274
|
* Indicates that AMG workspace has AWS SSO enabled as its authentication provider.
|
|
@@ -346,12 +304,6 @@ export interface AuthenticationSummary {
|
|
|
346
304
|
*/
|
|
347
305
|
samlConfigurationStatus?: SamlConfigurationStatus | string;
|
|
348
306
|
}
|
|
349
|
-
export declare namespace AuthenticationSummary {
|
|
350
|
-
/**
|
|
351
|
-
* @internal
|
|
352
|
-
*/
|
|
353
|
-
const filterSensitiveLog: (obj: AuthenticationSummary) => any;
|
|
354
|
-
}
|
|
355
307
|
export declare enum DataSourceType {
|
|
356
308
|
/**
|
|
357
309
|
* Amazon OpenSearch Service
|
|
@@ -563,36 +515,18 @@ export interface WorkspaceDescription {
|
|
|
563
515
|
*/
|
|
564
516
|
tags?: Record<string, string>;
|
|
565
517
|
}
|
|
566
|
-
export declare namespace WorkspaceDescription {
|
|
567
|
-
/**
|
|
568
|
-
* @internal
|
|
569
|
-
*/
|
|
570
|
-
const filterSensitiveLog: (obj: WorkspaceDescription) => any;
|
|
571
|
-
}
|
|
572
518
|
export interface AssociateLicenseResponse {
|
|
573
519
|
/**
|
|
574
520
|
* <p>A structure containing data about the workspace.</p>
|
|
575
521
|
*/
|
|
576
522
|
workspace: WorkspaceDescription | undefined;
|
|
577
523
|
}
|
|
578
|
-
export declare namespace AssociateLicenseResponse {
|
|
579
|
-
/**
|
|
580
|
-
* @internal
|
|
581
|
-
*/
|
|
582
|
-
const filterSensitiveLog: (obj: AssociateLicenseResponse) => any;
|
|
583
|
-
}
|
|
584
524
|
export interface DescribeWorkspaceAuthenticationRequest {
|
|
585
525
|
/**
|
|
586
526
|
* <p>The ID of the workspace to return authentication information about.</p>
|
|
587
527
|
*/
|
|
588
528
|
workspaceId: string | undefined;
|
|
589
529
|
}
|
|
590
|
-
export declare namespace DescribeWorkspaceAuthenticationRequest {
|
|
591
|
-
/**
|
|
592
|
-
* @internal
|
|
593
|
-
*/
|
|
594
|
-
const filterSensitiveLog: (obj: DescribeWorkspaceAuthenticationRequest) => any;
|
|
595
|
-
}
|
|
596
530
|
/**
|
|
597
531
|
* <p>A structure containing information about how this workspace works with
|
|
598
532
|
* Amazon Web Services SSO. </p>
|
|
@@ -603,12 +537,6 @@ export interface AwsSsoAuthentication {
|
|
|
603
537
|
*/
|
|
604
538
|
ssoClientId?: string;
|
|
605
539
|
}
|
|
606
|
-
export declare namespace AwsSsoAuthentication {
|
|
607
|
-
/**
|
|
608
|
-
* @internal
|
|
609
|
-
*/
|
|
610
|
-
const filterSensitiveLog: (obj: AwsSsoAuthentication) => any;
|
|
611
|
-
}
|
|
612
540
|
/**
|
|
613
541
|
* <p>A structure containing the identity provider (IdP) metadata used to integrate the
|
|
614
542
|
* identity provider with this workspace. You can specify the metadata either by providing a
|
|
@@ -644,10 +572,6 @@ export declare namespace IdpMetadata {
|
|
|
644
572
|
_: (name: string, value: any) => T;
|
|
645
573
|
}
|
|
646
574
|
const visit: <T>(value: IdpMetadata, visitor: Visitor<T>) => T;
|
|
647
|
-
/**
|
|
648
|
-
* @internal
|
|
649
|
-
*/
|
|
650
|
-
const filterSensitiveLog: (obj: IdpMetadata) => any;
|
|
651
575
|
}
|
|
652
576
|
/**
|
|
653
577
|
* <p>This structure defines which groups defined in the SAML assertion attribute are to be mapped
|
|
@@ -665,12 +589,6 @@ export interface RoleValues {
|
|
|
665
589
|
*/
|
|
666
590
|
admin?: string[];
|
|
667
591
|
}
|
|
668
|
-
export declare namespace RoleValues {
|
|
669
|
-
/**
|
|
670
|
-
* @internal
|
|
671
|
-
*/
|
|
672
|
-
const filterSensitiveLog: (obj: RoleValues) => any;
|
|
673
|
-
}
|
|
674
592
|
/**
|
|
675
593
|
* <p>A structure containing information about how this workspace works with
|
|
676
594
|
* SAML. </p>
|
|
@@ -702,12 +620,6 @@ export interface SamlConfiguration {
|
|
|
702
620
|
*/
|
|
703
621
|
loginValidityDuration?: number;
|
|
704
622
|
}
|
|
705
|
-
export declare namespace SamlConfiguration {
|
|
706
|
-
/**
|
|
707
|
-
* @internal
|
|
708
|
-
*/
|
|
709
|
-
const filterSensitiveLog: (obj: SamlConfiguration) => any;
|
|
710
|
-
}
|
|
711
623
|
/**
|
|
712
624
|
* <p>A structure containing information about how this workspace works with
|
|
713
625
|
* SAML. </p>
|
|
@@ -723,12 +635,6 @@ export interface SamlAuthentication {
|
|
|
723
635
|
*/
|
|
724
636
|
configuration?: SamlConfiguration;
|
|
725
637
|
}
|
|
726
|
-
export declare namespace SamlAuthentication {
|
|
727
|
-
/**
|
|
728
|
-
* @internal
|
|
729
|
-
*/
|
|
730
|
-
const filterSensitiveLog: (obj: SamlAuthentication) => any;
|
|
731
|
-
}
|
|
732
638
|
/**
|
|
733
639
|
* <p>A structure containing information about the user authentication methods used by the workspace.</p>
|
|
734
640
|
*/
|
|
@@ -749,12 +655,6 @@ export interface AuthenticationDescription {
|
|
|
749
655
|
*/
|
|
750
656
|
awsSso?: AwsSsoAuthentication;
|
|
751
657
|
}
|
|
752
|
-
export declare namespace AuthenticationDescription {
|
|
753
|
-
/**
|
|
754
|
-
* @internal
|
|
755
|
-
*/
|
|
756
|
-
const filterSensitiveLog: (obj: AuthenticationDescription) => any;
|
|
757
|
-
}
|
|
758
658
|
export interface DescribeWorkspaceAuthenticationResponse {
|
|
759
659
|
/**
|
|
760
660
|
* <p>A structure containing information about the authentication methods used in
|
|
@@ -762,12 +662,6 @@ export interface DescribeWorkspaceAuthenticationResponse {
|
|
|
762
662
|
*/
|
|
763
663
|
authentication: AuthenticationDescription | undefined;
|
|
764
664
|
}
|
|
765
|
-
export declare namespace DescribeWorkspaceAuthenticationResponse {
|
|
766
|
-
/**
|
|
767
|
-
* @internal
|
|
768
|
-
*/
|
|
769
|
-
const filterSensitiveLog: (obj: DescribeWorkspaceAuthenticationResponse) => any;
|
|
770
|
-
}
|
|
771
665
|
export interface UpdateWorkspaceAuthenticationRequest {
|
|
772
666
|
/**
|
|
773
667
|
* <p>The ID of the workspace to update the authentication for.</p>
|
|
@@ -788,24 +682,12 @@ export interface UpdateWorkspaceAuthenticationRequest {
|
|
|
788
682
|
*/
|
|
789
683
|
samlConfiguration?: SamlConfiguration;
|
|
790
684
|
}
|
|
791
|
-
export declare namespace UpdateWorkspaceAuthenticationRequest {
|
|
792
|
-
/**
|
|
793
|
-
* @internal
|
|
794
|
-
*/
|
|
795
|
-
const filterSensitiveLog: (obj: UpdateWorkspaceAuthenticationRequest) => any;
|
|
796
|
-
}
|
|
797
685
|
export interface UpdateWorkspaceAuthenticationResponse {
|
|
798
686
|
/**
|
|
799
687
|
* <p>A structure that describes the user authentication for this workspace after the update is made.</p>
|
|
800
688
|
*/
|
|
801
689
|
authentication: AuthenticationDescription | undefined;
|
|
802
690
|
}
|
|
803
|
-
export declare namespace UpdateWorkspaceAuthenticationResponse {
|
|
804
|
-
/**
|
|
805
|
-
* @internal
|
|
806
|
-
*/
|
|
807
|
-
const filterSensitiveLog: (obj: UpdateWorkspaceAuthenticationResponse) => any;
|
|
808
|
-
}
|
|
809
691
|
export interface DisassociateLicenseRequest {
|
|
810
692
|
/**
|
|
811
693
|
* <p>The ID of the workspace to remove the Grafana Enterprise license from.</p>
|
|
@@ -816,48 +698,24 @@ export interface DisassociateLicenseRequest {
|
|
|
816
698
|
*/
|
|
817
699
|
licenseType: LicenseType | string | undefined;
|
|
818
700
|
}
|
|
819
|
-
export declare namespace DisassociateLicenseRequest {
|
|
820
|
-
/**
|
|
821
|
-
* @internal
|
|
822
|
-
*/
|
|
823
|
-
const filterSensitiveLog: (obj: DisassociateLicenseRequest) => any;
|
|
824
|
-
}
|
|
825
701
|
export interface DisassociateLicenseResponse {
|
|
826
702
|
/**
|
|
827
703
|
* <p>A structure containing information about the workspace.</p>
|
|
828
704
|
*/
|
|
829
705
|
workspace: WorkspaceDescription | undefined;
|
|
830
706
|
}
|
|
831
|
-
export declare namespace DisassociateLicenseResponse {
|
|
832
|
-
/**
|
|
833
|
-
* @internal
|
|
834
|
-
*/
|
|
835
|
-
const filterSensitiveLog: (obj: DisassociateLicenseResponse) => any;
|
|
836
|
-
}
|
|
837
707
|
export interface ListTagsForResourceRequest {
|
|
838
708
|
/**
|
|
839
709
|
* <p>The ARN of the resource the list of tags are associated with.</p>
|
|
840
710
|
*/
|
|
841
711
|
resourceArn: string | undefined;
|
|
842
712
|
}
|
|
843
|
-
export declare namespace ListTagsForResourceRequest {
|
|
844
|
-
/**
|
|
845
|
-
* @internal
|
|
846
|
-
*/
|
|
847
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
848
|
-
}
|
|
849
713
|
export interface ListTagsForResourceResponse {
|
|
850
714
|
/**
|
|
851
715
|
* <p>The list of tags that are associated with the resource.</p>
|
|
852
716
|
*/
|
|
853
717
|
tags?: Record<string, string>;
|
|
854
718
|
}
|
|
855
|
-
export declare namespace ListTagsForResourceResponse {
|
|
856
|
-
/**
|
|
857
|
-
* @internal
|
|
858
|
-
*/
|
|
859
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
860
|
-
}
|
|
861
719
|
export declare enum UserType {
|
|
862
720
|
/**
|
|
863
721
|
* SSO group.
|
|
@@ -897,12 +755,6 @@ export interface ListPermissionsRequest {
|
|
|
897
755
|
*/
|
|
898
756
|
workspaceId: string | undefined;
|
|
899
757
|
}
|
|
900
|
-
export declare namespace ListPermissionsRequest {
|
|
901
|
-
/**
|
|
902
|
-
* @internal
|
|
903
|
-
*/
|
|
904
|
-
const filterSensitiveLog: (obj: ListPermissionsRequest) => any;
|
|
905
|
-
}
|
|
906
758
|
export declare enum Role {
|
|
907
759
|
/**
|
|
908
760
|
* Role Admin.
|
|
@@ -932,12 +784,6 @@ export interface User {
|
|
|
932
784
|
*/
|
|
933
785
|
type: UserType | string | undefined;
|
|
934
786
|
}
|
|
935
|
-
export declare namespace User {
|
|
936
|
-
/**
|
|
937
|
-
* @internal
|
|
938
|
-
*/
|
|
939
|
-
const filterSensitiveLog: (obj: User) => any;
|
|
940
|
-
}
|
|
941
787
|
/**
|
|
942
788
|
* <p>A structure containing the identity of one user or group and the <code>Admin</code>
|
|
943
789
|
* or <code>Editor</code> role that they have.</p>
|
|
@@ -953,12 +799,6 @@ export interface PermissionEntry {
|
|
|
953
799
|
*/
|
|
954
800
|
role: Role | string | undefined;
|
|
955
801
|
}
|
|
956
|
-
export declare namespace PermissionEntry {
|
|
957
|
-
/**
|
|
958
|
-
* @internal
|
|
959
|
-
*/
|
|
960
|
-
const filterSensitiveLog: (obj: PermissionEntry) => any;
|
|
961
|
-
}
|
|
962
802
|
export interface ListPermissionsResponse {
|
|
963
803
|
/**
|
|
964
804
|
* <p>The token to use in a subsequent <code>ListPermissions</code> operation to return
|
|
@@ -970,12 +810,6 @@ export interface ListPermissionsResponse {
|
|
|
970
810
|
*/
|
|
971
811
|
permissions: PermissionEntry[] | undefined;
|
|
972
812
|
}
|
|
973
|
-
export declare namespace ListPermissionsResponse {
|
|
974
|
-
/**
|
|
975
|
-
* @internal
|
|
976
|
-
*/
|
|
977
|
-
const filterSensitiveLog: (obj: ListPermissionsResponse) => any;
|
|
978
|
-
}
|
|
979
813
|
export declare enum UpdateAction {
|
|
980
814
|
/**
|
|
981
815
|
* Add permissions.
|
|
@@ -1004,12 +838,6 @@ export interface UpdateInstruction {
|
|
|
1004
838
|
*/
|
|
1005
839
|
users: User[] | undefined;
|
|
1006
840
|
}
|
|
1007
|
-
export declare namespace UpdateInstruction {
|
|
1008
|
-
/**
|
|
1009
|
-
* @internal
|
|
1010
|
-
*/
|
|
1011
|
-
const filterSensitiveLog: (obj: UpdateInstruction) => any;
|
|
1012
|
-
}
|
|
1013
841
|
export interface UpdatePermissionsRequest {
|
|
1014
842
|
/**
|
|
1015
843
|
* <p>An array of structures that contain the permission updates to make.</p>
|
|
@@ -1020,12 +848,6 @@ export interface UpdatePermissionsRequest {
|
|
|
1020
848
|
*/
|
|
1021
849
|
workspaceId: string | undefined;
|
|
1022
850
|
}
|
|
1023
|
-
export declare namespace UpdatePermissionsRequest {
|
|
1024
|
-
/**
|
|
1025
|
-
* @internal
|
|
1026
|
-
*/
|
|
1027
|
-
const filterSensitiveLog: (obj: UpdatePermissionsRequest) => any;
|
|
1028
|
-
}
|
|
1029
851
|
/**
|
|
1030
852
|
* <p>A structure containing information about one error encountered while performing an
|
|
1031
853
|
* <a href="https://docs.aws.amazon.com/grafana/latest/APIReference/API_UpdatePermissions.html">UpdatePermissions</a> operation.</p>
|
|
@@ -1044,24 +866,12 @@ export interface UpdateError {
|
|
|
1044
866
|
*/
|
|
1045
867
|
causedBy: UpdateInstruction | undefined;
|
|
1046
868
|
}
|
|
1047
|
-
export declare namespace UpdateError {
|
|
1048
|
-
/**
|
|
1049
|
-
* @internal
|
|
1050
|
-
*/
|
|
1051
|
-
const filterSensitiveLog: (obj: UpdateError) => any;
|
|
1052
|
-
}
|
|
1053
869
|
export interface UpdatePermissionsResponse {
|
|
1054
870
|
/**
|
|
1055
871
|
* <p>An array of structures that contain the errors from the operation, if any.</p>
|
|
1056
872
|
*/
|
|
1057
873
|
errors: UpdateError[] | undefined;
|
|
1058
874
|
}
|
|
1059
|
-
export declare namespace UpdatePermissionsResponse {
|
|
1060
|
-
/**
|
|
1061
|
-
* @internal
|
|
1062
|
-
*/
|
|
1063
|
-
const filterSensitiveLog: (obj: UpdatePermissionsResponse) => any;
|
|
1064
|
-
}
|
|
1065
875
|
export interface TagResourceRequest {
|
|
1066
876
|
/**
|
|
1067
877
|
* <p>The ARN of the resource the tag is associated with.</p>
|
|
@@ -1073,20 +883,8 @@ export interface TagResourceRequest {
|
|
|
1073
883
|
*/
|
|
1074
884
|
tags: Record<string, string> | undefined;
|
|
1075
885
|
}
|
|
1076
|
-
export declare namespace TagResourceRequest {
|
|
1077
|
-
/**
|
|
1078
|
-
* @internal
|
|
1079
|
-
*/
|
|
1080
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1081
|
-
}
|
|
1082
886
|
export interface TagResourceResponse {
|
|
1083
887
|
}
|
|
1084
|
-
export declare namespace TagResourceResponse {
|
|
1085
|
-
/**
|
|
1086
|
-
* @internal
|
|
1087
|
-
*/
|
|
1088
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1089
|
-
}
|
|
1090
888
|
export interface UntagResourceRequest {
|
|
1091
889
|
/**
|
|
1092
890
|
* <p>The ARN of the resource the tag association is removed from. </p>
|
|
@@ -1097,20 +895,8 @@ export interface UntagResourceRequest {
|
|
|
1097
895
|
*/
|
|
1098
896
|
tagKeys: string[] | undefined;
|
|
1099
897
|
}
|
|
1100
|
-
export declare namespace UntagResourceRequest {
|
|
1101
|
-
/**
|
|
1102
|
-
* @internal
|
|
1103
|
-
*/
|
|
1104
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1105
|
-
}
|
|
1106
898
|
export interface UntagResourceResponse {
|
|
1107
899
|
}
|
|
1108
|
-
export declare namespace UntagResourceResponse {
|
|
1109
|
-
/**
|
|
1110
|
-
* @internal
|
|
1111
|
-
*/
|
|
1112
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1113
|
-
}
|
|
1114
900
|
export interface CreateWorkspaceRequest {
|
|
1115
901
|
/**
|
|
1116
902
|
* <p>Specifies whether the workspace can access Amazon Web Services resources in this Amazon Web Services account only, or whether it can also access Amazon Web Services resources in
|
|
@@ -1194,72 +980,36 @@ export interface CreateWorkspaceRequest {
|
|
|
1194
980
|
*/
|
|
1195
981
|
tags?: Record<string, string>;
|
|
1196
982
|
}
|
|
1197
|
-
export declare namespace CreateWorkspaceRequest {
|
|
1198
|
-
/**
|
|
1199
|
-
* @internal
|
|
1200
|
-
*/
|
|
1201
|
-
const filterSensitiveLog: (obj: CreateWorkspaceRequest) => any;
|
|
1202
|
-
}
|
|
1203
983
|
export interface CreateWorkspaceResponse {
|
|
1204
984
|
/**
|
|
1205
985
|
* <p>A structure containing data about the workspace that was created.</p>
|
|
1206
986
|
*/
|
|
1207
987
|
workspace: WorkspaceDescription | undefined;
|
|
1208
988
|
}
|
|
1209
|
-
export declare namespace CreateWorkspaceResponse {
|
|
1210
|
-
/**
|
|
1211
|
-
* @internal
|
|
1212
|
-
*/
|
|
1213
|
-
const filterSensitiveLog: (obj: CreateWorkspaceResponse) => any;
|
|
1214
|
-
}
|
|
1215
989
|
export interface DeleteWorkspaceRequest {
|
|
1216
990
|
/**
|
|
1217
991
|
* <p>The ID of the workspace to delete.</p>
|
|
1218
992
|
*/
|
|
1219
993
|
workspaceId: string | undefined;
|
|
1220
994
|
}
|
|
1221
|
-
export declare namespace DeleteWorkspaceRequest {
|
|
1222
|
-
/**
|
|
1223
|
-
* @internal
|
|
1224
|
-
*/
|
|
1225
|
-
const filterSensitiveLog: (obj: DeleteWorkspaceRequest) => any;
|
|
1226
|
-
}
|
|
1227
995
|
export interface DeleteWorkspaceResponse {
|
|
1228
996
|
/**
|
|
1229
997
|
* <p>A structure containing information about the workspace that was deleted.</p>
|
|
1230
998
|
*/
|
|
1231
999
|
workspace: WorkspaceDescription | undefined;
|
|
1232
1000
|
}
|
|
1233
|
-
export declare namespace DeleteWorkspaceResponse {
|
|
1234
|
-
/**
|
|
1235
|
-
* @internal
|
|
1236
|
-
*/
|
|
1237
|
-
const filterSensitiveLog: (obj: DeleteWorkspaceResponse) => any;
|
|
1238
|
-
}
|
|
1239
1001
|
export interface DescribeWorkspaceRequest {
|
|
1240
1002
|
/**
|
|
1241
1003
|
* <p>The ID of the workspace to display information about.</p>
|
|
1242
1004
|
*/
|
|
1243
1005
|
workspaceId: string | undefined;
|
|
1244
1006
|
}
|
|
1245
|
-
export declare namespace DescribeWorkspaceRequest {
|
|
1246
|
-
/**
|
|
1247
|
-
* @internal
|
|
1248
|
-
*/
|
|
1249
|
-
const filterSensitiveLog: (obj: DescribeWorkspaceRequest) => any;
|
|
1250
|
-
}
|
|
1251
1007
|
export interface DescribeWorkspaceResponse {
|
|
1252
1008
|
/**
|
|
1253
1009
|
* <p>A structure containing information about the workspace.</p>
|
|
1254
1010
|
*/
|
|
1255
1011
|
workspace: WorkspaceDescription | undefined;
|
|
1256
1012
|
}
|
|
1257
|
-
export declare namespace DescribeWorkspaceResponse {
|
|
1258
|
-
/**
|
|
1259
|
-
* @internal
|
|
1260
|
-
*/
|
|
1261
|
-
const filterSensitiveLog: (obj: DescribeWorkspaceResponse) => any;
|
|
1262
|
-
}
|
|
1263
1013
|
export interface ListWorkspacesRequest {
|
|
1264
1014
|
/**
|
|
1265
1015
|
* <p>The maximum number of workspaces to include in the results.</p>
|
|
@@ -1271,12 +1021,6 @@ export interface ListWorkspacesRequest {
|
|
|
1271
1021
|
*/
|
|
1272
1022
|
nextToken?: string;
|
|
1273
1023
|
}
|
|
1274
|
-
export declare namespace ListWorkspacesRequest {
|
|
1275
|
-
/**
|
|
1276
|
-
* @internal
|
|
1277
|
-
*/
|
|
1278
|
-
const filterSensitiveLog: (obj: ListWorkspacesRequest) => any;
|
|
1279
|
-
}
|
|
1280
1024
|
/**
|
|
1281
1025
|
* <p>A structure that contains some information about one workspace in the account.</p>
|
|
1282
1026
|
*/
|
|
@@ -1329,12 +1073,6 @@ export interface WorkspaceSummary {
|
|
|
1329
1073
|
*/
|
|
1330
1074
|
tags?: Record<string, string>;
|
|
1331
1075
|
}
|
|
1332
|
-
export declare namespace WorkspaceSummary {
|
|
1333
|
-
/**
|
|
1334
|
-
* @internal
|
|
1335
|
-
*/
|
|
1336
|
-
const filterSensitiveLog: (obj: WorkspaceSummary) => any;
|
|
1337
|
-
}
|
|
1338
1076
|
export interface ListWorkspacesResponse {
|
|
1339
1077
|
/**
|
|
1340
1078
|
* <p>An array of structures that contain some information about the workspaces in the account.</p>
|
|
@@ -1345,12 +1083,6 @@ export interface ListWorkspacesResponse {
|
|
|
1345
1083
|
*/
|
|
1346
1084
|
nextToken?: string;
|
|
1347
1085
|
}
|
|
1348
|
-
export declare namespace ListWorkspacesResponse {
|
|
1349
|
-
/**
|
|
1350
|
-
* @internal
|
|
1351
|
-
*/
|
|
1352
|
-
const filterSensitiveLog: (obj: ListWorkspacesResponse) => any;
|
|
1353
|
-
}
|
|
1354
1086
|
export interface UpdateWorkspaceRequest {
|
|
1355
1087
|
/**
|
|
1356
1088
|
* <p>Specifies whether the workspace can access Amazon Web Services resources in this Amazon Web Services account only, or whether it can also access Amazon Web Services resources in
|
|
@@ -1423,21 +1155,197 @@ export interface UpdateWorkspaceRequest {
|
|
|
1423
1155
|
*/
|
|
1424
1156
|
workspaceRoleArn?: string;
|
|
1425
1157
|
}
|
|
1426
|
-
export declare namespace UpdateWorkspaceRequest {
|
|
1427
|
-
/**
|
|
1428
|
-
* @internal
|
|
1429
|
-
*/
|
|
1430
|
-
const filterSensitiveLog: (obj: UpdateWorkspaceRequest) => any;
|
|
1431
|
-
}
|
|
1432
1158
|
export interface UpdateWorkspaceResponse {
|
|
1433
1159
|
/**
|
|
1434
1160
|
* <p>A structure containing data about the workspace that was created.</p>
|
|
1435
1161
|
*/
|
|
1436
1162
|
workspace: WorkspaceDescription | undefined;
|
|
1437
1163
|
}
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1164
|
+
/**
|
|
1165
|
+
* @internal
|
|
1166
|
+
*/
|
|
1167
|
+
export declare const CreateWorkspaceApiKeyRequestFilterSensitiveLog: (obj: CreateWorkspaceApiKeyRequest) => any;
|
|
1168
|
+
/**
|
|
1169
|
+
* @internal
|
|
1170
|
+
*/
|
|
1171
|
+
export declare const CreateWorkspaceApiKeyResponseFilterSensitiveLog: (obj: CreateWorkspaceApiKeyResponse) => any;
|
|
1172
|
+
/**
|
|
1173
|
+
* @internal
|
|
1174
|
+
*/
|
|
1175
|
+
export declare const ValidationExceptionFieldFilterSensitiveLog: (obj: ValidationExceptionField) => any;
|
|
1176
|
+
/**
|
|
1177
|
+
* @internal
|
|
1178
|
+
*/
|
|
1179
|
+
export declare const DeleteWorkspaceApiKeyRequestFilterSensitiveLog: (obj: DeleteWorkspaceApiKeyRequest) => any;
|
|
1180
|
+
/**
|
|
1181
|
+
* @internal
|
|
1182
|
+
*/
|
|
1183
|
+
export declare const DeleteWorkspaceApiKeyResponseFilterSensitiveLog: (obj: DeleteWorkspaceApiKeyResponse) => any;
|
|
1184
|
+
/**
|
|
1185
|
+
* @internal
|
|
1186
|
+
*/
|
|
1187
|
+
export declare const AssertionAttributesFilterSensitiveLog: (obj: AssertionAttributes) => any;
|
|
1188
|
+
/**
|
|
1189
|
+
* @internal
|
|
1190
|
+
*/
|
|
1191
|
+
export declare const AssociateLicenseRequestFilterSensitiveLog: (obj: AssociateLicenseRequest) => any;
|
|
1192
|
+
/**
|
|
1193
|
+
* @internal
|
|
1194
|
+
*/
|
|
1195
|
+
export declare const AuthenticationSummaryFilterSensitiveLog: (obj: AuthenticationSummary) => any;
|
|
1196
|
+
/**
|
|
1197
|
+
* @internal
|
|
1198
|
+
*/
|
|
1199
|
+
export declare const WorkspaceDescriptionFilterSensitiveLog: (obj: WorkspaceDescription) => any;
|
|
1200
|
+
/**
|
|
1201
|
+
* @internal
|
|
1202
|
+
*/
|
|
1203
|
+
export declare const AssociateLicenseResponseFilterSensitiveLog: (obj: AssociateLicenseResponse) => any;
|
|
1204
|
+
/**
|
|
1205
|
+
* @internal
|
|
1206
|
+
*/
|
|
1207
|
+
export declare const DescribeWorkspaceAuthenticationRequestFilterSensitiveLog: (obj: DescribeWorkspaceAuthenticationRequest) => any;
|
|
1208
|
+
/**
|
|
1209
|
+
* @internal
|
|
1210
|
+
*/
|
|
1211
|
+
export declare const AwsSsoAuthenticationFilterSensitiveLog: (obj: AwsSsoAuthentication) => any;
|
|
1212
|
+
/**
|
|
1213
|
+
* @internal
|
|
1214
|
+
*/
|
|
1215
|
+
export declare const IdpMetadataFilterSensitiveLog: (obj: IdpMetadata) => any;
|
|
1216
|
+
/**
|
|
1217
|
+
* @internal
|
|
1218
|
+
*/
|
|
1219
|
+
export declare const RoleValuesFilterSensitiveLog: (obj: RoleValues) => any;
|
|
1220
|
+
/**
|
|
1221
|
+
* @internal
|
|
1222
|
+
*/
|
|
1223
|
+
export declare const SamlConfigurationFilterSensitiveLog: (obj: SamlConfiguration) => any;
|
|
1224
|
+
/**
|
|
1225
|
+
* @internal
|
|
1226
|
+
*/
|
|
1227
|
+
export declare const SamlAuthenticationFilterSensitiveLog: (obj: SamlAuthentication) => any;
|
|
1228
|
+
/**
|
|
1229
|
+
* @internal
|
|
1230
|
+
*/
|
|
1231
|
+
export declare const AuthenticationDescriptionFilterSensitiveLog: (obj: AuthenticationDescription) => any;
|
|
1232
|
+
/**
|
|
1233
|
+
* @internal
|
|
1234
|
+
*/
|
|
1235
|
+
export declare const DescribeWorkspaceAuthenticationResponseFilterSensitiveLog: (obj: DescribeWorkspaceAuthenticationResponse) => any;
|
|
1236
|
+
/**
|
|
1237
|
+
* @internal
|
|
1238
|
+
*/
|
|
1239
|
+
export declare const UpdateWorkspaceAuthenticationRequestFilterSensitiveLog: (obj: UpdateWorkspaceAuthenticationRequest) => any;
|
|
1240
|
+
/**
|
|
1241
|
+
* @internal
|
|
1242
|
+
*/
|
|
1243
|
+
export declare const UpdateWorkspaceAuthenticationResponseFilterSensitiveLog: (obj: UpdateWorkspaceAuthenticationResponse) => any;
|
|
1244
|
+
/**
|
|
1245
|
+
* @internal
|
|
1246
|
+
*/
|
|
1247
|
+
export declare const DisassociateLicenseRequestFilterSensitiveLog: (obj: DisassociateLicenseRequest) => any;
|
|
1248
|
+
/**
|
|
1249
|
+
* @internal
|
|
1250
|
+
*/
|
|
1251
|
+
export declare const DisassociateLicenseResponseFilterSensitiveLog: (obj: DisassociateLicenseResponse) => any;
|
|
1252
|
+
/**
|
|
1253
|
+
* @internal
|
|
1254
|
+
*/
|
|
1255
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1256
|
+
/**
|
|
1257
|
+
* @internal
|
|
1258
|
+
*/
|
|
1259
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1260
|
+
/**
|
|
1261
|
+
* @internal
|
|
1262
|
+
*/
|
|
1263
|
+
export declare const ListPermissionsRequestFilterSensitiveLog: (obj: ListPermissionsRequest) => any;
|
|
1264
|
+
/**
|
|
1265
|
+
* @internal
|
|
1266
|
+
*/
|
|
1267
|
+
export declare const UserFilterSensitiveLog: (obj: User) => any;
|
|
1268
|
+
/**
|
|
1269
|
+
* @internal
|
|
1270
|
+
*/
|
|
1271
|
+
export declare const PermissionEntryFilterSensitiveLog: (obj: PermissionEntry) => any;
|
|
1272
|
+
/**
|
|
1273
|
+
* @internal
|
|
1274
|
+
*/
|
|
1275
|
+
export declare const ListPermissionsResponseFilterSensitiveLog: (obj: ListPermissionsResponse) => any;
|
|
1276
|
+
/**
|
|
1277
|
+
* @internal
|
|
1278
|
+
*/
|
|
1279
|
+
export declare const UpdateInstructionFilterSensitiveLog: (obj: UpdateInstruction) => any;
|
|
1280
|
+
/**
|
|
1281
|
+
* @internal
|
|
1282
|
+
*/
|
|
1283
|
+
export declare const UpdatePermissionsRequestFilterSensitiveLog: (obj: UpdatePermissionsRequest) => any;
|
|
1284
|
+
/**
|
|
1285
|
+
* @internal
|
|
1286
|
+
*/
|
|
1287
|
+
export declare const UpdateErrorFilterSensitiveLog: (obj: UpdateError) => any;
|
|
1288
|
+
/**
|
|
1289
|
+
* @internal
|
|
1290
|
+
*/
|
|
1291
|
+
export declare const UpdatePermissionsResponseFilterSensitiveLog: (obj: UpdatePermissionsResponse) => any;
|
|
1292
|
+
/**
|
|
1293
|
+
* @internal
|
|
1294
|
+
*/
|
|
1295
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1296
|
+
/**
|
|
1297
|
+
* @internal
|
|
1298
|
+
*/
|
|
1299
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1300
|
+
/**
|
|
1301
|
+
* @internal
|
|
1302
|
+
*/
|
|
1303
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1304
|
+
/**
|
|
1305
|
+
* @internal
|
|
1306
|
+
*/
|
|
1307
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1308
|
+
/**
|
|
1309
|
+
* @internal
|
|
1310
|
+
*/
|
|
1311
|
+
export declare const CreateWorkspaceRequestFilterSensitiveLog: (obj: CreateWorkspaceRequest) => any;
|
|
1312
|
+
/**
|
|
1313
|
+
* @internal
|
|
1314
|
+
*/
|
|
1315
|
+
export declare const CreateWorkspaceResponseFilterSensitiveLog: (obj: CreateWorkspaceResponse) => any;
|
|
1316
|
+
/**
|
|
1317
|
+
* @internal
|
|
1318
|
+
*/
|
|
1319
|
+
export declare const DeleteWorkspaceRequestFilterSensitiveLog: (obj: DeleteWorkspaceRequest) => any;
|
|
1320
|
+
/**
|
|
1321
|
+
* @internal
|
|
1322
|
+
*/
|
|
1323
|
+
export declare const DeleteWorkspaceResponseFilterSensitiveLog: (obj: DeleteWorkspaceResponse) => any;
|
|
1324
|
+
/**
|
|
1325
|
+
* @internal
|
|
1326
|
+
*/
|
|
1327
|
+
export declare const DescribeWorkspaceRequestFilterSensitiveLog: (obj: DescribeWorkspaceRequest) => any;
|
|
1328
|
+
/**
|
|
1329
|
+
* @internal
|
|
1330
|
+
*/
|
|
1331
|
+
export declare const DescribeWorkspaceResponseFilterSensitiveLog: (obj: DescribeWorkspaceResponse) => any;
|
|
1332
|
+
/**
|
|
1333
|
+
* @internal
|
|
1334
|
+
*/
|
|
1335
|
+
export declare const ListWorkspacesRequestFilterSensitiveLog: (obj: ListWorkspacesRequest) => any;
|
|
1336
|
+
/**
|
|
1337
|
+
* @internal
|
|
1338
|
+
*/
|
|
1339
|
+
export declare const WorkspaceSummaryFilterSensitiveLog: (obj: WorkspaceSummary) => any;
|
|
1340
|
+
/**
|
|
1341
|
+
* @internal
|
|
1342
|
+
*/
|
|
1343
|
+
export declare const ListWorkspacesResponseFilterSensitiveLog: (obj: ListWorkspacesResponse) => any;
|
|
1344
|
+
/**
|
|
1345
|
+
* @internal
|
|
1346
|
+
*/
|
|
1347
|
+
export declare const UpdateWorkspaceRequestFilterSensitiveLog: (obj: UpdateWorkspaceRequest) => any;
|
|
1348
|
+
/**
|
|
1349
|
+
* @internal
|
|
1350
|
+
*/
|
|
1351
|
+
export declare const UpdateWorkspaceResponseFilterSensitiveLog: (obj: UpdateWorkspaceResponse) => any;
|