@aws-sdk/client-opensearchserverless 3.321.1 → 3.326.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.
Files changed (32) hide show
  1. package/dist-types/commands/BatchGetCollectionCommand.d.ts +28 -0
  2. package/dist-types/commands/BatchGetVpcEndpointCommand.d.ts +27 -0
  3. package/dist-types/commands/CreateAccessPolicyCommand.d.ts +14 -0
  4. package/dist-types/commands/CreateCollectionCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateSecurityConfigCommand.d.ts +19 -0
  6. package/dist-types/commands/CreateSecurityPolicyCommand.d.ts +14 -0
  7. package/dist-types/commands/CreateVpcEndpointCommand.d.ts +10 -0
  8. package/dist-types/commands/DeleteAccessPolicyCommand.d.ts +4 -0
  9. package/dist-types/commands/DeleteCollectionCommand.d.ts +10 -0
  10. package/dist-types/commands/DeleteSecurityConfigCommand.d.ts +4 -0
  11. package/dist-types/commands/DeleteSecurityPolicyCommand.d.ts +4 -0
  12. package/dist-types/commands/DeleteVpcEndpointCommand.d.ts +10 -0
  13. package/dist-types/commands/GetAccessPolicyCommand.d.ts +14 -0
  14. package/dist-types/commands/GetAccountSettingsCommand.d.ts +11 -0
  15. package/dist-types/commands/GetPoliciesStatsCommand.d.ts +16 -0
  16. package/dist-types/commands/GetSecurityConfigCommand.d.ts +19 -0
  17. package/dist-types/commands/GetSecurityPolicyCommand.d.ts +14 -0
  18. package/dist-types/commands/ListAccessPoliciesCommand.d.ts +16 -0
  19. package/dist-types/commands/ListCollectionsCommand.d.ts +14 -0
  20. package/dist-types/commands/ListSecurityConfigsCommand.d.ts +16 -0
  21. package/dist-types/commands/ListSecurityPoliciesCommand.d.ts +16 -0
  22. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  23. package/dist-types/commands/ListVpcEndpointsCommand.d.ts +13 -0
  24. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  25. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  26. package/dist-types/commands/UpdateAccessPolicyCommand.d.ts +14 -0
  27. package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +11 -0
  28. package/dist-types/commands/UpdateCollectionCommand.d.ts +15 -0
  29. package/dist-types/commands/UpdateSecurityConfigCommand.d.ts +19 -0
  30. package/dist-types/commands/UpdateSecurityPolicyCommand.d.ts +14 -0
  31. package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +17 -0
  32. package/package.json +16 -16
@@ -38,6 +38,32 @@ export interface BatchGetCollectionCommandOutput extends BatchGetCollectionRespo
38
38
  * };
39
39
  * const command = new BatchGetCollectionCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // BatchGetCollectionResponse
42
+ * // collectionDetails: [ // CollectionDetails
43
+ * // { // CollectionDetail
44
+ * // id: "STRING_VALUE",
45
+ * // name: "STRING_VALUE",
46
+ * // status: "STRING_VALUE",
47
+ * // type: "STRING_VALUE",
48
+ * // description: "STRING_VALUE",
49
+ * // arn: "STRING_VALUE",
50
+ * // kmsKeyArn: "STRING_VALUE",
51
+ * // createdDate: Number("long"),
52
+ * // lastModifiedDate: Number("long"),
53
+ * // collectionEndpoint: "STRING_VALUE",
54
+ * // dashboardEndpoint: "STRING_VALUE",
55
+ * // },
56
+ * // ],
57
+ * // collectionErrorDetails: [ // CollectionErrorDetails
58
+ * // { // CollectionErrorDetail
59
+ * // id: "STRING_VALUE",
60
+ * // name: "STRING_VALUE",
61
+ * // errorMessage: "STRING_VALUE",
62
+ * // errorCode: "STRING_VALUE",
63
+ * // },
64
+ * // ],
65
+ * // };
66
+ *
41
67
  * ```
42
68
  *
43
69
  * @param BatchGetCollectionCommandInput - {@link BatchGetCollectionCommandInput}
@@ -53,6 +79,8 @@ export interface BatchGetCollectionCommandOutput extends BatchGetCollectionRespo
53
79
  * <p>Thrown when the HTTP request contains invalid input or is missing required
54
80
  * input.</p>
55
81
  *
82
+ * @throws {@link OpenSearchServerlessServiceException}
83
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
56
84
  *
57
85
  */
58
86
  export declare class BatchGetCollectionCommand extends $Command<BatchGetCollectionCommandInput, BatchGetCollectionCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -35,6 +35,31 @@ export interface BatchGetVpcEndpointCommandOutput extends BatchGetVpcEndpointRes
35
35
  * };
36
36
  * const command = new BatchGetVpcEndpointCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // BatchGetVpcEndpointResponse
39
+ * // vpcEndpointDetails: [ // VpcEndpointDetails
40
+ * // { // VpcEndpointDetail
41
+ * // id: "STRING_VALUE",
42
+ * // name: "STRING_VALUE",
43
+ * // vpcId: "STRING_VALUE",
44
+ * // subnetIds: [ // SubnetIds
45
+ * // "STRING_VALUE",
46
+ * // ],
47
+ * // securityGroupIds: [ // SecurityGroupIds
48
+ * // "STRING_VALUE",
49
+ * // ],
50
+ * // status: "STRING_VALUE",
51
+ * // createdDate: Number("long"),
52
+ * // },
53
+ * // ],
54
+ * // vpcEndpointErrorDetails: [ // VpcEndpointErrorDetails
55
+ * // { // VpcEndpointErrorDetail
56
+ * // id: "STRING_VALUE",
57
+ * // errorMessage: "STRING_VALUE",
58
+ * // errorCode: "STRING_VALUE",
59
+ * // },
60
+ * // ],
61
+ * // };
62
+ *
38
63
  * ```
