@aws-sdk/client-resource-explorer-2 3.450.0 → 3.454.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/README.md +16 -0
- package/dist-cjs/ResourceExplorer2.js +4 -0
- package/dist-cjs/commands/CreateIndexCommand.js +2 -1
- package/dist-cjs/commands/GetAccountLevelServiceConfigurationCommand.js +50 -0
- package/dist-cjs/commands/GetIndexCommand.js +2 -1
- package/dist-cjs/commands/ListIndexesForMembersCommand.js +50 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -1
- package/dist-cjs/commands/TagResourceCommand.js +2 -1
- package/dist-cjs/commands/UntagResourceCommand.js +2 -1
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +32 -1
- package/dist-cjs/pagination/ListIndexesForMembersPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +134 -1
- package/dist-es/ResourceExplorer2.js +4 -0
- package/dist-es/commands/CreateIndexCommand.js +2 -1
- package/dist-es/commands/GetAccountLevelServiceConfigurationCommand.js +46 -0
- package/dist-es/commands/GetIndexCommand.js +2 -1
- package/dist-es/commands/ListIndexesForMembersCommand.js +46 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -1
- package/dist-es/commands/TagResourceCommand.js +2 -1
- package/dist-es/commands/UntagResourceCommand.js +2 -1
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +26 -0
- package/dist-es/pagination/ListIndexesForMembersPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +129 -0
- package/dist-types/ResourceExplorer2.d.ts +14 -0
- package/dist-types/ResourceExplorer2Client.d.ts +4 -2
- package/dist-types/commands/AssociateDefaultViewCommand.d.ts +2 -2
- package/dist-types/commands/BatchGetViewCommand.d.ts +2 -2
- package/dist-types/commands/CreateIndexCommand.d.ts +7 -3
- package/dist-types/commands/CreateViewCommand.d.ts +8 -3
- package/dist-types/commands/DeleteIndexCommand.d.ts +2 -2
- package/dist-types/commands/DeleteViewCommand.d.ts +2 -2
- package/dist-types/commands/DisassociateDefaultViewCommand.d.ts +6 -2
- package/dist-types/commands/GetAccountLevelServiceConfigurationCommand.d.ts +94 -0
- package/dist-types/commands/GetDefaultViewCommand.d.ts +2 -2
- package/dist-types/commands/GetIndexCommand.d.ts +2 -2
- package/dist-types/commands/GetViewCommand.d.ts +2 -2
- package/dist-types/commands/ListIndexesCommand.d.ts +2 -2
- package/dist-types/commands/ListIndexesForMembersCommand.d.ts +105 -0
- package/dist-types/commands/ListSupportedResourceTypesCommand.d.ts +2 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -2
- package/dist-types/commands/ListViewsCommand.d.ts +2 -2
- package/dist-types/commands/SearchCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +7 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateIndexTypeCommand.d.ts +7 -3
- package/dist-types/commands/UpdateViewCommand.d.ts +2 -2
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +190 -21
- package/dist-types/pagination/ListIndexesForMembersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/ts3.4/ResourceExplorer2.d.ts +40 -0
- package/dist-types/ts3.4/ResourceExplorer2Client.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetAccountLevelServiceConfigurationCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListIndexesForMembersCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +44 -0
- package/dist-types/ts3.4/pagination/ListIndexesForMembersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/package.json +35 -35
|
@@ -69,8 +69,8 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
69
69
|
/**
|
|
70
70
|
* @public
|
|
71
71
|
* <p>The request failed because you exceeded a rate limit for this operation. For more
|
|
72
|
-
* information, see <a href="https://docs.aws.amazon.com/
|
|
73
|
-
*
|
|
72
|
+
* information, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/quotas.html">Quotas for
|
|
73
|
+
* Resource Explorer</a>.</p>
|
|
74
74
|
*/
|
|
75
75
|
export declare class ThrottlingException extends __BaseException {
|
|
76
76
|
readonly name: "ThrottlingException";
|
|
@@ -116,6 +116,18 @@ export declare class ValidationException extends __BaseException {
|
|
|
116
116
|
*/
|
|
117
117
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
118
118
|
}
|
|
119
|
+
/**
|
|
120
|
+
* @public
|
|
121
|
+
* @enum
|
|
122
|
+
*/
|
|
123
|
+
export declare const AWSServiceAccessStatus: {
|
|
124
|
+
readonly DISABLED: "DISABLED";
|
|
125
|
+
readonly ENABLED: "ENABLED";
|
|
126
|
+
};
|
|
127
|
+
/**
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
export type AWSServiceAccessStatus = (typeof AWSServiceAccessStatus)[keyof typeof AWSServiceAccessStatus];
|
|
119
131
|
/**
|
|
120
132
|
* @public
|
|
121
133
|
*/
|
|
@@ -258,9 +270,13 @@ export declare class UnauthorizedException extends __BaseException {
|
|
|
258
270
|
}
|
|
259
271
|
/**
|
|
260
272
|
* @public
|
|
261
|
-
* <p>
|
|
273
|
+
* <p>If you attempted to create a view, then the request failed because either you specified parameters that didn’t match the
|
|
262
274
|
* original request, or you attempted to create a view with a name that already exists in
|
|
263
275
|
* this Amazon Web Services Region.</p>
|
|
276
|
+
* <p>If you attempted to create an index, then the request failed because either you specified parameters that didn't match
|
|
277
|
+
* the original request, or an index already exists in the current Amazon Web Services Region.</p>
|
|
278
|
+
* <p>If you attempted to update an index type to <code>AGGREGATOR</code>, then the request failed because you already
|
|
279
|
+
* have an <code>AGGREGATOR</code> index in a different Amazon Web Services Region.</p>
|
|
264
280
|
*/
|
|
265
281
|
export declare class ConflictException extends __BaseException {
|
|
266
282
|
readonly name: "ConflictException";
|
|
@@ -279,7 +295,7 @@ export interface CreateIndexInput {
|
|
|
279
295
|
* @public
|
|
280
296
|
* <p>This value helps ensure idempotency. Resource Explorer uses this value to prevent the
|
|
281
297
|
* accidental creation of duplicate versions. We recommend that you generate a <a href="https://wikipedia.org/wiki/Universally_unique_identifier">UUID-type
|
|
282
|
-
* value</a> to ensure the uniqueness of your
|
|
298
|
+
* value</a> to ensure the uniqueness of your index.</p>
|
|
283
299
|
*/
|
|
284
300
|
ClientToken?: string;
|
|
285
301
|
/**
|
|
@@ -438,7 +454,7 @@ export interface ListIndexesInput {
|
|
|
438
454
|
* <code>NextToken</code> response in a previous request. A <code>NextToken</code> response
|
|
439
455
|
* indicates that more output is available. Set this parameter to the value of the previous
|
|
440
456
|
* call's <code>NextToken</code> response to indicate where the output should continue
|
|
441
|
-
* from.</p>
|
|
457
|
+
* from. The pagination tokens expire after 24 hours.</p>
|
|
442
458
|
*/
|
|
443
459
|
NextToken?: string;
|
|
444
460
|
}
|
|
@@ -467,21 +483,19 @@ export interface Index {
|
|
|
467
483
|
Arn?: string;
|
|
468
484
|
/**
|
|
469
485
|
* @public
|
|
470
|
-
* <p>The type of index. It can be one of the following
|
|
471
|
-
* values:</p>
|
|
486
|
+
* <p>The type of index. It can be one of the following values:</p>
|
|
472
487
|
* <ul>
|
|
473
488
|
* <li>
|
|
474
489
|
* <p>
|
|
475
|
-
* <
|
|
476
|
-
*
|
|
490
|
+
* <code>LOCAL</code> – The index contains information about resources
|
|
491
|
+
* from only the same Amazon Web Services Region.</p>
|
|
477
492
|
* </li>
|
|
478
493
|
* <li>
|
|
479
494
|
* <p>
|
|
480
|
-
* <
|
|
481
|
-
*
|
|
482
|
-
*
|
|
483
|
-
*
|
|
484
|
-
* on.</p>
|
|
495
|
+
* <code>AGGREGATOR</code> – Resource Explorer replicates copies of the indexed
|
|
496
|
+
* information about resources in all other Amazon Web Services Regions to the aggregator index. This
|
|
497
|
+
* lets search results in the Region with the aggregator index to include resources
|
|
498
|
+
* from all Regions in the account where Resource Explorer is turned on.</p>
|
|
485
499
|
* </li>
|
|
486
500
|
* </ul>
|
|
487
501
|
*/
|
|
@@ -501,7 +515,8 @@ export interface ListIndexesOutput {
|
|
|
501
515
|
* <p>If present, indicates that more output is available than is
|
|
502
516
|
* included in the current response. Use this value in the <code>NextToken</code> request parameter
|
|
503
517
|
* in a subsequent call to the operation to get the next part of the output. You should repeat this
|
|
504
|
-
* until the <code>NextToken</code> response element comes back as <code>null</code
|
|
518
|
+
* until the <code>NextToken</code> response element comes back as <code>null</code>.
|
|
519
|
+
* The pagination tokens expire after 24 hours.</p>
|
|
505
520
|
*/
|
|
506
521
|
NextToken?: string;
|
|
507
522
|
}
|
|
@@ -596,6 +611,12 @@ export interface CreateViewInput {
|
|
|
596
611
|
* <p>The default is an empty list, with no optional fields included in the results.</p>
|
|
597
612
|
*/
|
|
598
613
|
IncludedProperties?: IncludedProperty[];
|
|
614
|
+
/**
|
|
615
|
+
* @public
|
|
616
|
+
* <p>The root ARN of the account, an organizational unit (OU), or an organization ARN. If
|
|
617
|
+
* left empty, the default is account.</p>
|
|
618
|
+
*/
|
|
619
|
+
Scope?: string;
|
|
599
620
|
/**
|
|
600
621
|
* @public
|
|
601
622
|
* <p>An array of strings that specify which resources are included in the results of
|
|
@@ -685,7 +706,7 @@ export interface ListViewsInput {
|
|
|
685
706
|
* <code>NextToken</code> response in a previous request. A <code>NextToken</code> response
|
|
686
707
|
* indicates that more output is available. Set this parameter to the value of the previous
|
|
687
708
|
* call's <code>NextToken</code> response to indicate where the output should continue
|
|
688
|
-
* from.</p>
|
|
709
|
+
* from. The pagination tokens expire after 24 hours.</p>
|
|
689
710
|
*/
|
|
690
711
|
NextToken?: string;
|
|
691
712
|
/**
|
|
@@ -719,7 +740,8 @@ export interface ListViewsOutput {
|
|
|
719
740
|
* <p>If present, indicates that more output is available than is
|
|
720
741
|
* included in the current response. Use this value in the <code>NextToken</code> request parameter
|
|
721
742
|
* in a subsequent call to the operation to get the next part of the output. You should repeat this
|
|
722
|
-
* until the <code>NextToken</code> response element comes back as <code>null</code
|
|
743
|
+
* until the <code>NextToken</code> response element comes back as <code>null</code>.
|
|
744
|
+
* The pagination tokens expire after 24 hours.</p>
|
|
723
745
|
*/
|
|
724
746
|
NextToken?: string;
|
|
725
747
|
}
|
|
@@ -768,6 +790,34 @@ export interface UpdateViewOutput {
|
|
|
768
790
|
*/
|
|
769
791
|
View?: View;
|
|
770
792
|
}
|
|
793
|
+
/**
|
|
794
|
+
* @public
|
|
795
|
+
* <p>This is a structure that contains the status of Amazon Web Services service access, and whether you have a valid service-linked role to enable
|
|
796
|
+
* multi-account search for your organization.</p>
|
|
797
|
+
*/
|
|
798
|
+
export interface OrgConfiguration {
|
|
799
|
+
/**
|
|
800
|
+
* @public
|
|
801
|
+
* <p>This value displays whether your Amazon Web Services service access is <code>ENABLED</code> or <code>DISABLED</code>.</p>
|
|
802
|
+
*/
|
|
803
|
+
AWSServiceAccessStatus: AWSServiceAccessStatus | undefined;
|
|
804
|
+
/**
|
|
805
|
+
* @public
|
|
806
|
+
* <p>This value shows whether or not you have a valid a service-linked role required to start the multi-account search feature.</p>
|
|
807
|
+
*/
|
|
808
|
+
ServiceLinkedRole?: string;
|
|
809
|
+
}
|
|
810
|
+
/**
|
|
811
|
+
* @public
|
|
812
|
+
*/
|
|
813
|
+
export interface GetAccountLevelServiceConfigurationOutput {
|
|
814
|
+
/**
|
|
815
|
+
* @public
|
|
816
|
+
* <p>Details about the organization, and whether configuration is <code>ENABLED</code> or
|
|
817
|
+
* <code>DISABLED</code>.</p>
|
|
818
|
+
*/
|
|
819
|
+
OrgConfiguration?: OrgConfiguration;
|
|
820
|
+
}
|
|
771
821
|
/**
|
|
772
822
|
* @public
|
|
773
823
|
*/
|
|
@@ -832,6 +882,103 @@ export interface GetIndexOutput {
|
|
|
832
882
|
*/
|
|
833
883
|
Tags?: Record<string, string>;
|
|
834
884
|
}
|
|
885
|
+
/**
|
|
886
|
+
* @public
|
|
887
|
+
*/
|
|
888
|
+
export interface ListIndexesForMembersInput {
|
|
889
|
+
/**
|
|
890
|
+
* @public
|
|
891
|
+
* <p>The account IDs will limit the output to only indexes from these
|
|
892
|
+
* accounts.</p>
|
|
893
|
+
*/
|
|
894
|
+
AccountIdList: string[] | undefined;
|
|
895
|
+
/**
|
|
896
|
+
* @public
|
|
897
|
+
* <p>The maximum number of results that you want included on each page of the
|
|
898
|
+
* response. If you do not include this parameter, it defaults to a value appropriate to the
|
|
899
|
+
* operation. If additional items exist beyond those included in the current response, the
|
|
900
|
+
* <code>NextToken</code> response element is present and has a value (is not null). Include that
|
|
901
|
+
* value as the <code>NextToken</code> request parameter in the next call to the operation to get
|
|
902
|
+
* the next part of the results.</p>
|
|
903
|
+
* <note>
|
|
904
|
+
* <p>An API operation can return fewer results than the maximum even when there are
|
|
905
|
+
* more results available. You should check <code>NextToken</code> after every operation to ensure
|
|
906
|
+
* that you receive all of the results.</p>
|
|
907
|
+
* </note>
|
|
908
|
+
*/
|
|
909
|
+
MaxResults?: number;
|
|
910
|
+
/**
|
|
911
|
+
* @public
|
|
912
|
+
* <p>The parameter for receiving additional results if you receive a
|
|
913
|
+
* <code>NextToken</code> response in a previous request. A <code>NextToken</code> response
|
|
914
|
+
* indicates that more output is available. Set this parameter to the value of the previous
|
|
915
|
+
* call's <code>NextToken</code> response to indicate where the output should continue
|
|
916
|
+
* from. The pagination tokens expire after 24 hours.</p>
|
|
917
|
+
*/
|
|
918
|
+
NextToken?: string;
|
|
919
|
+
}
|
|
920
|
+
/**
|
|
921
|
+
* @public
|
|
922
|
+
* <p>An index is the data store used by Amazon Web Services Resource Explorer to hold information about your Amazon Web Services
|
|
923
|
+
* resources that the service discovers. </p>
|
|
924
|
+
*/
|
|
925
|
+
export interface MemberIndex {
|
|
926
|
+
/**
|
|
927
|
+
* @public
|
|
928
|
+
* <p>The account ID for the index.</p>
|
|
929
|
+
*/
|
|
930
|
+
AccountId?: string;
|
|
931
|
+
/**
|
|
932
|
+
* @public
|
|
933
|
+
* <p>The Amazon Web Services Region in which the index
|
|
934
|
+
* exists.</p>
|
|
935
|
+
*/
|
|
936
|
+
Region?: string;
|
|
937
|
+
/**
|
|
938
|
+
* @public
|
|
939
|
+
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon resource name (ARN)</a> of the index.</p>
|
|
940
|
+
*/
|
|
941
|
+
Arn?: string;
|
|
942
|
+
/**
|
|
943
|
+
* @public
|
|
944
|
+
* <p>The type of index. It can be one of the following values: </p>
|
|
945
|
+
* <ul>
|
|
946
|
+
* <li>
|
|
947
|
+
* <p>
|
|
948
|
+
* <code>LOCAL</code> – The index contains information about resources
|
|
949
|
+
* from only the same Amazon Web Services Region.</p>
|
|
950
|
+
* </li>
|
|
951
|
+
* <li>
|
|
952
|
+
* <p>
|
|
953
|
+
* <code>AGGREGATOR</code> – Resource Explorer replicates copies of the indexed
|
|
954
|
+
* information about resources in all other Amazon Web Services Regions to the aggregator index. This
|
|
955
|
+
* lets search results in the Region with the aggregator index to include resources
|
|
956
|
+
* from all Regions in the account where Resource Explorer is turned on.</p>
|
|
957
|
+
* </li>
|
|
958
|
+
* </ul>
|
|
959
|
+
*/
|
|
960
|
+
Type?: IndexType;
|
|
961
|
+
}
|
|
962
|
+
/**
|
|
963
|
+
* @public
|
|
964
|
+
*/
|
|
965
|
+
export interface ListIndexesForMembersOutput {
|
|
966
|
+
/**
|
|
967
|
+
* @public
|
|
968
|
+
* <p>A structure that contains the details and status of each
|
|
969
|
+
* index.</p>
|
|
970
|
+
*/
|
|
971
|
+
Indexes?: MemberIndex[];
|
|
972
|
+
/**
|
|
973
|
+
* @public
|
|
974
|
+
* <p>If present, indicates that more output is available than is
|
|
975
|
+
* included in the current response. Use this value in the <code>NextToken</code> request parameter
|
|
976
|
+
* in a subsequent call to the operation to get the next part of the output. You should repeat this
|
|
977
|
+
* until the <code>NextToken</code> response element comes back as <code>null</code>.
|
|
978
|
+
* The pagination tokens expire after 24 hours.</p>
|
|
979
|
+
*/
|
|
980
|
+
NextToken?: string;
|
|
981
|
+
}
|
|
835
982
|
/**
|
|
836
983
|
* @public
|
|
837
984
|
*/
|
|
@@ -842,7 +989,7 @@ export interface ListSupportedResourceTypesInput {
|
|
|
842
989
|
* <code>NextToken</code> response in a previous request. A <code>NextToken</code> response
|
|
843
990
|
* indicates that more output is available. Set this parameter to the value of the previous
|
|
844
991
|
* call's <code>NextToken</code> response to indicate where the output should continue
|
|
845
|
-
* from.</p>
|
|
992
|
+
* from. The pagination tokens expire after 24 hours.</p>
|
|
846
993
|
*/
|
|
847
994
|
NextToken?: string;
|
|
848
995
|
/**
|
|
@@ -892,7 +1039,8 @@ export interface ListSupportedResourceTypesOutput {
|
|
|
892
1039
|
* <p>If present, indicates that more output is available than is
|
|
893
1040
|
* included in the current response. Use this value in the <code>NextToken</code> request parameter
|
|
894
1041
|
* in a subsequent call to the operation to get the next part of the output. You should repeat this
|
|
895
|
-
* until the <code>NextToken</code> response element comes back as <code>null</code
|
|
1042
|
+
* until the <code>NextToken</code> response element comes back as <code>null</code>.
|
|
1043
|
+
* The pagination tokens expire after 24 hours.</p>
|
|
896
1044
|
*/
|
|
897
1045
|
NextToken?: string;
|
|
898
1046
|
}
|
|
@@ -1068,7 +1216,7 @@ export interface SearchInput {
|
|
|
1068
1216
|
* <code>NextToken</code> response in a previous request. A <code>NextToken</code> response
|
|
1069
1217
|
* indicates that more output is available. Set this parameter to the value of the previous
|
|
1070
1218
|
* call's <code>NextToken</code> response to indicate where the output should continue
|
|
1071
|
-
* from.</p>
|
|
1219
|
+
* from. The pagination tokens expire after 24 hours.</p>
|
|
1072
1220
|
*/
|
|
1073
1221
|
NextToken?: string;
|
|
1074
1222
|
}
|
|
@@ -1086,7 +1234,8 @@ export interface SearchOutput {
|
|
|
1086
1234
|
* <p>If present, indicates that more output is available than is
|
|
1087
1235
|
* included in the current response. Use this value in the <code>NextToken</code> request parameter
|
|
1088
1236
|
* in a subsequent call to the operation to get the next part of the output. You should repeat this
|
|
1089
|
-
* until the <code>NextToken</code> response element comes back as <code>null</code
|
|
1237
|
+
* until the <code>NextToken</code> response element comes back as <code>null</code>.
|
|
1238
|
+
* The pagination tokens expire after 24 hours.</p>
|
|
1090
1239
|
*/
|
|
1091
1240
|
NextToken?: string;
|
|
1092
1241
|
/**
|
|
@@ -1156,6 +1305,10 @@ export declare const ViewFilterSensitiveLog: (obj: View) => any;
|
|
|
1156
1305
|
* @internal
|
|
1157
1306
|
*/
|
|
1158
1307
|
export declare const BatchGetViewOutputFilterSensitiveLog: (obj: BatchGetViewOutput) => any;
|
|
1308
|
+
/**
|
|
1309
|
+
* @internal
|
|
1310
|
+
*/
|
|
1311
|
+
export declare const CreateIndexInputFilterSensitiveLog: (obj: CreateIndexInput) => any;
|
|
1159
1312
|
/**
|
|
1160
1313
|
* @internal
|
|
1161
1314
|
*/
|
|
@@ -1176,7 +1329,23 @@ export declare const UpdateViewInputFilterSensitiveLog: (obj: UpdateViewInput) =
|
|
|
1176
1329
|
* @internal
|
|
1177
1330
|
*/
|
|
1178
1331
|
export declare const UpdateViewOutputFilterSensitiveLog: (obj: UpdateViewOutput) => any;
|
|
1332
|
+
/**
|
|
1333
|
+
* @internal
|
|
1334
|
+
*/
|
|
1335
|
+
export declare const GetIndexOutputFilterSensitiveLog: (obj: GetIndexOutput) => any;
|
|
1336
|
+
/**
|
|
1337
|
+
* @internal
|
|
1338
|
+
*/
|
|
1339
|
+
export declare const ListTagsForResourceOutputFilterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
|
|
1179
1340
|
/**
|
|
1180
1341
|
* @internal
|
|
1181
1342
|
*/
|
|
1182
1343
|
export declare const SearchInputFilterSensitiveLog: (obj: SearchInput) => any;
|
|
1344
|
+
/**
|
|
1345
|
+
* @internal
|
|
1346
|
+
*/
|
|
1347
|
+
export declare const TagResourceInputFilterSensitiveLog: (obj: TagResourceInput) => any;
|
|
1348
|
+
/**
|
|
1349
|
+
* @internal
|
|
1350
|
+
*/
|
|
1351
|
+
export declare const UntagResourceInputFilterSensitiveLog: (obj: UntagResourceInput) => any;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListIndexesForMembersCommandInput, ListIndexesForMembersCommandOutput } from "../commands/ListIndexesForMembersCommand";
|
|
3
|
+
import { ResourceExplorer2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListIndexesForMembers(config: ResourceExplorer2PaginationConfiguration, input: ListIndexesForMembersCommandInput, ...additionalArguments: any): Paginator<ListIndexesForMembersCommandOutput>;
|
|
@@ -7,10 +7,12 @@ import { CreateViewCommandInput, CreateViewCommandOutput } from "../commands/Cre
|
|
|
7
7
|
import { DeleteIndexCommandInput, DeleteIndexCommandOutput } from "../commands/DeleteIndexCommand";
|
|
8
8
|
import { DeleteViewCommandInput, DeleteViewCommandOutput } from "../commands/DeleteViewCommand";
|
|
9
9
|
import { DisassociateDefaultViewCommandInput, DisassociateDefaultViewCommandOutput } from "../commands/DisassociateDefaultViewCommand";
|
|
10
|
+
import { GetAccountLevelServiceConfigurationCommandInput, GetAccountLevelServiceConfigurationCommandOutput } from "../commands/GetAccountLevelServiceConfigurationCommand";
|
|
10
11
|
import { GetDefaultViewCommandInput, GetDefaultViewCommandOutput } from "../commands/GetDefaultViewCommand";
|
|
11
12
|
import { GetIndexCommandInput, GetIndexCommandOutput } from "../commands/GetIndexCommand";
|
|
12
13
|
import { GetViewCommandInput, GetViewCommandOutput } from "../commands/GetViewCommand";
|
|
13
14
|
import { ListIndexesCommandInput, ListIndexesCommandOutput } from "../commands/ListIndexesCommand";
|
|
15
|
+
import { ListIndexesForMembersCommandInput, ListIndexesForMembersCommandOutput } from "../commands/ListIndexesForMembersCommand";
|
|
14
16
|
import { ListSupportedResourceTypesCommandInput, ListSupportedResourceTypesCommandOutput } from "../commands/ListSupportedResourceTypesCommand";
|
|
15
17
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
16
18
|
import { ListViewsCommandInput, ListViewsCommandOutput } from "../commands/ListViewsCommand";
|
|
@@ -47,6 +49,10 @@ export declare const se_DeleteViewCommand: (input: DeleteViewCommandInput, conte
|
|
|
47
49
|
* serializeAws_restJson1DisassociateDefaultViewCommand
|
|
48
50
|
*/
|
|
49
51
|
export declare const se_DisassociateDefaultViewCommand: (input: DisassociateDefaultViewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
|
+
/**
|
|
53
|
+
* serializeAws_restJson1GetAccountLevelServiceConfigurationCommand
|
|
54
|
+
*/
|
|
55
|
+
export declare const se_GetAccountLevelServiceConfigurationCommand: (input: GetAccountLevelServiceConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
56
|
/**
|
|
51
57
|
* serializeAws_restJson1GetDefaultViewCommand
|
|
52
58
|
*/
|
|
@@ -63,6 +69,10 @@ export declare const se_GetViewCommand: (input: GetViewCommandInput, context: __
|
|
|
63
69
|
* serializeAws_restJson1ListIndexesCommand
|
|
64
70
|
*/
|
|
65
71
|
export declare const se_ListIndexesCommand: (input: ListIndexesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
|
+
/**
|
|
73
|
+
* serializeAws_restJson1ListIndexesForMembersCommand
|
|
74
|
+
*/
|
|
75
|
+
export declare const se_ListIndexesForMembersCommand: (input: ListIndexesForMembersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
76
|
/**
|
|
67
77
|
* serializeAws_restJson1ListSupportedResourceTypesCommand
|
|
68
78
|
*/
|
|
@@ -123,6 +133,10 @@ export declare const de_DeleteViewCommand: (output: __HttpResponse, context: __S
|
|
|
123
133
|
* deserializeAws_restJson1DisassociateDefaultViewCommand
|
|
124
134
|
*/
|
|
125
135
|
export declare const de_DisassociateDefaultViewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateDefaultViewCommandOutput>;
|
|
136
|
+
/**
|
|
137
|
+
* deserializeAws_restJson1GetAccountLevelServiceConfigurationCommand
|
|
138
|
+
*/
|
|
139
|
+
export declare const de_GetAccountLevelServiceConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAccountLevelServiceConfigurationCommandOutput>;
|
|
126
140
|
/**
|
|
127
141
|
* deserializeAws_restJson1GetDefaultViewCommand
|
|
128
142
|
*/
|
|
@@ -139,6 +153,10 @@ export declare const de_GetViewCommand: (output: __HttpResponse, context: __Serd
|
|
|
139
153
|
* deserializeAws_restJson1ListIndexesCommand
|
|
140
154
|
*/
|
|
141
155
|
export declare const de_ListIndexesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIndexesCommandOutput>;
|
|
156
|
+
/**
|
|
157
|
+
* deserializeAws_restJson1ListIndexesForMembersCommand
|
|
158
|
+
*/
|
|
159
|
+
export declare const de_ListIndexesForMembersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListIndexesForMembersCommandOutput>;
|
|
142
160
|
/**
|
|
143
161
|
* deserializeAws_restJson1ListSupportedResourceTypesCommand
|
|
144
162
|
*/
|
|
@@ -27,6 +27,10 @@ import {
|
|
|
27
27
|
DisassociateDefaultViewCommandInput,
|
|
28
28
|
DisassociateDefaultViewCommandOutput,
|
|
29
29
|
} from "./commands/DisassociateDefaultViewCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetAccountLevelServiceConfigurationCommandInput,
|
|
32
|
+
GetAccountLevelServiceConfigurationCommandOutput,
|
|
33
|
+
} from "./commands/GetAccountLevelServiceConfigurationCommand";
|
|
30
34
|
import {
|
|
31
35
|
GetDefaultViewCommandInput,
|
|
32
36
|
GetDefaultViewCommandOutput,
|
|
@@ -43,6 +47,10 @@ import {
|
|
|
43
47
|
ListIndexesCommandInput,
|
|
44
48
|
ListIndexesCommandOutput,
|
|
45
49
|
} from "./commands/ListIndexesCommand";
|
|
50
|
+
import {
|
|
51
|
+
ListIndexesForMembersCommandInput,
|
|
52
|
+
ListIndexesForMembersCommandOutput,
|
|
53
|
+
} from "./commands/ListIndexesForMembersCommand";
|
|
46
54
|
import {
|
|
47
55
|
ListSupportedResourceTypesCommandInput,
|
|
48
56
|
ListSupportedResourceTypesCommandOutput,
|
|
@@ -168,6 +176,25 @@ export interface ResourceExplorer2 {
|
|
|
168
176
|
options: __HttpHandlerOptions,
|
|
169
177
|
cb: (err: any, data?: DisassociateDefaultViewCommandOutput) => void
|
|
170
178
|
): void;
|
|
179
|
+
getAccountLevelServiceConfiguration(
|
|
180
|
+
args: GetAccountLevelServiceConfigurationCommandInput,
|
|
181
|
+
options?: __HttpHandlerOptions
|
|
182
|
+
): Promise<GetAccountLevelServiceConfigurationCommandOutput>;
|
|
183
|
+
getAccountLevelServiceConfiguration(
|
|
184
|
+
args: GetAccountLevelServiceConfigurationCommandInput,
|
|
185
|
+
cb: (
|
|
186
|
+
err: any,
|
|
187
|
+
data?: GetAccountLevelServiceConfigurationCommandOutput
|
|
188
|
+
) => void
|
|
189
|
+
): void;
|
|
190
|
+
getAccountLevelServiceConfiguration(
|
|
191
|
+
args: GetAccountLevelServiceConfigurationCommandInput,
|
|
192
|
+
options: __HttpHandlerOptions,
|
|
193
|
+
cb: (
|
|
194
|
+
err: any,
|
|
195
|
+
data?: GetAccountLevelServiceConfigurationCommandOutput
|
|
196
|
+
) => void
|
|
197
|
+
): void;
|
|
171
198
|
getDefaultView(
|
|
172
199
|
args: GetDefaultViewCommandInput,
|
|
173
200
|
options?: __HttpHandlerOptions
|
|
@@ -220,6 +247,19 @@ export interface ResourceExplorer2 {
|
|
|
220
247
|
options: __HttpHandlerOptions,
|
|
221
248
|
cb: (err: any, data?: ListIndexesCommandOutput) => void
|
|
222
249
|
): void;
|
|
250
|
+
listIndexesForMembers(
|
|
251
|
+
args: ListIndexesForMembersCommandInput,
|
|
252
|
+
options?: __HttpHandlerOptions
|
|
253
|
+
): Promise<ListIndexesForMembersCommandOutput>;
|
|
254
|
+
listIndexesForMembers(
|
|
255
|
+
args: ListIndexesForMembersCommandInput,
|
|
256
|
+
cb: (err: any, data?: ListIndexesForMembersCommandOutput) => void
|
|
257
|
+
): void;
|
|
258
|
+
listIndexesForMembers(
|
|
259
|
+
args: ListIndexesForMembersCommandInput,
|
|
260
|
+
options: __HttpHandlerOptions,
|
|
261
|
+
cb: (err: any, data?: ListIndexesForMembersCommandOutput) => void
|
|
262
|
+
): void;
|
|
223
263
|
listSupportedResourceTypes(
|
|
224
264
|
args: ListSupportedResourceTypesCommandInput,
|
|
225
265
|
options?: __HttpHandlerOptions
|
|
@@ -73,6 +73,10 @@ import {
|
|
|
73
73
|
DisassociateDefaultViewCommandInput,
|
|
74
74
|
DisassociateDefaultViewCommandOutput,
|
|
75
75
|
} from "./commands/DisassociateDefaultViewCommand";
|
|
76
|
+
import {
|
|
77
|
+
GetAccountLevelServiceConfigurationCommandInput,
|
|
78
|
+
GetAccountLevelServiceConfigurationCommandOutput,
|
|
79
|
+
} from "./commands/GetAccountLevelServiceConfigurationCommand";
|
|
76
80
|
import {
|
|
77
81
|
GetDefaultViewCommandInput,
|
|
78
82
|
GetDefaultViewCommandOutput,
|
|
@@ -89,6 +93,10 @@ import {
|
|
|
89
93
|
ListIndexesCommandInput,
|
|
90
94
|
ListIndexesCommandOutput,
|
|
91
95
|
} from "./commands/ListIndexesCommand";
|
|
96
|
+
import {
|
|
97
|
+
ListIndexesForMembersCommandInput,
|
|
98
|
+
ListIndexesForMembersCommandOutput,
|
|
99
|
+
} from "./commands/ListIndexesForMembersCommand";
|
|
92
100
|
import {
|
|
93
101
|
ListSupportedResourceTypesCommandInput,
|
|
94
102
|
ListSupportedResourceTypesCommandOutput,
|
|
@@ -136,10 +144,12 @@ export type ServiceInputTypes =
|
|
|
136
144
|
| DeleteIndexCommandInput
|
|
137
145
|
| DeleteViewCommandInput
|
|
138
146
|
| DisassociateDefaultViewCommandInput
|
|
147
|
+
| GetAccountLevelServiceConfigurationCommandInput
|
|
139
148
|
| GetDefaultViewCommandInput
|
|
140
149
|
| GetIndexCommandInput
|
|
141
150
|
| GetViewCommandInput
|
|
142
151
|
| ListIndexesCommandInput
|
|
152
|
+
| ListIndexesForMembersCommandInput
|
|
143
153
|
| ListSupportedResourceTypesCommandInput
|
|
144
154
|
| ListTagsForResourceCommandInput
|
|
145
155
|
| ListViewsCommandInput
|
|
@@ -156,10 +166,12 @@ export type ServiceOutputTypes =
|
|
|
156
166
|
| DeleteIndexCommandOutput
|
|
157
167
|
| DeleteViewCommandOutput
|
|
158
168
|
| DisassociateDefaultViewCommandOutput
|
|
169
|
+
| GetAccountLevelServiceConfigurationCommandOutput
|
|
159
170
|
| GetDefaultViewCommandOutput
|
|
160
171
|
| GetIndexCommandOutput
|
|
161
172
|
| GetViewCommandOutput
|
|
162
173
|
| ListIndexesCommandOutput
|
|
174
|
+
| ListIndexesForMembersCommandOutput
|
|
163
175
|
| ListSupportedResourceTypesCommandOutput
|
|
164
176
|
| ListTagsForResourceCommandOutput
|
|
165
177
|
| ListViewsCommandOutput
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import { GetAccountLevelServiceConfigurationOutput } from "../models/models_0";
|
|
10
|
+
import {
|
|
11
|
+
ResourceExplorer2ClientResolvedConfig,
|
|
12
|
+
ServiceInputTypes,
|
|
13
|
+
ServiceOutputTypes,
|
|
14
|
+
} from "../ResourceExplorer2Client";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetAccountLevelServiceConfigurationCommandInput {}
|
|
17
|
+
export interface GetAccountLevelServiceConfigurationCommandOutput
|
|
18
|
+
extends GetAccountLevelServiceConfigurationOutput,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetAccountLevelServiceConfigurationCommand extends $Command<
|
|
21
|
+
GetAccountLevelServiceConfigurationCommandInput,
|
|
22
|
+
GetAccountLevelServiceConfigurationCommandOutput,
|
|
23
|
+
ResourceExplorer2ClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetAccountLevelServiceConfigurationCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetAccountLevelServiceConfigurationCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: ResourceExplorer2ClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<
|
|
33
|
+
GetAccountLevelServiceConfigurationCommandInput,
|
|
34
|
+
GetAccountLevelServiceConfigurationCommandOutput
|
|
35
|
+
>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
ListIndexesForMembersInput,
|
|
11
|
+
ListIndexesForMembersOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ResourceExplorer2ClientResolvedConfig,
|
|
15
|
+
ServiceInputTypes,
|
|
16
|
+
ServiceOutputTypes,
|
|
17
|
+
} from "../ResourceExplorer2Client";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface ListIndexesForMembersCommandInput
|
|
20
|
+
extends ListIndexesForMembersInput {}
|
|
21
|
+
export interface ListIndexesForMembersCommandOutput
|
|
22
|
+
extends ListIndexesForMembersOutput,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class ListIndexesForMembersCommand extends $Command<
|
|
25
|
+
ListIndexesForMembersCommandInput,
|
|
26
|
+
ListIndexesForMembersCommandOutput,
|
|
27
|
+
ResourceExplorer2ClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: ListIndexesForMembersCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: ListIndexesForMembersCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: ResourceExplorer2ClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
ListIndexesForMembersCommandInput,
|
|
38
|
+
ListIndexesForMembersCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|
|
@@ -5,10 +5,12 @@ export * from "./CreateViewCommand";
|
|
|
5
5
|
export * from "./DeleteIndexCommand";
|
|
6
6
|
export * from "./DeleteViewCommand";
|
|
7
7
|
export * from "./DisassociateDefaultViewCommand";
|
|
8
|
+
export * from "./GetAccountLevelServiceConfigurationCommand";
|
|
8
9
|
export * from "./GetDefaultViewCommand";
|
|
9
10
|
export * from "./GetIndexCommand";
|
|
10
11
|
export * from "./GetViewCommand";
|
|
11
12
|
export * from "./ListIndexesCommand";
|
|
13
|
+
export * from "./ListIndexesForMembersCommand";
|
|
12
14
|
export * from "./ListSupportedResourceTypesCommand";
|
|
13
15
|
export * from "./ListTagsForResourceCommand";
|
|
14
16
|
export * from "./ListViewsCommand";
|