@aws-sdk/client-opensearchserverless 3.968.0 → 3.970.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 +35 -0
- package/dist-cjs/index.js +296 -56
- package/dist-es/OpenSearchServerless.js +10 -0
- package/dist-es/commands/BatchGetCollectionGroupCommand.js +16 -0
- package/dist-es/commands/CreateCollectionGroupCommand.js +16 -0
- package/dist-es/commands/DeleteCollectionGroupCommand.js +16 -0
- package/dist-es/commands/ListCollectionGroupsCommand.js +16 -0
- package/dist-es/commands/UpdateCollectionGroupCommand.js +16 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/pagination/ListCollectionGroupsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +203 -56
- package/dist-types/OpenSearchServerless.d.ts +37 -0
- package/dist-types/OpenSearchServerlessClient.d.ts +7 -2
- package/dist-types/commands/BatchGetCollectionCommand.d.ts +1 -0
- package/dist-types/commands/BatchGetCollectionGroupCommand.d.ts +115 -0
- package/dist-types/commands/CreateAccessPolicyCommand.d.ts +1 -1
- package/dist-types/commands/CreateCollectionCommand.d.ts +7 -1
- package/dist-types/commands/CreateCollectionGroupCommand.d.ts +120 -0
- package/dist-types/commands/CreateIndexCommand.d.ts +1 -1
- package/dist-types/commands/CreateLifecyclePolicyCommand.d.ts +1 -1
- package/dist-types/commands/CreateSecurityConfigCommand.d.ts +1 -1
- package/dist-types/commands/CreateSecurityPolicyCommand.d.ts +1 -1
- package/dist-types/commands/CreateVpcEndpointCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAccessPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCollectionCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCollectionGroupCommand.d.ts +85 -0
- package/dist-types/commands/DeleteLifecyclePolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSecurityConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteSecurityPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVpcEndpointCommand.d.ts +1 -1
- package/dist-types/commands/ListCollectionGroupsCommand.d.ts +96 -0
- package/dist-types/commands/ListCollectionsCommand.d.ts +3 -0
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAccessPolicyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCollectionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCollectionGroupCommand.d.ts +107 -0
- package/dist-types/commands/UpdateLifecyclePolicyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSecurityConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSecurityPolicyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/errors.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +445 -8
- package/dist-types/pagination/ListCollectionGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +22 -0
- package/dist-types/ts3.4/OpenSearchServerless.d.ts +87 -0
- package/dist-types/ts3.4/OpenSearchServerlessClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/BatchGetCollectionGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateCollectionGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteCollectionGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListCollectionGroupsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateCollectionGroupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +105 -3
- package/dist-types/ts3.4/pagination/ListCollectionGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +22 -0
- package/package.json +33 -33
|
@@ -54,7 +54,7 @@ declare const DeleteSecurityPolicyCommand_base: {
|
|
|
54
54
|
* @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
|
|
55
55
|
*
|
|
56
56
|
* @throws {@link ConflictException} (client fault)
|
|
57
|
-
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created
|
|
57
|
+
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created.</p>
|
|
58
58
|
*
|
|
59
59
|
* @throws {@link InternalServerException} (server fault)
|
|
60
60
|
* <p>Thrown when an error internal to the service occurs while processing a request.</p>
|
|
@@ -59,7 +59,7 @@ declare const DeleteVpcEndpointCommand_base: {
|
|
|
59
59
|
* @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
|
|
60
60
|
*
|
|
61
61
|
* @throws {@link ConflictException} (client fault)
|
|
62
|
-
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created
|
|
62
|
+
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created.</p>
|
|
63
63
|
*
|
|
64
64
|
* @throws {@link InternalServerException} (server fault)
|
|
65
65
|
* <p>Thrown when an error internal to the service occurs while processing a request.</p>
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { ListCollectionGroupsRequest, ListCollectionGroupsResponse } from "../models/models_0";
|
|
4
|
+
import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchServerlessClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListCollectionGroupsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListCollectionGroupsCommandInput extends ListCollectionGroupsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListCollectionGroupsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListCollectionGroupsCommandOutput extends ListCollectionGroupsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListCollectionGroupsCommand_base: {
|
|
25
|
+
new (input: ListCollectionGroupsCommandInput): import("@smithy/smithy-client").CommandImpl<ListCollectionGroupsCommandInput, ListCollectionGroupsCommandOutput, OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [ListCollectionGroupsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListCollectionGroupsCommandInput, ListCollectionGroupsCommandOutput, OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Returns a list of collection groups. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-manage.html">Creating and managing Amazon OpenSearch Serverless collections</a>.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { OpenSearchServerlessClient, ListCollectionGroupsCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
35
|
+
* // const { OpenSearchServerlessClient, ListCollectionGroupsCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
36
|
+
* // import type { OpenSearchServerlessClientConfig } from "@aws-sdk/client-opensearchserverless";
|
|
37
|
+
* const config = {}; // type is OpenSearchServerlessClientConfig
|
|
38
|
+
* const client = new OpenSearchServerlessClient(config);
|
|
39
|
+
* const input = { // ListCollectionGroupsRequest
|
|
40
|
+
* nextToken: "STRING_VALUE",
|
|
41
|
+
* maxResults: Number("int"),
|
|
42
|
+
* };
|
|
43
|
+
* const command = new ListCollectionGroupsCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // { // ListCollectionGroupsResponse
|
|
46
|
+
* // collectionGroupSummaries: [ // CollectionGroupSummaries
|
|
47
|
+
* // { // CollectionGroupSummary
|
|
48
|
+
* // id: "STRING_VALUE",
|
|
49
|
+
* // arn: "STRING_VALUE",
|
|
50
|
+
* // name: "STRING_VALUE",
|
|
51
|
+
* // numberOfCollections: Number("int"),
|
|
52
|
+
* // createdDate: Number("long"),
|
|
53
|
+
* // capacityLimits: { // CollectionGroupCapacityLimits
|
|
54
|
+
* // maxIndexingCapacityInOCU: Number("float"),
|
|
55
|
+
* // maxSearchCapacityInOCU: Number("float"),
|
|
56
|
+
* // minIndexingCapacityInOCU: Number("float"),
|
|
57
|
+
* // minSearchCapacityInOCU: Number("float"),
|
|
58
|
+
* // },
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // nextToken: "STRING_VALUE",
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
64
|
+
* ```
|
|
65
|
+
*
|
|
66
|
+
* @param ListCollectionGroupsCommandInput - {@link ListCollectionGroupsCommandInput}
|
|
67
|
+
* @returns {@link ListCollectionGroupsCommandOutput}
|
|
68
|
+
* @see {@link ListCollectionGroupsCommandInput} for command's `input` shape.
|
|
69
|
+
* @see {@link ListCollectionGroupsCommandOutput} for command's `response` shape.
|
|
70
|
+
* @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link InternalServerException} (server fault)
|
|
73
|
+
* <p>Thrown when an error internal to the service occurs while processing a request.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ValidationException} (client fault)
|
|
76
|
+
* <p>Thrown when the HTTP request contains invalid input or is missing required input.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link OpenSearchServerlessServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
|
|
80
|
+
*
|
|
81
|
+
*
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
export declare class ListCollectionGroupsCommand extends ListCollectionGroupsCommand_base {
|
|
85
|
+
/** @internal type navigation helper, not in runtime. */
|
|
86
|
+
protected static __types: {
|
|
87
|
+
api: {
|
|
88
|
+
input: ListCollectionGroupsRequest;
|
|
89
|
+
output: ListCollectionGroupsResponse;
|
|
90
|
+
};
|
|
91
|
+
sdk: {
|
|
92
|
+
input: ListCollectionGroupsCommandInput;
|
|
93
|
+
output: ListCollectionGroupsCommandOutput;
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
}
|
|
@@ -40,6 +40,7 @@ declare const ListCollectionsCommand_base: {
|
|
|
40
40
|
* collectionFilters: { // CollectionFilters
|
|
41
41
|
* name: "STRING_VALUE",
|
|
42
42
|
* status: "STRING_VALUE",
|
|
43
|
+
* collectionGroupName: "STRING_VALUE",
|
|
43
44
|
* },
|
|
44
45
|
* nextToken: "STRING_VALUE",
|
|
45
46
|
* maxResults: Number("int"),
|
|
@@ -53,6 +54,8 @@ declare const ListCollectionsCommand_base: {
|
|
|
53
54
|
* // name: "STRING_VALUE",
|
|
54
55
|
* // status: "STRING_VALUE",
|
|
55
56
|
* // arn: "STRING_VALUE",
|
|
57
|
+
* // kmsKeyArn: "STRING_VALUE",
|
|
58
|
+
* // collectionGroupName: "STRING_VALUE",
|
|
56
59
|
* // },
|
|
57
60
|
* // ],
|
|
58
61
|
* // nextToken: "STRING_VALUE",
|
|
@@ -58,7 +58,7 @@ declare const TagResourceCommand_base: {
|
|
|
58
58
|
* @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
|
|
59
59
|
*
|
|
60
60
|
* @throws {@link ConflictException} (client fault)
|
|
61
|
-
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created
|
|
61
|
+
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created.</p>
|
|
62
62
|
*
|
|
63
63
|
* @throws {@link InternalServerException} (server fault)
|
|
64
64
|
* <p>Thrown when an error internal to the service occurs while processing a request.</p>
|
|
@@ -55,7 +55,7 @@ declare const UntagResourceCommand_base: {
|
|
|
55
55
|
* @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
|
|
56
56
|
*
|
|
57
57
|
* @throws {@link ConflictException} (client fault)
|
|
58
|
-
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created
|
|
58
|
+
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created.</p>
|
|
59
59
|
*
|
|
60
60
|
* @throws {@link InternalServerException} (server fault)
|
|
61
61
|
* <p>Thrown when an error internal to the service occurs while processing a request.</p>
|
|
@@ -67,7 +67,7 @@ declare const UpdateAccessPolicyCommand_base: {
|
|
|
67
67
|
* @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
|
|
68
68
|
*
|
|
69
69
|
* @throws {@link ConflictException} (client fault)
|
|
70
|
-
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created
|
|
70
|
+
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created.</p>
|
|
71
71
|
*
|
|
72
72
|
* @throws {@link InternalServerException} (server fault)
|
|
73
73
|
* <p>Thrown when an error internal to the service occurs while processing a request.</p>
|
|
@@ -65,7 +65,7 @@ declare const UpdateCollectionCommand_base: {
|
|
|
65
65
|
* @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
|
|
66
66
|
*
|
|
67
67
|
* @throws {@link ConflictException} (client fault)
|
|
68
|
-
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created
|
|
68
|
+
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created.</p>
|
|
69
69
|
*
|
|
70
70
|
* @throws {@link InternalServerException} (server fault)
|
|
71
71
|
* <p>Thrown when an error internal to the service occurs while processing a request.</p>
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { UpdateCollectionGroupRequest, UpdateCollectionGroupResponse } from "../models/models_0";
|
|
4
|
+
import type { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchServerlessClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateCollectionGroupCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateCollectionGroupCommandInput extends UpdateCollectionGroupRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateCollectionGroupCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateCollectionGroupCommandOutput extends UpdateCollectionGroupResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateCollectionGroupCommand_base: {
|
|
25
|
+
new (input: UpdateCollectionGroupCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateCollectionGroupCommandInput, UpdateCollectionGroupCommandOutput, OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateCollectionGroupCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateCollectionGroupCommandInput, UpdateCollectionGroupCommandOutput, OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Updates the description and capacity limits of a collection group.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { OpenSearchServerlessClient, UpdateCollectionGroupCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
35
|
+
* // const { OpenSearchServerlessClient, UpdateCollectionGroupCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
36
|
+
* // import type { OpenSearchServerlessClientConfig } from "@aws-sdk/client-opensearchserverless";
|
|
37
|
+
* const config = {}; // type is OpenSearchServerlessClientConfig
|
|
38
|
+
* const client = new OpenSearchServerlessClient(config);
|
|
39
|
+
* const input = { // UpdateCollectionGroupRequest
|
|
40
|
+
* id: "STRING_VALUE", // required
|
|
41
|
+
* description: "STRING_VALUE",
|
|
42
|
+
* capacityLimits: { // CollectionGroupCapacityLimits
|
|
43
|
+
* maxIndexingCapacityInOCU: Number("float"),
|
|
44
|
+
* maxSearchCapacityInOCU: Number("float"),
|
|
45
|
+
* minIndexingCapacityInOCU: Number("float"),
|
|
46
|
+
* minSearchCapacityInOCU: Number("float"),
|
|
47
|
+
* },
|
|
48
|
+
* clientToken: "STRING_VALUE",
|
|
49
|
+
* };
|
|
50
|
+
* const command = new UpdateCollectionGroupCommand(input);
|
|
51
|
+
* const response = await client.send(command);
|
|
52
|
+
* // { // UpdateCollectionGroupResponse
|
|
53
|
+
* // updateCollectionGroupDetail: { // UpdateCollectionGroupDetail
|
|
54
|
+
* // id: "STRING_VALUE",
|
|
55
|
+
* // arn: "STRING_VALUE",
|
|
56
|
+
* // name: "STRING_VALUE",
|
|
57
|
+
* // description: "STRING_VALUE",
|
|
58
|
+
* // capacityLimits: { // CollectionGroupCapacityLimits
|
|
59
|
+
* // maxIndexingCapacityInOCU: Number("float"),
|
|
60
|
+
* // maxSearchCapacityInOCU: Number("float"),
|
|
61
|
+
* // minIndexingCapacityInOCU: Number("float"),
|
|
62
|
+
* // minSearchCapacityInOCU: Number("float"),
|
|
63
|
+
* // },
|
|
64
|
+
* // createdDate: Number("long"),
|
|
65
|
+
* // lastModifiedDate: Number("long"),
|
|
66
|
+
* // },
|
|
67
|
+
* // };
|
|
68
|
+
*
|
|
69
|
+
* ```
|
|
70
|
+
*
|
|
71
|
+
* @param UpdateCollectionGroupCommandInput - {@link UpdateCollectionGroupCommandInput}
|
|
72
|
+
* @returns {@link UpdateCollectionGroupCommandOutput}
|
|
73
|
+
* @see {@link UpdateCollectionGroupCommandInput} for command's `input` shape.
|
|
74
|
+
* @see {@link UpdateCollectionGroupCommandOutput} for command's `response` shape.
|
|
75
|
+
* @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link ConflictException} (client fault)
|
|
78
|
+
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link InternalServerException} (server fault)
|
|
81
|
+
* <p>Thrown when an error internal to the service occurs while processing a request.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
84
|
+
* <p>Thrown when you attempt to create more resources than the service allows based on service quotas.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link ValidationException} (client fault)
|
|
87
|
+
* <p>Thrown when the HTTP request contains invalid input or is missing required input.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link OpenSearchServerlessServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
|
|
91
|
+
*
|
|
92
|
+
*
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
export declare class UpdateCollectionGroupCommand extends UpdateCollectionGroupCommand_base {
|
|
96
|
+
/** @internal type navigation helper, not in runtime. */
|
|
97
|
+
protected static __types: {
|
|
98
|
+
api: {
|
|
99
|
+
input: UpdateCollectionGroupRequest;
|
|
100
|
+
output: UpdateCollectionGroupResponse;
|
|
101
|
+
};
|
|
102
|
+
sdk: {
|
|
103
|
+
input: UpdateCollectionGroupCommandInput;
|
|
104
|
+
output: UpdateCollectionGroupCommandOutput;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
}
|
|
@@ -67,7 +67,7 @@ declare const UpdateLifecyclePolicyCommand_base: {
|
|
|
67
67
|
* @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
|
|
68
68
|
*
|
|
69
69
|
* @throws {@link ConflictException} (client fault)
|
|
70
|
-
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created
|
|
70
|
+
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created.</p>
|
|
71
71
|
*
|
|
72
72
|
* @throws {@link InternalServerException} (server fault)
|
|
73
73
|
* <p>Thrown when an error internal to the service occurs while processing a request.</p>
|
|
@@ -98,7 +98,7 @@ declare const UpdateSecurityConfigCommand_base: {
|
|
|
98
98
|
* @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
|
|
99
99
|
*
|
|
100
100
|
* @throws {@link ConflictException} (client fault)
|
|
101
|
-
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created
|
|
101
|
+
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created.</p>
|
|
102
102
|
*
|
|
103
103
|
* @throws {@link InternalServerException} (server fault)
|
|
104
104
|
* <p>Thrown when an error internal to the service occurs while processing a request.</p>
|
|
@@ -67,7 +67,7 @@ declare const UpdateSecurityPolicyCommand_base: {
|
|
|
67
67
|
* @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
|
|
68
68
|
*
|
|
69
69
|
* @throws {@link ConflictException} (client fault)
|
|
70
|
-
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created
|
|
70
|
+
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created.</p>
|
|
71
71
|
*
|
|
72
72
|
* @throws {@link InternalServerException} (server fault)
|
|
73
73
|
* <p>Thrown when an error internal to the service occurs while processing a request.</p>
|
|
@@ -78,7 +78,7 @@ declare const UpdateVpcEndpointCommand_base: {
|
|
|
78
78
|
* @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
|
|
79
79
|
*
|
|
80
80
|
* @throws {@link ConflictException} (client fault)
|
|
81
|
-
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created
|
|
81
|
+
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created.</p>
|
|
82
82
|
*
|
|
83
83
|
* @throws {@link InternalServerException} (server fault)
|
|
84
84
|
* <p>Thrown when an error internal to the service occurs while processing a request.</p>
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
export * from "./BatchGetCollectionCommand";
|
|
2
|
+
export * from "./BatchGetCollectionGroupCommand";
|
|
2
3
|
export * from "./BatchGetEffectiveLifecyclePolicyCommand";
|
|
3
4
|
export * from "./BatchGetLifecyclePolicyCommand";
|
|
4
5
|
export * from "./BatchGetVpcEndpointCommand";
|
|
5
6
|
export * from "./CreateAccessPolicyCommand";
|
|
6
7
|
export * from "./CreateCollectionCommand";
|
|
8
|
+
export * from "./CreateCollectionGroupCommand";
|
|
7
9
|
export * from "./CreateIndexCommand";
|
|
8
10
|
export * from "./CreateLifecyclePolicyCommand";
|
|
9
11
|
export * from "./CreateSecurityConfigCommand";
|
|
@@ -11,6 +13,7 @@ export * from "./CreateSecurityPolicyCommand";
|
|
|
11
13
|
export * from "./CreateVpcEndpointCommand";
|
|
12
14
|
export * from "./DeleteAccessPolicyCommand";
|
|
13
15
|
export * from "./DeleteCollectionCommand";
|
|
16
|
+
export * from "./DeleteCollectionGroupCommand";
|
|
14
17
|
export * from "./DeleteIndexCommand";
|
|
15
18
|
export * from "./DeleteLifecyclePolicyCommand";
|
|
16
19
|
export * from "./DeleteSecurityConfigCommand";
|
|
@@ -23,6 +26,7 @@ export * from "./GetPoliciesStatsCommand";
|
|
|
23
26
|
export * from "./GetSecurityConfigCommand";
|
|
24
27
|
export * from "./GetSecurityPolicyCommand";
|
|
25
28
|
export * from "./ListAccessPoliciesCommand";
|
|
29
|
+
export * from "./ListCollectionGroupsCommand";
|
|
26
30
|
export * from "./ListCollectionsCommand";
|
|
27
31
|
export * from "./ListLifecyclePoliciesCommand";
|
|
28
32
|
export * from "./ListSecurityConfigsCommand";
|
|
@@ -34,6 +38,7 @@ export * from "./UntagResourceCommand";
|
|
|
34
38
|
export * from "./UpdateAccessPolicyCommand";
|
|
35
39
|
export * from "./UpdateAccountSettingsCommand";
|
|
36
40
|
export * from "./UpdateCollectionCommand";
|
|
41
|
+
export * from "./UpdateCollectionGroupCommand";
|
|
37
42
|
export * from "./UpdateIndexCommand";
|
|
38
43
|
export * from "./UpdateLifecyclePolicyCommand";
|
|
39
44
|
export * from "./UpdateSecurityConfigCommand";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { OpenSearchServerlessServiceException as __BaseException } from "./OpenSearchServerlessServiceException";
|
|
3
3
|
/**
|
|
4
|
-
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created
|
|
4
|
+
* <p>When creating a resource, thrown when a resource with the same name already exists or is being created.</p>
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
7
|
export declare class ConflictException extends __BaseException {
|