@aws-sdk/client-opensearchserverless 3.220.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/LICENSE +201 -0
- package/README.md +214 -0
- package/dist-cjs/OpenSearchServerless.js +472 -0
- package/dist-cjs/OpenSearchServerlessClient.js +40 -0
- package/dist-cjs/commands/BatchGetCollectionCommand.js +46 -0
- package/dist-cjs/commands/BatchGetVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/CreateAccessPolicyCommand.js +46 -0
- package/dist-cjs/commands/CreateCollectionCommand.js +46 -0
- package/dist-cjs/commands/CreateSecurityConfigCommand.js +46 -0
- package/dist-cjs/commands/CreateSecurityPolicyCommand.js +46 -0
- package/dist-cjs/commands/CreateVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/DeleteAccessPolicyCommand.js +46 -0
- package/dist-cjs/commands/DeleteCollectionCommand.js +46 -0
- package/dist-cjs/commands/DeleteSecurityConfigCommand.js +46 -0
- package/dist-cjs/commands/DeleteSecurityPolicyCommand.js +46 -0
- package/dist-cjs/commands/DeleteVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/GetAccessPolicyCommand.js +46 -0
- package/dist-cjs/commands/GetAccountSettingsCommand.js +46 -0
- package/dist-cjs/commands/GetPoliciesStatsCommand.js +46 -0
- package/dist-cjs/commands/GetSecurityConfigCommand.js +46 -0
- package/dist-cjs/commands/GetSecurityPolicyCommand.js +46 -0
- package/dist-cjs/commands/ListAccessPoliciesCommand.js +46 -0
- package/dist-cjs/commands/ListCollectionsCommand.js +46 -0
- package/dist-cjs/commands/ListSecurityConfigsCommand.js +46 -0
- package/dist-cjs/commands/ListSecurityPoliciesCommand.js +46 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/dist-cjs/commands/ListVpcEndpointsCommand.js +46 -0
- package/dist-cjs/commands/TagResourceCommand.js +46 -0
- package/dist-cjs/commands/UntagResourceCommand.js +46 -0
- package/dist-cjs/commands/UpdateAccessPolicyCommand.js +46 -0
- package/dist-cjs/commands/UpdateAccountSettingsCommand.js +46 -0
- package/dist-cjs/commands/UpdateCollectionCommand.js +46 -0
- package/dist-cjs/commands/UpdateSecurityConfigCommand.js +46 -0
- package/dist-cjs/commands/UpdateSecurityPolicyCommand.js +46 -0
- package/dist-cjs/commands/UpdateVpcEndpointCommand.js +46 -0
- package/dist-cjs/commands/index.js +34 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +312 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/OpenSearchServerlessServiceException.js +11 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +445 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListAccessPoliciesPaginator.js +35 -0
- package/dist-cjs/pagination/ListCollectionsPaginator.js +35 -0
- package/dist-cjs/pagination/ListSecurityConfigsPaginator.js +35 -0
- package/dist-cjs/pagination/ListSecurityPoliciesPaginator.js +35 -0
- package/dist-cjs/pagination/ListVpcEndpointsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +9 -0
- package/dist-cjs/protocols/Aws_json1_0.js +2572 -0
- package/dist-cjs/runtimeConfig.browser.js +42 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +18 -0
- package/dist-es/OpenSearchServerless.js +468 -0
- package/dist-es/OpenSearchServerlessClient.js +36 -0
- package/dist-es/commands/BatchGetCollectionCommand.js +42 -0
- package/dist-es/commands/BatchGetVpcEndpointCommand.js +42 -0
- package/dist-es/commands/CreateAccessPolicyCommand.js +42 -0
- package/dist-es/commands/CreateCollectionCommand.js +42 -0
- package/dist-es/commands/CreateSecurityConfigCommand.js +42 -0
- package/dist-es/commands/CreateSecurityPolicyCommand.js +42 -0
- package/dist-es/commands/CreateVpcEndpointCommand.js +42 -0
- package/dist-es/commands/DeleteAccessPolicyCommand.js +42 -0
- package/dist-es/commands/DeleteCollectionCommand.js +42 -0
- package/dist-es/commands/DeleteSecurityConfigCommand.js +42 -0
- package/dist-es/commands/DeleteSecurityPolicyCommand.js +42 -0
- package/dist-es/commands/DeleteVpcEndpointCommand.js +42 -0
- package/dist-es/commands/GetAccessPolicyCommand.js +42 -0
- package/dist-es/commands/GetAccountSettingsCommand.js +42 -0
- package/dist-es/commands/GetPoliciesStatsCommand.js +42 -0
- package/dist-es/commands/GetSecurityConfigCommand.js +42 -0
- package/dist-es/commands/GetSecurityPolicyCommand.js +42 -0
- package/dist-es/commands/ListAccessPoliciesCommand.js +42 -0
- package/dist-es/commands/ListCollectionsCommand.js +42 -0
- package/dist-es/commands/ListSecurityConfigsCommand.js +42 -0
- package/dist-es/commands/ListSecurityPoliciesCommand.js +42 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/dist-es/commands/ListVpcEndpointsCommand.js +42 -0
- package/dist-es/commands/TagResourceCommand.js +42 -0
- package/dist-es/commands/UntagResourceCommand.js +42 -0
- package/dist-es/commands/UpdateAccessPolicyCommand.js +42 -0
- package/dist-es/commands/UpdateAccountSettingsCommand.js +42 -0
- package/dist-es/commands/UpdateCollectionCommand.js +42 -0
- package/dist-es/commands/UpdateSecurityConfigCommand.js +42 -0
- package/dist-es/commands/UpdateSecurityPolicyCommand.js +42 -0
- package/dist-es/commands/UpdateVpcEndpointCommand.js +42 -0
- package/dist-es/commands/index.js +31 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +309 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/OpenSearchServerlessServiceException.js +7 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +348 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAccessPoliciesPaginator.js +31 -0
- package/dist-es/pagination/ListCollectionsPaginator.js +31 -0
- package/dist-es/pagination/ListSecurityConfigsPaginator.js +31 -0
- package/dist-es/pagination/ListSecurityPoliciesPaginator.js +31 -0
- package/dist-es/pagination/ListVpcEndpointsPaginator.js +31 -0
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/protocols/Aws_json1_0.js +2506 -0
- package/dist-es/runtimeConfig.browser.js +37 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +14 -0
- package/dist-types/OpenSearchServerless.d.ts +276 -0
- package/dist-types/OpenSearchServerlessClient.d.ts +181 -0
- package/dist-types/commands/BatchGetCollectionCommand.d.ts +39 -0
- package/dist-types/commands/BatchGetVpcEndpointCommand.d.ts +39 -0
- package/dist-types/commands/CreateAccessPolicyCommand.d.ts +40 -0
- package/dist-types/commands/CreateCollectionCommand.d.ts +38 -0
- package/dist-types/commands/CreateSecurityConfigCommand.d.ts +39 -0
- package/dist-types/commands/CreateSecurityPolicyCommand.d.ts +42 -0
- package/dist-types/commands/CreateVpcEndpointCommand.d.ts +38 -0
- package/dist-types/commands/DeleteAccessPolicyCommand.d.ts +38 -0
- package/dist-types/commands/DeleteCollectionCommand.d.ts +38 -0
- package/dist-types/commands/DeleteSecurityConfigCommand.d.ts +39 -0
- package/dist-types/commands/DeleteSecurityPolicyCommand.d.ts +37 -0
- package/dist-types/commands/DeleteVpcEndpointCommand.d.ts +38 -0
- package/dist-types/commands/GetAccessPolicyCommand.d.ts +38 -0
- package/dist-types/commands/GetAccountSettingsCommand.d.ts +37 -0
- package/dist-types/commands/GetPoliciesStatsCommand.d.ts +38 -0
- package/dist-types/commands/GetSecurityConfigCommand.d.ts +39 -0
- package/dist-types/commands/GetSecurityPolicyCommand.d.ts +39 -0
- package/dist-types/commands/ListAccessPoliciesCommand.d.ts +37 -0
- package/dist-types/commands/ListCollectionsCommand.d.ts +42 -0
- package/dist-types/commands/ListSecurityConfigsCommand.d.ts +39 -0
- package/dist-types/commands/ListSecurityPoliciesCommand.d.ts +37 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
- package/dist-types/commands/ListVpcEndpointsCommand.d.ts +39 -0
- package/dist-types/commands/TagResourceCommand.d.ts +37 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +37 -0
- package/dist-types/commands/UpdateAccessPolicyCommand.d.ts +38 -0
- package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +38 -0
- package/dist-types/commands/UpdateCollectionCommand.d.ts +37 -0
- package/dist-types/commands/UpdateSecurityConfigCommand.d.ts +39 -0
- package/dist-types/commands/UpdateSecurityPolicyCommand.d.ts +39 -0
- package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +38 -0
- package/dist-types/commands/index.d.ts +31 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +6 -0
- package/dist-types/models/OpenSearchServerlessServiceException.d.ts +10 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1802 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListAccessPoliciesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListCollectionsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSecurityConfigsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListSecurityPoliciesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListVpcEndpointsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +95 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +16 -0
- package/dist-types/ts3.4/OpenSearchServerless.d.ts +531 -0
- package/dist-types/ts3.4/OpenSearchServerlessClient.d.ts +298 -0
- package/dist-types/ts3.4/commands/BatchGetCollectionCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/BatchGetVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateAccessPolicyCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateCollectionCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/CreateSecurityConfigCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CreateSecurityPolicyCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CreateVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteAccessPolicyCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteCollectionCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/DeleteSecurityConfigCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteSecurityPolicyCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetAccessPolicyCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetAccountSettingsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetPoliciesStatsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetSecurityConfigCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetSecurityPolicyCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListAccessPoliciesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListCollectionsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListSecurityConfigsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListSecurityPoliciesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListVpcEndpointsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateAccessPolicyCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateAccountSettingsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateCollectionCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateSecurityConfigCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateSecurityPolicyCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateVpcEndpointCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +31 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/OpenSearchServerlessServiceException.d.ts +7 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +740 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
- package/dist-types/ts3.4/pagination/ListAccessPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCollectionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSecurityConfigsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListSecurityPoliciesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListVpcEndpointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +377 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +90 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +90 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +79 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
- package/package.json +103 -0
|
@@ -0,0 +1,1802 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { DocumentType as __DocumentType } from "@aws-sdk/types";
|
|
3
|
+
import { OpenSearchServerlessServiceException as __BaseException } from "./OpenSearchServerlessServiceException";
|
|
4
|
+
export declare enum AccessPolicyType {
|
|
5
|
+
/**
|
|
6
|
+
* data policy type
|
|
7
|
+
*/
|
|
8
|
+
data = "data"
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* <p>When creating a collection, thrown when a collection with the same name already exists
|
|
12
|
+
* or is being created. When deleting a collection, thrown when the collection is not in
|
|
13
|
+
* the ACTIVE or FAILED state.</p>
|
|
14
|
+
*/
|
|
15
|
+
export declare class ConflictException extends __BaseException {
|
|
16
|
+
readonly name: "ConflictException";
|
|
17
|
+
readonly $fault: "client";
|
|
18
|
+
/**
|
|
19
|
+
* @internal
|
|
20
|
+
*/
|
|
21
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
22
|
+
}
|
|
23
|
+
export interface CreateAccessPolicyRequest {
|
|
24
|
+
/**
|
|
25
|
+
* <p>The type of policy.</p>
|
|
26
|
+
*/
|
|
27
|
+
type: AccessPolicyType | string | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* <p>The name of the policy.</p>
|
|
30
|
+
*/
|
|
31
|
+
name: string | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* <p>A description of the policy. Typically used to store information about the permissions
|
|
34
|
+
* defined in the policy.</p>
|
|
35
|
+
*/
|
|
36
|
+
description?: string;
|
|
37
|
+
/**
|
|
38
|
+
* <p>The JSON policy document to use as the content for the policy.</p>
|
|
39
|
+
*/
|
|
40
|
+
policy: string | undefined;
|
|
41
|
+
/**
|
|
42
|
+
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
43
|
+
*/
|
|
44
|
+
clientToken?: string;
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* <p>Details about an OpenSearch Serverless access policy.</p>
|
|
48
|
+
*/
|
|
49
|
+
export interface AccessPolicyDetail {
|
|
50
|
+
/**
|
|
51
|
+
* <p>The type of access policy.</p>
|
|
52
|
+
*/
|
|
53
|
+
type?: AccessPolicyType | string;
|
|
54
|
+
/**
|
|
55
|
+
* <p>The name of the policy.</p>
|
|
56
|
+
*/
|
|
57
|
+
name?: string;
|
|
58
|
+
/**
|
|
59
|
+
* <p>The version of the policy.</p>
|
|
60
|
+
*/
|
|
61
|
+
policyVersion?: string;
|
|
62
|
+
/**
|
|
63
|
+
* <p>The description of the policy.</p>
|
|
64
|
+
*/
|
|
65
|
+
description?: string;
|
|
66
|
+
/**
|
|
67
|
+
* <p>The JSON policy document without any whitespaces.</p>
|
|
68
|
+
*/
|
|
69
|
+
policy?: __DocumentType;
|
|
70
|
+
/**
|
|
71
|
+
* <p>The date the policy was created.</p>
|
|
72
|
+
*/
|
|
73
|
+
createdDate?: number;
|
|
74
|
+
/**
|
|
75
|
+
* <p>The timestamp of when the policy was last modified.</p>
|
|
76
|
+
*/
|
|
77
|
+
lastModifiedDate?: number;
|
|
78
|
+
}
|
|
79
|
+
export interface CreateAccessPolicyResponse {
|
|
80
|
+
/**
|
|
81
|
+
* <p>Details about the created access policy.</p>
|
|
82
|
+
*/
|
|
83
|
+
accessPolicyDetail?: AccessPolicyDetail;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* <p>Thrown when an error internal to the service occurs while processing a request.</p>
|
|
87
|
+
*/
|
|
88
|
+
export declare class InternalServerException extends __BaseException {
|
|
89
|
+
readonly name: "InternalServerException";
|
|
90
|
+
readonly $fault: "server";
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
94
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* <p>Thrown when the HTTP request contains invalid input or is missing required
|
|
98
|
+
* input.</p>
|
|
99
|
+
*/
|
|
100
|
+
export declare class ValidationException extends __BaseException {
|
|
101
|
+
readonly name: "ValidationException";
|
|
102
|
+
readonly $fault: "client";
|
|
103
|
+
/**
|
|
104
|
+
* @internal
|
|
105
|
+
*/
|
|
106
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
107
|
+
}
|
|
108
|
+
export interface DeleteAccessPolicyRequest {
|
|
109
|
+
/**
|
|
110
|
+
* <p>The type of policy.</p>
|
|
111
|
+
*/
|
|
112
|
+
type: AccessPolicyType | string | undefined;
|
|
113
|
+
/**
|
|
114
|
+
* <p>The name of the policy to delete.</p>
|
|
115
|
+
*/
|
|
116
|
+
name: string | undefined;
|
|
117
|
+
/**
|
|
118
|
+
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
119
|
+
*/
|
|
120
|
+
clientToken?: string;
|
|
121
|
+
}
|
|
122
|
+
export interface DeleteAccessPolicyResponse {
|
|
123
|
+
}
|
|
124
|
+
/**
|
|
125
|
+
* <p>Thrown when accessing or deleting a resource that does not exist.</p>
|
|
126
|
+
*/
|
|
127
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
128
|
+
readonly name: "ResourceNotFoundException";
|
|
129
|
+
readonly $fault: "client";
|
|
130
|
+
/**
|
|
131
|
+
* @internal
|
|
132
|
+
*/
|
|
133
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
134
|
+
}
|
|
135
|
+
export interface GetAccessPolicyRequest {
|
|
136
|
+
/**
|
|
137
|
+
* <p>Tye type of policy. Currently the only supported value is <code>data</code>.</p>
|
|
138
|
+
*/
|
|
139
|
+
type: AccessPolicyType | string | undefined;
|
|
140
|
+
/**
|
|
141
|
+
* <p>The name of the access policy.</p>
|
|
142
|
+
*/
|
|
143
|
+
name: string | undefined;
|
|
144
|
+
}
|
|
145
|
+
export interface GetAccessPolicyResponse {
|
|
146
|
+
/**
|
|
147
|
+
* <p>Details about the requested access policy.</p>
|
|
148
|
+
*/
|
|
149
|
+
accessPolicyDetail?: AccessPolicyDetail;
|
|
150
|
+
}
|
|
151
|
+
export interface ListAccessPoliciesRequest {
|
|
152
|
+
/**
|
|
153
|
+
* <p>The type of access policy.</p>
|
|
154
|
+
*/
|
|
155
|
+
type: AccessPolicyType | string | undefined;
|
|
156
|
+
/**
|
|
157
|
+
* <p>Resource filters (can be collection or indexes) that policies can apply to.</p>
|
|
158
|
+
*/
|
|
159
|
+
resource?: string[];
|
|
160
|
+
/**
|
|
161
|
+
* <p>If your initial <code>ListAccessPolicies</code> operation returns a
|
|
162
|
+
* <code>nextToken</code>, you can include the returned <code>nextToken</code> in
|
|
163
|
+
* subsequent <code>ListAccessPolicies</code> operations, which returns results in the next
|
|
164
|
+
* page. </p>
|
|
165
|
+
*/
|
|
166
|
+
nextToken?: string;
|
|
167
|
+
/**
|
|
168
|
+
* <p>An optional parameter that specifies the maximum number of results to return. You can
|
|
169
|
+
* use <code>nextToken</code> to get the next page of results. The default is 20.</p>
|
|
170
|
+
*/
|
|
171
|
+
maxResults?: number;
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* <p>A summary of the data access policy.</p>
|
|
175
|
+
*/
|
|
176
|
+
export interface AccessPolicySummary {
|
|
177
|
+
/**
|
|
178
|
+
* <p>The type of access policy. Currently the only available type is <code>data</code>.</p>
|
|
179
|
+
*/
|
|
180
|
+
type?: AccessPolicyType | string;
|
|
181
|
+
/**
|
|
182
|
+
* <p>The name of the access policy.</p>
|
|
183
|
+
*/
|
|
184
|
+
name?: string;
|
|
185
|
+
/**
|
|
186
|
+
* <p>The version of the policy.</p>
|
|
187
|
+
*/
|
|
188
|
+
policyVersion?: string;
|
|
189
|
+
/**
|
|
190
|
+
* <p>The description of the access policy.</p>
|
|
191
|
+
*/
|
|
192
|
+
description?: string;
|
|
193
|
+
/**
|
|
194
|
+
* <p>The Epoch time when the access policy was created.</p>
|
|
195
|
+
*/
|
|
196
|
+
createdDate?: number;
|
|
197
|
+
/**
|
|
198
|
+
* <p>The date and time when the collection was last modified.</p>
|
|
199
|
+
*/
|
|
200
|
+
lastModifiedDate?: number;
|
|
201
|
+
}
|
|
202
|
+
export interface ListAccessPoliciesResponse {
|
|
203
|
+
/**
|
|
204
|
+
* <p>Details about the requested access policies.</p>
|
|
205
|
+
*/
|
|
206
|
+
accessPolicySummaries?: AccessPolicySummary[];
|
|
207
|
+
/**
|
|
208
|
+
* <p>When <code>nextToken</code> is returned, there are more results available. The value
|
|
209
|
+
* of <code>nextToken</code> is a unique pagination token for each page. Make the call
|
|
210
|
+
* again using the returned token to retrieve the next page.</p>
|
|
211
|
+
*/
|
|
212
|
+
nextToken?: string;
|
|
213
|
+
}
|
|
214
|
+
export interface UpdateAccessPolicyRequest {
|
|
215
|
+
/**
|
|
216
|
+
* <p>The type of policy.</p>
|
|
217
|
+
*/
|
|
218
|
+
type: AccessPolicyType | string | undefined;
|
|
219
|
+
/**
|
|
220
|
+
* <p>The name of the policy.</p>
|
|
221
|
+
*/
|
|
222
|
+
name: string | undefined;
|
|
223
|
+
/**
|
|
224
|
+
* <p>The version of the policy being updated.</p>
|
|
225
|
+
*/
|
|
226
|
+
policyVersion: string | undefined;
|
|
227
|
+
/**
|
|
228
|
+
* <p>A description of the policy. Typically used to store information about the permissions
|
|
229
|
+
* defined in the policy.</p>
|
|
230
|
+
*/
|
|
231
|
+
description?: string;
|
|
232
|
+
/**
|
|
233
|
+
* <p>The JSON policy document to use as the content for the policy.</p>
|
|
234
|
+
*/
|
|
235
|
+
policy?: string;
|
|
236
|
+
/**
|
|
237
|
+
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
238
|
+
*/
|
|
239
|
+
clientToken?: string;
|
|
240
|
+
}
|
|
241
|
+
export interface UpdateAccessPolicyResponse {
|
|
242
|
+
/**
|
|
243
|
+
* <p>Details about the updated access policy.</p>
|
|
244
|
+
*/
|
|
245
|
+
accessPolicyDetail?: AccessPolicyDetail;
|
|
246
|
+
}
|
|
247
|
+
/**
|
|
248
|
+
* <p>Statistics for an OpenSearch Serverless access policy.</p>
|
|
249
|
+
*/
|
|
250
|
+
export interface AccessPolicyStats {
|
|
251
|
+
/**
|
|
252
|
+
* <p>The number of data access policies in the current account.</p>
|
|
253
|
+
*/
|
|
254
|
+
DataPolicyCount?: number;
|
|
255
|
+
}
|
|
256
|
+
/**
|
|
257
|
+
* <p>The maximum capacity limits for all OpenSearch Serverless collections, in OpenSearch Compute Units
|
|
258
|
+
* (OCUs). These limits are used to scale your collections based on the current workload.
|
|
259
|
+
* For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-overview.html#serverless-scaling">Autoscaling</a>.</p>
|
|
260
|
+
*/
|
|
261
|
+
export interface CapacityLimits {
|
|
262
|
+
/**
|
|
263
|
+
* <p>The maximum indexing capacity for collections.</p>
|
|
264
|
+
*/
|
|
265
|
+
maxIndexingCapacityInOCU?: number;
|
|
266
|
+
/**
|
|
267
|
+
* <p>The maximum search capacity for collections.</p>
|
|
268
|
+
*/
|
|
269
|
+
maxSearchCapacityInOCU?: number;
|
|
270
|
+
}
|
|
271
|
+
/**
|
|
272
|
+
* <p>OpenSearch Serverless-related information for the current account.</p>
|
|
273
|
+
*/
|
|
274
|
+
export interface AccountSettingsDetail {
|
|
275
|
+
/**
|
|
276
|
+
* <p>The maximum capacity limits for all OpenSearch Serverless collections, in OpenSearch Compute Units
|
|
277
|
+
* (OCUs). These limits are used to scale your collections based on the current workload.
|
|
278
|
+
* For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-overview.html#serverless-scaling">Autoscaling</a>.</p>
|
|
279
|
+
*/
|
|
280
|
+
capacityLimits?: CapacityLimits;
|
|
281
|
+
}
|
|
282
|
+
export interface BatchGetCollectionRequest {
|
|
283
|
+
/**
|
|
284
|
+
* <p>A list of collection IDs. You can't provide names and IDs in the same request. The ID
|
|
285
|
+
* is part of the collection endpoint. You can also retrieve it using the <a href="https://docs.aws.amazon.com/opensearch-service/latest/ServerlessAPIReference/API_ListCollections.html">ListCollections</a> API.</p>
|
|
286
|
+
*/
|
|
287
|
+
ids?: string[];
|
|
288
|
+
/**
|
|
289
|
+
* <p>A list of collection names. You can't provide names and IDs in the same request.</p>
|
|
290
|
+
*/
|
|
291
|
+
names?: string[];
|
|
292
|
+
}
|
|
293
|
+
export declare enum CollectionStatus {
|
|
294
|
+
/**
|
|
295
|
+
* Collection resource is ready to use
|
|
296
|
+
*/
|
|
297
|
+
ACTIVE = "ACTIVE",
|
|
298
|
+
/**
|
|
299
|
+
* Creating collection resource
|
|
300
|
+
*/
|
|
301
|
+
CREATING = "CREATING",
|
|
302
|
+
/**
|
|
303
|
+
* Deleting collection resource
|
|
304
|
+
*/
|
|
305
|
+
DELETING = "DELETING",
|
|
306
|
+
/**
|
|
307
|
+
* Collection resource create or delete failed
|
|
308
|
+
*/
|
|
309
|
+
FAILED = "FAILED"
|
|
310
|
+
}
|
|
311
|
+
export declare enum CollectionType {
|
|
312
|
+
/**
|
|
313
|
+
* Search collection type
|
|
314
|
+
*/
|
|
315
|
+
SEARCH = "SEARCH",
|
|
316
|
+
/**
|
|
317
|
+
* Timeseries collection type
|
|
318
|
+
*/
|
|
319
|
+
TIMESERIES = "TIMESERIES"
|
|
320
|
+
}
|
|
321
|
+
/**
|
|
322
|
+
* <p>Details about each OpenSearch Serverless collection, including the collection endpoint and the
|
|
323
|
+
* OpenSearch Dashboards endpoint.</p>
|
|
324
|
+
*/
|
|
325
|
+
export interface CollectionDetail {
|
|
326
|
+
/**
|
|
327
|
+
* <p>A unique identifier for the collection.</p>
|
|
328
|
+
*/
|
|
329
|
+
id?: string;
|
|
330
|
+
/**
|
|
331
|
+
* <p>The name of the collection.</p>
|
|
332
|
+
*/
|
|
333
|
+
name?: string;
|
|
334
|
+
/**
|
|
335
|
+
* <p>The current status of the collection.</p>
|
|
336
|
+
*/
|
|
337
|
+
status?: CollectionStatus | string;
|
|
338
|
+
/**
|
|
339
|
+
* <p>The type of collection.</p>
|
|
340
|
+
*/
|
|
341
|
+
type?: CollectionType | string;
|
|
342
|
+
/**
|
|
343
|
+
* <p>A description of the collection.</p>
|
|
344
|
+
*/
|
|
345
|
+
description?: string;
|
|
346
|
+
/**
|
|
347
|
+
* <p>The Amazon Resource Name (ARN) of the collection.</p>
|
|
348
|
+
*/
|
|
349
|
+
arn?: string;
|
|
350
|
+
/**
|
|
351
|
+
* <p>The ARN of the Amazon Web Services KMS key used to encrypt the collection.</p>
|
|
352
|
+
*/
|
|
353
|
+
kmsKeyArn?: string;
|
|
354
|
+
/**
|
|
355
|
+
* <p>The Epoch time when the collection was created.</p>
|
|
356
|
+
*/
|
|
357
|
+
createdDate?: number;
|
|
358
|
+
/**
|
|
359
|
+
* <p>The date and time when the collection was last modified.</p>
|
|
360
|
+
*/
|
|
361
|
+
lastModifiedDate?: number;
|
|
362
|
+
/**
|
|
363
|
+
* <p>Collection-specific endpoint used to submit index, search, and data upload requests to
|
|
364
|
+
* an OpenSearch Serverless collection.</p>
|
|
365
|
+
*/
|
|
366
|
+
collectionEndpoint?: string;
|
|
367
|
+
/**
|
|
368
|
+
* <p>Collection-specific endpoint used to access OpenSearch Dashboards.</p>
|
|
369
|
+
*/
|
|
370
|
+
dashboardEndpoint?: string;
|
|
371
|
+
}
|
|
372
|
+
/**
|
|
373
|
+
* <p>Error information for an OpenSearch Serverless request.</p>
|
|
374
|
+
*/
|
|
375
|
+
export interface CollectionErrorDetail {
|
|
376
|
+
/**
|
|
377
|
+
* <p>If the request contains collection IDs, the response includes the IDs provided in the
|
|
378
|
+
* request.</p>
|
|
379
|
+
*/
|
|
380
|
+
id?: string;
|
|
381
|
+
/**
|
|
382
|
+
* <p>If the request contains collection names, the response includes the names provided in
|
|
383
|
+
* the request.</p>
|
|
384
|
+
*/
|
|
385
|
+
name?: string;
|
|
386
|
+
/**
|
|
387
|
+
* <p>A description of the error. For example, <code>The specified Collection is not
|
|
388
|
+
* found.</code>
|
|
389
|
+
* </p>
|
|
390
|
+
*/
|
|
391
|
+
errorMessage?: string;
|
|
392
|
+
/**
|
|
393
|
+
* <p>The error code for the request. For example, <code>NOT_FOUND</code>.</p>
|
|
394
|
+
*/
|
|
395
|
+
errorCode?: string;
|
|
396
|
+
}
|
|
397
|
+
export interface BatchGetCollectionResponse {
|
|
398
|
+
/**
|
|
399
|
+
* <p>Details about each collection.</p>
|
|
400
|
+
*/
|
|
401
|
+
collectionDetails?: CollectionDetail[];
|
|
402
|
+
/**
|
|
403
|
+
* <p>Error information for the request.</p>
|
|
404
|
+
*/
|
|
405
|
+
collectionErrorDetails?: CollectionErrorDetail[];
|
|
406
|
+
}
|
|
407
|
+
export interface BatchGetVpcEndpointRequest {
|
|
408
|
+
/**
|
|
409
|
+
* <p>A list of VPC endpoint identifiers.</p>
|
|
410
|
+
*/
|
|
411
|
+
ids: string[] | undefined;
|
|
412
|
+
}
|
|
413
|
+
export declare enum VpcEndpointStatus {
|
|
414
|
+
/**
|
|
415
|
+
* VPCEndpoint resource is ready to use
|
|
416
|
+
*/
|
|
417
|
+
ACTIVE = "ACTIVE",
|
|
418
|
+
/**
|
|
419
|
+
* Deleting VPCEndpoint resource
|
|
420
|
+
*/
|
|
421
|
+
DELETING = "DELETING",
|
|
422
|
+
/**
|
|
423
|
+
* VPCEndpoint resource create or delete failed
|
|
424
|
+
*/
|
|
425
|
+
FAILED = "FAILED",
|
|
426
|
+
/**
|
|
427
|
+
* Pending VPCEndpoint resource
|
|
428
|
+
*/
|
|
429
|
+
PENDING = "PENDING"
|
|
430
|
+
}
|
|
431
|
+
/**
|
|
432
|
+
* <p>Details about an OpenSearch Serverless-managed interface endpoint.</p>
|
|
433
|
+
*/
|
|
434
|
+
export interface VpcEndpointDetail {
|
|
435
|
+
/**
|
|
436
|
+
* <p>The unique identifier of the endpoint.</p>
|
|
437
|
+
*/
|
|
438
|
+
id?: string;
|
|
439
|
+
/**
|
|
440
|
+
* <p>The name of the endpoint.</p>
|
|
441
|
+
*/
|
|
442
|
+
name?: string;
|
|
443
|
+
/**
|
|
444
|
+
* <p>The ID of the VPC from which you access OpenSearch Serverless</p>
|
|
445
|
+
*/
|
|
446
|
+
vpcId?: string;
|
|
447
|
+
/**
|
|
448
|
+
* <p>The ID of the subnets from which you access OpenSearch Serverless.</p>
|
|
449
|
+
*/
|
|
450
|
+
subnetIds?: string[];
|
|
451
|
+
/**
|
|
452
|
+
* <p>The unique identifiers of the security groups that define the ports, protocols, and
|
|
453
|
+
* sources for inbound traffic that you are authorizing into your endpoint.</p>
|
|
454
|
+
*/
|
|
455
|
+
securityGroupIds?: string[];
|
|
456
|
+
/**
|
|
457
|
+
* <p>The current status of the endpoint.</p>
|
|
458
|
+
*/
|
|
459
|
+
status?: VpcEndpointStatus | string;
|
|
460
|
+
/**
|
|
461
|
+
* <p>The date the endpoint was created.</p>
|
|
462
|
+
*/
|
|
463
|
+
createdDate?: number;
|
|
464
|
+
}
|
|
465
|
+
/**
|
|
466
|
+
* <p>Error information for a failed <code>BatchGetVpcEndpoint</code> request.</p>
|
|
467
|
+
*/
|
|
468
|
+
export interface VpcEndpointErrorDetail {
|
|
469
|
+
/**
|
|
470
|
+
* <p>The unique identifier of the VPC endpoint.</p>
|
|
471
|
+
*/
|
|
472
|
+
id?: string;
|
|
473
|
+
/**
|
|
474
|
+
* <p>An error message describing the reason for the failure.</p>
|
|
475
|
+
*/
|
|
476
|
+
errorMessage?: string;
|
|
477
|
+
/**
|
|
478
|
+
* <p>The error code for the failed request.</p>
|
|
479
|
+
*/
|
|
480
|
+
errorCode?: string;
|
|
481
|
+
}
|
|
482
|
+
export interface BatchGetVpcEndpointResponse {
|
|
483
|
+
/**
|
|
484
|
+
* <p>Details about the specified VPC endpoint.</p>
|
|
485
|
+
*/
|
|
486
|
+
vpcEndpointDetails?: VpcEndpointDetail[];
|
|
487
|
+
/**
|
|
488
|
+
* <p>Error information for a failed request.</p>
|
|
489
|
+
*/
|
|
490
|
+
vpcEndpointErrorDetails?: VpcEndpointErrorDetail[];
|
|
491
|
+
}
|
|
492
|
+
/**
|
|
493
|
+
* <p>A map of key-value pairs associated to an OpenSearch Serverless resource.</p>
|
|
494
|
+
*/
|
|
495
|
+
export interface Tag {
|
|
496
|
+
/**
|
|
497
|
+
* <p>The key to use in the tag.</p>
|
|
498
|
+
*/
|
|
499
|
+
key: string | undefined;
|
|
500
|
+
/**
|
|
501
|
+
* <p>The value of the tag.</p>
|
|
502
|
+
*/
|
|
503
|
+
value: string | undefined;
|
|
504
|
+
}
|
|
505
|
+
export interface CreateCollectionRequest {
|
|
506
|
+
/**
|
|
507
|
+
* <p>Name of the collection.</p>
|
|
508
|
+
*/
|
|
509
|
+
name: string | undefined;
|
|
510
|
+
/**
|
|
511
|
+
* <p>The type of collection.</p>
|
|
512
|
+
*/
|
|
513
|
+
type?: CollectionType | string;
|
|
514
|
+
/**
|
|
515
|
+
* <p>Description of the collection.</p>
|
|
516
|
+
*/
|
|
517
|
+
description?: string;
|
|
518
|
+
/**
|
|
519
|
+
* <p>An arbitrary set of tags (key–value pairs) to associate with the OpenSearch Serverless collection.</p>
|
|
520
|
+
*/
|
|
521
|
+
tags?: Tag[];
|
|
522
|
+
/**
|
|
523
|
+
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
524
|
+
*/
|
|
525
|
+
clientToken?: string;
|
|
526
|
+
}
|
|
527
|
+
/**
|
|
528
|
+
* <p>Details about the created OpenSearch Serverless collection.</p>
|
|
529
|
+
*/
|
|
530
|
+
export interface CreateCollectionDetail {
|
|
531
|
+
/**
|
|
532
|
+
* <p>The unique identifier of the collection.</p>
|
|
533
|
+
*/
|
|
534
|
+
id?: string;
|
|
535
|
+
/**
|
|
536
|
+
* <p>The name of the collection.</p>
|
|
537
|
+
*/
|
|
538
|
+
name?: string;
|
|
539
|
+
/**
|
|
540
|
+
* <p>The current status of the collection.</p>
|
|
541
|
+
*/
|
|
542
|
+
status?: CollectionStatus | string;
|
|
543
|
+
/**
|
|
544
|
+
* <p>The type of collection.</p>
|
|
545
|
+
*/
|
|
546
|
+
type?: CollectionType | string;
|
|
547
|
+
/**
|
|
548
|
+
* <p>A description of the collection.</p>
|
|
549
|
+
*/
|
|
550
|
+
description?: string;
|
|
551
|
+
/**
|
|
552
|
+
* <p>The Amazon Resource Name (ARN) of the collection.</p>
|
|
553
|
+
*/
|
|
554
|
+
arn?: string;
|
|
555
|
+
/**
|
|
556
|
+
* <p>The Amazon Resource Name (ARN) of the KMS key with which to encrypt the collection.</p>
|
|
557
|
+
*/
|
|
558
|
+
kmsKeyArn?: string;
|
|
559
|
+
/**
|
|
560
|
+
* <p>The Epoch time when the collection was created.</p>
|
|
561
|
+
*/
|
|
562
|
+
createdDate?: number;
|
|
563
|
+
/**
|
|
564
|
+
* <p>The date and time when the collection was last modified.</p>
|
|
565
|
+
*/
|
|
566
|
+
lastModifiedDate?: number;
|
|
567
|
+
}
|
|
568
|
+
export interface CreateCollectionResponse {
|
|
569
|
+
/**
|
|
570
|
+
* <p>Details about the collection.</p>
|
|
571
|
+
*/
|
|
572
|
+
createCollectionDetail?: CreateCollectionDetail;
|
|
573
|
+
}
|
|
574
|
+
export interface DeleteCollectionRequest {
|
|
575
|
+
/**
|
|
576
|
+
* <p>The unique identifier of the collection. For example, <code>1iu5usc406kd</code>. The
|
|
577
|
+
* ID is part of the collection endpoint. You can also retrieve it using the <a href="https://docs.aws.amazon.com/opensearch-service/latest/ServerlessAPIReference/API_ListCollections.html">ListCollections</a> API.</p>
|
|
578
|
+
*/
|
|
579
|
+
id: string | undefined;
|
|
580
|
+
/**
|
|
581
|
+
* <p>A unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
582
|
+
*/
|
|
583
|
+
clientToken?: string;
|
|
584
|
+
}
|
|
585
|
+
/**
|
|
586
|
+
* <p>Details about a deleted OpenSearch Serverless collection.</p>
|
|
587
|
+
*/
|
|
588
|
+
export interface DeleteCollectionDetail {
|
|
589
|
+
/**
|
|
590
|
+
* <p>The unique identifier of the collection.</p>
|
|
591
|
+
*/
|
|
592
|
+
id?: string;
|
|
593
|
+
/**
|
|
594
|
+
* <p>The name of the collection.</p>
|
|
595
|
+
*/
|
|
596
|
+
name?: string;
|
|
597
|
+
/**
|
|
598
|
+
* <p>The current status of the collection.</p>
|
|
599
|
+
*/
|
|
600
|
+
status?: CollectionStatus | string;
|
|
601
|
+
}
|
|
602
|
+
export interface DeleteCollectionResponse {
|
|
603
|
+
/**
|
|
604
|
+
* <p>Details of the deleted collection.</p>
|
|
605
|
+
*/
|
|
606
|
+
deleteCollectionDetail?: DeleteCollectionDetail;
|
|
607
|
+
}
|
|
608
|
+
/**
|
|
609
|
+
* <p>List of filter keys that you can use for LIST, UPDATE, and DELETE requests to OpenSearch Serverless
|
|
610
|
+
* collections.</p>
|
|
611
|
+
*/
|
|
612
|
+
export interface CollectionFilters {
|
|
613
|
+
/**
|
|
614
|
+
* <p>The name of the collection.</p>
|
|
615
|
+
*/
|
|
616
|
+
name?: string;
|
|
617
|
+
/**
|
|
618
|
+
* <p>The current status of the collection.</p>
|
|
619
|
+
*/
|
|
620
|
+
status?: CollectionStatus | string;
|
|
621
|
+
}
|
|
622
|
+
export interface ListCollectionsRequest {
|
|
623
|
+
/**
|
|
624
|
+
* <p>List of filter names and values that you can use for requests.</p>
|
|
625
|
+
*/
|
|
626
|
+
collectionFilters?: CollectionFilters;
|
|
627
|
+
/**
|
|
628
|
+
* <p>If your initial <code>ListCollections</code> operation returns a <code>nextToken</code>,
|
|
629
|
+
* you can include the returned <code>nextToken</code> in subsequent <code>ListCollections</code> operations,
|
|
630
|
+
* which returns results in the next page.</p>
|
|
631
|
+
*/
|
|
632
|
+
nextToken?: string;
|
|
633
|
+
/**
|
|
634
|
+
* <p>The maximum number of results to return. Default is 20. You can use
|
|
635
|
+
* <code>nextToken</code> to get the next page of results.</p>
|
|
636
|
+
*/
|
|
637
|
+
maxResults?: number;
|
|
638
|
+
}
|
|
639
|
+
/**
|
|
640
|
+
* <p>Details about each OpenSearch Serverless collection.</p>
|
|
641
|
+
*/
|
|
642
|
+
export interface CollectionSummary {
|
|
643
|
+
/**
|
|
644
|
+
* <p>The unique identifier of the collection.</p>
|
|
645
|
+
*/
|
|
646
|
+
id?: string;
|
|
647
|
+
/**
|
|
648
|
+
* <p>The name of the collection.</p>
|
|
649
|
+
*/
|
|
650
|
+
name?: string;
|
|
651
|
+
/**
|
|
652
|
+
* <p>The current status of the collection.</p>
|
|
653
|
+
*/
|
|
654
|
+
status?: CollectionStatus | string;
|
|
655
|
+
/**
|
|
656
|
+
* <p>The Amazon Resource Name (ARN) of the collection.</p>
|
|
657
|
+
*/
|
|
658
|
+
arn?: string;
|
|
659
|
+
}
|
|
660
|
+
export interface ListCollectionsResponse {
|
|
661
|
+
/**
|
|
662
|
+
* <p>Details about each collection.</p>
|
|
663
|
+
*/
|
|
664
|
+
collectionSummaries?: CollectionSummary[];
|
|
665
|
+
/**
|
|
666
|
+
* <p>When <code>nextToken</code> is returned, there are more results available.
|
|
667
|
+
* The value of <code>nextToken</code> is a unique pagination token for each page.
|
|
668
|
+
* Make the call again using the returned token to retrieve the next page.</p>
|
|
669
|
+
*/
|
|
670
|
+
nextToken?: string;
|
|
671
|
+
}
|
|
672
|
+
export interface UpdateCollectionRequest {
|
|
673
|
+
/**
|
|
674
|
+
* <p>The unique identifier of the collection.</p>
|
|
675
|
+
*/
|
|
676
|
+
id: string | undefined;
|
|
677
|
+
/**
|
|
678
|
+
* <p>A description of the collection.</p>
|
|
679
|
+
*/
|
|
680
|
+
description?: string;
|
|
681
|
+
/**
|
|
682
|
+
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
683
|
+
*/
|
|
684
|
+
clientToken?: string;
|
|
685
|
+
}
|
|
686
|
+
/**
|
|
687
|
+
* <p>Details about an updated OpenSearch Serverless collection.</p>
|
|
688
|
+
*/
|
|
689
|
+
export interface UpdateCollectionDetail {
|
|
690
|
+
/**
|
|
691
|
+
* <p>The unique identifier of the collection.</p>
|
|
692
|
+
*/
|
|
693
|
+
id?: string;
|
|
694
|
+
/**
|
|
695
|
+
* <p>The name of the collection.</p>
|
|
696
|
+
*/
|
|
697
|
+
name?: string;
|
|
698
|
+
/**
|
|
699
|
+
* <p>The current status of the collection.</p>
|
|
700
|
+
*/
|
|
701
|
+
status?: CollectionStatus | string;
|
|
702
|
+
/**
|
|
703
|
+
* <p>The collection type.</p>
|
|
704
|
+
*/
|
|
705
|
+
type?: CollectionType | string;
|
|
706
|
+
/**
|
|
707
|
+
* <p>The description of the collection.</p>
|
|
708
|
+
*/
|
|
709
|
+
description?: string;
|
|
710
|
+
/**
|
|
711
|
+
* <p>The Amazon Resource Name (ARN) of the collection.</p>
|
|
712
|
+
*/
|
|
713
|
+
arn?: string;
|
|
714
|
+
/**
|
|
715
|
+
* <p>The date and time when the collection was created.</p>
|
|
716
|
+
*/
|
|
717
|
+
createdDate?: number;
|
|
718
|
+
/**
|
|
719
|
+
* <p>The date and time when the collection was last modified.</p>
|
|
720
|
+
*/
|
|
721
|
+
lastModifiedDate?: number;
|
|
722
|
+
}
|
|
723
|
+
export interface UpdateCollectionResponse {
|
|
724
|
+
/**
|
|
725
|
+
* <p>Details about the updated collection.</p>
|
|
726
|
+
*/
|
|
727
|
+
updateCollectionDetail?: UpdateCollectionDetail;
|
|
728
|
+
}
|
|
729
|
+
/**
|
|
730
|
+
* <p>Describes SAML options for an OpenSearch Serverless security configuration in the form of a key-value
|
|
731
|
+
* map.</p>
|
|
732
|
+
*/
|
|
733
|
+
export interface SamlConfigOptions {
|
|
734
|
+
/**
|
|
735
|
+
* <p>The XML IdP metadata file generated from your identity provider.</p>
|
|
736
|
+
*/
|
|
737
|
+
metadata: string | undefined;
|
|
738
|
+
/**
|
|
739
|
+
* <p>A user attribute for this SAML integration.</p>
|
|
740
|
+
*/
|
|
741
|
+
userAttribute?: string;
|
|
742
|
+
/**
|
|
743
|
+
* <p>The group attribute for this SAML integration.</p>
|
|
744
|
+
*/
|
|
745
|
+
groupAttribute?: string;
|
|
746
|
+
/**
|
|
747
|
+
* <p>The session timeout, in minutes. Minimum is 15 minutes and maximum is 1440 minutes (24
|
|
748
|
+
* hours or 1 day). Default is 60 minutes.</p>
|
|
749
|
+
*/
|
|
750
|
+
sessionTimeout?: number;
|
|
751
|
+
}
|
|
752
|
+
export declare enum SecurityConfigType {
|
|
753
|
+
/**
|
|
754
|
+
* saml provider
|
|
755
|
+
*/
|
|
756
|
+
saml = "saml"
|
|
757
|
+
}
|
|
758
|
+
export interface CreateSecurityConfigRequest {
|
|
759
|
+
/**
|
|
760
|
+
* <p>The type of security configuration.</p>
|
|
761
|
+
*/
|
|
762
|
+
type: SecurityConfigType | string | undefined;
|
|
763
|
+
/**
|
|
764
|
+
* <p>The name of the security configuration.</p>
|
|
765
|
+
*/
|
|
766
|
+
name: string | undefined;
|
|
767
|
+
/**
|
|
768
|
+
* <p>A description of the security configuration.</p>
|
|
769
|
+
*/
|
|
770
|
+
description?: string;
|
|
771
|
+
/**
|
|
772
|
+
* <p>Describes SAML options in in the form of a key-value map.</p>
|
|
773
|
+
*/
|
|
774
|
+
samlOptions?: SamlConfigOptions;
|
|
775
|
+
/**
|
|
776
|
+
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
777
|
+
*/
|
|
778
|
+
clientToken?: string;
|
|
779
|
+
}
|
|
780
|
+
/**
|
|
781
|
+
* <p>Details about a security configuration for OpenSearch Serverless. </p>
|
|
782
|
+
*/
|
|
783
|
+
export interface SecurityConfigDetail {
|
|
784
|
+
/**
|
|
785
|
+
* <p>The unique identifier of the security configuration.</p>
|
|
786
|
+
*/
|
|
787
|
+
id?: string;
|
|
788
|
+
/**
|
|
789
|
+
* <p>The type of security configuration.</p>
|
|
790
|
+
*/
|
|
791
|
+
type?: SecurityConfigType | string;
|
|
792
|
+
/**
|
|
793
|
+
* <p>The version of the security configuration.</p>
|
|
794
|
+
*/
|
|
795
|
+
configVersion?: string;
|
|
796
|
+
/**
|
|
797
|
+
* <p>The description of the security configuration.</p>
|
|
798
|
+
*/
|
|
799
|
+
description?: string;
|
|
800
|
+
/**
|
|
801
|
+
* <p>SAML options for the security configuration in the form of a key-value map.</p>
|
|
802
|
+
*/
|
|
803
|
+
samlOptions?: SamlConfigOptions;
|
|
804
|
+
/**
|
|
805
|
+
* <p>The date the configuration was created.</p>
|
|
806
|
+
*/
|
|
807
|
+
createdDate?: number;
|
|
808
|
+
/**
|
|
809
|
+
* <p>The timestamp of when the configuration was last modified.</p>
|
|
810
|
+
*/
|
|
811
|
+
lastModifiedDate?: number;
|
|
812
|
+
}
|
|
813
|
+
export interface CreateSecurityConfigResponse {
|
|
814
|
+
/**
|
|
815
|
+
* <p>Details about the created security configuration. </p>
|
|
816
|
+
*/
|
|
817
|
+
securityConfigDetail?: SecurityConfigDetail;
|
|
818
|
+
}
|
|
819
|
+
export declare enum SecurityPolicyType {
|
|
820
|
+
/**
|
|
821
|
+
* encryption policy type
|
|
822
|
+
*/
|
|
823
|
+
encryption = "encryption",
|
|
824
|
+
/**
|
|
825
|
+
* network policy type
|
|
826
|
+
*/
|
|
827
|
+
network = "network"
|
|
828
|
+
}
|
|
829
|
+
export interface CreateSecurityPolicyRequest {
|
|
830
|
+
/**
|
|
831
|
+
* <p>The type of security policy.</p>
|
|
832
|
+
*/
|
|
833
|
+
type: SecurityPolicyType | string | undefined;
|
|
834
|
+
/**
|
|
835
|
+
* <p>The name of the policy.</p>
|
|
836
|
+
*/
|
|
837
|
+
name: string | undefined;
|
|
838
|
+
/**
|
|
839
|
+
* <p>A description of the policy. Typically used to store information about the permissions
|
|
840
|
+
* defined in the policy.</p>
|
|
841
|
+
*/
|
|
842
|
+
description?: string;
|
|
843
|
+
/**
|
|
844
|
+
* <p>The JSON policy document to use as the content for the new policy.</p>
|
|
845
|
+
*/
|
|
846
|
+
policy: string | undefined;
|
|
847
|
+
/**
|
|
848
|
+
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
849
|
+
*/
|
|
850
|
+
clientToken?: string;
|
|
851
|
+
}
|
|
852
|
+
/**
|
|
853
|
+
* <p>Details about an OpenSearch Serverless security policy.</p>
|
|
854
|
+
*/
|
|
855
|
+
export interface SecurityPolicyDetail {
|
|
856
|
+
/**
|
|
857
|
+
* <p>The type of security policy.</p>
|
|
858
|
+
*/
|
|
859
|
+
type?: SecurityPolicyType | string;
|
|
860
|
+
/**
|
|
861
|
+
* <p>The name of the policy.</p>
|
|
862
|
+
*/
|
|
863
|
+
name?: string;
|
|
864
|
+
/**
|
|
865
|
+
* <p>The version of the policy.</p>
|
|
866
|
+
*/
|
|
867
|
+
policyVersion?: string;
|
|
868
|
+
/**
|
|
869
|
+
* <p>The description of the security policy.</p>
|
|
870
|
+
*/
|
|
871
|
+
description?: string;
|
|
872
|
+
/**
|
|
873
|
+
* <p>The JSON policy document without any whitespaces.</p>
|
|
874
|
+
*/
|
|
875
|
+
policy?: __DocumentType;
|
|
876
|
+
/**
|
|
877
|
+
* <p>The date the policy was created.</p>
|
|
878
|
+
*/
|
|
879
|
+
createdDate?: number;
|
|
880
|
+
/**
|
|
881
|
+
* <p>The timestamp of when the policy was last modified.</p>
|
|
882
|
+
*/
|
|
883
|
+
lastModifiedDate?: number;
|
|
884
|
+
}
|
|
885
|
+
export interface CreateSecurityPolicyResponse {
|
|
886
|
+
/**
|
|
887
|
+
* <p>Details about the created security policy.</p>
|
|
888
|
+
*/
|
|
889
|
+
securityPolicyDetail?: SecurityPolicyDetail;
|
|
890
|
+
}
|
|
891
|
+
export interface CreateVpcEndpointRequest {
|
|
892
|
+
/**
|
|
893
|
+
* <p>The name of the interface endpoint.</p>
|
|
894
|
+
*/
|
|
895
|
+
name: string | undefined;
|
|
896
|
+
/**
|
|
897
|
+
* <p>The ID of the VPC from which you'll access OpenSearch Serverless.</p>
|
|
898
|
+
*/
|
|
899
|
+
vpcId: string | undefined;
|
|
900
|
+
/**
|
|
901
|
+
* <p>The ID of one or more subnets from which you'll access OpenSearch Serverless.</p>
|
|
902
|
+
*/
|
|
903
|
+
subnetIds: string[] | undefined;
|
|
904
|
+
/**
|
|
905
|
+
* <p>The unique identifiers of the security groups that define the ports, protocols, and
|
|
906
|
+
* sources for inbound traffic that you are authorizing into your endpoint.</p>
|
|
907
|
+
*/
|
|
908
|
+
securityGroupIds?: string[];
|
|
909
|
+
/**
|
|
910
|
+
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
911
|
+
*/
|
|
912
|
+
clientToken?: string;
|
|
913
|
+
}
|
|
914
|
+
/**
|
|
915
|
+
* <p>Creation details for an OpenSearch Serverless-managed interface endpoint. For more information, see
|
|
916
|
+
* <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-vpc.html">Access Amazon OpenSearch Serverless using an interface endpoint</a>.</p>
|
|
917
|
+
*/
|
|
918
|
+
export interface CreateVpcEndpointDetail {
|
|
919
|
+
/**
|
|
920
|
+
* <p>The unique identifier of the endpoint.</p>
|
|
921
|
+
*/
|
|
922
|
+
id?: string;
|
|
923
|
+
/**
|
|
924
|
+
* <p>The name of the endpoint.</p>
|
|
925
|
+
*/
|
|
926
|
+
name?: string;
|
|
927
|
+
/**
|
|
928
|
+
* <p>The current status in the endpoint creation process.</p>
|
|
929
|
+
*/
|
|
930
|
+
status?: VpcEndpointStatus | string;
|
|
931
|
+
}
|
|
932
|
+
export interface CreateVpcEndpointResponse {
|
|
933
|
+
/**
|
|
934
|
+
* <p>Details about the created interface VPC endpoint.</p>
|
|
935
|
+
*/
|
|
936
|
+
createVpcEndpointDetail?: CreateVpcEndpointDetail;
|
|
937
|
+
}
|
|
938
|
+
export interface DeleteSecurityConfigRequest {
|
|
939
|
+
/**
|
|
940
|
+
* <p>The security configuration identifier. For SAML the ID will be
|
|
941
|
+
* <code>saml/<accountId>/<idpProviderName></code>. For example,
|
|
942
|
+
* <code>saml/123456789123/OKTADev</code>.</p>
|
|
943
|
+
*/
|
|
944
|
+
id: string | undefined;
|
|
945
|
+
/**
|
|
946
|
+
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
947
|
+
*/
|
|
948
|
+
clientToken?: string;
|
|
949
|
+
}
|
|
950
|
+
export interface DeleteSecurityConfigResponse {
|
|
951
|
+
}
|
|
952
|
+
export interface DeleteSecurityPolicyRequest {
|
|
953
|
+
/**
|
|
954
|
+
* <p>The type of policy.</p>
|
|
955
|
+
*/
|
|
956
|
+
type: SecurityPolicyType | string | undefined;
|
|
957
|
+
/**
|
|
958
|
+
* <p>The name of the policy to delete.</p>
|
|
959
|
+
*/
|
|
960
|
+
name: string | undefined;
|
|
961
|
+
/**
|
|
962
|
+
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
963
|
+
*/
|
|
964
|
+
clientToken?: string;
|
|
965
|
+
}
|
|
966
|
+
export interface DeleteSecurityPolicyResponse {
|
|
967
|
+
}
|
|
968
|
+
export interface DeleteVpcEndpointRequest {
|
|
969
|
+
/**
|
|
970
|
+
* <p>The VPC endpoint identifier.</p>
|
|
971
|
+
*/
|
|
972
|
+
id: string | undefined;
|
|
973
|
+
/**
|
|
974
|
+
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
975
|
+
*/
|
|
976
|
+
clientToken?: string;
|
|
977
|
+
}
|
|
978
|
+
/**
|
|
979
|
+
* <p>Deletion details for an OpenSearch Serverless-managed interface endpoint.</p>
|
|
980
|
+
*/
|
|
981
|
+
export interface DeleteVpcEndpointDetail {
|
|
982
|
+
/**
|
|
983
|
+
* <p>The unique identifier of the endpoint.</p>
|
|
984
|
+
*/
|
|
985
|
+
id?: string;
|
|
986
|
+
/**
|
|
987
|
+
* <p>The name of the endpoint.</p>
|
|
988
|
+
*/
|
|
989
|
+
name?: string;
|
|
990
|
+
/**
|
|
991
|
+
* <p>The current status of the endpoint deletion process.</p>
|
|
992
|
+
*/
|
|
993
|
+
status?: VpcEndpointStatus | string;
|
|
994
|
+
}
|
|
995
|
+
export interface DeleteVpcEndpointResponse {
|
|
996
|
+
/**
|
|
997
|
+
* <p>Details about the deleted endpoint.</p>
|
|
998
|
+
*/
|
|
999
|
+
deleteVpcEndpointDetail?: DeleteVpcEndpointDetail;
|
|
1000
|
+
}
|
|
1001
|
+
export interface GetAccountSettingsRequest {
|
|
1002
|
+
}
|
|
1003
|
+
export interface GetAccountSettingsResponse {
|
|
1004
|
+
/**
|
|
1005
|
+
* <p>OpenSearch Serverless-related details for the current account.</p>
|
|
1006
|
+
*/
|
|
1007
|
+
accountSettingsDetail?: AccountSettingsDetail;
|
|
1008
|
+
}
|
|
1009
|
+
export interface GetPoliciesStatsRequest {
|
|
1010
|
+
}
|
|
1011
|
+
/**
|
|
1012
|
+
* <p>Statistics for an OpenSearch Serverless security configuration.</p>
|
|
1013
|
+
*/
|
|
1014
|
+
export interface SecurityConfigStats {
|
|
1015
|
+
/**
|
|
1016
|
+
* <p>The number of security configurations in the current account.</p>
|
|
1017
|
+
*/
|
|
1018
|
+
SamlConfigCount?: number;
|
|
1019
|
+
}
|
|
1020
|
+
/**
|
|
1021
|
+
* <p>Statistics for an OpenSearch Serverless security policy.</p>
|
|
1022
|
+
*/
|
|
1023
|
+
export interface SecurityPolicyStats {
|
|
1024
|
+
/**
|
|
1025
|
+
* <p>The number of encryption policies in the current account.</p>
|
|
1026
|
+
*/
|
|
1027
|
+
EncryptionPolicyCount?: number;
|
|
1028
|
+
/**
|
|
1029
|
+
* <p>The number of network policies in the current account.</p>
|
|
1030
|
+
*/
|
|
1031
|
+
NetworkPolicyCount?: number;
|
|
1032
|
+
}
|
|
1033
|
+
export interface GetPoliciesStatsResponse {
|
|
1034
|
+
/**
|
|
1035
|
+
* <p>Information about the data access policies in your account.</p>
|
|
1036
|
+
*/
|
|
1037
|
+
AccessPolicyStats?: AccessPolicyStats;
|
|
1038
|
+
/**
|
|
1039
|
+
* <p>Information about the security policies in your account.</p>
|
|
1040
|
+
*/
|
|
1041
|
+
SecurityPolicyStats?: SecurityPolicyStats;
|
|
1042
|
+
/**
|
|
1043
|
+
* <p>Information about the security configurations in your account.</p>
|
|
1044
|
+
*/
|
|
1045
|
+
SecurityConfigStats?: SecurityConfigStats;
|
|
1046
|
+
/**
|
|
1047
|
+
* <p>The total number of OpenSearch Serverless security policies and configurations in your
|
|
1048
|
+
* account.</p>
|
|
1049
|
+
*/
|
|
1050
|
+
TotalPolicyCount?: number;
|
|
1051
|
+
}
|
|
1052
|
+
export interface GetSecurityConfigRequest {
|
|
1053
|
+
/**
|
|
1054
|
+
* <p>The unique identifier of the security configuration.</p>
|
|
1055
|
+
*/
|
|
1056
|
+
id: string | undefined;
|
|
1057
|
+
}
|
|
1058
|
+
export interface GetSecurityConfigResponse {
|
|
1059
|
+
/**
|
|
1060
|
+
* <p>Details of the requested security configuration.</p>
|
|
1061
|
+
*/
|
|
1062
|
+
securityConfigDetail?: SecurityConfigDetail;
|
|
1063
|
+
}
|
|
1064
|
+
export interface GetSecurityPolicyRequest {
|
|
1065
|
+
/**
|
|
1066
|
+
* <p>The type of security policy.</p>
|
|
1067
|
+
*/
|
|
1068
|
+
type: SecurityPolicyType | string | undefined;
|
|
1069
|
+
/**
|
|
1070
|
+
* <p>The name of the security policy.</p>
|
|
1071
|
+
*/
|
|
1072
|
+
name: string | undefined;
|
|
1073
|
+
}
|
|
1074
|
+
export interface GetSecurityPolicyResponse {
|
|
1075
|
+
/**
|
|
1076
|
+
* <p>Details about the requested security policy.</p>
|
|
1077
|
+
*/
|
|
1078
|
+
securityPolicyDetail?: SecurityPolicyDetail;
|
|
1079
|
+
}
|
|
1080
|
+
export interface ListSecurityConfigsRequest {
|
|
1081
|
+
/**
|
|
1082
|
+
* <p>The type of security configuration.</p>
|
|
1083
|
+
*/
|
|
1084
|
+
type: SecurityConfigType | string | undefined;
|
|
1085
|
+
/**
|
|
1086
|
+
* <p>If your initial <code>ListSecurityConfigs</code> operation returns a
|
|
1087
|
+
* <code>nextToken</code>, you can include the returned <code>nextToken</code> in
|
|
1088
|
+
* subsequent <code>ListSecurityConfigs</code> operations, which returns results in the
|
|
1089
|
+
* next page. </p>
|
|
1090
|
+
*/
|
|
1091
|
+
nextToken?: string;
|
|
1092
|
+
/**
|
|
1093
|
+
* <p>An optional parameter that specifies the maximum number of results to return. You can
|
|
1094
|
+
* use <code>nextToken</code> to get the next page of results. The default is 20.</p>
|
|
1095
|
+
*/
|
|
1096
|
+
maxResults?: number;
|
|
1097
|
+
}
|
|
1098
|
+
/**
|
|
1099
|
+
* <p>A summary of a security configuration for OpenSearch Serverless.</p>
|
|
1100
|
+
*/
|
|
1101
|
+
export interface SecurityConfigSummary {
|
|
1102
|
+
/**
|
|
1103
|
+
* <p>The unique identifier of the security configuration.</p>
|
|
1104
|
+
*/
|
|
1105
|
+
id?: string;
|
|
1106
|
+
/**
|
|
1107
|
+
* <p>The type of security configuration.</p>
|
|
1108
|
+
*/
|
|
1109
|
+
type?: SecurityConfigType | string;
|
|
1110
|
+
/**
|
|
1111
|
+
* <p>The version of the security configuration.</p>
|
|
1112
|
+
*/
|
|
1113
|
+
configVersion?: string;
|
|
1114
|
+
/**
|
|
1115
|
+
* <p>The description of the security configuration.</p>
|
|
1116
|
+
*/
|
|
1117
|
+
description?: string;
|
|
1118
|
+
/**
|
|
1119
|
+
* <p>The Epoch time when the security configuration was created.</p>
|
|
1120
|
+
*/
|
|
1121
|
+
createdDate?: number;
|
|
1122
|
+
/**
|
|
1123
|
+
* <p>The timestamp of when the configuration was last modified.</p>
|
|
1124
|
+
*/
|
|
1125
|
+
lastModifiedDate?: number;
|
|
1126
|
+
}
|
|
1127
|
+
export interface ListSecurityConfigsResponse {
|
|
1128
|
+
/**
|
|
1129
|
+
* <p>Details about the security configurations in your account.</p>
|
|
1130
|
+
*/
|
|
1131
|
+
securityConfigSummaries?: SecurityConfigSummary[];
|
|
1132
|
+
/**
|
|
1133
|
+
* <p>When <code>nextToken</code> is returned, there are more results available. The value
|
|
1134
|
+
* of <code>nextToken</code> is a unique pagination token for each page. Make the call
|
|
1135
|
+
* again using the returned token to retrieve the next page.</p>
|
|
1136
|
+
*/
|
|
1137
|
+
nextToken?: string;
|
|
1138
|
+
}
|
|
1139
|
+
export interface ListSecurityPoliciesRequest {
|
|
1140
|
+
/**
|
|
1141
|
+
* <p>The type of policy.</p>
|
|
1142
|
+
*/
|
|
1143
|
+
type: SecurityPolicyType | string | undefined;
|
|
1144
|
+
/**
|
|
1145
|
+
* <p>Resource filters (can be collection or indexes) that policies can apply to. </p>
|
|
1146
|
+
*/
|
|
1147
|
+
resource?: string[];
|
|
1148
|
+
/**
|
|
1149
|
+
* <p>If your initial <code>ListSecurityPolicies</code> operation returns a
|
|
1150
|
+
* <code>nextToken</code>, you can include the returned <code>nextToken</code> in
|
|
1151
|
+
* subsequent <code>ListSecurityPolicies</code> operations, which returns results in the
|
|
1152
|
+
* next page. </p>
|
|
1153
|
+
*/
|
|
1154
|
+
nextToken?: string;
|
|
1155
|
+
/**
|
|
1156
|
+
* <p>An optional parameter that specifies the maximum number of results to return. You can
|
|
1157
|
+
* use <code>nextToken</code> to get the next page of results. The default is 20.</p>
|
|
1158
|
+
*/
|
|
1159
|
+
maxResults?: number;
|
|
1160
|
+
}
|
|
1161
|
+
/**
|
|
1162
|
+
* <p>A summary of a security policy for OpenSearch Serverless.</p>
|
|
1163
|
+
*/
|
|
1164
|
+
export interface SecurityPolicySummary {
|
|
1165
|
+
/**
|
|
1166
|
+
* <p>The type of security policy.</p>
|
|
1167
|
+
*/
|
|
1168
|
+
type?: SecurityPolicyType | string;
|
|
1169
|
+
/**
|
|
1170
|
+
* <p>The name of the policy.</p>
|
|
1171
|
+
*/
|
|
1172
|
+
name?: string;
|
|
1173
|
+
/**
|
|
1174
|
+
* <p>The version of the policy.</p>
|
|
1175
|
+
*/
|
|
1176
|
+
policyVersion?: string;
|
|
1177
|
+
/**
|
|
1178
|
+
* <p>The description of the security policy.</p>
|
|
1179
|
+
*/
|
|
1180
|
+
description?: string;
|
|
1181
|
+
/**
|
|
1182
|
+
* <p>The date the policy was created.</p>
|
|
1183
|
+
*/
|
|
1184
|
+
createdDate?: number;
|
|
1185
|
+
/**
|
|
1186
|
+
* <p>The timestamp of when the policy was last modified.</p>
|
|
1187
|
+
*/
|
|
1188
|
+
lastModifiedDate?: number;
|
|
1189
|
+
}
|
|
1190
|
+
export interface ListSecurityPoliciesResponse {
|
|
1191
|
+
/**
|
|
1192
|
+
* <p>Details about the security policies in your account.</p>
|
|
1193
|
+
*/
|
|
1194
|
+
securityPolicySummaries?: SecurityPolicySummary[];
|
|
1195
|
+
/**
|
|
1196
|
+
* <p>When <code>nextToken</code> is returned, there are more results available. The value
|
|
1197
|
+
* of <code>nextToken</code> is a unique pagination token for each page. Make the call
|
|
1198
|
+
* again using the returned token to retrieve the next page.</p>
|
|
1199
|
+
*/
|
|
1200
|
+
nextToken?: string;
|
|
1201
|
+
}
|
|
1202
|
+
export interface ListTagsForResourceRequest {
|
|
1203
|
+
/**
|
|
1204
|
+
* <p>The Amazon Resource Name (ARN) of the resource. The resource must be active (not in
|
|
1205
|
+
* the <code>DELETING</code> state), and must be owned by the account ID included in the
|
|
1206
|
+
* request.</p>
|
|
1207
|
+
*/
|
|
1208
|
+
resourceArn: string | undefined;
|
|
1209
|
+
}
|
|
1210
|
+
export interface ListTagsForResourceResponse {
|
|
1211
|
+
/**
|
|
1212
|
+
* <p>The tags associated with the resource.</p>
|
|
1213
|
+
*/
|
|
1214
|
+
tags?: Tag[];
|
|
1215
|
+
}
|
|
1216
|
+
/**
|
|
1217
|
+
* <p>Filter the results of a <code>ListVpcEndpoints</code> request.</p>
|
|
1218
|
+
*/
|
|
1219
|
+
export interface VpcEndpointFilters {
|
|
1220
|
+
/**
|
|
1221
|
+
* <p>The current status of the endpoint.</p>
|
|
1222
|
+
*/
|
|
1223
|
+
status?: VpcEndpointStatus | string;
|
|
1224
|
+
}
|
|
1225
|
+
export interface ListVpcEndpointsRequest {
|
|
1226
|
+
/**
|
|
1227
|
+
* <p>Filter the results according to the current status of the VPC endpoint. Possible
|
|
1228
|
+
* statuses are <code>CREATING</code>, <code>DELETING</code>, <code>UPDATING</code>,
|
|
1229
|
+
* <code>ACTIVE</code>, and <code>FAILED</code>.</p>
|
|
1230
|
+
*/
|
|
1231
|
+
vpcEndpointFilters?: VpcEndpointFilters;
|
|
1232
|
+
/**
|
|
1233
|
+
* <p>If your initial <code>ListVpcEndpoints</code> operation returns a
|
|
1234
|
+
* <code>nextToken</code>, you can include the returned <code>nextToken</code> in
|
|
1235
|
+
* subsequent <code>ListVpcEndpoints</code> operations, which returns results in the next
|
|
1236
|
+
* page. </p>
|
|
1237
|
+
*/
|
|
1238
|
+
nextToken?: string;
|
|
1239
|
+
/**
|
|
1240
|
+
* <p>An optional parameter that specifies the maximum number of results to return. You can
|
|
1241
|
+
* use <code>nextToken</code> to get the next page of results. The default is 20.</p>
|
|
1242
|
+
*/
|
|
1243
|
+
maxResults?: number;
|
|
1244
|
+
}
|
|
1245
|
+
/**
|
|
1246
|
+
* <p>The VPC endpoint object.</p>
|
|
1247
|
+
*/
|
|
1248
|
+
export interface VpcEndpointSummary {
|
|
1249
|
+
/**
|
|
1250
|
+
* <p>The unique identifier of the endpoint.</p>
|
|
1251
|
+
*/
|
|
1252
|
+
id?: string;
|
|
1253
|
+
/**
|
|
1254
|
+
* <p>The name of the endpoint.</p>
|
|
1255
|
+
*/
|
|
1256
|
+
name?: string;
|
|
1257
|
+
/**
|
|
1258
|
+
* <p>The current status of the endpoint.</p>
|
|
1259
|
+
*/
|
|
1260
|
+
status?: VpcEndpointStatus | string;
|
|
1261
|
+
}
|
|
1262
|
+
export interface ListVpcEndpointsResponse {
|
|
1263
|
+
/**
|
|
1264
|
+
* <p>Details about each VPC endpoint, including the name and current status.</p>
|
|
1265
|
+
*/
|
|
1266
|
+
vpcEndpointSummaries?: VpcEndpointSummary[];
|
|
1267
|
+
/**
|
|
1268
|
+
* <p>When <code>nextToken</code> is returned, there are more results available. The value
|
|
1269
|
+
* of <code>nextToken</code> is a unique pagination token for each page. Make the call
|
|
1270
|
+
* again using the returned token to retrieve the next page.</p>
|
|
1271
|
+
*/
|
|
1272
|
+
nextToken?: string;
|
|
1273
|
+
}
|
|
1274
|
+
export interface UpdateSecurityConfigRequest {
|
|
1275
|
+
/**
|
|
1276
|
+
* <p>The security configuration identifier. For SAML the ID will be
|
|
1277
|
+
* <code>saml/<accountId>/<idpProviderName></code>. For example,
|
|
1278
|
+
* <code>saml/123456789123/OKTADev</code>.</p>
|
|
1279
|
+
*/
|
|
1280
|
+
id: string | undefined;
|
|
1281
|
+
/**
|
|
1282
|
+
* <p>The version of the security configuration to be updated. You can find the most recent
|
|
1283
|
+
* version of a security configuration using the <code>GetSecurityPolicy</code>
|
|
1284
|
+
* command.</p>
|
|
1285
|
+
*/
|
|
1286
|
+
configVersion: string | undefined;
|
|
1287
|
+
/**
|
|
1288
|
+
* <p>A description of the security configuration.</p>
|
|
1289
|
+
*/
|
|
1290
|
+
description?: string;
|
|
1291
|
+
/**
|
|
1292
|
+
* <p>SAML options in in the form of a key-value map.</p>
|
|
1293
|
+
*/
|
|
1294
|
+
samlOptions?: SamlConfigOptions;
|
|
1295
|
+
/**
|
|
1296
|
+
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1297
|
+
*/
|
|
1298
|
+
clientToken?: string;
|
|
1299
|
+
}
|
|
1300
|
+
export interface UpdateSecurityConfigResponse {
|
|
1301
|
+
/**
|
|
1302
|
+
* <p>Details about the updated security configuration. </p>
|
|
1303
|
+
*/
|
|
1304
|
+
securityConfigDetail?: SecurityConfigDetail;
|
|
1305
|
+
}
|
|
1306
|
+
export interface UpdateSecurityPolicyRequest {
|
|
1307
|
+
/**
|
|
1308
|
+
* <p>The type of access policy.</p>
|
|
1309
|
+
*/
|
|
1310
|
+
type: SecurityPolicyType | string | undefined;
|
|
1311
|
+
/**
|
|
1312
|
+
* <p>The name of the policy.</p>
|
|
1313
|
+
*/
|
|
1314
|
+
name: string | undefined;
|
|
1315
|
+
/**
|
|
1316
|
+
* <p>The version of the policy being updated.</p>
|
|
1317
|
+
*/
|
|
1318
|
+
policyVersion: string | undefined;
|
|
1319
|
+
/**
|
|
1320
|
+
* <p>A description of the policy. Typically used to store information about the permissions
|
|
1321
|
+
* defined in the policy.</p>
|
|
1322
|
+
*/
|
|
1323
|
+
description?: string;
|
|
1324
|
+
/**
|
|
1325
|
+
* <p>The JSON policy document to use as the content for the new policy.</p>
|
|
1326
|
+
*/
|
|
1327
|
+
policy?: string;
|
|
1328
|
+
/**
|
|
1329
|
+
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1330
|
+
*/
|
|
1331
|
+
clientToken?: string;
|
|
1332
|
+
}
|
|
1333
|
+
export interface UpdateSecurityPolicyResponse {
|
|
1334
|
+
/**
|
|
1335
|
+
* <p>Details about the updated security policy.</p>
|
|
1336
|
+
*/
|
|
1337
|
+
securityPolicyDetail?: SecurityPolicyDetail;
|
|
1338
|
+
}
|
|
1339
|
+
export interface TagResourceRequest {
|
|
1340
|
+
/**
|
|
1341
|
+
* <p>The Amazon Resource Name (ARN) of the resource. The resource must be active (not in
|
|
1342
|
+
* the <code>DELETING</code> state), and must be owned by the account ID included in the
|
|
1343
|
+
* request.</p>
|
|
1344
|
+
*/
|
|
1345
|
+
resourceArn: string | undefined;
|
|
1346
|
+
/**
|
|
1347
|
+
* <p>A list of tags (key-value pairs) to add to the resource. All tag keys in the request
|
|
1348
|
+
* must be unique.</p>
|
|
1349
|
+
*/
|
|
1350
|
+
tags: Tag[] | undefined;
|
|
1351
|
+
}
|
|
1352
|
+
export interface TagResourceResponse {
|
|
1353
|
+
}
|
|
1354
|
+
export interface UntagResourceRequest {
|
|
1355
|
+
/**
|
|
1356
|
+
* <p>The Amazon Resource Name (ARN) of the resource to remove tags from. The resource must
|
|
1357
|
+
* be active (not in the <code>DELETING</code> state), and must be owned by the account ID
|
|
1358
|
+
* included in the request.</p>
|
|
1359
|
+
*/
|
|
1360
|
+
resourceArn: string | undefined;
|
|
1361
|
+
/**
|
|
1362
|
+
* <p>The tag or set of tags to remove from the resource. All tag keys in the request must
|
|
1363
|
+
* be unique.</p>
|
|
1364
|
+
*/
|
|
1365
|
+
tagKeys: string[] | undefined;
|
|
1366
|
+
}
|
|
1367
|
+
export interface UntagResourceResponse {
|
|
1368
|
+
}
|
|
1369
|
+
export interface UpdateAccountSettingsRequest {
|
|
1370
|
+
/**
|
|
1371
|
+
* <p>The maximum capacity limits for all OpenSearch Serverless collections, in OpenSearch Compute Units
|
|
1372
|
+
* (OCUs). These limits are used to scale your collections based on the current workload.
|
|
1373
|
+
* For more information, see <a href="https://docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-overview.html#serverless-scaling">Autoscaling</a>.</p>
|
|
1374
|
+
*/
|
|
1375
|
+
capacityLimits?: CapacityLimits;
|
|
1376
|
+
}
|
|
1377
|
+
export interface UpdateAccountSettingsResponse {
|
|
1378
|
+
/**
|
|
1379
|
+
* <p>OpenSearch Serverless-related settings for the current Amazon Web Services account. </p>
|
|
1380
|
+
*/
|
|
1381
|
+
accountSettingsDetail?: AccountSettingsDetail;
|
|
1382
|
+
}
|
|
1383
|
+
export interface UpdateVpcEndpointRequest {
|
|
1384
|
+
/**
|
|
1385
|
+
* <p>The unique identifier of the interface endpoint to update.</p>
|
|
1386
|
+
*/
|
|
1387
|
+
id: string | undefined;
|
|
1388
|
+
/**
|
|
1389
|
+
* <p>The ID of one or more subnets to add to the endpoint.</p>
|
|
1390
|
+
*/
|
|
1391
|
+
addSubnetIds?: string[];
|
|
1392
|
+
/**
|
|
1393
|
+
* <p>The unique identifiers of the subnets to remove from the endpoint.</p>
|
|
1394
|
+
*/
|
|
1395
|
+
removeSubnetIds?: string[];
|
|
1396
|
+
/**
|
|
1397
|
+
* <p>The unique identifiers of the security groups to add to the endpoint. Security groups
|
|
1398
|
+
* define the ports, protocols, and sources for inbound traffic that you are authorizing
|
|
1399
|
+
* into your endpoint.</p>
|
|
1400
|
+
*/
|
|
1401
|
+
addSecurityGroupIds?: string[];
|
|
1402
|
+
/**
|
|
1403
|
+
* <p>The unique identifiers of the security groups to remove from the endpoint.</p>
|
|
1404
|
+
*/
|
|
1405
|
+
removeSecurityGroupIds?: string[];
|
|
1406
|
+
/**
|
|
1407
|
+
* <p>Unique, case-sensitive identifier to ensure idempotency of the request.</p>
|
|
1408
|
+
*/
|
|
1409
|
+
clientToken?: string;
|
|
1410
|
+
}
|
|
1411
|
+
/**
|
|
1412
|
+
* <p>Update details for an OpenSearch Serverless-managed interface endpoint.</p>
|
|
1413
|
+
*/
|
|
1414
|
+
export interface UpdateVpcEndpointDetail {
|
|
1415
|
+
/**
|
|
1416
|
+
* <p>The unique identifier of the endpoint.</p>
|
|
1417
|
+
*/
|
|
1418
|
+
id?: string;
|
|
1419
|
+
/**
|
|
1420
|
+
* <p>The name of the endpoint.</p>
|
|
1421
|
+
*/
|
|
1422
|
+
name?: string;
|
|
1423
|
+
/**
|
|
1424
|
+
* <p>The current status of the endpoint update process.</p>
|
|
1425
|
+
*/
|
|
1426
|
+
status?: VpcEndpointStatus | string;
|
|
1427
|
+
/**
|
|
1428
|
+
* <p>The ID of the subnets from which you access OpenSearch Serverless.</p>
|
|
1429
|
+
*/
|
|
1430
|
+
subnetIds?: string[];
|
|
1431
|
+
/**
|
|
1432
|
+
* <p>The unique identifiers of the security groups that define the ports, protocols, and
|
|
1433
|
+
* sources for inbound traffic that you are authorizing into your endpoint.</p>
|
|
1434
|
+
*/
|
|
1435
|
+
securityGroupIds?: string[];
|
|
1436
|
+
/**
|
|
1437
|
+
* <p>The timestamp of when the endpoint was last modified.</p>
|
|
1438
|
+
*/
|
|
1439
|
+
lastModifiedDate?: number;
|
|
1440
|
+
}
|
|
1441
|
+
export interface UpdateVpcEndpointResponse {
|
|
1442
|
+
/**
|
|
1443
|
+
* <p>Details about the updated VPC endpoint.</p>
|
|
1444
|
+
*/
|
|
1445
|
+
UpdateVpcEndpointDetail?: UpdateVpcEndpointDetail;
|
|
1446
|
+
}
|
|
1447
|
+
/**
|
|
1448
|
+
* @internal
|
|
1449
|
+
*/
|
|
1450
|
+
export declare const CreateAccessPolicyRequestFilterSensitiveLog: (obj: CreateAccessPolicyRequest) => any;
|
|
1451
|
+
/**
|
|
1452
|
+
* @internal
|
|
1453
|
+
*/
|
|
1454
|
+
export declare const AccessPolicyDetailFilterSensitiveLog: (obj: AccessPolicyDetail) => any;
|
|
1455
|
+
/**
|
|
1456
|
+
* @internal
|
|
1457
|
+
*/
|
|
1458
|
+
export declare const CreateAccessPolicyResponseFilterSensitiveLog: (obj: CreateAccessPolicyResponse) => any;
|
|
1459
|
+
/**
|
|
1460
|
+
* @internal
|
|
1461
|
+
*/
|
|
1462
|
+
export declare const DeleteAccessPolicyRequestFilterSensitiveLog: (obj: DeleteAccessPolicyRequest) => any;
|
|
1463
|
+
/**
|
|
1464
|
+
* @internal
|
|
1465
|
+
*/
|
|
1466
|
+
export declare const DeleteAccessPolicyResponseFilterSensitiveLog: (obj: DeleteAccessPolicyResponse) => any;
|
|
1467
|
+
/**
|
|
1468
|
+
* @internal
|
|
1469
|
+
*/
|
|
1470
|
+
export declare const GetAccessPolicyRequestFilterSensitiveLog: (obj: GetAccessPolicyRequest) => any;
|
|
1471
|
+
/**
|
|
1472
|
+
* @internal
|
|
1473
|
+
*/
|
|
1474
|
+
export declare const GetAccessPolicyResponseFilterSensitiveLog: (obj: GetAccessPolicyResponse) => any;
|
|
1475
|
+
/**
|
|
1476
|
+
* @internal
|
|
1477
|
+
*/
|
|
1478
|
+
export declare const ListAccessPoliciesRequestFilterSensitiveLog: (obj: ListAccessPoliciesRequest) => any;
|
|
1479
|
+
/**
|
|
1480
|
+
* @internal
|
|
1481
|
+
*/
|
|
1482
|
+
export declare const AccessPolicySummaryFilterSensitiveLog: (obj: AccessPolicySummary) => any;
|
|
1483
|
+
/**
|
|
1484
|
+
* @internal
|
|
1485
|
+
*/
|
|
1486
|
+
export declare const ListAccessPoliciesResponseFilterSensitiveLog: (obj: ListAccessPoliciesResponse) => any;
|
|
1487
|
+
/**
|
|
1488
|
+
* @internal
|
|
1489
|
+
*/
|
|
1490
|
+
export declare const UpdateAccessPolicyRequestFilterSensitiveLog: (obj: UpdateAccessPolicyRequest) => any;
|
|
1491
|
+
/**
|
|
1492
|
+
* @internal
|
|
1493
|
+
*/
|
|
1494
|
+
export declare const UpdateAccessPolicyResponseFilterSensitiveLog: (obj: UpdateAccessPolicyResponse) => any;
|
|
1495
|
+
/**
|
|
1496
|
+
* @internal
|
|
1497
|
+
*/
|
|
1498
|
+
export declare const AccessPolicyStatsFilterSensitiveLog: (obj: AccessPolicyStats) => any;
|
|
1499
|
+
/**
|
|
1500
|
+
* @internal
|
|
1501
|
+
*/
|
|
1502
|
+
export declare const CapacityLimitsFilterSensitiveLog: (obj: CapacityLimits) => any;
|
|
1503
|
+
/**
|
|
1504
|
+
* @internal
|
|
1505
|
+
*/
|
|
1506
|
+
export declare const AccountSettingsDetailFilterSensitiveLog: (obj: AccountSettingsDetail) => any;
|
|
1507
|
+
/**
|
|
1508
|
+
* @internal
|
|
1509
|
+
*/
|
|
1510
|
+
export declare const BatchGetCollectionRequestFilterSensitiveLog: (obj: BatchGetCollectionRequest) => any;
|
|
1511
|
+
/**
|
|
1512
|
+
* @internal
|
|
1513
|
+
*/
|
|
1514
|
+
export declare const CollectionDetailFilterSensitiveLog: (obj: CollectionDetail) => any;
|
|
1515
|
+
/**
|
|
1516
|
+
* @internal
|
|
1517
|
+
*/
|
|
1518
|
+
export declare const CollectionErrorDetailFilterSensitiveLog: (obj: CollectionErrorDetail) => any;
|
|
1519
|
+
/**
|
|
1520
|
+
* @internal
|
|
1521
|
+
*/
|
|
1522
|
+
export declare const BatchGetCollectionResponseFilterSensitiveLog: (obj: BatchGetCollectionResponse) => any;
|
|
1523
|
+
/**
|
|
1524
|
+
* @internal
|
|
1525
|
+
*/
|
|
1526
|
+
export declare const BatchGetVpcEndpointRequestFilterSensitiveLog: (obj: BatchGetVpcEndpointRequest) => any;
|
|
1527
|
+
/**
|
|
1528
|
+
* @internal
|
|
1529
|
+
*/
|
|
1530
|
+
export declare const VpcEndpointDetailFilterSensitiveLog: (obj: VpcEndpointDetail) => any;
|
|
1531
|
+
/**
|
|
1532
|
+
* @internal
|
|
1533
|
+
*/
|
|
1534
|
+
export declare const VpcEndpointErrorDetailFilterSensitiveLog: (obj: VpcEndpointErrorDetail) => any;
|
|
1535
|
+
/**
|
|
1536
|
+
* @internal
|
|
1537
|
+
*/
|
|
1538
|
+
export declare const BatchGetVpcEndpointResponseFilterSensitiveLog: (obj: BatchGetVpcEndpointResponse) => any;
|
|
1539
|
+
/**
|
|
1540
|
+
* @internal
|
|
1541
|
+
*/
|
|
1542
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1543
|
+
/**
|
|
1544
|
+
* @internal
|
|
1545
|
+
*/
|
|
1546
|
+
export declare const CreateCollectionRequestFilterSensitiveLog: (obj: CreateCollectionRequest) => any;
|
|
1547
|
+
/**
|
|
1548
|
+
* @internal
|
|
1549
|
+
*/
|
|
1550
|
+
export declare const CreateCollectionDetailFilterSensitiveLog: (obj: CreateCollectionDetail) => any;
|
|
1551
|
+
/**
|
|
1552
|
+
* @internal
|
|
1553
|
+
*/
|
|
1554
|
+
export declare const CreateCollectionResponseFilterSensitiveLog: (obj: CreateCollectionResponse) => any;
|
|
1555
|
+
/**
|
|
1556
|
+
* @internal
|
|
1557
|
+
*/
|
|
1558
|
+
export declare const DeleteCollectionRequestFilterSensitiveLog: (obj: DeleteCollectionRequest) => any;
|
|
1559
|
+
/**
|
|
1560
|
+
* @internal
|
|
1561
|
+
*/
|
|
1562
|
+
export declare const DeleteCollectionDetailFilterSensitiveLog: (obj: DeleteCollectionDetail) => any;
|
|
1563
|
+
/**
|
|
1564
|
+
* @internal
|
|
1565
|
+
*/
|
|
1566
|
+
export declare const DeleteCollectionResponseFilterSensitiveLog: (obj: DeleteCollectionResponse) => any;
|
|
1567
|
+
/**
|
|
1568
|
+
* @internal
|
|
1569
|
+
*/
|
|
1570
|
+
export declare const CollectionFiltersFilterSensitiveLog: (obj: CollectionFilters) => any;
|
|
1571
|
+
/**
|
|
1572
|
+
* @internal
|
|
1573
|
+
*/
|
|
1574
|
+
export declare const ListCollectionsRequestFilterSensitiveLog: (obj: ListCollectionsRequest) => any;
|
|
1575
|
+
/**
|
|
1576
|
+
* @internal
|
|
1577
|
+
*/
|
|
1578
|
+
export declare const CollectionSummaryFilterSensitiveLog: (obj: CollectionSummary) => any;
|
|
1579
|
+
/**
|
|
1580
|
+
* @internal
|
|
1581
|
+
*/
|
|
1582
|
+
export declare const ListCollectionsResponseFilterSensitiveLog: (obj: ListCollectionsResponse) => any;
|
|
1583
|
+
/**
|
|
1584
|
+
* @internal
|
|
1585
|
+
*/
|
|
1586
|
+
export declare const UpdateCollectionRequestFilterSensitiveLog: (obj: UpdateCollectionRequest) => any;
|
|
1587
|
+
/**
|
|
1588
|
+
* @internal
|
|
1589
|
+
*/
|
|
1590
|
+
export declare const UpdateCollectionDetailFilterSensitiveLog: (obj: UpdateCollectionDetail) => any;
|
|
1591
|
+
/**
|
|
1592
|
+
* @internal
|
|
1593
|
+
*/
|
|
1594
|
+
export declare const UpdateCollectionResponseFilterSensitiveLog: (obj: UpdateCollectionResponse) => any;
|
|
1595
|
+
/**
|
|
1596
|
+
* @internal
|
|
1597
|
+
*/
|
|
1598
|
+
export declare const SamlConfigOptionsFilterSensitiveLog: (obj: SamlConfigOptions) => any;
|
|
1599
|
+
/**
|
|
1600
|
+
* @internal
|
|
1601
|
+
*/
|
|
1602
|
+
export declare const CreateSecurityConfigRequestFilterSensitiveLog: (obj: CreateSecurityConfigRequest) => any;
|
|
1603
|
+
/**
|
|
1604
|
+
* @internal
|
|
1605
|
+
*/
|
|
1606
|
+
export declare const SecurityConfigDetailFilterSensitiveLog: (obj: SecurityConfigDetail) => any;
|
|
1607
|
+
/**
|
|
1608
|
+
* @internal
|
|
1609
|
+
*/
|
|
1610
|
+
export declare const CreateSecurityConfigResponseFilterSensitiveLog: (obj: CreateSecurityConfigResponse) => any;
|
|
1611
|
+
/**
|
|
1612
|
+
* @internal
|
|
1613
|
+
*/
|
|
1614
|
+
export declare const CreateSecurityPolicyRequestFilterSensitiveLog: (obj: CreateSecurityPolicyRequest) => any;
|
|
1615
|
+
/**
|
|
1616
|
+
* @internal
|
|
1617
|
+
*/
|
|
1618
|
+
export declare const SecurityPolicyDetailFilterSensitiveLog: (obj: SecurityPolicyDetail) => any;
|
|
1619
|
+
/**
|
|
1620
|
+
* @internal
|
|
1621
|
+
*/
|
|
1622
|
+
export declare const CreateSecurityPolicyResponseFilterSensitiveLog: (obj: CreateSecurityPolicyResponse) => any;
|
|
1623
|
+
/**
|
|
1624
|
+
* @internal
|
|
1625
|
+
*/
|
|
1626
|
+
export declare const CreateVpcEndpointRequestFilterSensitiveLog: (obj: CreateVpcEndpointRequest) => any;
|
|
1627
|
+
/**
|
|
1628
|
+
* @internal
|
|
1629
|
+
*/
|
|
1630
|
+
export declare const CreateVpcEndpointDetailFilterSensitiveLog: (obj: CreateVpcEndpointDetail) => any;
|
|
1631
|
+
/**
|
|
1632
|
+
* @internal
|
|
1633
|
+
*/
|
|
1634
|
+
export declare const CreateVpcEndpointResponseFilterSensitiveLog: (obj: CreateVpcEndpointResponse) => any;
|
|
1635
|
+
/**
|
|
1636
|
+
* @internal
|
|
1637
|
+
*/
|
|
1638
|
+
export declare const DeleteSecurityConfigRequestFilterSensitiveLog: (obj: DeleteSecurityConfigRequest) => any;
|
|
1639
|
+
/**
|
|
1640
|
+
* @internal
|
|
1641
|
+
*/
|
|
1642
|
+
export declare const DeleteSecurityConfigResponseFilterSensitiveLog: (obj: DeleteSecurityConfigResponse) => any;
|
|
1643
|
+
/**
|
|
1644
|
+
* @internal
|
|
1645
|
+
*/
|
|
1646
|
+
export declare const DeleteSecurityPolicyRequestFilterSensitiveLog: (obj: DeleteSecurityPolicyRequest) => any;
|
|
1647
|
+
/**
|
|
1648
|
+
* @internal
|
|
1649
|
+
*/
|
|
1650
|
+
export declare const DeleteSecurityPolicyResponseFilterSensitiveLog: (obj: DeleteSecurityPolicyResponse) => any;
|
|
1651
|
+
/**
|
|
1652
|
+
* @internal
|
|
1653
|
+
*/
|
|
1654
|
+
export declare const DeleteVpcEndpointRequestFilterSensitiveLog: (obj: DeleteVpcEndpointRequest) => any;
|
|
1655
|
+
/**
|
|
1656
|
+
* @internal
|
|
1657
|
+
*/
|
|
1658
|
+
export declare const DeleteVpcEndpointDetailFilterSensitiveLog: (obj: DeleteVpcEndpointDetail) => any;
|
|
1659
|
+
/**
|
|
1660
|
+
* @internal
|
|
1661
|
+
*/
|
|
1662
|
+
export declare const DeleteVpcEndpointResponseFilterSensitiveLog: (obj: DeleteVpcEndpointResponse) => any;
|
|
1663
|
+
/**
|
|
1664
|
+
* @internal
|
|
1665
|
+
*/
|
|
1666
|
+
export declare const GetAccountSettingsRequestFilterSensitiveLog: (obj: GetAccountSettingsRequest) => any;
|
|
1667
|
+
/**
|
|
1668
|
+
* @internal
|
|
1669
|
+
*/
|
|
1670
|
+
export declare const GetAccountSettingsResponseFilterSensitiveLog: (obj: GetAccountSettingsResponse) => any;
|
|
1671
|
+
/**
|
|
1672
|
+
* @internal
|
|
1673
|
+
*/
|
|
1674
|
+
export declare const GetPoliciesStatsRequestFilterSensitiveLog: (obj: GetPoliciesStatsRequest) => any;
|
|
1675
|
+
/**
|
|
1676
|
+
* @internal
|
|
1677
|
+
*/
|
|
1678
|
+
export declare const SecurityConfigStatsFilterSensitiveLog: (obj: SecurityConfigStats) => any;
|
|
1679
|
+
/**
|
|
1680
|
+
* @internal
|
|
1681
|
+
*/
|
|
1682
|
+
export declare const SecurityPolicyStatsFilterSensitiveLog: (obj: SecurityPolicyStats) => any;
|
|
1683
|
+
/**
|
|
1684
|
+
* @internal
|
|
1685
|
+
*/
|
|
1686
|
+
export declare const GetPoliciesStatsResponseFilterSensitiveLog: (obj: GetPoliciesStatsResponse) => any;
|
|
1687
|
+
/**
|
|
1688
|
+
* @internal
|
|
1689
|
+
*/
|
|
1690
|
+
export declare const GetSecurityConfigRequestFilterSensitiveLog: (obj: GetSecurityConfigRequest) => any;
|
|
1691
|
+
/**
|
|
1692
|
+
* @internal
|
|
1693
|
+
*/
|
|
1694
|
+
export declare const GetSecurityConfigResponseFilterSensitiveLog: (obj: GetSecurityConfigResponse) => any;
|
|
1695
|
+
/**
|
|
1696
|
+
* @internal
|
|
1697
|
+
*/
|
|
1698
|
+
export declare const GetSecurityPolicyRequestFilterSensitiveLog: (obj: GetSecurityPolicyRequest) => any;
|
|
1699
|
+
/**
|
|
1700
|
+
* @internal
|
|
1701
|
+
*/
|
|
1702
|
+
export declare const GetSecurityPolicyResponseFilterSensitiveLog: (obj: GetSecurityPolicyResponse) => any;
|
|
1703
|
+
/**
|
|
1704
|
+
* @internal
|
|
1705
|
+
*/
|
|
1706
|
+
export declare const ListSecurityConfigsRequestFilterSensitiveLog: (obj: ListSecurityConfigsRequest) => any;
|
|
1707
|
+
/**
|
|
1708
|
+
* @internal
|
|
1709
|
+
*/
|
|
1710
|
+
export declare const SecurityConfigSummaryFilterSensitiveLog: (obj: SecurityConfigSummary) => any;
|
|
1711
|
+
/**
|
|
1712
|
+
* @internal
|
|
1713
|
+
*/
|
|
1714
|
+
export declare const ListSecurityConfigsResponseFilterSensitiveLog: (obj: ListSecurityConfigsResponse) => any;
|
|
1715
|
+
/**
|
|
1716
|
+
* @internal
|
|
1717
|
+
*/
|
|
1718
|
+
export declare const ListSecurityPoliciesRequestFilterSensitiveLog: (obj: ListSecurityPoliciesRequest) => any;
|
|
1719
|
+
/**
|
|
1720
|
+
* @internal
|
|
1721
|
+
*/
|
|
1722
|
+
export declare const SecurityPolicySummaryFilterSensitiveLog: (obj: SecurityPolicySummary) => any;
|
|
1723
|
+
/**
|
|
1724
|
+
* @internal
|
|
1725
|
+
*/
|
|
1726
|
+
export declare const ListSecurityPoliciesResponseFilterSensitiveLog: (obj: ListSecurityPoliciesResponse) => any;
|
|
1727
|
+
/**
|
|
1728
|
+
* @internal
|
|
1729
|
+
*/
|
|
1730
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1731
|
+
/**
|
|
1732
|
+
* @internal
|
|
1733
|
+
*/
|
|
1734
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1735
|
+
/**
|
|
1736
|
+
* @internal
|
|
1737
|
+
*/
|
|
1738
|
+
export declare const VpcEndpointFiltersFilterSensitiveLog: (obj: VpcEndpointFilters) => any;
|
|
1739
|
+
/**
|
|
1740
|
+
* @internal
|
|
1741
|
+
*/
|
|
1742
|
+
export declare const ListVpcEndpointsRequestFilterSensitiveLog: (obj: ListVpcEndpointsRequest) => any;
|
|
1743
|
+
/**
|
|
1744
|
+
* @internal
|
|
1745
|
+
*/
|
|
1746
|
+
export declare const VpcEndpointSummaryFilterSensitiveLog: (obj: VpcEndpointSummary) => any;
|
|
1747
|
+
/**
|
|
1748
|
+
* @internal
|
|
1749
|
+
*/
|
|
1750
|
+
export declare const ListVpcEndpointsResponseFilterSensitiveLog: (obj: ListVpcEndpointsResponse) => any;
|
|
1751
|
+
/**
|
|
1752
|
+
* @internal
|
|
1753
|
+
*/
|
|
1754
|
+
export declare const UpdateSecurityConfigRequestFilterSensitiveLog: (obj: UpdateSecurityConfigRequest) => any;
|
|
1755
|
+
/**
|
|
1756
|
+
* @internal
|
|
1757
|
+
*/
|
|
1758
|
+
export declare const UpdateSecurityConfigResponseFilterSensitiveLog: (obj: UpdateSecurityConfigResponse) => any;
|
|
1759
|
+
/**
|
|
1760
|
+
* @internal
|
|
1761
|
+
*/
|
|
1762
|
+
export declare const UpdateSecurityPolicyRequestFilterSensitiveLog: (obj: UpdateSecurityPolicyRequest) => any;
|
|
1763
|
+
/**
|
|
1764
|
+
* @internal
|
|
1765
|
+
*/
|
|
1766
|
+
export declare const UpdateSecurityPolicyResponseFilterSensitiveLog: (obj: UpdateSecurityPolicyResponse) => any;
|
|
1767
|
+
/**
|
|
1768
|
+
* @internal
|
|
1769
|
+
*/
|
|
1770
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1771
|
+
/**
|
|
1772
|
+
* @internal
|
|
1773
|
+
*/
|
|
1774
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1775
|
+
/**
|
|
1776
|
+
* @internal
|
|
1777
|
+
*/
|
|
1778
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1779
|
+
/**
|
|
1780
|
+
* @internal
|
|
1781
|
+
*/
|
|
1782
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1783
|
+
/**
|
|
1784
|
+
* @internal
|
|
1785
|
+
*/
|
|
1786
|
+
export declare const UpdateAccountSettingsRequestFilterSensitiveLog: (obj: UpdateAccountSettingsRequest) => any;
|
|
1787
|
+
/**
|
|
1788
|
+
* @internal
|
|
1789
|
+
*/
|
|
1790
|
+
export declare const UpdateAccountSettingsResponseFilterSensitiveLog: (obj: UpdateAccountSettingsResponse) => any;
|
|
1791
|
+
/**
|
|
1792
|
+
* @internal
|
|
1793
|
+
*/
|
|
1794
|
+
export declare const UpdateVpcEndpointRequestFilterSensitiveLog: (obj: UpdateVpcEndpointRequest) => any;
|
|
1795
|
+
/**
|
|
1796
|
+
* @internal
|
|
1797
|
+
*/
|
|
1798
|
+
export declare const UpdateVpcEndpointDetailFilterSensitiveLog: (obj: UpdateVpcEndpointDetail) => any;
|
|
1799
|
+
/**
|
|
1800
|
+
* @internal
|
|
1801
|
+
*/
|
|
1802
|
+
export declare const UpdateVpcEndpointResponseFilterSensitiveLog: (obj: UpdateVpcEndpointResponse) => any;
|