39
64
  *
40
65
  * @param BatchGetVpcEndpointCommandInput - {@link BatchGetVpcEndpointCommandInput}
@@ -50,6 +75,8 @@ export interface BatchGetVpcEndpointCommandOutput extends BatchGetVpcEndpointRes
50
75
  * <p>Thrown when the HTTP request contains invalid input or is missing required
51
76
  * input.</p>
52
77
  *
78
+ * @throws {@link OpenSearchServerlessServiceException}
79
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
53
80
  *
54
81
  */
55
82
  export declare class BatchGetVpcEndpointCommand extends $Command<BatchGetVpcEndpointCommandInput, BatchGetVpcEndpointCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -38,6 +38,18 @@ export interface CreateAccessPolicyCommandOutput extends CreateAccessPolicyRespo
38
38
  * };
39
39
  * const command = new CreateAccessPolicyCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // CreateAccessPolicyResponse
42
+ * // accessPolicyDetail: { // AccessPolicyDetail
43
+ * // type: "STRING_VALUE",
44
+ * // name: "STRING_VALUE",
45
+ * // policyVersion: "STRING_VALUE",
46
+ * // description: "STRING_VALUE",
47
+ * // policy: "DOCUMENT_VALUE",
48
+ * // createdDate: Number("long"),
49
+ * // lastModifiedDate: Number("long"),
50
+ * // },
51
+ * // };
52
+ *
41
53
  * ```
42
54
  *
43
55
  * @param CreateAccessPolicyCommandInput - {@link CreateAccessPolicyCommandInput}
@@ -61,6 +73,8 @@ export interface CreateAccessPolicyCommandOutput extends CreateAccessPolicyRespo
61
73
  * <p>Thrown when the HTTP request contains invalid input or is missing required
62
74
  * input.</p>
63
75
  *
76
+ * @throws {@link OpenSearchServerlessServiceException}
77
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
64
78
  *
65
79
  */
66
80
  export declare class CreateAccessPolicyCommand extends $Command<CreateAccessPolicyCommandInput, CreateAccessPolicyCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -41,6 +41,20 @@ export interface CreateCollectionCommandOutput extends CreateCollectionResponse,
41
41
  * };
42
42
  * const command = new CreateCollectionCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // { // CreateCollectionResponse
45
+ * // createCollectionDetail: { // CreateCollectionDetail
46
+ * // id: "STRING_VALUE",
47
+ * // name: "STRING_VALUE",
48
+ * // status: "STRING_VALUE",
49
+ * // type: "STRING_VALUE",
50
+ * // description: "STRING_VALUE",
51
+ * // arn: "STRING_VALUE",
52
+ * // kmsKeyArn: "STRING_VALUE",
53
+ * // createdDate: Number("long"),
54
+ * // lastModifiedDate: Number("long"),
55
+ * // },
56
+ * // };
57
+ *
44
58
  * ```
45
59
  *
46
60
  * @param CreateCollectionCommandInput - {@link CreateCollectionCommandInput}
@@ -67,6 +81,8 @@ export interface CreateCollectionCommandOutput extends CreateCollectionResponse,
67
81
  * <p>Thrown when the HTTP request contains invalid input or is missing required
68
82
  * input.</p>
69
83
  *
84
+ * @throws {@link OpenSearchServerlessServiceException}
85
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
70
86
  *
71
87
  */
72
88
  export declare class CreateCollectionCommand extends $Command<CreateCollectionCommandInput, CreateCollectionCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -42,6 +42,23 @@ export interface CreateSecurityConfigCommandOutput extends CreateSecurityConfigR
42
42
  * };
43
43
  * const command = new CreateSecurityConfigCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // CreateSecurityConfigResponse
46
+ * // securityConfigDetail: { // SecurityConfigDetail
47
+ * // id: "STRING_VALUE",
48
+ * // type: "STRING_VALUE",
49
+ * // configVersion: "STRING_VALUE",
50
+ * // description: "STRING_VALUE",
51
+ * // samlOptions: { // SamlConfigOptions
52
+ * // metadata: "STRING_VALUE", // required
53
+ * // userAttribute: "STRING_VALUE",
54
+ * // groupAttribute: "STRING_VALUE",
55
+ * // sessionTimeout: Number("int"),
56
+ * // },
57
+ * // createdDate: Number("long"),
58
+ * // lastModifiedDate: Number("long"),
59
+ * // },
60
+ * // };
61
+ *
45
62
  * ```
46
63
  *
47
64
  * @param CreateSecurityConfigCommandInput - {@link CreateSecurityConfigCommandInput}
@@ -65,6 +82,8 @@ export interface CreateSecurityConfigCommandOutput extends CreateSecurityConfigR
65
82
  * <p>Thrown when the HTTP request contains invalid input or is missing required
66
83
  * input.</p>
67
84
  *
85
+ * @throws {@link OpenSearchServerlessServiceException}
86
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
68
87
  *
69
88
  */
70
89
  export declare class CreateSecurityConfigCommand extends $Command<CreateSecurityConfigCommandInput, CreateSecurityConfigCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -40,6 +40,18 @@ export interface CreateSecurityPolicyCommandOutput extends CreateSecurityPolicyR
40
40
  * };
41
41
  * const command = new CreateSecurityPolicyCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // CreateSecurityPolicyResponse
44
+ * // securityPolicyDetail: { // SecurityPolicyDetail
45
+ * // type: "STRING_VALUE",
46
+ * // name: "STRING_VALUE",
47
+ * // policyVersion: "STRING_VALUE",
48
+ * // description: "STRING_VALUE",
49
+ * // policy: "DOCUMENT_VALUE",
50
+ * // createdDate: Number("long"),
51
+ * // lastModifiedDate: Number("long"),
52
+ * // },
53
+ * // };
54
+ *
43
55
  * ```
