@effect-aws/client-opensearch 1.3.0 → 1.9.3
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/Errors/package.json +6 -0
- package/OpenSearchClientInstance/package.json +6 -0
- package/OpenSearchService/package.json +6 -0
- package/OpenSearchServiceConfig/package.json +6 -0
- package/{lib → dist/cjs}/Errors.d.ts +6 -11
- package/dist/cjs/Errors.d.ts.map +1 -0
- package/dist/cjs/Errors.js +21 -0
- package/dist/cjs/Errors.js.map +1 -0
- package/dist/cjs/OpenSearchClientInstance.d.ts +24 -0
- package/dist/cjs/OpenSearchClientInstance.d.ts.map +1 -0
- package/dist/cjs/OpenSearchClientInstance.js +50 -0
- package/dist/cjs/OpenSearchClientInstance.js.map +1 -0
- package/dist/cjs/OpenSearchService.d.ts +345 -0
- package/dist/cjs/OpenSearchService.d.ts.map +1 -0
- package/dist/cjs/OpenSearchService.js +135 -0
- package/dist/cjs/OpenSearchService.js.map +1 -0
- package/dist/cjs/OpenSearchServiceConfig.d.ts +25 -0
- package/dist/cjs/OpenSearchServiceConfig.d.ts.map +1 -0
- package/dist/cjs/OpenSearchServiceConfig.js +35 -0
- package/dist/cjs/OpenSearchServiceConfig.js.map +1 -0
- package/dist/cjs/index.d.ts +39 -0
- package/dist/cjs/index.d.ts.map +1 -0
- package/dist/cjs/index.js +56 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/dts/Errors.d.ts +20 -0
- package/dist/dts/Errors.d.ts.map +1 -0
- package/dist/dts/OpenSearchClientInstance.d.ts +24 -0
- package/dist/dts/OpenSearchClientInstance.d.ts.map +1 -0
- package/dist/dts/OpenSearchService.d.ts +345 -0
- package/dist/dts/OpenSearchService.d.ts.map +1 -0
- package/dist/dts/OpenSearchServiceConfig.d.ts +25 -0
- package/dist/dts/OpenSearchServiceConfig.d.ts.map +1 -0
- package/dist/dts/index.d.ts +39 -0
- package/dist/dts/index.d.ts.map +1 -0
- package/dist/esm/Errors.js +18 -0
- package/dist/esm/Errors.js.map +1 -0
- package/dist/esm/OpenSearchClientInstance.js +23 -0
- package/dist/esm/OpenSearchClientInstance.js.map +1 -0
- package/dist/esm/OpenSearchService.js +108 -0
- package/dist/esm/OpenSearchService.js.map +1 -0
- package/dist/esm/OpenSearchServiceConfig.js +31 -0
- package/dist/esm/OpenSearchServiceConfig.js.map +1 -0
- package/dist/esm/index.js +27 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/package.json +4 -0
- package/package.json +60 -43
- package/src/Errors.ts +50 -0
- package/src/OpenSearchClientInstance.ts +33 -0
- package/src/OpenSearchService.ts +1375 -0
- package/src/OpenSearchServiceConfig.ts +52 -0
- package/src/index.ts +44 -0
- package/CHANGELOG.md +0 -31
- package/docgen.json +0 -8
- package/lib/Errors.js +0 -21
- package/lib/OpenSearchClientInstance.d.ts +0 -31
- package/lib/OpenSearchClientInstance.js +0 -57
- package/lib/OpenSearchClientInstanceConfig.d.ts +0 -23
- package/lib/OpenSearchClientInstanceConfig.js +0 -44
- package/lib/OpenSearchService.d.ts +0 -445
- package/lib/OpenSearchService.js +0 -164
- package/lib/esm/Errors.js +0 -18
- package/lib/esm/OpenSearchClientInstance.js +0 -30
- package/lib/esm/OpenSearchClientInstanceConfig.js +0 -40
- package/lib/esm/OpenSearchService.js +0 -160
- package/lib/esm/index.js +0 -5
- package/lib/index.d.ts +0 -4
- package/lib/index.js +0 -21
- package/project.json +0 -77
- package/vitest.config.ts +0 -3
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
import type { AccessDeniedException, BaseException, ConflictException, DependencyFailureException, DisabledOperationException, InternalException, InvalidPaginationTokenException, InvalidTypeException, LimitExceededException, ResourceAlreadyExistsException, ResourceNotFoundException, SlotNotAvailableException, ValidationException } from "@aws-sdk/client-opensearch";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
export
|
|
5
|
-
name: string;
|
|
6
|
-
}> = T & {
|
|
7
|
-
readonly _tag: T["name"];
|
|
8
|
-
};
|
|
2
|
+
import type { TaggedException } from "@effect-aws/commons";
|
|
3
|
+
import { SdkError as CommonSdkError } from "@effect-aws/commons";
|
|
4
|
+
export declare const AllServiceErrors: readonly ["AccessDeniedException", "BaseException", "ConflictException", "DependencyFailureException", "DisabledOperationException", "InternalException", "InvalidPaginationTokenException", "InvalidTypeException", "LimitExceededException", "ResourceAlreadyExistsException", "ResourceNotFoundException", "SlotNotAvailableException", "ValidationException"];
|
|
9
5
|
export type AccessDeniedError = TaggedException<AccessDeniedException>;
|
|
10
6
|
export type BaseError = TaggedException<BaseException>;
|
|
11
7
|
export type ConflictError = TaggedException<ConflictException>;
|
|
@@ -19,7 +15,6 @@ export type ResourceAlreadyExistsError = TaggedException<ResourceAlreadyExistsEx
|
|
|
19
15
|
export type ResourceNotFoundError = TaggedException<ResourceNotFoundException>;
|
|
20
16
|
export type SlotNotAvailableError = TaggedException<SlotNotAvailableException>;
|
|
21
17
|
export type ValidationError = TaggedException<ValidationException>;
|
|
22
|
-
export type SdkError =
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
export declare const SdkError: Data.Case.Constructor<SdkError, "_tag">;
|
|
18
|
+
export type SdkError = CommonSdkError;
|
|
19
|
+
export declare const SdkError: import("effect/Data").Case.Constructor<CommonSdkError, "_tag">;
|
|
20
|
+
//# sourceMappingURL=Errors.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Errors.d.ts","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,qBAAqB,EACrB,aAAa,EACb,iBAAiB,EACjB,0BAA0B,EAC1B,0BAA0B,EAC1B,iBAAiB,EACjB,+BAA+B,EAC/B,oBAAoB,EACpB,sBAAsB,EACtB,8BAA8B,EAC9B,yBAAyB,EACzB,yBAAyB,EACzB,mBAAmB,EACpB,MAAM,4BAA4B,CAAC;AACpC,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAC3D,OAAO,EAAE,QAAQ,IAAI,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAEjE,eAAO,MAAM,gBAAgB,mWAcnB,CAAC;AAEX,MAAM,MAAM,iBAAiB,GAAG,eAAe,CAAC,qBAAqB,CAAC,CAAC;AACvE,MAAM,MAAM,SAAS,GAAG,eAAe,CAAC,aAAa,CAAC,CAAC;AACvD,MAAM,MAAM,aAAa,GAAG,eAAe,CAAC,iBAAiB,CAAC,CAAC;AAC/D,MAAM,MAAM,sBAAsB,GAAG,eAAe,CAAC,0BAA0B,CAAC,CAAC;AACjF,MAAM,MAAM,sBAAsB,GAAG,eAAe,CAAC,0BAA0B,CAAC,CAAC;AACjF,MAAM,MAAM,aAAa,GAAG,eAAe,CAAC,iBAAiB,CAAC,CAAC;AAC/D,MAAM,MAAM,2BAA2B,GAAG,eAAe,CAAC,+BAA+B,CAAC,CAAC;AAC3F,MAAM,MAAM,gBAAgB,GAAG,eAAe,CAAC,oBAAoB,CAAC,CAAC;AACrE,MAAM,MAAM,kBAAkB,GAAG,eAAe,CAAC,sBAAsB,CAAC,CAAC;AACzE,MAAM,MAAM,0BAA0B,GAAG,eAAe,CAAC,8BAA8B,CAAC,CAAC;AACzF,MAAM,MAAM,qBAAqB,GAAG,eAAe,CAAC,yBAAyB,CAAC,CAAC;AAC/E,MAAM,MAAM,qBAAqB,GAAG,eAAe,CAAC,yBAAyB,CAAC,CAAC;AAC/E,MAAM,MAAM,eAAe,GAAG,eAAe,CAAC,mBAAmB,CAAC,CAAC;AAEnE,MAAM,MAAM,QAAQ,GAAG,cAAc,CAAC;AACtC,eAAO,MAAM,QAAQ,gEAAiB,CAAC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.SdkError = exports.AllServiceErrors = void 0;
|
|
4
|
+
const commons_1 = require("@effect-aws/commons");
|
|
5
|
+
exports.AllServiceErrors = [
|
|
6
|
+
"AccessDeniedException",
|
|
7
|
+
"BaseException",
|
|
8
|
+
"ConflictException",
|
|
9
|
+
"DependencyFailureException",
|
|
10
|
+
"DisabledOperationException",
|
|
11
|
+
"InternalException",
|
|
12
|
+
"InvalidPaginationTokenException",
|
|
13
|
+
"InvalidTypeException",
|
|
14
|
+
"LimitExceededException",
|
|
15
|
+
"ResourceAlreadyExistsException",
|
|
16
|
+
"ResourceNotFoundException",
|
|
17
|
+
"SlotNotAvailableException",
|
|
18
|
+
"ValidationException",
|
|
19
|
+
];
|
|
20
|
+
exports.SdkError = commons_1.SdkError;
|
|
21
|
+
//# sourceMappingURL=Errors.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Errors.js","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":";;;AAgBA,iDAAiE;AAEpD,QAAA,gBAAgB,GAAG;IAC9B,uBAAuB;IACvB,eAAe;IACf,mBAAmB;IACnB,4BAA4B;IAC5B,4BAA4B;IAC5B,mBAAmB;IACnB,iCAAiC;IACjC,sBAAsB;IACtB,wBAAwB;IACxB,gCAAgC;IAChC,2BAA2B;IAC3B,2BAA2B;IAC3B,qBAAqB;CACb,CAAC;AAiBE,QAAA,QAAQ,GAAG,kBAAc,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 1.0.0
|
|
3
|
+
*/
|
|
4
|
+
import { OpenSearchClient } from "@aws-sdk/client-opensearch";
|
|
5
|
+
import { Context, Effect, Layer } from "effect";
|
|
6
|
+
declare const OpenSearchClientInstance_base: Context.TagClass<OpenSearchClientInstance, "@effect-aws/client-opensearch/OpenSearchClientInstance", OpenSearchClient>;
|
|
7
|
+
/**
|
|
8
|
+
* @since 1.0.0
|
|
9
|
+
* @category tags
|
|
10
|
+
*/
|
|
11
|
+
export declare class OpenSearchClientInstance extends OpenSearchClientInstance_base {
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @since 1.0.0
|
|
15
|
+
* @category constructors
|
|
16
|
+
*/
|
|
17
|
+
export declare const make: Effect.Effect<OpenSearchClient, never, import("effect/Scope").Scope>;
|
|
18
|
+
/**
|
|
19
|
+
* @since 1.0.0
|
|
20
|
+
* @category layers
|
|
21
|
+
*/
|
|
22
|
+
export declare const layer: Layer.Layer<OpenSearchClientInstance, never, never>;
|
|
23
|
+
export {};
|
|
24
|
+
//# sourceMappingURL=OpenSearchClientInstance.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OpenSearchClientInstance.d.ts","sourceRoot":"","sources":["../../src/OpenSearchClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;;AAGhD;;;GAGG;AACH,qBAAa,wBAAyB,SAAQ,6BAEC;CAAG;AAElD;;;GAGG;AACH,eAAO,MAAM,IAAI,sEAOhB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,KAAK,qDAA+C,CAAC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.layer = exports.make = exports.OpenSearchClientInstance = void 0;
|
|
27
|
+
/**
|
|
28
|
+
* @since 1.0.0
|
|
29
|
+
*/
|
|
30
|
+
const client_opensearch_1 = require("@aws-sdk/client-opensearch");
|
|
31
|
+
const effect_1 = require("effect");
|
|
32
|
+
const OpenSearchServiceConfig = __importStar(require("./OpenSearchServiceConfig.js"));
|
|
33
|
+
/**
|
|
34
|
+
* @since 1.0.0
|
|
35
|
+
* @category tags
|
|
36
|
+
*/
|
|
37
|
+
class OpenSearchClientInstance extends effect_1.Context.Tag("@effect-aws/client-opensearch/OpenSearchClientInstance")() {
|
|
38
|
+
}
|
|
39
|
+
exports.OpenSearchClientInstance = OpenSearchClientInstance;
|
|
40
|
+
/**
|
|
41
|
+
* @since 1.0.0
|
|
42
|
+
* @category constructors
|
|
43
|
+
*/
|
|
44
|
+
exports.make = effect_1.Effect.flatMap(OpenSearchServiceConfig.toOpenSearchClientConfig, (config) => effect_1.Effect.acquireRelease(effect_1.Effect.sync(() => new client_opensearch_1.OpenSearchClient(config)), (client) => effect_1.Effect.sync(() => client.destroy())));
|
|
45
|
+
/**
|
|
46
|
+
* @since 1.0.0
|
|
47
|
+
* @category layers
|
|
48
|
+
*/
|
|
49
|
+
exports.layer = effect_1.Layer.scoped(OpenSearchClientInstance, exports.make);
|
|
50
|
+
//# sourceMappingURL=OpenSearchClientInstance.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OpenSearchClientInstance.js","sourceRoot":"","sources":["../../src/OpenSearchClientInstance.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,kEAA8D;AAC9D,mCAAgD;AAChD,sFAAwE;AAExE;;;GAGG;AACH,MAAa,wBAAyB,SAAQ,gBAAO,CAAC,GAAG,CACvD,wDAAwD,CACzD,EAA8C;CAAG;AAFlD,4DAEkD;AAElD;;;GAGG;AACU,QAAA,IAAI,GAAG,eAAM,CAAC,OAAO,CAChC,uBAAuB,CAAC,wBAAwB,EAChD,CAAC,MAAM,EAAE,EAAE,CACT,eAAM,CAAC,cAAc,CACnB,eAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,oCAAgB,CAAC,MAAM,CAAC,CAAC,EAC/C,CAAC,MAAM,EAAE,EAAE,CAAC,eAAM,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,OAAO,EAAE,CAAC,CAChD,CACJ,CAAC;AAEF;;;GAGG;AACU,QAAA,KAAK,GAAG,cAAK,CAAC,MAAM,CAAC,wBAAwB,EAAE,YAAI,CAAC,CAAC"}
|
|
@@ -0,0 +1,345 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 1.0.0
|
|
3
|
+
*/
|
|
4
|
+
import { type AcceptInboundConnectionCommandInput, type AcceptInboundConnectionCommandOutput, type AddDataSourceCommandInput, type AddDataSourceCommandOutput, type AddDirectQueryDataSourceCommandInput, type AddDirectQueryDataSourceCommandOutput, type AddTagsCommandInput, type AddTagsCommandOutput, type AssociatePackageCommandInput, type AssociatePackageCommandOutput, type AssociatePackagesCommandInput, type AssociatePackagesCommandOutput, type AuthorizeVpcEndpointAccessCommandInput, type AuthorizeVpcEndpointAccessCommandOutput, type CancelDomainConfigChangeCommandInput, type CancelDomainConfigChangeCommandOutput, type CancelServiceSoftwareUpdateCommandInput, type CancelServiceSoftwareUpdateCommandOutput, type CreateApplicationCommandInput, type CreateApplicationCommandOutput, type CreateDomainCommandInput, type CreateDomainCommandOutput, type CreateOutboundConnectionCommandInput, type CreateOutboundConnectionCommandOutput, type CreatePackageCommandInput, type CreatePackageCommandOutput, type CreateVpcEndpointCommandInput, type CreateVpcEndpointCommandOutput, type DeleteApplicationCommandInput, type DeleteApplicationCommandOutput, type DeleteDataSourceCommandInput, type DeleteDataSourceCommandOutput, type DeleteDirectQueryDataSourceCommandInput, type DeleteDirectQueryDataSourceCommandOutput, type DeleteDomainCommandInput, type DeleteDomainCommandOutput, type DeleteInboundConnectionCommandInput, type DeleteInboundConnectionCommandOutput, type DeleteOutboundConnectionCommandInput, type DeleteOutboundConnectionCommandOutput, type DeletePackageCommandInput, type DeletePackageCommandOutput, type DeleteVpcEndpointCommandInput, type DeleteVpcEndpointCommandOutput, type DescribeDomainAutoTunesCommandInput, type DescribeDomainAutoTunesCommandOutput, type DescribeDomainChangeProgressCommandInput, type DescribeDomainChangeProgressCommandOutput, type DescribeDomainCommandInput, type DescribeDomainCommandOutput, type DescribeDomainConfigCommandInput, type DescribeDomainConfigCommandOutput, type DescribeDomainHealthCommandInput, type DescribeDomainHealthCommandOutput, type DescribeDomainNodesCommandInput, type DescribeDomainNodesCommandOutput, type DescribeDomainsCommandInput, type DescribeDomainsCommandOutput, type DescribeDryRunProgressCommandInput, type DescribeDryRunProgressCommandOutput, type DescribeInboundConnectionsCommandInput, type DescribeInboundConnectionsCommandOutput, type DescribeInstanceTypeLimitsCommandInput, type DescribeInstanceTypeLimitsCommandOutput, type DescribeOutboundConnectionsCommandInput, type DescribeOutboundConnectionsCommandOutput, type DescribePackagesCommandInput, type DescribePackagesCommandOutput, type DescribeReservedInstanceOfferingsCommandInput, type DescribeReservedInstanceOfferingsCommandOutput, type DescribeReservedInstancesCommandInput, type DescribeReservedInstancesCommandOutput, type DescribeVpcEndpointsCommandInput, type DescribeVpcEndpointsCommandOutput, type DissociatePackageCommandInput, type DissociatePackageCommandOutput, type DissociatePackagesCommandInput, type DissociatePackagesCommandOutput, type GetApplicationCommandInput, type GetApplicationCommandOutput, type GetCompatibleVersionsCommandInput, type GetCompatibleVersionsCommandOutput, type GetDataSourceCommandInput, type GetDataSourceCommandOutput, type GetDirectQueryDataSourceCommandInput, type GetDirectQueryDataSourceCommandOutput, type GetDomainMaintenanceStatusCommandInput, type GetDomainMaintenanceStatusCommandOutput, type GetPackageVersionHistoryCommandInput, type GetPackageVersionHistoryCommandOutput, type GetUpgradeHistoryCommandInput, type GetUpgradeHistoryCommandOutput, type GetUpgradeStatusCommandInput, type GetUpgradeStatusCommandOutput, type ListApplicationsCommandInput, type ListApplicationsCommandOutput, type ListDataSourcesCommandInput, type ListDataSourcesCommandOutput, type ListDirectQueryDataSourcesCommandInput, type ListDirectQueryDataSourcesCommandOutput, type ListDomainMaintenancesCommandInput, type ListDomainMaintenancesCommandOutput, type ListDomainNamesCommandInput, type ListDomainNamesCommandOutput, type ListDomainsForPackageCommandInput, type ListDomainsForPackageCommandOutput, type ListInstanceTypeDetailsCommandInput, type ListInstanceTypeDetailsCommandOutput, type ListPackagesForDomainCommandInput, type ListPackagesForDomainCommandOutput, type ListScheduledActionsCommandInput, type ListScheduledActionsCommandOutput, type ListTagsCommandInput, type ListTagsCommandOutput, type ListVersionsCommandInput, type ListVersionsCommandOutput, type ListVpcEndpointAccessCommandInput, type ListVpcEndpointAccessCommandOutput, type ListVpcEndpointsCommandInput, type ListVpcEndpointsCommandOutput, type ListVpcEndpointsForDomainCommandInput, type ListVpcEndpointsForDomainCommandOutput, type OpenSearchClient, type OpenSearchClientConfig, type PurchaseReservedInstanceOfferingCommandInput, type PurchaseReservedInstanceOfferingCommandOutput, type RejectInboundConnectionCommandInput, type RejectInboundConnectionCommandOutput, type RemoveTagsCommandInput, type RemoveTagsCommandOutput, type RevokeVpcEndpointAccessCommandInput, type RevokeVpcEndpointAccessCommandOutput, type StartDomainMaintenanceCommandInput, type StartDomainMaintenanceCommandOutput, type StartServiceSoftwareUpdateCommandInput, type StartServiceSoftwareUpdateCommandOutput, type UpdateApplicationCommandInput, type UpdateApplicationCommandOutput, type UpdateDataSourceCommandInput, type UpdateDataSourceCommandOutput, type UpdateDirectQueryDataSourceCommandInput, type UpdateDirectQueryDataSourceCommandOutput, type UpdateDomainConfigCommandInput, type UpdateDomainConfigCommandOutput, type UpdatePackageCommandInput, type UpdatePackageCommandOutput, type UpdatePackageScopeCommandInput, type UpdatePackageScopeCommandOutput, type UpdateScheduledActionCommandInput, type UpdateScheduledActionCommandOutput, type UpdateVpcEndpointCommandInput, type UpdateVpcEndpointCommandOutput, type UpgradeDomainCommandInput, type UpgradeDomainCommandOutput } from "@aws-sdk/client-opensearch";
|
|
5
|
+
import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
|
|
6
|
+
import { Effect, Layer } from "effect";
|
|
7
|
+
import type { AccessDeniedError, BaseError, ConflictError, DependencyFailureError, DisabledOperationError, InternalError, InvalidPaginationTokenError, InvalidTypeError, LimitExceededError, ResourceAlreadyExistsError, ResourceNotFoundError, SlotNotAvailableError, ValidationError } from "./Errors.js";
|
|
8
|
+
import * as Instance from "./OpenSearchClientInstance.js";
|
|
9
|
+
interface OpenSearchService$ {
|
|
10
|
+
readonly _: unique symbol;
|
|
11
|
+
/**
|
|
12
|
+
* @see {@link AcceptInboundConnectionCommand}
|
|
13
|
+
*/
|
|
14
|
+
acceptInboundConnection(args: AcceptInboundConnectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<AcceptInboundConnectionCommandOutput, SdkError | DisabledOperationError | LimitExceededError | ResourceNotFoundError>;
|
|
15
|
+
/**
|
|
16
|
+
* @see {@link AddDataSourceCommand}
|
|
17
|
+
*/
|
|
18
|
+
addDataSource(args: AddDataSourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<AddDataSourceCommandOutput, SdkError | BaseError | DependencyFailureError | DisabledOperationError | InternalError | LimitExceededError | ResourceNotFoundError | ValidationError>;
|
|
19
|
+
/**
|
|
20
|
+
* @see {@link AddDirectQueryDataSourceCommand}
|
|
21
|
+
*/
|
|
22
|
+
addDirectQueryDataSource(args: AddDirectQueryDataSourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<AddDirectQueryDataSourceCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | LimitExceededError | ResourceNotFoundError | ValidationError>;
|
|
23
|
+
/**
|
|
24
|
+
* @see {@link AddTagsCommand}
|
|
25
|
+
*/
|
|
26
|
+
addTags(args: AddTagsCommandInput, options?: HttpHandlerOptions): Effect.Effect<AddTagsCommandOutput, SdkError | BaseError | InternalError | LimitExceededError | ValidationError>;
|
|
27
|
+
/**
|
|
28
|
+
* @see {@link AssociatePackageCommand}
|
|
29
|
+
*/
|
|
30
|
+
associatePackage(args: AssociatePackageCommandInput, options?: HttpHandlerOptions): Effect.Effect<AssociatePackageCommandOutput, SdkError | AccessDeniedError | BaseError | ConflictError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
31
|
+
/**
|
|
32
|
+
* @see {@link AssociatePackagesCommand}
|
|
33
|
+
*/
|
|
34
|
+
associatePackages(args: AssociatePackagesCommandInput, options?: HttpHandlerOptions): Effect.Effect<AssociatePackagesCommandOutput, SdkError | BaseError | ConflictError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
35
|
+
/**
|
|
36
|
+
* @see {@link AuthorizeVpcEndpointAccessCommand}
|
|
37
|
+
*/
|
|
38
|
+
authorizeVpcEndpointAccess(args: AuthorizeVpcEndpointAccessCommandInput, options?: HttpHandlerOptions): Effect.Effect<AuthorizeVpcEndpointAccessCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | LimitExceededError | ResourceNotFoundError | ValidationError>;
|
|
39
|
+
/**
|
|
40
|
+
* @see {@link CancelDomainConfigChangeCommand}
|
|
41
|
+
*/
|
|
42
|
+
cancelDomainConfigChange(args: CancelDomainConfigChangeCommandInput, options?: HttpHandlerOptions): Effect.Effect<CancelDomainConfigChangeCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
43
|
+
/**
|
|
44
|
+
* @see {@link CancelServiceSoftwareUpdateCommand}
|
|
45
|
+
*/
|
|
46
|
+
cancelServiceSoftwareUpdate(args: CancelServiceSoftwareUpdateCommandInput, options?: HttpHandlerOptions): Effect.Effect<CancelServiceSoftwareUpdateCommandOutput, SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
47
|
+
/**
|
|
48
|
+
* @see {@link CreateApplicationCommand}
|
|
49
|
+
*/
|
|
50
|
+
createApplication(args: CreateApplicationCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateApplicationCommandOutput, SdkError | AccessDeniedError | BaseError | ConflictError | DisabledOperationError | InternalError | ValidationError>;
|
|
51
|
+
/**
|
|
52
|
+
* @see {@link CreateDomainCommand}
|
|
53
|
+
*/
|
|
54
|
+
createDomain(args: CreateDomainCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateDomainCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | InvalidTypeError | LimitExceededError | ResourceAlreadyExistsError | ValidationError>;
|
|
55
|
+
/**
|
|
56
|
+
* @see {@link CreateOutboundConnectionCommand}
|
|
57
|
+
*/
|
|
58
|
+
createOutboundConnection(args: CreateOutboundConnectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateOutboundConnectionCommandOutput, SdkError | DisabledOperationError | InternalError | LimitExceededError | ResourceAlreadyExistsError>;
|
|
59
|
+
/**
|
|
60
|
+
* @see {@link CreatePackageCommand}
|
|
61
|
+
*/
|
|
62
|
+
createPackage(args: CreatePackageCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreatePackageCommandOutput, SdkError | AccessDeniedError | BaseError | InternalError | InvalidTypeError | LimitExceededError | ResourceAlreadyExistsError | ValidationError>;
|
|
63
|
+
/**
|
|
64
|
+
* @see {@link CreateVpcEndpointCommand}
|
|
65
|
+
*/
|
|
66
|
+
createVpcEndpoint(args: CreateVpcEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateVpcEndpointCommandOutput, SdkError | BaseError | ConflictError | DisabledOperationError | InternalError | LimitExceededError | ValidationError>;
|
|
67
|
+
/**
|
|
68
|
+
* @see {@link DeleteApplicationCommand}
|
|
69
|
+
*/
|
|
70
|
+
deleteApplication(args: DeleteApplicationCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteApplicationCommandOutput, SdkError | AccessDeniedError | BaseError | ConflictError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
71
|
+
/**
|
|
72
|
+
* @see {@link DeleteDataSourceCommand}
|
|
73
|
+
*/
|
|
74
|
+
deleteDataSource(args: DeleteDataSourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteDataSourceCommandOutput, SdkError | BaseError | DependencyFailureError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
75
|
+
/**
|
|
76
|
+
* @see {@link DeleteDirectQueryDataSourceCommand}
|
|
77
|
+
*/
|
|
78
|
+
deleteDirectQueryDataSource(args: DeleteDirectQueryDataSourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteDirectQueryDataSourceCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
79
|
+
/**
|
|
80
|
+
* @see {@link DeleteDomainCommand}
|
|
81
|
+
*/
|
|
82
|
+
deleteDomain(args: DeleteDomainCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteDomainCommandOutput, SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
83
|
+
/**
|
|
84
|
+
* @see {@link DeleteInboundConnectionCommand}
|
|
85
|
+
*/
|
|
86
|
+
deleteInboundConnection(args: DeleteInboundConnectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteInboundConnectionCommandOutput, SdkError | DisabledOperationError | ResourceNotFoundError>;
|
|
87
|
+
/**
|
|
88
|
+
* @see {@link DeleteOutboundConnectionCommand}
|
|
89
|
+
*/
|
|
90
|
+
deleteOutboundConnection(args: DeleteOutboundConnectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteOutboundConnectionCommandOutput, SdkError | DisabledOperationError | ResourceNotFoundError>;
|
|
91
|
+
/**
|
|
92
|
+
* @see {@link DeletePackageCommand}
|
|
93
|
+
*/
|
|
94
|
+
deletePackage(args: DeletePackageCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeletePackageCommandOutput, SdkError | AccessDeniedError | BaseError | ConflictError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
95
|
+
/**
|
|
96
|
+
* @see {@link DeleteVpcEndpointCommand}
|
|
97
|
+
*/
|
|
98
|
+
deleteVpcEndpoint(args: DeleteVpcEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteVpcEndpointCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError>;
|
|
99
|
+
/**
|
|
100
|
+
* @see {@link DescribeDomainCommand}
|
|
101
|
+
*/
|
|
102
|
+
describeDomain(args: DescribeDomainCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeDomainCommandOutput, SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
103
|
+
/**
|
|
104
|
+
* @see {@link DescribeDomainAutoTunesCommand}
|
|
105
|
+
*/
|
|
106
|
+
describeDomainAutoTunes(args: DescribeDomainAutoTunesCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeDomainAutoTunesCommandOutput, SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
107
|
+
/**
|
|
108
|
+
* @see {@link DescribeDomainChangeProgressCommand}
|
|
109
|
+
*/
|
|
110
|
+
describeDomainChangeProgress(args: DescribeDomainChangeProgressCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeDomainChangeProgressCommandOutput, SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
111
|
+
/**
|
|
112
|
+
* @see {@link DescribeDomainConfigCommand}
|
|
113
|
+
*/
|
|
114
|
+
describeDomainConfig(args: DescribeDomainConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeDomainConfigCommandOutput, SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
115
|
+
/**
|
|
116
|
+
* @see {@link DescribeDomainHealthCommand}
|
|
117
|
+
*/
|
|
118
|
+
describeDomainHealth(args: DescribeDomainHealthCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeDomainHealthCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
119
|
+
/**
|
|
120
|
+
* @see {@link DescribeDomainNodesCommand}
|
|
121
|
+
*/
|
|
122
|
+
describeDomainNodes(args: DescribeDomainNodesCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeDomainNodesCommandOutput, SdkError | BaseError | DependencyFailureError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
123
|
+
/**
|
|
124
|
+
* @see {@link DescribeDomainsCommand}
|
|
125
|
+
*/
|
|
126
|
+
describeDomains(args: DescribeDomainsCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeDomainsCommandOutput, SdkError | BaseError | InternalError | ValidationError>;
|
|
127
|
+
/**
|
|
128
|
+
* @see {@link DescribeDryRunProgressCommand}
|
|
129
|
+
*/
|
|
130
|
+
describeDryRunProgress(args: DescribeDryRunProgressCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeDryRunProgressCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
131
|
+
/**
|
|
132
|
+
* @see {@link DescribeInboundConnectionsCommand}
|
|
133
|
+
*/
|
|
134
|
+
describeInboundConnections(args: DescribeInboundConnectionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeInboundConnectionsCommandOutput, SdkError | DisabledOperationError | InvalidPaginationTokenError>;
|
|
135
|
+
/**
|
|
136
|
+
* @see {@link DescribeInstanceTypeLimitsCommand}
|
|
137
|
+
*/
|
|
138
|
+
describeInstanceTypeLimits(args: DescribeInstanceTypeLimitsCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeInstanceTypeLimitsCommandOutput, SdkError | BaseError | InternalError | InvalidTypeError | LimitExceededError | ResourceNotFoundError | ValidationError>;
|
|
139
|
+
/**
|
|
140
|
+
* @see {@link DescribeOutboundConnectionsCommand}
|
|
141
|
+
*/
|
|
142
|
+
describeOutboundConnections(args: DescribeOutboundConnectionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeOutboundConnectionsCommandOutput, SdkError | DisabledOperationError | InvalidPaginationTokenError>;
|
|
143
|
+
/**
|
|
144
|
+
* @see {@link DescribePackagesCommand}
|
|
145
|
+
*/
|
|
146
|
+
describePackages(args: DescribePackagesCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribePackagesCommandOutput, SdkError | AccessDeniedError | BaseError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
147
|
+
/**
|
|
148
|
+
* @see {@link DescribeReservedInstanceOfferingsCommand}
|
|
149
|
+
*/
|
|
150
|
+
describeReservedInstanceOfferings(args: DescribeReservedInstanceOfferingsCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeReservedInstanceOfferingsCommandOutput, SdkError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
151
|
+
/**
|
|
152
|
+
* @see {@link DescribeReservedInstancesCommand}
|
|
153
|
+
*/
|
|
154
|
+
describeReservedInstances(args: DescribeReservedInstancesCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeReservedInstancesCommandOutput, SdkError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
155
|
+
/**
|
|
156
|
+
* @see {@link DescribeVpcEndpointsCommand}
|
|
157
|
+
*/
|
|
158
|
+
describeVpcEndpoints(args: DescribeVpcEndpointsCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeVpcEndpointsCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | ValidationError>;
|
|
159
|
+
/**
|
|
160
|
+
* @see {@link DissociatePackageCommand}
|
|
161
|
+
*/
|
|
162
|
+
dissociatePackage(args: DissociatePackageCommandInput, options?: HttpHandlerOptions): Effect.Effect<DissociatePackageCommandOutput, SdkError | AccessDeniedError | BaseError | ConflictError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
163
|
+
/**
|
|
164
|
+
* @see {@link DissociatePackagesCommand}
|
|
165
|
+
*/
|
|
166
|
+
dissociatePackages(args: DissociatePackagesCommandInput, options?: HttpHandlerOptions): Effect.Effect<DissociatePackagesCommandOutput, SdkError | BaseError | ConflictError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
167
|
+
/**
|
|
168
|
+
* @see {@link GetApplicationCommand}
|
|
169
|
+
*/
|
|
170
|
+
getApplication(args: GetApplicationCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetApplicationCommandOutput, SdkError | AccessDeniedError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
171
|
+
/**
|
|
172
|
+
* @see {@link GetCompatibleVersionsCommand}
|
|
173
|
+
*/
|
|
174
|
+
getCompatibleVersions(args: GetCompatibleVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetCompatibleVersionsCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
175
|
+
/**
|
|
176
|
+
* @see {@link GetDataSourceCommand}
|
|
177
|
+
*/
|
|
178
|
+
getDataSource(args: GetDataSourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetDataSourceCommandOutput, SdkError | BaseError | DependencyFailureError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
179
|
+
/**
|
|
180
|
+
* @see {@link GetDirectQueryDataSourceCommand}
|
|
181
|
+
*/
|
|
182
|
+
getDirectQueryDataSource(args: GetDirectQueryDataSourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetDirectQueryDataSourceCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
183
|
+
/**
|
|
184
|
+
* @see {@link GetDomainMaintenanceStatusCommand}
|
|
185
|
+
*/
|
|
186
|
+
getDomainMaintenanceStatus(args: GetDomainMaintenanceStatusCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetDomainMaintenanceStatusCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
187
|
+
/**
|
|
188
|
+
* @see {@link GetPackageVersionHistoryCommand}
|
|
189
|
+
*/
|
|
190
|
+
getPackageVersionHistory(args: GetPackageVersionHistoryCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetPackageVersionHistoryCommandOutput, SdkError | AccessDeniedError | BaseError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
191
|
+
/**
|
|
192
|
+
* @see {@link GetUpgradeHistoryCommand}
|
|
193
|
+
*/
|
|
194
|
+
getUpgradeHistory(args: GetUpgradeHistoryCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetUpgradeHistoryCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
195
|
+
/**
|
|
196
|
+
* @see {@link GetUpgradeStatusCommand}
|
|
197
|
+
*/
|
|
198
|
+
getUpgradeStatus(args: GetUpgradeStatusCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetUpgradeStatusCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
199
|
+
/**
|
|
200
|
+
* @see {@link ListApplicationsCommand}
|
|
201
|
+
*/
|
|
202
|
+
listApplications(args: ListApplicationsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListApplicationsCommandOutput, SdkError | AccessDeniedError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
203
|
+
/**
|
|
204
|
+
* @see {@link ListDataSourcesCommand}
|
|
205
|
+
*/
|
|
206
|
+
listDataSources(args: ListDataSourcesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListDataSourcesCommandOutput, SdkError | BaseError | DependencyFailureError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
207
|
+
/**
|
|
208
|
+
* @see {@link ListDirectQueryDataSourcesCommand}
|
|
209
|
+
*/
|
|
210
|
+
listDirectQueryDataSources(args: ListDirectQueryDataSourcesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListDirectQueryDataSourcesCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
211
|
+
/**
|
|
212
|
+
* @see {@link ListDomainMaintenancesCommand}
|
|
213
|
+
*/
|
|
214
|
+
listDomainMaintenances(args: ListDomainMaintenancesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListDomainMaintenancesCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
215
|
+
/**
|
|
216
|
+
* @see {@link ListDomainNamesCommand}
|
|
217
|
+
*/
|
|
218
|
+
listDomainNames(args: ListDomainNamesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListDomainNamesCommandOutput, SdkError | BaseError | ValidationError>;
|
|
219
|
+
/**
|
|
220
|
+
* @see {@link ListDomainsForPackageCommand}
|
|
221
|
+
*/
|
|
222
|
+
listDomainsForPackage(args: ListDomainsForPackageCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListDomainsForPackageCommandOutput, SdkError | AccessDeniedError | BaseError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
223
|
+
/**
|
|
224
|
+
* @see {@link ListInstanceTypeDetailsCommand}
|
|
225
|
+
*/
|
|
226
|
+
listInstanceTypeDetails(args: ListInstanceTypeDetailsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListInstanceTypeDetailsCommandOutput, SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
227
|
+
/**
|
|
228
|
+
* @see {@link ListPackagesForDomainCommand}
|
|
229
|
+
*/
|
|
230
|
+
listPackagesForDomain(args: ListPackagesForDomainCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListPackagesForDomainCommandOutput, SdkError | AccessDeniedError | BaseError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
231
|
+
/**
|
|
232
|
+
* @see {@link ListScheduledActionsCommand}
|
|
233
|
+
*/
|
|
234
|
+
listScheduledActions(args: ListScheduledActionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListScheduledActionsCommandOutput, SdkError | BaseError | InternalError | InvalidPaginationTokenError | ResourceNotFoundError | ValidationError>;
|
|
235
|
+
/**
|
|
236
|
+
* @see {@link ListTagsCommand}
|
|
237
|
+
*/
|
|
238
|
+
listTags(args: ListTagsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsCommandOutput, SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
239
|
+
/**
|
|
240
|
+
* @see {@link ListVersionsCommand}
|
|
241
|
+
*/
|
|
242
|
+
listVersions(args: ListVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListVersionsCommandOutput, SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
243
|
+
/**
|
|
244
|
+
* @see {@link ListVpcEndpointAccessCommand}
|
|
245
|
+
*/
|
|
246
|
+
listVpcEndpointAccess(args: ListVpcEndpointAccessCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListVpcEndpointAccessCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError>;
|
|
247
|
+
/**
|
|
248
|
+
* @see {@link ListVpcEndpointsCommand}
|
|
249
|
+
*/
|
|
250
|
+
listVpcEndpoints(args: ListVpcEndpointsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListVpcEndpointsCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError>;
|
|
251
|
+
/**
|
|
252
|
+
* @see {@link ListVpcEndpointsForDomainCommand}
|
|
253
|
+
*/
|
|
254
|
+
listVpcEndpointsForDomain(args: ListVpcEndpointsForDomainCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListVpcEndpointsForDomainCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError>;
|
|
255
|
+
/**
|
|
256
|
+
* @see {@link PurchaseReservedInstanceOfferingCommand}
|
|
257
|
+
*/
|
|
258
|
+
purchaseReservedInstanceOffering(args: PurchaseReservedInstanceOfferingCommandInput, options?: HttpHandlerOptions): Effect.Effect<PurchaseReservedInstanceOfferingCommandOutput, SdkError | DisabledOperationError | InternalError | LimitExceededError | ResourceAlreadyExistsError | ResourceNotFoundError | ValidationError>;
|
|
259
|
+
/**
|
|
260
|
+
* @see {@link RejectInboundConnectionCommand}
|
|
261
|
+
*/
|
|
262
|
+
rejectInboundConnection(args: RejectInboundConnectionCommandInput, options?: HttpHandlerOptions): Effect.Effect<RejectInboundConnectionCommandOutput, SdkError | DisabledOperationError | ResourceNotFoundError>;
|
|
263
|
+
/**
|
|
264
|
+
* @see {@link RemoveTagsCommand}
|
|
265
|
+
*/
|
|
266
|
+
removeTags(args: RemoveTagsCommandInput, options?: HttpHandlerOptions): Effect.Effect<RemoveTagsCommandOutput, SdkError | BaseError | InternalError | ValidationError>;
|
|
267
|
+
/**
|
|
268
|
+
* @see {@link RevokeVpcEndpointAccessCommand}
|
|
269
|
+
*/
|
|
270
|
+
revokeVpcEndpointAccess(args: RevokeVpcEndpointAccessCommandInput, options?: HttpHandlerOptions): Effect.Effect<RevokeVpcEndpointAccessCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
271
|
+
/**
|
|
272
|
+
* @see {@link StartDomainMaintenanceCommand}
|
|
273
|
+
*/
|
|
274
|
+
startDomainMaintenance(args: StartDomainMaintenanceCommandInput, options?: HttpHandlerOptions): Effect.Effect<StartDomainMaintenanceCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
275
|
+
/**
|
|
276
|
+
* @see {@link StartServiceSoftwareUpdateCommand}
|
|
277
|
+
*/
|
|
278
|
+
startServiceSoftwareUpdate(args: StartServiceSoftwareUpdateCommandInput, options?: HttpHandlerOptions): Effect.Effect<StartServiceSoftwareUpdateCommandOutput, SdkError | BaseError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
279
|
+
/**
|
|
280
|
+
* @see {@link UpdateApplicationCommand}
|
|
281
|
+
*/
|
|
282
|
+
updateApplication(args: UpdateApplicationCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateApplicationCommandOutput, SdkError | AccessDeniedError | BaseError | ConflictError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
283
|
+
/**
|
|
284
|
+
* @see {@link UpdateDataSourceCommand}
|
|
285
|
+
*/
|
|
286
|
+
updateDataSource(args: UpdateDataSourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateDataSourceCommandOutput, SdkError | BaseError | DependencyFailureError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
287
|
+
/**
|
|
288
|
+
* @see {@link UpdateDirectQueryDataSourceCommand}
|
|
289
|
+
*/
|
|
290
|
+
updateDirectQueryDataSource(args: UpdateDirectQueryDataSourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateDirectQueryDataSourceCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
291
|
+
/**
|
|
292
|
+
* @see {@link UpdateDomainConfigCommand}
|
|
293
|
+
*/
|
|
294
|
+
updateDomainConfig(args: UpdateDomainConfigCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateDomainConfigCommandOutput, SdkError | BaseError | InternalError | InvalidTypeError | LimitExceededError | ResourceNotFoundError | ValidationError>;
|
|
295
|
+
/**
|
|
296
|
+
* @see {@link UpdatePackageCommand}
|
|
297
|
+
*/
|
|
298
|
+
updatePackage(args: UpdatePackageCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdatePackageCommandOutput, SdkError | AccessDeniedError | BaseError | InternalError | LimitExceededError | ResourceNotFoundError | ValidationError>;
|
|
299
|
+
/**
|
|
300
|
+
* @see {@link UpdatePackageScopeCommand}
|
|
301
|
+
*/
|
|
302
|
+
updatePackageScope(args: UpdatePackageScopeCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdatePackageScopeCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
303
|
+
/**
|
|
304
|
+
* @see {@link UpdateScheduledActionCommand}
|
|
305
|
+
*/
|
|
306
|
+
updateScheduledAction(args: UpdateScheduledActionCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateScheduledActionCommandOutput, SdkError | BaseError | ConflictError | InternalError | LimitExceededError | ResourceNotFoundError | SlotNotAvailableError | ValidationError>;
|
|
307
|
+
/**
|
|
308
|
+
* @see {@link UpdateVpcEndpointCommand}
|
|
309
|
+
*/
|
|
310
|
+
updateVpcEndpoint(args: UpdateVpcEndpointCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateVpcEndpointCommandOutput, SdkError | BaseError | ConflictError | DisabledOperationError | InternalError | ResourceNotFoundError | ValidationError>;
|
|
311
|
+
/**
|
|
312
|
+
* @see {@link UpgradeDomainCommand}
|
|
313
|
+
*/
|
|
314
|
+
upgradeDomain(args: UpgradeDomainCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpgradeDomainCommandOutput, SdkError | BaseError | DisabledOperationError | InternalError | ResourceAlreadyExistsError | ResourceNotFoundError | ValidationError>;
|
|
315
|
+
}
|
|
316
|
+
/**
|
|
317
|
+
* @since 1.0.0
|
|
318
|
+
* @category constructors
|
|
319
|
+
*/
|
|
320
|
+
export declare const makeOpenSearchService: Effect.Effect<OpenSearchService$, never, Instance.OpenSearchClientInstance>;
|
|
321
|
+
declare const OpenSearchService_base: import("effect/Context").TagClass<OpenSearchService, "@effect-aws/client-opensearch/OpenSearchService", OpenSearchService$> & Effect.Tag.Proxy<OpenSearchService, OpenSearchService$> & {
|
|
322
|
+
use: <X>(body: (_: OpenSearchService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, OpenSearchService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1, import("effect/Cause").UnknownException, OpenSearchService> : Effect.Effect<X, never, OpenSearchService>;
|
|
323
|
+
};
|
|
324
|
+
/**
|
|
325
|
+
* @since 1.0.0
|
|
326
|
+
* @category models
|
|
327
|
+
*/
|
|
328
|
+
export declare class OpenSearchService extends OpenSearchService_base {
|
|
329
|
+
static readonly defaultLayer: Layer.Layer<OpenSearchService, never, never>;
|
|
330
|
+
static readonly layer: (config: OpenSearchService.Config) => Layer.Layer<OpenSearchService, never, never>;
|
|
331
|
+
static readonly baseLayer: (evaluate: (defaultConfig: OpenSearchClientConfig) => OpenSearchClient) => Layer.Layer<OpenSearchService, never, never>;
|
|
332
|
+
}
|
|
333
|
+
/**
|
|
334
|
+
* @since 1.0.0
|
|
335
|
+
*/
|
|
336
|
+
export declare namespace OpenSearchService {
|
|
337
|
+
/**
|
|
338
|
+
* @since 1.0.0
|
|
339
|
+
*/
|
|
340
|
+
interface Config extends Omit<OpenSearchClientConfig, "logger"> {
|
|
341
|
+
readonly logger?: ServiceLogger.ServiceLoggerConstructorProps | true;
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
export {};
|
|
345
|
+
//# sourceMappingURL=OpenSearchService.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OpenSearchService.d.ts","sourceRoot":"","sources":["../../src/OpenSearchService.ts"],"names":[],"mappings":"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"}
|