@aws-sdk/client-opensearchserverless 3.296.0 → 3.297.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 (42) hide show
  1. package/dist-types/OpenSearchServerless.d.ts +33 -1
  2. package/dist-types/OpenSearchServerlessClient.d.ts +24 -4
  3. package/dist-types/commands/BatchGetCollectionCommand.d.ts +16 -0
  4. package/dist-types/commands/BatchGetVpcEndpointCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateAccessPolicyCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateCollectionCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateSecurityConfigCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateSecurityPolicyCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateVpcEndpointCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteAccessPolicyCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteCollectionCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteSecurityConfigCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteSecurityPolicyCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteVpcEndpointCommand.d.ts +16 -0
  15. package/dist-types/commands/GetAccessPolicyCommand.d.ts +16 -0
  16. package/dist-types/commands/GetAccountSettingsCommand.d.ts +16 -0
  17. package/dist-types/commands/GetPoliciesStatsCommand.d.ts +16 -0
  18. package/dist-types/commands/GetSecurityConfigCommand.d.ts +16 -0
  19. package/dist-types/commands/GetSecurityPolicyCommand.d.ts +16 -0
  20. package/dist-types/commands/ListAccessPoliciesCommand.d.ts +16 -0
  21. package/dist-types/commands/ListCollectionsCommand.d.ts +17 -1
  22. package/dist-types/commands/ListSecurityConfigsCommand.d.ts +16 -0
  23. package/dist-types/commands/ListSecurityPoliciesCommand.d.ts +16 -0
  24. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  25. package/dist-types/commands/ListVpcEndpointsCommand.d.ts +16 -0
  26. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  27. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  28. package/dist-types/commands/UpdateAccessPolicyCommand.d.ts +16 -0
  29. package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +16 -0
  30. package/dist-types/commands/UpdateCollectionCommand.d.ts +16 -0
  31. package/dist-types/commands/UpdateSecurityConfigCommand.d.ts +16 -0
  32. package/dist-types/commands/UpdateSecurityPolicyCommand.d.ts +16 -0
  33. package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +16 -0
  34. package/dist-types/models/OpenSearchServerlessServiceException.d.ts +2 -0
  35. package/dist-types/models/models_0.d.ts +235 -0
  36. package/dist-types/pagination/Interfaces.d.ts +3 -0
  37. package/dist-types/pagination/ListAccessPoliciesPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListCollectionsPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListSecurityConfigsPaginator.d.ts +3 -0
  40. package/dist-types/pagination/ListSecurityPoliciesPaginator.d.ts +3 -0
  41. package/dist-types/pagination/ListVpcEndpointsPaginator.d.ts +3 -0
  42. package/package.json +3 -3
@@ -4,20 +4,25 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListCollectionsRequest, ListCollectionsResponse } from "../models/models_0";
5
5
  import { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListCollectionsCommand}.
8
10
  */
9
11
  export interface ListCollectionsCommandInput extends ListCollectionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListCollectionsCommand}.
13
17
  */
14
18
  export interface ListCollectionsCommandOutput extends ListCollectionsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all OpenSearch Serverless collections. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-manage.html">Creating and
18
23
  * managing Amazon OpenSearch Serverless collections</a>.</p>
19
24
  * <note>
20
- * <p>Make sure to include an empty request body {} if you don't include any collection
25
+ * <p>Make sure to include an empty request body \{\} if you don't include any collection
21
26
  * filters in the request.</p>
22
27
  * </note>
23
28
  * @example
@@ -30,6 +35,8 @@ export interface ListCollectionsCommandOutput extends ListCollectionsResponse, _
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param ListCollectionsCommandInput - {@link ListCollectionsCommandInput}
39
+ * @returns {@link ListCollectionsCommandOutput}
33
40
  * @see {@link ListCollectionsCommandInput} for command's `input` shape.
34
41
  * @see {@link ListCollectionsCommandOutput} for command's `response` shape.
35
42
  * @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListCollectionsCommandOutput extends ListCollectionsResponse, _
46
53
  export declare class ListCollectionsCommand extends $Command<ListCollectionsCommandInput, ListCollectionsCommandOutput, OpenSearchServerlessClientResolvedConfig> {
47
54
  readonly input: ListCollectionsCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListCollectionsCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OpenSearchServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCollectionsCommandInput, ListCollectionsCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListSecurityConfigsRequest, ListSecurityConfigsResponse } from "../models/models_0";
5
5
  import { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListSecurityConfigsCommand}.
8
10
  */
9
11
  export interface ListSecurityConfigsCommandInput extends ListSecurityConfigsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListSecurityConfigsCommand}.
13
17
  */
14
18
  export interface ListSecurityConfigsCommandOutput extends ListSecurityConfigsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns information about configured OpenSearch Serverless security configurations. For more information, see