44
56
  *
45
57
  * @param CreateSecurityPolicyCommandInput - {@link CreateSecurityPolicyCommandInput}
@@ -63,6 +75,8 @@ export interface CreateSecurityPolicyCommandOutput extends CreateSecurityPolicyR
63
75
  * <p>Thrown when the HTTP request contains invalid input or is missing required
64
76
  * input.</p>
65
77
  *
78
+ * @throws {@link OpenSearchServerlessServiceException}
79
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
66
80
  *
67
81
  */
68
82
  export declare class CreateSecurityPolicyCommand extends $Command<CreateSecurityPolicyCommandInput, CreateSecurityPolicyCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -40,6 +40,14 @@ export interface CreateVpcEndpointCommandOutput extends CreateVpcEndpointRespons
40
40
  * };
41
41
  * const command = new CreateVpcEndpointCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // CreateVpcEndpointResponse
44
+ * // createVpcEndpointDetail: { // CreateVpcEndpointDetail
45
+ * // id: "STRING_VALUE",
46
+ * // name: "STRING_VALUE",
47
+ * // status: "STRING_VALUE",
48
+ * // },
49
+ * // };
50
+ *
43
51
  * ```
44
52
  *
45
53
  * @param CreateVpcEndpointCommandInput - {@link CreateVpcEndpointCommandInput}
@@ -63,6 +71,8 @@ export interface CreateVpcEndpointCommandOutput extends CreateVpcEndpointRespons
63
71
  * <p>Thrown when the HTTP request contains invalid input or is missing required
64
72
  * input.</p>
65
73
  *
74
+ * @throws {@link OpenSearchServerlessServiceException}
75
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
66
76
  *
67
77
  */
68
78
  export declare class CreateVpcEndpointCommand extends $Command<CreateVpcEndpointCommandInput, CreateVpcEndpointCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface DeleteAccessPolicyCommandOutput extends DeleteAccessPolicyRespo
34
34
  * };
35
35
  * const command = new DeleteAccessPolicyCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param DeleteAccessPolicyCommandInput - {@link DeleteAccessPolicyCommandInput}
@@ -57,6 +59,8 @@ export interface DeleteAccessPolicyCommandOutput extends DeleteAccessPolicyRespo
57
59
  * <p>Thrown when the HTTP request contains invalid input or is missing required
58
60
  * input.</p>
59
61
  *
62
+ * @throws {@link OpenSearchServerlessServiceException}
63
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
60
64
  *
61
65
  */
62
66
  export declare class DeleteAccessPolicyCommand extends $Command<DeleteAccessPolicyCommandInput, DeleteAccessPolicyCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -33,6 +33,14 @@ export interface DeleteCollectionCommandOutput extends DeleteCollectionResponse,
33
33
  * };
34
34
  * const command = new DeleteCollectionCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DeleteCollectionResponse
37
+ * // deleteCollectionDetail: { // DeleteCollectionDetail
38
+ * // id: "STRING_VALUE",
39
+ * // name: "STRING_VALUE",
40
+ * // status: "STRING_VALUE",
41
+ * // },
42
+ * // };
43
+ *
36
44
  * ```
37
45
  *
38
46
  * @param DeleteCollectionCommandInput - {@link DeleteCollectionCommandInput}
@@ -56,6 +64,8 @@ export interface DeleteCollectionCommandOutput extends DeleteCollectionResponse,
56
64
  * <p>Thrown when the HTTP request contains invalid input or is missing required
57
65
  * input.</p>
58
66
  *
67
+ * @throws {@link OpenSearchServerlessServiceException}
68
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
59
69
  *
60
70
  */
61
71
  export declare class DeleteCollectionCommand extends $Command<DeleteCollectionCommandInput, DeleteCollectionCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface DeleteSecurityConfigCommandOutput extends DeleteSecurityConfigR
34
34
  * };
35
35
  * const command = new DeleteSecurityConfigCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param DeleteSecurityConfigCommandInput - {@link DeleteSecurityConfigCommandInput}
@@ -57,6 +59,8 @@ export interface DeleteSecurityConfigCommandOutput extends DeleteSecurityConfigR
57
59
  * <p>Thrown when the HTTP request contains invalid input or is missing required
58
60
  * input.</p>
59
61
  *
62
+ * @throws {@link OpenSearchServerlessServiceException}
63
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
60
64
  *
61
65
  */
62
66
  export declare class DeleteSecurityConfigCommand extends $Command<DeleteSecurityConfigCommandInput, DeleteSecurityConfigCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface DeleteSecurityPolicyCommandOutput extends DeleteSecurityPolicyR
33
33
  * };
34
34
  * const command = new DeleteSecurityPolicyCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param DeleteSecurityPolicyCommandInput - {@link DeleteSecurityPolicyCommandInput}
@@ -56,6 +58,8 @@ export interface DeleteSecurityPolicyCommandOutput extends DeleteSecurityPolicyR
56
58
  * <p>Thrown when the HTTP request contains invalid input or is missing required
57
59
  * input.</p>
58
60
  *
61
+ * @throws {@link OpenSearchServerlessServiceException}
62
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
59
63
  *
