@aws-sdk/client-opensearchserverless 3.306.0 → 3.309.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-cjs/commands/BatchGetCollectionCommand.js +2 -2
- package/dist-cjs/commands/BatchGetVpcEndpointCommand.js +2 -2
- package/dist-cjs/commands/CreateAccessPolicyCommand.js +2 -2
- package/dist-cjs/commands/CreateCollectionCommand.js +2 -2
- package/dist-cjs/commands/CreateSecurityConfigCommand.js +2 -2
- package/dist-cjs/commands/CreateSecurityPolicyCommand.js +2 -2
- package/dist-cjs/commands/CreateVpcEndpointCommand.js +2 -2
- package/dist-cjs/commands/DeleteAccessPolicyCommand.js +2 -2
- package/dist-cjs/commands/DeleteCollectionCommand.js +2 -2
- package/dist-cjs/commands/DeleteSecurityConfigCommand.js +2 -2
- package/dist-cjs/commands/DeleteSecurityPolicyCommand.js +2 -2
- package/dist-cjs/commands/DeleteVpcEndpointCommand.js +2 -2
- package/dist-cjs/commands/GetAccessPolicyCommand.js +2 -2
- package/dist-cjs/commands/GetAccountSettingsCommand.js +2 -2
- package/dist-cjs/commands/GetPoliciesStatsCommand.js +2 -2
- package/dist-cjs/commands/GetSecurityConfigCommand.js +2 -2
- package/dist-cjs/commands/GetSecurityPolicyCommand.js +2 -2
- package/dist-cjs/commands/ListAccessPoliciesCommand.js +2 -2
- package/dist-cjs/commands/ListCollectionsCommand.js +2 -2
- package/dist-cjs/commands/ListSecurityConfigsCommand.js +2 -2
- package/dist-cjs/commands/ListSecurityPoliciesCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/ListVpcEndpointsCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateAccessPolicyCommand.js +2 -2
- package/dist-cjs/commands/UpdateAccountSettingsCommand.js +2 -2
- package/dist-cjs/commands/UpdateCollectionCommand.js +2 -2
- package/dist-cjs/commands/UpdateSecurityConfigCommand.js +2 -2
- package/dist-cjs/commands/UpdateSecurityPolicyCommand.js +2 -2
- package/dist-cjs/commands/UpdateVpcEndpointCommand.js +2 -2
- package/dist-cjs/protocols/Aws_json1_0.js +549 -595
- package/dist-es/commands/BatchGetCollectionCommand.js +3 -3
- package/dist-es/commands/BatchGetVpcEndpointCommand.js +3 -3
- package/dist-es/commands/CreateAccessPolicyCommand.js +3 -3
- package/dist-es/commands/CreateCollectionCommand.js +3 -3
- package/dist-es/commands/CreateSecurityConfigCommand.js +3 -3
- package/dist-es/commands/CreateSecurityPolicyCommand.js +3 -3
- package/dist-es/commands/CreateVpcEndpointCommand.js +3 -3
- package/dist-es/commands/DeleteAccessPolicyCommand.js +3 -3
- package/dist-es/commands/DeleteCollectionCommand.js +3 -3
- package/dist-es/commands/DeleteSecurityConfigCommand.js +3 -3
- package/dist-es/commands/DeleteSecurityPolicyCommand.js +3 -3
- package/dist-es/commands/DeleteVpcEndpointCommand.js +3 -3
- package/dist-es/commands/GetAccessPolicyCommand.js +3 -3
- package/dist-es/commands/GetAccountSettingsCommand.js +3 -3
- package/dist-es/commands/GetPoliciesStatsCommand.js +3 -3
- package/dist-es/commands/GetSecurityConfigCommand.js +3 -3
- package/dist-es/commands/GetSecurityPolicyCommand.js +3 -3
- package/dist-es/commands/ListAccessPoliciesCommand.js +3 -3
- package/dist-es/commands/ListCollectionsCommand.js +3 -3
- package/dist-es/commands/ListSecurityConfigsCommand.js +3 -3
- package/dist-es/commands/ListSecurityPoliciesCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/ListVpcEndpointsCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateAccessPolicyCommand.js +3 -3
- package/dist-es/commands/UpdateAccountSettingsCommand.js +3 -3
- package/dist-es/commands/UpdateCollectionCommand.js +3 -3
- package/dist-es/commands/UpdateSecurityConfigCommand.js +3 -3
- package/dist-es/commands/UpdateSecurityPolicyCommand.js +3 -3
- package/dist-es/commands/UpdateVpcEndpointCommand.js +3 -3
- package/dist-es/protocols/Aws_json1_0.js +485 -531
- package/dist-types/protocols/Aws_json1_0.d.ts +248 -62
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +62 -62
- package/package.json +6 -6
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_UpdateSecurityPolicyCommand, se_UpdateSecurityPolicyCommand } from "../protocols/Aws_json1_0";
|
|
5
5
|
export class UpdateSecurityPolicyCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -33,9 +33,9 @@ export class UpdateSecurityPolicyCommand extends $Command {
|
|
|
33
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
34
34
|
}
|
|
35
35
|
serialize(input, context) {
|
|
36
|
-
return
|
|
36
|
+
return se_UpdateSecurityPolicyCommand(input, context);
|
|
37
37
|
}
|
|
38
38
|
deserialize(output, context) {
|
|
39
|
-
return
|
|
39
|
+
return de_UpdateSecurityPolicyCommand(output, context);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { de_UpdateVpcEndpointCommand, se_UpdateVpcEndpointCommand } from "../protocols/Aws_json1_0";
|
|
5
5
|
export class UpdateVpcEndpointCommand extends $Command {
|
|
6
6
|
static getEndpointParameterInstructions() {
|
|
7
7
|
return {
|
|
@@ -33,9 +33,9 @@ export class UpdateVpcEndpointCommand extends $Command {
|
|
|
33
33
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
34
34
|
}
|
|
35
35
|
serialize(input, context) {
|
|
36
|
-
return
|
|
36
|
+
return se_UpdateVpcEndpointCommand(input, context);
|
|
37
37
|
}
|
|
38
38
|
deserialize(output, context) {
|
|
39
|
-
return
|
|
39
|
+
return de_UpdateVpcEndpointCommand(output, context);
|
|
40
40
|
}
|
|
41
41
|
}
|