@aws-sdk/client-opensearchserverless 3.300.0 → 3.301.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/BatchGetCollectionCommand.d.ts +3 -3
- package/dist-types/commands/BatchGetVpcEndpointCommand.d.ts +2 -2
- package/dist-types/commands/CreateAccessPolicyCommand.d.ts +1 -1
- package/dist-types/commands/CreateCollectionCommand.d.ts +3 -3
- package/dist-types/commands/CreateSecurityConfigCommand.d.ts +2 -2
- package/dist-types/commands/CreateSecurityPolicyCommand.d.ts +1 -1
- package/dist-types/commands/CreateVpcEndpointCommand.d.ts +3 -3
- package/dist-types/commands/DeleteAccessPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCollectionCommand.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/GetAccessPolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetSecurityConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetSecurityPolicyCommand.d.ts +1 -1
- package/dist-types/commands/ListAccessPoliciesCommand.d.ts +2 -2
- package/dist-types/commands/ListCollectionsCommand.d.ts +2 -2
- package/dist-types/commands/ListSecurityConfigsCommand.d.ts +1 -1
- package/dist-types/commands/ListSecurityPoliciesCommand.d.ts +2 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListVpcEndpointsCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateAccessPolicyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +2 -2
- package/dist-types/commands/UpdateCollectionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateSecurityConfigCommand.d.ts +2 -2
- package/dist-types/commands/UpdateSecurityPolicyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +3 -3
- package/package.json +3 -3
|
@@ -28,11 +28,11 @@ export interface BatchGetCollectionCommandOutput extends BatchGetCollectionRespo
|
|
|
28
28
|
* import { OpenSearchServerlessClient, BatchGetCollectionCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
29
29
|
* // const { OpenSearchServerlessClient, BatchGetCollectionCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
30
30
|
* const client = new OpenSearchServerlessClient(config);
|
|
31
|
-
* const input = {
|
|
32
|
-
* ids: [
|
|
31
|
+
* const input = { // BatchGetCollectionRequest
|
|
32
|
+
* ids: [ // CollectionIds
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
|
-
* names: [
|
|
35
|
+
* names: [ // CollectionNames
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
38
|
* };
|
|
@@ -28,8 +28,8 @@ export interface BatchGetVpcEndpointCommandOutput extends BatchGetVpcEndpointRes
|
|
|
28
28
|
* import { OpenSearchServerlessClient, BatchGetVpcEndpointCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
29
29
|
* // const { OpenSearchServerlessClient, BatchGetVpcEndpointCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
30
30
|
* const client = new OpenSearchServerlessClient(config);
|
|
31
|
-
* const input = {
|
|
32
|
-
* ids: [ // required
|
|
31
|
+
* const input = { // BatchGetVpcEndpointRequest
|
|
32
|
+
* ids: [ // VpcEndpointIds // required
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* };
|
|
@@ -29,7 +29,7 @@ export interface CreateAccessPolicyCommandOutput extends CreateAccessPolicyRespo
|
|
|
29
29
|
* import { OpenSearchServerlessClient, CreateAccessPolicyCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
30
30
|
* // const { OpenSearchServerlessClient, CreateAccessPolicyCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
31
31
|
* const client = new OpenSearchServerlessClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // CreateAccessPolicyRequest
|
|
33
33
|
* type: "STRING_VALUE", // required
|
|
34
34
|
* name: "STRING_VALUE", // required
|
|
35
35
|
* description: "STRING_VALUE",
|
|
@@ -27,12 +27,12 @@ export interface CreateCollectionCommandOutput extends CreateCollectionResponse,
|
|
|
27
27
|
* import { OpenSearchServerlessClient, CreateCollectionCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
28
28
|
* // const { OpenSearchServerlessClient, CreateCollectionCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
29
29
|
* const client = new OpenSearchServerlessClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // CreateCollectionRequest
|
|
31
31
|
* name: "STRING_VALUE", // required
|
|
32
32
|
* type: "STRING_VALUE",
|
|
33
33
|
* description: "STRING_VALUE",
|
|
34
|
-
* tags: [
|
|
35
|
-
* {
|
|
34
|
+
* tags: [ // Tags
|
|
35
|
+
* { // Tag
|
|
36
36
|
* key: "STRING_VALUE", // required
|
|
37
37
|
* value: "STRING_VALUE", // required
|
|
38
38
|
* },
|
|
@@ -28,11 +28,11 @@ export interface CreateSecurityConfigCommandOutput extends CreateSecurityConfigR
|
|
|
28
28
|
* import { OpenSearchServerlessClient, CreateSecurityConfigCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
29
29
|
* // const { OpenSearchServerlessClient, CreateSecurityConfigCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
30
30
|
* const client = new OpenSearchServerlessClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // CreateSecurityConfigRequest
|
|
32
32
|
* type: "STRING_VALUE", // required
|
|
33
33
|
* name: "STRING_VALUE", // required
|
|
34
34
|
* description: "STRING_VALUE",
|
|
35
|
-
* samlOptions: {
|
|
35
|
+
* samlOptions: { // SamlConfigOptions
|
|
36
36
|
* metadata: "STRING_VALUE", // required
|
|
37
37
|
* userAttribute: "STRING_VALUE",
|
|
38
38
|
* groupAttribute: "STRING_VALUE",
|
|
@@ -31,7 +31,7 @@ export interface CreateSecurityPolicyCommandOutput extends CreateSecurityPolicyR
|
|
|
31
31
|
* import { OpenSearchServerlessClient, CreateSecurityPolicyCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
32
32
|
* // const { OpenSearchServerlessClient, CreateSecurityPolicyCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
33
33
|
* const client = new OpenSearchServerlessClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // CreateSecurityPolicyRequest
|
|
35
35
|
* type: "STRING_VALUE", // required
|
|
36
36
|
* name: "STRING_VALUE", // required
|
|
37
37
|
* description: "STRING_VALUE",
|
|
@@ -27,13 +27,13 @@ export interface CreateVpcEndpointCommandOutput extends CreateVpcEndpointRespons
|
|
|
27
27
|
* import { OpenSearchServerlessClient, CreateVpcEndpointCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
28
28
|
* // const { OpenSearchServerlessClient, CreateVpcEndpointCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
29
29
|
* const client = new OpenSearchServerlessClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // CreateVpcEndpointRequest
|
|
31
31
|
* name: "STRING_VALUE", // required
|
|
32
32
|
* vpcId: "STRING_VALUE", // required
|
|
33
|
-
* subnetIds: [ // required
|
|
33
|
+
* subnetIds: [ // SubnetIds // required
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
|
-
* securityGroupIds: [
|
|
36
|
+
* securityGroupIds: [ // SecurityGroupIds
|
|
37
37
|
* "STRING_VALUE",
|
|
38
38
|
* ],
|
|
39
39
|
* clientToken: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface DeleteAccessPolicyCommandOutput extends DeleteAccessPolicyRespo
|
|
|
27
27
|
* import { OpenSearchServerlessClient, DeleteAccessPolicyCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
28
28
|
* // const { OpenSearchServerlessClient, DeleteAccessPolicyCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
29
29
|
* const client = new OpenSearchServerlessClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteAccessPolicyRequest
|
|
31
31
|
* type: "STRING_VALUE", // required
|
|
32
32
|
* name: "STRING_VALUE", // required
|
|
33
33
|
* clientToken: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface DeleteCollectionCommandOutput extends DeleteCollectionResponse,
|
|
|
27
27
|
* import { OpenSearchServerlessClient, DeleteCollectionCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
28
28
|
* // const { OpenSearchServerlessClient, DeleteCollectionCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
29
29
|
* const client = new OpenSearchServerlessClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteCollectionRequest
|
|
31
31
|
* id: "STRING_VALUE", // required
|
|
32
32
|
* clientToken: "STRING_VALUE",
|
|
33
33
|
* };
|
|
@@ -28,7 +28,7 @@ export interface DeleteSecurityConfigCommandOutput extends DeleteSecurityConfigR
|
|
|
28
28
|
* import { OpenSearchServerlessClient, DeleteSecurityConfigCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
29
29
|
* // const { OpenSearchServerlessClient, DeleteSecurityConfigCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
30
30
|
* const client = new OpenSearchServerlessClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DeleteSecurityConfigRequest
|
|
32
32
|
* id: "STRING_VALUE", // required
|
|
33
33
|
* clientToken: "STRING_VALUE",
|
|
34
34
|
* };
|
|
@@ -26,7 +26,7 @@ export interface DeleteSecurityPolicyCommandOutput extends DeleteSecurityPolicyR
|
|
|
26
26
|
* import { OpenSearchServerlessClient, DeleteSecurityPolicyCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
27
27
|
* // const { OpenSearchServerlessClient, DeleteSecurityPolicyCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
28
28
|
* const client = new OpenSearchServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // DeleteSecurityPolicyRequest
|
|
30
30
|
* type: "STRING_VALUE", // required
|
|
31
31
|
* name: "STRING_VALUE", // required
|
|
32
32
|
* clientToken: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface DeleteVpcEndpointCommandOutput extends DeleteVpcEndpointRespons
|
|
|
27
27
|
* import { OpenSearchServerlessClient, DeleteVpcEndpointCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
28
28
|
* // const { OpenSearchServerlessClient, DeleteVpcEndpointCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
29
29
|
* const client = new OpenSearchServerlessClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteVpcEndpointRequest
|
|
31
31
|
* id: "STRING_VALUE", // required
|
|
32
32
|
* clientToken: "STRING_VALUE",
|
|
33
33
|
* };
|
|
@@ -27,7 +27,7 @@ export interface GetAccessPolicyCommandOutput extends GetAccessPolicyResponse, _
|
|
|
27
27
|
* import { OpenSearchServerlessClient, GetAccessPolicyCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
28
28
|
* // const { OpenSearchServerlessClient, GetAccessPolicyCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
29
29
|
* const client = new OpenSearchServerlessClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // GetAccessPolicyRequest
|
|
31
31
|
* type: "STRING_VALUE", // required
|
|
32
32
|
* name: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -28,7 +28,7 @@ export interface GetSecurityConfigCommandOutput extends GetSecurityConfigRespons
|
|
|
28
28
|
* import { OpenSearchServerlessClient, GetSecurityConfigCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
29
29
|
* // const { OpenSearchServerlessClient, GetSecurityConfigCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
30
30
|
* const client = new OpenSearchServerlessClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetSecurityConfigRequest
|
|
32
32
|
* id: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetSecurityConfigCommand(input);
|
|
@@ -28,7 +28,7 @@ export interface GetSecurityPolicyCommandOutput extends GetSecurityPolicyRespons
|
|
|
28
28
|
* import { OpenSearchServerlessClient, GetSecurityPolicyCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
29
29
|
* // const { OpenSearchServerlessClient, GetSecurityPolicyCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
30
30
|
* const client = new OpenSearchServerlessClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // GetSecurityPolicyRequest
|
|
32
32
|
* type: "STRING_VALUE", // required
|
|
33
33
|
* name: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
@@ -26,9 +26,9 @@ export interface ListAccessPoliciesCommandOutput extends ListAccessPoliciesRespo
|
|
|
26
26
|
* import { OpenSearchServerlessClient, ListAccessPoliciesCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
27
27
|
* // const { OpenSearchServerlessClient, ListAccessPoliciesCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
28
28
|
* const client = new OpenSearchServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListAccessPoliciesRequest
|
|
30
30
|
* type: "STRING_VALUE", // required
|
|
31
|
-
* resource: [
|
|
31
|
+
* resource: [ // ResourceFilter
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* nextToken: "STRING_VALUE",
|
|
@@ -31,8 +31,8 @@ export interface ListCollectionsCommandOutput extends ListCollectionsResponse, _
|
|
|
31
31
|
* import { OpenSearchServerlessClient, ListCollectionsCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
32
32
|
* // const { OpenSearchServerlessClient, ListCollectionsCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
33
33
|
* const client = new OpenSearchServerlessClient(config);
|
|
34
|
-
* const input = {
|
|
35
|
-
* collectionFilters: {
|
|
34
|
+
* const input = { // ListCollectionsRequest
|
|
35
|
+
* collectionFilters: { // CollectionFilters
|
|
36
36
|
* name: "STRING_VALUE",
|
|
37
37
|
* status: "STRING_VALUE",
|
|
38
38
|
* },
|
|
@@ -28,7 +28,7 @@ export interface ListSecurityConfigsCommandOutput extends ListSecurityConfigsRes
|
|
|
28
28
|
* import { OpenSearchServerlessClient, ListSecurityConfigsCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
29
29
|
* // const { OpenSearchServerlessClient, ListSecurityConfigsCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
30
30
|
* const client = new OpenSearchServerlessClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListSecurityConfigsRequest
|
|
32
32
|
* type: "STRING_VALUE", // required
|
|
33
33
|
* nextToken: "STRING_VALUE",
|
|
34
34
|
* maxResults: Number("int"),
|
|
@@ -26,9 +26,9 @@ export interface ListSecurityPoliciesCommandOutput extends ListSecurityPoliciesR
|
|
|
26
26
|
* import { OpenSearchServerlessClient, ListSecurityPoliciesCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
27
27
|
* // const { OpenSearchServerlessClient, ListSecurityPoliciesCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
28
28
|
* const client = new OpenSearchServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListSecurityPoliciesRequest
|
|
30
30
|
* type: "STRING_VALUE", // required
|
|
31
|
-
* resource: [
|
|
31
|
+
* resource: [ // ResourceFilter
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* nextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { OpenSearchServerlessClient, ListTagsForResourceCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
27
27
|
* // const { OpenSearchServerlessClient, ListTagsForResourceCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
28
28
|
* const client = new OpenSearchServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -28,8 +28,8 @@ export interface ListVpcEndpointsCommandOutput extends ListVpcEndpointsResponse,
|
|
|
28
28
|
* import { OpenSearchServerlessClient, ListVpcEndpointsCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
29
29
|
* // const { OpenSearchServerlessClient, ListVpcEndpointsCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
30
30
|
* const client = new OpenSearchServerlessClient(config);
|
|
31
|
-
* const input = {
|
|
32
|
-
* vpcEndpointFilters: {
|
|
31
|
+
* const input = { // ListVpcEndpointsRequest
|
|
32
|
+
* vpcEndpointFilters: { // VpcEndpointFilters
|
|
33
33
|
* status: "STRING_VALUE",
|
|
34
34
|
* },
|
|
35
35
|
* nextToken: "STRING_VALUE",
|
|
@@ -26,10 +26,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { OpenSearchServerlessClient, TagResourceCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
27
27
|
* // const { OpenSearchServerlessClient, TagResourceCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
28
28
|
* const client = new OpenSearchServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tags: [ // required
|
|
32
|
-
* {
|
|
31
|
+
* tags: [ // Tags // required
|
|
32
|
+
* { // Tag
|
|
33
33
|
* key: "STRING_VALUE", // required
|
|
34
34
|
* value: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { OpenSearchServerlessClient, UntagResourceCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
27
27
|
* // const { OpenSearchServerlessClient, UntagResourceCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
28
28
|
* const client = new OpenSearchServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
|
-
* tagKeys: [ // required
|
|
31
|
+
* tagKeys: [ // TagKeys // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -27,7 +27,7 @@ export interface UpdateAccessPolicyCommandOutput extends UpdateAccessPolicyRespo
|
|
|
27
27
|
* import { OpenSearchServerlessClient, UpdateAccessPolicyCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
28
28
|
* // const { OpenSearchServerlessClient, UpdateAccessPolicyCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
29
29
|
* const client = new OpenSearchServerlessClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UpdateAccessPolicyRequest
|
|
31
31
|
* type: "STRING_VALUE", // required
|
|
32
32
|
* name: "STRING_VALUE", // required
|
|
33
33
|
* policyVersion: "STRING_VALUE", // required
|
|
@@ -27,8 +27,8 @@ export interface UpdateAccountSettingsCommandOutput extends UpdateAccountSetting
|
|
|
27
27
|
* import { OpenSearchServerlessClient, UpdateAccountSettingsCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
28
28
|
* // const { OpenSearchServerlessClient, UpdateAccountSettingsCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
29
29
|
* const client = new OpenSearchServerlessClient(config);
|
|
30
|
-
* const input = {
|
|
31
|
-
* capacityLimits: {
|
|
30
|
+
* const input = { // UpdateAccountSettingsRequest
|
|
31
|
+
* capacityLimits: { // CapacityLimits
|
|
32
32
|
* maxIndexingCapacityInOCU: Number("int"),
|
|
33
33
|
* maxSearchCapacityInOCU: Number("int"),
|
|
34
34
|
* },
|
|
@@ -26,7 +26,7 @@ export interface UpdateCollectionCommandOutput extends UpdateCollectionResponse,
|
|
|
26
26
|
* import { OpenSearchServerlessClient, UpdateCollectionCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
27
27
|
* // const { OpenSearchServerlessClient, UpdateCollectionCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
28
28
|
* const client = new OpenSearchServerlessClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateCollectionRequest
|
|
30
30
|
* id: "STRING_VALUE", // required
|
|
31
31
|
* description: "STRING_VALUE",
|
|
32
32
|
* clientToken: "STRING_VALUE",
|
|
@@ -28,11 +28,11 @@ export interface UpdateSecurityConfigCommandOutput extends UpdateSecurityConfigR
|
|
|
28
28
|
* import { OpenSearchServerlessClient, UpdateSecurityConfigCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
29
29
|
* // const { OpenSearchServerlessClient, UpdateSecurityConfigCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
30
30
|
* const client = new OpenSearchServerlessClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UpdateSecurityConfigRequest
|
|
32
32
|
* id: "STRING_VALUE", // required
|
|
33
33
|
* configVersion: "STRING_VALUE", // required
|
|
34
34
|
* description: "STRING_VALUE",
|
|
35
|
-
* samlOptions: {
|
|
35
|
+
* samlOptions: { // SamlConfigOptions
|
|
36
36
|
* metadata: "STRING_VALUE", // required
|
|
37
37
|
* userAttribute: "STRING_VALUE",
|
|
38
38
|
* groupAttribute: "STRING_VALUE",
|
|
@@ -28,7 +28,7 @@ export interface UpdateSecurityPolicyCommandOutput extends UpdateSecurityPolicyR
|
|
|
28
28
|
* import { OpenSearchServerlessClient, UpdateSecurityPolicyCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
29
29
|
* // const { OpenSearchServerlessClient, UpdateSecurityPolicyCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
30
30
|
* const client = new OpenSearchServerlessClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UpdateSecurityPolicyRequest
|
|
32
32
|
* type: "STRING_VALUE", // required
|
|
33
33
|
* name: "STRING_VALUE", // required
|
|
34
34
|
* policyVersion: "STRING_VALUE", // required
|
|
@@ -27,15 +27,15 @@ export interface UpdateVpcEndpointCommandOutput extends UpdateVpcEndpointRespons
|
|
|
27
27
|
* import { OpenSearchServerlessClient, UpdateVpcEndpointCommand } from "@aws-sdk/client-opensearchserverless"; // ES Modules import
|
|
28
28
|
* // const { OpenSearchServerlessClient, UpdateVpcEndpointCommand } = require("@aws-sdk/client-opensearchserverless"); // CommonJS import
|
|
29
29
|
* const client = new OpenSearchServerlessClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UpdateVpcEndpointRequest
|
|
31
31
|
* id: "STRING_VALUE", // required
|
|
32
|
-
* addSubnetIds: [
|
|
32
|
+
* addSubnetIds: [ // SubnetIds
|
|
33
33
|
* "STRING_VALUE",
|
|
34
34
|
* ],
|
|
35
35
|
* removeSubnetIds: [
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
|
-
* addSecurityGroupIds: [
|
|
38
|
+
* addSecurityGroupIds: [ // SecurityGroupIds
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
41
|
* removeSecurityGroupIds: [
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-opensearchserverless",
|
|
3
3
|
"description": "AWS SDK for JavaScript Opensearchserverless Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|