60
64
  */
61
65
  export declare class DeleteSecurityPolicyCommand extends $Command<DeleteSecurityPolicyCommandInput, DeleteSecurityPolicyCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -33,6 +33,14 @@ export interface DeleteVpcEndpointCommandOutput extends DeleteVpcEndpointRespons
33
33
  * };
34
34
  * const command = new DeleteVpcEndpointCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DeleteVpcEndpointResponse
37
+ * // deleteVpcEndpointDetail: { // DeleteVpcEndpointDetail
38
+ * // id: "STRING_VALUE",
39
+ * // name: "STRING_VALUE",
40
+ * // status: "STRING_VALUE",
41
+ * // },
42
+ * // };
43
+ *
36
44
  * ```
37
45
  *
38
46
  * @param DeleteVpcEndpointCommandInput - {@link DeleteVpcEndpointCommandInput}
@@ -56,6 +64,8 @@ export interface DeleteVpcEndpointCommandOutput extends DeleteVpcEndpointRespons
56
64
  * <p>Thrown when the HTTP request contains invalid input or is missing required
57
65
  * input.</p>
58
66
  *
67
+ * @throws {@link OpenSearchServerlessServiceException}
68
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
59
69
  *
60
70
  */
61
71
  export declare class DeleteVpcEndpointCommand extends $Command<DeleteVpcEndpointCommandInput, DeleteVpcEndpointCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -33,6 +33,18 @@ export interface GetAccessPolicyCommandOutput extends GetAccessPolicyResponse, _
33
33
  * };
34
34
  * const command = new GetAccessPolicyCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // GetAccessPolicyResponse
37
+ * // accessPolicyDetail: { // AccessPolicyDetail
38
+ * // type: "STRING_VALUE",
39
+ * // name: "STRING_VALUE",
40
+ * // policyVersion: "STRING_VALUE",
41
+ * // description: "STRING_VALUE",
42
+ * // policy: "DOCUMENT_VALUE",
43
+ * // createdDate: Number("long"),
44
+ * // lastModifiedDate: Number("long"),
45
+ * // },
46
+ * // };
47
+ *
36
48
  * ```
37
49
  *
38
50
  * @param GetAccessPolicyCommandInput - {@link GetAccessPolicyCommandInput}
@@ -51,6 +63,8 @@ export interface GetAccessPolicyCommandOutput extends GetAccessPolicyResponse, _
51
63
  * <p>Thrown when the HTTP request contains invalid input or is missing required
52
64
  * input.</p>
53
65
  *
66
+ * @throws {@link OpenSearchServerlessServiceException}
67
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
54
68
  *
55
69
  */
56
70
  export declare class GetAccessPolicyCommand extends $Command<GetAccessPolicyCommandInput, GetAccessPolicyCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -29,6 +29,15 @@ export interface GetAccountSettingsCommandOutput extends GetAccountSettingsRespo
29
29
  * const input = {};
30
30
  * const command = new GetAccountSettingsCommand(input);
31
31
  * const response = await client.send(command);
32
+ * // { // GetAccountSettingsResponse
33
+ * // accountSettingsDetail: { // AccountSettingsDetail
34
+ * // capacityLimits: { // CapacityLimits
35
+ * // maxIndexingCapacityInOCU: Number("int"),
36
+ * // maxSearchCapacityInOCU: Number("int"),
37
+ * // },
38
+ * // },
39
+ * // };
40
+ *
32
41
  * ```
33
42
  *
34
43
  * @param GetAccountSettingsCommandInput - {@link GetAccountSettingsCommandInput}
@@ -44,6 +53,8 @@ export interface GetAccountSettingsCommandOutput extends GetAccountSettingsRespo
44
53
  * <p>Thrown when the HTTP request contains invalid input or is missing required
45
54
  * input.</p>
46
55
  *
56
+ * @throws {@link OpenSearchServerlessServiceException}
57
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
47
58
  *
48
59
  */
49
60
  export declare class GetAccountSettingsCommand extends $Command<GetAccountSettingsCommandInput, GetAccountSettingsCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -30,6 +30,20 @@ export interface GetPoliciesStatsCommandOutput extends GetPoliciesStatsResponse,
30
30
  * const input = {};
31
31
  * const command = new GetPoliciesStatsCommand(input);
32
32
  * const response = await client.send(command);
33
+ * // { // GetPoliciesStatsResponse
34
+ * // AccessPolicyStats: { // AccessPolicyStats
35
+ * // DataPolicyCount: Number("long"),
36
+ * // },
37
+ * // SecurityPolicyStats: { // SecurityPolicyStats
38
+ * // EncryptionPolicyCount: Number("long"),
39
+ * // NetworkPolicyCount: Number("long"),
40
+ * // },
41
+ * // SecurityConfigStats: { // SecurityConfigStats
42
+ * // SamlConfigCount: Number("long"),
43
+ * // },
44
+ * // TotalPolicyCount: Number("long"),
45
+ * // };
46
+ *
33
47
  * ```
34
48
  *
35
49
  * @param GetPoliciesStatsCommandInput - {@link GetPoliciesStatsCommandInput}
@@ -41,6 +55,8 @@ export interface GetPoliciesStatsCommandOutput extends GetPoliciesStatsResponse,
41
55
  * @throws {@link InternalServerException} (server fault)
42
56
  * <p>Thrown when an error internal to the service occurs while processing a request.</p>
43
57
  *
58
+ * @throws {@link OpenSearchServerlessServiceException}
59
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
44
60
  *
45
61
  */