18
23
  * <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-saml.html">SAML
19
24
  * authentication for Amazon OpenSearch Serverless</a>.</p>
@@ -27,6 +32,8 @@ export interface ListSecurityConfigsCommandOutput extends ListSecurityConfigsRes
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param ListSecurityConfigsCommandInput - {@link ListSecurityConfigsCommandInput}
36
+ * @returns {@link ListSecurityConfigsCommandOutput}
30
37
  * @see {@link ListSecurityConfigsCommandInput} for command's `input` shape.
31
38
  * @see {@link ListSecurityConfigsCommandOutput} for command's `response` shape.
32
39
  * @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
@@ -43,11 +50,20 @@ export interface ListSecurityConfigsCommandOutput extends ListSecurityConfigsRes
43
50
  export declare class ListSecurityConfigsCommand extends $Command<ListSecurityConfigsCommandInput, ListSecurityConfigsCommandOutput, OpenSearchServerlessClientResolvedConfig> {
44
51
  readonly input: ListSecurityConfigsCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: ListSecurityConfigsCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OpenSearchServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSecurityConfigsCommandInput, ListSecurityConfigsCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListSecurityPoliciesRequest, ListSecurityPoliciesResponse } from "../models/models_0";
5
5
  import { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListSecurityPoliciesCommand}.
8
10
  */
9
11
  export interface ListSecurityPoliciesCommandInput extends ListSecurityPoliciesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListSecurityPoliciesCommand}.
13
17
  */
14
18
  export interface ListSecurityPoliciesCommandOutput extends ListSecurityPoliciesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns information about configured OpenSearch Serverless security policies.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListSecurityPoliciesCommandOutput extends ListSecurityPoliciesR
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListSecurityPoliciesCommandInput - {@link ListSecurityPoliciesCommandInput}
34
+ * @returns {@link ListSecurityPoliciesCommandOutput}
28
35
  * @see {@link ListSecurityPoliciesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListSecurityPoliciesCommandOutput} for command's `response` shape.
30
37
  * @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
