@aws-sdk/client-resource-explorer-2 3.450.0 → 3.451.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
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { GetAccountLevelServiceConfigurationOutput } from "../models/models_0";
|
|
5
|
+
import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetAccountLevelServiceConfigurationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetAccountLevelServiceConfigurationCommandInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetAccountLevelServiceConfigurationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetAccountLevelServiceConfigurationCommandOutput extends GetAccountLevelServiceConfigurationOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Retrieves the status of your account's Amazon Web Services service access, and validates the service
|
|
27
|
+
* linked role required to access the multi-account search feature. Only the management
|
|
28
|
+
* account or a delegated administrator with service access enabled can invoke this API
|
|
29
|
+
* call. </p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { ResourceExplorer2Client, GetAccountLevelServiceConfigurationCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
34
|
+
* // const { ResourceExplorer2Client, GetAccountLevelServiceConfigurationCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
35
|
+
* const client = new ResourceExplorer2Client(config);
|
|
36
|
+
* const input = {};
|
|
37
|
+
* const command = new GetAccountLevelServiceConfigurationCommand(input);
|
|
38
|
+
* const response = await client.send(command);
|
|
39
|
+
* // { // GetAccountLevelServiceConfigurationOutput
|
|
40
|
+
* // OrgConfiguration: { // OrgConfiguration
|
|
41
|
+
* // AWSServiceAccessStatus: "STRING_VALUE", // required
|
|
42
|
+
* // ServiceLinkedRole: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @param GetAccountLevelServiceConfigurationCommandInput - {@link GetAccountLevelServiceConfigurationCommandInput}
|
|
49
|
+
* @returns {@link GetAccountLevelServiceConfigurationCommandOutput}
|
|
50
|
+
* @see {@link GetAccountLevelServiceConfigurationCommandInput} for command's `input` shape.
|
|
51
|
+
* @see {@link GetAccountLevelServiceConfigurationCommandOutput} for command's `response` shape.
|
|
52
|
+
* @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
55
|
+
* <p>The credentials that you used to call this operation don't have the minimum required
|
|
56
|
+
* permissions.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link InternalServerException} (server fault)
|
|
59
|
+
* <p>The request failed because of internal service error. Try your request again
|
|
60
|
+
* later.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
63
|
+
* <p>You specified a resource that doesn't exist. Check the ID or ARN that you used to
|
|
64
|
+
* identity the resource, and try again.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
67
|
+
* <p>The request failed because you exceeded a rate limit for this operation. For more
|
|
68
|
+
* information, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/quotas.html">Quotas for
|
|
69
|
+
* Resource Explorer</a>.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
73
|
+
*
|
|
74
|
+
*/
|
|
75
|
+
export declare class GetAccountLevelServiceConfigurationCommand extends $Command<GetAccountLevelServiceConfigurationCommandInput, GetAccountLevelServiceConfigurationCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
76
|
+
readonly input: GetAccountLevelServiceConfigurationCommandInput;
|
|
77
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
constructor(input: GetAccountLevelServiceConfigurationCommandInput);
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
85
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAccountLevelServiceConfigurationCommandInput, GetAccountLevelServiceConfigurationCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
89
|
+
private serialize;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
93
|
+
private deserialize;
|
|
94
|
+
}
|
|
@@ -60,8 +60,8 @@ export interface GetDefaultViewCommandOutput extends GetDefaultViewOutput, __Met
|
|
|
60
60
|
*
|
|
61
61
|
* @throws {@link ThrottlingException} (client fault)
|
|
62
62
|
* <p>The request failed because you exceeded a rate limit for this operation. For more
|
|
63
|
-
* information, see <a href="https://docs.aws.amazon.com/
|
|
64
|
-
*
|
|
63
|
+
* information, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/quotas.html">Quotas for
|
|
64
|
+
* Resource Explorer</a>.</p>
|
|
65
65
|
*
|
|
66
66
|
* @throws {@link ValidationException} (client fault)
|
|
67
67
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
@@ -73,8 +73,8 @@ export interface GetIndexCommandOutput extends GetIndexOutput, __MetadataBearer
|
|
|
73
73
|
*
|
|
74
74
|
* @throws {@link ThrottlingException} (client fault)
|
|
75
75
|
* <p>The request failed because you exceeded a rate limit for this operation. For more
|
|
76
|
-
* information, see <a href="https://docs.aws.amazon.com/
|
|
77
|
-
*
|
|
76
|
+
* information, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/quotas.html">Quotas for
|
|
77
|
+
* Resource Explorer</a>.</p>
|
|
78
78
|
*
|
|
79
79
|
* @throws {@link ValidationException} (client fault)
|
|
80
80
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
@@ -77,8 +77,8 @@ export interface GetViewCommandOutput extends GetViewOutput, __MetadataBearer {
|
|
|
77
77
|
*
|
|
78
78
|
* @throws {@link ThrottlingException} (client fault)
|
|
79
79
|
* <p>The request failed because you exceeded a rate limit for this operation. For more
|
|
80
|
-
* information, see <a href="https://docs.aws.amazon.com/
|
|
81
|
-
*
|
|
80
|
+
* information, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/quotas.html">Quotas for
|
|
81
|
+
* Resource Explorer</a>.</p>
|
|
82
82
|
*
|
|
83
83
|
* @throws {@link UnauthorizedException} (client fault)
|
|
84
84
|
* <p>The principal making the request isn't permitted to perform the operation.</p>
|
|
@@ -70,8 +70,8 @@ export interface ListIndexesCommandOutput extends ListIndexesOutput, __MetadataB
|
|
|
70
70
|
*
|
|
71
71
|
* @throws {@link ThrottlingException} (client fault)
|
|
72
72
|
* <p>The request failed because you exceeded a rate limit for this operation. For more
|
|
73
|
-
* information, see <a href="https://docs.aws.amazon.com/
|
|
74
|
-
*
|
|
73
|
+
* information, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/quotas.html">Quotas for
|
|
74
|
+
* Resource Explorer</a>.</p>
|
|
75
75
|
*
|
|
76
76
|
* @throws {@link ValidationException} (client fault)
|
|
77
77
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { ListIndexesForMembersInput, ListIndexesForMembersOutput } from "../models/models_0";
|
|
5
|
+
import { ResourceExplorer2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ResourceExplorer2Client";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListIndexesForMembersCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListIndexesForMembersCommandInput extends ListIndexesForMembersInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListIndexesForMembersCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListIndexesForMembersCommandOutput extends ListIndexesForMembersOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Retrieves a list of a member's indexes in all Amazon Web Services Regions that are currently
|
|
27
|
+
* collecting resource information for Amazon Web Services Resource Explorer. Only the management account or a
|
|
28
|
+
* delegated administrator with service access enabled can invoke this API call.
|
|
29
|
+
* </p>
|
|
30
|
+
* @example
|
|
31
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
32
|
+
* ```javascript
|
|
33
|
+
* import { ResourceExplorer2Client, ListIndexesForMembersCommand } from "@aws-sdk/client-resource-explorer-2"; // ES Modules import
|
|
34
|
+
* // const { ResourceExplorer2Client, ListIndexesForMembersCommand } = require("@aws-sdk/client-resource-explorer-2"); // CommonJS import
|
|
35
|
+
* const client = new ResourceExplorer2Client(config);
|
|
36
|
+
* const input = { // ListIndexesForMembersInput
|
|
37
|
+
* AccountIdList: [ // AccountIdList // required
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* MaxResults: Number("int"),
|
|
41
|
+
* NextToken: "STRING_VALUE",
|
|
42
|
+
* };
|
|
43
|
+
* const command = new ListIndexesForMembersCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // { // ListIndexesForMembersOutput
|
|
46
|
+
* // Indexes: [ // MemberIndexList
|
|
47
|
+
* // { // MemberIndex
|
|
48
|
+
* // AccountId: "STRING_VALUE",
|
|
49
|
+
* // Region: "STRING_VALUE",
|
|
50
|
+
* // Arn: "STRING_VALUE",
|
|
51
|
+
* // Type: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // NextToken: "STRING_VALUE",
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
57
|
+
* ```
|
|
58
|
+
*
|
|
59
|
+
* @param ListIndexesForMembersCommandInput - {@link ListIndexesForMembersCommandInput}
|
|
60
|
+
* @returns {@link ListIndexesForMembersCommandOutput}
|
|
61
|
+
* @see {@link ListIndexesForMembersCommandInput} for command's `input` shape.
|
|
62
|
+
* @see {@link ListIndexesForMembersCommandOutput} for command's `response` shape.
|
|
63
|
+
* @see {@link ResourceExplorer2ClientResolvedConfig | config} for ResourceExplorer2Client's `config` shape.
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
66
|
+
* <p>The credentials that you used to call this operation don't have the minimum required
|
|
67
|
+
* permissions.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link InternalServerException} (server fault)
|
|
70
|
+
* <p>The request failed because of internal service error. Try your request again
|
|
71
|
+
* later.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
74
|
+
* <p>The request failed because you exceeded a rate limit for this operation. For more
|
|
75
|
+
* information, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/quotas.html">Quotas for
|
|
76
|
+
* Resource Explorer</a>.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ValidationException} (client fault)
|
|
79
|
+
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
80
|
+
* for the operation, and try again.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link ResourceExplorer2ServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from ResourceExplorer2 service.</p>
|
|
84
|
+
*
|
|
85
|
+
*/
|
|
86
|
+
export declare class ListIndexesForMembersCommand extends $Command<ListIndexesForMembersCommandInput, ListIndexesForMembersCommandOutput, ResourceExplorer2ClientResolvedConfig> {
|
|
87
|
+
readonly input: ListIndexesForMembersCommandInput;
|
|
88
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
89
|
+
/**
|
|
90
|
+
* @public
|
|
91
|
+
*/
|
|
92
|
+
constructor(input: ListIndexesForMembersCommandInput);
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
96
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ResourceExplorer2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListIndexesForMembersCommandInput, ListIndexesForMembersCommandOutput>;
|
|
97
|
+
/**
|
|
98
|
+
* @internal
|
|
99
|
+
*/
|
|
100
|
+
private serialize;
|
|
101
|
+
/**
|
|
102
|
+
* @internal
|
|
103
|
+
*/
|
|
104
|
+
private deserialize;
|
|
105
|
+
}
|
|
@@ -64,8 +64,8 @@ export interface ListSupportedResourceTypesCommandOutput extends ListSupportedRe
|
|
|
64
64
|
*
|
|
65
65
|
* @throws {@link ThrottlingException} (client fault)
|
|
66
66
|
* <p>The request failed because you exceeded a rate limit for this operation. For more
|
|
67
|
-
* information, see <a href="https://docs.aws.amazon.com/
|
|
68
|
-
*
|
|
67
|
+
* information, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/quotas.html">Quotas for
|
|
68
|
+
* Resource Explorer</a>.</p>
|
|
69
69
|
*
|
|
70
70
|
* @throws {@link ValidationException} (client fault)
|
|
71
71
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
@@ -63,8 +63,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
63
63
|
*
|
|
64
64
|
* @throws {@link ThrottlingException} (client fault)
|
|
65
65
|
* <p>The request failed because you exceeded a rate limit for this operation. For more
|
|
66
|
-
* information, see <a href="https://docs.aws.amazon.com/
|
|
67
|
-
*
|
|
66
|
+
* information, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/quotas.html">Quotas for
|
|
67
|
+
* Resource Explorer</a>.</p>
|
|
68
68
|
*
|
|
69
69
|
* @throws {@link UnauthorizedException} (client fault)
|
|
70
70
|
* <p>The principal making the request isn't permitted to perform the operation.</p>
|
|
@@ -70,8 +70,8 @@ export interface ListViewsCommandOutput extends ListViewsOutput, __MetadataBeare
|
|
|
70
70
|
*
|
|
71
71
|
* @throws {@link ThrottlingException} (client fault)
|
|
72
72
|
* <p>The request failed because you exceeded a rate limit for this operation. For more
|
|
73
|
-
* information, see <a href="https://docs.aws.amazon.com/
|
|
74
|
-
*
|
|
73
|
+
* information, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/quotas.html">Quotas for
|
|
74
|
+
* Resource Explorer</a>.</p>
|
|
75
75
|
*
|
|
76
76
|
* @throws {@link ValidationException} (client fault)
|
|
77
77
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
@@ -98,8 +98,8 @@ export interface SearchCommandOutput extends SearchOutput, __MetadataBearer {
|
|
|
98
98
|
*
|
|
99
99
|
* @throws {@link ThrottlingException} (client fault)
|
|
100
100
|
* <p>The request failed because you exceeded a rate limit for this operation. For more
|
|
101
|
-
* information, see <a href="https://docs.aws.amazon.com/
|
|
102
|
-
*
|
|
101
|
+
* information, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/quotas.html">Quotas for
|
|
102
|
+
* Resource Explorer</a>.</p>
|
|
103
103
|
*
|
|
104
104
|
* @throws {@link UnauthorizedException} (client fault)
|
|
105
105
|
* <p>The principal making the request isn't permitted to perform the operation.</p>
|
|
@@ -53,9 +53,13 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
53
53
|
* permissions.</p>
|
|
54
54
|
*
|
|
55
55
|
* @throws {@link ConflictException} (client fault)
|
|
56
|
-
* <p>
|
|
56
|
+
* <p>If you attempted to create a view, then the request failed because either you specified parameters that didn’t match the
|
|
57
57
|
* original request, or you attempted to create a view with a name that already exists in
|
|
58
58
|
* this Amazon Web Services Region.</p>
|
|
59
|
+
* <p>If you attempted to create an index, then the request failed because either you specified parameters that didn't match
|
|
60
|
+
* the original request, or an index already exists in the current Amazon Web Services Region.</p>
|
|
61
|
+
* <p>If you attempted to update an index type to <code>AGGREGATOR</code>, then the request failed because you already
|
|
62
|
+
* have an <code>AGGREGATOR</code> index in a different Amazon Web Services Region.</p>
|
|
59
63
|
*
|
|
60
64
|
* @throws {@link InternalServerException} (server fault)
|
|
61
65
|
* <p>The request failed because of internal service error. Try your request again
|
|
@@ -63,8 +67,8 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
63
67
|
*
|
|
64
68
|
* @throws {@link ThrottlingException} (client fault)
|
|
65
69
|
* <p>The request failed because you exceeded a rate limit for this operation. For more
|
|
66
|
-
* information, see <a href="https://docs.aws.amazon.com/
|
|
67
|
-
*
|
|
70
|
+
* information, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/quotas.html">Quotas for
|
|
71
|
+
* Resource Explorer</a>.</p>
|
|
68
72
|
*
|
|
69
73
|
* @throws {@link UnauthorizedException} (client fault)
|
|
70
74
|
* <p>The principal making the request isn't permitted to perform the operation.</p>
|
|
@@ -62,8 +62,8 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
62
62
|
*
|
|
63
63
|
* @throws {@link ThrottlingException} (client fault)
|
|
64
64
|
* <p>The request failed because you exceeded a rate limit for this operation. For more
|
|
65
|
-
* information, see <a href="https://docs.aws.amazon.com/
|
|
66
|
-
*
|
|
65
|
+
* information, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/quotas.html">Quotas for
|
|
66
|
+
* Resource Explorer</a>.</p>
|
|
67
67
|
*
|
|
68
68
|
* @throws {@link UnauthorizedException} (client fault)
|
|
69
69
|
* <p>The principal making the request isn't permitted to perform the operation.</p>
|
|
@@ -112,9 +112,13 @@ export interface UpdateIndexTypeCommandOutput extends UpdateIndexTypeOutput, __M
|
|
|
112
112
|
* permissions.</p>
|
|
113
113
|
*
|
|
114
114
|
* @throws {@link ConflictException} (client fault)
|
|
115
|
-
* <p>
|
|
115
|
+
* <p>If you attempted to create a view, then the request failed because either you specified parameters that didn’t match the
|
|
116
116
|
* original request, or you attempted to create a view with a name that already exists in
|
|
117
117
|
* this Amazon Web Services Region.</p>
|
|
118
|
+
* <p>If you attempted to create an index, then the request failed because either you specified parameters that didn't match
|
|
119
|
+
* the original request, or an index already exists in the current Amazon Web Services Region.</p>
|
|
120
|
+
* <p>If you attempted to update an index type to <code>AGGREGATOR</code>, then the request failed because you already
|
|
121
|
+
* have an <code>AGGREGATOR</code> index in a different Amazon Web Services Region.</p>
|
|
118
122
|
*
|
|
119
123
|
* @throws {@link InternalServerException} (server fault)
|
|
120
124
|
* <p>The request failed because of internal service error. Try your request again
|
|
@@ -129,8 +133,8 @@ export interface UpdateIndexTypeCommandOutput extends UpdateIndexTypeOutput, __M
|
|
|
129
133
|
*
|
|
130
134
|
* @throws {@link ThrottlingException} (client fault)
|
|
131
135
|
* <p>The request failed because you exceeded a rate limit for this operation. For more
|
|
132
|
-
* information, see <a href="https://docs.aws.amazon.com/
|
|
133
|
-
*
|
|
136
|
+
* information, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/quotas.html">Quotas for
|
|
137
|
+
* Resource Explorer</a>.</p>
|
|
134
138
|
*
|
|
135
139
|
* @throws {@link ValidationException} (client fault)
|
|
136
140
|
* <p>You provided an invalid value for one of the operation's parameters. Check the syntax
|
|
@@ -82,8 +82,8 @@ export interface UpdateViewCommandOutput extends UpdateViewOutput, __MetadataBea
|
|
|
82
82
|
*
|
|
83
83
|
* @throws {@link ThrottlingException} (client fault)
|
|
84
84
|
* <p>The request failed because you exceeded a rate limit for this operation. For more
|
|
85
|
-
* information, see <a href="https://docs.aws.amazon.com/
|
|
86
|
-
*
|
|
85
|
+
* information, see <a href="https://docs.aws.amazon.com/resource-explorer/latest/userguide/quotas.html">Quotas for
|
|
86
|
+
* Resource Explorer</a>.</p>
|
|
87
87
|
*
|
|
88
88
|
* @throws {@link UnauthorizedException} (client fault)
|
|
89
89
|
* <p>The principal making the request isn't permitted to perform the operation.</p>
|
|
@@ -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";
|