46
62
  export declare class GetPoliciesStatsCommand extends $Command<GetPoliciesStatsCommandInput, GetPoliciesStatsCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -33,6 +33,23 @@ export interface GetSecurityConfigCommandOutput extends GetSecurityConfigRespons
33
33
  * };
34
34
  * const command = new GetSecurityConfigCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // GetSecurityConfigResponse
37
+ * // securityConfigDetail: { // SecurityConfigDetail
38
+ * // id: "STRING_VALUE",
39
+ * // type: "STRING_VALUE",
40
+ * // configVersion: "STRING_VALUE",
41
+ * // description: "STRING_VALUE",
42
+ * // samlOptions: { // SamlConfigOptions
43
+ * // metadata: "STRING_VALUE", // required
44
+ * // userAttribute: "STRING_VALUE",
45
+ * // groupAttribute: "STRING_VALUE",
46
+ * // sessionTimeout: Number("int"),
47
+ * // },
48
+ * // createdDate: Number("long"),
49
+ * // lastModifiedDate: Number("long"),
50
+ * // },
51
+ * // };
52
+ *
36
53
  * ```
37
54
  *
38
55
  * @param GetSecurityConfigCommandInput - {@link GetSecurityConfigCommandInput}
@@ -51,6 +68,8 @@ export interface GetSecurityConfigCommandOutput extends GetSecurityConfigRespons
51
68
  * <p>Thrown when the HTTP request contains invalid input or is missing required
52
69
  * input.</p>
53
70
  *
71
+ * @throws {@link OpenSearchServerlessServiceException}
72
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
54
73
  *
55
74
  */
56
75
  export declare class GetSecurityConfigCommand extends $Command<GetSecurityConfigCommandInput, GetSecurityConfigCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -34,6 +34,18 @@ export interface GetSecurityPolicyCommandOutput extends GetSecurityPolicyRespons
34
34
  * };
35
35
  * const command = new GetSecurityPolicyCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // GetSecurityPolicyResponse
38
+ * // securityPolicyDetail: { // SecurityPolicyDetail
39
+ * // type: "STRING_VALUE",
40
+ * // name: "STRING_VALUE",
41
+ * // policyVersion: "STRING_VALUE",
42
+ * // description: "STRING_VALUE",
43
+ * // policy: "DOCUMENT_VALUE",
44
+ * // createdDate: Number("long"),
45
+ * // lastModifiedDate: Number("long"),
46
+ * // },
47
+ * // };
48
+ *
37
49
  * ```
38
50
  *
39
51
  * @param GetSecurityPolicyCommandInput - {@link GetSecurityPolicyCommandInput}
@@ -52,6 +64,8 @@ export interface GetSecurityPolicyCommandOutput extends GetSecurityPolicyRespons
52
64
  * <p>Thrown when the HTTP request contains invalid input or is missing required
53
65
  * input.</p>
54
66
  *
67
+ * @throws {@link OpenSearchServerlessServiceException}
68
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
55
69
  *
56
70
  */
57
71
  export declare class GetSecurityPolicyCommand extends $Command<GetSecurityPolicyCommandInput, GetSecurityPolicyCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -36,6 +36,20 @@ export interface ListAccessPoliciesCommandOutput extends ListAccessPoliciesRespo
36
36
  * };
37
37
  * const command = new ListAccessPoliciesCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListAccessPoliciesResponse
40
+ * // accessPolicySummaries: [ // AccessPolicySummaries
41
+ * // { // AccessPolicySummary
42
+ * // type: "STRING_VALUE",
43
+ * // name: "STRING_VALUE",
44
+ * // policyVersion: "STRING_VALUE",
45
+ * // description: "STRING_VALUE",
46
+ * // createdDate: Number("long"),
47
+ * // lastModifiedDate: Number("long"),
48
+ * // },
49
+ * // ],
50
+ * // nextToken: "STRING_VALUE",
51
+ * // };
52
+ *
39
53
  * ```
40
54
  *
41
55
  * @param ListAccessPoliciesCommandInput - {@link ListAccessPoliciesCommandInput}
@@ -51,6 +65,8 @@ export interface ListAccessPoliciesCommandOutput extends ListAccessPoliciesRespo
51
65
  * <p>Thrown when the HTTP request contains invalid input or is missing required
52
66
  * input.</p>
53
67
  *
68
+ * @throws {@link OpenSearchServerlessServiceException}
69
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
54
70
  *
55
71
  */
56
72
  export declare class ListAccessPoliciesCommand extends $Command<ListAccessPoliciesCommandInput, ListAccessPoliciesCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -41,6 +41,18 @@ export interface ListCollectionsCommandOutput extends ListCollectionsResponse, _
41
41
  * };
42
42
  * const command = new ListCollectionsCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // { // ListCollectionsResponse
45
+ * // collectionSummaries: [ // CollectionSummaries
46
+ * // { // CollectionSummary
47
+ * // id: "STRING_VALUE",
48
+ * // name: "STRING_VALUE",
49
+ * // status: "STRING_VALUE",
50
+ * // arn: "STRING_VALUE",
51
+ * // },
52
+ * // ],
53
+ * // nextToken: "STRING_VALUE",
54
+ * // };
55
+ *
44
56
  * ```
45
57
  *
46
58
  * @param ListCollectionsCommandInput - {@link ListCollectionsCommandInput}
@@ -56,6 +68,8 @@ export interface ListCollectionsCommandOutput extends ListCollectionsResponse, _
56
68
  * <p>Thrown when the HTTP request contains invalid input or is missing required
57
69
  * input.</p>
58
70
  *
71
+ * @throws {@link OpenSearchServerlessServiceException}
72
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
59
73
  *