@@ -41,11 +48,20 @@ export interface ListSecurityPoliciesCommandOutput extends ListSecurityPoliciesR
41
48
  export declare class ListSecurityPoliciesCommand extends $Command<ListSecurityPoliciesCommandInput, ListSecurityPoliciesCommandOutput, OpenSearchServerlessClientResolvedConfig> {
42
49
  readonly input: ListSecurityPoliciesCommandInput;
43
50
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
51
+ /**
52
+ * @public
53
+ */
44
54
  constructor(input: ListSecurityPoliciesCommandInput);
45
55
  /**
46
56
  * @internal
47
57
  */
48
58
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OpenSearchServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSecurityPoliciesCommandInput, ListSecurityPoliciesCommandOutput>;
59
+ /**
60
+ * @internal
61
+ */
49
62
  private serialize;
63
+ /**
64
+ * @internal
65
+ */
50
66
  private deserialize;
51
67
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
5
  import { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the tags for an OpenSearch Serverless resource. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/tag-collection.html">Tagging Amazon OpenSearch Serverless collections</a>.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
@@ -44,11 +51,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
44
51
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, OpenSearchServerlessClientResolvedConfig> {
45
52
  readonly input: ListTagsForResourceCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: ListTagsForResourceCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OpenSearchServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListVpcEndpointsRequest, ListVpcEndpointsResponse } from "../models/models_0";
5
5
  import { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListVpcEndpointsCommand}.
8
10
  */
9
11
  export interface ListVpcEndpointsCommandInput extends ListVpcEndpointsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListVpcEndpointsCommand}.
13
17
  */
14
18
  export interface ListVpcEndpointsCommandOutput extends ListVpcEndpointsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the OpenSearch Serverless-managed interface VPC endpoints associated with the current
18
23
  * account. For more information, see
19
24
  * <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-vpc.html">Access Amazon OpenSearch Serverless using an interface endpoint</a>.</p>
@@ -27,6 +32,8 @@ export interface ListVpcEndpointsCommandOutput extends ListVpcEndpointsResponse,
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param ListVpcEndpointsCommandInput - {@link ListVpcEndpointsCommandInput}
36
+ * @returns {@link ListVpcEndpointsCommandOutput}
30
37
  * @see {@link ListVpcEndpointsCommandInput} for command's `input` shape.
31
38
  * @see {@link ListVpcEndpointsCommandOutput} for command's `response` shape.
32
39
  * @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
@@ -43,11 +50,20 @@ export interface ListVpcEndpointsCommandOutput extends ListVpcEndpointsResponse,
43
50
  export declare class ListVpcEndpointsCommand extends $Command<ListVpcEndpointsCommandInput, ListVpcEndpointsCommandOutput, OpenSearchServerlessClientResolvedConfig> {
44
51
  readonly input: ListVpcEndpointsCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: ListVpcEndpointsCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OpenSearchServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListVpcEndpointsCommandInput, ListVpcEndpointsCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
5
  import { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Associates tags with an OpenSearch Serverless resource. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/tag-collection.html">Tagging Amazon OpenSearch Serverless collections</a>.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
34
+ * @returns {@link TagResourceCommandOutput}
28
35
  * @see {@link TagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
@@ -49,11 +56,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
49
56
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, OpenSearchServerlessClientResolvedConfig> {
50
57
  readonly input: TagResourceCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: TagResourceCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OpenSearchServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
5
  import { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Removes a tag or set of tags from an OpenSearch Serverless resource. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/tag-collection.html">Tagging Amazon OpenSearch Serverless collections</a>.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
34
+ * @returns {@link UntagResourceCommandOutput}
28
35
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
@@ -49,11 +56,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
49
56
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, OpenSearchServerlessClientResolvedConfig> {
50
57
  readonly input: UntagResourceCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: UntagResourceCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OpenSearchServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateAccessPolicyRequest, UpdateAccessPolicyResponse } from "../models/models_0";
5
5
  import { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateAccessPolicyCommand}.
8
10
  */
9
11
  export interface UpdateAccessPolicyCommandInput extends UpdateAccessPolicyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateAccessPolicyCommand}.
13
17
  */
14
18
  export interface UpdateAccessPolicyCommandOutput extends UpdateAccessPolicyResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates an OpenSearch Serverless access policy. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-data-access.html">Data
18
23
  * access control for Amazon OpenSearch Serverless</a>.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface UpdateAccessPolicyCommandOutput extends UpdateAccessPolicyRespo
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param UpdateAccessPolicyCommandInput - {@link UpdateAccessPolicyCommandInput}
35
+ * @returns {@link UpdateAccessPolicyCommandOutput}
29
36
  * @see {@link UpdateAccessPolicyCommandInput} for command's `input` shape.
30
37
  * @see {@link UpdateAccessPolicyCommandOutput} for command's `response` shape.
31
38
  * @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
@@ -50,11 +57,20 @@ export interface UpdateAccessPolicyCommandOutput extends UpdateAccessPolicyRespo
50
57
  export declare class UpdateAccessPolicyCommand extends $Command<UpdateAccessPolicyCommandInput, UpdateAccessPolicyCommandOutput, OpenSearchServerlessClientResolvedConfig> {
51
58
  readonly input: UpdateAccessPolicyCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: UpdateAccessPolicyCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OpenSearchServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAccessPolicyCommandInput, UpdateAccessPolicyCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateAccountSettingsRequest, UpdateAccountSettingsResponse } from "../models/models_0";
5
5
  import { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateAccountSettingsCommand}.
8
10
  */
9
11
  export interface UpdateAccountSettingsCommandInput extends UpdateAccountSettingsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateAccountSettingsCommand}.
13
17
  */
14
18
  export interface UpdateAccountSettingsCommandOutput extends UpdateAccountSettingsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Update the OpenSearch Serverless settings for the current Amazon Web Services account. For more
18
23
  * information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-overview.html#serverless-scaling">Autoscaling</a>.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface UpdateAccountSettingsCommandOutput extends UpdateAccountSetting
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param UpdateAccountSettingsCommandInput - {@link UpdateAccountSettingsCommandInput}
35
+ * @returns {@link UpdateAccountSettingsCommandOutput}
29
36
  * @see {@link UpdateAccountSettingsCommandInput} for command's `input` shape.
30
37
  * @see {@link UpdateAccountSettingsCommandOutput} for command's `response` shape.
31
38
  * @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
@@ -42,11 +49,20 @@ export interface UpdateAccountSettingsCommandOutput extends UpdateAccountSetting
42
49
  export declare class UpdateAccountSettingsCommand extends $Command<UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput, OpenSearchServerlessClientResolvedConfig> {
43
50
  readonly input: UpdateAccountSettingsCommandInput;
44
51
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
52
+ /**
53
+ * @public
54
+ */
45
55
  constructor(input: UpdateAccountSettingsCommandInput);
46
56
  /**
47
57
  * @internal
48
58
  */
49
59
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OpenSearchServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAccountSettingsCommandInput, UpdateAccountSettingsCommandOutput>;
60
+ /**
61
+ * @internal
62
+ */
50
63
  private serialize;
64
+ /**
65
+ * @internal
66
+ */
51
67
  private deserialize;
52
68
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateCollectionRequest, UpdateCollectionResponse } from "../models/models_0";
5
5
  import { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateCollectionCommand}.
8
10
  */
9
11
  export interface UpdateCollectionCommandInput extends UpdateCollectionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateCollectionCommand}.
13
17
  */
14
18
  export interface UpdateCollectionCommandOutput extends UpdateCollectionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates an OpenSearch Serverless collection.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface UpdateCollectionCommandOutput extends UpdateCollectionResponse,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UpdateCollectionCommandInput - {@link UpdateCollectionCommandInput}
34
+ * @returns {@link UpdateCollectionCommandOutput}
28
35
  * @see {@link UpdateCollectionCommandInput} for command's `input` shape.
29
36
  * @see {@link UpdateCollectionCommandOutput} for command's `response` shape.
30
37
  * @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
@@ -46,11 +53,20 @@ export interface UpdateCollectionCommandOutput extends UpdateCollectionResponse,
46
53
  export declare class UpdateCollectionCommand extends $Command<UpdateCollectionCommandInput, UpdateCollectionCommandOutput, OpenSearchServerlessClientResolvedConfig> {
47
54
  readonly input: UpdateCollectionCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: UpdateCollectionCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OpenSearchServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateCollectionCommandInput, UpdateCollectionCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateSecurityConfigRequest, UpdateSecurityConfigResponse } from "../models/models_0";
5
5
  import { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateSecurityConfigCommand}.
8
10
  */
9
11
  export interface UpdateSecurityConfigCommandInput extends UpdateSecurityConfigRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateSecurityConfigCommand}.
13
17
  */
14
18
  export interface UpdateSecurityConfigCommandOutput extends UpdateSecurityConfigResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates a security configuration for OpenSearch Serverless. For more information, see
18
23
  * <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-saml.html">SAML
19
24
  * authentication for Amazon OpenSearch Serverless</a>.</p>
@@ -27,6 +32,8 @@ export interface UpdateSecurityConfigCommandOutput extends UpdateSecurityConfigR
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param UpdateSecurityConfigCommandInput - {@link UpdateSecurityConfigCommandInput}
36
+ * @returns {@link UpdateSecurityConfigCommandOutput}
30
37
  * @see {@link UpdateSecurityConfigCommandInput} for command's `input` shape.
31
38
  * @see {@link UpdateSecurityConfigCommandOutput} for command's `response` shape.
32
39
  * @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
@@ -51,11 +58,20 @@ export interface UpdateSecurityConfigCommandOutput extends UpdateSecurityConfigR
51
58
  export declare class UpdateSecurityConfigCommand extends $Command<UpdateSecurityConfigCommandInput, UpdateSecurityConfigCommandOutput, OpenSearchServerlessClientResolvedConfig> {
52
59
  readonly input: UpdateSecurityConfigCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: UpdateSecurityConfigCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OpenSearchServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSecurityConfigCommandInput, UpdateSecurityConfigCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
59
72
  private serialize;
73
+ /**
74
+ * @internal
75
+ */
60
76
  private deserialize;
61
77
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateSecurityPolicyRequest, UpdateSecurityPolicyResponse } from "../models/models_0";
5
5
  import { OpenSearchServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateSecurityPolicyCommand}.
8
10
  */
9
11
  export interface UpdateSecurityPolicyCommandInput extends UpdateSecurityPolicyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateSecurityPolicyCommand}.
13
17
  */
14
18
  export interface UpdateSecurityPolicyCommandOutput extends UpdateSecurityPolicyResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates an OpenSearch Serverless security policy. For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-network.html">Network access
18
23
  * for Amazon OpenSearch Serverless</a> and <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-encryption.html">Encryption at
19
24
  * rest for Amazon OpenSearch Serverless</a>.</p>
@@ -27,6 +32,8 @@ export interface UpdateSecurityPolicyCommandOutput extends UpdateSecurityPolicyR
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param UpdateSecurityPolicyCommandInput - {@link UpdateSecurityPolicyCommandInput}
36
+ * @returns {@link UpdateSecurityPolicyCommandOutput}
30
37
  * @see {@link UpdateSecurityPolicyCommandInput} for command's `input` shape.
31
38
  * @see {@link UpdateSecurityPolicyCommandOutput} for command's `response` shape.
32
39
  * @see {@link OpenSearchServerlessClientResolvedConfig | config} for OpenSearchServerlessClient's `config` shape.
@@ -51,11 +58,20 @@ export interface UpdateSecurityPolicyCommandOutput extends UpdateSecurityPolicyR
51
58
  export declare class UpdateSecurityPolicyCommand extends $Command<UpdateSecurityPolicyCommandInput, UpdateSecurityPolicyCommandOutput, OpenSearchServerlessClientResolvedConfig> {
52
59
  readonly input: UpdateSecurityPolicyCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: UpdateSecurityPolicyCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: OpenSearchServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSecurityPolicyCommandInput, UpdateSecurityPolicyCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
59
72
  private serialize;
73
+ /**
74
+ * @internal
75
+ */
60
76
  private deserialize;
61
77
  }