@aws-sdk/client-opensearch 3.1019.0 → 3.1020.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/README.md +14 -0
- package/dist-cjs/index.js +61 -0
- package/dist-cjs/schemas/schemas_0.js +87 -8
- package/dist-es/OpenSearch.js +8 -4
- package/dist-es/commands/DescribeInsightDetailsCommand.js +16 -0
- package/dist-es/commands/ListInsightsCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +27 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/schemas/schemas_0.js +80 -2
- package/dist-types/OpenSearch.d.ts +96 -82
- package/dist-types/OpenSearchClient.d.ts +89 -87
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/commands/DescribeInsightDetailsCommand.d.ts +105 -0
- package/dist-types/commands/ListInsightsCommand.d.ts +116 -0
- package/dist-types/commands/UpdateScheduledActionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +1 -1
- package/dist-types/commands/UpgradeDomainCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/index.d.ts +2 -1
- package/dist-types/models/enums.d.ts +75 -0
- package/dist-types/models/models_0.d.ts +202 -158
- package/dist-types/models/models_1.d.ts +158 -0
- package/dist-types/pagination/DescribeDomainAutoTunesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeInboundConnectionsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeOutboundConnectionsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribePackagesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeReservedInstanceOfferingsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeReservedInstancesPaginator.d.ts +1 -1
- package/dist-types/pagination/GetPackageVersionHistoryPaginator.d.ts +1 -1
- package/dist-types/pagination/GetUpgradeHistoryPaginator.d.ts +1 -1
- package/dist-types/pagination/ListApplicationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListDomainMaintenancesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListDomainsForPackagePaginator.d.ts +1 -1
- package/dist-types/pagination/ListInstanceTypeDetailsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPackagesForDomainPaginator.d.ts +1 -1
- package/dist-types/pagination/ListScheduledActionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListVersionsPaginator.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +10 -0
- package/dist-types/ts3.4/OpenSearch.d.ts +34 -0
- package/dist-types/ts3.4/OpenSearchClient.d.ts +14 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeInsightDetailsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListInsightsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateScheduledActionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateVpcEndpointCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpgradeDomainCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +37 -0
- package/dist-types/ts3.4/models/models_0.d.ts +48 -31
- package/dist-types/ts3.4/models/models_1.d.ts +38 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -0
- package/package.json +13 -13
|
@@ -5,101 +5,103 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
5
5
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
8
|
-
import {
|
|
8
|
+
import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
|
-
import { AcceptInboundConnectionCommandInput, AcceptInboundConnectionCommandOutput } from "./commands/AcceptInboundConnectionCommand";
|
|
11
|
-
import { AddDataSourceCommandInput, AddDataSourceCommandOutput } from "./commands/AddDataSourceCommand";
|
|
12
|
-
import { AddDirectQueryDataSourceCommandInput, AddDirectQueryDataSourceCommandOutput } from "./commands/AddDirectQueryDataSourceCommand";
|
|
13
|
-
import { AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand";
|
|
14
|
-
import { AssociatePackageCommandInput, AssociatePackageCommandOutput } from "./commands/AssociatePackageCommand";
|
|
15
|
-
import { AssociatePackagesCommandInput, AssociatePackagesCommandOutput } from "./commands/AssociatePackagesCommand";
|
|
16
|
-
import { AuthorizeVpcEndpointAccessCommandInput, AuthorizeVpcEndpointAccessCommandOutput } from "./commands/AuthorizeVpcEndpointAccessCommand";
|
|
17
|
-
import { CancelDomainConfigChangeCommandInput, CancelDomainConfigChangeCommandOutput } from "./commands/CancelDomainConfigChangeCommand";
|
|
18
|
-
import { CancelServiceSoftwareUpdateCommandInput, CancelServiceSoftwareUpdateCommandOutput } from "./commands/CancelServiceSoftwareUpdateCommand";
|
|
19
|
-
import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
20
|
-
import { CreateDomainCommandInput, CreateDomainCommandOutput } from "./commands/CreateDomainCommand";
|
|
21
|
-
import { CreateIndexCommandInput, CreateIndexCommandOutput } from "./commands/CreateIndexCommand";
|
|
22
|
-
import { CreateOutboundConnectionCommandInput, CreateOutboundConnectionCommandOutput } from "./commands/CreateOutboundConnectionCommand";
|
|
23
|
-
import { CreatePackageCommandInput, CreatePackageCommandOutput } from "./commands/CreatePackageCommand";
|
|
24
|
-
import { CreateVpcEndpointCommandInput, CreateVpcEndpointCommandOutput } from "./commands/CreateVpcEndpointCommand";
|
|
25
|
-
import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
|
|
26
|
-
import { DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput } from "./commands/DeleteDataSourceCommand";
|
|
27
|
-
import { DeleteDirectQueryDataSourceCommandInput, DeleteDirectQueryDataSourceCommandOutput } from "./commands/DeleteDirectQueryDataSourceCommand";
|
|
28
|
-
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
|
|
29
|
-
import { DeleteInboundConnectionCommandInput, DeleteInboundConnectionCommandOutput } from "./commands/DeleteInboundConnectionCommand";
|
|
30
|
-
import { DeleteIndexCommandInput, DeleteIndexCommandOutput } from "./commands/DeleteIndexCommand";
|
|
31
|
-
import { DeleteOutboundConnectionCommandInput, DeleteOutboundConnectionCommandOutput } from "./commands/DeleteOutboundConnectionCommand";
|
|
32
|
-
import { DeletePackageCommandInput, DeletePackageCommandOutput } from "./commands/DeletePackageCommand";
|
|
33
|
-
import { DeleteVpcEndpointCommandInput, DeleteVpcEndpointCommandOutput } from "./commands/DeleteVpcEndpointCommand";
|
|
34
|
-
import { DescribeDomainAutoTunesCommandInput, DescribeDomainAutoTunesCommandOutput } from "./commands/DescribeDomainAutoTunesCommand";
|
|
35
|
-
import { DescribeDomainChangeProgressCommandInput, DescribeDomainChangeProgressCommandOutput } from "./commands/DescribeDomainChangeProgressCommand";
|
|
36
|
-
import { DescribeDomainCommandInput, DescribeDomainCommandOutput } from "./commands/DescribeDomainCommand";
|
|
37
|
-
import { DescribeDomainConfigCommandInput, DescribeDomainConfigCommandOutput } from "./commands/DescribeDomainConfigCommand";
|
|
38
|
-
import { DescribeDomainHealthCommandInput, DescribeDomainHealthCommandOutput } from "./commands/DescribeDomainHealthCommand";
|
|
39
|
-
import { DescribeDomainNodesCommandInput, DescribeDomainNodesCommandOutput } from "./commands/DescribeDomainNodesCommand";
|
|
40
|
-
import { DescribeDomainsCommandInput, DescribeDomainsCommandOutput } from "./commands/DescribeDomainsCommand";
|
|
41
|
-
import { DescribeDryRunProgressCommandInput, DescribeDryRunProgressCommandOutput } from "./commands/DescribeDryRunProgressCommand";
|
|
42
|
-
import { DescribeInboundConnectionsCommandInput, DescribeInboundConnectionsCommandOutput } from "./commands/DescribeInboundConnectionsCommand";
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
10
|
+
import type { AcceptInboundConnectionCommandInput, AcceptInboundConnectionCommandOutput } from "./commands/AcceptInboundConnectionCommand";
|
|
11
|
+
import type { AddDataSourceCommandInput, AddDataSourceCommandOutput } from "./commands/AddDataSourceCommand";
|
|
12
|
+
import type { AddDirectQueryDataSourceCommandInput, AddDirectQueryDataSourceCommandOutput } from "./commands/AddDirectQueryDataSourceCommand";
|
|
13
|
+
import type { AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand";
|
|
14
|
+
import type { AssociatePackageCommandInput, AssociatePackageCommandOutput } from "./commands/AssociatePackageCommand";
|
|
15
|
+
import type { AssociatePackagesCommandInput, AssociatePackagesCommandOutput } from "./commands/AssociatePackagesCommand";
|
|
16
|
+
import type { AuthorizeVpcEndpointAccessCommandInput, AuthorizeVpcEndpointAccessCommandOutput } from "./commands/AuthorizeVpcEndpointAccessCommand";
|
|
17
|
+
import type { CancelDomainConfigChangeCommandInput, CancelDomainConfigChangeCommandOutput } from "./commands/CancelDomainConfigChangeCommand";
|
|
18
|
+
import type { CancelServiceSoftwareUpdateCommandInput, CancelServiceSoftwareUpdateCommandOutput } from "./commands/CancelServiceSoftwareUpdateCommand";
|
|
19
|
+
import type { CreateApplicationCommandInput, CreateApplicationCommandOutput } from "./commands/CreateApplicationCommand";
|
|
20
|
+
import type { CreateDomainCommandInput, CreateDomainCommandOutput } from "./commands/CreateDomainCommand";
|
|
21
|
+
import type { CreateIndexCommandInput, CreateIndexCommandOutput } from "./commands/CreateIndexCommand";
|
|
22
|
+
import type { CreateOutboundConnectionCommandInput, CreateOutboundConnectionCommandOutput } from "./commands/CreateOutboundConnectionCommand";
|
|
23
|
+
import type { CreatePackageCommandInput, CreatePackageCommandOutput } from "./commands/CreatePackageCommand";
|
|
24
|
+
import type { CreateVpcEndpointCommandInput, CreateVpcEndpointCommandOutput } from "./commands/CreateVpcEndpointCommand";
|
|
25
|
+
import type { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
|
|
26
|
+
import type { DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput } from "./commands/DeleteDataSourceCommand";
|
|
27
|
+
import type { DeleteDirectQueryDataSourceCommandInput, DeleteDirectQueryDataSourceCommandOutput } from "./commands/DeleteDirectQueryDataSourceCommand";
|
|
28
|
+
import type { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
|
|
29
|
+
import type { DeleteInboundConnectionCommandInput, DeleteInboundConnectionCommandOutput } from "./commands/DeleteInboundConnectionCommand";
|
|
30
|
+
import type { DeleteIndexCommandInput, DeleteIndexCommandOutput } from "./commands/DeleteIndexCommand";
|
|
31
|
+
import type { DeleteOutboundConnectionCommandInput, DeleteOutboundConnectionCommandOutput } from "./commands/DeleteOutboundConnectionCommand";
|
|
32
|
+
import type { DeletePackageCommandInput, DeletePackageCommandOutput } from "./commands/DeletePackageCommand";
|
|
33
|
+
import type { DeleteVpcEndpointCommandInput, DeleteVpcEndpointCommandOutput } from "./commands/DeleteVpcEndpointCommand";
|
|
34
|
+
import type { DescribeDomainAutoTunesCommandInput, DescribeDomainAutoTunesCommandOutput } from "./commands/DescribeDomainAutoTunesCommand";
|
|
35
|
+
import type { DescribeDomainChangeProgressCommandInput, DescribeDomainChangeProgressCommandOutput } from "./commands/DescribeDomainChangeProgressCommand";
|
|
36
|
+
import type { DescribeDomainCommandInput, DescribeDomainCommandOutput } from "./commands/DescribeDomainCommand";
|
|
37
|
+
import type { DescribeDomainConfigCommandInput, DescribeDomainConfigCommandOutput } from "./commands/DescribeDomainConfigCommand";
|
|
38
|
+
import type { DescribeDomainHealthCommandInput, DescribeDomainHealthCommandOutput } from "./commands/DescribeDomainHealthCommand";
|
|
39
|
+
import type { DescribeDomainNodesCommandInput, DescribeDomainNodesCommandOutput } from "./commands/DescribeDomainNodesCommand";
|
|
40
|
+
import type { DescribeDomainsCommandInput, DescribeDomainsCommandOutput } from "./commands/DescribeDomainsCommand";
|
|
41
|
+
import type { DescribeDryRunProgressCommandInput, DescribeDryRunProgressCommandOutput } from "./commands/DescribeDryRunProgressCommand";
|
|
42
|
+
import type { DescribeInboundConnectionsCommandInput, DescribeInboundConnectionsCommandOutput } from "./commands/DescribeInboundConnectionsCommand";
|
|
43
|
+
import type { DescribeInsightDetailsCommandInput, DescribeInsightDetailsCommandOutput } from "./commands/DescribeInsightDetailsCommand";
|
|
44
|
+
import type { DescribeInstanceTypeLimitsCommandInput, DescribeInstanceTypeLimitsCommandOutput } from "./commands/DescribeInstanceTypeLimitsCommand";
|
|
45
|
+
import type { DescribeOutboundConnectionsCommandInput, DescribeOutboundConnectionsCommandOutput } from "./commands/DescribeOutboundConnectionsCommand";
|
|
46
|
+
import type { DescribePackagesCommandInput, DescribePackagesCommandOutput } from "./commands/DescribePackagesCommand";
|
|
47
|
+
import type { DescribeReservedInstanceOfferingsCommandInput, DescribeReservedInstanceOfferingsCommandOutput } from "./commands/DescribeReservedInstanceOfferingsCommand";
|
|
48
|
+
import type { DescribeReservedInstancesCommandInput, DescribeReservedInstancesCommandOutput } from "./commands/DescribeReservedInstancesCommand";
|
|
49
|
+
import type { DescribeVpcEndpointsCommandInput, DescribeVpcEndpointsCommandOutput } from "./commands/DescribeVpcEndpointsCommand";
|
|
50
|
+
import type { DissociatePackageCommandInput, DissociatePackageCommandOutput } from "./commands/DissociatePackageCommand";
|
|
51
|
+
import type { DissociatePackagesCommandInput, DissociatePackagesCommandOutput } from "./commands/DissociatePackagesCommand";
|
|
52
|
+
import type { GetApplicationCommandInput, GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
|
|
53
|
+
import type { GetCompatibleVersionsCommandInput, GetCompatibleVersionsCommandOutput } from "./commands/GetCompatibleVersionsCommand";
|
|
54
|
+
import type { GetDataSourceCommandInput, GetDataSourceCommandOutput } from "./commands/GetDataSourceCommand";
|
|
55
|
+
import type { GetDefaultApplicationSettingCommandInput, GetDefaultApplicationSettingCommandOutput } from "./commands/GetDefaultApplicationSettingCommand";
|
|
56
|
+
import type { GetDirectQueryDataSourceCommandInput, GetDirectQueryDataSourceCommandOutput } from "./commands/GetDirectQueryDataSourceCommand";
|
|
57
|
+
import type { GetDomainMaintenanceStatusCommandInput, GetDomainMaintenanceStatusCommandOutput } from "./commands/GetDomainMaintenanceStatusCommand";
|
|
58
|
+
import type { GetIndexCommandInput, GetIndexCommandOutput } from "./commands/GetIndexCommand";
|
|
59
|
+
import type { GetPackageVersionHistoryCommandInput, GetPackageVersionHistoryCommandOutput } from "./commands/GetPackageVersionHistoryCommand";
|
|
60
|
+
import type { GetUpgradeHistoryCommandInput, GetUpgradeHistoryCommandOutput } from "./commands/GetUpgradeHistoryCommand";
|
|
61
|
+
import type { GetUpgradeStatusCommandInput, GetUpgradeStatusCommandOutput } from "./commands/GetUpgradeStatusCommand";
|
|
62
|
+
import type { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
|
|
63
|
+
import type { ListDataSourcesCommandInput, ListDataSourcesCommandOutput } from "./commands/ListDataSourcesCommand";
|
|
64
|
+
import type { ListDirectQueryDataSourcesCommandInput, ListDirectQueryDataSourcesCommandOutput } from "./commands/ListDirectQueryDataSourcesCommand";
|
|
65
|
+
import type { ListDomainMaintenancesCommandInput, ListDomainMaintenancesCommandOutput } from "./commands/ListDomainMaintenancesCommand";
|
|
66
|
+
import type { ListDomainNamesCommandInput, ListDomainNamesCommandOutput } from "./commands/ListDomainNamesCommand";
|
|
67
|
+
import type { ListDomainsForPackageCommandInput, ListDomainsForPackageCommandOutput } from "./commands/ListDomainsForPackageCommand";
|
|
68
|
+
import type { ListInsightsCommandInput, ListInsightsCommandOutput } from "./commands/ListInsightsCommand";
|
|
69
|
+
import type { ListInstanceTypeDetailsCommandInput, ListInstanceTypeDetailsCommandOutput } from "./commands/ListInstanceTypeDetailsCommand";
|
|
70
|
+
import type { ListPackagesForDomainCommandInput, ListPackagesForDomainCommandOutput } from "./commands/ListPackagesForDomainCommand";
|
|
71
|
+
import type { ListScheduledActionsCommandInput, ListScheduledActionsCommandOutput } from "./commands/ListScheduledActionsCommand";
|
|
72
|
+
import type { ListTagsCommandInput, ListTagsCommandOutput } from "./commands/ListTagsCommand";
|
|
73
|
+
import type { ListVersionsCommandInput, ListVersionsCommandOutput } from "./commands/ListVersionsCommand";
|
|
74
|
+
import type { ListVpcEndpointAccessCommandInput, ListVpcEndpointAccessCommandOutput } from "./commands/ListVpcEndpointAccessCommand";
|
|
75
|
+
import type { ListVpcEndpointsCommandInput, ListVpcEndpointsCommandOutput } from "./commands/ListVpcEndpointsCommand";
|
|
76
|
+
import type { ListVpcEndpointsForDomainCommandInput, ListVpcEndpointsForDomainCommandOutput } from "./commands/ListVpcEndpointsForDomainCommand";
|
|
77
|
+
import type { PurchaseReservedInstanceOfferingCommandInput, PurchaseReservedInstanceOfferingCommandOutput } from "./commands/PurchaseReservedInstanceOfferingCommand";
|
|
78
|
+
import type { PutDefaultApplicationSettingCommandInput, PutDefaultApplicationSettingCommandOutput } from "./commands/PutDefaultApplicationSettingCommand";
|
|
79
|
+
import type { RejectInboundConnectionCommandInput, RejectInboundConnectionCommandOutput } from "./commands/RejectInboundConnectionCommand";
|
|
80
|
+
import type { RemoveTagsCommandInput, RemoveTagsCommandOutput } from "./commands/RemoveTagsCommand";
|
|
81
|
+
import type { RevokeVpcEndpointAccessCommandInput, RevokeVpcEndpointAccessCommandOutput } from "./commands/RevokeVpcEndpointAccessCommand";
|
|
82
|
+
import type { StartDomainMaintenanceCommandInput, StartDomainMaintenanceCommandOutput } from "./commands/StartDomainMaintenanceCommand";
|
|
83
|
+
import type { StartServiceSoftwareUpdateCommandInput, StartServiceSoftwareUpdateCommandOutput } from "./commands/StartServiceSoftwareUpdateCommand";
|
|
84
|
+
import type { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from "./commands/UpdateApplicationCommand";
|
|
85
|
+
import type { UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput } from "./commands/UpdateDataSourceCommand";
|
|
86
|
+
import type { UpdateDirectQueryDataSourceCommandInput, UpdateDirectQueryDataSourceCommandOutput } from "./commands/UpdateDirectQueryDataSourceCommand";
|
|
87
|
+
import type { UpdateDomainConfigCommandInput, UpdateDomainConfigCommandOutput } from "./commands/UpdateDomainConfigCommand";
|
|
88
|
+
import type { UpdateIndexCommandInput, UpdateIndexCommandOutput } from "./commands/UpdateIndexCommand";
|
|
89
|
+
import type { UpdatePackageCommandInput, UpdatePackageCommandOutput } from "./commands/UpdatePackageCommand";
|
|
90
|
+
import type { UpdatePackageScopeCommandInput, UpdatePackageScopeCommandOutput } from "./commands/UpdatePackageScopeCommand";
|
|
91
|
+
import type { UpdateScheduledActionCommandInput, UpdateScheduledActionCommandOutput } from "./commands/UpdateScheduledActionCommand";
|
|
92
|
+
import type { UpdateVpcEndpointCommandInput, UpdateVpcEndpointCommandOutput } from "./commands/UpdateVpcEndpointCommand";
|
|
93
|
+
import type { UpgradeDomainCommandInput, UpgradeDomainCommandOutput } from "./commands/UpgradeDomainCommand";
|
|
94
|
+
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
93
95
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
94
96
|
export { __Client };
|
|
95
97
|
/**
|
|
96
98
|
* @public
|
|
97
99
|
*/
|
|
98
|
-
export type ServiceInputTypes = AcceptInboundConnectionCommandInput | AddDataSourceCommandInput | AddDirectQueryDataSourceCommandInput | AddTagsCommandInput | AssociatePackageCommandInput | AssociatePackagesCommandInput | AuthorizeVpcEndpointAccessCommandInput | CancelDomainConfigChangeCommandInput | CancelServiceSoftwareUpdateCommandInput | CreateApplicationCommandInput | CreateDomainCommandInput | CreateIndexCommandInput | CreateOutboundConnectionCommandInput | CreatePackageCommandInput | CreateVpcEndpointCommandInput | DeleteApplicationCommandInput | DeleteDataSourceCommandInput | DeleteDirectQueryDataSourceCommandInput | DeleteDomainCommandInput | DeleteInboundConnectionCommandInput | DeleteIndexCommandInput | DeleteOutboundConnectionCommandInput | DeletePackageCommandInput | DeleteVpcEndpointCommandInput | DescribeDomainAutoTunesCommandInput | DescribeDomainChangeProgressCommandInput | DescribeDomainCommandInput | DescribeDomainConfigCommandInput | DescribeDomainHealthCommandInput | DescribeDomainNodesCommandInput | DescribeDomainsCommandInput | DescribeDryRunProgressCommandInput | DescribeInboundConnectionsCommandInput | DescribeInstanceTypeLimitsCommandInput | DescribeOutboundConnectionsCommandInput | DescribePackagesCommandInput | DescribeReservedInstanceOfferingsCommandInput | DescribeReservedInstancesCommandInput | DescribeVpcEndpointsCommandInput | DissociatePackageCommandInput | DissociatePackagesCommandInput | GetApplicationCommandInput | GetCompatibleVersionsCommandInput | GetDataSourceCommandInput | GetDefaultApplicationSettingCommandInput | GetDirectQueryDataSourceCommandInput | GetDomainMaintenanceStatusCommandInput | GetIndexCommandInput | GetPackageVersionHistoryCommandInput | GetUpgradeHistoryCommandInput | GetUpgradeStatusCommandInput | ListApplicationsCommandInput | ListDataSourcesCommandInput | ListDirectQueryDataSourcesCommandInput | ListDomainMaintenancesCommandInput | ListDomainNamesCommandInput | ListDomainsForPackageCommandInput | ListInstanceTypeDetailsCommandInput | ListPackagesForDomainCommandInput | ListScheduledActionsCommandInput | ListTagsCommandInput | ListVersionsCommandInput | ListVpcEndpointAccessCommandInput | ListVpcEndpointsCommandInput | ListVpcEndpointsForDomainCommandInput | PurchaseReservedInstanceOfferingCommandInput | PutDefaultApplicationSettingCommandInput | RejectInboundConnectionCommandInput | RemoveTagsCommandInput | RevokeVpcEndpointAccessCommandInput | StartDomainMaintenanceCommandInput | StartServiceSoftwareUpdateCommandInput | UpdateApplicationCommandInput | UpdateDataSourceCommandInput | UpdateDirectQueryDataSourceCommandInput | UpdateDomainConfigCommandInput | UpdateIndexCommandInput | UpdatePackageCommandInput | UpdatePackageScopeCommandInput | UpdateScheduledActionCommandInput | UpdateVpcEndpointCommandInput | UpgradeDomainCommandInput;
|
|
100
|
+
export type ServiceInputTypes = AcceptInboundConnectionCommandInput | AddDataSourceCommandInput | AddDirectQueryDataSourceCommandInput | AddTagsCommandInput | AssociatePackageCommandInput | AssociatePackagesCommandInput | AuthorizeVpcEndpointAccessCommandInput | CancelDomainConfigChangeCommandInput | CancelServiceSoftwareUpdateCommandInput | CreateApplicationCommandInput | CreateDomainCommandInput | CreateIndexCommandInput | CreateOutboundConnectionCommandInput | CreatePackageCommandInput | CreateVpcEndpointCommandInput | DeleteApplicationCommandInput | DeleteDataSourceCommandInput | DeleteDirectQueryDataSourceCommandInput | DeleteDomainCommandInput | DeleteInboundConnectionCommandInput | DeleteIndexCommandInput | DeleteOutboundConnectionCommandInput | DeletePackageCommandInput | DeleteVpcEndpointCommandInput | DescribeDomainAutoTunesCommandInput | DescribeDomainChangeProgressCommandInput | DescribeDomainCommandInput | DescribeDomainConfigCommandInput | DescribeDomainHealthCommandInput | DescribeDomainNodesCommandInput | DescribeDomainsCommandInput | DescribeDryRunProgressCommandInput | DescribeInboundConnectionsCommandInput | DescribeInsightDetailsCommandInput | DescribeInstanceTypeLimitsCommandInput | DescribeOutboundConnectionsCommandInput | DescribePackagesCommandInput | DescribeReservedInstanceOfferingsCommandInput | DescribeReservedInstancesCommandInput | DescribeVpcEndpointsCommandInput | DissociatePackageCommandInput | DissociatePackagesCommandInput | GetApplicationCommandInput | GetCompatibleVersionsCommandInput | GetDataSourceCommandInput | GetDefaultApplicationSettingCommandInput | GetDirectQueryDataSourceCommandInput | GetDomainMaintenanceStatusCommandInput | GetIndexCommandInput | GetPackageVersionHistoryCommandInput | GetUpgradeHistoryCommandInput | GetUpgradeStatusCommandInput | ListApplicationsCommandInput | ListDataSourcesCommandInput | ListDirectQueryDataSourcesCommandInput | ListDomainMaintenancesCommandInput | ListDomainNamesCommandInput | ListDomainsForPackageCommandInput | ListInsightsCommandInput | ListInstanceTypeDetailsCommandInput | ListPackagesForDomainCommandInput | ListScheduledActionsCommandInput | ListTagsCommandInput | ListVersionsCommandInput | ListVpcEndpointAccessCommandInput | ListVpcEndpointsCommandInput | ListVpcEndpointsForDomainCommandInput | PurchaseReservedInstanceOfferingCommandInput | PutDefaultApplicationSettingCommandInput | RejectInboundConnectionCommandInput | RemoveTagsCommandInput | RevokeVpcEndpointAccessCommandInput | StartDomainMaintenanceCommandInput | StartServiceSoftwareUpdateCommandInput | UpdateApplicationCommandInput | UpdateDataSourceCommandInput | UpdateDirectQueryDataSourceCommandInput | UpdateDomainConfigCommandInput | UpdateIndexCommandInput | UpdatePackageCommandInput | UpdatePackageScopeCommandInput | UpdateScheduledActionCommandInput | UpdateVpcEndpointCommandInput | UpgradeDomainCommandInput;
|
|
99
101
|
/**
|
|
100
102
|
* @public
|
|
101
103
|
*/
|
|
102
|
-
export type ServiceOutputTypes = AcceptInboundConnectionCommandOutput | AddDataSourceCommandOutput | AddDirectQueryDataSourceCommandOutput | AddTagsCommandOutput | AssociatePackageCommandOutput | AssociatePackagesCommandOutput | AuthorizeVpcEndpointAccessCommandOutput | CancelDomainConfigChangeCommandOutput | CancelServiceSoftwareUpdateCommandOutput | CreateApplicationCommandOutput | CreateDomainCommandOutput | CreateIndexCommandOutput | CreateOutboundConnectionCommandOutput | CreatePackageCommandOutput | CreateVpcEndpointCommandOutput | DeleteApplicationCommandOutput | DeleteDataSourceCommandOutput | DeleteDirectQueryDataSourceCommandOutput | DeleteDomainCommandOutput | DeleteInboundConnectionCommandOutput | DeleteIndexCommandOutput | DeleteOutboundConnectionCommandOutput | DeletePackageCommandOutput | DeleteVpcEndpointCommandOutput | DescribeDomainAutoTunesCommandOutput | DescribeDomainChangeProgressCommandOutput | DescribeDomainCommandOutput | DescribeDomainConfigCommandOutput | DescribeDomainHealthCommandOutput | DescribeDomainNodesCommandOutput | DescribeDomainsCommandOutput | DescribeDryRunProgressCommandOutput | DescribeInboundConnectionsCommandOutput | DescribeInstanceTypeLimitsCommandOutput | DescribeOutboundConnectionsCommandOutput | DescribePackagesCommandOutput | DescribeReservedInstanceOfferingsCommandOutput | DescribeReservedInstancesCommandOutput | DescribeVpcEndpointsCommandOutput | DissociatePackageCommandOutput | DissociatePackagesCommandOutput | GetApplicationCommandOutput | GetCompatibleVersionsCommandOutput | GetDataSourceCommandOutput | GetDefaultApplicationSettingCommandOutput | GetDirectQueryDataSourceCommandOutput | GetDomainMaintenanceStatusCommandOutput | GetIndexCommandOutput | GetPackageVersionHistoryCommandOutput | GetUpgradeHistoryCommandOutput | GetUpgradeStatusCommandOutput | ListApplicationsCommandOutput | ListDataSourcesCommandOutput | ListDirectQueryDataSourcesCommandOutput | ListDomainMaintenancesCommandOutput | ListDomainNamesCommandOutput | ListDomainsForPackageCommandOutput | ListInstanceTypeDetailsCommandOutput | ListPackagesForDomainCommandOutput | ListScheduledActionsCommandOutput | ListTagsCommandOutput | ListVersionsCommandOutput | ListVpcEndpointAccessCommandOutput | ListVpcEndpointsCommandOutput | ListVpcEndpointsForDomainCommandOutput | PurchaseReservedInstanceOfferingCommandOutput | PutDefaultApplicationSettingCommandOutput | RejectInboundConnectionCommandOutput | RemoveTagsCommandOutput | RevokeVpcEndpointAccessCommandOutput | StartDomainMaintenanceCommandOutput | StartServiceSoftwareUpdateCommandOutput | UpdateApplicationCommandOutput | UpdateDataSourceCommandOutput | UpdateDirectQueryDataSourceCommandOutput | UpdateDomainConfigCommandOutput | UpdateIndexCommandOutput | UpdatePackageCommandOutput | UpdatePackageScopeCommandOutput | UpdateScheduledActionCommandOutput | UpdateVpcEndpointCommandOutput | UpgradeDomainCommandOutput;
|
|
104
|
+
export type ServiceOutputTypes = AcceptInboundConnectionCommandOutput | AddDataSourceCommandOutput | AddDirectQueryDataSourceCommandOutput | AddTagsCommandOutput | AssociatePackageCommandOutput | AssociatePackagesCommandOutput | AuthorizeVpcEndpointAccessCommandOutput | CancelDomainConfigChangeCommandOutput | CancelServiceSoftwareUpdateCommandOutput | CreateApplicationCommandOutput | CreateDomainCommandOutput | CreateIndexCommandOutput | CreateOutboundConnectionCommandOutput | CreatePackageCommandOutput | CreateVpcEndpointCommandOutput | DeleteApplicationCommandOutput | DeleteDataSourceCommandOutput | DeleteDirectQueryDataSourceCommandOutput | DeleteDomainCommandOutput | DeleteInboundConnectionCommandOutput | DeleteIndexCommandOutput | DeleteOutboundConnectionCommandOutput | DeletePackageCommandOutput | DeleteVpcEndpointCommandOutput | DescribeDomainAutoTunesCommandOutput | DescribeDomainChangeProgressCommandOutput | DescribeDomainCommandOutput | DescribeDomainConfigCommandOutput | DescribeDomainHealthCommandOutput | DescribeDomainNodesCommandOutput | DescribeDomainsCommandOutput | DescribeDryRunProgressCommandOutput | DescribeInboundConnectionsCommandOutput | DescribeInsightDetailsCommandOutput | DescribeInstanceTypeLimitsCommandOutput | DescribeOutboundConnectionsCommandOutput | DescribePackagesCommandOutput | DescribeReservedInstanceOfferingsCommandOutput | DescribeReservedInstancesCommandOutput | DescribeVpcEndpointsCommandOutput | DissociatePackageCommandOutput | DissociatePackagesCommandOutput | GetApplicationCommandOutput | GetCompatibleVersionsCommandOutput | GetDataSourceCommandOutput | GetDefaultApplicationSettingCommandOutput | GetDirectQueryDataSourceCommandOutput | GetDomainMaintenanceStatusCommandOutput | GetIndexCommandOutput | GetPackageVersionHistoryCommandOutput | GetUpgradeHistoryCommandOutput | GetUpgradeStatusCommandOutput | ListApplicationsCommandOutput | ListDataSourcesCommandOutput | ListDirectQueryDataSourcesCommandOutput | ListDomainMaintenancesCommandOutput | ListDomainNamesCommandOutput | ListDomainsForPackageCommandOutput | ListInsightsCommandOutput | ListInstanceTypeDetailsCommandOutput | ListPackagesForDomainCommandOutput | ListScheduledActionsCommandOutput | ListTagsCommandOutput | ListVersionsCommandOutput | ListVpcEndpointAccessCommandOutput | ListVpcEndpointsCommandOutput | ListVpcEndpointsForDomainCommandOutput | PurchaseReservedInstanceOfferingCommandOutput | PutDefaultApplicationSettingCommandOutput | RejectInboundConnectionCommandOutput | RemoveTagsCommandOutput | RevokeVpcEndpointAccessCommandOutput | StartDomainMaintenanceCommandOutput | StartServiceSoftwareUpdateCommandOutput | UpdateApplicationCommandOutput | UpdateDataSourceCommandOutput | UpdateDirectQueryDataSourceCommandOutput | UpdateDomainConfigCommandOutput | UpdateIndexCommandOutput | UpdatePackageCommandOutput | UpdatePackageScopeCommandOutput | UpdateScheduledActionCommandOutput | UpdateVpcEndpointCommandOutput | UpgradeDomainCommandOutput;
|
|
103
105
|
/**
|
|
104
106
|
* @public
|
|
105
107
|
*/
|
|
@@ -198,7 +200,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
198
200
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
199
201
|
* @internal
|
|
200
202
|
*/
|
|
201
|
-
defaultUserAgentProvider?:
|
|
203
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
202
204
|
/**
|
|
203
205
|
* Default credentials provider; Not available in browser runtime.
|
|
204
206
|
* @deprecated
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
|
|
2
2
|
import type { OpenSearchHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DescribeInsightDetailsRequest, DescribeInsightDetailsResponse } from "../models/models_0";
|
|
4
|
+
import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DescribeInsightDetailsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DescribeInsightDetailsCommandInput extends DescribeInsightDetailsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DescribeInsightDetailsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DescribeInsightDetailsCommandOutput extends DescribeInsightDetailsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DescribeInsightDetailsCommand_base: {
|
|
25
|
+
new (input: DescribeInsightDetailsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeInsightDetailsCommandInput, DescribeInsightDetailsCommandOutput, OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: DescribeInsightDetailsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeInsightDetailsCommandInput, DescribeInsightDetailsCommandOutput, OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Describes the details of an existing insight for an Amazon OpenSearch Service domain.
|
|
31
|
+
* Returns detailed fields associated with the specified insight, such as text descriptions
|
|
32
|
+
* and metric data.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { OpenSearchClient, DescribeInsightDetailsCommand } from "@aws-sdk/client-opensearch"; // ES Modules import
|
|
37
|
+
* // const { OpenSearchClient, DescribeInsightDetailsCommand } = require("@aws-sdk/client-opensearch"); // CommonJS import
|
|
38
|
+
* // import type { OpenSearchClientConfig } from "@aws-sdk/client-opensearch";
|
|
39
|
+
* const config = {}; // type is OpenSearchClientConfig
|
|
40
|
+
* const client = new OpenSearchClient(config);
|
|
41
|
+
* const input = { // DescribeInsightDetailsRequest
|
|
42
|
+
* Entity: { // InsightEntity
|
|
43
|
+
* Type: "Account" || "DomainName", // required
|
|
44
|
+
* Value: "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* InsightId: "STRING_VALUE", // required
|
|
47
|
+
* ShowHtmlContent: true || false,
|
|
48
|
+
* };
|
|
49
|
+
* const command = new DescribeInsightDetailsCommand(input);
|
|
50
|
+
* const response = await client.send(command);
|
|
51
|
+
* // { // DescribeInsightDetailsResponse
|
|
52
|
+
* // Fields: [ // InsightFieldList // required
|
|
53
|
+
* // { // InsightField
|
|
54
|
+
* // Name: "STRING_VALUE", // required
|
|
55
|
+
* // Type: "text" || "metric", // required
|
|
56
|
+
* // Value: "STRING_VALUE", // required
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // };
|
|
60
|
+
*
|
|
61
|
+
* ```
|
|
62
|
+
*
|
|
63
|
+
* @param DescribeInsightDetailsCommandInput - {@link DescribeInsightDetailsCommandInput}
|
|
64
|
+
* @returns {@link DescribeInsightDetailsCommandOutput}
|
|
65
|
+
* @see {@link DescribeInsightDetailsCommandInput} for command's `input` shape.
|
|
66
|
+
* @see {@link DescribeInsightDetailsCommandOutput} for command's `response` shape.
|
|
67
|
+
* @see {@link OpenSearchClientResolvedConfig | config} for OpenSearchClient's `config` shape.
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link BaseException} (client fault)
|
|
70
|
+
* <p>An error occurred while processing the request.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link DisabledOperationException} (client fault)
|
|
73
|
+
* <p>An error occured because the client wanted to access an unsupported operation.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link InternalException} (server fault)
|
|
76
|
+
* <p>Request processing failed because of an unknown error, exception, or internal failure.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
79
|
+
* <p>An exception for trying to create more than the allowed number of resources or sub-resources.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
82
|
+
* <p>An exception for accessing or deleting a resource that doesn't exist.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link ValidationException} (client fault)
|
|
85
|
+
* <p>An exception for accessing or deleting a resource that doesn't exist.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link OpenSearchServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from OpenSearch service.</p>
|
|
89
|
+
*
|
|
90
|
+
*
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
export declare class DescribeInsightDetailsCommand extends DescribeInsightDetailsCommand_base {
|
|
94
|
+
/** @internal type navigation helper, not in runtime. */
|
|
95
|
+
protected static __types: {
|
|
96
|
+
api: {
|
|
97
|
+
input: DescribeInsightDetailsRequest;
|
|
98
|
+
output: DescribeInsightDetailsResponse;
|
|
99
|
+
};
|
|
100
|
+
sdk: {
|
|
101
|
+
input: DescribeInsightDetailsCommandInput;
|
|
102
|
+
output: DescribeInsightDetailsCommandOutput;
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
}
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { ListInsightsRequest, ListInsightsResponse } from "../models/models_0";
|
|
4
|
+
import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListInsightsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListInsightsCommandInput extends ListInsightsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListInsightsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListInsightsCommandOutput extends ListInsightsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListInsightsCommand_base: {
|
|
25
|
+
new (input: ListInsightsCommandInput): import("@smithy/smithy-client").CommandImpl<ListInsightsCommandInput, ListInsightsCommandOutput, OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListInsightsCommandInput): import("@smithy/smithy-client").CommandImpl<ListInsightsCommandInput, ListInsightsCommandOutput, OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Lists insights for an Amazon OpenSearch Service domain or Amazon Web Services account.
|
|
31
|
+
* Returns a paginated list of insights based on the specified entity, filters, time range,
|
|
32
|
+
* and sort order.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { OpenSearchClient, ListInsightsCommand } from "@aws-sdk/client-opensearch"; // ES Modules import
|
|
37
|
+
* // const { OpenSearchClient, ListInsightsCommand } = require("@aws-sdk/client-opensearch"); // CommonJS import
|
|
38
|
+
* // import type { OpenSearchClientConfig } from "@aws-sdk/client-opensearch";
|
|
39
|
+
* const config = {}; // type is OpenSearchClientConfig
|
|
40
|
+
* const client = new OpenSearchClient(config);
|
|
41
|
+
* const input = { // ListInsightsRequest
|
|
42
|
+
* Entity: { // InsightEntity
|
|
43
|
+
* Type: "Account" || "DomainName", // required
|
|
44
|
+
* Value: "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* TimeRange: { // InsightTimeRange
|
|
47
|
+
* From: Number("long"), // required
|
|
48
|
+
* To: Number("long"), // required
|
|
49
|
+
* },
|
|
50
|
+
* SortOrder: "ASC" || "DESC",
|
|
51
|
+
* MaxResults: Number("int"),
|
|
52
|
+
* NextToken: "STRING_VALUE",
|
|
53
|
+
* };
|
|
54
|
+
* const command = new ListInsightsCommand(input);
|
|
55
|
+
* const response = await client.send(command);
|
|
56
|
+
* // { // ListInsightsResponse
|
|
57
|
+
* // Insights: [ // InsightList
|
|
58
|
+
* // { // Insight
|
|
59
|
+
* // InsightId: "STRING_VALUE",
|
|
60
|
+
* // DisplayName: "STRING_VALUE",
|
|
61
|
+
* // Type: "EVENT" || "RECOMMENDATION",
|
|
62
|
+
* // Priority: "CRITICAL" || "HIGH" || "MEDIUM" || "LOW",
|
|
63
|
+
* // Status: "ACTIVE" || "RESOLVED" || "DISMISSED",
|
|
64
|
+
* // CreationTime: new Date("TIMESTAMP"),
|
|
65
|
+
* // UpdateTime: new Date("TIMESTAMP"),
|
|
66
|
+
* // IsExperimental: true || false,
|
|
67
|
+
* // },
|
|
68
|
+
* // ],
|
|
69
|
+
* // NextToken: "STRING_VALUE",
|
|
70
|
+
* // };
|
|
71
|
+
*
|
|
72
|
+
* ```
|
|
73
|
+
*
|
|
74
|
+
* @param ListInsightsCommandInput - {@link ListInsightsCommandInput}
|
|
75
|
+
* @returns {@link ListInsightsCommandOutput}
|
|
76
|
+
* @see {@link ListInsightsCommandInput} for command's `input` shape.
|
|
77
|
+
* @see {@link ListInsightsCommandOutput} for command's `response` shape.
|
|
78
|
+
* @see {@link OpenSearchClientResolvedConfig | config} for OpenSearchClient's `config` shape.
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link BaseException} (client fault)
|
|
81
|
+
* <p>An error occurred while processing the request.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link DisabledOperationException} (client fault)
|
|
84
|
+
* <p>An error occured because the client wanted to access an unsupported operation.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link InternalException} (server fault)
|
|
87
|
+
* <p>Request processing failed because of an unknown error, exception, or internal failure.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
90
|
+
* <p>An exception for trying to create more than the allowed number of resources or sub-resources.</p>
|
|
91
|
+
*
|
|
92
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
93
|
+
* <p>An exception for accessing or deleting a resource that doesn't exist.</p>
|
|
94
|
+
*
|
|
95
|
+
* @throws {@link ValidationException} (client fault)
|
|
96
|
+
* <p>An exception for accessing or deleting a resource that doesn't exist.</p>
|
|
97
|
+
*
|
|
98
|
+
* @throws {@link OpenSearchServiceException}
|
|
99
|
+
* <p>Base exception class for all service exceptions from OpenSearch service.</p>
|
|
100
|
+
*
|
|
101
|
+
*
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
104
|
+
export declare class ListInsightsCommand extends ListInsightsCommand_base {
|
|
105
|
+
/** @internal type navigation helper, not in runtime. */
|
|
106
|
+
protected static __types: {
|
|
107
|
+
api: {
|
|
108
|
+
input: ListInsightsRequest;
|
|
109
|
+
output: ListInsightsResponse;
|
|
110
|
+
};
|
|
111
|
+
sdk: {
|
|
112
|
+
input: ListInsightsCommandInput;
|
|
113
|
+
output: ListInsightsCommandOutput;
|
|
114
|
+
};
|
|
115
|
+
};
|
|
116
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { UpdateScheduledActionRequest, UpdateScheduledActionResponse } from "../models/
|
|
3
|
+
import type { UpdateScheduledActionRequest, UpdateScheduledActionResponse } from "../models/models_1";
|
|
4
4
|
import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { UpdateVpcEndpointRequest, UpdateVpcEndpointResponse } from "../models/
|
|
3
|
+
import type { UpdateVpcEndpointRequest, UpdateVpcEndpointResponse } from "../models/models_1";
|
|
4
4
|
import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { UpgradeDomainRequest, UpgradeDomainResponse } from "../models/
|
|
3
|
+
import type { UpgradeDomainRequest, UpgradeDomainResponse } from "../models/models_1";
|
|
4
4
|
import type { OpenSearchClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../OpenSearchClient";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
@@ -31,6 +31,7 @@ export * from "./DescribeDomainNodesCommand";
|
|
|
31
31
|
export * from "./DescribeDomainsCommand";
|
|
32
32
|
export * from "./DescribeDryRunProgressCommand";
|
|
33
33
|
export * from "./DescribeInboundConnectionsCommand";
|
|
34
|
+
export * from "./DescribeInsightDetailsCommand";
|
|
34
35
|
export * from "./DescribeInstanceTypeLimitsCommand";
|
|
35
36
|
export * from "./DescribeOutboundConnectionsCommand";
|
|
36
37
|
export * from "./DescribePackagesCommand";
|
|
@@ -55,6 +56,7 @@ export * from "./ListDirectQueryDataSourcesCommand";
|
|
|
55
56
|
export * from "./ListDomainMaintenancesCommand";
|
|
56
57
|
export * from "./ListDomainNamesCommand";
|
|
57
58
|
export * from "./ListDomainsForPackageCommand";
|
|
59
|
+
export * from "./ListInsightsCommand";
|
|
58
60
|
export * from "./ListInstanceTypeDetailsCommand";
|
|
59
61
|
export * from "./ListPackagesForDomainCommand";
|
|
60
62
|
export * from "./ListScheduledActionsCommand";
|
package/dist-types/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
*/
|
|
10
10
|
export * from "./OpenSearchClient";
|
|
11
11
|
export * from "./OpenSearch";
|
|
12
|
-
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
12
|
+
export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
13
13
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
14
14
|
export type { OpenSearchExtensionConfiguration } from "./extensionConfiguration";
|
|
15
15
|
export * from "./commands";
|
|
@@ -18,4 +18,5 @@ export * from "./pagination";
|
|
|
18
18
|
export * from "./models/enums";
|
|
19
19
|
export * from "./models/errors";
|
|
20
20
|
export * from "./models/models_0";
|
|
21
|
+
export * from "./models/models_1";
|
|
21
22
|
export { OpenSearchServiceException } from "./models/OpenSearchServiceException";
|
|
@@ -753,6 +753,30 @@ export declare const NodeType: {
|
|
|
753
753
|
* @public
|
|
754
754
|
*/
|
|
755
755
|
export type NodeType = (typeof NodeType)[keyof typeof NodeType];
|
|
756
|
+
/**
|
|
757
|
+
* @public
|
|
758
|
+
* @enum
|
|
759
|
+
*/
|
|
760
|
+
export declare const InsightEntityType: {
|
|
761
|
+
readonly ACCOUNT: "Account";
|
|
762
|
+
readonly DOMAIN: "DomainName";
|
|
763
|
+
};
|
|
764
|
+
/**
|
|
765
|
+
* @public
|
|
766
|
+
*/
|
|
767
|
+
export type InsightEntityType = (typeof InsightEntityType)[keyof typeof InsightEntityType];
|
|
768
|
+
/**
|
|
769
|
+
* @public
|
|
770
|
+
* @enum
|
|
771
|
+
*/
|
|
772
|
+
export declare const InsightFieldType: {
|
|
773
|
+
readonly METRIC: "metric";
|
|
774
|
+
readonly TEXT: "text";
|
|
775
|
+
};
|
|
776
|
+
/**
|
|
777
|
+
* @public
|
|
778
|
+
*/
|
|
779
|
+
export type InsightFieldType = (typeof InsightFieldType)[keyof typeof InsightFieldType];
|
|
756
780
|
/**
|
|
757
781
|
* @public
|
|
758
782
|
* @enum
|
|
@@ -888,6 +912,57 @@ export declare const EngineType: {
|
|
|
888
912
|
* @public
|
|
889
913
|
*/
|
|
890
914
|
export type EngineType = (typeof EngineType)[keyof typeof EngineType];
|
|
915
|
+
/**
|
|
916
|
+
* @public
|
|
917
|
+
* @enum
|
|
918
|
+
*/
|
|
919
|
+
export declare const InsightSortOrder: {
|
|
920
|
+
readonly ASC: "ASC";
|
|
921
|
+
readonly DESC: "DESC";
|
|
922
|
+
};
|
|
923
|
+
/**
|
|
924
|
+
* @public
|
|
925
|
+
*/
|
|
926
|
+
export type InsightSortOrder = (typeof InsightSortOrder)[keyof typeof InsightSortOrder];
|
|
927
|
+
/**
|
|
928
|
+
* @public
|
|
929
|
+
* @enum
|
|
930
|
+
*/
|
|
931
|
+
export declare const InsightPriorityLevel: {
|
|
932
|
+
readonly CRITICAL: "CRITICAL";
|
|
933
|
+
readonly HIGH: "HIGH";
|
|
934
|
+
readonly LOW: "LOW";
|
|
935
|
+
readonly MEDIUM: "MEDIUM";
|
|
936
|
+
};
|
|
937
|
+
/**
|
|
938
|
+
* @public
|
|
939
|
+
*/
|
|
940
|
+
export type InsightPriorityLevel = (typeof InsightPriorityLevel)[keyof typeof InsightPriorityLevel];
|
|
941
|
+
/**
|
|
942
|
+
* @public
|
|
943
|
+
* @enum
|
|
944
|
+
*/
|
|
945
|
+
export declare const InsightStatus: {
|
|
946
|
+
readonly ACTIVE: "ACTIVE";
|
|
947
|
+
readonly DISMISSED: "DISMISSED";
|
|
948
|
+
readonly RESOLVED: "RESOLVED";
|
|
949
|
+
};
|
|
950
|
+
/**
|
|
951
|
+
* @public
|
|
952
|
+
*/
|
|
953
|
+
export type InsightStatus = (typeof InsightStatus)[keyof typeof InsightStatus];
|
|
954
|
+
/**
|
|
955
|
+
* @public
|
|
956
|
+
* @enum
|
|
957
|
+
*/
|
|
958
|
+
export declare const InsightType: {
|
|
959
|
+
readonly EVENT: "EVENT";
|
|
960
|
+
readonly RECOMMENDATION: "RECOMMENDATION";
|
|
961
|
+
};
|
|
962
|
+
/**
|
|
963
|
+
* @public
|
|
964
|
+
*/
|
|
965
|
+
export type InsightType = (typeof InsightType)[keyof typeof InsightType];
|
|
891
966
|
/**
|
|
892
967
|
* @public
|
|
893
968
|
* @enum
|