60
74
  */
61
75
  export declare class ListCollectionsCommand extends $Command<ListCollectionsCommandInput, ListCollectionsCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -35,6 +35,20 @@ export interface ListSecurityConfigsCommandOutput extends ListSecurityConfigsRes
35
35
  * };
36
36
  * const command = new ListSecurityConfigsCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ListSecurityConfigsResponse
39
+ * // securityConfigSummaries: [ // SecurityConfigSummaries
40
+ * // { // SecurityConfigSummary
41
+ * // id: "STRING_VALUE",
42
+ * // type: "STRING_VALUE",
43
+ * // configVersion: "STRING_VALUE",
44
+ * // description: "STRING_VALUE",
45
+ * // createdDate: Number("long"),
46
+ * // lastModifiedDate: Number("long"),
47
+ * // },
48
+ * // ],
49
+ * // nextToken: "STRING_VALUE",
50
+ * // };
51
+ *
38
52
  * ```
39
53
  *
40
54
  * @param ListSecurityConfigsCommandInput - {@link ListSecurityConfigsCommandInput}
@@ -50,6 +64,8 @@ export interface ListSecurityConfigsCommandOutput extends ListSecurityConfigsRes
50
64
  * <p>Thrown when the HTTP request contains invalid input or is missing required
51
65
  * input.</p>
52
66
  *
67
+ * @throws {@link OpenSearchServerlessServiceException}
68
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
53
69
  *
54
70
  */
55
71
  export declare class ListSecurityConfigsCommand extends $Command<ListSecurityConfigsCommandInput, ListSecurityConfigsCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -36,6 +36,20 @@ export interface ListSecurityPoliciesCommandOutput extends ListSecurityPoliciesR
36
36
  * };
37
37
  * const command = new ListSecurityPoliciesCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListSecurityPoliciesResponse
40
+ * // securityPolicySummaries: [ // SecurityPolicySummaries
41
+ * // { // SecurityPolicySummary
42
+ * // type: "STRING_VALUE",
43
+ * // name: "STRING_VALUE",
44
+ * // policyVersion: "STRING_VALUE",
45
+ * // description: "STRING_VALUE",
46
+ * // createdDate: Number("long"),
47
+ * // lastModifiedDate: Number("long"),
48
+ * // },
49
+ * // ],
50
+ * // nextToken: "STRING_VALUE",
51
+ * // };
52
+ *
39
53
  * ```
40
54
  *
41
55
  * @param ListSecurityPoliciesCommandInput - {@link ListSecurityPoliciesCommandInput}
@@ -51,6 +65,8 @@ export interface ListSecurityPoliciesCommandOutput extends ListSecurityPoliciesR
51
65
  * <p>Thrown when the HTTP request contains invalid input or is missing required
52
66
  * input.</p>
53
67
  *
68
+ * @throws {@link OpenSearchServerlessServiceException}
69
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
54
70
  *
55
71
  */
56
72
  export declare class ListSecurityPoliciesCommand extends $Command<ListSecurityPoliciesCommandInput, ListSecurityPoliciesCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -31,6 +31,15 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // ListTagsForResourceResponse
35
+ * // tags: [ // Tags
36
+ * // { // Tag
37
+ * // key: "STRING_VALUE", // required
38
+ * // value: "STRING_VALUE", // required
39
+ * // },
40
+ * // ],
41
+ * // };
42
+ *
34
43
  * ```
35
44
  *
36
45
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -49,6 +58,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
49
58
  * <p>Thrown when the HTTP request contains invalid input or is missing required
50
59
  * input.</p>
51
60
  *
61
+ * @throws {@link OpenSearchServerlessServiceException}
62
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
52
63
  *
53
64
  */
54
65
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -37,6 +37,17 @@ export interface ListVpcEndpointsCommandOutput extends ListVpcEndpointsResponse,
37
37
  * };
38
38
  * const command = new ListVpcEndpointsCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // ListVpcEndpointsResponse
41
+ * // vpcEndpointSummaries: [ // VpcEndpointSummaries
42
+ * // { // VpcEndpointSummary
43
+ * // id: "STRING_VALUE",
44
+ * // name: "STRING_VALUE",
45
+ * // status: "STRING_VALUE",
46
+ * // },
47
+ * // ],
48
+ * // nextToken: "STRING_VALUE",
49
+ * // };
50
+ *
40
51
  * ```
41
52
  *
42
53
  * @param ListVpcEndpointsCommandInput - {@link ListVpcEndpointsCommandInput}
@@ -52,6 +63,8 @@ export interface ListVpcEndpointsCommandOutput extends ListVpcEndpointsResponse,
52
63
  * <p>Thrown when the HTTP request contains invalid input or is missing required
53
64
  * input.</p>
54
65
  *
66
+ * @throws {@link OpenSearchServerlessServiceException}
67
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
55
68
  *
56
69
  */
57
70
  export declare class ListVpcEndpointsCommand extends $Command<ListVpcEndpointsCommandInput, ListVpcEndpointsCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -37,6 +37,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
37
37
  * };
38
38
  * const command = new TagResourceCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // {};
