@effect-aws/client-opensearch-serverless 1.9.3 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/OpenSearchServerlessService.d.ts +39 -38
- package/dist/cjs/OpenSearchServerlessService.d.ts.map +1 -1
- package/dist/cjs/OpenSearchServerlessService.js +1 -1
- package/dist/cjs/OpenSearchServerlessService.js.map +1 -1
- package/dist/dts/OpenSearchServerlessService.d.ts +39 -38
- package/dist/dts/OpenSearchServerlessService.d.ts.map +1 -1
- package/dist/esm/OpenSearchServerlessService.js +1 -1
- package/dist/esm/OpenSearchServerlessService.js.map +1 -1
- package/package.json +2 -2
- package/src/OpenSearchServerlessService.ts +88 -38
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import { type BatchGetCollectionCommandInput, type BatchGetCollectionCommandOutput, type BatchGetEffectiveLifecyclePolicyCommandInput, type BatchGetEffectiveLifecyclePolicyCommandOutput, type BatchGetLifecyclePolicyCommandInput, type BatchGetLifecyclePolicyCommandOutput, type BatchGetVpcEndpointCommandInput, type BatchGetVpcEndpointCommandOutput, type CreateAccessPolicyCommandInput, type CreateAccessPolicyCommandOutput, type CreateCollectionCommandInput, type CreateCollectionCommandOutput, type CreateLifecyclePolicyCommandInput, type CreateLifecyclePolicyCommandOutput, type CreateSecurityConfigCommandInput, type CreateSecurityConfigCommandOutput, type CreateSecurityPolicyCommandInput, type CreateSecurityPolicyCommandOutput, type CreateVpcEndpointCommandInput, type CreateVpcEndpointCommandOutput, type DeleteAccessPolicyCommandInput, type DeleteAccessPolicyCommandOutput, type DeleteCollectionCommandInput, type DeleteCollectionCommandOutput, type DeleteLifecyclePolicyCommandInput, type DeleteLifecyclePolicyCommandOutput, type DeleteSecurityConfigCommandInput, type DeleteSecurityConfigCommandOutput, type DeleteSecurityPolicyCommandInput, type DeleteSecurityPolicyCommandOutput, type DeleteVpcEndpointCommandInput, type DeleteVpcEndpointCommandOutput, type GetAccessPolicyCommandInput, type GetAccessPolicyCommandOutput, type GetAccountSettingsCommandInput, type GetAccountSettingsCommandOutput, type GetPoliciesStatsCommandInput, type GetPoliciesStatsCommandOutput, type GetSecurityConfigCommandInput, type GetSecurityConfigCommandOutput, type GetSecurityPolicyCommandInput, type GetSecurityPolicyCommandOutput, type ListAccessPoliciesCommandInput, type ListAccessPoliciesCommandOutput, type ListCollectionsCommandInput, type ListCollectionsCommandOutput, type ListLifecyclePoliciesCommandInput, type ListLifecyclePoliciesCommandOutput, type ListSecurityConfigsCommandInput, type ListSecurityConfigsCommandOutput, type ListSecurityPoliciesCommandInput, type ListSecurityPoliciesCommandOutput, type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput, type ListVpcEndpointsCommandInput, type ListVpcEndpointsCommandOutput, type OpenSearchServerlessClient, type OpenSearchServerlessClientConfig, type TagResourceCommandInput, type TagResourceCommandOutput, type UntagResourceCommandInput, type UntagResourceCommandOutput, type UpdateAccessPolicyCommandInput, type UpdateAccessPolicyCommandOutput, type UpdateAccountSettingsCommandInput, type UpdateAccountSettingsCommandOutput, type UpdateCollectionCommandInput, type UpdateCollectionCommandOutput, type UpdateLifecyclePolicyCommandInput, type UpdateLifecyclePolicyCommandOutput, type UpdateSecurityConfigCommandInput, type UpdateSecurityConfigCommandOutput, type UpdateSecurityPolicyCommandInput, type UpdateSecurityPolicyCommandOutput, type UpdateVpcEndpointCommandInput, type UpdateVpcEndpointCommandOutput } from "@aws-sdk/client-opensearchserverless";
|
|
5
5
|
import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
|
|
6
|
+
import type { Cause } from "effect";
|
|
6
7
|
import { Effect, Layer } from "effect";
|
|
7
8
|
import type { ConflictError, InternalServerError, OcuLimitExceededError, ResourceNotFoundError, ServiceQuotaExceededError, ValidationError } from "./Errors.js";
|
|
8
9
|
import * as Instance from "./OpenSearchServerlessClientInstance.js";
|
|
@@ -11,151 +12,151 @@ interface OpenSearchServerlessService$ {
|
|
|
11
12
|
/**
|
|
12
13
|
* @see {@link BatchGetCollectionCommand}
|
|
13
14
|
*/
|
|
14
|
-
batchGetCollection(args: BatchGetCollectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetCollectionCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
15
|
+
batchGetCollection(args: BatchGetCollectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetCollectionCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
15
16
|
/**
|
|
16
17
|
* @see {@link BatchGetEffectiveLifecyclePolicyCommand}
|
|
17
18
|
*/
|
|
18
|
-
batchGetEffectiveLifecyclePolicy(args: BatchGetEffectiveLifecyclePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetEffectiveLifecyclePolicyCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
19
|
+
batchGetEffectiveLifecyclePolicy(args: BatchGetEffectiveLifecyclePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetEffectiveLifecyclePolicyCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
19
20
|
/**
|
|
20
21
|
* @see {@link BatchGetLifecyclePolicyCommand}
|
|
21
22
|
*/
|
|
22
|
-
batchGetLifecyclePolicy(args: BatchGetLifecyclePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetLifecyclePolicyCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
23
|
+
batchGetLifecyclePolicy(args: BatchGetLifecyclePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetLifecyclePolicyCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
23
24
|
/**
|
|
24
25
|
* @see {@link BatchGetVpcEndpointCommand}
|
|
25
26
|
*/
|
|
26
|
-
batchGetVpcEndpoint(args: BatchGetVpcEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetVpcEndpointCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
27
|
+
batchGetVpcEndpoint(args: BatchGetVpcEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetVpcEndpointCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
27
28
|
/**
|
|
28
29
|
* @see {@link CreateAccessPolicyCommand}
|
|
29
30
|
*/
|
|
30
|
-
createAccessPolicy(args: CreateAccessPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateAccessPolicyCommandOutput, SdkError | ConflictError | InternalServerError | ServiceQuotaExceededError | ValidationError>;
|
|
31
|
+
createAccessPolicy(args: CreateAccessPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateAccessPolicyCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ServiceQuotaExceededError | ValidationError>;
|
|
31
32
|
/**
|
|
32
33
|
* @see {@link CreateCollectionCommand}
|
|
33
34
|
*/
|
|
34
|
-
createCollection(args: CreateCollectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateCollectionCommandOutput, SdkError | ConflictError | InternalServerError | OcuLimitExceededError | ServiceQuotaExceededError | ValidationError>;
|
|
35
|
+
createCollection(args: CreateCollectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateCollectionCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | OcuLimitExceededError | ServiceQuotaExceededError | ValidationError>;
|
|
35
36
|
/**
|
|
36
37
|
* @see {@link CreateLifecyclePolicyCommand}
|
|
37
38
|
*/
|
|
38
|
-
createLifecyclePolicy(args: CreateLifecyclePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateLifecyclePolicyCommandOutput, SdkError | ConflictError | InternalServerError | ServiceQuotaExceededError | ValidationError>;
|
|
39
|
+
createLifecyclePolicy(args: CreateLifecyclePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateLifecyclePolicyCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ServiceQuotaExceededError | ValidationError>;
|
|
39
40
|
/**
|
|
40
41
|
* @see {@link CreateSecurityConfigCommand}
|
|
41
42
|
*/
|
|
42
|
-
createSecurityConfig(args: CreateSecurityConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateSecurityConfigCommandOutput, SdkError | ConflictError | InternalServerError | ServiceQuotaExceededError | ValidationError>;
|
|
43
|
+
createSecurityConfig(args: CreateSecurityConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateSecurityConfigCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ServiceQuotaExceededError | ValidationError>;
|
|
43
44
|
/**
|
|
44
45
|
* @see {@link CreateSecurityPolicyCommand}
|
|
45
46
|
*/
|
|
46
|
-
createSecurityPolicy(args: CreateSecurityPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateSecurityPolicyCommandOutput, SdkError | ConflictError | InternalServerError | ServiceQuotaExceededError | ValidationError>;
|
|
47
|
+
createSecurityPolicy(args: CreateSecurityPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateSecurityPolicyCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ServiceQuotaExceededError | ValidationError>;
|
|
47
48
|
/**
|
|
48
49
|
* @see {@link CreateVpcEndpointCommand}
|
|
49
50
|
*/
|
|
50
|
-
createVpcEndpoint(args: CreateVpcEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateVpcEndpointCommandOutput, SdkError | ConflictError | InternalServerError | ServiceQuotaExceededError | ValidationError>;
|
|
51
|
+
createVpcEndpoint(args: CreateVpcEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateVpcEndpointCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ServiceQuotaExceededError | ValidationError>;
|
|
51
52
|
/**
|
|
52
53
|
* @see {@link DeleteAccessPolicyCommand}
|
|
53
54
|
*/
|
|
54
|
-
deleteAccessPolicy(args: DeleteAccessPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteAccessPolicyCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
55
|
+
deleteAccessPolicy(args: DeleteAccessPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteAccessPolicyCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
55
56
|
/**
|
|
56
57
|
* @see {@link DeleteCollectionCommand}
|
|
57
58
|
*/
|
|
58
|
-
deleteCollection(args: DeleteCollectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteCollectionCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
59
|
+
deleteCollection(args: DeleteCollectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteCollectionCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
59
60
|
/**
|
|
60
61
|
* @see {@link DeleteLifecyclePolicyCommand}
|
|
61
62
|
*/
|
|
62
|
-
deleteLifecyclePolicy(args: DeleteLifecyclePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteLifecyclePolicyCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
63
|
+
deleteLifecyclePolicy(args: DeleteLifecyclePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteLifecyclePolicyCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
63
64
|
/**
|
|
64
65
|
* @see {@link DeleteSecurityConfigCommand}
|
|
65
66
|
*/
|
|
66
|
-
deleteSecurityConfig(args: DeleteSecurityConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteSecurityConfigCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
67
|
+
deleteSecurityConfig(args: DeleteSecurityConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteSecurityConfigCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
67
68
|
/**
|
|
68
69
|
* @see {@link DeleteSecurityPolicyCommand}
|
|
69
70
|
*/
|
|
70
|
-
deleteSecurityPolicy(args: DeleteSecurityPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteSecurityPolicyCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
71
|
+
deleteSecurityPolicy(args: DeleteSecurityPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteSecurityPolicyCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
71
72
|
/**
|
|
72
73
|
* @see {@link DeleteVpcEndpointCommand}
|
|
73
74
|
*/
|
|
74
|
-
deleteVpcEndpoint(args: DeleteVpcEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteVpcEndpointCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
75
|
+
deleteVpcEndpoint(args: DeleteVpcEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteVpcEndpointCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
75
76
|
/**
|
|
76
77
|
* @see {@link GetAccessPolicyCommand}
|
|
77
78
|
*/
|
|
78
|
-
getAccessPolicy(args: GetAccessPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAccessPolicyCommandOutput, SdkError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
79
|
+
getAccessPolicy(args: GetAccessPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAccessPolicyCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
79
80
|
/**
|
|
80
81
|
* @see {@link GetAccountSettingsCommand}
|
|
81
82
|
*/
|
|
82
|
-
getAccountSettings(args: GetAccountSettingsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAccountSettingsCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
83
|
+
getAccountSettings(args: GetAccountSettingsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAccountSettingsCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
83
84
|
/**
|
|
84
85
|
* @see {@link GetPoliciesStatsCommand}
|
|
85
86
|
*/
|
|
86
|
-
getPoliciesStats(args: GetPoliciesStatsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPoliciesStatsCommandOutput, SdkError | InternalServerError>;
|
|
87
|
+
getPoliciesStats(args: GetPoliciesStatsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPoliciesStatsCommandOutput, Cause.TimeoutException | SdkError | InternalServerError>;
|
|
87
88
|
/**
|
|
88
89
|
* @see {@link GetSecurityConfigCommand}
|
|
89
90
|
*/
|
|
90
|
-
getSecurityConfig(args: GetSecurityConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSecurityConfigCommandOutput, SdkError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
91
|
+
getSecurityConfig(args: GetSecurityConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSecurityConfigCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
91
92
|
/**
|
|
92
93
|
* @see {@link GetSecurityPolicyCommand}
|
|
93
94
|
*/
|
|
94
|
-
getSecurityPolicy(args: GetSecurityPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSecurityPolicyCommandOutput, SdkError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
95
|
+
getSecurityPolicy(args: GetSecurityPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSecurityPolicyCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
95
96
|
/**
|
|
96
97
|
* @see {@link ListAccessPoliciesCommand}
|
|
97
98
|
*/
|
|
98
|
-
listAccessPolicies(args: ListAccessPoliciesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListAccessPoliciesCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
99
|
+
listAccessPolicies(args: ListAccessPoliciesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListAccessPoliciesCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
99
100
|
/**
|
|
100
101
|
* @see {@link ListCollectionsCommand}
|
|
101
102
|
*/
|
|
102
|
-
listCollections(args: ListCollectionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListCollectionsCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
103
|
+
listCollections(args: ListCollectionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListCollectionsCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
103
104
|
/**
|
|
104
105
|
* @see {@link ListLifecyclePoliciesCommand}
|
|
105
106
|
*/
|
|
106
|
-
listLifecyclePolicies(args: ListLifecyclePoliciesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListLifecyclePoliciesCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
107
|
+
listLifecyclePolicies(args: ListLifecyclePoliciesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListLifecyclePoliciesCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
107
108
|
/**
|
|
108
109
|
* @see {@link ListSecurityConfigsCommand}
|
|
109
110
|
*/
|
|
110
|
-
listSecurityConfigs(args: ListSecurityConfigsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSecurityConfigsCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
111
|
+
listSecurityConfigs(args: ListSecurityConfigsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSecurityConfigsCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
111
112
|
/**
|
|
112
113
|
* @see {@link ListSecurityPoliciesCommand}
|
|
113
114
|
*/
|
|
114
|
-
listSecurityPolicies(args: ListSecurityPoliciesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSecurityPoliciesCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
115
|
+
listSecurityPolicies(args: ListSecurityPoliciesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSecurityPoliciesCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
115
116
|
/**
|
|
116
117
|
* @see {@link ListTagsForResourceCommand}
|
|
117
118
|
*/
|
|
118
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, SdkError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
119
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
119
120
|
/**
|
|
120
121
|
* @see {@link ListVpcEndpointsCommand}
|
|
121
122
|
*/
|
|
122
|
-
listVpcEndpoints(args: ListVpcEndpointsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListVpcEndpointsCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
123
|
+
listVpcEndpoints(args: ListVpcEndpointsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListVpcEndpointsCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
123
124
|
/**
|
|
124
125
|
* @see {@link TagResourceCommand}
|
|
125
126
|
*/
|
|
126
|
-
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ValidationError>;
|
|
127
|
+
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ValidationError>;
|
|
127
128
|
/**
|
|
128
129
|
* @see {@link UntagResourceCommand}
|
|
129
130
|
*/
|
|
130
|
-
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
131
|
+
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
131
132
|
/**
|
|
132
133
|
* @see {@link UpdateAccessPolicyCommand}
|
|
133
134
|
*/
|
|
134
|
-
updateAccessPolicy(args: UpdateAccessPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateAccessPolicyCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
135
|
+
updateAccessPolicy(args: UpdateAccessPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateAccessPolicyCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
135
136
|
/**
|
|
136
137
|
* @see {@link UpdateAccountSettingsCommand}
|
|
137
138
|
*/
|
|
138
|
-
updateAccountSettings(args: UpdateAccountSettingsCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateAccountSettingsCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
139
|
+
updateAccountSettings(args: UpdateAccountSettingsCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateAccountSettingsCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
139
140
|
/**
|
|
140
141
|
* @see {@link UpdateCollectionCommand}
|
|
141
142
|
*/
|
|
142
|
-
updateCollection(args: UpdateCollectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateCollectionCommandOutput, SdkError | ConflictError | InternalServerError | ValidationError>;
|
|
143
|
+
updateCollection(args: UpdateCollectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateCollectionCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ValidationError>;
|
|
143
144
|
/**
|
|
144
145
|
* @see {@link UpdateLifecyclePolicyCommand}
|
|
145
146
|
*/
|
|
146
|
-
updateLifecyclePolicy(args: UpdateLifecyclePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateLifecyclePolicyCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ValidationError>;
|
|
147
|
+
updateLifecyclePolicy(args: UpdateLifecyclePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateLifecyclePolicyCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ValidationError>;
|
|
147
148
|
/**
|
|
148
149
|
* @see {@link UpdateSecurityConfigCommand}
|
|
149
150
|
*/
|
|
150
|
-
updateSecurityConfig(args: UpdateSecurityConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateSecurityConfigCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
151
|
+
updateSecurityConfig(args: UpdateSecurityConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateSecurityConfigCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
151
152
|
/**
|
|
152
153
|
* @see {@link UpdateSecurityPolicyCommand}
|
|
153
154
|
*/
|
|
154
|
-
updateSecurityPolicy(args: UpdateSecurityPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateSecurityPolicyCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ValidationError>;
|
|
155
|
+
updateSecurityPolicy(args: UpdateSecurityPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateSecurityPolicyCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ValidationError>;
|
|
155
156
|
/**
|
|
156
157
|
* @see {@link UpdateVpcEndpointCommand}
|
|
157
158
|
*/
|
|
158
|
-
updateVpcEndpoint(args: UpdateVpcEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateVpcEndpointCommandOutput, SdkError | ConflictError | InternalServerError | ValidationError>;
|
|
159
|
+
updateVpcEndpoint(args: UpdateVpcEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateVpcEndpointCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ValidationError>;
|
|
159
160
|
}
|
|
160
161
|
/**
|
|
161
162
|
* @since 1.0.0
|
|
@@ -163,7 +164,7 @@ interface OpenSearchServerlessService$ {
|
|
|
163
164
|
*/
|
|
164
165
|
export declare const makeOpenSearchServerlessService: Effect.Effect<OpenSearchServerlessService$, never, Instance.OpenSearchServerlessClientInstance>;
|
|
165
166
|
declare const OpenSearchServerlessService_base: import("effect/Context").TagClass<OpenSearchServerlessService, "@effect-aws/client-opensearch-serverless/OpenSearchServerlessService", OpenSearchServerlessService$> & Effect.Tag.Proxy<OpenSearchServerlessService, OpenSearchServerlessService$> & {
|
|
166
|
-
use: <X>(body: (_: OpenSearchServerlessService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, OpenSearchServerlessService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1,
|
|
167
|
+
use: <X>(body: (_: OpenSearchServerlessService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, OpenSearchServerlessService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1, Cause.UnknownException, OpenSearchServerlessService> : Effect.Effect<X, never, OpenSearchServerlessService>;
|
|
167
168
|
};
|
|
168
169
|
/**
|
|
169
170
|
* @since 1.0.0
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OpenSearchServerlessService.d.ts","sourceRoot":"","sources":["../../src/OpenSearchServerlessService.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAEL,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EAEpC,KAAK,4CAA4C,EACjD,KAAK,6CAA6C,EAElD,KAAK,mCAAmC,EACxC,KAAK,oCAAoC,EAEzC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EAErC,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EAEpC,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAElC,KAAK,iCAAiC,EACtC,KAAK,kCAAkC,EAEvC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EAEnC,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EAEpC,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAElC,KAAK,iCAAiC,EACtC,KAAK,kCAAkC,EAEvC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EAEnC,KAAK,2BAA2B,EAChC,KAAK,4BAA4B,EAEjC,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EAEpC,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAElC,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EAEnC,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EAEnC,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EAEpC,KAAK,2BAA2B,EAChC,KAAK,4BAA4B,EAEjC,KAAK,iCAAiC,EACtC,KAAK,kCAAkC,EAEvC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EAErC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EAErC,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAClC,KAAK,0BAA0B,EAC/B,KAAK,gCAAgC,EAErC,KAAK,uBAAuB,EAC5B,KAAK,wBAAwB,EAE7B,KAAK,yBAAyB,EAC9B,KAAK,0BAA0B,EAE/B,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EAEpC,KAAK,iCAAiC,EACtC,KAAK,kCAAkC,EAEvC,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAElC,KAAK,iCAAiC,EACtC,KAAK,kCAAkC,EAEvC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EACpC,MAAM,sCAAsC,CAAC;AAC9C,OAAO,KAAK,EAAE,kBAAkB,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAEvF,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;AACvC,OAAO,KAAK,EACV,aAAa,EACb,mBAAmB,EACnB,qBAAqB,EACrB,qBAAqB,EACrB,yBAAyB,EACzB,eAAe,EAChB,MAAM,aAAa,CAAC;AAErB,OAAO,KAAK,QAAQ,MAAM,yCAAyC,CAAC;AA2CpE,UAAU,4BAA4B;IACpC,QAAQ,CAAC,CAAC,EAAE,OAAO,MAAM,CAAC;IAE1B;;OAEG;IACH,kBAAkB,CAChB,IAAI,EAAE,8BAA8B,EACpC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,+BAA+B,EAC/B,QAAQ,GAAG,mBAAmB,GAAG,eAAe,
|
|
1
|
+
{"version":3,"file":"OpenSearchServerlessService.d.ts","sourceRoot":"","sources":["../../src/OpenSearchServerlessService.ts"],"names":[],"mappings":"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"}
|
|
@@ -78,7 +78,7 @@ const commands = {
|
|
|
78
78
|
*/
|
|
79
79
|
exports.makeOpenSearchServerlessService = effect_1.Effect.gen(function* () {
|
|
80
80
|
const client = yield* Instance.OpenSearchServerlessClientInstance;
|
|
81
|
-
return commons_1.Service.fromClientAndCommands(client, commands, {
|
|
81
|
+
return yield* commons_1.Service.fromClientAndCommands(client, commands, {
|
|
82
82
|
errorTags: Errors_js_1.AllServiceErrors,
|
|
83
83
|
resolveClientConfig: OpenSearchServerlessServiceConfig.toOpenSearchServerlessClientConfig,
|
|
84
84
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OpenSearchServerlessService.js","sourceRoot":"","sources":["../../src/OpenSearchServerlessService.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,sFAkH8C;AAE9C,iDAA8C;
|
|
1
|
+
{"version":3,"file":"OpenSearchServerlessService.js","sourceRoot":"","sources":["../../src/OpenSearchServerlessService.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import { type BatchGetCollectionCommandInput, type BatchGetCollectionCommandOutput, type BatchGetEffectiveLifecyclePolicyCommandInput, type BatchGetEffectiveLifecyclePolicyCommandOutput, type BatchGetLifecyclePolicyCommandInput, type BatchGetLifecyclePolicyCommandOutput, type BatchGetVpcEndpointCommandInput, type BatchGetVpcEndpointCommandOutput, type CreateAccessPolicyCommandInput, type CreateAccessPolicyCommandOutput, type CreateCollectionCommandInput, type CreateCollectionCommandOutput, type CreateLifecyclePolicyCommandInput, type CreateLifecyclePolicyCommandOutput, type CreateSecurityConfigCommandInput, type CreateSecurityConfigCommandOutput, type CreateSecurityPolicyCommandInput, type CreateSecurityPolicyCommandOutput, type CreateVpcEndpointCommandInput, type CreateVpcEndpointCommandOutput, type DeleteAccessPolicyCommandInput, type DeleteAccessPolicyCommandOutput, type DeleteCollectionCommandInput, type DeleteCollectionCommandOutput, type DeleteLifecyclePolicyCommandInput, type DeleteLifecyclePolicyCommandOutput, type DeleteSecurityConfigCommandInput, type DeleteSecurityConfigCommandOutput, type DeleteSecurityPolicyCommandInput, type DeleteSecurityPolicyCommandOutput, type DeleteVpcEndpointCommandInput, type DeleteVpcEndpointCommandOutput, type GetAccessPolicyCommandInput, type GetAccessPolicyCommandOutput, type GetAccountSettingsCommandInput, type GetAccountSettingsCommandOutput, type GetPoliciesStatsCommandInput, type GetPoliciesStatsCommandOutput, type GetSecurityConfigCommandInput, type GetSecurityConfigCommandOutput, type GetSecurityPolicyCommandInput, type GetSecurityPolicyCommandOutput, type ListAccessPoliciesCommandInput, type ListAccessPoliciesCommandOutput, type ListCollectionsCommandInput, type ListCollectionsCommandOutput, type ListLifecyclePoliciesCommandInput, type ListLifecyclePoliciesCommandOutput, type ListSecurityConfigsCommandInput, type ListSecurityConfigsCommandOutput, type ListSecurityPoliciesCommandInput, type ListSecurityPoliciesCommandOutput, type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput, type ListVpcEndpointsCommandInput, type ListVpcEndpointsCommandOutput, type OpenSearchServerlessClient, type OpenSearchServerlessClientConfig, type TagResourceCommandInput, type TagResourceCommandOutput, type UntagResourceCommandInput, type UntagResourceCommandOutput, type UpdateAccessPolicyCommandInput, type UpdateAccessPolicyCommandOutput, type UpdateAccountSettingsCommandInput, type UpdateAccountSettingsCommandOutput, type UpdateCollectionCommandInput, type UpdateCollectionCommandOutput, type UpdateLifecyclePolicyCommandInput, type UpdateLifecyclePolicyCommandOutput, type UpdateSecurityConfigCommandInput, type UpdateSecurityConfigCommandOutput, type UpdateSecurityPolicyCommandInput, type UpdateSecurityPolicyCommandOutput, type UpdateVpcEndpointCommandInput, type UpdateVpcEndpointCommandOutput } from "@aws-sdk/client-opensearchserverless";
|
|
5
5
|
import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
|
|
6
|
+
import type { Cause } from "effect";
|
|
6
7
|
import { Effect, Layer } from "effect";
|
|
7
8
|
import type { ConflictError, InternalServerError, OcuLimitExceededError, ResourceNotFoundError, ServiceQuotaExceededError, ValidationError } from "./Errors.js";
|
|
8
9
|
import * as Instance from "./OpenSearchServerlessClientInstance.js";
|
|
@@ -11,151 +12,151 @@ interface OpenSearchServerlessService$ {
|
|
|
11
12
|
/**
|
|
12
13
|
* @see {@link BatchGetCollectionCommand}
|
|
13
14
|
*/
|
|
14
|
-
batchGetCollection(args: BatchGetCollectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetCollectionCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
15
|
+
batchGetCollection(args: BatchGetCollectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetCollectionCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
15
16
|
/**
|
|
16
17
|
* @see {@link BatchGetEffectiveLifecyclePolicyCommand}
|
|
17
18
|
*/
|
|
18
|
-
batchGetEffectiveLifecyclePolicy(args: BatchGetEffectiveLifecyclePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetEffectiveLifecyclePolicyCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
19
|
+
batchGetEffectiveLifecyclePolicy(args: BatchGetEffectiveLifecyclePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetEffectiveLifecyclePolicyCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
19
20
|
/**
|
|
20
21
|
* @see {@link BatchGetLifecyclePolicyCommand}
|
|
21
22
|
*/
|
|
22
|
-
batchGetLifecyclePolicy(args: BatchGetLifecyclePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetLifecyclePolicyCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
23
|
+
batchGetLifecyclePolicy(args: BatchGetLifecyclePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetLifecyclePolicyCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
23
24
|
/**
|
|
24
25
|
* @see {@link BatchGetVpcEndpointCommand}
|
|
25
26
|
*/
|
|
26
|
-
batchGetVpcEndpoint(args: BatchGetVpcEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetVpcEndpointCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
27
|
+
batchGetVpcEndpoint(args: BatchGetVpcEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<BatchGetVpcEndpointCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
27
28
|
/**
|
|
28
29
|
* @see {@link CreateAccessPolicyCommand}
|
|
29
30
|
*/
|
|
30
|
-
createAccessPolicy(args: CreateAccessPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateAccessPolicyCommandOutput, SdkError | ConflictError | InternalServerError | ServiceQuotaExceededError | ValidationError>;
|
|
31
|
+
createAccessPolicy(args: CreateAccessPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateAccessPolicyCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ServiceQuotaExceededError | ValidationError>;
|
|
31
32
|
/**
|
|
32
33
|
* @see {@link CreateCollectionCommand}
|
|
33
34
|
*/
|
|
34
|
-
createCollection(args: CreateCollectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateCollectionCommandOutput, SdkError | ConflictError | InternalServerError | OcuLimitExceededError | ServiceQuotaExceededError | ValidationError>;
|
|
35
|
+
createCollection(args: CreateCollectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateCollectionCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | OcuLimitExceededError | ServiceQuotaExceededError | ValidationError>;
|
|
35
36
|
/**
|
|
36
37
|
* @see {@link CreateLifecyclePolicyCommand}
|
|
37
38
|
*/
|
|
38
|
-
createLifecyclePolicy(args: CreateLifecyclePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateLifecyclePolicyCommandOutput, SdkError | ConflictError | InternalServerError | ServiceQuotaExceededError | ValidationError>;
|
|
39
|
+
createLifecyclePolicy(args: CreateLifecyclePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateLifecyclePolicyCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ServiceQuotaExceededError | ValidationError>;
|
|
39
40
|
/**
|
|
40
41
|
* @see {@link CreateSecurityConfigCommand}
|
|
41
42
|
*/
|
|
42
|
-
createSecurityConfig(args: CreateSecurityConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateSecurityConfigCommandOutput, SdkError | ConflictError | InternalServerError | ServiceQuotaExceededError | ValidationError>;
|
|
43
|
+
createSecurityConfig(args: CreateSecurityConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateSecurityConfigCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ServiceQuotaExceededError | ValidationError>;
|
|
43
44
|
/**
|
|
44
45
|
* @see {@link CreateSecurityPolicyCommand}
|
|
45
46
|
*/
|
|
46
|
-
createSecurityPolicy(args: CreateSecurityPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateSecurityPolicyCommandOutput, SdkError | ConflictError | InternalServerError | ServiceQuotaExceededError | ValidationError>;
|
|
47
|
+
createSecurityPolicy(args: CreateSecurityPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateSecurityPolicyCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ServiceQuotaExceededError | ValidationError>;
|
|
47
48
|
/**
|
|
48
49
|
* @see {@link CreateVpcEndpointCommand}
|
|
49
50
|
*/
|
|
50
|
-
createVpcEndpoint(args: CreateVpcEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateVpcEndpointCommandOutput, SdkError | ConflictError | InternalServerError | ServiceQuotaExceededError | ValidationError>;
|
|
51
|
+
createVpcEndpoint(args: CreateVpcEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateVpcEndpointCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ServiceQuotaExceededError | ValidationError>;
|
|
51
52
|
/**
|
|
52
53
|
* @see {@link DeleteAccessPolicyCommand}
|
|
53
54
|
*/
|
|
54
|
-
deleteAccessPolicy(args: DeleteAccessPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteAccessPolicyCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
55
|
+
deleteAccessPolicy(args: DeleteAccessPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteAccessPolicyCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
55
56
|
/**
|
|
56
57
|
* @see {@link DeleteCollectionCommand}
|
|
57
58
|
*/
|
|
58
|
-
deleteCollection(args: DeleteCollectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteCollectionCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
59
|
+
deleteCollection(args: DeleteCollectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteCollectionCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
59
60
|
/**
|
|
60
61
|
* @see {@link DeleteLifecyclePolicyCommand}
|
|
61
62
|
*/
|
|
62
|
-
deleteLifecyclePolicy(args: DeleteLifecyclePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteLifecyclePolicyCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
63
|
+
deleteLifecyclePolicy(args: DeleteLifecyclePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteLifecyclePolicyCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
63
64
|
/**
|
|
64
65
|
* @see {@link DeleteSecurityConfigCommand}
|
|
65
66
|
*/
|
|
66
|
-
deleteSecurityConfig(args: DeleteSecurityConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteSecurityConfigCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
67
|
+
deleteSecurityConfig(args: DeleteSecurityConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteSecurityConfigCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
67
68
|
/**
|
|
68
69
|
* @see {@link DeleteSecurityPolicyCommand}
|
|
69
70
|
*/
|
|
70
|
-
deleteSecurityPolicy(args: DeleteSecurityPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteSecurityPolicyCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
71
|
+
deleteSecurityPolicy(args: DeleteSecurityPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteSecurityPolicyCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
71
72
|
/**
|
|
72
73
|
* @see {@link DeleteVpcEndpointCommand}
|
|
73
74
|
*/
|
|
74
|
-
deleteVpcEndpoint(args: DeleteVpcEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteVpcEndpointCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
75
|
+
deleteVpcEndpoint(args: DeleteVpcEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteVpcEndpointCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
75
76
|
/**
|
|
76
77
|
* @see {@link GetAccessPolicyCommand}
|
|
77
78
|
*/
|
|
78
|
-
getAccessPolicy(args: GetAccessPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAccessPolicyCommandOutput, SdkError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
79
|
+
getAccessPolicy(args: GetAccessPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAccessPolicyCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
79
80
|
/**
|
|
80
81
|
* @see {@link GetAccountSettingsCommand}
|
|
81
82
|
*/
|
|
82
|
-
getAccountSettings(args: GetAccountSettingsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAccountSettingsCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
83
|
+
getAccountSettings(args: GetAccountSettingsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetAccountSettingsCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
83
84
|
/**
|
|
84
85
|
* @see {@link GetPoliciesStatsCommand}
|
|
85
86
|
*/
|
|
86
|
-
getPoliciesStats(args: GetPoliciesStatsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPoliciesStatsCommandOutput, SdkError | InternalServerError>;
|
|
87
|
+
getPoliciesStats(args: GetPoliciesStatsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPoliciesStatsCommandOutput, Cause.TimeoutException | SdkError | InternalServerError>;
|
|
87
88
|
/**
|
|
88
89
|
* @see {@link GetSecurityConfigCommand}
|
|
89
90
|
*/
|
|
90
|
-
getSecurityConfig(args: GetSecurityConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSecurityConfigCommandOutput, SdkError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
91
|
+
getSecurityConfig(args: GetSecurityConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSecurityConfigCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
91
92
|
/**
|
|
92
93
|
* @see {@link GetSecurityPolicyCommand}
|
|
93
94
|
*/
|
|
94
|
-
getSecurityPolicy(args: GetSecurityPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSecurityPolicyCommandOutput, SdkError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
95
|
+
getSecurityPolicy(args: GetSecurityPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetSecurityPolicyCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
95
96
|
/**
|
|
96
97
|
* @see {@link ListAccessPoliciesCommand}
|
|
97
98
|
*/
|
|
98
|
-
listAccessPolicies(args: ListAccessPoliciesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListAccessPoliciesCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
99
|
+
listAccessPolicies(args: ListAccessPoliciesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListAccessPoliciesCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
99
100
|
/**
|
|
100
101
|
* @see {@link ListCollectionsCommand}
|
|
101
102
|
*/
|
|
102
|
-
listCollections(args: ListCollectionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListCollectionsCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
103
|
+
listCollections(args: ListCollectionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListCollectionsCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
103
104
|
/**
|
|
104
105
|
* @see {@link ListLifecyclePoliciesCommand}
|
|
105
106
|
*/
|
|
106
|
-
listLifecyclePolicies(args: ListLifecyclePoliciesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListLifecyclePoliciesCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
107
|
+
listLifecyclePolicies(args: ListLifecyclePoliciesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListLifecyclePoliciesCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
107
108
|
/**
|
|
108
109
|
* @see {@link ListSecurityConfigsCommand}
|
|
109
110
|
*/
|
|
110
|
-
listSecurityConfigs(args: ListSecurityConfigsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSecurityConfigsCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
111
|
+
listSecurityConfigs(args: ListSecurityConfigsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSecurityConfigsCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
111
112
|
/**
|
|
112
113
|
* @see {@link ListSecurityPoliciesCommand}
|
|
113
114
|
*/
|
|
114
|
-
listSecurityPolicies(args: ListSecurityPoliciesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSecurityPoliciesCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
115
|
+
listSecurityPolicies(args: ListSecurityPoliciesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListSecurityPoliciesCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
115
116
|
/**
|
|
116
117
|
* @see {@link ListTagsForResourceCommand}
|
|
117
118
|
*/
|
|
118
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, SdkError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
119
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
119
120
|
/**
|
|
120
121
|
* @see {@link ListVpcEndpointsCommand}
|
|
121
122
|
*/
|
|
122
|
-
listVpcEndpoints(args: ListVpcEndpointsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListVpcEndpointsCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
123
|
+
listVpcEndpoints(args: ListVpcEndpointsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListVpcEndpointsCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
123
124
|
/**
|
|
124
125
|
* @see {@link TagResourceCommand}
|
|
125
126
|
*/
|
|
126
|
-
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ValidationError>;
|
|
127
|
+
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ValidationError>;
|
|
127
128
|
/**
|
|
128
129
|
* @see {@link UntagResourceCommand}
|
|
129
130
|
*/
|
|
130
|
-
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
131
|
+
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
131
132
|
/**
|
|
132
133
|
* @see {@link UpdateAccessPolicyCommand}
|
|
133
134
|
*/
|
|
134
|
-
updateAccessPolicy(args: UpdateAccessPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateAccessPolicyCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
135
|
+
updateAccessPolicy(args: UpdateAccessPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateAccessPolicyCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
135
136
|
/**
|
|
136
137
|
* @see {@link UpdateAccountSettingsCommand}
|
|
137
138
|
*/
|
|
138
|
-
updateAccountSettings(args: UpdateAccountSettingsCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateAccountSettingsCommandOutput, SdkError | InternalServerError | ValidationError>;
|
|
139
|
+
updateAccountSettings(args: UpdateAccountSettingsCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateAccountSettingsCommandOutput, Cause.TimeoutException | SdkError | InternalServerError | ValidationError>;
|
|
139
140
|
/**
|
|
140
141
|
* @see {@link UpdateCollectionCommand}
|
|
141
142
|
*/
|
|
142
|
-
updateCollection(args: UpdateCollectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateCollectionCommandOutput, SdkError | ConflictError | InternalServerError | ValidationError>;
|
|
143
|
+
updateCollection(args: UpdateCollectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateCollectionCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ValidationError>;
|
|
143
144
|
/**
|
|
144
145
|
* @see {@link UpdateLifecyclePolicyCommand}
|
|
145
146
|
*/
|
|
146
|
-
updateLifecyclePolicy(args: UpdateLifecyclePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateLifecyclePolicyCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ValidationError>;
|
|
147
|
+
updateLifecyclePolicy(args: UpdateLifecyclePolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateLifecyclePolicyCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ValidationError>;
|
|
147
148
|
/**
|
|
148
149
|
* @see {@link UpdateSecurityConfigCommand}
|
|
149
150
|
*/
|
|
150
|
-
updateSecurityConfig(args: UpdateSecurityConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateSecurityConfigCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
151
|
+
updateSecurityConfig(args: UpdateSecurityConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateSecurityConfigCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError>;
|
|
151
152
|
/**
|
|
152
153
|
* @see {@link UpdateSecurityPolicyCommand}
|
|
153
154
|
*/
|
|
154
|
-
updateSecurityPolicy(args: UpdateSecurityPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateSecurityPolicyCommandOutput, SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ValidationError>;
|
|
155
|
+
updateSecurityPolicy(args: UpdateSecurityPolicyCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateSecurityPolicyCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ServiceQuotaExceededError | ValidationError>;
|
|
155
156
|
/**
|
|
156
157
|
* @see {@link UpdateVpcEndpointCommand}
|
|
157
158
|
*/
|
|
158
|
-
updateVpcEndpoint(args: UpdateVpcEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateVpcEndpointCommandOutput, SdkError | ConflictError | InternalServerError | ValidationError>;
|
|
159
|
+
updateVpcEndpoint(args: UpdateVpcEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateVpcEndpointCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ValidationError>;
|
|
159
160
|
}
|
|
160
161
|
/**
|
|
161
162
|
* @since 1.0.0
|
|
@@ -163,7 +164,7 @@ interface OpenSearchServerlessService$ {
|
|
|
163
164
|
*/
|
|
164
165
|
export declare const makeOpenSearchServerlessService: Effect.Effect<OpenSearchServerlessService$, never, Instance.OpenSearchServerlessClientInstance>;
|
|
165
166
|
declare const OpenSearchServerlessService_base: import("effect/Context").TagClass<OpenSearchServerlessService, "@effect-aws/client-opensearch-serverless/OpenSearchServerlessService", OpenSearchServerlessService$> & Effect.Tag.Proxy<OpenSearchServerlessService, OpenSearchServerlessService$> & {
|
|
166
|
-
use: <X>(body: (_: OpenSearchServerlessService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, OpenSearchServerlessService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1,
|
|
167
|
+
use: <X>(body: (_: OpenSearchServerlessService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, OpenSearchServerlessService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1, Cause.UnknownException, OpenSearchServerlessService> : Effect.Effect<X, never, OpenSearchServerlessService>;
|
|
167
168
|
};
|
|
168
169
|
/**
|
|
169
170
|
* @since 1.0.0
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OpenSearchServerlessService.d.ts","sourceRoot":"","sources":["../../src/OpenSearchServerlessService.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAEL,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EAEpC,KAAK,4CAA4C,EACjD,KAAK,6CAA6C,EAElD,KAAK,mCAAmC,EACxC,KAAK,oCAAoC,EAEzC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EAErC,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EAEpC,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAElC,KAAK,iCAAiC,EACtC,KAAK,kCAAkC,EAEvC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EAEnC,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EAEpC,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAElC,KAAK,iCAAiC,EACtC,KAAK,kCAAkC,EAEvC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EAEnC,KAAK,2BAA2B,EAChC,KAAK,4BAA4B,EAEjC,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EAEpC,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAElC,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EAEnC,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EAEnC,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EAEpC,KAAK,2BAA2B,EAChC,KAAK,4BAA4B,EAEjC,KAAK,iCAAiC,EACtC,KAAK,kCAAkC,EAEvC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EAErC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,+BAA+B,EACpC,KAAK,gCAAgC,EAErC,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAClC,KAAK,0BAA0B,EAC/B,KAAK,gCAAgC,EAErC,KAAK,uBAAuB,EAC5B,KAAK,wBAAwB,EAE7B,KAAK,yBAAyB,EAC9B,KAAK,0BAA0B,EAE/B,KAAK,8BAA8B,EACnC,KAAK,+BAA+B,EAEpC,KAAK,iCAAiC,EACtC,KAAK,kCAAkC,EAEvC,KAAK,4BAA4B,EACjC,KAAK,6BAA6B,EAElC,KAAK,iCAAiC,EACtC,KAAK,kCAAkC,EAEvC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,gCAAgC,EACrC,KAAK,iCAAiC,EAEtC,KAAK,6BAA6B,EAClC,KAAK,8BAA8B,EACpC,MAAM,sCAAsC,CAAC;AAC9C,OAAO,KAAK,EAAE,kBAAkB,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAEvF,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;AACvC,OAAO,KAAK,EACV,aAAa,EACb,mBAAmB,EACnB,qBAAqB,EACrB,qBAAqB,EACrB,yBAAyB,EACzB,eAAe,EAChB,MAAM,aAAa,CAAC;AAErB,OAAO,KAAK,QAAQ,MAAM,yCAAyC,CAAC;AA2CpE,UAAU,4BAA4B;IACpC,QAAQ,CAAC,CAAC,EAAE,OAAO,MAAM,CAAC;IAE1B;;OAEG;IACH,kBAAkB,CAChB,IAAI,EAAE,8BAA8B,EACpC,OAAO,CAAC,EAAE,kBAAkB,GAC3B,MAAM,CAAC,MAAM,CACd,+BAA+B,EAC/B,QAAQ,GAAG,mBAAmB,GAAG,eAAe,
|
|
1
|
+
{"version":3,"file":"OpenSearchServerlessService.d.ts","sourceRoot":"","sources":["../../src/OpenSearchServerlessService.ts"],"names":[],"mappings":"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"}
|
|
@@ -52,7 +52,7 @@ const commands = {
|
|
|
52
52
|
*/
|
|
53
53
|
export const makeOpenSearchServerlessService = Effect.gen(function* () {
|
|
54
54
|
const client = yield* Instance.OpenSearchServerlessClientInstance;
|
|
55
|
-
return Service.fromClientAndCommands(client, commands, {
|
|
55
|
+
return yield* Service.fromClientAndCommands(client, commands, {
|
|
56
56
|
errorTags: AllServiceErrors,
|
|
57
57
|
resolveClientConfig: OpenSearchServerlessServiceConfig.toOpenSearchServerlessClientConfig,
|
|
58
58
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OpenSearchServerlessService.js","sourceRoot":"","sources":["../../src/OpenSearchServerlessService.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EACL,yBAAyB,EAGzB,uCAAuC,EAGvC,8BAA8B,EAG9B,0BAA0B,EAG1B,yBAAyB,EAGzB,uBAAuB,EAGvB,4BAA4B,EAG5B,2BAA2B,EAG3B,2BAA2B,EAG3B,wBAAwB,EAGxB,yBAAyB,EAGzB,uBAAuB,EAGvB,4BAA4B,EAG5B,2BAA2B,EAG3B,2BAA2B,EAG3B,wBAAwB,EAGxB,sBAAsB,EAGtB,yBAAyB,EAGzB,uBAAuB,EAGvB,wBAAwB,EAGxB,wBAAwB,EAGxB,yBAAyB,EAGzB,sBAAsB,EAGtB,4BAA4B,EAG5B,0BAA0B,EAG1B,2BAA2B,EAG3B,0BAA0B,EAG1B,uBAAuB,EAKvB,kBAAkB,EAGlB,oBAAoB,EAGpB,yBAAyB,EAGzB,4BAA4B,EAG5B,uBAAuB,EAGvB,4BAA4B,EAG5B,2BAA2B,EAG3B,2BAA2B,EAG3B,wBAAwB,GAGzB,MAAM,sCAAsC,CAAC;AAE9C,OAAO,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"OpenSearchServerlessService.js","sourceRoot":"","sources":["../../src/OpenSearchServerlessService.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-aws/client-opensearch-serverless",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.0",
|
|
4
4
|
"description": "Effectful AWS OpenSearch Serverless client",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"homepage": "https://floydspace.github.io/effect-aws/docs/client-opensearch-serverless",
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@aws-sdk/client-opensearchserverless": "^3",
|
|
19
|
-
"@effect-aws/commons": "^0.
|
|
19
|
+
"@effect-aws/commons": "^0.3.0"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"effect": ">=3.0.4 <4.0.0"
|
|
@@ -118,6 +118,7 @@ import {
|
|
|
118
118
|
} from "@aws-sdk/client-opensearchserverless";
|
|
119
119
|
import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
|
|
120
120
|
import { Service } from "@effect-aws/commons";
|
|
121
|
+
import type { Cause } from "effect";
|
|
121
122
|
import { Effect, Layer } from "effect";
|
|
122
123
|
import type {
|
|
123
124
|
ConflictError,
|
|
@@ -182,7 +183,7 @@ interface OpenSearchServerlessService$ {
|
|
|
182
183
|
options?: HttpHandlerOptions,
|
|
183
184
|
): Effect.Effect<
|
|
184
185
|
BatchGetCollectionCommandOutput,
|
|
185
|
-
SdkError | InternalServerError | ValidationError
|
|
186
|
+
Cause.TimeoutException | SdkError | InternalServerError | ValidationError
|
|
186
187
|
>;
|
|
187
188
|
|
|
188
189
|
/**
|
|
@@ -193,7 +194,7 @@ interface OpenSearchServerlessService$ {
|
|
|
193
194
|
options?: HttpHandlerOptions,
|
|
194
195
|
): Effect.Effect<
|
|
195
196
|
BatchGetEffectiveLifecyclePolicyCommandOutput,
|
|
196
|
-
SdkError | InternalServerError | ValidationError
|
|
197
|
+
Cause.TimeoutException | SdkError | InternalServerError | ValidationError
|
|
197
198
|
>;
|
|
198
199
|
|
|
199
200
|
/**
|
|
@@ -204,7 +205,7 @@ interface OpenSearchServerlessService$ {
|
|
|
204
205
|
options?: HttpHandlerOptions,
|
|
205
206
|
): Effect.Effect<
|
|
206
207
|
BatchGetLifecyclePolicyCommandOutput,
|
|
207
|
-
SdkError | InternalServerError | ValidationError
|
|
208
|
+
Cause.TimeoutException | SdkError | InternalServerError | ValidationError
|
|
208
209
|
>;
|
|
209
210
|
|
|
210
211
|
/**
|
|
@@ -215,7 +216,7 @@ interface OpenSearchServerlessService$ {
|
|
|
215
216
|
options?: HttpHandlerOptions,
|
|
216
217
|
): Effect.Effect<
|
|
217
218
|
BatchGetVpcEndpointCommandOutput,
|
|
218
|
-
SdkError | InternalServerError | ValidationError
|
|
219
|
+
Cause.TimeoutException | SdkError | InternalServerError | ValidationError
|
|
219
220
|
>;
|
|
220
221
|
|
|
221
222
|
/**
|
|
@@ -226,7 +227,12 @@ interface OpenSearchServerlessService$ {
|
|
|
226
227
|
options?: HttpHandlerOptions,
|
|
227
228
|
): Effect.Effect<
|
|
228
229
|
CreateAccessPolicyCommandOutput,
|
|
229
|
-
|
|
230
|
+
| Cause.TimeoutException
|
|
231
|
+
| SdkError
|
|
232
|
+
| ConflictError
|
|
233
|
+
| InternalServerError
|
|
234
|
+
| ServiceQuotaExceededError
|
|
235
|
+
| ValidationError
|
|
230
236
|
>;
|
|
231
237
|
|
|
232
238
|
/**
|
|
@@ -237,7 +243,13 @@ interface OpenSearchServerlessService$ {
|
|
|
237
243
|
options?: HttpHandlerOptions,
|
|
238
244
|
): Effect.Effect<
|
|
239
245
|
CreateCollectionCommandOutput,
|
|
240
|
-
|
|
246
|
+
| Cause.TimeoutException
|
|
247
|
+
| SdkError
|
|
248
|
+
| ConflictError
|
|
249
|
+
| InternalServerError
|
|
250
|
+
| OcuLimitExceededError
|
|
251
|
+
| ServiceQuotaExceededError
|
|
252
|
+
| ValidationError
|
|
241
253
|
>;
|
|
242
254
|
|
|
243
255
|
/**
|
|
@@ -248,7 +260,12 @@ interface OpenSearchServerlessService$ {
|
|
|
248
260
|
options?: HttpHandlerOptions,
|
|
249
261
|
): Effect.Effect<
|
|
250
262
|
CreateLifecyclePolicyCommandOutput,
|
|
251
|
-
|
|
263
|
+
| Cause.TimeoutException
|
|
264
|
+
| SdkError
|
|
265
|
+
| ConflictError
|
|
266
|
+
| InternalServerError
|
|
267
|
+
| ServiceQuotaExceededError
|
|
268
|
+
| ValidationError
|
|
252
269
|
>;
|
|
253
270
|
|
|
254
271
|
/**
|
|
@@ -259,7 +276,12 @@ interface OpenSearchServerlessService$ {
|
|
|
259
276
|
options?: HttpHandlerOptions,
|
|
260
277
|
): Effect.Effect<
|
|
261
278
|
CreateSecurityConfigCommandOutput,
|
|
262
|
-
|
|
279
|
+
| Cause.TimeoutException
|
|
280
|
+
| SdkError
|
|
281
|
+
| ConflictError
|
|
282
|
+
| InternalServerError
|
|
283
|
+
| ServiceQuotaExceededError
|
|
284
|
+
| ValidationError
|
|
263
285
|
>;
|
|
264
286
|
|
|
265
287
|
/**
|
|
@@ -270,7 +292,12 @@ interface OpenSearchServerlessService$ {
|
|
|
270
292
|
options?: HttpHandlerOptions,
|
|
271
293
|
): Effect.Effect<
|
|
272
294
|
CreateSecurityPolicyCommandOutput,
|
|
273
|
-
|
|
295
|
+
| Cause.TimeoutException
|
|
296
|
+
| SdkError
|
|
297
|
+
| ConflictError
|
|
298
|
+
| InternalServerError
|
|
299
|
+
| ServiceQuotaExceededError
|
|
300
|
+
| ValidationError
|
|
274
301
|
>;
|
|
275
302
|
|
|
276
303
|
/**
|
|
@@ -281,7 +308,12 @@ interface OpenSearchServerlessService$ {
|
|
|
281
308
|
options?: HttpHandlerOptions,
|
|
282
309
|
): Effect.Effect<
|
|
283
310
|
CreateVpcEndpointCommandOutput,
|
|
284
|
-
|
|
311
|
+
| Cause.TimeoutException
|
|
312
|
+
| SdkError
|
|
313
|
+
| ConflictError
|
|
314
|
+
| InternalServerError
|
|
315
|
+
| ServiceQuotaExceededError
|
|
316
|
+
| ValidationError
|
|
285
317
|
>;
|
|
286
318
|
|
|
287
319
|
/**
|
|
@@ -292,7 +324,7 @@ interface OpenSearchServerlessService$ {
|
|
|
292
324
|
options?: HttpHandlerOptions,
|
|
293
325
|
): Effect.Effect<
|
|
294
326
|
DeleteAccessPolicyCommandOutput,
|
|
295
|
-
SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
327
|
+
Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
296
328
|
>;
|
|
297
329
|
|
|
298
330
|
/**
|
|
@@ -303,7 +335,7 @@ interface OpenSearchServerlessService$ {
|
|
|
303
335
|
options?: HttpHandlerOptions,
|
|
304
336
|
): Effect.Effect<
|
|
305
337
|
DeleteCollectionCommandOutput,
|
|
306
|
-
SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
338
|
+
Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
307
339
|
>;
|
|
308
340
|
|
|
309
341
|
/**
|
|
@@ -314,7 +346,7 @@ interface OpenSearchServerlessService$ {
|
|
|
314
346
|
options?: HttpHandlerOptions,
|
|
315
347
|
): Effect.Effect<
|
|
316
348
|
DeleteLifecyclePolicyCommandOutput,
|
|
317
|
-
SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
349
|
+
Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
318
350
|
>;
|
|
319
351
|
|
|
320
352
|
/**
|
|
@@ -325,7 +357,7 @@ interface OpenSearchServerlessService$ {
|
|
|
325
357
|
options?: HttpHandlerOptions,
|
|
326
358
|
): Effect.Effect<
|
|
327
359
|
DeleteSecurityConfigCommandOutput,
|
|
328
|
-
SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
360
|
+
Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
329
361
|
>;
|
|
330
362
|
|
|
331
363
|
/**
|
|
@@ -336,7 +368,7 @@ interface OpenSearchServerlessService$ {
|
|
|
336
368
|
options?: HttpHandlerOptions,
|
|
337
369
|
): Effect.Effect<
|
|
338
370
|
DeleteSecurityPolicyCommandOutput,
|
|
339
|
-
SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
371
|
+
Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
340
372
|
>;
|
|
341
373
|
|
|
342
374
|
/**
|
|
@@ -347,7 +379,7 @@ interface OpenSearchServerlessService$ {
|
|
|
347
379
|
options?: HttpHandlerOptions,
|
|
348
380
|
): Effect.Effect<
|
|
349
381
|
DeleteVpcEndpointCommandOutput,
|
|
350
|
-
SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
382
|
+
Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
351
383
|
>;
|
|
352
384
|
|
|
353
385
|
/**
|
|
@@ -358,7 +390,7 @@ interface OpenSearchServerlessService$ {
|
|
|
358
390
|
options?: HttpHandlerOptions,
|
|
359
391
|
): Effect.Effect<
|
|
360
392
|
GetAccessPolicyCommandOutput,
|
|
361
|
-
SdkError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
393
|
+
Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
362
394
|
>;
|
|
363
395
|
|
|
364
396
|
/**
|
|
@@ -369,7 +401,7 @@ interface OpenSearchServerlessService$ {
|
|
|
369
401
|
options?: HttpHandlerOptions,
|
|
370
402
|
): Effect.Effect<
|
|
371
403
|
GetAccountSettingsCommandOutput,
|
|
372
|
-
SdkError | InternalServerError | ValidationError
|
|
404
|
+
Cause.TimeoutException | SdkError | InternalServerError | ValidationError
|
|
373
405
|
>;
|
|
374
406
|
|
|
375
407
|
/**
|
|
@@ -380,7 +412,7 @@ interface OpenSearchServerlessService$ {
|
|
|
380
412
|
options?: HttpHandlerOptions,
|
|
381
413
|
): Effect.Effect<
|
|
382
414
|
GetPoliciesStatsCommandOutput,
|
|
383
|
-
SdkError | InternalServerError
|
|
415
|
+
Cause.TimeoutException | SdkError | InternalServerError
|
|
384
416
|
>;
|
|
385
417
|
|
|
386
418
|
/**
|
|
@@ -391,7 +423,7 @@ interface OpenSearchServerlessService$ {
|
|
|
391
423
|
options?: HttpHandlerOptions,
|
|
392
424
|
): Effect.Effect<
|
|
393
425
|
GetSecurityConfigCommandOutput,
|
|
394
|
-
SdkError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
426
|
+
Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
395
427
|
>;
|
|
396
428
|
|
|
397
429
|
/**
|
|
@@ -402,7 +434,7 @@ interface OpenSearchServerlessService$ {
|
|
|
402
434
|
options?: HttpHandlerOptions,
|
|
403
435
|
): Effect.Effect<
|
|
404
436
|
GetSecurityPolicyCommandOutput,
|
|
405
|
-
SdkError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
437
|
+
Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
406
438
|
>;
|
|
407
439
|
|
|
408
440
|
/**
|
|
@@ -413,7 +445,7 @@ interface OpenSearchServerlessService$ {
|
|
|
413
445
|
options?: HttpHandlerOptions,
|
|
414
446
|
): Effect.Effect<
|
|
415
447
|
ListAccessPoliciesCommandOutput,
|
|
416
|
-
SdkError | InternalServerError | ValidationError
|
|
448
|
+
Cause.TimeoutException | SdkError | InternalServerError | ValidationError
|
|
417
449
|
>;
|
|
418
450
|
|
|
419
451
|
/**
|
|
@@ -424,7 +456,7 @@ interface OpenSearchServerlessService$ {
|
|
|
424
456
|
options?: HttpHandlerOptions,
|
|
425
457
|
): Effect.Effect<
|
|
426
458
|
ListCollectionsCommandOutput,
|
|
427
|
-
SdkError | InternalServerError | ValidationError
|
|
459
|
+
Cause.TimeoutException | SdkError | InternalServerError | ValidationError
|
|
428
460
|
>;
|
|
429
461
|
|
|
430
462
|
/**
|
|
@@ -435,7 +467,7 @@ interface OpenSearchServerlessService$ {
|
|
|
435
467
|
options?: HttpHandlerOptions,
|
|
436
468
|
): Effect.Effect<
|
|
437
469
|
ListLifecyclePoliciesCommandOutput,
|
|
438
|
-
SdkError | InternalServerError | ValidationError
|
|
470
|
+
Cause.TimeoutException | SdkError | InternalServerError | ValidationError
|
|
439
471
|
>;
|
|
440
472
|
|
|
441
473
|
/**
|
|
@@ -446,7 +478,7 @@ interface OpenSearchServerlessService$ {
|
|
|
446
478
|
options?: HttpHandlerOptions,
|
|
447
479
|
): Effect.Effect<
|
|
448
480
|
ListSecurityConfigsCommandOutput,
|
|
449
|
-
SdkError | InternalServerError | ValidationError
|
|
481
|
+
Cause.TimeoutException | SdkError | InternalServerError | ValidationError
|
|
450
482
|
>;
|
|
451
483
|
|
|
452
484
|
/**
|
|
@@ -457,7 +489,7 @@ interface OpenSearchServerlessService$ {
|
|
|
457
489
|
options?: HttpHandlerOptions,
|
|
458
490
|
): Effect.Effect<
|
|
459
491
|
ListSecurityPoliciesCommandOutput,
|
|
460
|
-
SdkError | InternalServerError | ValidationError
|
|
492
|
+
Cause.TimeoutException | SdkError | InternalServerError | ValidationError
|
|
461
493
|
>;
|
|
462
494
|
|
|
463
495
|
/**
|
|
@@ -468,7 +500,7 @@ interface OpenSearchServerlessService$ {
|
|
|
468
500
|
options?: HttpHandlerOptions,
|
|
469
501
|
): Effect.Effect<
|
|
470
502
|
ListTagsForResourceCommandOutput,
|
|
471
|
-
SdkError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
503
|
+
Cause.TimeoutException | SdkError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
472
504
|
>;
|
|
473
505
|
|
|
474
506
|
/**
|
|
@@ -479,7 +511,7 @@ interface OpenSearchServerlessService$ {
|
|
|
479
511
|
options?: HttpHandlerOptions,
|
|
480
512
|
): Effect.Effect<
|
|
481
513
|
ListVpcEndpointsCommandOutput,
|
|
482
|
-
SdkError | InternalServerError | ValidationError
|
|
514
|
+
Cause.TimeoutException | SdkError | InternalServerError | ValidationError
|
|
483
515
|
>;
|
|
484
516
|
|
|
485
517
|
/**
|
|
@@ -490,7 +522,13 @@ interface OpenSearchServerlessService$ {
|
|
|
490
522
|
options?: HttpHandlerOptions,
|
|
491
523
|
): Effect.Effect<
|
|
492
524
|
TagResourceCommandOutput,
|
|
493
|
-
|
|
525
|
+
| Cause.TimeoutException
|
|
526
|
+
| SdkError
|
|
527
|
+
| ConflictError
|
|
528
|
+
| InternalServerError
|
|
529
|
+
| ResourceNotFoundError
|
|
530
|
+
| ServiceQuotaExceededError
|
|
531
|
+
| ValidationError
|
|
494
532
|
>;
|
|
495
533
|
|
|
496
534
|
/**
|
|
@@ -501,7 +539,7 @@ interface OpenSearchServerlessService$ {
|
|
|
501
539
|
options?: HttpHandlerOptions,
|
|
502
540
|
): Effect.Effect<
|
|
503
541
|
UntagResourceCommandOutput,
|
|
504
|
-
SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
542
|
+
Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
505
543
|
>;
|
|
506
544
|
|
|
507
545
|
/**
|
|
@@ -512,7 +550,7 @@ interface OpenSearchServerlessService$ {
|
|
|
512
550
|
options?: HttpHandlerOptions,
|
|
513
551
|
): Effect.Effect<
|
|
514
552
|
UpdateAccessPolicyCommandOutput,
|
|
515
|
-
SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
553
|
+
Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
516
554
|
>;
|
|
517
555
|
|
|
518
556
|
/**
|
|
@@ -523,7 +561,7 @@ interface OpenSearchServerlessService$ {
|
|
|
523
561
|
options?: HttpHandlerOptions,
|
|
524
562
|
): Effect.Effect<
|
|
525
563
|
UpdateAccountSettingsCommandOutput,
|
|
526
|
-
SdkError | InternalServerError | ValidationError
|
|
564
|
+
Cause.TimeoutException | SdkError | InternalServerError | ValidationError
|
|
527
565
|
>;
|
|
528
566
|
|
|
529
567
|
/**
|
|
@@ -534,7 +572,7 @@ interface OpenSearchServerlessService$ {
|
|
|
534
572
|
options?: HttpHandlerOptions,
|
|
535
573
|
): Effect.Effect<
|
|
536
574
|
UpdateCollectionCommandOutput,
|
|
537
|
-
SdkError | ConflictError | InternalServerError | ValidationError
|
|
575
|
+
Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ValidationError
|
|
538
576
|
>;
|
|
539
577
|
|
|
540
578
|
/**
|
|
@@ -545,7 +583,13 @@ interface OpenSearchServerlessService$ {
|
|
|
545
583
|
options?: HttpHandlerOptions,
|
|
546
584
|
): Effect.Effect<
|
|
547
585
|
UpdateLifecyclePolicyCommandOutput,
|
|
548
|
-
|
|
586
|
+
| Cause.TimeoutException
|
|
587
|
+
| SdkError
|
|
588
|
+
| ConflictError
|
|
589
|
+
| InternalServerError
|
|
590
|
+
| ResourceNotFoundError
|
|
591
|
+
| ServiceQuotaExceededError
|
|
592
|
+
| ValidationError
|
|
549
593
|
>;
|
|
550
594
|
|
|
551
595
|
/**
|
|
@@ -556,7 +600,7 @@ interface OpenSearchServerlessService$ {
|
|
|
556
600
|
options?: HttpHandlerOptions,
|
|
557
601
|
): Effect.Effect<
|
|
558
602
|
UpdateSecurityConfigCommandOutput,
|
|
559
|
-
SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
603
|
+
Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ResourceNotFoundError | ValidationError
|
|
560
604
|
>;
|
|
561
605
|
|
|
562
606
|
/**
|
|
@@ -567,7 +611,13 @@ interface OpenSearchServerlessService$ {
|
|
|
567
611
|
options?: HttpHandlerOptions,
|
|
568
612
|
): Effect.Effect<
|
|
569
613
|
UpdateSecurityPolicyCommandOutput,
|
|
570
|
-
|
|
614
|
+
| Cause.TimeoutException
|
|
615
|
+
| SdkError
|
|
616
|
+
| ConflictError
|
|
617
|
+
| InternalServerError
|
|
618
|
+
| ResourceNotFoundError
|
|
619
|
+
| ServiceQuotaExceededError
|
|
620
|
+
| ValidationError
|
|
571
621
|
>;
|
|
572
622
|
|
|
573
623
|
/**
|
|
@@ -578,7 +628,7 @@ interface OpenSearchServerlessService$ {
|
|
|
578
628
|
options?: HttpHandlerOptions,
|
|
579
629
|
): Effect.Effect<
|
|
580
630
|
UpdateVpcEndpointCommandOutput,
|
|
581
|
-
SdkError | ConflictError | InternalServerError | ValidationError
|
|
631
|
+
Cause.TimeoutException | SdkError | ConflictError | InternalServerError | ValidationError
|
|
582
632
|
>;
|
|
583
633
|
}
|
|
584
634
|
|
|
@@ -589,7 +639,7 @@ interface OpenSearchServerlessService$ {
|
|
|
589
639
|
export const makeOpenSearchServerlessService = Effect.gen(function*() {
|
|
590
640
|
const client = yield* Instance.OpenSearchServerlessClientInstance;
|
|
591
641
|
|
|
592
|
-
return Service.fromClientAndCommands<OpenSearchServerlessService$>(
|
|
642
|
+
return yield* Service.fromClientAndCommands<OpenSearchServerlessService$>(
|
|
593
643
|
client,
|
|
594
644
|
commands,
|
|
595
645
|
{
|