41
+ *
40
42
  * ```
41
43
  *
42
44
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -63,6 +65,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
63
65
  * <p>Thrown when the HTTP request contains invalid input or is missing required
64
66
  * input.</p>
65
67
  *
68
+ * @throws {@link OpenSearchServerlessServiceException}
69
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
66
70
  *
67
71
  */
68
72
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
34
34
  * };
35
35
  * const command = new UntagResourceCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
@@ -57,6 +59,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
57
59
  * <p>Thrown when the HTTP request contains invalid input or is missing required
58
60
  * input.</p>
59
61
  *
62
+ * @throws {@link OpenSearchServerlessServiceException}
63
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
60
64
  *
61
65
  */
62
66
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -37,6 +37,18 @@ export interface UpdateAccessPolicyCommandOutput extends UpdateAccessPolicyRespo
37
37
  * };
38
38
  * const command = new UpdateAccessPolicyCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // UpdateAccessPolicyResponse
41
+ * // accessPolicyDetail: { // AccessPolicyDetail
42
+ * // type: "STRING_VALUE",
43
+ * // name: "STRING_VALUE",
44
+ * // policyVersion: "STRING_VALUE",
45
+ * // description: "STRING_VALUE",
46
+ * // policy: "DOCUMENT_VALUE",
47
+ * // createdDate: Number("long"),
48
+ * // lastModifiedDate: Number("long"),
49
+ * // },
50
+ * // };
51
+ *
40
52
  * ```
41
53
  *
42
54
  * @param UpdateAccessPolicyCommandInput - {@link UpdateAccessPolicyCommandInput}
@@ -60,6 +72,8 @@ export interface UpdateAccessPolicyCommandOutput extends UpdateAccessPolicyRespo
60
72
  * <p>Thrown when the HTTP request contains invalid input or is missing required
61
73
  * input.</p>
62
74
  *
75
+ * @throws {@link OpenSearchServerlessServiceException}
76
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
63
77
  *
64
78
  */
65
79
  export declare class UpdateAccessPolicyCommand extends $Command<UpdateAccessPolicyCommandInput, UpdateAccessPolicyCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -35,6 +35,15 @@ export interface UpdateAccountSettingsCommandOutput extends UpdateAccountSetting
35
35
  * };
36
36
  * const command = new UpdateAccountSettingsCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // UpdateAccountSettingsResponse
39
+ * // accountSettingsDetail: { // AccountSettingsDetail
40
+ * // capacityLimits: { // CapacityLimits
41
+ * // maxIndexingCapacityInOCU: Number("int"),
42
+ * // maxSearchCapacityInOCU: Number("int"),
43
+ * // },
44
+ * // },
45
+ * // };
46
+ *
38
47
  * ```
39
48
  *
40
49
  * @param UpdateAccountSettingsCommandInput - {@link UpdateAccountSettingsCommandInput}
@@ -50,6 +59,8 @@ export interface UpdateAccountSettingsCommandOutput extends UpdateAccountSetting
50
59
  * <p>Thrown when the HTTP request contains invalid input or is missing required
51
60
  * input.</p>
52
61
  *
62
+ * @throws {@link OpenSearchServerlessServiceException}
63
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
53
64
  *
54
65
  */
55
66
  export declare class UpdateAccountSettingsCommand extends $Command<UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -33,6 +33,19 @@ export interface UpdateCollectionCommandOutput extends UpdateCollectionResponse,
33
33
  * };
34
34
  * const command = new UpdateCollectionCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // UpdateCollectionResponse
37
+ * // updateCollectionDetail: { // UpdateCollectionDetail
38
+ * // id: "STRING_VALUE",
39
+ * // name: "STRING_VALUE",
40
+ * // status: "STRING_VALUE",
41
+ * // type: "STRING_VALUE",
42
+ * // description: "STRING_VALUE",
43
+ * // arn: "STRING_VALUE",
44
+ * // createdDate: Number("long"),
45
+ * // lastModifiedDate: Number("long"),
46
+ * // },
47
+ * // };
48
+ *
36
49
  * ```
37
50
  *
38
51
  * @param UpdateCollectionCommandInput - {@link UpdateCollectionCommandInput}
@@ -53,6 +66,8 @@ export interface UpdateCollectionCommandOutput extends UpdateCollectionResponse,
53
66
  * <p>Thrown when the HTTP request contains invalid input or is missing required
54
67
  * input.</p>
55
68
  *
69
+ * @throws {@link OpenSearchServerlessServiceException}
70
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
56
71
  *
57
72
  */
58
73
  export declare class UpdateCollectionCommand extends $Command<UpdateCollectionCommandInput, UpdateCollectionCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -42,6 +42,23 @@ export interface UpdateSecurityConfigCommandOutput extends UpdateSecurityConfigR
42
42
  * };
43
43
  * const command = new UpdateSecurityConfigCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // UpdateSecurityConfigResponse
46
+ * // securityConfigDetail: { // SecurityConfigDetail
47
+ * // id: "STRING_VALUE",
48
+ * // type: "STRING_VALUE",
49
+ * // configVersion: "STRING_VALUE",
50
+ * // description: "STRING_VALUE",
51
+ * // samlOptions: { // SamlConfigOptions
52
+ * // metadata: "STRING_VALUE", // required
53
+ * // userAttribute: "STRING_VALUE",
54
+ * // groupAttribute: "STRING_VALUE",
55
+ * // sessionTimeout: Number("int"),
56
+ * // },
57
+ * // createdDate: Number("long"),
58
+ * // lastModifiedDate: Number("long"),
59
+ * // },
60
+ * // };
61
+ *
45
62
  * ```
46
63
  *
47
64
  * @param UpdateSecurityConfigCommandInput - {@link UpdateSecurityConfigCommandInput}
@@ -65,6 +82,8 @@ export interface UpdateSecurityConfigCommandOutput extends UpdateSecurityConfigR
65
82
  * <p>Thrown when the HTTP request contains invalid input or is missing required
66
83
  * input.</p>
67
84
  *
85
+ * @throws {@link OpenSearchServerlessServiceException}
86
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
68
87
  *
69
88
  */
70
89
  export declare class UpdateSecurityConfigCommand extends $Command<UpdateSecurityConfigCommandInput, UpdateSecurityConfigCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -38,6 +38,18 @@ export interface UpdateSecurityPolicyCommandOutput extends UpdateSecurityPolicyR
38
38
  * };
39
39
  * const command = new UpdateSecurityPolicyCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // UpdateSecurityPolicyResponse
42
+ * // securityPolicyDetail: { // SecurityPolicyDetail
43
+ * // type: "STRING_VALUE",
44
+ * // name: "STRING_VALUE",
45
+ * // policyVersion: "STRING_VALUE",
46
+ * // description: "STRING_VALUE",
47
+ * // policy: "DOCUMENT_VALUE",
48
+ * // createdDate: Number("long"),
49
+ * // lastModifiedDate: Number("long"),
50
+ * // },
51
+ * // };
52
+ *
41
53
  * ```
42
54
  *
43
55
  * @param UpdateSecurityPolicyCommandInput - {@link UpdateSecurityPolicyCommandInput}
@@ -64,6 +76,8 @@ export interface UpdateSecurityPolicyCommandOutput extends UpdateSecurityPolicyR
64
76
  * <p>Thrown when the HTTP request contains invalid input or is missing required
65
77
  * input.</p>
66
78
  *
79
+ * @throws {@link OpenSearchServerlessServiceException}
80
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
67
81
  *
68
82
  */
69
83
  export declare class UpdateSecurityPolicyCommand extends $Command<UpdateSecurityPolicyCommandInput, UpdateSecurityPolicyCommandOutput, OpenSearchServerlessClientResolvedConfig> {
@@ -45,6 +45,21 @@ export interface UpdateVpcEndpointCommandOutput extends UpdateVpcEndpointRespons
45
45
  * };
46
46
  * const command = new UpdateVpcEndpointCommand(input);
47
47
  * const response = await client.send(command);
48
+ * // { // UpdateVpcEndpointResponse
49
+ * // UpdateVpcEndpointDetail: { // UpdateVpcEndpointDetail
50
+ * // id: "STRING_VALUE",
51
+ * // name: "STRING_VALUE",
52
+ * // status: "STRING_VALUE",
53
+ * // subnetIds: [ // SubnetIds
54
+ * // "STRING_VALUE",
55
+ * // ],
56
+ * // securityGroupIds: [ // SecurityGroupIds
57
+ * // "STRING_VALUE",
58
+ * // ],
59
+ * // lastModifiedDate: Number("long"),
60
+ * // },
61
+ * // };
62
+ *
48
63
  * ```
49
64
  *
50
65
  * @param UpdateVpcEndpointCommandInput - {@link UpdateVpcEndpointCommandInput}
@@ -65,6 +80,8 @@ export interface UpdateVpcEndpointCommandOutput extends UpdateVpcEndpointRespons
65
80
  * <p>Thrown when the HTTP request contains invalid input or is missing required
66
81
  * input.</p>
67
82
  *
83
+ * @throws {@link OpenSearchServerlessServiceException}
84
+ * <p>Base exception class for all service exceptions from OpenSearchServerless service.</p>
68
85
  *
69
86
  */
70
87
  export declare class UpdateVpcEndpointCommand extends $Command<UpdateVpcEndpointCommandInput, UpdateVpcEndpointCommandOutput, OpenSearchServerlessClientResolvedConfig> {
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.321.1",
4
+ "version": "3.326.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,33 +21,33 @@
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.321.1",
24
+ "@aws-sdk/client-sts": "3.326.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.321.1",
26
+ "@aws-sdk/credential-provider-node": "3.326.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",
30
- "@aws-sdk/middleware-content-length": "3.310.0",
31
- "@aws-sdk/middleware-endpoint": "3.310.0",
32
- "@aws-sdk/middleware-host-header": "3.310.0",
33
- "@aws-sdk/middleware-logger": "3.310.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.310.0",
35
- "@aws-sdk/middleware-retry": "3.310.0",
36
- "@aws-sdk/middleware-serde": "3.310.0",
37
- "@aws-sdk/middleware-signing": "3.310.0",
38
- "@aws-sdk/middleware-stack": "3.310.0",
39
- "@aws-sdk/middleware-user-agent": "3.319.0",
30
+ "@aws-sdk/middleware-content-length": "3.325.0",
31
+ "@aws-sdk/middleware-endpoint": "3.325.0",
32
+ "@aws-sdk/middleware-host-header": "3.325.0",
33
+ "@aws-sdk/middleware-logger": "3.325.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.325.0",
35
+ "@aws-sdk/middleware-retry": "3.325.0",
36
+ "@aws-sdk/middleware-serde": "3.325.0",
37
+ "@aws-sdk/middleware-signing": "3.325.0",
38
+ "@aws-sdk/middleware-stack": "3.325.0",
39
+ "@aws-sdk/middleware-user-agent": "3.325.0",
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.321.1",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
43
- "@aws-sdk/smithy-client": "3.316.0",
43
+ "@aws-sdk/smithy-client": "3.325.0",
44
44
  "@aws-sdk/types": "3.310.0",
45
45
  "@aws-sdk/url-parser": "3.310.0",
46
46
  "@aws-sdk/util-base64": "3.310.0",
47
47
  "@aws-sdk/util-body-length-browser": "3.310.0",
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.316.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.316.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.325.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.325.0",
51
51
  "@aws-sdk/util-endpoints": "3.319.0",
52
52
  "@aws-sdk/util-retry": "3.310.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",